criteo-api-retailmedia-sdk 0.0.250320__py3-none-any.whl → 0.0.250327__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 (20) hide show
  1. criteo_api_retailmedia_preview/__init__.py +1 -1
  2. criteo_api_retailmedia_preview/api/campaign_api.py +311 -0
  3. criteo_api_retailmedia_preview/api_client.py +1 -1
  4. criteo_api_retailmedia_preview/configuration.py +1 -1
  5. criteo_api_retailmedia_preview/model/entity_resource_collection_outcome_line_item_keyword_review_report_and_metadata.py +280 -0
  6. criteo_api_retailmedia_preview/model/entity_resource_line_item_keyword_review_report.py +270 -0
  7. criteo_api_retailmedia_preview/model/line_item_keyword_review_report.py +311 -0
  8. criteo_api_retailmedia_preview/model/partner_billing_report_status_v1.py +4 -4
  9. criteo_api_retailmedia_preview/model/retail_media_keywords_review.py +271 -0
  10. criteo_api_retailmedia_preview/model/retail_media_keywords_review_result.py +271 -0
  11. criteo_api_retailmedia_preview/model/review_set_state.py +278 -0
  12. criteo_api_retailmedia_preview/model/value_resource_input_retail_media_keywords_review.py +262 -0
  13. criteo_api_retailmedia_preview/model/value_resource_outcome_retail_media_keywords_review_result.py +274 -0
  14. criteo_api_retailmedia_preview/model/value_resource_retail_media_keywords_review.py +266 -0
  15. criteo_api_retailmedia_preview/model/value_resource_retail_media_keywords_review_result.py +266 -0
  16. criteo_api_retailmedia_preview/models/__init__.py +10 -0
  17. {criteo_api_retailmedia_sdk-0.0.250320.dist-info → criteo_api_retailmedia_sdk-0.0.250327.dist-info}/METADATA +3 -3
  18. {criteo_api_retailmedia_sdk-0.0.250320.dist-info → criteo_api_retailmedia_sdk-0.0.250327.dist-info}/RECORD +20 -10
  19. {criteo_api_retailmedia_sdk-0.0.250320.dist-info → criteo_api_retailmedia_sdk-0.0.250327.dist-info}/WHEEL +1 -1
  20. {criteo_api_retailmedia_sdk-0.0.250320.dist-info → criteo_api_retailmedia_sdk-0.0.250327.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,270 @@
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.line_item_keyword_review_report import LineItemKeywordReviewReport
34
+ globals()['LineItemKeywordReviewReport'] = LineItemKeywordReviewReport
35
+
36
+
37
+ class EntityResourceLineItemKeywordReviewReport(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
+ 'id': (str, none_type,), # noqa: E501
84
+ 'type': (str, none_type,), # noqa: E501
85
+ 'attributes': (LineItemKeywordReviewReport,), # noqa: E501
86
+ }
87
+
88
+ @cached_property
89
+ def discriminator():
90
+ return None
91
+
92
+
93
+ attribute_map = {
94
+ 'id': 'id', # noqa: E501
95
+ 'type': 'type', # noqa: E501
96
+ 'attributes': 'attributes', # noqa: E501
97
+ }
98
+
99
+ read_only_vars = {
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
+ """EntityResourceLineItemKeywordReviewReport - 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
+ id (str, none_type): Unique id of the entity.. [optional] # noqa: E501
141
+ type (str, none_type): Type of the resource.. [optional] # noqa: E501
142
+ attributes (LineItemKeywordReviewReport): [optional] # noqa: E501
143
+ """
144
+
145
+ _check_type = kwargs.pop('_check_type', True)
146
+ _spec_property_naming = kwargs.pop('_spec_property_naming', True)
147
+ _path_to_item = kwargs.pop('_path_to_item', ())
148
+ _configuration = kwargs.pop('_configuration', None)
149
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
150
+
151
+ self = super(OpenApiModel, cls).__new__(cls)
152
+
153
+ if args:
154
+ for arg in args:
155
+ if isinstance(arg, dict):
156
+ kwargs.update(arg)
157
+ else:
158
+ raise ApiTypeError(
159
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
160
+ args,
161
+ self.__class__.__name__,
162
+ ),
163
+ path_to_item=_path_to_item,
164
+ valid_classes=(self.__class__,),
165
+ )
166
+
167
+ self._data_store = {}
168
+ self._check_type = _check_type
169
+ self._spec_property_naming = _spec_property_naming
170
+ self._path_to_item = _path_to_item
171
+ self._configuration = _configuration
172
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
173
+
174
+ for var_name, var_value in kwargs.items():
175
+ if var_name not in self.attribute_map and \
176
+ self._configuration is not None and \
177
+ self._configuration.discard_unknown_keys and \
178
+ self.additional_properties_type is None:
179
+ # discard variable.
180
+ continue
181
+ setattr(self, var_name, var_value)
182
+ return self
183
+
184
+ required_properties = set([
185
+ '_data_store',
186
+ '_check_type',
187
+ '_spec_property_naming',
188
+ '_path_to_item',
189
+ '_configuration',
190
+ '_visited_composed_classes',
191
+ ])
192
+
193
+ @convert_js_args_to_python_args
194
+ def __init__(self, *args, **kwargs): # noqa: E501
195
+ """EntityResourceLineItemKeywordReviewReport - a model defined in OpenAPI
196
+
197
+ Keyword Args:
198
+ _check_type (bool): if True, values for parameters in openapi_types
199
+ will be type checked and a TypeError will be
200
+ raised if the wrong type is input.
201
+ Defaults to True
202
+ _path_to_item (tuple/list): This is a list of keys or values to
203
+ drill down to the model in received_data
204
+ when deserializing a response
205
+ _spec_property_naming (bool): True if the variable names in the input data
206
+ are serialized names, as specified in the OpenAPI document.
207
+ False if the variable names in the input data
208
+ are pythonic names, e.g. snake case (default)
209
+ _configuration (Configuration): the instance to use when
210
+ deserializing a file_type parameter.
211
+ If passed, type conversion is attempted
212
+ If omitted no type conversion is done.
213
+ _visited_composed_classes (tuple): This stores a tuple of
214
+ classes that we have traveled through so that
215
+ if we see that class again we will not use its
216
+ discriminator again.
217
+ When traveling through a discriminator, the
218
+ composed schema that is
219
+ is traveled through is added to this set.
220
+ For example if Animal has a discriminator
221
+ petType and we pass in "Dog", and the class Dog
222
+ allOf includes Animal, we move through Animal
223
+ once using the discriminator, and pick Dog.
224
+ Then in Dog, we will make an instance of the
225
+ Animal class but this time we won't travel
226
+ through its discriminator because we passed in
227
+ _visited_composed_classes = (Animal,)
228
+ id (str, none_type): Unique id of the entity.. [optional] # noqa: E501
229
+ type (str, none_type): Type of the resource.. [optional] # noqa: E501
230
+ attributes (LineItemKeywordReviewReport): [optional] # noqa: E501
231
+ """
232
+
233
+ _check_type = kwargs.pop('_check_type', True)
234
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
235
+ _path_to_item = kwargs.pop('_path_to_item', ())
236
+ _configuration = kwargs.pop('_configuration', None)
237
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
238
+
239
+ if args:
240
+ for arg in args:
241
+ if isinstance(arg, dict):
242
+ kwargs.update(arg)
243
+ else:
244
+ raise ApiTypeError(
245
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
246
+ args,
247
+ self.__class__.__name__,
248
+ ),
249
+ path_to_item=_path_to_item,
250
+ valid_classes=(self.__class__,),
251
+ )
252
+
253
+ self._data_store = {}
254
+ self._check_type = _check_type
255
+ self._spec_property_naming = _spec_property_naming
256
+ self._path_to_item = _path_to_item
257
+ self._configuration = _configuration
258
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
259
+
260
+ for var_name, var_value in kwargs.items():
261
+ if var_name not in self.attribute_map and \
262
+ self._configuration is not None and \
263
+ self._configuration.discard_unknown_keys and \
264
+ self.additional_properties_type is None:
265
+ # discard variable.
266
+ continue
267
+ setattr(self, var_name, var_value)
268
+ if var_name in self.read_only_vars:
269
+ raise ApiAttributeError(f"`{var_name}` is a read-only attribute. Use `from_openapi_data` to instantiate "
270
+ f"class with read only attributes.")
@@ -0,0 +1,311 @@
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
+
33
+ class LineItemKeywordReviewReport(ModelNormal):
34
+ """NOTE: This class is auto generated by OpenAPI Generator.
35
+ Ref: https://openapi-generator.tech
36
+
37
+ Do not edit the class manually.
38
+
39
+ Attributes:
40
+ allowed_values (dict): The key is the tuple path to the attribute
41
+ and the for var_name this is (var_name,). The value is a dict
42
+ with a capitalized key describing the allowed value and an allowed
43
+ value. These dicts store the allowed enum values.
44
+ attribute_map (dict): The key is attribute name
45
+ and the value is json key in definition.
46
+ discriminator_value_class_map (dict): A dict to go from the discriminator
47
+ variable value to the discriminator class name.
48
+ validations (dict): The key is the tuple path to the attribute
49
+ and the for var_name this is (var_name,). The value is a dict
50
+ that stores validations for max_length, min_length, max_items,
51
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
52
+ inclusive_minimum, and regex.
53
+ additional_properties_type (tuple): A tuple of classes accepted
54
+ as additional properties values.
55
+ """
56
+
57
+ allowed_values = {
58
+ }
59
+
60
+ validations = {
61
+ }
62
+
63
+ additional_properties_type = None
64
+
65
+ _nullable = True
66
+
67
+ @cached_property
68
+ def openapi_types():
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
+ Returns
74
+ openapi_types (dict): The key is attribute name
75
+ and the value is attribute type.
76
+ """
77
+ return {
78
+ 'line_item_id': (str,), # noqa: E501
79
+ 'line_item_name': (str,), # noqa: E501
80
+ 'retailer_id': (str,), # noqa: E501
81
+ 'retailer_name': (str,), # noqa: E501
82
+ 'campaign_id': (str,), # noqa: E501
83
+ 'campaign_name': (str,), # noqa: E501
84
+ 'account_id': (str,), # noqa: E501
85
+ 'account_name': (str,), # noqa: E501
86
+ 'count_keywords': (int,), # noqa: E501
87
+ }
88
+
89
+ @cached_property
90
+ def discriminator():
91
+ return None
92
+
93
+
94
+ attribute_map = {
95
+ 'line_item_id': 'lineItemId', # noqa: E501
96
+ 'line_item_name': 'lineItemName', # noqa: E501
97
+ 'retailer_id': 'retailerId', # noqa: E501
98
+ 'retailer_name': 'retailerName', # noqa: E501
99
+ 'campaign_id': 'campaignId', # noqa: E501
100
+ 'campaign_name': 'campaignName', # noqa: E501
101
+ 'account_id': 'accountId', # noqa: E501
102
+ 'account_name': 'accountName', # noqa: E501
103
+ 'count_keywords': 'countKeywords', # 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, line_item_id, line_item_name, retailer_id, retailer_name, campaign_id, campaign_name, account_id, account_name, count_keywords, *args, **kwargs): # noqa: E501
114
+ """LineItemKeywordReviewReport - a model defined in OpenAPI
115
+
116
+ Args:
117
+ line_item_id (str): External ID of the line item that this report is for
118
+ line_item_name (str): Name of the line item that this report is for
119
+ retailer_id (str): Retailer ID connected to the line item this report is for
120
+ retailer_name (str): Name of the retailer connected to the line item this report is for
121
+ campaign_id (str): External ID of the campaign containing the line item this report is for
122
+ campaign_name (str): Name of the campaign containing the line item this report is for
123
+ account_id (str): External ID of the account containing the campaign containing the line item this report is for
124
+ account_name (str): Name of the account containing the campaign containing the line item this report is for
125
+ count_keywords (int): Number of PositiveExactMatch keywords on this line item that are in either \"InReview\" or \"Pending\" state
126
+
127
+ Keyword Args:
128
+ _check_type (bool): if True, values for parameters in openapi_types
129
+ will be type checked and a TypeError will be
130
+ raised if the wrong type is input.
131
+ Defaults to True
132
+ _path_to_item (tuple/list): This is a list of keys or values to
133
+ drill down to the model in received_data
134
+ when deserializing a response
135
+ _spec_property_naming (bool): True if the variable names in the input data
136
+ are serialized names, as specified in the OpenAPI document.
137
+ False if the variable names in the input data
138
+ are pythonic names, e.g. snake case (default)
139
+ _configuration (Configuration): the instance to use when
140
+ deserializing a file_type parameter.
141
+ If passed, type conversion is attempted
142
+ If omitted no type conversion is done.
143
+ _visited_composed_classes (tuple): This stores a tuple of
144
+ classes that we have traveled through so that
145
+ if we see that class again we will not use its
146
+ discriminator again.
147
+ When traveling through a discriminator, the
148
+ composed schema that is
149
+ is traveled through is added to this set.
150
+ For example if Animal has a discriminator
151
+ petType and we pass in "Dog", and the class Dog
152
+ allOf includes Animal, we move through Animal
153
+ once using the discriminator, and pick Dog.
154
+ Then in Dog, we will make an instance of the
155
+ Animal class but this time we won't travel
156
+ through its discriminator because we passed in
157
+ _visited_composed_classes = (Animal,)
158
+ """
159
+
160
+ _check_type = kwargs.pop('_check_type', True)
161
+ _spec_property_naming = kwargs.pop('_spec_property_naming', True)
162
+ _path_to_item = kwargs.pop('_path_to_item', ())
163
+ _configuration = kwargs.pop('_configuration', None)
164
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
165
+
166
+ self = super(OpenApiModel, cls).__new__(cls)
167
+
168
+ if args:
169
+ for arg in args:
170
+ if isinstance(arg, dict):
171
+ kwargs.update(arg)
172
+ else:
173
+ raise ApiTypeError(
174
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
175
+ args,
176
+ self.__class__.__name__,
177
+ ),
178
+ path_to_item=_path_to_item,
179
+ valid_classes=(self.__class__,),
180
+ )
181
+
182
+ self._data_store = {}
183
+ self._check_type = _check_type
184
+ self._spec_property_naming = _spec_property_naming
185
+ self._path_to_item = _path_to_item
186
+ self._configuration = _configuration
187
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
188
+
189
+ self.line_item_id = line_item_id
190
+ self.line_item_name = line_item_name
191
+ self.retailer_id = retailer_id
192
+ self.retailer_name = retailer_name
193
+ self.campaign_id = campaign_id
194
+ self.campaign_name = campaign_name
195
+ self.account_id = account_id
196
+ self.account_name = account_name
197
+ self.count_keywords = count_keywords
198
+ for var_name, var_value in kwargs.items():
199
+ if var_name not in self.attribute_map and \
200
+ self._configuration is not None and \
201
+ self._configuration.discard_unknown_keys and \
202
+ self.additional_properties_type is None:
203
+ # discard variable.
204
+ continue
205
+ setattr(self, var_name, var_value)
206
+ return self
207
+
208
+ required_properties = set([
209
+ '_data_store',
210
+ '_check_type',
211
+ '_spec_property_naming',
212
+ '_path_to_item',
213
+ '_configuration',
214
+ '_visited_composed_classes',
215
+ ])
216
+
217
+ @convert_js_args_to_python_args
218
+ def __init__(self, line_item_id, line_item_name, retailer_id, retailer_name, campaign_id, campaign_name, account_id, account_name, count_keywords, *args, **kwargs): # noqa: E501
219
+ """LineItemKeywordReviewReport - a model defined in OpenAPI
220
+
221
+ Args:
222
+ line_item_id (str): External ID of the line item that this report is for
223
+ line_item_name (str): Name of the line item that this report is for
224
+ retailer_id (str): Retailer ID connected to the line item this report is for
225
+ retailer_name (str): Name of the retailer connected to the line item this report is for
226
+ campaign_id (str): External ID of the campaign containing the line item this report is for
227
+ campaign_name (str): Name of the campaign containing the line item this report is for
228
+ account_id (str): External ID of the account containing the campaign containing the line item this report is for
229
+ account_name (str): Name of the account containing the campaign containing the line item this report is for
230
+ count_keywords (int): Number of PositiveExactMatch keywords on this line item that are in either \"InReview\" or \"Pending\" state
231
+
232
+ Keyword Args:
233
+ _check_type (bool): if True, values for parameters in openapi_types
234
+ will be type checked and a TypeError will be
235
+ raised if the wrong type is input.
236
+ Defaults to True
237
+ _path_to_item (tuple/list): This is a list of keys or values to
238
+ drill down to the model in received_data
239
+ when deserializing a response
240
+ _spec_property_naming (bool): True if the variable names in the input data
241
+ are serialized names, as specified in the OpenAPI document.
242
+ False if the variable names in the input data
243
+ are pythonic names, e.g. snake case (default)
244
+ _configuration (Configuration): the instance to use when
245
+ deserializing a file_type parameter.
246
+ If passed, type conversion is attempted
247
+ If omitted no type conversion is done.
248
+ _visited_composed_classes (tuple): This stores a tuple of
249
+ classes that we have traveled through so that
250
+ if we see that class again we will not use its
251
+ discriminator again.
252
+ When traveling through a discriminator, the
253
+ composed schema that is
254
+ is traveled through is added to this set.
255
+ For example if Animal has a discriminator
256
+ petType and we pass in "Dog", and the class Dog
257
+ allOf includes Animal, we move through Animal
258
+ once using the discriminator, and pick Dog.
259
+ Then in Dog, we will make an instance of the
260
+ Animal class but this time we won't travel
261
+ through its discriminator because we passed in
262
+ _visited_composed_classes = (Animal,)
263
+ """
264
+
265
+ _check_type = kwargs.pop('_check_type', True)
266
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
267
+ _path_to_item = kwargs.pop('_path_to_item', ())
268
+ _configuration = kwargs.pop('_configuration', None)
269
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
270
+
271
+ if args:
272
+ for arg in args:
273
+ if isinstance(arg, dict):
274
+ kwargs.update(arg)
275
+ else:
276
+ raise ApiTypeError(
277
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
278
+ args,
279
+ self.__class__.__name__,
280
+ ),
281
+ path_to_item=_path_to_item,
282
+ valid_classes=(self.__class__,),
283
+ )
284
+
285
+ self._data_store = {}
286
+ self._check_type = _check_type
287
+ self._spec_property_naming = _spec_property_naming
288
+ self._path_to_item = _path_to_item
289
+ self._configuration = _configuration
290
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
291
+
292
+ self.line_item_id = line_item_id
293
+ self.line_item_name = line_item_name
294
+ self.retailer_id = retailer_id
295
+ self.retailer_name = retailer_name
296
+ self.campaign_id = campaign_id
297
+ self.campaign_name = campaign_name
298
+ self.account_id = account_id
299
+ self.account_name = account_name
300
+ self.count_keywords = count_keywords
301
+ for var_name, var_value in kwargs.items():
302
+ if var_name not in self.attribute_map and \
303
+ self._configuration is not None and \
304
+ self._configuration.discard_unknown_keys and \
305
+ self.additional_properties_type is None:
306
+ # discard variable.
307
+ continue
308
+ setattr(self, var_name, var_value)
309
+ if var_name in self.read_only_vars:
310
+ raise ApiAttributeError(f"`{var_name}` is a read-only attribute. Use `from_openapi_data` to instantiate "
311
+ f"class with read only attributes.")
@@ -56,10 +56,10 @@ class PartnerBillingReportStatusV1(ModelNormal):
56
56
 
57
57
  allowed_values = {
58
58
  ('status',): {
59
- 'PENDING': "Pending",
60
- 'SUCCESS': "Success",
61
- 'FAILED': "Failed",
62
- 'EXPIRED': "Expired",
59
+ 'PENDING': "pending",
60
+ 'SUCCESS': "success",
61
+ 'FAILED': "failed",
62
+ 'EXPIRED': "expired",
63
63
  },
64
64
  }
65
65