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