criteo-api-retailmedia-sdk 2023.4.0.240118__py3-none-any.whl → 2023.4.0.240207__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.
- {criteo_api_retailmedia_sdk-2023.4.0.240118.dist-info → criteo_api_retailmedia_sdk-2023.4.0.240207.dist-info}/METADATA +3 -3
- {criteo_api_retailmedia_sdk-2023.4.0.240118.dist-info → criteo_api_retailmedia_sdk-2023.4.0.240207.dist-info}/RECORD +33 -34
- criteo_api_retailmedia_v2023_04/__init__.py +1 -1
- criteo_api_retailmedia_v2023_04/api/audience_api.py +113 -100
- criteo_api_retailmedia_v2023_04/api_client.py +1 -1
- criteo_api_retailmedia_v2023_04/configuration.py +1 -1
- criteo_api_retailmedia_v2023_04/model/campaign_attributes_v202301.py +4 -0
- criteo_api_retailmedia_v2023_04/model/campaign_v202301.py +4 -0
- criteo_api_retailmedia_v2023_04/model/editable_campaign_attributes_v202301.py +4 -0
- criteo_api_retailmedia_v2023_04/model/external_account.py +4 -0
- criteo_api_retailmedia_v2023_04/model/{create_retail_media_audience_attributes.py → rm_legacy_audience_create_entity_v1.py} +10 -5
- criteo_api_retailmedia_v2023_04/model/{create_retail_media_audience_body.py → rm_legacy_audience_create_entity_v1_resource.py} +18 -22
- criteo_api_retailmedia_v2023_04/model/{retail_media_audience_v2_response.py → rm_legacy_audience_create_entity_v1_response.py} +15 -15
- criteo_api_retailmedia_v2023_04/model/{create_retail_media_audience_v2_attributes.py → rm_legacy_audience_create_entity_v2.py} +10 -10
- criteo_api_retailmedia_v2023_04/model/{create_retail_media_audience.py → rm_legacy_audience_create_entity_v2_resource.py} +18 -28
- criteo_api_retailmedia_v2023_04/model/{common_status_code_response.py → rm_legacy_audience_create_entity_v2_response.py} +16 -10
- criteo_api_retailmedia_v2023_04/model/{create_retail_media_audience_v2_request.py → rm_legacy_audience_create_input_entity_v1.py} +10 -16
- criteo_api_retailmedia_v2023_04/model/{create_retail_media_audience_request.py → rm_legacy_audience_create_input_entity_v2.py} +10 -16
- criteo_api_retailmedia_v2023_04/model/{retail_media_audience_v2_attributes.py → rm_legacy_audience_get_entity_v1.py} +23 -23
- criteo_api_retailmedia_v2023_04/model/{create_retail_media_audience_response.py → rm_legacy_audience_get_entity_v1_list_response.py} +18 -20
- criteo_api_retailmedia_v2023_04/model/{retail_media_audience_v2.py → rm_legacy_audience_get_entity_v1_resource.py} +24 -29
- criteo_api_retailmedia_v2023_04/model/{retail_media_audience_attributes.py → rm_legacy_audience_get_entity_v2.py} +15 -15
- criteo_api_retailmedia_v2023_04/model/{retail_media_audience_v2_list_response.py → rm_legacy_audience_get_entity_v2_list_response.py} +17 -29
- criteo_api_retailmedia_v2023_04/model/{create_retail_media_audience_v2_data.py → rm_legacy_audience_get_entity_v2_resource.py} +18 -22
- criteo_api_retailmedia_v2023_04/model/rm_legacy_audience_user_behavior_create_v2.py +279 -0
- criteo_api_retailmedia_v2023_04/model/{user_behavior_details_v2.py → rm_legacy_audience_user_behavior_details_v2.py} +11 -11
- criteo_api_retailmedia_v2023_04/model/{customer_list_details.py → rm_legacy_segment_customer_list.py} +11 -5
- criteo_api_retailmedia_v2023_04/model/{retail_media_audience.py → rm_legacy_segment_user_behavior_create_v2.py} +44 -38
- criteo_api_retailmedia_v2023_04/model/{user_behavior_details.py → rm_legacy_segment_user_behavior_v1.py} +28 -28
- criteo_api_retailmedia_v2023_04/model/{create_user_behavior_segment_v2.py → rm_legacy_segment_user_behavior_v2.py} +7 -5
- criteo_api_retailmedia_v2023_04/models/__init__.py +20 -21
- criteo_api_retailmedia_v2023_04/model/create_retail_media_audience_v2.py +0 -287
- criteo_api_retailmedia_v2023_04/model/get_page_of_audiences_by_account_id_response.py +0 -295
- {criteo_api_retailmedia_sdk-2023.4.0.240118.dist-info → criteo_api_retailmedia_sdk-2023.4.0.240207.dist-info}/WHEEL +0 -0
- {criteo_api_retailmedia_sdk-2023.4.0.240118.dist-info → criteo_api_retailmedia_sdk-2023.4.0.240207.dist-info}/top_level.txt +0 -0
|
@@ -31,14 +31,12 @@ from criteo_api_retailmedia_v2023_04.exceptions import ApiAttributeError
|
|
|
31
31
|
|
|
32
32
|
def lazy_import():
|
|
33
33
|
from criteo_api_retailmedia_v2023_04.model.common_problem import CommonProblem
|
|
34
|
-
from criteo_api_retailmedia_v2023_04.model.
|
|
35
|
-
from criteo_api_retailmedia_v2023_04.model.retail_media_audience_v2 import RetailMediaAudienceV2
|
|
34
|
+
from criteo_api_retailmedia_v2023_04.model.rm_legacy_audience_get_entity_v2_resource import RmLegacyAudienceGetEntityV2Resource
|
|
36
35
|
globals()['CommonProblem'] = CommonProblem
|
|
37
|
-
globals()['
|
|
38
|
-
globals()['RetailMediaAudienceV2'] = RetailMediaAudienceV2
|
|
36
|
+
globals()['RmLegacyAudienceGetEntityV2Resource'] = RmLegacyAudienceGetEntityV2Resource
|
|
39
37
|
|
|
40
38
|
|
|
41
|
-
class
|
|
39
|
+
class RmLegacyAudienceGetEntityV2ListResponse(ModelNormal):
|
|
42
40
|
"""NOTE: This class is auto generated by OpenAPI Generator.
|
|
43
41
|
Ref: https://openapi-generator.tech
|
|
44
42
|
|
|
@@ -91,10 +89,9 @@ class RetailMediaAudienceV2ListResponse(ModelNormal):
|
|
|
91
89
|
"""
|
|
92
90
|
lazy_import()
|
|
93
91
|
return {
|
|
94
|
-
'data': ([
|
|
95
|
-
'metadata': (PageMetadata,), # noqa: E501
|
|
96
|
-
'errors': ([CommonProblem], none_type,), # noqa: E501
|
|
92
|
+
'data': ([RmLegacyAudienceGetEntityV2Resource], none_type,), # noqa: E501
|
|
97
93
|
'warnings': ([CommonProblem], none_type,), # noqa: E501
|
|
94
|
+
'errors': ([CommonProblem], none_type,), # noqa: E501
|
|
98
95
|
}
|
|
99
96
|
|
|
100
97
|
@cached_property
|
|
@@ -104,27 +101,21 @@ class RetailMediaAudienceV2ListResponse(ModelNormal):
|
|
|
104
101
|
|
|
105
102
|
attribute_map = {
|
|
106
103
|
'data': 'data', # noqa: E501
|
|
107
|
-
'metadata': 'metadata', # noqa: E501
|
|
108
|
-
'errors': 'errors', # noqa: E501
|
|
109
104
|
'warnings': 'warnings', # noqa: E501
|
|
105
|
+
'errors': 'errors', # noqa: E501
|
|
110
106
|
}
|
|
111
107
|
|
|
112
108
|
read_only_vars = {
|
|
113
|
-
'data', # noqa: E501
|
|
114
|
-
'errors', # noqa: E501
|
|
115
109
|
'warnings', # noqa: E501
|
|
110
|
+
'errors', # noqa: E501
|
|
116
111
|
}
|
|
117
112
|
|
|
118
113
|
_composed_schemas = {}
|
|
119
114
|
|
|
120
115
|
@classmethod
|
|
121
116
|
@convert_js_args_to_python_args
|
|
122
|
-
def _from_openapi_data(cls,
|
|
123
|
-
"""
|
|
124
|
-
|
|
125
|
-
Args:
|
|
126
|
-
data ([RetailMediaAudienceV2]): data
|
|
127
|
-
metadata (PageMetadata):
|
|
117
|
+
def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
|
|
118
|
+
"""RmLegacyAudienceGetEntityV2ListResponse - a model defined in OpenAPI
|
|
128
119
|
|
|
129
120
|
Keyword Args:
|
|
130
121
|
_check_type (bool): if True, values for parameters in openapi_types
|
|
@@ -157,8 +148,9 @@ class RetailMediaAudienceV2ListResponse(ModelNormal):
|
|
|
157
148
|
Animal class but this time we won't travel
|
|
158
149
|
through its discriminator because we passed in
|
|
159
150
|
_visited_composed_classes = (Animal,)
|
|
160
|
-
|
|
161
|
-
warnings ([CommonProblem], none_type):
|
|
151
|
+
data ([RmLegacyAudienceGetEntityV2Resource], none_type): [optional] # noqa: E501
|
|
152
|
+
warnings ([CommonProblem], none_type): [optional] # noqa: E501
|
|
153
|
+
errors ([CommonProblem], none_type): [optional] # noqa: E501
|
|
162
154
|
"""
|
|
163
155
|
|
|
164
156
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -190,8 +182,6 @@ class RetailMediaAudienceV2ListResponse(ModelNormal):
|
|
|
190
182
|
self._configuration = _configuration
|
|
191
183
|
self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
|
|
192
184
|
|
|
193
|
-
self.data = data
|
|
194
|
-
self.metadata = metadata
|
|
195
185
|
for var_name, var_value in kwargs.items():
|
|
196
186
|
if var_name not in self.attribute_map and \
|
|
197
187
|
self._configuration is not None and \
|
|
@@ -212,10 +202,8 @@ class RetailMediaAudienceV2ListResponse(ModelNormal):
|
|
|
212
202
|
])
|
|
213
203
|
|
|
214
204
|
@convert_js_args_to_python_args
|
|
215
|
-
def __init__(self,
|
|
216
|
-
"""
|
|
217
|
-
|
|
218
|
-
metadata (PageMetadata):
|
|
205
|
+
def __init__(self, *args, **kwargs): # noqa: E501
|
|
206
|
+
"""RmLegacyAudienceGetEntityV2ListResponse - a model defined in OpenAPI
|
|
219
207
|
|
|
220
208
|
Keyword Args:
|
|
221
209
|
_check_type (bool): if True, values for parameters in openapi_types
|
|
@@ -248,8 +236,9 @@ class RetailMediaAudienceV2ListResponse(ModelNormal):
|
|
|
248
236
|
Animal class but this time we won't travel
|
|
249
237
|
through its discriminator because we passed in
|
|
250
238
|
_visited_composed_classes = (Animal,)
|
|
251
|
-
|
|
252
|
-
warnings ([CommonProblem], none_type):
|
|
239
|
+
data ([RmLegacyAudienceGetEntityV2Resource], none_type): [optional] # noqa: E501
|
|
240
|
+
warnings ([CommonProblem], none_type): [optional] # noqa: E501
|
|
241
|
+
errors ([CommonProblem], none_type): [optional] # noqa: E501
|
|
253
242
|
"""
|
|
254
243
|
|
|
255
244
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -279,7 +268,6 @@ class RetailMediaAudienceV2ListResponse(ModelNormal):
|
|
|
279
268
|
self._configuration = _configuration
|
|
280
269
|
self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
|
|
281
270
|
|
|
282
|
-
self.metadata = metadata
|
|
283
271
|
for var_name, var_value in kwargs.items():
|
|
284
272
|
if var_name not in self.attribute_map and \
|
|
285
273
|
self._configuration is not None and \
|
|
@@ -30,11 +30,11 @@ from criteo_api_retailmedia_v2023_04.exceptions import ApiAttributeError
|
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def lazy_import():
|
|
33
|
-
from criteo_api_retailmedia_v2023_04.model.
|
|
34
|
-
globals()['
|
|
33
|
+
from criteo_api_retailmedia_v2023_04.model.rm_legacy_audience_get_entity_v2 import RmLegacyAudienceGetEntityV2
|
|
34
|
+
globals()['RmLegacyAudienceGetEntityV2'] = RmLegacyAudienceGetEntityV2
|
|
35
35
|
|
|
36
36
|
|
|
37
|
-
class
|
|
37
|
+
class RmLegacyAudienceGetEntityV2Resource(ModelNormal):
|
|
38
38
|
"""NOTE: This class is auto generated by OpenAPI Generator.
|
|
39
39
|
Ref: https://openapi-generator.tech
|
|
40
40
|
|
|
@@ -87,8 +87,9 @@ class CreateRetailMediaAudienceV2Data(ModelNormal):
|
|
|
87
87
|
"""
|
|
88
88
|
lazy_import()
|
|
89
89
|
return {
|
|
90
|
-
'
|
|
91
|
-
'
|
|
90
|
+
'attributes': (RmLegacyAudienceGetEntityV2,), # noqa: E501
|
|
91
|
+
'id': (str, none_type,), # noqa: E501
|
|
92
|
+
'type': (str, none_type,), # noqa: E501
|
|
92
93
|
}
|
|
93
94
|
|
|
94
95
|
@cached_property
|
|
@@ -97,8 +98,9 @@ class CreateRetailMediaAudienceV2Data(ModelNormal):
|
|
|
97
98
|
|
|
98
99
|
|
|
99
100
|
attribute_map = {
|
|
100
|
-
'type': 'type', # noqa: E501
|
|
101
101
|
'attributes': 'attributes', # noqa: E501
|
|
102
|
+
'id': 'id', # noqa: E501
|
|
103
|
+
'type': 'type', # noqa: E501
|
|
102
104
|
}
|
|
103
105
|
|
|
104
106
|
read_only_vars = {
|
|
@@ -108,12 +110,8 @@ class CreateRetailMediaAudienceV2Data(ModelNormal):
|
|
|
108
110
|
|
|
109
111
|
@classmethod
|
|
110
112
|
@convert_js_args_to_python_args
|
|
111
|
-
def _from_openapi_data(cls,
|
|
112
|
-
"""
|
|
113
|
-
|
|
114
|
-
Args:
|
|
115
|
-
type (str): the name of the entity type
|
|
116
|
-
attributes (CreateRetailMediaAudienceV2Attributes):
|
|
113
|
+
def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
|
|
114
|
+
"""RmLegacyAudienceGetEntityV2Resource - a model defined in OpenAPI
|
|
117
115
|
|
|
118
116
|
Keyword Args:
|
|
119
117
|
_check_type (bool): if True, values for parameters in openapi_types
|
|
@@ -146,6 +144,9 @@ class CreateRetailMediaAudienceV2Data(ModelNormal):
|
|
|
146
144
|
Animal class but this time we won't travel
|
|
147
145
|
through its discriminator because we passed in
|
|
148
146
|
_visited_composed_classes = (Animal,)
|
|
147
|
+
attributes (RmLegacyAudienceGetEntityV2): [optional] # noqa: E501
|
|
148
|
+
id (str, none_type): Id of the entity. [optional] # noqa: E501
|
|
149
|
+
type (str, none_type): [optional] # noqa: E501
|
|
149
150
|
"""
|
|
150
151
|
|
|
151
152
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -177,8 +178,6 @@ class CreateRetailMediaAudienceV2Data(ModelNormal):
|
|
|
177
178
|
self._configuration = _configuration
|
|
178
179
|
self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
|
|
179
180
|
|
|
180
|
-
self.type = type
|
|
181
|
-
self.attributes = attributes
|
|
182
181
|
for var_name, var_value in kwargs.items():
|
|
183
182
|
if var_name not in self.attribute_map and \
|
|
184
183
|
self._configuration is not None and \
|
|
@@ -199,12 +198,8 @@ class CreateRetailMediaAudienceV2Data(ModelNormal):
|
|
|
199
198
|
])
|
|
200
199
|
|
|
201
200
|
@convert_js_args_to_python_args
|
|
202
|
-
def __init__(self,
|
|
203
|
-
"""
|
|
204
|
-
|
|
205
|
-
Args:
|
|
206
|
-
type (str): the name of the entity type
|
|
207
|
-
attributes (CreateRetailMediaAudienceV2Attributes):
|
|
201
|
+
def __init__(self, *args, **kwargs): # noqa: E501
|
|
202
|
+
"""RmLegacyAudienceGetEntityV2Resource - a model defined in OpenAPI
|
|
208
203
|
|
|
209
204
|
Keyword Args:
|
|
210
205
|
_check_type (bool): if True, values for parameters in openapi_types
|
|
@@ -237,6 +232,9 @@ class CreateRetailMediaAudienceV2Data(ModelNormal):
|
|
|
237
232
|
Animal class but this time we won't travel
|
|
238
233
|
through its discriminator because we passed in
|
|
239
234
|
_visited_composed_classes = (Animal,)
|
|
235
|
+
attributes (RmLegacyAudienceGetEntityV2): [optional] # noqa: E501
|
|
236
|
+
id (str, none_type): Id of the entity. [optional] # noqa: E501
|
|
237
|
+
type (str, none_type): [optional] # noqa: E501
|
|
240
238
|
"""
|
|
241
239
|
|
|
242
240
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -266,8 +264,6 @@ class CreateRetailMediaAudienceV2Data(ModelNormal):
|
|
|
266
264
|
self._configuration = _configuration
|
|
267
265
|
self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
|
|
268
266
|
|
|
269
|
-
self.type = type
|
|
270
|
-
self.attributes = attributes
|
|
271
267
|
for var_name, var_value in kwargs.items():
|
|
272
268
|
if var_name not in self.attribute_map and \
|
|
273
269
|
self._configuration is not None and \
|
|
@@ -0,0 +1,279 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Criteo API
|
|
3
|
+
|
|
4
|
+
Criteo API - RetailMedia # noqa: E501
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 2023-04
|
|
7
|
+
Generated by: https://openapi-generator.tech
|
|
8
|
+
"""
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
import re # noqa: F401
|
|
12
|
+
import sys # noqa: F401
|
|
13
|
+
|
|
14
|
+
from criteo_api_retailmedia_v2023_04.model_utils import ( # noqa: F401
|
|
15
|
+
ApiTypeError,
|
|
16
|
+
ModelComposed,
|
|
17
|
+
ModelNormal,
|
|
18
|
+
ModelSimple,
|
|
19
|
+
cached_property,
|
|
20
|
+
change_keys_js_to_python,
|
|
21
|
+
convert_js_args_to_python_args,
|
|
22
|
+
date,
|
|
23
|
+
datetime,
|
|
24
|
+
file_type,
|
|
25
|
+
none_type,
|
|
26
|
+
validate_get_composed_info,
|
|
27
|
+
OpenApiModel
|
|
28
|
+
)
|
|
29
|
+
from criteo_api_retailmedia_v2023_04.exceptions import ApiAttributeError
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
def lazy_import():
|
|
33
|
+
from criteo_api_retailmedia_v2023_04.model.rm_legacy_segment_user_behavior_create_v2 import RmLegacySegmentUserBehaviorCreateV2
|
|
34
|
+
globals()['RmLegacySegmentUserBehaviorCreateV2'] = RmLegacySegmentUserBehaviorCreateV2
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
class RmLegacyAudienceUserBehaviorCreateV2(ModelNormal):
|
|
38
|
+
"""NOTE: This class is auto generated by OpenAPI Generator.
|
|
39
|
+
Ref: https://openapi-generator.tech
|
|
40
|
+
|
|
41
|
+
Do not edit the class manually.
|
|
42
|
+
|
|
43
|
+
Attributes:
|
|
44
|
+
allowed_values (dict): The key is the tuple path to the attribute
|
|
45
|
+
and the for var_name this is (var_name,). The value is a dict
|
|
46
|
+
with a capitalized key describing the allowed value and an allowed
|
|
47
|
+
value. These dicts store the allowed enum values.
|
|
48
|
+
attribute_map (dict): The key is attribute name
|
|
49
|
+
and the value is json key in definition.
|
|
50
|
+
discriminator_value_class_map (dict): A dict to go from the discriminator
|
|
51
|
+
variable value to the discriminator class name.
|
|
52
|
+
validations (dict): The key is the tuple path to the attribute
|
|
53
|
+
and the for var_name this is (var_name,). The value is a dict
|
|
54
|
+
that stores validations for max_length, min_length, max_items,
|
|
55
|
+
min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
|
|
56
|
+
inclusive_minimum, and regex.
|
|
57
|
+
additional_properties_type (tuple): A tuple of classes accepted
|
|
58
|
+
as additional properties values.
|
|
59
|
+
"""
|
|
60
|
+
|
|
61
|
+
allowed_values = {
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
validations = {
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
@cached_property
|
|
68
|
+
def additional_properties_type():
|
|
69
|
+
"""
|
|
70
|
+
This must be a method because a model may have properties that are
|
|
71
|
+
of type self, this must run after the class is loaded
|
|
72
|
+
"""
|
|
73
|
+
lazy_import()
|
|
74
|
+
return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
|
|
75
|
+
|
|
76
|
+
_nullable = False
|
|
77
|
+
|
|
78
|
+
@cached_property
|
|
79
|
+
def openapi_types():
|
|
80
|
+
"""
|
|
81
|
+
This must be a method because a model may have properties that are
|
|
82
|
+
of type self, this must run after the class is loaded
|
|
83
|
+
|
|
84
|
+
Returns
|
|
85
|
+
openapi_types (dict): The key is attribute name
|
|
86
|
+
and the value is attribute type.
|
|
87
|
+
"""
|
|
88
|
+
lazy_import()
|
|
89
|
+
return {
|
|
90
|
+
'inclusive_segment': (RmLegacySegmentUserBehaviorCreateV2,), # noqa: E501
|
|
91
|
+
'exclusive_segment': (RmLegacySegmentUserBehaviorCreateV2,), # noqa: E501
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
@cached_property
|
|
95
|
+
def discriminator():
|
|
96
|
+
return None
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
attribute_map = {
|
|
100
|
+
'inclusive_segment': 'inclusiveSegment', # noqa: E501
|
|
101
|
+
'exclusive_segment': 'exclusiveSegment', # noqa: E501
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
read_only_vars = {
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
_composed_schemas = {}
|
|
108
|
+
|
|
109
|
+
@classmethod
|
|
110
|
+
@convert_js_args_to_python_args
|
|
111
|
+
def _from_openapi_data(cls, inclusive_segment, *args, **kwargs): # noqa: E501
|
|
112
|
+
"""RmLegacyAudienceUserBehaviorCreateV2 - a model defined in OpenAPI
|
|
113
|
+
|
|
114
|
+
Args:
|
|
115
|
+
inclusive_segment (RmLegacySegmentUserBehaviorCreateV2):
|
|
116
|
+
|
|
117
|
+
Keyword Args:
|
|
118
|
+
_check_type (bool): if True, values for parameters in openapi_types
|
|
119
|
+
will be type checked and a TypeError will be
|
|
120
|
+
raised if the wrong type is input.
|
|
121
|
+
Defaults to True
|
|
122
|
+
_path_to_item (tuple/list): This is a list of keys or values to
|
|
123
|
+
drill down to the model in received_data
|
|
124
|
+
when deserializing a response
|
|
125
|
+
_spec_property_naming (bool): True if the variable names in the input data
|
|
126
|
+
are serialized names, as specified in the OpenAPI document.
|
|
127
|
+
False if the variable names in the input data
|
|
128
|
+
are pythonic names, e.g. snake case (default)
|
|
129
|
+
_configuration (Configuration): the instance to use when
|
|
130
|
+
deserializing a file_type parameter.
|
|
131
|
+
If passed, type conversion is attempted
|
|
132
|
+
If omitted no type conversion is done.
|
|
133
|
+
_visited_composed_classes (tuple): This stores a tuple of
|
|
134
|
+
classes that we have traveled through so that
|
|
135
|
+
if we see that class again we will not use its
|
|
136
|
+
discriminator again.
|
|
137
|
+
When traveling through a discriminator, the
|
|
138
|
+
composed schema that is
|
|
139
|
+
is traveled through is added to this set.
|
|
140
|
+
For example if Animal has a discriminator
|
|
141
|
+
petType and we pass in "Dog", and the class Dog
|
|
142
|
+
allOf includes Animal, we move through Animal
|
|
143
|
+
once using the discriminator, and pick Dog.
|
|
144
|
+
Then in Dog, we will make an instance of the
|
|
145
|
+
Animal class but this time we won't travel
|
|
146
|
+
through its discriminator because we passed in
|
|
147
|
+
_visited_composed_classes = (Animal,)
|
|
148
|
+
exclusive_segment (RmLegacySegmentUserBehaviorCreateV2): [optional] # noqa: E501
|
|
149
|
+
"""
|
|
150
|
+
|
|
151
|
+
_check_type = kwargs.pop('_check_type', True)
|
|
152
|
+
_spec_property_naming = kwargs.pop('_spec_property_naming', True)
|
|
153
|
+
_path_to_item = kwargs.pop('_path_to_item', ())
|
|
154
|
+
_configuration = kwargs.pop('_configuration', None)
|
|
155
|
+
_visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
|
|
156
|
+
|
|
157
|
+
self = super(OpenApiModel, cls).__new__(cls)
|
|
158
|
+
|
|
159
|
+
if args:
|
|
160
|
+
for arg in args:
|
|
161
|
+
if isinstance(arg, dict):
|
|
162
|
+
kwargs.update(arg)
|
|
163
|
+
else:
|
|
164
|
+
raise ApiTypeError(
|
|
165
|
+
"Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
|
|
166
|
+
args,
|
|
167
|
+
self.__class__.__name__,
|
|
168
|
+
),
|
|
169
|
+
path_to_item=_path_to_item,
|
|
170
|
+
valid_classes=(self.__class__,),
|
|
171
|
+
)
|
|
172
|
+
|
|
173
|
+
self._data_store = {}
|
|
174
|
+
self._check_type = _check_type
|
|
175
|
+
self._spec_property_naming = _spec_property_naming
|
|
176
|
+
self._path_to_item = _path_to_item
|
|
177
|
+
self._configuration = _configuration
|
|
178
|
+
self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
|
|
179
|
+
|
|
180
|
+
self.inclusive_segment = inclusive_segment
|
|
181
|
+
for var_name, var_value in kwargs.items():
|
|
182
|
+
if var_name not in self.attribute_map and \
|
|
183
|
+
self._configuration is not None and \
|
|
184
|
+
self._configuration.discard_unknown_keys and \
|
|
185
|
+
self.additional_properties_type is None:
|
|
186
|
+
# discard variable.
|
|
187
|
+
continue
|
|
188
|
+
setattr(self, var_name, var_value)
|
|
189
|
+
return self
|
|
190
|
+
|
|
191
|
+
required_properties = set([
|
|
192
|
+
'_data_store',
|
|
193
|
+
'_check_type',
|
|
194
|
+
'_spec_property_naming',
|
|
195
|
+
'_path_to_item',
|
|
196
|
+
'_configuration',
|
|
197
|
+
'_visited_composed_classes',
|
|
198
|
+
])
|
|
199
|
+
|
|
200
|
+
@convert_js_args_to_python_args
|
|
201
|
+
def __init__(self, inclusive_segment, *args, **kwargs): # noqa: E501
|
|
202
|
+
"""RmLegacyAudienceUserBehaviorCreateV2 - a model defined in OpenAPI
|
|
203
|
+
|
|
204
|
+
Args:
|
|
205
|
+
inclusive_segment (RmLegacySegmentUserBehaviorCreateV2):
|
|
206
|
+
|
|
207
|
+
Keyword Args:
|
|
208
|
+
_check_type (bool): if True, values for parameters in openapi_types
|
|
209
|
+
will be type checked and a TypeError will be
|
|
210
|
+
raised if the wrong type is input.
|
|
211
|
+
Defaults to True
|
|
212
|
+
_path_to_item (tuple/list): This is a list of keys or values to
|
|
213
|
+
drill down to the model in received_data
|
|
214
|
+
when deserializing a response
|
|
215
|
+
_spec_property_naming (bool): True if the variable names in the input data
|
|
216
|
+
are serialized names, as specified in the OpenAPI document.
|
|
217
|
+
False if the variable names in the input data
|
|
218
|
+
are pythonic names, e.g. snake case (default)
|
|
219
|
+
_configuration (Configuration): the instance to use when
|
|
220
|
+
deserializing a file_type parameter.
|
|
221
|
+
If passed, type conversion is attempted
|
|
222
|
+
If omitted no type conversion is done.
|
|
223
|
+
_visited_composed_classes (tuple): This stores a tuple of
|
|
224
|
+
classes that we have traveled through so that
|
|
225
|
+
if we see that class again we will not use its
|
|
226
|
+
discriminator again.
|
|
227
|
+
When traveling through a discriminator, the
|
|
228
|
+
composed schema that is
|
|
229
|
+
is traveled through is added to this set.
|
|
230
|
+
For example if Animal has a discriminator
|
|
231
|
+
petType and we pass in "Dog", and the class Dog
|
|
232
|
+
allOf includes Animal, we move through Animal
|
|
233
|
+
once using the discriminator, and pick Dog.
|
|
234
|
+
Then in Dog, we will make an instance of the
|
|
235
|
+
Animal class but this time we won't travel
|
|
236
|
+
through its discriminator because we passed in
|
|
237
|
+
_visited_composed_classes = (Animal,)
|
|
238
|
+
exclusive_segment (RmLegacySegmentUserBehaviorCreateV2): [optional] # noqa: E501
|
|
239
|
+
"""
|
|
240
|
+
|
|
241
|
+
_check_type = kwargs.pop('_check_type', True)
|
|
242
|
+
_spec_property_naming = kwargs.pop('_spec_property_naming', False)
|
|
243
|
+
_path_to_item = kwargs.pop('_path_to_item', ())
|
|
244
|
+
_configuration = kwargs.pop('_configuration', None)
|
|
245
|
+
_visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
|
|
246
|
+
|
|
247
|
+
if args:
|
|
248
|
+
for arg in args:
|
|
249
|
+
if isinstance(arg, dict):
|
|
250
|
+
kwargs.update(arg)
|
|
251
|
+
else:
|
|
252
|
+
raise ApiTypeError(
|
|
253
|
+
"Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
|
|
254
|
+
args,
|
|
255
|
+
self.__class__.__name__,
|
|
256
|
+
),
|
|
257
|
+
path_to_item=_path_to_item,
|
|
258
|
+
valid_classes=(self.__class__,),
|
|
259
|
+
)
|
|
260
|
+
|
|
261
|
+
self._data_store = {}
|
|
262
|
+
self._check_type = _check_type
|
|
263
|
+
self._spec_property_naming = _spec_property_naming
|
|
264
|
+
self._path_to_item = _path_to_item
|
|
265
|
+
self._configuration = _configuration
|
|
266
|
+
self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
|
|
267
|
+
|
|
268
|
+
self.inclusive_segment = inclusive_segment
|
|
269
|
+
for var_name, var_value in kwargs.items():
|
|
270
|
+
if var_name not in self.attribute_map and \
|
|
271
|
+
self._configuration is not None and \
|
|
272
|
+
self._configuration.discard_unknown_keys and \
|
|
273
|
+
self.additional_properties_type is None:
|
|
274
|
+
# discard variable.
|
|
275
|
+
continue
|
|
276
|
+
setattr(self, var_name, var_value)
|
|
277
|
+
if var_name in self.read_only_vars:
|
|
278
|
+
raise ApiAttributeError(f"`{var_name}` is a read-only attribute. Use `from_openapi_data` to instantiate "
|
|
279
|
+
f"class with read only attributes.")
|
|
@@ -30,11 +30,11 @@ from criteo_api_retailmedia_v2023_04.exceptions import ApiAttributeError
|
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def lazy_import():
|
|
33
|
-
from criteo_api_retailmedia_v2023_04.model.
|
|
34
|
-
globals()['
|
|
33
|
+
from criteo_api_retailmedia_v2023_04.model.rm_legacy_segment_user_behavior_v2 import RmLegacySegmentUserBehaviorV2
|
|
34
|
+
globals()['RmLegacySegmentUserBehaviorV2'] = RmLegacySegmentUserBehaviorV2
|
|
35
35
|
|
|
36
36
|
|
|
37
|
-
class
|
|
37
|
+
class RmLegacyAudienceUserBehaviorDetailsV2(ModelNormal):
|
|
38
38
|
"""NOTE: This class is auto generated by OpenAPI Generator.
|
|
39
39
|
Ref: https://openapi-generator.tech
|
|
40
40
|
|
|
@@ -87,8 +87,8 @@ class UserBehaviorDetailsV2(ModelNormal):
|
|
|
87
87
|
"""
|
|
88
88
|
lazy_import()
|
|
89
89
|
return {
|
|
90
|
-
'inclusive_segment': (
|
|
91
|
-
'exclusive_segment': (
|
|
90
|
+
'inclusive_segment': (RmLegacySegmentUserBehaviorV2,), # noqa: E501
|
|
91
|
+
'exclusive_segment': (RmLegacySegmentUserBehaviorV2,), # noqa: E501
|
|
92
92
|
}
|
|
93
93
|
|
|
94
94
|
@cached_property
|
|
@@ -109,10 +109,10 @@ class UserBehaviorDetailsV2(ModelNormal):
|
|
|
109
109
|
@classmethod
|
|
110
110
|
@convert_js_args_to_python_args
|
|
111
111
|
def _from_openapi_data(cls, inclusive_segment, *args, **kwargs): # noqa: E501
|
|
112
|
-
"""
|
|
112
|
+
"""RmLegacyAudienceUserBehaviorDetailsV2 - a model defined in OpenAPI
|
|
113
113
|
|
|
114
114
|
Args:
|
|
115
|
-
inclusive_segment (
|
|
115
|
+
inclusive_segment (RmLegacySegmentUserBehaviorV2):
|
|
116
116
|
|
|
117
117
|
Keyword Args:
|
|
118
118
|
_check_type (bool): if True, values for parameters in openapi_types
|
|
@@ -145,7 +145,7 @@ class UserBehaviorDetailsV2(ModelNormal):
|
|
|
145
145
|
Animal class but this time we won't travel
|
|
146
146
|
through its discriminator because we passed in
|
|
147
147
|
_visited_composed_classes = (Animal,)
|
|
148
|
-
exclusive_segment (
|
|
148
|
+
exclusive_segment (RmLegacySegmentUserBehaviorV2): [optional] # noqa: E501
|
|
149
149
|
"""
|
|
150
150
|
|
|
151
151
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -199,10 +199,10 @@ class UserBehaviorDetailsV2(ModelNormal):
|
|
|
199
199
|
|
|
200
200
|
@convert_js_args_to_python_args
|
|
201
201
|
def __init__(self, inclusive_segment, *args, **kwargs): # noqa: E501
|
|
202
|
-
"""
|
|
202
|
+
"""RmLegacyAudienceUserBehaviorDetailsV2 - a model defined in OpenAPI
|
|
203
203
|
|
|
204
204
|
Args:
|
|
205
|
-
inclusive_segment (
|
|
205
|
+
inclusive_segment (RmLegacySegmentUserBehaviorV2):
|
|
206
206
|
|
|
207
207
|
Keyword Args:
|
|
208
208
|
_check_type (bool): if True, values for parameters in openapi_types
|
|
@@ -235,7 +235,7 @@ class UserBehaviorDetailsV2(ModelNormal):
|
|
|
235
235
|
Animal class but this time we won't travel
|
|
236
236
|
through its discriminator because we passed in
|
|
237
237
|
_visited_composed_classes = (Animal,)
|
|
238
|
-
exclusive_segment (
|
|
238
|
+
exclusive_segment (RmLegacySegmentUserBehaviorV2): [optional] # noqa: E501
|
|
239
239
|
"""
|
|
240
240
|
|
|
241
241
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -30,7 +30,7 @@ from criteo_api_retailmedia_v2023_04.exceptions import ApiAttributeError
|
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
|
|
33
|
-
class
|
|
33
|
+
class RmLegacySegmentCustomerList(ModelNormal):
|
|
34
34
|
"""NOTE: This class is auto generated by OpenAPI Generator.
|
|
35
35
|
Ref: https://openapi-generator.tech
|
|
36
36
|
|
|
@@ -82,6 +82,7 @@ class CustomerListDetails(ModelNormal):
|
|
|
82
82
|
"""
|
|
83
83
|
return {
|
|
84
84
|
'size': (str,), # noqa: E501
|
|
85
|
+
'is_shared': (bool,), # noqa: E501
|
|
85
86
|
}
|
|
86
87
|
|
|
87
88
|
@cached_property
|
|
@@ -91,6 +92,7 @@ class CustomerListDetails(ModelNormal):
|
|
|
91
92
|
|
|
92
93
|
attribute_map = {
|
|
93
94
|
'size': 'size', # noqa: E501
|
|
95
|
+
'is_shared': 'isShared', # noqa: E501
|
|
94
96
|
}
|
|
95
97
|
|
|
96
98
|
read_only_vars = {
|
|
@@ -100,11 +102,12 @@ class CustomerListDetails(ModelNormal):
|
|
|
100
102
|
|
|
101
103
|
@classmethod
|
|
102
104
|
@convert_js_args_to_python_args
|
|
103
|
-
def _from_openapi_data(cls, size, *args, **kwargs): # noqa: E501
|
|
104
|
-
"""
|
|
105
|
+
def _from_openapi_data(cls, size, is_shared, *args, **kwargs): # noqa: E501
|
|
106
|
+
"""RmLegacySegmentCustomerList - a model defined in OpenAPI
|
|
105
107
|
|
|
106
108
|
Args:
|
|
107
109
|
size (str): Number of users in the customer list audience.
|
|
110
|
+
is_shared (bool): Indicate if the audience is shared.
|
|
108
111
|
|
|
109
112
|
Keyword Args:
|
|
110
113
|
_check_type (bool): if True, values for parameters in openapi_types
|
|
@@ -169,6 +172,7 @@ class CustomerListDetails(ModelNormal):
|
|
|
169
172
|
self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
|
|
170
173
|
|
|
171
174
|
self.size = size
|
|
175
|
+
self.is_shared = is_shared
|
|
172
176
|
for var_name, var_value in kwargs.items():
|
|
173
177
|
if var_name not in self.attribute_map and \
|
|
174
178
|
self._configuration is not None and \
|
|
@@ -189,11 +193,12 @@ class CustomerListDetails(ModelNormal):
|
|
|
189
193
|
])
|
|
190
194
|
|
|
191
195
|
@convert_js_args_to_python_args
|
|
192
|
-
def __init__(self, size, *args, **kwargs): # noqa: E501
|
|
193
|
-
"""
|
|
196
|
+
def __init__(self, size, is_shared, *args, **kwargs): # noqa: E501
|
|
197
|
+
"""RmLegacySegmentCustomerList - a model defined in OpenAPI
|
|
194
198
|
|
|
195
199
|
Args:
|
|
196
200
|
size (str): Number of users in the customer list audience.
|
|
201
|
+
is_shared (bool): Indicate if the audience is shared.
|
|
197
202
|
|
|
198
203
|
Keyword Args:
|
|
199
204
|
_check_type (bool): if True, values for parameters in openapi_types
|
|
@@ -256,6 +261,7 @@ class CustomerListDetails(ModelNormal):
|
|
|
256
261
|
self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
|
|
257
262
|
|
|
258
263
|
self.size = size
|
|
264
|
+
self.is_shared = is_shared
|
|
259
265
|
for var_name, var_value in kwargs.items():
|
|
260
266
|
if var_name not in self.attribute_map and \
|
|
261
267
|
self._configuration is not None and \
|