docs/Campaign.md in talon_one-5.0.0 vs docs/Campaign.md in talon_one-6.0.0

- old
+ new

@@ -43,10 +43,17 @@ **updated** | **DateTime** | Timestamp of the most recent update to the campaign's property. Updates to external entities used in this campaign are **not** registered by this property, such as collection or coupon updates. | [optional] **created_by** | **String** | Name of the user who created this campaign if available. | [optional] **updated_by** | **String** | Name of the user who last updated this campaign if available. | [optional] **template_id** | **Integer** | The ID of the Campaign Template this Campaign was created from. | [optional] **frontend_state** | **String** | A campaign state described exactly as in the Campaign Manager. | +**stores_imported** | **Boolean** | Indicates whether the linked stores were imported via a CSV file. | +**active_revision_id** | **Integer** | ID of the revision that was last activated on this campaign. | [optional] +**active_revision_version_id** | **Integer** | ID of the revision version that is active on the campaign. | [optional] +**version** | **Integer** | Incrementing number representing how many revisions have been activated on this campaign, starts from 0 for a new campaign. | [optional] +**current_revision_id** | **Integer** | ID of the revision currently being modified for the campaign. | [optional] +**current_revision_version_id** | **Integer** | ID of the latest version applied on the current revision. | [optional] +**stage_revision** | **Boolean** | Flag for determining whether we use current revision when sending requests with staging API key. | [optional] [default to false] ## Code Sample ```ruby require 'TalonOne' @@ -89,9 +96,16 @@ last_activity: 2022-11-10T23:00Z, updated: null, created_by: John Doe, updated_by: Jane Doe, template_id: 3, - frontend_state: running) + frontend_state: running, + stores_imported: true, + active_revision_id: 6, + active_revision_version_id: 6, + version: 6, + current_revision_id: 6, + current_revision_version_id: 6, + stage_revision: false) ```