criteo-api-marketingsolutions-sdk 2024.7.0.240808__py3-none-any.whl → 2024.7.0.241029__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of criteo-api-marketingsolutions-sdk might be problematic. Click here for more details.
- {criteo_api_marketingsolutions_sdk-2024.7.0.240808.dist-info → criteo_api_marketingsolutions_sdk-2024.7.0.241029.dist-info}/METADATA +3 -3
- {criteo_api_marketingsolutions_sdk-2024.7.0.240808.dist-info → criteo_api_marketingsolutions_sdk-2024.7.0.241029.dist-info}/RECORD +10 -10
- {criteo_api_marketingsolutions_sdk-2024.7.0.240808.dist-info → criteo_api_marketingsolutions_sdk-2024.7.0.241029.dist-info}/WHEEL +1 -1
- criteo_api_marketingsolutions_v2024_07/__init__.py +1 -1
- criteo_api_marketingsolutions_v2024_07/api/analytics_api.py +8 -6
- criteo_api_marketingsolutions_v2024_07/api/audience_api.py +554 -273
- criteo_api_marketingsolutions_v2024_07/api_client.py +1 -1
- criteo_api_marketingsolutions_v2024_07/configuration.py +1 -1
- criteo_api_marketingsolutions_v2024_07/model/contactlist_amendment_attributes.py +2 -3
- {criteo_api_marketingsolutions_sdk-2024.7.0.240808.dist-info → criteo_api_marketingsolutions_sdk-2024.7.0.241029.dist-info}/top_level.txt +0 -0
|
@@ -76,7 +76,7 @@ class ApiClient(object):
|
|
|
76
76
|
self.default_headers[header_name] = header_value
|
|
77
77
|
self.cookie = cookie
|
|
78
78
|
# Set default User-Agent.
|
|
79
|
-
self.user_agent = 'OpenAPI-Generator/2024.07.0.
|
|
79
|
+
self.user_agent = 'OpenAPI-Generator/2024.07.0.241029/python'
|
|
80
80
|
|
|
81
81
|
def __enter__(self):
|
|
82
82
|
return self
|
|
@@ -395,7 +395,7 @@ class Configuration(object):
|
|
|
395
395
|
"OS: {env}\n"\
|
|
396
396
|
"Python Version: {pyversion}\n"\
|
|
397
397
|
"Version of the API: 2024-07\n"\
|
|
398
|
-
"SDK Package Version: 2024.07.0.
|
|
398
|
+
"SDK Package Version: 2024.07.0.241029".\
|
|
399
399
|
format(env=sys.platform, pyversion=sys.version)
|
|
400
400
|
|
|
401
401
|
def get_host_settings(self):
|
|
@@ -65,7 +65,6 @@ class ContactlistAmendmentAttributes(ModelNormal):
|
|
|
65
65
|
'MADID': "madid",
|
|
66
66
|
'IDENTITYLINK': "identityLink",
|
|
67
67
|
'GUM': "gum",
|
|
68
|
-
'CUSTOMERID': "customerid",
|
|
69
68
|
'PHONENUMBER': "phoneNumber",
|
|
70
69
|
},
|
|
71
70
|
}
|
|
@@ -124,7 +123,7 @@ class ContactlistAmendmentAttributes(ModelNormal):
|
|
|
124
123
|
|
|
125
124
|
Args:
|
|
126
125
|
operation (str): Operation to add or remove users
|
|
127
|
-
identifiers ([str]): The users
|
|
126
|
+
identifiers ([str]): The users to add or remove, each in the schema specified
|
|
128
127
|
|
|
129
128
|
Keyword Args:
|
|
130
129
|
_check_type (bool): if True, values for parameters in openapi_types
|
|
@@ -217,7 +216,7 @@ class ContactlistAmendmentAttributes(ModelNormal):
|
|
|
217
216
|
|
|
218
217
|
Args:
|
|
219
218
|
operation (str): Operation to add or remove users
|
|
220
|
-
identifiers ([str]): The users
|
|
219
|
+
identifiers ([str]): The users to add or remove, each in the schema specified
|
|
221
220
|
|
|
222
221
|
Keyword Args:
|
|
223
222
|
_check_type (bool): if True, values for parameters in openapi_types
|