# TalonOne::Environment ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **id** | **Integer** | Internal ID of this entity. | **created** | **DateTime** | The time this entity was created. | **application_id** | **Integer** | The ID of the application that owns this entity. | **slots** | [**Array<SlotDef>**](SlotDef.md) | The slots defined for this application. | **functions** | [**Array<FunctionDef>**](FunctionDef.md) | The functions defined for this application. | **templates** | [**Array<TemplateDef>**](TemplateDef.md) | The templates defined for this application. | **variables** | **String** | A stringified version of the environment's Talang variables scope. | **giveaways_pools** | [**Array<GiveawaysPool>**](GiveawaysPool.md) | The giveaways pools that the application is subscribed to. | [optional] **loyalty_programs** | [**Array<LoyaltyProgram>**](LoyaltyProgram.md) | The loyalty programs that the application is subscribed to. | [optional] **achievements** | [**Array<Achievement>**](Achievement.md) | The achievements, linked to the campaigns, belonging to the application. | [optional] **attributes** | [**Array<Attribute>**](Attribute.md) | The attributes that the application is subscribed to. | [optional] **additional_costs** | [**Array<AccountAdditionalCost>**](AccountAdditionalCost.md) | The additional costs that the application is subscribed to. | [optional] **audiences** | [**Array<Audience>**](Audience.md) | The audiences contained in the account which the application belongs to. | [optional] **collections** | [**Array<Collection>**](Collection.md) | The account-level collections that the application is subscribed to. | [optional] **application_cart_item_filters** | [**Array<ApplicationCIF>**](ApplicationCIF.md) | The cart item filters belonging to the Application. | [optional] ## Code Sample ```ruby require 'TalonOne' instance = TalonOne::Environment.new(id: 6, created: 2020-06-10T09:05:27.993483Z, application_id: 322, slots: null, functions: null, templates: null, variables: null, giveaways_pools: null, loyalty_programs: null, achievements: null, attributes: null, additional_costs: null, audiences: null, collections: null, application_cart_item_filters: null) ```