criteo-api-marketingsolutions-sdk 0.0.250409__py3-none-any.whl → 0.0.250425__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- criteo_api_marketingsolutions_preview/__init__.py +1 -1
- criteo_api_marketingsolutions_preview/api_client.py +1 -1
- criteo_api_marketingsolutions_preview/configuration.py +1 -1
- criteo_api_marketingsolutions_preview/model/automated_budget_configuration_v23_q1.py +0 -7
- criteo_api_marketingsolutions_preview/model/budget_automation.py +6 -6
- criteo_api_marketingsolutions_preview/model/budget_automation_configuration.py +0 -7
- criteo_api_marketingsolutions_preview/model/patch_marketing_campaign_budget_automation.py +4 -4
- criteo_api_marketingsolutions_preview/models/__init__.py +0 -1
- {criteo_api_marketingsolutions_sdk-0.0.250409.dist-info → criteo_api_marketingsolutions_sdk-0.0.250425.dist-info}/METADATA +3 -3
- {criteo_api_marketingsolutions_sdk-0.0.250409.dist-info → criteo_api_marketingsolutions_sdk-0.0.250425.dist-info}/RECORD +12 -13
- {criteo_api_marketingsolutions_sdk-0.0.250409.dist-info → criteo_api_marketingsolutions_sdk-0.0.250425.dist-info}/WHEEL +1 -1
- criteo_api_marketingsolutions_preview/model/automated_budget_configuration.py +0 -276
- {criteo_api_marketingsolutions_sdk-0.0.250409.dist-info → criteo_api_marketingsolutions_sdk-0.0.250425.dist-info}/top_level.txt +0 -0
|
@@ -76,7 +76,7 @@ class ApiClient(object):
|
|
|
76
76
|
self.default_headers[header_name] = header_value
|
|
77
77
|
self.cookie = cookie
|
|
78
78
|
# Set default User-Agent.
|
|
79
|
-
self.user_agent = 'OpenAPI-Generator/0.0.
|
|
79
|
+
self.user_agent = 'OpenAPI-Generator/0.0.250425/python'
|
|
80
80
|
|
|
81
81
|
def __enter__(self):
|
|
82
82
|
return self
|
|
@@ -395,7 +395,7 @@ class Configuration(object):
|
|
|
395
395
|
"OS: {env}\n"\
|
|
396
396
|
"Python Version: {pyversion}\n"\
|
|
397
397
|
"Version of the API: preview\n"\
|
|
398
|
-
"SDK Package Version: 0.0.
|
|
398
|
+
"SDK Package Version: 0.0.250425".\
|
|
399
399
|
format(env=sys.platform, pyversion=sys.version)
|
|
400
400
|
|
|
401
401
|
def get_host_settings(self):
|
|
@@ -57,15 +57,8 @@ class AutomatedBudgetConfigurationV23Q1(ModelNormal):
|
|
|
57
57
|
allowed_values = {
|
|
58
58
|
('ad_set_optimization_objective',): {
|
|
59
59
|
'None': None,
|
|
60
|
-
'CUSTOMACTION': "customAction",
|
|
61
|
-
'CLICKS': "clicks",
|
|
62
60
|
'CONVERSIONS': "conversions",
|
|
63
|
-
'DISPLAYS': "displays",
|
|
64
|
-
'APPPROMOTION': "appPromotion",
|
|
65
61
|
'REVENUE': "revenue",
|
|
66
|
-
'STORECONVERSIONS': "storeConversions",
|
|
67
|
-
'VALUE': "value",
|
|
68
|
-
'REACH': "reach",
|
|
69
62
|
'VISITS': "visits",
|
|
70
63
|
'VIDEOVIEWS': "videoViews",
|
|
71
64
|
},
|
|
@@ -30,8 +30,8 @@ from criteo_api_marketingsolutions_preview.exceptions import ApiAttributeError
|
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def lazy_import():
|
|
33
|
-
from criteo_api_marketingsolutions_preview.model.
|
|
34
|
-
globals()['
|
|
33
|
+
from criteo_api_marketingsolutions_preview.model.budget_automation_configuration import BudgetAutomationConfiguration
|
|
34
|
+
globals()['BudgetAutomationConfiguration'] = BudgetAutomationConfiguration
|
|
35
35
|
|
|
36
36
|
|
|
37
37
|
class BudgetAutomation(ModelNormal):
|
|
@@ -87,7 +87,7 @@ class BudgetAutomation(ModelNormal):
|
|
|
87
87
|
"""
|
|
88
88
|
lazy_import()
|
|
89
89
|
return {
|
|
90
|
-
'
|
|
90
|
+
'budget_configuration': (BudgetAutomationConfiguration,), # noqa: E501
|
|
91
91
|
'enabled': (bool,), # noqa: E501
|
|
92
92
|
}
|
|
93
93
|
|
|
@@ -97,7 +97,7 @@ class BudgetAutomation(ModelNormal):
|
|
|
97
97
|
|
|
98
98
|
|
|
99
99
|
attribute_map = {
|
|
100
|
-
'
|
|
100
|
+
'budget_configuration': 'budgetConfiguration', # noqa: E501
|
|
101
101
|
'enabled': 'enabled', # noqa: E501
|
|
102
102
|
}
|
|
103
103
|
|
|
@@ -142,7 +142,7 @@ class BudgetAutomation(ModelNormal):
|
|
|
142
142
|
Animal class but this time we won't travel
|
|
143
143
|
through its discriminator because we passed in
|
|
144
144
|
_visited_composed_classes = (Animal,)
|
|
145
|
-
|
|
145
|
+
budget_configuration (BudgetAutomationConfiguration): [optional] # noqa: E501
|
|
146
146
|
enabled (bool): [optional] # noqa: E501
|
|
147
147
|
"""
|
|
148
148
|
|
|
@@ -229,7 +229,7 @@ class BudgetAutomation(ModelNormal):
|
|
|
229
229
|
Animal class but this time we won't travel
|
|
230
230
|
through its discriminator because we passed in
|
|
231
231
|
_visited_composed_classes = (Animal,)
|
|
232
|
-
|
|
232
|
+
budget_configuration (BudgetAutomationConfiguration): [optional] # noqa: E501
|
|
233
233
|
enabled (bool): [optional] # noqa: E501
|
|
234
234
|
"""
|
|
235
235
|
|
|
@@ -56,15 +56,8 @@ class BudgetAutomationConfiguration(ModelNormal):
|
|
|
56
56
|
|
|
57
57
|
allowed_values = {
|
|
58
58
|
('ad_set_objectives',): {
|
|
59
|
-
'CUSTOMACTION': "customAction",
|
|
60
|
-
'CLICKS': "clicks",
|
|
61
59
|
'CONVERSIONS': "conversions",
|
|
62
|
-
'DISPLAYS': "displays",
|
|
63
|
-
'APPPROMOTION': "appPromotion",
|
|
64
60
|
'REVENUE': "revenue",
|
|
65
|
-
'STORECONVERSIONS': "storeConversions",
|
|
66
|
-
'VALUE': "value",
|
|
67
|
-
'REACH': "reach",
|
|
68
61
|
'VISITS': "visits",
|
|
69
62
|
'VIDEOVIEWS': "videoViews",
|
|
70
63
|
},
|
|
@@ -88,7 +88,7 @@ class PatchMarketingCampaignBudgetAutomation(ModelNormal):
|
|
|
88
88
|
lazy_import()
|
|
89
89
|
return {
|
|
90
90
|
'budget_configuration': (BudgetAutomationConfiguration,), # noqa: E501
|
|
91
|
-
'
|
|
91
|
+
'enabled': (bool,), # noqa: E501
|
|
92
92
|
}
|
|
93
93
|
|
|
94
94
|
@cached_property
|
|
@@ -98,7 +98,7 @@ class PatchMarketingCampaignBudgetAutomation(ModelNormal):
|
|
|
98
98
|
|
|
99
99
|
attribute_map = {
|
|
100
100
|
'budget_configuration': 'budgetConfiguration', # noqa: E501
|
|
101
|
-
'
|
|
101
|
+
'enabled': 'enabled', # noqa: E501
|
|
102
102
|
}
|
|
103
103
|
|
|
104
104
|
read_only_vars = {
|
|
@@ -143,7 +143,7 @@ class PatchMarketingCampaignBudgetAutomation(ModelNormal):
|
|
|
143
143
|
through its discriminator because we passed in
|
|
144
144
|
_visited_composed_classes = (Animal,)
|
|
145
145
|
budget_configuration (BudgetAutomationConfiguration): [optional] # noqa: E501
|
|
146
|
-
|
|
146
|
+
enabled (bool): Budget automation for the marketing campaign enable. [optional] # noqa: E501
|
|
147
147
|
"""
|
|
148
148
|
|
|
149
149
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -230,7 +230,7 @@ class PatchMarketingCampaignBudgetAutomation(ModelNormal):
|
|
|
230
230
|
through its discriminator because we passed in
|
|
231
231
|
_visited_composed_classes = (Animal,)
|
|
232
232
|
budget_configuration (BudgetAutomationConfiguration): [optional] # noqa: E501
|
|
233
|
-
|
|
233
|
+
enabled (bool): Budget automation for the marketing campaign enable. [optional] # noqa: E501
|
|
234
234
|
"""
|
|
235
235
|
|
|
236
236
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -119,7 +119,6 @@ from criteo_api_marketingsolutions_preview.model.audience_size_estimation_v1_res
|
|
|
119
119
|
from criteo_api_marketingsolutions_preview.model.audience_update_entity_v1 import AudienceUpdateEntityV1
|
|
120
120
|
from criteo_api_marketingsolutions_preview.model.audience_update_entity_v1_resource import AudienceUpdateEntityV1Resource
|
|
121
121
|
from criteo_api_marketingsolutions_preview.model.audience_warning import AudienceWarning
|
|
122
|
-
from criteo_api_marketingsolutions_preview.model.automated_budget_configuration import AutomatedBudgetConfiguration
|
|
123
122
|
from criteo_api_marketingsolutions_preview.model.automated_budget_configuration_v23_q1 import AutomatedBudgetConfigurationV23Q1
|
|
124
123
|
from criteo_api_marketingsolutions_preview.model.basic_audience_definition import BasicAudienceDefinition
|
|
125
124
|
from criteo_api_marketingsolutions_preview.model.batch_accepted_response import BatchAcceptedResponse
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: criteo-api-marketingsolutions-sdk
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.250425
|
|
4
4
|
Summary: Criteo API SDK
|
|
5
5
|
Home-page: https://github.com/criteo/criteo-api-python-sdk
|
|
6
6
|
Author: Criteo
|
|
@@ -35,9 +35,9 @@ IMPORTANT: This Python package links to Criteo production environment. Any test
|
|
|
35
35
|
|
|
36
36
|
|
|
37
37
|
```sh
|
|
38
|
-
pip install criteo-api-marketingsolutions-sdk==0.0.
|
|
38
|
+
pip install criteo-api-marketingsolutions-sdk==0.0.250425
|
|
39
39
|
```
|
|
40
|
-
(you may need to run `pip` with root permission: `sudo pip install criteo-api-marketingsolutions-sdk==0.0.
|
|
40
|
+
(you may need to run `pip` with root permission: `sudo pip install criteo-api-marketingsolutions-sdk==0.0.250425`)
|
|
41
41
|
|
|
42
42
|
Then import the package:
|
|
43
43
|
```python
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
criteo_api_marketingsolutions_preview/__init__.py,sha256=
|
|
2
|
-
criteo_api_marketingsolutions_preview/api_client.py,sha256=
|
|
1
|
+
criteo_api_marketingsolutions_preview/__init__.py,sha256=QRbLXNwBjLiOXrVpfrlMhFhAeLrdWmw2kSQ-KgE8SIE,1107
|
|
2
|
+
criteo_api_marketingsolutions_preview/api_client.py,sha256=hOeGotJ5DOcyx6tgcIU-Nq_zAaQ7ZxHxApYdpMp6tOE,39246
|
|
3
3
|
criteo_api_marketingsolutions_preview/api_client_builder.py,sha256=2W-j9f5re32PZooV4BngIi3AvmOOpKl7SAEQc6FXVWg,1525
|
|
4
|
-
criteo_api_marketingsolutions_preview/configuration.py,sha256=
|
|
4
|
+
criteo_api_marketingsolutions_preview/configuration.py,sha256=ciXqtOUUdyJSwYr2dsQXotDMUb4b5CmtRmUtyE2zrHI,16735
|
|
5
5
|
criteo_api_marketingsolutions_preview/criteo_api_client.py,sha256=4uNu3e__oYicTD-lcpFerUCXl3c3_7LEugoMFqfRTM8,666
|
|
6
6
|
criteo_api_marketingsolutions_preview/criteo_auth.py,sha256=RXBNjv9iz2JSqB25me0iMWN7jfeKRYe0EF6y37hw__A,4714
|
|
7
7
|
criteo_api_marketingsolutions_preview/criteo_rest.py,sha256=oIDGHdVI2kWe1st1X7IHl8OAa1zJn7g1uQUSKYWwFDc,3431
|
|
@@ -131,13 +131,12 @@ criteo_api_marketingsolutions_preview/model/audience_size_estimation_v1_response
|
|
|
131
131
|
criteo_api_marketingsolutions_preview/model/audience_update_entity_v1.py,sha256=7GwPbjEU8V8INSGgZGR01KUD8tBtk8A0IK0rvw3z0Vc,12284
|
|
132
132
|
criteo_api_marketingsolutions_preview/model/audience_update_entity_v1_resource.py,sha256=77OWMBrcmQqpTIaWA14EzELAwOzMJhUGPhcvcXyWtoc,12161
|
|
133
133
|
criteo_api_marketingsolutions_preview/model/audience_warning.py,sha256=coj_VP2q5hONPNKCMB6iwfkofABH16celRe70lFvixk,14965
|
|
134
|
-
criteo_api_marketingsolutions_preview/model/
|
|
135
|
-
criteo_api_marketingsolutions_preview/model/automated_budget_configuration_v23_q1.py,sha256=WD2KHPIVdkfKhzsUceLtqkz0s0RoS2QvQir6xfyWeHY,12116
|
|
134
|
+
criteo_api_marketingsolutions_preview/model/automated_budget_configuration_v23_q1.py,sha256=ExZjvKJgbB3z9XDNmq8GYX-UAffj15-kptaA_m6fhO4,11848
|
|
136
135
|
criteo_api_marketingsolutions_preview/model/basic_audience_definition.py,sha256=tVaPpObB-Cv52xP1YznVIIHazGMMcCBFK_0lnt6xdQU,12260
|
|
137
136
|
criteo_api_marketingsolutions_preview/model/batch_accepted_response.py,sha256=qQRnEhdPPTxozngB64bCHfeYOIrmaXnVBfx3_TT67aw,11589
|
|
138
137
|
criteo_api_marketingsolutions_preview/model/behavioral_v1.py,sha256=at5G7s8BzHCPCJw2kkJhmWLOn7aP-zmuL3xLtFmtVW8,12707
|
|
139
|
-
criteo_api_marketingsolutions_preview/model/budget_automation.py,sha256=
|
|
140
|
-
criteo_api_marketingsolutions_preview/model/budget_automation_configuration.py,sha256=
|
|
138
|
+
criteo_api_marketingsolutions_preview/model/budget_automation.py,sha256=G9QR0E_xAYDp2rXxKjB-nM-hQpNuc204xCg-Re5oFJ4,12030
|
|
139
|
+
criteo_api_marketingsolutions_preview/model/budget_automation_configuration.py,sha256=5hb68ycz9-3orH6gXgX3PfXzg52YU_7mtKmpVAOSsLM,11707
|
|
141
140
|
criteo_api_marketingsolutions_preview/model/campaign_budget_automation_v23_q1.py,sha256=d8vuYHRBJtOIRlj3FFObbqhJnPNENeMOUOcZTDw-vlA,12180
|
|
142
141
|
criteo_api_marketingsolutions_preview/model/campaign_search_filters_v23_q1.py,sha256=tP_trzZjxQbLRs_nMDw8cAX0l08KWlhfjHycORrMomI,11786
|
|
143
142
|
criteo_api_marketingsolutions_preview/model/campaign_search_request_v23_q1.py,sha256=liv6nor1PeTGu35G-RSrjTv12aUMOFgbAsWzoJAq0ck,11781
|
|
@@ -281,7 +280,7 @@ criteo_api_marketingsolutions_preview/model/patch_campaign.py,sha256=goyuWE-dlsL
|
|
|
281
280
|
criteo_api_marketingsolutions_preview/model/patch_campaign_list_request.py,sha256=Gd98dHjjzFbJuEFWSFl2BfT-tjfY8OYTjZ15K2PQd34,11798
|
|
282
281
|
criteo_api_marketingsolutions_preview/model/patch_campaign_spend_limit.py,sha256=XYo8J-BHMYxgVMjb6CHu1AKkezjF28CvvGcjQu5pX2w,12647
|
|
283
282
|
criteo_api_marketingsolutions_preview/model/patch_campaign_write_resource.py,sha256=VW7WrQbiOM4DMGxnwAjkWf4kmavTms0KQckJAbooK8E,12220
|
|
284
|
-
criteo_api_marketingsolutions_preview/model/patch_marketing_campaign_budget_automation.py,sha256=
|
|
283
|
+
criteo_api_marketingsolutions_preview/model/patch_marketing_campaign_budget_automation.py,sha256=WbRQol4gq2KSvRv-sWdp1t52mRVBqg9wf4A6sXJ4AdE,12202
|
|
285
284
|
criteo_api_marketingsolutions_preview/model/patch_result_campaign_list_response.py,sha256=eUBsT0IKkGh0UFj4O8mf_kAuV5P7yPiwaqFqC_szm0M,12611
|
|
286
285
|
criteo_api_marketingsolutions_preview/model/patch_result_campaign_read_resource.py,sha256=HBEmmJnr6nAJC69fRKihV4LZxGM81nuwVZiCiOZFDOM,11785
|
|
287
286
|
criteo_api_marketingsolutions_preview/model/placements_report_query_message.py,sha256=lgqV7ndsBVE05wQLCAAyyqQ7pUrp-vJII1azLbS3Sec,16397
|
|
@@ -390,8 +389,8 @@ criteo_api_marketingsolutions_preview/model/value_resource_outcome_of_product_fi
|
|
|
390
389
|
criteo_api_marketingsolutions_preview/model/video_detail.py,sha256=d28efhqjo3gkR_kANhLUJtrOlQHcdsJk0c48giAKc7o,12436
|
|
391
390
|
criteo_api_marketingsolutions_preview/model/write_model_ad_set_id.py,sha256=rGso-xlxkPu39QATgZs4XYwGa0FV8zp8ReeeDWH7guQ,11755
|
|
392
391
|
criteo_api_marketingsolutions_preview/model/write_model_patch_ad_set_v24_q3.py,sha256=8CS2RUr7WkaQb48GuajPEuhT42_wjKVZcFf5JREQr5A,12234
|
|
393
|
-
criteo_api_marketingsolutions_preview/models/__init__.py,sha256=
|
|
394
|
-
criteo_api_marketingsolutions_sdk-0.0.
|
|
395
|
-
criteo_api_marketingsolutions_sdk-0.0.
|
|
396
|
-
criteo_api_marketingsolutions_sdk-0.0.
|
|
397
|
-
criteo_api_marketingsolutions_sdk-0.0.
|
|
392
|
+
criteo_api_marketingsolutions_preview/models/__init__.py,sha256=n1tFtQ8Rmc5ncucXsmdLeXEf4TymGHkA9hYTLC5G86U,41942
|
|
393
|
+
criteo_api_marketingsolutions_sdk-0.0.250425.dist-info/METADATA,sha256=WbE9bXAkM9EqynfGfyqQRaGtx11iNpCROw6BoGwmS3o,1876
|
|
394
|
+
criteo_api_marketingsolutions_sdk-0.0.250425.dist-info/WHEEL,sha256=SmOxYU7pzNKBqASvQJ7DjX3XGUF92lrGhMb3R6_iiqI,91
|
|
395
|
+
criteo_api_marketingsolutions_sdk-0.0.250425.dist-info/top_level.txt,sha256=4xVpjptYrJ_AiVXZAhkhYuSp6rJRgq_VrBDhg-Eyi5Y,38
|
|
396
|
+
criteo_api_marketingsolutions_sdk-0.0.250425.dist-info/RECORD,,
|
|
@@ -1,276 +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 AutomatedBudgetConfiguration(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
|
-
('objective',): {
|
|
59
|
-
'CUSTOMACTION': "customAction",
|
|
60
|
-
'CLICKS': "clicks",
|
|
61
|
-
'CONVERSIONS': "conversions",
|
|
62
|
-
'DISPLAYS': "displays",
|
|
63
|
-
'APPPROMOTION': "appPromotion",
|
|
64
|
-
'REVENUE': "revenue",
|
|
65
|
-
'STORECONVERSIONS': "storeConversions",
|
|
66
|
-
'VALUE': "value",
|
|
67
|
-
'REACH': "reach",
|
|
68
|
-
'VISITS': "visits",
|
|
69
|
-
'VIDEOVIEWS': "videoViews",
|
|
70
|
-
},
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
validations = {
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
@cached_property
|
|
77
|
-
def additional_properties_type():
|
|
78
|
-
"""
|
|
79
|
-
This must be a method because a model may have properties that are
|
|
80
|
-
of type self, this must run after the class is loaded
|
|
81
|
-
"""
|
|
82
|
-
return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
|
|
83
|
-
|
|
84
|
-
_nullable = True
|
|
85
|
-
|
|
86
|
-
@cached_property
|
|
87
|
-
def openapi_types():
|
|
88
|
-
"""
|
|
89
|
-
This must be a method because a model may have properties that are
|
|
90
|
-
of type self, this must run after the class is loaded
|
|
91
|
-
|
|
92
|
-
Returns
|
|
93
|
-
openapi_types (dict): The key is attribute name
|
|
94
|
-
and the value is attribute type.
|
|
95
|
-
"""
|
|
96
|
-
return {
|
|
97
|
-
'objective': (str,), # noqa: E501
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
@cached_property
|
|
101
|
-
def discriminator():
|
|
102
|
-
return None
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
attribute_map = {
|
|
106
|
-
'objective': 'objective', # noqa: E501
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
read_only_vars = {
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
_composed_schemas = {}
|
|
113
|
-
|
|
114
|
-
@classmethod
|
|
115
|
-
@convert_js_args_to_python_args
|
|
116
|
-
def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
|
|
117
|
-
"""AutomatedBudgetConfiguration - a model defined in OpenAPI
|
|
118
|
-
|
|
119
|
-
Keyword Args:
|
|
120
|
-
_check_type (bool): if True, values for parameters in openapi_types
|
|
121
|
-
will be type checked and a TypeError will be
|
|
122
|
-
raised if the wrong type is input.
|
|
123
|
-
Defaults to True
|
|
124
|
-
_path_to_item (tuple/list): This is a list of keys or values to
|
|
125
|
-
drill down to the model in received_data
|
|
126
|
-
when deserializing a response
|
|
127
|
-
_spec_property_naming (bool): True if the variable names in the input data
|
|
128
|
-
are serialized names, as specified in the OpenAPI document.
|
|
129
|
-
False if the variable names in the input data
|
|
130
|
-
are pythonic names, e.g. snake case (default)
|
|
131
|
-
_configuration (Configuration): the instance to use when
|
|
132
|
-
deserializing a file_type parameter.
|
|
133
|
-
If passed, type conversion is attempted
|
|
134
|
-
If omitted no type conversion is done.
|
|
135
|
-
_visited_composed_classes (tuple): This stores a tuple of
|
|
136
|
-
classes that we have traveled through so that
|
|
137
|
-
if we see that class again we will not use its
|
|
138
|
-
discriminator again.
|
|
139
|
-
When traveling through a discriminator, the
|
|
140
|
-
composed schema that is
|
|
141
|
-
is traveled through is added to this set.
|
|
142
|
-
For example if Animal has a discriminator
|
|
143
|
-
petType and we pass in "Dog", and the class Dog
|
|
144
|
-
allOf includes Animal, we move through Animal
|
|
145
|
-
once using the discriminator, and pick Dog.
|
|
146
|
-
Then in Dog, we will make an instance of the
|
|
147
|
-
Animal class but this time we won't travel
|
|
148
|
-
through its discriminator because we passed in
|
|
149
|
-
_visited_composed_classes = (Animal,)
|
|
150
|
-
objective (str): Objective of the ad set. [optional] # noqa: E501
|
|
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
|
-
for var_name, var_value in kwargs.items():
|
|
183
|
-
if var_name not in self.attribute_map and \
|
|
184
|
-
self._configuration is not None and \
|
|
185
|
-
self._configuration.discard_unknown_keys and \
|
|
186
|
-
self.additional_properties_type is None:
|
|
187
|
-
# discard variable.
|
|
188
|
-
continue
|
|
189
|
-
setattr(self, var_name, var_value)
|
|
190
|
-
return self
|
|
191
|
-
|
|
192
|
-
required_properties = set([
|
|
193
|
-
'_data_store',
|
|
194
|
-
'_check_type',
|
|
195
|
-
'_spec_property_naming',
|
|
196
|
-
'_path_to_item',
|
|
197
|
-
'_configuration',
|
|
198
|
-
'_visited_composed_classes',
|
|
199
|
-
])
|
|
200
|
-
|
|
201
|
-
@convert_js_args_to_python_args
|
|
202
|
-
def __init__(self, *args, **kwargs): # noqa: E501
|
|
203
|
-
"""AutomatedBudgetConfiguration - a model defined in OpenAPI
|
|
204
|
-
|
|
205
|
-
Keyword Args:
|
|
206
|
-
_check_type (bool): if True, values for parameters in openapi_types
|
|
207
|
-
will be type checked and a TypeError will be
|
|
208
|
-
raised if the wrong type is input.
|
|
209
|
-
Defaults to True
|
|
210
|
-
_path_to_item (tuple/list): This is a list of keys or values to
|
|
211
|
-
drill down to the model in received_data
|
|
212
|
-
when deserializing a response
|
|
213
|
-
_spec_property_naming (bool): True if the variable names in the input data
|
|
214
|
-
are serialized names, as specified in the OpenAPI document.
|
|
215
|
-
False if the variable names in the input data
|
|
216
|
-
are pythonic names, e.g. snake case (default)
|
|
217
|
-
_configuration (Configuration): the instance to use when
|
|
218
|
-
deserializing a file_type parameter.
|
|
219
|
-
If passed, type conversion is attempted
|
|
220
|
-
If omitted no type conversion is done.
|
|
221
|
-
_visited_composed_classes (tuple): This stores a tuple of
|
|
222
|
-
classes that we have traveled through so that
|
|
223
|
-
if we see that class again we will not use its
|
|
224
|
-
discriminator again.
|
|
225
|
-
When traveling through a discriminator, the
|
|
226
|
-
composed schema that is
|
|
227
|
-
is traveled through is added to this set.
|
|
228
|
-
For example if Animal has a discriminator
|
|
229
|
-
petType and we pass in "Dog", and the class Dog
|
|
230
|
-
allOf includes Animal, we move through Animal
|
|
231
|
-
once using the discriminator, and pick Dog.
|
|
232
|
-
Then in Dog, we will make an instance of the
|
|
233
|
-
Animal class but this time we won't travel
|
|
234
|
-
through its discriminator because we passed in
|
|
235
|
-
_visited_composed_classes = (Animal,)
|
|
236
|
-
objective (str): Objective of the ad set. [optional] # noqa: E501
|
|
237
|
-
"""
|
|
238
|
-
|
|
239
|
-
_check_type = kwargs.pop('_check_type', True)
|
|
240
|
-
_spec_property_naming = kwargs.pop('_spec_property_naming', False)
|
|
241
|
-
_path_to_item = kwargs.pop('_path_to_item', ())
|
|
242
|
-
_configuration = kwargs.pop('_configuration', None)
|
|
243
|
-
_visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
|
|
244
|
-
|
|
245
|
-
if args:
|
|
246
|
-
for arg in args:
|
|
247
|
-
if isinstance(arg, dict):
|
|
248
|
-
kwargs.update(arg)
|
|
249
|
-
else:
|
|
250
|
-
raise ApiTypeError(
|
|
251
|
-
"Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
|
|
252
|
-
args,
|
|
253
|
-
self.__class__.__name__,
|
|
254
|
-
),
|
|
255
|
-
path_to_item=_path_to_item,
|
|
256
|
-
valid_classes=(self.__class__,),
|
|
257
|
-
)
|
|
258
|
-
|
|
259
|
-
self._data_store = {}
|
|
260
|
-
self._check_type = _check_type
|
|
261
|
-
self._spec_property_naming = _spec_property_naming
|
|
262
|
-
self._path_to_item = _path_to_item
|
|
263
|
-
self._configuration = _configuration
|
|
264
|
-
self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
|
|
265
|
-
|
|
266
|
-
for var_name, var_value in kwargs.items():
|
|
267
|
-
if var_name not in self.attribute_map and \
|
|
268
|
-
self._configuration is not None and \
|
|
269
|
-
self._configuration.discard_unknown_keys and \
|
|
270
|
-
self.additional_properties_type is None:
|
|
271
|
-
# discard variable.
|
|
272
|
-
continue
|
|
273
|
-
setattr(self, var_name, var_value)
|
|
274
|
-
if var_name in self.read_only_vars:
|
|
275
|
-
raise ApiAttributeError(f"`{var_name}` is a read-only attribute. Use `from_openapi_data` to instantiate "
|
|
276
|
-
f"class with read only attributes.")
|