# TalonOne::Store ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **id** | **Integer** | Internal ID of this entity. | **created** | **DateTime** | The time this entity was created. | **name** | **String** | The name of the store. | **description** | **String** | The description of the store. | **attributes** | [**Object**](.md) | The attributes of the store. | [optional] **integration_id** | **String** | The integration ID of the store. You choose this ID when you create a store. **Note**: You cannot edit the `integrationId` after the store has been created. | **application_id** | **Integer** | The ID of the application that owns this entity. | **updated** | **DateTime** | Timestamp of the most recent update on this entity. | **linked_campaign_ids** | **Array<Integer>** | A list of IDs of the campaigns that are linked with current store. | [optional] ## Code Sample ```ruby require 'TalonOne' instance = TalonOne::Store.new(id: 6, created: 2020-02-07T08:15:22Z, name: South US store, description: This is the description of the store in south US., attributes: {"country":"USA","code":1234}, integration_id: STORE-001, application_id: 322, updated: 2021-09-23T10:12:42Z, linked_campaign_ids: [4, 6, 8]) ```