criteo-api-marketingsolutions-sdk 0.0.250811__py3-none-any.whl → 0.0.250825__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of criteo-api-marketingsolutions-sdk might be problematic. Click here for more details.

@@ -1,299 +0,0 @@
1
- """
2
- Criteo API
3
-
4
- Criteo API - MarketingSolutions # 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_marketingsolutions_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_marketingsolutions_preview.exceptions import ApiAttributeError
30
-
31
-
32
-
33
- class AdvertiserCreationInput(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
- @cached_property
64
- def additional_properties_type():
65
- """
66
- This must be a method because a model may have properties that are
67
- of type self, this must run after the class is loaded
68
- """
69
- return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
70
-
71
- _nullable = False
72
-
73
- @cached_property
74
- def openapi_types():
75
- """
76
- This must be a method because a model may have properties that are
77
- of type self, this must run after the class is loaded
78
-
79
- Returns
80
- openapi_types (dict): The key is attribute name
81
- and the value is attribute type.
82
- """
83
- return {
84
- 'account_name': (str,), # noqa: E501
85
- 'agency_id': (str,), # noqa: E501
86
- 'country_iso_code': (str,), # noqa: E501
87
- 'currency_iso_code': (str,), # noqa: E501
88
- 'industry_id': (str,), # noqa: E501
89
- 'website_url': (str,), # noqa: E501
90
- }
91
-
92
- @cached_property
93
- def discriminator():
94
- return None
95
-
96
-
97
- attribute_map = {
98
- 'account_name': 'accountName', # noqa: E501
99
- 'agency_id': 'agencyId', # noqa: E501
100
- 'country_iso_code': 'countryIsoCode', # noqa: E501
101
- 'currency_iso_code': 'currencyIsoCode', # noqa: E501
102
- 'industry_id': 'industryId', # noqa: E501
103
- 'website_url': 'websiteUrl', # 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, account_name, agency_id, country_iso_code, currency_iso_code, industry_id, website_url, *args, **kwargs): # noqa: E501
114
- """AdvertiserCreationInput - a model defined in OpenAPI
115
-
116
- Args:
117
- account_name (str): The Account Name; This will not be in fact the Advertiser name
118
- agency_id (str): ID of the agency requesting the advertiser creation
119
- country_iso_code (str): Country ISO code
120
- currency_iso_code (str): Currency ISO code
121
- industry_id (str): Industry ID
122
- website_url (str): Website url
123
-
124
- Keyword Args:
125
- _check_type (bool): if True, values for parameters in openapi_types
126
- will be type checked and a TypeError will be
127
- raised if the wrong type is input.
128
- Defaults to True
129
- _path_to_item (tuple/list): This is a list of keys or values to
130
- drill down to the model in received_data
131
- when deserializing a response
132
- _spec_property_naming (bool): True if the variable names in the input data
133
- are serialized names, as specified in the OpenAPI document.
134
- False if the variable names in the input data
135
- are pythonic names, e.g. snake case (default)
136
- _configuration (Configuration): the instance to use when
137
- deserializing a file_type parameter.
138
- If passed, type conversion is attempted
139
- If omitted no type conversion is done.
140
- _visited_composed_classes (tuple): This stores a tuple of
141
- classes that we have traveled through so that
142
- if we see that class again we will not use its
143
- discriminator again.
144
- When traveling through a discriminator, the
145
- composed schema that is
146
- is traveled through is added to this set.
147
- For example if Animal has a discriminator
148
- petType and we pass in "Dog", and the class Dog
149
- allOf includes Animal, we move through Animal
150
- once using the discriminator, and pick Dog.
151
- Then in Dog, we will make an instance of the
152
- Animal class but this time we won't travel
153
- through its discriminator because we passed in
154
- _visited_composed_classes = (Animal,)
155
- """
156
-
157
- _check_type = kwargs.pop('_check_type', True)
158
- _spec_property_naming = kwargs.pop('_spec_property_naming', True)
159
- _path_to_item = kwargs.pop('_path_to_item', ())
160
- _configuration = kwargs.pop('_configuration', None)
161
- _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
162
-
163
- self = super(OpenApiModel, cls).__new__(cls)
164
-
165
- if args:
166
- for arg in args:
167
- if isinstance(arg, dict):
168
- kwargs.update(arg)
169
- else:
170
- raise ApiTypeError(
171
- "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
172
- args,
173
- self.__class__.__name__,
174
- ),
175
- path_to_item=_path_to_item,
176
- valid_classes=(self.__class__,),
177
- )
178
-
179
- self._data_store = {}
180
- self._check_type = _check_type
181
- self._spec_property_naming = _spec_property_naming
182
- self._path_to_item = _path_to_item
183
- self._configuration = _configuration
184
- self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
185
-
186
- self.account_name = account_name
187
- self.agency_id = agency_id
188
- self.country_iso_code = country_iso_code
189
- self.currency_iso_code = currency_iso_code
190
- self.industry_id = industry_id
191
- self.website_url = website_url
192
- for var_name, var_value in kwargs.items():
193
- if var_name not in self.attribute_map and \
194
- self._configuration is not None and \
195
- self._configuration.discard_unknown_keys and \
196
- self.additional_properties_type is None:
197
- # discard variable.
198
- continue
199
- setattr(self, var_name, var_value)
200
- return self
201
-
202
- required_properties = set([
203
- '_data_store',
204
- '_check_type',
205
- '_spec_property_naming',
206
- '_path_to_item',
207
- '_configuration',
208
- '_visited_composed_classes',
209
- ])
210
-
211
- @convert_js_args_to_python_args
212
- def __init__(self, account_name, agency_id, country_iso_code, currency_iso_code, industry_id, website_url, *args, **kwargs): # noqa: E501
213
- """AdvertiserCreationInput - a model defined in OpenAPI
214
-
215
- Args:
216
- account_name (str): The Account Name; This will not be in fact the Advertiser name
217
- agency_id (str): ID of the agency requesting the advertiser creation
218
- country_iso_code (str): Country ISO code
219
- currency_iso_code (str): Currency ISO code
220
- industry_id (str): Industry ID
221
- website_url (str): Website url
222
-
223
- Keyword Args:
224
- _check_type (bool): if True, values for parameters in openapi_types
225
- will be type checked and a TypeError will be
226
- raised if the wrong type is input.
227
- Defaults to True
228
- _path_to_item (tuple/list): This is a list of keys or values to
229
- drill down to the model in received_data
230
- when deserializing a response
231
- _spec_property_naming (bool): True if the variable names in the input data
232
- are serialized names, as specified in the OpenAPI document.
233
- False if the variable names in the input data
234
- are pythonic names, e.g. snake case (default)
235
- _configuration (Configuration): the instance to use when
236
- deserializing a file_type parameter.
237
- If passed, type conversion is attempted
238
- If omitted no type conversion is done.
239
- _visited_composed_classes (tuple): This stores a tuple of
240
- classes that we have traveled through so that
241
- if we see that class again we will not use its
242
- discriminator again.
243
- When traveling through a discriminator, the
244
- composed schema that is
245
- is traveled through is added to this set.
246
- For example if Animal has a discriminator
247
- petType and we pass in "Dog", and the class Dog
248
- allOf includes Animal, we move through Animal
249
- once using the discriminator, and pick Dog.
250
- Then in Dog, we will make an instance of the
251
- Animal class but this time we won't travel
252
- through its discriminator because we passed in
253
- _visited_composed_classes = (Animal,)
254
- """
255
-
256
- _check_type = kwargs.pop('_check_type', True)
257
- _spec_property_naming = kwargs.pop('_spec_property_naming', False)
258
- _path_to_item = kwargs.pop('_path_to_item', ())
259
- _configuration = kwargs.pop('_configuration', None)
260
- _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
261
-
262
- if args:
263
- for arg in args:
264
- if isinstance(arg, dict):
265
- kwargs.update(arg)
266
- else:
267
- raise ApiTypeError(
268
- "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
269
- args,
270
- self.__class__.__name__,
271
- ),
272
- path_to_item=_path_to_item,
273
- valid_classes=(self.__class__,),
274
- )
275
-
276
- self._data_store = {}
277
- self._check_type = _check_type
278
- self._spec_property_naming = _spec_property_naming
279
- self._path_to_item = _path_to_item
280
- self._configuration = _configuration
281
- self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
282
-
283
- self.account_name = account_name
284
- self.agency_id = agency_id
285
- self.country_iso_code = country_iso_code
286
- self.currency_iso_code = currency_iso_code
287
- self.industry_id = industry_id
288
- self.website_url = website_url
289
- for var_name, var_value in kwargs.items():
290
- if var_name not in self.attribute_map and \
291
- self._configuration is not None and \
292
- self._configuration.discard_unknown_keys and \
293
- self.additional_properties_type is None:
294
- # discard variable.
295
- continue
296
- setattr(self, var_name, var_value)
297
- if var_name in self.read_only_vars:
298
- raise ApiAttributeError(f"`{var_name}` is a read-only attribute. Use `from_openapi_data` to instantiate "
299
- f"class with read only attributes.")
@@ -1,269 +0,0 @@
1
- """
2
- Criteo API
3
-
4
- Criteo API - MarketingSolutions # 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_marketingsolutions_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_marketingsolutions_preview.exceptions import ApiAttributeError
30
-
31
-
32
- def lazy_import():
33
- from criteo_api_marketingsolutions_preview.model.value_resource_of_advertiser_creation_input import ValueResourceOfAdvertiserCreationInput
34
- globals()['ValueResourceOfAdvertiserCreationInput'] = ValueResourceOfAdvertiserCreationInput
35
-
36
-
37
- class AdvertiserCreationRequest(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
- 'data': (ValueResourceOfAdvertiserCreationInput,), # noqa: E501
91
- }
92
-
93
- @cached_property
94
- def discriminator():
95
- return None
96
-
97
-
98
- attribute_map = {
99
- 'data': 'data', # noqa: E501
100
- }
101
-
102
- read_only_vars = {
103
- }
104
-
105
- _composed_schemas = {}
106
-
107
- @classmethod
108
- @convert_js_args_to_python_args
109
- def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
110
- """AdvertiserCreationRequest - a model defined in OpenAPI
111
-
112
- Keyword Args:
113
- _check_type (bool): if True, values for parameters in openapi_types
114
- will be type checked and a TypeError will be
115
- raised if the wrong type is input.
116
- Defaults to True
117
- _path_to_item (tuple/list): This is a list of keys or values to
118
- drill down to the model in received_data
119
- when deserializing a response
120
- _spec_property_naming (bool): True if the variable names in the input data
121
- are serialized names, as specified in the OpenAPI document.
122
- False if the variable names in the input data
123
- are pythonic names, e.g. snake case (default)
124
- _configuration (Configuration): the instance to use when
125
- deserializing a file_type parameter.
126
- If passed, type conversion is attempted
127
- If omitted no type conversion is done.
128
- _visited_composed_classes (tuple): This stores a tuple of
129
- classes that we have traveled through so that
130
- if we see that class again we will not use its
131
- discriminator again.
132
- When traveling through a discriminator, the
133
- composed schema that is
134
- is traveled through is added to this set.
135
- For example if Animal has a discriminator
136
- petType and we pass in "Dog", and the class Dog
137
- allOf includes Animal, we move through Animal
138
- once using the discriminator, and pick Dog.
139
- Then in Dog, we will make an instance of the
140
- Animal class but this time we won't travel
141
- through its discriminator because we passed in
142
- _visited_composed_classes = (Animal,)
143
- data (ValueResourceOfAdvertiserCreationInput): [optional] # noqa: E501
144
- """
145
-
146
- _check_type = kwargs.pop('_check_type', True)
147
- _spec_property_naming = kwargs.pop('_spec_property_naming', True)
148
- _path_to_item = kwargs.pop('_path_to_item', ())
149
- _configuration = kwargs.pop('_configuration', None)
150
- _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
151
-
152
- self = super(OpenApiModel, cls).__new__(cls)
153
-
154
- if args:
155
- for arg in args:
156
- if isinstance(arg, dict):
157
- kwargs.update(arg)
158
- else:
159
- raise ApiTypeError(
160
- "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
161
- args,
162
- self.__class__.__name__,
163
- ),
164
- path_to_item=_path_to_item,
165
- valid_classes=(self.__class__,),
166
- )
167
-
168
- self._data_store = {}
169
- self._check_type = _check_type
170
- self._spec_property_naming = _spec_property_naming
171
- self._path_to_item = _path_to_item
172
- self._configuration = _configuration
173
- self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
174
-
175
- for var_name, var_value in kwargs.items():
176
- if var_name not in self.attribute_map and \
177
- self._configuration is not None and \
178
- self._configuration.discard_unknown_keys and \
179
- self.additional_properties_type is None:
180
- # discard variable.
181
- continue
182
- setattr(self, var_name, var_value)
183
- return self
184
-
185
- required_properties = set([
186
- '_data_store',
187
- '_check_type',
188
- '_spec_property_naming',
189
- '_path_to_item',
190
- '_configuration',
191
- '_visited_composed_classes',
192
- ])
193
-
194
- @convert_js_args_to_python_args
195
- def __init__(self, *args, **kwargs): # noqa: E501
196
- """AdvertiserCreationRequest - a model defined in OpenAPI
197
-
198
- Keyword Args:
199
- _check_type (bool): if True, values for parameters in openapi_types
200
- will be type checked and a TypeError will be
201
- raised if the wrong type is input.
202
- Defaults to True
203
- _path_to_item (tuple/list): This is a list of keys or values to
204
- drill down to the model in received_data
205
- when deserializing a response
206
- _spec_property_naming (bool): True if the variable names in the input data
207
- are serialized names, as specified in the OpenAPI document.
208
- False if the variable names in the input data
209
- are pythonic names, e.g. snake case (default)
210
- _configuration (Configuration): the instance to use when
211
- deserializing a file_type parameter.
212
- If passed, type conversion is attempted
213
- If omitted no type conversion is done.
214
- _visited_composed_classes (tuple): This stores a tuple of
215
- classes that we have traveled through so that
216
- if we see that class again we will not use its
217
- discriminator again.
218
- When traveling through a discriminator, the
219
- composed schema that is
220
- is traveled through is added to this set.
221
- For example if Animal has a discriminator
222
- petType and we pass in "Dog", and the class Dog
223
- allOf includes Animal, we move through Animal
224
- once using the discriminator, and pick Dog.
225
- Then in Dog, we will make an instance of the
226
- Animal class but this time we won't travel
227
- through its discriminator because we passed in
228
- _visited_composed_classes = (Animal,)
229
- data (ValueResourceOfAdvertiserCreationInput): [optional] # noqa: E501
230
- """
231
-
232
- _check_type = kwargs.pop('_check_type', True)
233
- _spec_property_naming = kwargs.pop('_spec_property_naming', False)
234
- _path_to_item = kwargs.pop('_path_to_item', ())
235
- _configuration = kwargs.pop('_configuration', None)
236
- _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
237
-
238
- if args:
239
- for arg in args:
240
- if isinstance(arg, dict):
241
- kwargs.update(arg)
242
- else:
243
- raise ApiTypeError(
244
- "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
245
- args,
246
- self.__class__.__name__,
247
- ),
248
- path_to_item=_path_to_item,
249
- valid_classes=(self.__class__,),
250
- )
251
-
252
- self._data_store = {}
253
- self._check_type = _check_type
254
- self._spec_property_naming = _spec_property_naming
255
- self._path_to_item = _path_to_item
256
- self._configuration = _configuration
257
- self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
258
-
259
- for var_name, var_value in kwargs.items():
260
- if var_name not in self.attribute_map and \
261
- self._configuration is not None and \
262
- self._configuration.discard_unknown_keys and \
263
- self.additional_properties_type is None:
264
- # discard variable.
265
- continue
266
- setattr(self, var_name, var_value)
267
- if var_name in self.read_only_vars:
268
- raise ApiAttributeError(f"`{var_name}` is a read-only attribute. Use `from_openapi_data` to instantiate "
269
- f"class with read only attributes.")