Sha256: 774dbaa4c9160c7ae5598796ab9730d84fe76bdcc37bd5e3a7524520add761a9

Contents?: true

Size: 1.63 KB

Versions: 6

Compression:

Stored size: 1.63 KB

Contents

# TalonOne::AccountAdditionalCost

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **Integer** | Internal ID of this entity. | 
**created** | **DateTime** | The time this entity was created. | 
**account_id** | **Integer** | The ID of the account that owns this entity. | 
**name** | **String** | The internal name used in API requests. | 
**title** | **String** | The human-readable name for the additional cost that will be shown in the Campaign Manager. Like `name`, the combination of entity and title must also be unique. | 
**description** | **String** | A description of this additional cost. | 
**subscribed_applications_ids** | **Array<Integer>** | A list of the IDs of the applications that are subscribed to this additional cost. | [optional] 
**type** | **String** | The type of additional cost. Possible value: - `session`: Additional cost will be added per session. - `item`: Additional cost will be added per item. - `both`: Additional cost will be added per item and session.  | [optional] [default to 'session']

## Code Sample

```ruby
require 'TalonOne'

instance = TalonOne::AccountAdditionalCost.new(id: 6,
                                 created: 2020-06-10T09:05:27.993483Z,
                                 account_id: 3886,
                                 name: shippingFee,
                                 title: Shipping fee,
                                 description: A shipping fee,
                                 subscribed_applications_ids: [3, 13],
                                 type: session)
```


Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
talon_one-7.0.0 docs/AccountAdditionalCost.md
talon_one-6.0.0 docs/AccountAdditionalCost.md
talon_one-5.0.0 docs/AccountAdditionalCost.md
talon_one-3.0.2 docs/AccountAdditionalCost.md
talon_one-3.0.1 docs/AccountAdditionalCost.md
talon_one-3.0.0 docs/AccountAdditionalCost.md