docs/Audience.md in talon_one-2.5.1 vs docs/Audience.md in talon_one-3.0.0

- old
+ new

@@ -3,25 +3,33 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **account_id** | **Integer** | The ID of the account that owns this entity. | -**id** | **Integer** | Unique ID for this entity. | -**created** | **DateTime** | The exact moment this entity was created. | +**id** | **Integer** | Internal ID of this entity. | +**created** | **DateTime** | The time this entity was created. | **name** | **String** | The human-friendly display name for this audience. | -**integration** | **String** | The 3rd-party platform that this audience was created in. For example, mParticle. | [optional] -**integration_id** | **String** | The ID of this audience in the third-party integration. | [optional] +**sandbox** | **Boolean** | Indicates if this is a live or sandbox Application. | [optional] +**description** | **String** | A description of the audience. | [optional] +**integration** | **String** | The Talon.One-supported [3rd-party platform](https://docs.talon.one/docs/dev/technology-partners/overview) that this audience was created in. For example, `mParticle`, `Segment`, `Selligent`, `Braze`, or `Iterable`. **Note:** If you do not integrate with any of these platforms, do not use this property. | [optional] +**integration_id** | **String** | The ID of this audience in the third-party integration. **Note:** To create an audience that doesn't come from a 3rd party platform, do not use this property. | [optional] +**created_in3rd_party** | **Boolean** | Determines if this audience is a 3rd party audience or not. | [optional] +**last_update** | **DateTime** | The last time that the audience memberships changed. | [optional] ## Code Sample ```ruby require 'TalonOne' instance = TalonOne::Audience.new(account_id: 3886, id: 6, created: 2020-06-10T09:05:27.993483Z, - name: mPTravel, + name: Travel audience, + sandbox: true, + description: Travel audience 18-25, integration: mparticle, - integration_id: 382370BKDB946) + integration_id: 382370BKDB946, + created_in3rd_party: false, + last_update: 2022-04-26T11:02:38Z) ```