From 254e992af62ec619523f13bd88e9a20c1e40a2e7 Mon Sep 17 00:00:00 2001 From: James Boone Date: Tue, 25 Sep 2018 16:43:26 -0700 Subject: [PATCH] added "organization_currency" and "unified_campaign_name" to the param consts for dimensions --- singular_api_client/params.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/singular_api_client/params.py b/singular_api_client/params.py index 8d0d7c5..ff250dd 100644 --- a/singular_api_client/params.py +++ b/singular_api_client/params.py @@ -6,12 +6,14 @@ class Dimensions(object): PLATFORM = "platform" COUNTRY_FIELD = "country_field" ADN_CAMPAIGN_NAME = "adn_campaign_name" + UNIFIED_CAMPAIGN_NAME = "unified_campaign_name" ADN_CAMPAIGN_ID = "adn_campaign_id" SINGULAR_CAMPAIGN_ID = "singular_campaign_id" ADN_SUB_CAMPAIGN_NAME = "adn_sub_campaign_name" ADN_SUB_CAMPAIGN_ID = "adn_sub_campaign_id" ADN_SUB_ADNETWORK_NAME = "adn_sub_adnetwork_name" ADN_ORIGINAL_CURRENCY = "adn_original_currency" + ORGANIZATION_CURRENCY = "organization_currency" ADN_TIMEZONE = "adn_timezone" ADN_UTC_OFFSET = "adn_utc_offset" ADN_ACCOUNT_ID = "adn_account_id" @@ -91,4 +93,4 @@ class Format(object): __ALL_OPTIONS__ = None -Format.__ALL_OPTIONS__ = [Format.JSON, Format.CSV] \ No newline at end of file +Format.__ALL_OPTIONS__ = [Format.JSON, Format.CSV]