ultracart-rest-sdk 3.11.45__py3-none-any.whl → 3.11.47__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.
- ultracart/__init__.py +1 -0
- ultracart/api_client.py +1 -1
- ultracart/configuration.py +1 -1
- ultracart/models/__init__.py +1 -0
- ultracart/models/cart.py +31 -3
- ultracart/models/cart_utm.py +923 -0
- ultracart/models/conversation_agent_auth.py +53 -1
- {ultracart_rest_sdk-3.11.45.dist-info → ultracart_rest_sdk-3.11.47.dist-info}/METADATA +1 -1
- {ultracart_rest_sdk-3.11.45.dist-info → ultracart_rest_sdk-3.11.47.dist-info}/RECORD +12 -11
- {ultracart_rest_sdk-3.11.45.dist-info → ultracart_rest_sdk-3.11.47.dist-info}/LICENSE +0 -0
- {ultracart_rest_sdk-3.11.45.dist-info → ultracart_rest_sdk-3.11.47.dist-info}/WHEEL +0 -0
- {ultracart_rest_sdk-3.11.45.dist-info → ultracart_rest_sdk-3.11.47.dist-info}/top_level.txt +0 -0
ultracart/__init__.py
CHANGED
|
@@ -142,6 +142,7 @@ from ultracart.models.cart_shipping import CartShipping
|
|
|
142
142
|
from ultracart.models.cart_summary import CartSummary
|
|
143
143
|
from ultracart.models.cart_taxes import CartTaxes
|
|
144
144
|
from ultracart.models.cart_upsell_after import CartUpsellAfter
|
|
145
|
+
from ultracart.models.cart_utm import CartUtm
|
|
145
146
|
from ultracart.models.cart_validation_request import CartValidationRequest
|
|
146
147
|
from ultracart.models.cart_validation_response import CartValidationResponse
|
|
147
148
|
from ultracart.models.chanel_partner_reason_codes_response import ChanelPartnerReasonCodesResponse
|
ultracart/api_client.py
CHANGED
|
@@ -74,7 +74,7 @@ class ApiClient(object):
|
|
|
74
74
|
self.default_headers[header_name] = header_value
|
|
75
75
|
self.cookie = cookie
|
|
76
76
|
# Set default User-Agent.
|
|
77
|
-
self.user_agent = 'Swagger-Codegen/3.11.
|
|
77
|
+
self.user_agent = 'Swagger-Codegen/3.11.47/python'
|
|
78
78
|
|
|
79
79
|
def __del__(self):
|
|
80
80
|
if self._pool is not None:
|
ultracart/configuration.py
CHANGED
ultracart/models/__init__.py
CHANGED
|
@@ -116,6 +116,7 @@ from ultracart.models.cart_shipping import CartShipping
|
|
|
116
116
|
from ultracart.models.cart_summary import CartSummary
|
|
117
117
|
from ultracart.models.cart_taxes import CartTaxes
|
|
118
118
|
from ultracart.models.cart_upsell_after import CartUpsellAfter
|
|
119
|
+
from ultracart.models.cart_utm import CartUtm
|
|
119
120
|
from ultracart.models.cart_validation_request import CartValidationRequest
|
|
120
121
|
from ultracart.models.cart_validation_response import CartValidationResponse
|
|
121
122
|
from ultracart.models.chanel_partner_reason_codes_response import ChanelPartnerReasonCodesResponse
|
ultracart/models/cart.py
CHANGED
|
@@ -56,7 +56,8 @@ class Cart(object):
|
|
|
56
56
|
'shipping': 'CartShipping',
|
|
57
57
|
'summary': 'CartSummary',
|
|
58
58
|
'taxes': 'CartTaxes',
|
|
59
|
-
'upsell_after': 'CartUpsellAfter'
|
|
59
|
+
'upsell_after': 'CartUpsellAfter',
|
|
60
|
+
'utms': 'list[CartUtm]'
|
|
60
61
|
}
|
|
61
62
|
|
|
62
63
|
attribute_map = {
|
|
@@ -85,10 +86,11 @@ class Cart(object):
|
|
|
85
86
|
'shipping': 'shipping',
|
|
86
87
|
'summary': 'summary',
|
|
87
88
|
'taxes': 'taxes',
|
|
88
|
-
'upsell_after': 'upsell_after'
|
|
89
|
+
'upsell_after': 'upsell_after',
|
|
90
|
+
'utms': 'utms'
|
|
89
91
|
}
|
|
90
92
|
|
|
91
|
-
def __init__(self, affiliate=None, affiliate_network_pixel_oid=None, base_currency_code=None, billing=None, buysafe=None, cart_id=None, checkout=None, coupons=None, currency_code=None, currency_conversion=None, customer_profile=None, exchange_rate=None, gift=None, gift_certificate=None, items=None, language_iso_code=None, logged_in=None, marketing=None, merchant_id=None, payment=None, properties=None, settings=None, shipping=None, summary=None, taxes=None, upsell_after=None): # noqa: E501
|
|
93
|
+
def __init__(self, affiliate=None, affiliate_network_pixel_oid=None, base_currency_code=None, billing=None, buysafe=None, cart_id=None, checkout=None, coupons=None, currency_code=None, currency_conversion=None, customer_profile=None, exchange_rate=None, gift=None, gift_certificate=None, items=None, language_iso_code=None, logged_in=None, marketing=None, merchant_id=None, payment=None, properties=None, settings=None, shipping=None, summary=None, taxes=None, upsell_after=None, utms=None): # noqa: E501
|
|
92
94
|
"""Cart - a model defined in Swagger""" # noqa: E501
|
|
93
95
|
|
|
94
96
|
self._affiliate = None
|
|
@@ -117,6 +119,7 @@ class Cart(object):
|
|
|
117
119
|
self._summary = None
|
|
118
120
|
self._taxes = None
|
|
119
121
|
self._upsell_after = None
|
|
122
|
+
self._utms = None
|
|
120
123
|
self.discriminator = None
|
|
121
124
|
|
|
122
125
|
if affiliate is not None:
|
|
@@ -171,6 +174,8 @@ class Cart(object):
|
|
|
171
174
|
self.taxes = taxes
|
|
172
175
|
if upsell_after is not None:
|
|
173
176
|
self.upsell_after = upsell_after
|
|
177
|
+
if utms is not None:
|
|
178
|
+
self.utms = utms
|
|
174
179
|
|
|
175
180
|
@property
|
|
176
181
|
def affiliate(self):
|
|
@@ -746,6 +751,29 @@ class Cart(object):
|
|
|
746
751
|
|
|
747
752
|
self._upsell_after = upsell_after
|
|
748
753
|
|
|
754
|
+
@property
|
|
755
|
+
def utms(self):
|
|
756
|
+
"""Gets the utms of this Cart. # noqa: E501
|
|
757
|
+
|
|
758
|
+
UTM clicks. The zero index is the most recent (last) UTM click. Only available in BigQuery and on an abandon webhook. # noqa: E501
|
|
759
|
+
|
|
760
|
+
:return: The utms of this Cart. # noqa: E501
|
|
761
|
+
:rtype: list[CartUtm]
|
|
762
|
+
"""
|
|
763
|
+
return self._utms
|
|
764
|
+
|
|
765
|
+
@utms.setter
|
|
766
|
+
def utms(self, utms):
|
|
767
|
+
"""Sets the utms of this Cart.
|
|
768
|
+
|
|
769
|
+
UTM clicks. The zero index is the most recent (last) UTM click. Only available in BigQuery and on an abandon webhook. # noqa: E501
|
|
770
|
+
|
|
771
|
+
:param utms: The utms of this Cart. # noqa: E501
|
|
772
|
+
:type: list[CartUtm]
|
|
773
|
+
"""
|
|
774
|
+
|
|
775
|
+
self._utms = utms
|
|
776
|
+
|
|
749
777
|
def to_dict(self):
|
|
750
778
|
"""Returns the model properties as a dict"""
|
|
751
779
|
result = {}
|
|
@@ -0,0 +1,923 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
UltraCart Rest API V2
|
|
5
|
+
|
|
6
|
+
UltraCart REST API Version 2 # noqa: E501
|
|
7
|
+
|
|
8
|
+
OpenAPI spec version: 2.0.0
|
|
9
|
+
Contact: support@ultracart.com
|
|
10
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
import pprint
|
|
15
|
+
import re # noqa: F401
|
|
16
|
+
|
|
17
|
+
import six
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
class CartUtm(object):
|
|
21
|
+
"""NOTE: This class is auto generated by the swagger code generator program.
|
|
22
|
+
|
|
23
|
+
Do not edit the class manually.
|
|
24
|
+
"""
|
|
25
|
+
|
|
26
|
+
"""
|
|
27
|
+
Attributes:
|
|
28
|
+
swagger_types (dict): The key is attribute name
|
|
29
|
+
and the value is attribute type.
|
|
30
|
+
attribute_map (dict): The key is attribute name
|
|
31
|
+
and the value is json key in definition.
|
|
32
|
+
"""
|
|
33
|
+
swagger_types = {
|
|
34
|
+
'attribution_first_click_subtotal': 'float',
|
|
35
|
+
'attribution_first_click_total': 'float',
|
|
36
|
+
'attribution_last_click_subtotal': 'float',
|
|
37
|
+
'attribution_last_click_total': 'float',
|
|
38
|
+
'attribution_linear_subtotal': 'float',
|
|
39
|
+
'attribution_linear_total': 'float',
|
|
40
|
+
'attribution_position_based_subtotal': 'float',
|
|
41
|
+
'attribution_position_based_total': 'float',
|
|
42
|
+
'click_dts': 'str',
|
|
43
|
+
'facebook_ad_id': 'str',
|
|
44
|
+
'fbclid': 'str',
|
|
45
|
+
'gbraid': 'str',
|
|
46
|
+
'glcid': 'str',
|
|
47
|
+
'itm_campaign': 'str',
|
|
48
|
+
'itm_content': 'str',
|
|
49
|
+
'itm_id': 'str',
|
|
50
|
+
'itm_medium': 'str',
|
|
51
|
+
'itm_source': 'str',
|
|
52
|
+
'itm_term': 'str',
|
|
53
|
+
'msclkid': 'str',
|
|
54
|
+
'short_code': 'str',
|
|
55
|
+
'short_code_backup': 'bool',
|
|
56
|
+
'ttclid': 'str',
|
|
57
|
+
'uc_message_id': 'str',
|
|
58
|
+
'utm_campaign': 'str',
|
|
59
|
+
'utm_content': 'str',
|
|
60
|
+
'utm_id': 'str',
|
|
61
|
+
'utm_medium': 'str',
|
|
62
|
+
'utm_source': 'str',
|
|
63
|
+
'utm_term': 'str',
|
|
64
|
+
'vmcid': 'str',
|
|
65
|
+
'wbraid': 'str'
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
attribute_map = {
|
|
69
|
+
'attribution_first_click_subtotal': 'attribution_first_click_subtotal',
|
|
70
|
+
'attribution_first_click_total': 'attribution_first_click_total',
|
|
71
|
+
'attribution_last_click_subtotal': 'attribution_last_click_subtotal',
|
|
72
|
+
'attribution_last_click_total': 'attribution_last_click_total',
|
|
73
|
+
'attribution_linear_subtotal': 'attribution_linear_subtotal',
|
|
74
|
+
'attribution_linear_total': 'attribution_linear_total',
|
|
75
|
+
'attribution_position_based_subtotal': 'attribution_position_based_subtotal',
|
|
76
|
+
'attribution_position_based_total': 'attribution_position_based_total',
|
|
77
|
+
'click_dts': 'click_dts',
|
|
78
|
+
'facebook_ad_id': 'facebook_ad_id',
|
|
79
|
+
'fbclid': 'fbclid',
|
|
80
|
+
'gbraid': 'gbraid',
|
|
81
|
+
'glcid': 'glcid',
|
|
82
|
+
'itm_campaign': 'itm_campaign',
|
|
83
|
+
'itm_content': 'itm_content',
|
|
84
|
+
'itm_id': 'itm_id',
|
|
85
|
+
'itm_medium': 'itm_medium',
|
|
86
|
+
'itm_source': 'itm_source',
|
|
87
|
+
'itm_term': 'itm_term',
|
|
88
|
+
'msclkid': 'msclkid',
|
|
89
|
+
'short_code': 'short_code',
|
|
90
|
+
'short_code_backup': 'short_code_backup',
|
|
91
|
+
'ttclid': 'ttclid',
|
|
92
|
+
'uc_message_id': 'uc_message_id',
|
|
93
|
+
'utm_campaign': 'utm_campaign',
|
|
94
|
+
'utm_content': 'utm_content',
|
|
95
|
+
'utm_id': 'utm_id',
|
|
96
|
+
'utm_medium': 'utm_medium',
|
|
97
|
+
'utm_source': 'utm_source',
|
|
98
|
+
'utm_term': 'utm_term',
|
|
99
|
+
'vmcid': 'vmcid',
|
|
100
|
+
'wbraid': 'wbraid'
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
def __init__(self, attribution_first_click_subtotal=None, attribution_first_click_total=None, attribution_last_click_subtotal=None, attribution_last_click_total=None, attribution_linear_subtotal=None, attribution_linear_total=None, attribution_position_based_subtotal=None, attribution_position_based_total=None, click_dts=None, facebook_ad_id=None, fbclid=None, gbraid=None, glcid=None, itm_campaign=None, itm_content=None, itm_id=None, itm_medium=None, itm_source=None, itm_term=None, msclkid=None, short_code=None, short_code_backup=None, ttclid=None, uc_message_id=None, utm_campaign=None, utm_content=None, utm_id=None, utm_medium=None, utm_source=None, utm_term=None, vmcid=None, wbraid=None): # noqa: E501
|
|
104
|
+
"""CartUtm - a model defined in Swagger""" # noqa: E501
|
|
105
|
+
|
|
106
|
+
self._attribution_first_click_subtotal = None
|
|
107
|
+
self._attribution_first_click_total = None
|
|
108
|
+
self._attribution_last_click_subtotal = None
|
|
109
|
+
self._attribution_last_click_total = None
|
|
110
|
+
self._attribution_linear_subtotal = None
|
|
111
|
+
self._attribution_linear_total = None
|
|
112
|
+
self._attribution_position_based_subtotal = None
|
|
113
|
+
self._attribution_position_based_total = None
|
|
114
|
+
self._click_dts = None
|
|
115
|
+
self._facebook_ad_id = None
|
|
116
|
+
self._fbclid = None
|
|
117
|
+
self._gbraid = None
|
|
118
|
+
self._glcid = None
|
|
119
|
+
self._itm_campaign = None
|
|
120
|
+
self._itm_content = None
|
|
121
|
+
self._itm_id = None
|
|
122
|
+
self._itm_medium = None
|
|
123
|
+
self._itm_source = None
|
|
124
|
+
self._itm_term = None
|
|
125
|
+
self._msclkid = None
|
|
126
|
+
self._short_code = None
|
|
127
|
+
self._short_code_backup = None
|
|
128
|
+
self._ttclid = None
|
|
129
|
+
self._uc_message_id = None
|
|
130
|
+
self._utm_campaign = None
|
|
131
|
+
self._utm_content = None
|
|
132
|
+
self._utm_id = None
|
|
133
|
+
self._utm_medium = None
|
|
134
|
+
self._utm_source = None
|
|
135
|
+
self._utm_term = None
|
|
136
|
+
self._vmcid = None
|
|
137
|
+
self._wbraid = None
|
|
138
|
+
self.discriminator = None
|
|
139
|
+
|
|
140
|
+
if attribution_first_click_subtotal is not None:
|
|
141
|
+
self.attribution_first_click_subtotal = attribution_first_click_subtotal
|
|
142
|
+
if attribution_first_click_total is not None:
|
|
143
|
+
self.attribution_first_click_total = attribution_first_click_total
|
|
144
|
+
if attribution_last_click_subtotal is not None:
|
|
145
|
+
self.attribution_last_click_subtotal = attribution_last_click_subtotal
|
|
146
|
+
if attribution_last_click_total is not None:
|
|
147
|
+
self.attribution_last_click_total = attribution_last_click_total
|
|
148
|
+
if attribution_linear_subtotal is not None:
|
|
149
|
+
self.attribution_linear_subtotal = attribution_linear_subtotal
|
|
150
|
+
if attribution_linear_total is not None:
|
|
151
|
+
self.attribution_linear_total = attribution_linear_total
|
|
152
|
+
if attribution_position_based_subtotal is not None:
|
|
153
|
+
self.attribution_position_based_subtotal = attribution_position_based_subtotal
|
|
154
|
+
if attribution_position_based_total is not None:
|
|
155
|
+
self.attribution_position_based_total = attribution_position_based_total
|
|
156
|
+
if click_dts is not None:
|
|
157
|
+
self.click_dts = click_dts
|
|
158
|
+
if facebook_ad_id is not None:
|
|
159
|
+
self.facebook_ad_id = facebook_ad_id
|
|
160
|
+
if fbclid is not None:
|
|
161
|
+
self.fbclid = fbclid
|
|
162
|
+
if gbraid is not None:
|
|
163
|
+
self.gbraid = gbraid
|
|
164
|
+
if glcid is not None:
|
|
165
|
+
self.glcid = glcid
|
|
166
|
+
if itm_campaign is not None:
|
|
167
|
+
self.itm_campaign = itm_campaign
|
|
168
|
+
if itm_content is not None:
|
|
169
|
+
self.itm_content = itm_content
|
|
170
|
+
if itm_id is not None:
|
|
171
|
+
self.itm_id = itm_id
|
|
172
|
+
if itm_medium is not None:
|
|
173
|
+
self.itm_medium = itm_medium
|
|
174
|
+
if itm_source is not None:
|
|
175
|
+
self.itm_source = itm_source
|
|
176
|
+
if itm_term is not None:
|
|
177
|
+
self.itm_term = itm_term
|
|
178
|
+
if msclkid is not None:
|
|
179
|
+
self.msclkid = msclkid
|
|
180
|
+
if short_code is not None:
|
|
181
|
+
self.short_code = short_code
|
|
182
|
+
if short_code_backup is not None:
|
|
183
|
+
self.short_code_backup = short_code_backup
|
|
184
|
+
if ttclid is not None:
|
|
185
|
+
self.ttclid = ttclid
|
|
186
|
+
if uc_message_id is not None:
|
|
187
|
+
self.uc_message_id = uc_message_id
|
|
188
|
+
if utm_campaign is not None:
|
|
189
|
+
self.utm_campaign = utm_campaign
|
|
190
|
+
if utm_content is not None:
|
|
191
|
+
self.utm_content = utm_content
|
|
192
|
+
if utm_id is not None:
|
|
193
|
+
self.utm_id = utm_id
|
|
194
|
+
if utm_medium is not None:
|
|
195
|
+
self.utm_medium = utm_medium
|
|
196
|
+
if utm_source is not None:
|
|
197
|
+
self.utm_source = utm_source
|
|
198
|
+
if utm_term is not None:
|
|
199
|
+
self.utm_term = utm_term
|
|
200
|
+
if vmcid is not None:
|
|
201
|
+
self.vmcid = vmcid
|
|
202
|
+
if wbraid is not None:
|
|
203
|
+
self.wbraid = wbraid
|
|
204
|
+
|
|
205
|
+
@property
|
|
206
|
+
def attribution_first_click_subtotal(self):
|
|
207
|
+
"""Gets the attribution_first_click_subtotal of this CartUtm. # noqa: E501
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
:return: The attribution_first_click_subtotal of this CartUtm. # noqa: E501
|
|
211
|
+
:rtype: float
|
|
212
|
+
"""
|
|
213
|
+
return self._attribution_first_click_subtotal
|
|
214
|
+
|
|
215
|
+
@attribution_first_click_subtotal.setter
|
|
216
|
+
def attribution_first_click_subtotal(self, attribution_first_click_subtotal):
|
|
217
|
+
"""Sets the attribution_first_click_subtotal of this CartUtm.
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
:param attribution_first_click_subtotal: The attribution_first_click_subtotal of this CartUtm. # noqa: E501
|
|
221
|
+
:type: float
|
|
222
|
+
"""
|
|
223
|
+
|
|
224
|
+
self._attribution_first_click_subtotal = attribution_first_click_subtotal
|
|
225
|
+
|
|
226
|
+
@property
|
|
227
|
+
def attribution_first_click_total(self):
|
|
228
|
+
"""Gets the attribution_first_click_total of this CartUtm. # noqa: E501
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
:return: The attribution_first_click_total of this CartUtm. # noqa: E501
|
|
232
|
+
:rtype: float
|
|
233
|
+
"""
|
|
234
|
+
return self._attribution_first_click_total
|
|
235
|
+
|
|
236
|
+
@attribution_first_click_total.setter
|
|
237
|
+
def attribution_first_click_total(self, attribution_first_click_total):
|
|
238
|
+
"""Sets the attribution_first_click_total of this CartUtm.
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
:param attribution_first_click_total: The attribution_first_click_total of this CartUtm. # noqa: E501
|
|
242
|
+
:type: float
|
|
243
|
+
"""
|
|
244
|
+
|
|
245
|
+
self._attribution_first_click_total = attribution_first_click_total
|
|
246
|
+
|
|
247
|
+
@property
|
|
248
|
+
def attribution_last_click_subtotal(self):
|
|
249
|
+
"""Gets the attribution_last_click_subtotal of this CartUtm. # noqa: E501
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
:return: The attribution_last_click_subtotal of this CartUtm. # noqa: E501
|
|
253
|
+
:rtype: float
|
|
254
|
+
"""
|
|
255
|
+
return self._attribution_last_click_subtotal
|
|
256
|
+
|
|
257
|
+
@attribution_last_click_subtotal.setter
|
|
258
|
+
def attribution_last_click_subtotal(self, attribution_last_click_subtotal):
|
|
259
|
+
"""Sets the attribution_last_click_subtotal of this CartUtm.
|
|
260
|
+
|
|
261
|
+
|
|
262
|
+
:param attribution_last_click_subtotal: The attribution_last_click_subtotal of this CartUtm. # noqa: E501
|
|
263
|
+
:type: float
|
|
264
|
+
"""
|
|
265
|
+
|
|
266
|
+
self._attribution_last_click_subtotal = attribution_last_click_subtotal
|
|
267
|
+
|
|
268
|
+
@property
|
|
269
|
+
def attribution_last_click_total(self):
|
|
270
|
+
"""Gets the attribution_last_click_total of this CartUtm. # noqa: E501
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
:return: The attribution_last_click_total of this CartUtm. # noqa: E501
|
|
274
|
+
:rtype: float
|
|
275
|
+
"""
|
|
276
|
+
return self._attribution_last_click_total
|
|
277
|
+
|
|
278
|
+
@attribution_last_click_total.setter
|
|
279
|
+
def attribution_last_click_total(self, attribution_last_click_total):
|
|
280
|
+
"""Sets the attribution_last_click_total of this CartUtm.
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
:param attribution_last_click_total: The attribution_last_click_total of this CartUtm. # noqa: E501
|
|
284
|
+
:type: float
|
|
285
|
+
"""
|
|
286
|
+
|
|
287
|
+
self._attribution_last_click_total = attribution_last_click_total
|
|
288
|
+
|
|
289
|
+
@property
|
|
290
|
+
def attribution_linear_subtotal(self):
|
|
291
|
+
"""Gets the attribution_linear_subtotal of this CartUtm. # noqa: E501
|
|
292
|
+
|
|
293
|
+
|
|
294
|
+
:return: The attribution_linear_subtotal of this CartUtm. # noqa: E501
|
|
295
|
+
:rtype: float
|
|
296
|
+
"""
|
|
297
|
+
return self._attribution_linear_subtotal
|
|
298
|
+
|
|
299
|
+
@attribution_linear_subtotal.setter
|
|
300
|
+
def attribution_linear_subtotal(self, attribution_linear_subtotal):
|
|
301
|
+
"""Sets the attribution_linear_subtotal of this CartUtm.
|
|
302
|
+
|
|
303
|
+
|
|
304
|
+
:param attribution_linear_subtotal: The attribution_linear_subtotal of this CartUtm. # noqa: E501
|
|
305
|
+
:type: float
|
|
306
|
+
"""
|
|
307
|
+
|
|
308
|
+
self._attribution_linear_subtotal = attribution_linear_subtotal
|
|
309
|
+
|
|
310
|
+
@property
|
|
311
|
+
def attribution_linear_total(self):
|
|
312
|
+
"""Gets the attribution_linear_total of this CartUtm. # noqa: E501
|
|
313
|
+
|
|
314
|
+
|
|
315
|
+
:return: The attribution_linear_total of this CartUtm. # noqa: E501
|
|
316
|
+
:rtype: float
|
|
317
|
+
"""
|
|
318
|
+
return self._attribution_linear_total
|
|
319
|
+
|
|
320
|
+
@attribution_linear_total.setter
|
|
321
|
+
def attribution_linear_total(self, attribution_linear_total):
|
|
322
|
+
"""Sets the attribution_linear_total of this CartUtm.
|
|
323
|
+
|
|
324
|
+
|
|
325
|
+
:param attribution_linear_total: The attribution_linear_total of this CartUtm. # noqa: E501
|
|
326
|
+
:type: float
|
|
327
|
+
"""
|
|
328
|
+
|
|
329
|
+
self._attribution_linear_total = attribution_linear_total
|
|
330
|
+
|
|
331
|
+
@property
|
|
332
|
+
def attribution_position_based_subtotal(self):
|
|
333
|
+
"""Gets the attribution_position_based_subtotal of this CartUtm. # noqa: E501
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
:return: The attribution_position_based_subtotal of this CartUtm. # noqa: E501
|
|
337
|
+
:rtype: float
|
|
338
|
+
"""
|
|
339
|
+
return self._attribution_position_based_subtotal
|
|
340
|
+
|
|
341
|
+
@attribution_position_based_subtotal.setter
|
|
342
|
+
def attribution_position_based_subtotal(self, attribution_position_based_subtotal):
|
|
343
|
+
"""Sets the attribution_position_based_subtotal of this CartUtm.
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
:param attribution_position_based_subtotal: The attribution_position_based_subtotal of this CartUtm. # noqa: E501
|
|
347
|
+
:type: float
|
|
348
|
+
"""
|
|
349
|
+
|
|
350
|
+
self._attribution_position_based_subtotal = attribution_position_based_subtotal
|
|
351
|
+
|
|
352
|
+
@property
|
|
353
|
+
def attribution_position_based_total(self):
|
|
354
|
+
"""Gets the attribution_position_based_total of this CartUtm. # noqa: E501
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
:return: The attribution_position_based_total of this CartUtm. # noqa: E501
|
|
358
|
+
:rtype: float
|
|
359
|
+
"""
|
|
360
|
+
return self._attribution_position_based_total
|
|
361
|
+
|
|
362
|
+
@attribution_position_based_total.setter
|
|
363
|
+
def attribution_position_based_total(self, attribution_position_based_total):
|
|
364
|
+
"""Sets the attribution_position_based_total of this CartUtm.
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
:param attribution_position_based_total: The attribution_position_based_total of this CartUtm. # noqa: E501
|
|
368
|
+
:type: float
|
|
369
|
+
"""
|
|
370
|
+
|
|
371
|
+
self._attribution_position_based_total = attribution_position_based_total
|
|
372
|
+
|
|
373
|
+
@property
|
|
374
|
+
def click_dts(self):
|
|
375
|
+
"""Gets the click_dts of this CartUtm. # noqa: E501
|
|
376
|
+
|
|
377
|
+
Date/time that the click happened # noqa: E501
|
|
378
|
+
|
|
379
|
+
:return: The click_dts of this CartUtm. # noqa: E501
|
|
380
|
+
:rtype: str
|
|
381
|
+
"""
|
|
382
|
+
return self._click_dts
|
|
383
|
+
|
|
384
|
+
@click_dts.setter
|
|
385
|
+
def click_dts(self, click_dts):
|
|
386
|
+
"""Sets the click_dts of this CartUtm.
|
|
387
|
+
|
|
388
|
+
Date/time that the click happened # noqa: E501
|
|
389
|
+
|
|
390
|
+
:param click_dts: The click_dts of this CartUtm. # noqa: E501
|
|
391
|
+
:type: str
|
|
392
|
+
"""
|
|
393
|
+
|
|
394
|
+
self._click_dts = click_dts
|
|
395
|
+
|
|
396
|
+
@property
|
|
397
|
+
def facebook_ad_id(self):
|
|
398
|
+
"""Gets the facebook_ad_id of this CartUtm. # noqa: E501
|
|
399
|
+
|
|
400
|
+
|
|
401
|
+
:return: The facebook_ad_id of this CartUtm. # noqa: E501
|
|
402
|
+
:rtype: str
|
|
403
|
+
"""
|
|
404
|
+
return self._facebook_ad_id
|
|
405
|
+
|
|
406
|
+
@facebook_ad_id.setter
|
|
407
|
+
def facebook_ad_id(self, facebook_ad_id):
|
|
408
|
+
"""Sets the facebook_ad_id of this CartUtm.
|
|
409
|
+
|
|
410
|
+
|
|
411
|
+
:param facebook_ad_id: The facebook_ad_id of this CartUtm. # noqa: E501
|
|
412
|
+
:type: str
|
|
413
|
+
"""
|
|
414
|
+
|
|
415
|
+
self._facebook_ad_id = facebook_ad_id
|
|
416
|
+
|
|
417
|
+
@property
|
|
418
|
+
def fbclid(self):
|
|
419
|
+
"""Gets the fbclid of this CartUtm. # noqa: E501
|
|
420
|
+
|
|
421
|
+
|
|
422
|
+
:return: The fbclid of this CartUtm. # noqa: E501
|
|
423
|
+
:rtype: str
|
|
424
|
+
"""
|
|
425
|
+
return self._fbclid
|
|
426
|
+
|
|
427
|
+
@fbclid.setter
|
|
428
|
+
def fbclid(self, fbclid):
|
|
429
|
+
"""Sets the fbclid of this CartUtm.
|
|
430
|
+
|
|
431
|
+
|
|
432
|
+
:param fbclid: The fbclid of this CartUtm. # noqa: E501
|
|
433
|
+
:type: str
|
|
434
|
+
"""
|
|
435
|
+
|
|
436
|
+
self._fbclid = fbclid
|
|
437
|
+
|
|
438
|
+
@property
|
|
439
|
+
def gbraid(self):
|
|
440
|
+
"""Gets the gbraid of this CartUtm. # noqa: E501
|
|
441
|
+
|
|
442
|
+
|
|
443
|
+
:return: The gbraid of this CartUtm. # noqa: E501
|
|
444
|
+
:rtype: str
|
|
445
|
+
"""
|
|
446
|
+
return self._gbraid
|
|
447
|
+
|
|
448
|
+
@gbraid.setter
|
|
449
|
+
def gbraid(self, gbraid):
|
|
450
|
+
"""Sets the gbraid of this CartUtm.
|
|
451
|
+
|
|
452
|
+
|
|
453
|
+
:param gbraid: The gbraid of this CartUtm. # noqa: E501
|
|
454
|
+
:type: str
|
|
455
|
+
"""
|
|
456
|
+
|
|
457
|
+
self._gbraid = gbraid
|
|
458
|
+
|
|
459
|
+
@property
|
|
460
|
+
def glcid(self):
|
|
461
|
+
"""Gets the glcid of this CartUtm. # noqa: E501
|
|
462
|
+
|
|
463
|
+
|
|
464
|
+
:return: The glcid of this CartUtm. # noqa: E501
|
|
465
|
+
:rtype: str
|
|
466
|
+
"""
|
|
467
|
+
return self._glcid
|
|
468
|
+
|
|
469
|
+
@glcid.setter
|
|
470
|
+
def glcid(self, glcid):
|
|
471
|
+
"""Sets the glcid of this CartUtm.
|
|
472
|
+
|
|
473
|
+
|
|
474
|
+
:param glcid: The glcid of this CartUtm. # noqa: E501
|
|
475
|
+
:type: str
|
|
476
|
+
"""
|
|
477
|
+
|
|
478
|
+
self._glcid = glcid
|
|
479
|
+
|
|
480
|
+
@property
|
|
481
|
+
def itm_campaign(self):
|
|
482
|
+
"""Gets the itm_campaign of this CartUtm. # noqa: E501
|
|
483
|
+
|
|
484
|
+
|
|
485
|
+
:return: The itm_campaign of this CartUtm. # noqa: E501
|
|
486
|
+
:rtype: str
|
|
487
|
+
"""
|
|
488
|
+
return self._itm_campaign
|
|
489
|
+
|
|
490
|
+
@itm_campaign.setter
|
|
491
|
+
def itm_campaign(self, itm_campaign):
|
|
492
|
+
"""Sets the itm_campaign of this CartUtm.
|
|
493
|
+
|
|
494
|
+
|
|
495
|
+
:param itm_campaign: The itm_campaign of this CartUtm. # noqa: E501
|
|
496
|
+
:type: str
|
|
497
|
+
"""
|
|
498
|
+
|
|
499
|
+
self._itm_campaign = itm_campaign
|
|
500
|
+
|
|
501
|
+
@property
|
|
502
|
+
def itm_content(self):
|
|
503
|
+
"""Gets the itm_content of this CartUtm. # noqa: E501
|
|
504
|
+
|
|
505
|
+
|
|
506
|
+
:return: The itm_content of this CartUtm. # noqa: E501
|
|
507
|
+
:rtype: str
|
|
508
|
+
"""
|
|
509
|
+
return self._itm_content
|
|
510
|
+
|
|
511
|
+
@itm_content.setter
|
|
512
|
+
def itm_content(self, itm_content):
|
|
513
|
+
"""Sets the itm_content of this CartUtm.
|
|
514
|
+
|
|
515
|
+
|
|
516
|
+
:param itm_content: The itm_content of this CartUtm. # noqa: E501
|
|
517
|
+
:type: str
|
|
518
|
+
"""
|
|
519
|
+
|
|
520
|
+
self._itm_content = itm_content
|
|
521
|
+
|
|
522
|
+
@property
|
|
523
|
+
def itm_id(self):
|
|
524
|
+
"""Gets the itm_id of this CartUtm. # noqa: E501
|
|
525
|
+
|
|
526
|
+
|
|
527
|
+
:return: The itm_id of this CartUtm. # noqa: E501
|
|
528
|
+
:rtype: str
|
|
529
|
+
"""
|
|
530
|
+
return self._itm_id
|
|
531
|
+
|
|
532
|
+
@itm_id.setter
|
|
533
|
+
def itm_id(self, itm_id):
|
|
534
|
+
"""Sets the itm_id of this CartUtm.
|
|
535
|
+
|
|
536
|
+
|
|
537
|
+
:param itm_id: The itm_id of this CartUtm. # noqa: E501
|
|
538
|
+
:type: str
|
|
539
|
+
"""
|
|
540
|
+
|
|
541
|
+
self._itm_id = itm_id
|
|
542
|
+
|
|
543
|
+
@property
|
|
544
|
+
def itm_medium(self):
|
|
545
|
+
"""Gets the itm_medium of this CartUtm. # noqa: E501
|
|
546
|
+
|
|
547
|
+
|
|
548
|
+
:return: The itm_medium of this CartUtm. # noqa: E501
|
|
549
|
+
:rtype: str
|
|
550
|
+
"""
|
|
551
|
+
return self._itm_medium
|
|
552
|
+
|
|
553
|
+
@itm_medium.setter
|
|
554
|
+
def itm_medium(self, itm_medium):
|
|
555
|
+
"""Sets the itm_medium of this CartUtm.
|
|
556
|
+
|
|
557
|
+
|
|
558
|
+
:param itm_medium: The itm_medium of this CartUtm. # noqa: E501
|
|
559
|
+
:type: str
|
|
560
|
+
"""
|
|
561
|
+
|
|
562
|
+
self._itm_medium = itm_medium
|
|
563
|
+
|
|
564
|
+
@property
|
|
565
|
+
def itm_source(self):
|
|
566
|
+
"""Gets the itm_source of this CartUtm. # noqa: E501
|
|
567
|
+
|
|
568
|
+
|
|
569
|
+
:return: The itm_source of this CartUtm. # noqa: E501
|
|
570
|
+
:rtype: str
|
|
571
|
+
"""
|
|
572
|
+
return self._itm_source
|
|
573
|
+
|
|
574
|
+
@itm_source.setter
|
|
575
|
+
def itm_source(self, itm_source):
|
|
576
|
+
"""Sets the itm_source of this CartUtm.
|
|
577
|
+
|
|
578
|
+
|
|
579
|
+
:param itm_source: The itm_source of this CartUtm. # noqa: E501
|
|
580
|
+
:type: str
|
|
581
|
+
"""
|
|
582
|
+
|
|
583
|
+
self._itm_source = itm_source
|
|
584
|
+
|
|
585
|
+
@property
|
|
586
|
+
def itm_term(self):
|
|
587
|
+
"""Gets the itm_term of this CartUtm. # noqa: E501
|
|
588
|
+
|
|
589
|
+
|
|
590
|
+
:return: The itm_term of this CartUtm. # noqa: E501
|
|
591
|
+
:rtype: str
|
|
592
|
+
"""
|
|
593
|
+
return self._itm_term
|
|
594
|
+
|
|
595
|
+
@itm_term.setter
|
|
596
|
+
def itm_term(self, itm_term):
|
|
597
|
+
"""Sets the itm_term of this CartUtm.
|
|
598
|
+
|
|
599
|
+
|
|
600
|
+
:param itm_term: The itm_term of this CartUtm. # noqa: E501
|
|
601
|
+
:type: str
|
|
602
|
+
"""
|
|
603
|
+
|
|
604
|
+
self._itm_term = itm_term
|
|
605
|
+
|
|
606
|
+
@property
|
|
607
|
+
def msclkid(self):
|
|
608
|
+
"""Gets the msclkid of this CartUtm. # noqa: E501
|
|
609
|
+
|
|
610
|
+
|
|
611
|
+
:return: The msclkid of this CartUtm. # noqa: E501
|
|
612
|
+
:rtype: str
|
|
613
|
+
"""
|
|
614
|
+
return self._msclkid
|
|
615
|
+
|
|
616
|
+
@msclkid.setter
|
|
617
|
+
def msclkid(self, msclkid):
|
|
618
|
+
"""Sets the msclkid of this CartUtm.
|
|
619
|
+
|
|
620
|
+
|
|
621
|
+
:param msclkid: The msclkid of this CartUtm. # noqa: E501
|
|
622
|
+
:type: str
|
|
623
|
+
"""
|
|
624
|
+
|
|
625
|
+
self._msclkid = msclkid
|
|
626
|
+
|
|
627
|
+
@property
|
|
628
|
+
def short_code(self):
|
|
629
|
+
"""Gets the short_code of this CartUtm. # noqa: E501
|
|
630
|
+
|
|
631
|
+
|
|
632
|
+
:return: The short_code of this CartUtm. # noqa: E501
|
|
633
|
+
:rtype: str
|
|
634
|
+
"""
|
|
635
|
+
return self._short_code
|
|
636
|
+
|
|
637
|
+
@short_code.setter
|
|
638
|
+
def short_code(self, short_code):
|
|
639
|
+
"""Sets the short_code of this CartUtm.
|
|
640
|
+
|
|
641
|
+
|
|
642
|
+
:param short_code: The short_code of this CartUtm. # noqa: E501
|
|
643
|
+
:type: str
|
|
644
|
+
"""
|
|
645
|
+
|
|
646
|
+
self._short_code = short_code
|
|
647
|
+
|
|
648
|
+
@property
|
|
649
|
+
def short_code_backup(self):
|
|
650
|
+
"""Gets the short_code_backup of this CartUtm. # noqa: E501
|
|
651
|
+
|
|
652
|
+
|
|
653
|
+
:return: The short_code_backup of this CartUtm. # noqa: E501
|
|
654
|
+
:rtype: bool
|
|
655
|
+
"""
|
|
656
|
+
return self._short_code_backup
|
|
657
|
+
|
|
658
|
+
@short_code_backup.setter
|
|
659
|
+
def short_code_backup(self, short_code_backup):
|
|
660
|
+
"""Sets the short_code_backup of this CartUtm.
|
|
661
|
+
|
|
662
|
+
|
|
663
|
+
:param short_code_backup: The short_code_backup of this CartUtm. # noqa: E501
|
|
664
|
+
:type: bool
|
|
665
|
+
"""
|
|
666
|
+
|
|
667
|
+
self._short_code_backup = short_code_backup
|
|
668
|
+
|
|
669
|
+
@property
|
|
670
|
+
def ttclid(self):
|
|
671
|
+
"""Gets the ttclid of this CartUtm. # noqa: E501
|
|
672
|
+
|
|
673
|
+
|
|
674
|
+
:return: The ttclid of this CartUtm. # noqa: E501
|
|
675
|
+
:rtype: str
|
|
676
|
+
"""
|
|
677
|
+
return self._ttclid
|
|
678
|
+
|
|
679
|
+
@ttclid.setter
|
|
680
|
+
def ttclid(self, ttclid):
|
|
681
|
+
"""Sets the ttclid of this CartUtm.
|
|
682
|
+
|
|
683
|
+
|
|
684
|
+
:param ttclid: The ttclid of this CartUtm. # noqa: E501
|
|
685
|
+
:type: str
|
|
686
|
+
"""
|
|
687
|
+
|
|
688
|
+
self._ttclid = ttclid
|
|
689
|
+
|
|
690
|
+
@property
|
|
691
|
+
def uc_message_id(self):
|
|
692
|
+
"""Gets the uc_message_id of this CartUtm. # noqa: E501
|
|
693
|
+
|
|
694
|
+
|
|
695
|
+
:return: The uc_message_id of this CartUtm. # noqa: E501
|
|
696
|
+
:rtype: str
|
|
697
|
+
"""
|
|
698
|
+
return self._uc_message_id
|
|
699
|
+
|
|
700
|
+
@uc_message_id.setter
|
|
701
|
+
def uc_message_id(self, uc_message_id):
|
|
702
|
+
"""Sets the uc_message_id of this CartUtm.
|
|
703
|
+
|
|
704
|
+
|
|
705
|
+
:param uc_message_id: The uc_message_id of this CartUtm. # noqa: E501
|
|
706
|
+
:type: str
|
|
707
|
+
"""
|
|
708
|
+
|
|
709
|
+
self._uc_message_id = uc_message_id
|
|
710
|
+
|
|
711
|
+
@property
|
|
712
|
+
def utm_campaign(self):
|
|
713
|
+
"""Gets the utm_campaign of this CartUtm. # noqa: E501
|
|
714
|
+
|
|
715
|
+
|
|
716
|
+
:return: The utm_campaign of this CartUtm. # noqa: E501
|
|
717
|
+
:rtype: str
|
|
718
|
+
"""
|
|
719
|
+
return self._utm_campaign
|
|
720
|
+
|
|
721
|
+
@utm_campaign.setter
|
|
722
|
+
def utm_campaign(self, utm_campaign):
|
|
723
|
+
"""Sets the utm_campaign of this CartUtm.
|
|
724
|
+
|
|
725
|
+
|
|
726
|
+
:param utm_campaign: The utm_campaign of this CartUtm. # noqa: E501
|
|
727
|
+
:type: str
|
|
728
|
+
"""
|
|
729
|
+
|
|
730
|
+
self._utm_campaign = utm_campaign
|
|
731
|
+
|
|
732
|
+
@property
|
|
733
|
+
def utm_content(self):
|
|
734
|
+
"""Gets the utm_content of this CartUtm. # noqa: E501
|
|
735
|
+
|
|
736
|
+
|
|
737
|
+
:return: The utm_content of this CartUtm. # noqa: E501
|
|
738
|
+
:rtype: str
|
|
739
|
+
"""
|
|
740
|
+
return self._utm_content
|
|
741
|
+
|
|
742
|
+
@utm_content.setter
|
|
743
|
+
def utm_content(self, utm_content):
|
|
744
|
+
"""Sets the utm_content of this CartUtm.
|
|
745
|
+
|
|
746
|
+
|
|
747
|
+
:param utm_content: The utm_content of this CartUtm. # noqa: E501
|
|
748
|
+
:type: str
|
|
749
|
+
"""
|
|
750
|
+
|
|
751
|
+
self._utm_content = utm_content
|
|
752
|
+
|
|
753
|
+
@property
|
|
754
|
+
def utm_id(self):
|
|
755
|
+
"""Gets the utm_id of this CartUtm. # noqa: E501
|
|
756
|
+
|
|
757
|
+
|
|
758
|
+
:return: The utm_id of this CartUtm. # noqa: E501
|
|
759
|
+
:rtype: str
|
|
760
|
+
"""
|
|
761
|
+
return self._utm_id
|
|
762
|
+
|
|
763
|
+
@utm_id.setter
|
|
764
|
+
def utm_id(self, utm_id):
|
|
765
|
+
"""Sets the utm_id of this CartUtm.
|
|
766
|
+
|
|
767
|
+
|
|
768
|
+
:param utm_id: The utm_id of this CartUtm. # noqa: E501
|
|
769
|
+
:type: str
|
|
770
|
+
"""
|
|
771
|
+
|
|
772
|
+
self._utm_id = utm_id
|
|
773
|
+
|
|
774
|
+
@property
|
|
775
|
+
def utm_medium(self):
|
|
776
|
+
"""Gets the utm_medium of this CartUtm. # noqa: E501
|
|
777
|
+
|
|
778
|
+
|
|
779
|
+
:return: The utm_medium of this CartUtm. # noqa: E501
|
|
780
|
+
:rtype: str
|
|
781
|
+
"""
|
|
782
|
+
return self._utm_medium
|
|
783
|
+
|
|
784
|
+
@utm_medium.setter
|
|
785
|
+
def utm_medium(self, utm_medium):
|
|
786
|
+
"""Sets the utm_medium of this CartUtm.
|
|
787
|
+
|
|
788
|
+
|
|
789
|
+
:param utm_medium: The utm_medium of this CartUtm. # noqa: E501
|
|
790
|
+
:type: str
|
|
791
|
+
"""
|
|
792
|
+
|
|
793
|
+
self._utm_medium = utm_medium
|
|
794
|
+
|
|
795
|
+
@property
|
|
796
|
+
def utm_source(self):
|
|
797
|
+
"""Gets the utm_source of this CartUtm. # noqa: E501
|
|
798
|
+
|
|
799
|
+
|
|
800
|
+
:return: The utm_source of this CartUtm. # noqa: E501
|
|
801
|
+
:rtype: str
|
|
802
|
+
"""
|
|
803
|
+
return self._utm_source
|
|
804
|
+
|
|
805
|
+
@utm_source.setter
|
|
806
|
+
def utm_source(self, utm_source):
|
|
807
|
+
"""Sets the utm_source of this CartUtm.
|
|
808
|
+
|
|
809
|
+
|
|
810
|
+
:param utm_source: The utm_source of this CartUtm. # noqa: E501
|
|
811
|
+
:type: str
|
|
812
|
+
"""
|
|
813
|
+
|
|
814
|
+
self._utm_source = utm_source
|
|
815
|
+
|
|
816
|
+
@property
|
|
817
|
+
def utm_term(self):
|
|
818
|
+
"""Gets the utm_term of this CartUtm. # noqa: E501
|
|
819
|
+
|
|
820
|
+
|
|
821
|
+
:return: The utm_term of this CartUtm. # noqa: E501
|
|
822
|
+
:rtype: str
|
|
823
|
+
"""
|
|
824
|
+
return self._utm_term
|
|
825
|
+
|
|
826
|
+
@utm_term.setter
|
|
827
|
+
def utm_term(self, utm_term):
|
|
828
|
+
"""Sets the utm_term of this CartUtm.
|
|
829
|
+
|
|
830
|
+
|
|
831
|
+
:param utm_term: The utm_term of this CartUtm. # noqa: E501
|
|
832
|
+
:type: str
|
|
833
|
+
"""
|
|
834
|
+
|
|
835
|
+
self._utm_term = utm_term
|
|
836
|
+
|
|
837
|
+
@property
|
|
838
|
+
def vmcid(self):
|
|
839
|
+
"""Gets the vmcid of this CartUtm. # noqa: E501
|
|
840
|
+
|
|
841
|
+
|
|
842
|
+
:return: The vmcid of this CartUtm. # noqa: E501
|
|
843
|
+
:rtype: str
|
|
844
|
+
"""
|
|
845
|
+
return self._vmcid
|
|
846
|
+
|
|
847
|
+
@vmcid.setter
|
|
848
|
+
def vmcid(self, vmcid):
|
|
849
|
+
"""Sets the vmcid of this CartUtm.
|
|
850
|
+
|
|
851
|
+
|
|
852
|
+
:param vmcid: The vmcid of this CartUtm. # noqa: E501
|
|
853
|
+
:type: str
|
|
854
|
+
"""
|
|
855
|
+
|
|
856
|
+
self._vmcid = vmcid
|
|
857
|
+
|
|
858
|
+
@property
|
|
859
|
+
def wbraid(self):
|
|
860
|
+
"""Gets the wbraid of this CartUtm. # noqa: E501
|
|
861
|
+
|
|
862
|
+
|
|
863
|
+
:return: The wbraid of this CartUtm. # noqa: E501
|
|
864
|
+
:rtype: str
|
|
865
|
+
"""
|
|
866
|
+
return self._wbraid
|
|
867
|
+
|
|
868
|
+
@wbraid.setter
|
|
869
|
+
def wbraid(self, wbraid):
|
|
870
|
+
"""Sets the wbraid of this CartUtm.
|
|
871
|
+
|
|
872
|
+
|
|
873
|
+
:param wbraid: The wbraid of this CartUtm. # noqa: E501
|
|
874
|
+
:type: str
|
|
875
|
+
"""
|
|
876
|
+
|
|
877
|
+
self._wbraid = wbraid
|
|
878
|
+
|
|
879
|
+
def to_dict(self):
|
|
880
|
+
"""Returns the model properties as a dict"""
|
|
881
|
+
result = {}
|
|
882
|
+
|
|
883
|
+
for attr, _ in six.iteritems(self.swagger_types):
|
|
884
|
+
value = getattr(self, attr)
|
|
885
|
+
if isinstance(value, list):
|
|
886
|
+
result[attr] = list(map(
|
|
887
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
|
888
|
+
value
|
|
889
|
+
))
|
|
890
|
+
elif hasattr(value, "to_dict"):
|
|
891
|
+
result[attr] = value.to_dict()
|
|
892
|
+
elif isinstance(value, dict):
|
|
893
|
+
result[attr] = dict(map(
|
|
894
|
+
lambda item: (item[0], item[1].to_dict())
|
|
895
|
+
if hasattr(item[1], "to_dict") else item,
|
|
896
|
+
value.items()
|
|
897
|
+
))
|
|
898
|
+
else:
|
|
899
|
+
result[attr] = value
|
|
900
|
+
if issubclass(CartUtm, dict):
|
|
901
|
+
for key, value in self.items():
|
|
902
|
+
result[key] = value
|
|
903
|
+
|
|
904
|
+
return result
|
|
905
|
+
|
|
906
|
+
def to_str(self):
|
|
907
|
+
"""Returns the string representation of the model"""
|
|
908
|
+
return pprint.pformat(self.to_dict())
|
|
909
|
+
|
|
910
|
+
def __repr__(self):
|
|
911
|
+
"""For `print` and `pprint`"""
|
|
912
|
+
return self.to_str()
|
|
913
|
+
|
|
914
|
+
def __eq__(self, other):
|
|
915
|
+
"""Returns true if both objects are equal"""
|
|
916
|
+
if not isinstance(other, CartUtm):
|
|
917
|
+
return False
|
|
918
|
+
|
|
919
|
+
return self.__dict__ == other.__dict__
|
|
920
|
+
|
|
921
|
+
def __ne__(self, other):
|
|
922
|
+
"""Returns true if both objects are not equal"""
|
|
923
|
+
return not self == other
|
|
@@ -31,6 +31,8 @@ class ConversationAgentAuth(object):
|
|
|
31
31
|
and the value is json key in definition.
|
|
32
32
|
"""
|
|
33
33
|
swagger_types = {
|
|
34
|
+
'chat_admin': 'bool',
|
|
35
|
+
'chat_user': 'bool',
|
|
34
36
|
'conversation_participant_arn': 'str',
|
|
35
37
|
'conversation_participant_name': 'str',
|
|
36
38
|
'group_ids': 'list[int]',
|
|
@@ -50,6 +52,8 @@ class ConversationAgentAuth(object):
|
|
|
50
52
|
}
|
|
51
53
|
|
|
52
54
|
attribute_map = {
|
|
55
|
+
'chat_admin': 'chat_admin',
|
|
56
|
+
'chat_user': 'chat_user',
|
|
53
57
|
'conversation_participant_arn': 'conversation_participant_arn',
|
|
54
58
|
'conversation_participant_name': 'conversation_participant_name',
|
|
55
59
|
'group_ids': 'group_ids',
|
|
@@ -68,9 +72,11 @@ class ConversationAgentAuth(object):
|
|
|
68
72
|
'websocket_url': 'websocket_url'
|
|
69
73
|
}
|
|
70
74
|
|
|
71
|
-
def __init__(self, conversation_participant_arn=None, conversation_participant_name=None, group_ids=None, jwt=None, merchant_id=None, pbx_admin=None, pbx_jwt=None, pbx_supervisor=None, pbx_user=None, pbx_voice_identity=None, pbx_voice_token=None, pbx_worker_token=None, pbx_worker_token_v2=None, twilio_accounts=None, user_id=None, websocket_url=None): # noqa: E501
|
|
75
|
+
def __init__(self, chat_admin=None, chat_user=None, conversation_participant_arn=None, conversation_participant_name=None, group_ids=None, jwt=None, merchant_id=None, pbx_admin=None, pbx_jwt=None, pbx_supervisor=None, pbx_user=None, pbx_voice_identity=None, pbx_voice_token=None, pbx_worker_token=None, pbx_worker_token_v2=None, twilio_accounts=None, user_id=None, websocket_url=None): # noqa: E501
|
|
72
76
|
"""ConversationAgentAuth - a model defined in Swagger""" # noqa: E501
|
|
73
77
|
|
|
78
|
+
self._chat_admin = None
|
|
79
|
+
self._chat_user = None
|
|
74
80
|
self._conversation_participant_arn = None
|
|
75
81
|
self._conversation_participant_name = None
|
|
76
82
|
self._group_ids = None
|
|
@@ -89,6 +95,10 @@ class ConversationAgentAuth(object):
|
|
|
89
95
|
self._websocket_url = None
|
|
90
96
|
self.discriminator = None
|
|
91
97
|
|
|
98
|
+
if chat_admin is not None:
|
|
99
|
+
self.chat_admin = chat_admin
|
|
100
|
+
if chat_user is not None:
|
|
101
|
+
self.chat_user = chat_user
|
|
92
102
|
if conversation_participant_arn is not None:
|
|
93
103
|
self.conversation_participant_arn = conversation_participant_arn
|
|
94
104
|
if conversation_participant_name is not None:
|
|
@@ -122,6 +132,48 @@ class ConversationAgentAuth(object):
|
|
|
122
132
|
if websocket_url is not None:
|
|
123
133
|
self.websocket_url = websocket_url
|
|
124
134
|
|
|
135
|
+
@property
|
|
136
|
+
def chat_admin(self):
|
|
137
|
+
"""Gets the chat_admin of this ConversationAgentAuth. # noqa: E501
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
:return: The chat_admin of this ConversationAgentAuth. # noqa: E501
|
|
141
|
+
:rtype: bool
|
|
142
|
+
"""
|
|
143
|
+
return self._chat_admin
|
|
144
|
+
|
|
145
|
+
@chat_admin.setter
|
|
146
|
+
def chat_admin(self, chat_admin):
|
|
147
|
+
"""Sets the chat_admin of this ConversationAgentAuth.
|
|
148
|
+
|
|
149
|
+
|
|
150
|
+
:param chat_admin: The chat_admin of this ConversationAgentAuth. # noqa: E501
|
|
151
|
+
:type: bool
|
|
152
|
+
"""
|
|
153
|
+
|
|
154
|
+
self._chat_admin = chat_admin
|
|
155
|
+
|
|
156
|
+
@property
|
|
157
|
+
def chat_user(self):
|
|
158
|
+
"""Gets the chat_user of this ConversationAgentAuth. # noqa: E501
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
:return: The chat_user of this ConversationAgentAuth. # noqa: E501
|
|
162
|
+
:rtype: bool
|
|
163
|
+
"""
|
|
164
|
+
return self._chat_user
|
|
165
|
+
|
|
166
|
+
@chat_user.setter
|
|
167
|
+
def chat_user(self, chat_user):
|
|
168
|
+
"""Sets the chat_user of this ConversationAgentAuth.
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
:param chat_user: The chat_user of this ConversationAgentAuth. # noqa: E501
|
|
172
|
+
:type: bool
|
|
173
|
+
"""
|
|
174
|
+
|
|
175
|
+
self._chat_user = chat_user
|
|
176
|
+
|
|
125
177
|
@property
|
|
126
178
|
def conversation_participant_arn(self):
|
|
127
179
|
"""Gets the conversation_participant_arn of this ConversationAgentAuth. # noqa: E501
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
ultracart/__init__.py,sha256=
|
|
2
|
-
ultracart/api_client.py,sha256=
|
|
3
|
-
ultracart/configuration.py,sha256=
|
|
1
|
+
ultracart/__init__.py,sha256=NH84RvkLA5t6yDZlaiSK9FmQHc1kgd352uJlCMMTjO4,74480
|
|
2
|
+
ultracart/api_client.py,sha256=SS4yE7-BjPIZpxAOFpwfoWSjVHagbUzejm0j2ZRfBhc,25613
|
|
3
|
+
ultracart/configuration.py,sha256=7w-LdoLga2MjQdZ5VqdUCdvp0xh0ClL0c_esvrBKiGE,8999
|
|
4
4
|
ultracart/rest.py,sha256=SykJPRivLOJgoq4Rnyp117sB8lU0tGvwd2Cai8fN3J8,13489
|
|
5
5
|
ultracart/api/__init__.py,sha256=gtOBD2-NGsYYDuerfiCfjqLJql44d50lAlaxpAqd7tI,1152
|
|
6
6
|
ultracart/api/affiliate_api.py,sha256=BfkCqA8ayOggBtV24g8yZyTxTNPiUJMYgqbBEbnWrJQ,12785
|
|
@@ -23,7 +23,7 @@ ultracart/api/tax_api.py,sha256=E25mBiLSrrPxs2ZGAUClrsqeJExe5V0bUINZehjSVN8,1204
|
|
|
23
23
|
ultracart/api/user_api.py,sha256=bzjR5cLuH1m7Z5y7hjxb-B2_eFmC8u8xRN12ucF3VyE,44221
|
|
24
24
|
ultracart/api/webhook_api.py,sha256=p5_tjVH1jvaNOFYUdm2qc0gU2WR8qDlIdSr-qm4WWEg,39283
|
|
25
25
|
ultracart/api/workflow_api.py,sha256=tdsz4hRuuC0a7HwRvtwpK9ggKU8-9z9-0NZrwmoxljg,51449
|
|
26
|
-
ultracart/models/__init__.py,sha256=
|
|
26
|
+
ultracart/models/__init__.py,sha256=qxdKd78e59Lujq5zwhDXmjn6b7dKNIk7t6KE_Nd0yO8,73271
|
|
27
27
|
ultracart/models/accounts_receivable_retry_config.py,sha256=ab7tLSoUqChrqtS2pkNZhRnLsgFCWA_xJobhVvaSLxo,21323
|
|
28
28
|
ultracart/models/accounts_receivable_retry_config_response.py,sha256=NziJy87K9HQUXDGIe_DHDqxw2uRZPvKsUDzD9heDHgU,9281
|
|
29
29
|
ultracart/models/accounts_receivable_retry_day_activity.py,sha256=0etwp6LI6y-J9B7LP5m4O5aEQQ-TPLeyXiotCLtPQjU,5416
|
|
@@ -67,7 +67,7 @@ ultracart/models/browser.py,sha256=_KsZKBUs4rjqgL1gEHN6g3GObdUV_drt1unBWnwxPko,4
|
|
|
67
67
|
ultracart/models/browser_device.py,sha256=DKiZEGV_b5Qq9vt7GaNrF5nMgnl43mxcZuMAQzDQgoQ,3151
|
|
68
68
|
ultracart/models/browser_os.py,sha256=4E1OflTIyJGdSvPoOr2nOvJSZcE3vHh0CrTu6M3Iz9k,5683
|
|
69
69
|
ultracart/models/browser_user_agent.py,sha256=N74ylAiVNb-FN2NYTWwMjK4sWY3A2IIjLcticYt8ujg,5092
|
|
70
|
-
ultracart/models/cart.py,sha256=
|
|
70
|
+
ultracart/models/cart.py,sha256=SJ7eAfQGfC_98g8eA-X-VdVgbCtw3GYg29WI7O8gdJM,24430
|
|
71
71
|
ultracart/models/cart_affiliate.py,sha256=KRaaVtrdcYxlUiPKTGQP9kfKrXi-kLLHojne038eOLw,4570
|
|
72
72
|
ultracart/models/cart_affirm_checkout_response.py,sha256=U9cR6wneMtNsiykzxKJujqEfXrGeTAp8msZsVZrKg-M,4342
|
|
73
73
|
ultracart/models/cart_billing.py,sha256=3FwmnC4sRl8cCVa4H9ie5hMpcK1AESbTaJ2wOS4Bw28,18960
|
|
@@ -125,6 +125,7 @@ ultracart/models/cart_shipping.py,sha256=8q1PmCRgP2QwYTpnF29IrYWaLAAZdoHFH9f-d9O
|
|
|
125
125
|
ultracart/models/cart_summary.py,sha256=V4iDgHjexbn96e7mgAMfzD5RpG66eP986bp-ok4KPnM,21593
|
|
126
126
|
ultracart/models/cart_taxes.py,sha256=1URG5X3kFTnB9pvhFytIqpzh53YRz84fyKT6G4g7beE,4788
|
|
127
127
|
ultracart/models/cart_upsell_after.py,sha256=SJ-5oo4Kl0CRgZUIHKQNMJw5lLycwmK6O34f8quHK4c,8395
|
|
128
|
+
ultracart/models/cart_utm.py,sha256=9hb44k2122Biad6IpPg-ESd9dCS18jbnVkjf4yCOsGo,27861
|
|
128
129
|
ultracart/models/cart_validation_request.py,sha256=m6nDduMFZWBrGhoZdSbL9EHQetD-A8xQ-7g5N5G5OIc,3957
|
|
129
130
|
ultracart/models/cart_validation_response.py,sha256=yzp0yl8LneQ-dzrlhCVRTefPIGuJH5r1giER4F7gEgE,4093
|
|
130
131
|
ultracart/models/chanel_partner_reason_codes_response.py,sha256=x7kRACxCW5aLRasRVOxLxZuto6iQnnOIpE6gA7VKK98,15130
|
|
@@ -152,7 +153,7 @@ ultracart/models/checkout_setup_browser_key_response.py,sha256=cf5gb76e1hl1Zbz6o
|
|
|
152
153
|
ultracart/models/checkout_state_province_response.py,sha256=V4kjJdByOpXGLAQquOSDDuKTazEbB6MazotwDTQkEk8,3506
|
|
153
154
|
ultracart/models/city_state_zip.py,sha256=Ntzqg6yGIIHSzzrDwV0E-yG9pAD6BiMtWhtj26lJWCg,5637
|
|
154
155
|
ultracart/models/conversation.py,sha256=K0nGr-unKL2fH9t1roU-PsfbWRpgSmkQcWXipBooioY,22415
|
|
155
|
-
ultracart/models/conversation_agent_auth.py,sha256=
|
|
156
|
+
ultracart/models/conversation_agent_auth.py,sha256=LUPUdvztllYBJQBQVq1yUEMVoCOgJMRKSX09qyy6YFo,17719
|
|
156
157
|
ultracart/models/conversation_agent_auth_response.py,sha256=Qe9CzBu2s1WqvE2nJ1coOT6MPpRybz2v2eYB6BUFhA0,6497
|
|
157
158
|
ultracart/models/conversation_agent_profile.py,sha256=l0CnWGDZyc1kl9rWQUjqwLIVq88M0Nbf2LOvlJiQUEo,22081
|
|
158
159
|
ultracart/models/conversation_agent_profile_response.py,sha256=5fqrqj8holJqG9PDphSwNmqCkcLrcQ9glw8uJKeQDpg,6638
|
|
@@ -937,8 +938,8 @@ ultracart/models/workflow_tasks_response.py,sha256=2CELun_Yz00Ww8MLo3pqfx7oCJLMZ
|
|
|
937
938
|
ultracart/models/workflow_user.py,sha256=dS5Oj_e5KeruK8WnxZFrx4tL-86B-ImggasTQLm7q6s,4783
|
|
938
939
|
ultracart/models/workflow_user_response.py,sha256=tqt9Bo6KqrvkcW9weFeC6nu5wAqYQBx--Yi4RQzditI,6134
|
|
939
940
|
ultracart/models/workflow_users_response.py,sha256=t1UP-nG8gOoyFGcf5dTTqk6zFapBrJBH63ddrJgP-tM,7095
|
|
940
|
-
ultracart_rest_sdk-3.11.
|
|
941
|
-
ultracart_rest_sdk-3.11.
|
|
942
|
-
ultracart_rest_sdk-3.11.
|
|
943
|
-
ultracart_rest_sdk-3.11.
|
|
944
|
-
ultracart_rest_sdk-3.11.
|
|
941
|
+
ultracart_rest_sdk-3.11.47.dist-info/LICENSE,sha256=4DukHX-rIHAHaf5BGLq1DYAMt0-ZA1OgXS9f_xwig2M,11558
|
|
942
|
+
ultracart_rest_sdk-3.11.47.dist-info/METADATA,sha256=BNxbrq4zFDmj7R0rflVtWR7VE0_iYMCzggkQr8ND4Nk,423
|
|
943
|
+
ultracart_rest_sdk-3.11.47.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
|
|
944
|
+
ultracart_rest_sdk-3.11.47.dist-info/top_level.txt,sha256=90IoRqV6KX58jTyx9MwEBqh4j38_10hWrrvqsmXWZYo,10
|
|
945
|
+
ultracart_rest_sdk-3.11.47.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|