criteo-api-retailmedia-sdk 0.0.250911__py3-none-any.whl → 0.0.250915__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.

Files changed (21) hide show
  1. criteo_api_retailmedia_preview/__init__.py +1 -1
  2. criteo_api_retailmedia_preview/api/accounts_api.py +3 -12
  3. criteo_api_retailmedia_preview/api/analytics_api.py +18 -63
  4. criteo_api_retailmedia_preview/api/audience_api.py +25 -88
  5. criteo_api_retailmedia_preview/api/balance_api.py +176 -186
  6. criteo_api_retailmedia_preview/api/billing_api.py +2 -7
  7. criteo_api_retailmedia_preview/api/campaign_api.py +913 -974
  8. criteo_api_retailmedia_preview/api/catalog_api.py +6 -22
  9. criteo_api_retailmedia_preview/api_client.py +1 -1
  10. criteo_api_retailmedia_preview/configuration.py +1 -1
  11. criteo_api_retailmedia_preview/models/__init__.py +0 -6
  12. {criteo_api_retailmedia_sdk-0.0.250911.dist-info → criteo_api_retailmedia_sdk-0.0.250915.dist-info}/METADATA +3 -3
  13. {criteo_api_retailmedia_sdk-0.0.250911.dist-info → criteo_api_retailmedia_sdk-0.0.250915.dist-info}/RECORD +15 -21
  14. criteo_api_retailmedia_preview/model/error_code_response.py +0 -281
  15. criteo_api_retailmedia_preview/model/fail_response.py +0 -283
  16. criteo_api_retailmedia_preview/model/outcome.py +0 -268
  17. criteo_api_retailmedia_preview/model/product_importer_error.py +0 -299
  18. criteo_api_retailmedia_preview/model/product_importer_warning.py +0 -299
  19. criteo_api_retailmedia_preview/model/report_outcome.py +0 -275
  20. {criteo_api_retailmedia_sdk-0.0.250911.dist-info → criteo_api_retailmedia_sdk-0.0.250915.dist-info}/WHEEL +0 -0
  21. {criteo_api_retailmedia_sdk-0.0.250911.dist-info → criteo_api_retailmedia_sdk-0.0.250915.dist-info}/top_level.txt +0 -0
@@ -1,283 +0,0 @@
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.product_importer_error import ProductImporterError
34
- from criteo_api_retailmedia_preview.model.product_importer_warning import ProductImporterWarning
35
- globals()['ProductImporterError'] = ProductImporterError
36
- globals()['ProductImporterWarning'] = ProductImporterWarning
37
-
38
-
39
- class FailResponse(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
- 'errors': ([ProductImporterError],), # noqa: E501
93
- 'warnings': ([ProductImporterWarning],), # noqa: E501
94
- }
95
-
96
- @cached_property
97
- def discriminator():
98
- return None
99
-
100
-
101
- attribute_map = {
102
- 'errors': 'errors', # noqa: E501
103
- 'warnings': 'warnings', # noqa: E501
104
- }
105
-
106
- read_only_vars = {
107
- }
108
-
109
- _composed_schemas = {}
110
-
111
- @classmethod
112
- @convert_js_args_to_python_args
113
- def _from_openapi_data(cls, errors, warnings, *args, **kwargs): # noqa: E501
114
- """FailResponse - a model defined in OpenAPI
115
-
116
- Args:
117
- errors ([ProductImporterError]): List of errors
118
- warnings ([ProductImporterWarning]): List of warnings
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
- """
152
-
153
- _check_type = kwargs.pop('_check_type', True)
154
- _spec_property_naming = kwargs.pop('_spec_property_naming', True)
155
- _path_to_item = kwargs.pop('_path_to_item', ())
156
- _configuration = kwargs.pop('_configuration', None)
157
- _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
158
-
159
- self = super(OpenApiModel, cls).__new__(cls)
160
-
161
- if args:
162
- for arg in args:
163
- if isinstance(arg, dict):
164
- kwargs.update(arg)
165
- else:
166
- raise ApiTypeError(
167
- "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
168
- args,
169
- self.__class__.__name__,
170
- ),
171
- path_to_item=_path_to_item,
172
- valid_classes=(self.__class__,),
173
- )
174
-
175
- self._data_store = {}
176
- self._check_type = _check_type
177
- self._spec_property_naming = _spec_property_naming
178
- self._path_to_item = _path_to_item
179
- self._configuration = _configuration
180
- self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
181
-
182
- self.errors = errors
183
- self.warnings = warnings
184
- for var_name, var_value in kwargs.items():
185
- if var_name not in self.attribute_map and \
186
- self._configuration is not None and \
187
- self._configuration.discard_unknown_keys and \
188
- self.additional_properties_type is None:
189
- # discard variable.
190
- continue
191
- setattr(self, var_name, var_value)
192
- return self
193
-
194
- required_properties = set([
195
- '_data_store',
196
- '_check_type',
197
- '_spec_property_naming',
198
- '_path_to_item',
199
- '_configuration',
200
- '_visited_composed_classes',
201
- ])
202
-
203
- @convert_js_args_to_python_args
204
- def __init__(self, errors, warnings, *args, **kwargs): # noqa: E501
205
- """FailResponse - a model defined in OpenAPI
206
-
207
- Args:
208
- errors ([ProductImporterError]): List of errors
209
- warnings ([ProductImporterWarning]): List of warnings
210
-
211
- Keyword Args:
212
- _check_type (bool): if True, values for parameters in openapi_types
213
- will be type checked and a TypeError will be
214
- raised if the wrong type is input.
215
- Defaults to True
216
- _path_to_item (tuple/list): This is a list of keys or values to
217
- drill down to the model in received_data
218
- when deserializing a response
219
- _spec_property_naming (bool): True if the variable names in the input data
220
- are serialized names, as specified in the OpenAPI document.
221
- False if the variable names in the input data
222
- are pythonic names, e.g. snake case (default)
223
- _configuration (Configuration): the instance to use when
224
- deserializing a file_type parameter.
225
- If passed, type conversion is attempted
226
- If omitted no type conversion is done.
227
- _visited_composed_classes (tuple): This stores a tuple of
228
- classes that we have traveled through so that
229
- if we see that class again we will not use its
230
- discriminator again.
231
- When traveling through a discriminator, the
232
- composed schema that is
233
- is traveled through is added to this set.
234
- For example if Animal has a discriminator
235
- petType and we pass in "Dog", and the class Dog
236
- allOf includes Animal, we move through Animal
237
- once using the discriminator, and pick Dog.
238
- Then in Dog, we will make an instance of the
239
- Animal class but this time we won't travel
240
- through its discriminator because we passed in
241
- _visited_composed_classes = (Animal,)
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
- self.errors = errors
272
- self.warnings = warnings
273
- for var_name, var_value in kwargs.items():
274
- if var_name not in self.attribute_map and \
275
- self._configuration is not None and \
276
- self._configuration.discard_unknown_keys and \
277
- self.additional_properties_type is None:
278
- # discard variable.
279
- continue
280
- setattr(self, var_name, var_value)
281
- if var_name in self.read_only_vars:
282
- raise ApiAttributeError(f"`{var_name}` is a read-only attribute. Use `from_openapi_data` to instantiate "
283
- f"class with read only attributes.")
@@ -1,268 +0,0 @@
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.sdk_api_rest_common_problem import SdkApiRestCommonProblem
34
- globals()['SdkApiRestCommonProblem'] = SdkApiRestCommonProblem
35
-
36
-
37
- class Outcome(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
- additional_properties_type = None
68
-
69
- _nullable = False
70
-
71
- @cached_property
72
- def openapi_types():
73
- """
74
- This must be a method because a model may have properties that are
75
- of type self, this must run after the class is loaded
76
-
77
- Returns
78
- openapi_types (dict): The key is attribute name
79
- and the value is attribute type.
80
- """
81
- lazy_import()
82
- return {
83
- 'errors': ([SdkApiRestCommonProblem], none_type,), # noqa: E501
84
- 'warnings': ([SdkApiRestCommonProblem], none_type,), # noqa: E501
85
- }
86
-
87
- @cached_property
88
- def discriminator():
89
- return None
90
-
91
-
92
- attribute_map = {
93
- 'errors': 'errors', # noqa: E501
94
- 'warnings': 'warnings', # noqa: E501
95
- }
96
-
97
- read_only_vars = {
98
- 'errors', # noqa: E501
99
- 'warnings', # noqa: E501
100
- }
101
-
102
- _composed_schemas = {}
103
-
104
- @classmethod
105
- @convert_js_args_to_python_args
106
- def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
107
- """Outcome - a model defined in OpenAPI
108
-
109
- Keyword Args:
110
- _check_type (bool): if True, values for parameters in openapi_types
111
- will be type checked and a TypeError will be
112
- raised if the wrong type is input.
113
- Defaults to True
114
- _path_to_item (tuple/list): This is a list of keys or values to
115
- drill down to the model in received_data
116
- when deserializing a response
117
- _spec_property_naming (bool): True if the variable names in the input data
118
- are serialized names, as specified in the OpenAPI document.
119
- False if the variable names in the input data
120
- are pythonic names, e.g. snake case (default)
121
- _configuration (Configuration): the instance to use when
122
- deserializing a file_type parameter.
123
- If passed, type conversion is attempted
124
- If omitted no type conversion is done.
125
- _visited_composed_classes (tuple): This stores a tuple of
126
- classes that we have traveled through so that
127
- if we see that class again we will not use its
128
- discriminator again.
129
- When traveling through a discriminator, the
130
- composed schema that is
131
- is traveled through is added to this set.
132
- For example if Animal has a discriminator
133
- petType and we pass in "Dog", and the class Dog
134
- allOf includes Animal, we move through Animal
135
- once using the discriminator, and pick Dog.
136
- Then in Dog, we will make an instance of the
137
- Animal class but this time we won't travel
138
- through its discriminator because we passed in
139
- _visited_composed_classes = (Animal,)
140
- errors ([SdkApiRestCommonProblem], none_type): Errors that occured during this call.. [optional] # noqa: E501
141
- warnings ([SdkApiRestCommonProblem], none_type): Warnings that occured during this call.. [optional] # noqa: E501
142
- """
143
-
144
- _check_type = kwargs.pop('_check_type', True)
145
- _spec_property_naming = kwargs.pop('_spec_property_naming', True)
146
- _path_to_item = kwargs.pop('_path_to_item', ())
147
- _configuration = kwargs.pop('_configuration', None)
148
- _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
149
-
150
- self = super(OpenApiModel, cls).__new__(cls)
151
-
152
- if args:
153
- for arg in args:
154
- if isinstance(arg, dict):
155
- kwargs.update(arg)
156
- else:
157
- raise ApiTypeError(
158
- "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
159
- args,
160
- self.__class__.__name__,
161
- ),
162
- path_to_item=_path_to_item,
163
- valid_classes=(self.__class__,),
164
- )
165
-
166
- self._data_store = {}
167
- self._check_type = _check_type
168
- self._spec_property_naming = _spec_property_naming
169
- self._path_to_item = _path_to_item
170
- self._configuration = _configuration
171
- self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
172
-
173
- for var_name, var_value in kwargs.items():
174
- if var_name not in self.attribute_map and \
175
- self._configuration is not None and \
176
- self._configuration.discard_unknown_keys and \
177
- self.additional_properties_type is None:
178
- # discard variable.
179
- continue
180
- setattr(self, var_name, var_value)
181
- return self
182
-
183
- required_properties = set([
184
- '_data_store',
185
- '_check_type',
186
- '_spec_property_naming',
187
- '_path_to_item',
188
- '_configuration',
189
- '_visited_composed_classes',
190
- ])
191
-
192
- @convert_js_args_to_python_args
193
- def __init__(self, *args, **kwargs): # noqa: E501
194
- """Outcome - a model defined in OpenAPI
195
-
196
- Keyword Args:
197
- _check_type (bool): if True, values for parameters in openapi_types
198
- will be type checked and a TypeError will be
199
- raised if the wrong type is input.
200
- Defaults to True
201
- _path_to_item (tuple/list): This is a list of keys or values to
202
- drill down to the model in received_data
203
- when deserializing a response
204
- _spec_property_naming (bool): True if the variable names in the input data
205
- are serialized names, as specified in the OpenAPI document.
206
- False if the variable names in the input data
207
- are pythonic names, e.g. snake case (default)
208
- _configuration (Configuration): the instance to use when
209
- deserializing a file_type parameter.
210
- If passed, type conversion is attempted
211
- If omitted no type conversion is done.
212
- _visited_composed_classes (tuple): This stores a tuple of
213
- classes that we have traveled through so that
214
- if we see that class again we will not use its
215
- discriminator again.
216
- When traveling through a discriminator, the
217
- composed schema that is
218
- is traveled through is added to this set.
219
- For example if Animal has a discriminator
220
- petType and we pass in "Dog", and the class Dog
221
- allOf includes Animal, we move through Animal
222
- once using the discriminator, and pick Dog.
223
- Then in Dog, we will make an instance of the
224
- Animal class but this time we won't travel
225
- through its discriminator because we passed in
226
- _visited_composed_classes = (Animal,)
227
- errors ([SdkApiRestCommonProblem], none_type): Errors that occured during this call.. [optional] # noqa: E501
228
- warnings ([SdkApiRestCommonProblem], none_type): Warnings that occured during this call.. [optional] # noqa: E501
229
- """
230
-
231
- _check_type = kwargs.pop('_check_type', True)
232
- _spec_property_naming = kwargs.pop('_spec_property_naming', False)
233
- _path_to_item = kwargs.pop('_path_to_item', ())
234
- _configuration = kwargs.pop('_configuration', None)
235
- _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
236
-
237
- if args:
238
- for arg in args:
239
- if isinstance(arg, dict):
240
- kwargs.update(arg)
241
- else:
242
- raise ApiTypeError(
243
- "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
244
- args,
245
- self.__class__.__name__,
246
- ),
247
- path_to_item=_path_to_item,
248
- valid_classes=(self.__class__,),
249
- )
250
-
251
- self._data_store = {}
252
- self._check_type = _check_type
253
- self._spec_property_naming = _spec_property_naming
254
- self._path_to_item = _path_to_item
255
- self._configuration = _configuration
256
- self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
257
-
258
- for var_name, var_value in kwargs.items():
259
- if var_name not in self.attribute_map and \
260
- self._configuration is not None and \
261
- self._configuration.discard_unknown_keys and \
262
- self.additional_properties_type is None:
263
- # discard variable.
264
- continue
265
- setattr(self, var_name, var_value)
266
- if var_name in self.read_only_vars:
267
- raise ApiAttributeError(f"`{var_name}` is a read-only attribute. Use `from_openapi_data` to instantiate "
268
- f"class with read only attributes.")