volcengine-python-sdk 4.0.25__py2.py3-none-any.whl → 4.0.26__py2.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 volcengine-python-sdk might be problematic. Click here for more details.

Files changed (76) hide show
  1. {volcengine_python_sdk-4.0.25.dist-info → volcengine_python_sdk-4.0.26.dist-info}/METADATA +1 -1
  2. {volcengine_python_sdk-4.0.25.dist-info → volcengine_python_sdk-4.0.26.dist-info}/RECORD +76 -11
  3. volcenginesdkbilling/__init__.py +65 -0
  4. volcenginesdkbilling/api/billing_api.py +1662 -13
  5. volcenginesdkbilling/models/__init__.py +65 -0
  6. volcenginesdkbilling/models/billing_mode_info_list_for_list_budget_filter_billing_mode_output.py +149 -0
  7. volcenginesdkbilling/models/budget_alert_message_detail_list_for_query_budget_detail_output.py +279 -0
  8. volcenginesdkbilling/models/budget_alert_message_for_create_budget_input.py +201 -0
  9. volcenginesdkbilling/models/budget_alert_message_for_update_budget_input.py +201 -0
  10. volcenginesdkbilling/models/budget_alert_rule_for_create_budget_input.py +215 -0
  11. volcenginesdkbilling/models/budget_alert_rule_for_update_budget_input.py +215 -0
  12. volcenginesdkbilling/models/budget_alert_rule_list_for_query_budget_detail_output.py +201 -0
  13. volcenginesdkbilling/models/budget_amount_for_create_budget_input.py +175 -0
  14. volcenginesdkbilling/models/budget_amount_for_update_budget_input.py +175 -0
  15. volcenginesdkbilling/models/budget_amount_list_for_list_budget_amount_by_budget_id_output.py +253 -0
  16. volcenginesdkbilling/models/budget_for_create_budget_input.py +274 -0
  17. volcenginesdkbilling/models/budget_for_query_budget_detail_output.py +253 -0
  18. volcenginesdkbilling/models/budget_for_update_budget_input.py +274 -0
  19. volcenginesdkbilling/models/budget_list_for_list_budget_output.py +357 -0
  20. volcenginesdkbilling/models/budget_range_billing_mode_for_query_budget_detail_output.py +149 -0
  21. volcenginesdkbilling/models/budget_range_for_create_budget_input.py +331 -0
  22. volcenginesdkbilling/models/budget_range_for_update_budget_input.py +331 -0
  23. volcenginesdkbilling/models/budget_range_info_for_query_budget_detail_output.py +331 -0
  24. volcenginesdkbilling/models/budget_range_owner_for_query_budget_detail_output.py +149 -0
  25. volcenginesdkbilling/models/budget_range_payer_for_query_budget_detail_output.py +149 -0
  26. volcenginesdkbilling/models/budget_range_product_for_query_budget_detail_output.py +149 -0
  27. volcenginesdkbilling/models/budget_range_region_for_query_budget_detail_output.py +149 -0
  28. volcenginesdkbilling/models/budget_range_subject_for_query_budget_detail_output.py +149 -0
  29. volcenginesdkbilling/models/budget_range_zone_for_query_budget_detail_output.py +149 -0
  30. volcenginesdkbilling/models/create_budget_request.py +227 -0
  31. volcenginesdkbilling/models/create_budget_response.py +123 -0
  32. volcenginesdkbilling/models/delete_budget_request.py +124 -0
  33. volcenginesdkbilling/models/delete_budget_response.py +95 -0
  34. volcenginesdkbilling/models/list_budget_amount_by_budget_id_request.py +124 -0
  35. volcenginesdkbilling/models/list_budget_amount_by_budget_id_response.py +123 -0
  36. volcenginesdkbilling/models/list_budget_filter_billing_mode_request.py +151 -0
  37. volcenginesdkbilling/models/list_budget_filter_billing_mode_response.py +201 -0
  38. volcenginesdkbilling/models/list_budget_filter_owner_id_request.py +95 -0
  39. volcenginesdkbilling/models/list_budget_filter_owner_id_response.py +123 -0
  40. volcenginesdkbilling/models/list_budget_filter_payer_id_request.py +95 -0
  41. volcenginesdkbilling/models/list_budget_filter_payer_id_response.py +123 -0
  42. volcenginesdkbilling/models/list_budget_filter_product_request.py +151 -0
  43. volcenginesdkbilling/models/list_budget_filter_product_response.py +201 -0
  44. volcenginesdkbilling/models/list_budget_filter_project_request.py +151 -0
  45. volcenginesdkbilling/models/list_budget_filter_project_response.py +201 -0
  46. volcenginesdkbilling/models/list_budget_filter_region_code_request.py +151 -0
  47. volcenginesdkbilling/models/list_budget_filter_region_code_response.py +201 -0
  48. volcenginesdkbilling/models/list_budget_filter_subject_info_request.py +151 -0
  49. volcenginesdkbilling/models/list_budget_filter_subject_info_response.py +201 -0
  50. volcenginesdkbilling/models/list_budget_filter_tag_key_request.py +151 -0
  51. volcenginesdkbilling/models/list_budget_filter_tag_key_response.py +201 -0
  52. volcenginesdkbilling/models/list_budget_filter_tag_value_request.py +178 -0
  53. volcenginesdkbilling/models/list_budget_filter_tag_value_response.py +201 -0
  54. volcenginesdkbilling/models/list_budget_filter_zone_code_request.py +151 -0
  55. volcenginesdkbilling/models/list_budget_filter_zone_code_response.py +201 -0
  56. volcenginesdkbilling/models/list_budget_request.py +302 -0
  57. volcenginesdkbilling/models/list_budget_response.py +201 -0
  58. volcenginesdkbilling/models/list_for_list_budget_filter_owner_id_output.py +149 -0
  59. volcenginesdkbilling/models/list_for_list_budget_filter_payer_id_output.py +149 -0
  60. volcenginesdkbilling/models/list_for_list_budget_filter_product_output.py +149 -0
  61. volcenginesdkbilling/models/list_recipient_information_request.py +151 -0
  62. volcenginesdkbilling/models/list_recipient_information_response.py +201 -0
  63. volcenginesdkbilling/models/query_budget_detail_request.py +124 -0
  64. volcenginesdkbilling/models/query_budget_detail_response.py +201 -0
  65. volcenginesdkbilling/models/recipient_information_list_for_list_recipient_information_output.py +201 -0
  66. volcenginesdkbilling/models/region_info_list_for_list_budget_filter_region_code_output.py +149 -0
  67. volcenginesdkbilling/models/subject_info_list_for_list_budget_filter_subject_info_output.py +149 -0
  68. volcenginesdkbilling/models/update_budget_request.py +254 -0
  69. volcenginesdkbilling/models/update_budget_response.py +95 -0
  70. volcenginesdkbilling/models/zone_info_list_for_list_budget_filter_zone_code_output.py +149 -0
  71. volcenginesdkcore/api_client.py +1 -1
  72. volcenginesdkcore/configuration.py +1 -1
  73. {volcengine_python_sdk-4.0.25.dist-info → volcengine_python_sdk-4.0.26.dist-info}/WHEEL +0 -0
  74. {volcengine_python_sdk-4.0.25.dist-info → volcengine_python_sdk-4.0.26.dist-info}/licenses/LICENSE.txt +0 -0
  75. {volcengine_python_sdk-4.0.25.dist-info → volcengine_python_sdk-4.0.26.dist-info}/licenses/NOTICE.md +0 -0
  76. {volcengine_python_sdk-4.0.25.dist-info → volcengine_python_sdk-4.0.26.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,253 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ billing
5
+
6
+ No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
7
+
8
+ OpenAPI spec version: common-version
9
+
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
+ from volcenginesdkcore.configuration import Configuration
20
+
21
+
22
+ class BudgetForQueryBudgetDetailOutput(object):
23
+ """NOTE: This class is auto generated by the swagger code generator program.
24
+
25
+ Do not edit the class manually.
26
+ """
27
+
28
+ """
29
+ Attributes:
30
+ swagger_types (dict): The key is attribute name
31
+ and the value is attribute type.
32
+ attribute_map (dict): The key is attribute name
33
+ and the value is json key in definition.
34
+ """
35
+ swagger_types = {
36
+ 'budget_end_time': 'str',
37
+ 'budget_name': 'str',
38
+ 'budget_plan_type': 'str',
39
+ 'budget_start_time': 'str',
40
+ 'budget_type': 'str',
41
+ 'period': 'str'
42
+ }
43
+
44
+ attribute_map = {
45
+ 'budget_end_time': 'BudgetEndTime',
46
+ 'budget_name': 'BudgetName',
47
+ 'budget_plan_type': 'BudgetPlanType',
48
+ 'budget_start_time': 'BudgetStartTime',
49
+ 'budget_type': 'BudgetType',
50
+ 'period': 'Period'
51
+ }
52
+
53
+ def __init__(self, budget_end_time=None, budget_name=None, budget_plan_type=None, budget_start_time=None, budget_type=None, period=None, _configuration=None): # noqa: E501
54
+ """BudgetForQueryBudgetDetailOutput - a model defined in Swagger""" # noqa: E501
55
+ if _configuration is None:
56
+ _configuration = Configuration()
57
+ self._configuration = _configuration
58
+
59
+ self._budget_end_time = None
60
+ self._budget_name = None
61
+ self._budget_plan_type = None
62
+ self._budget_start_time = None
63
+ self._budget_type = None
64
+ self._period = None
65
+ self.discriminator = None
66
+
67
+ if budget_end_time is not None:
68
+ self.budget_end_time = budget_end_time
69
+ if budget_name is not None:
70
+ self.budget_name = budget_name
71
+ if budget_plan_type is not None:
72
+ self.budget_plan_type = budget_plan_type
73
+ if budget_start_time is not None:
74
+ self.budget_start_time = budget_start_time
75
+ if budget_type is not None:
76
+ self.budget_type = budget_type
77
+ if period is not None:
78
+ self.period = period
79
+
80
+ @property
81
+ def budget_end_time(self):
82
+ """Gets the budget_end_time of this BudgetForQueryBudgetDetailOutput. # noqa: E501
83
+
84
+
85
+ :return: The budget_end_time of this BudgetForQueryBudgetDetailOutput. # noqa: E501
86
+ :rtype: str
87
+ """
88
+ return self._budget_end_time
89
+
90
+ @budget_end_time.setter
91
+ def budget_end_time(self, budget_end_time):
92
+ """Sets the budget_end_time of this BudgetForQueryBudgetDetailOutput.
93
+
94
+
95
+ :param budget_end_time: The budget_end_time of this BudgetForQueryBudgetDetailOutput. # noqa: E501
96
+ :type: str
97
+ """
98
+
99
+ self._budget_end_time = budget_end_time
100
+
101
+ @property
102
+ def budget_name(self):
103
+ """Gets the budget_name of this BudgetForQueryBudgetDetailOutput. # noqa: E501
104
+
105
+
106
+ :return: The budget_name of this BudgetForQueryBudgetDetailOutput. # noqa: E501
107
+ :rtype: str
108
+ """
109
+ return self._budget_name
110
+
111
+ @budget_name.setter
112
+ def budget_name(self, budget_name):
113
+ """Sets the budget_name of this BudgetForQueryBudgetDetailOutput.
114
+
115
+
116
+ :param budget_name: The budget_name of this BudgetForQueryBudgetDetailOutput. # noqa: E501
117
+ :type: str
118
+ """
119
+
120
+ self._budget_name = budget_name
121
+
122
+ @property
123
+ def budget_plan_type(self):
124
+ """Gets the budget_plan_type of this BudgetForQueryBudgetDetailOutput. # noqa: E501
125
+
126
+
127
+ :return: The budget_plan_type of this BudgetForQueryBudgetDetailOutput. # noqa: E501
128
+ :rtype: str
129
+ """
130
+ return self._budget_plan_type
131
+
132
+ @budget_plan_type.setter
133
+ def budget_plan_type(self, budget_plan_type):
134
+ """Sets the budget_plan_type of this BudgetForQueryBudgetDetailOutput.
135
+
136
+
137
+ :param budget_plan_type: The budget_plan_type of this BudgetForQueryBudgetDetailOutput. # noqa: E501
138
+ :type: str
139
+ """
140
+
141
+ self._budget_plan_type = budget_plan_type
142
+
143
+ @property
144
+ def budget_start_time(self):
145
+ """Gets the budget_start_time of this BudgetForQueryBudgetDetailOutput. # noqa: E501
146
+
147
+
148
+ :return: The budget_start_time of this BudgetForQueryBudgetDetailOutput. # noqa: E501
149
+ :rtype: str
150
+ """
151
+ return self._budget_start_time
152
+
153
+ @budget_start_time.setter
154
+ def budget_start_time(self, budget_start_time):
155
+ """Sets the budget_start_time of this BudgetForQueryBudgetDetailOutput.
156
+
157
+
158
+ :param budget_start_time: The budget_start_time of this BudgetForQueryBudgetDetailOutput. # noqa: E501
159
+ :type: str
160
+ """
161
+
162
+ self._budget_start_time = budget_start_time
163
+
164
+ @property
165
+ def budget_type(self):
166
+ """Gets the budget_type of this BudgetForQueryBudgetDetailOutput. # noqa: E501
167
+
168
+
169
+ :return: The budget_type of this BudgetForQueryBudgetDetailOutput. # noqa: E501
170
+ :rtype: str
171
+ """
172
+ return self._budget_type
173
+
174
+ @budget_type.setter
175
+ def budget_type(self, budget_type):
176
+ """Sets the budget_type of this BudgetForQueryBudgetDetailOutput.
177
+
178
+
179
+ :param budget_type: The budget_type of this BudgetForQueryBudgetDetailOutput. # noqa: E501
180
+ :type: str
181
+ """
182
+
183
+ self._budget_type = budget_type
184
+
185
+ @property
186
+ def period(self):
187
+ """Gets the period of this BudgetForQueryBudgetDetailOutput. # noqa: E501
188
+
189
+
190
+ :return: The period of this BudgetForQueryBudgetDetailOutput. # noqa: E501
191
+ :rtype: str
192
+ """
193
+ return self._period
194
+
195
+ @period.setter
196
+ def period(self, period):
197
+ """Sets the period of this BudgetForQueryBudgetDetailOutput.
198
+
199
+
200
+ :param period: The period of this BudgetForQueryBudgetDetailOutput. # noqa: E501
201
+ :type: str
202
+ """
203
+
204
+ self._period = period
205
+
206
+ def to_dict(self):
207
+ """Returns the model properties as a dict"""
208
+ result = {}
209
+
210
+ for attr, _ in six.iteritems(self.swagger_types):
211
+ value = getattr(self, attr)
212
+ if isinstance(value, list):
213
+ result[attr] = list(map(
214
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
215
+ value
216
+ ))
217
+ elif hasattr(value, "to_dict"):
218
+ result[attr] = value.to_dict()
219
+ elif isinstance(value, dict):
220
+ result[attr] = dict(map(
221
+ lambda item: (item[0], item[1].to_dict())
222
+ if hasattr(item[1], "to_dict") else item,
223
+ value.items()
224
+ ))
225
+ else:
226
+ result[attr] = value
227
+ if issubclass(BudgetForQueryBudgetDetailOutput, dict):
228
+ for key, value in self.items():
229
+ result[key] = value
230
+
231
+ return result
232
+
233
+ def to_str(self):
234
+ """Returns the string representation of the model"""
235
+ return pprint.pformat(self.to_dict())
236
+
237
+ def __repr__(self):
238
+ """For `print` and `pprint`"""
239
+ return self.to_str()
240
+
241
+ def __eq__(self, other):
242
+ """Returns true if both objects are equal"""
243
+ if not isinstance(other, BudgetForQueryBudgetDetailOutput):
244
+ return False
245
+
246
+ return self.to_dict() == other.to_dict()
247
+
248
+ def __ne__(self, other):
249
+ """Returns true if both objects are not equal"""
250
+ if not isinstance(other, BudgetForQueryBudgetDetailOutput):
251
+ return True
252
+
253
+ return self.to_dict() != other.to_dict()
@@ -0,0 +1,274 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ billing
5
+
6
+ No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
7
+
8
+ OpenAPI spec version: common-version
9
+
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
+ from volcenginesdkcore.configuration import Configuration
20
+
21
+
22
+ class BudgetForUpdateBudgetInput(object):
23
+ """NOTE: This class is auto generated by the swagger code generator program.
24
+
25
+ Do not edit the class manually.
26
+ """
27
+
28
+ """
29
+ Attributes:
30
+ swagger_types (dict): The key is attribute name
31
+ and the value is attribute type.
32
+ attribute_map (dict): The key is attribute name
33
+ and the value is json key in definition.
34
+ """
35
+ swagger_types = {
36
+ 'budget_end_time': 'str',
37
+ 'budget_name': 'str',
38
+ 'budget_plan_type': 'str',
39
+ 'budget_start_time': 'str',
40
+ 'budget_type': 'str',
41
+ 'period': 'str'
42
+ }
43
+
44
+ attribute_map = {
45
+ 'budget_end_time': 'BudgetEndTime',
46
+ 'budget_name': 'BudgetName',
47
+ 'budget_plan_type': 'BudgetPlanType',
48
+ 'budget_start_time': 'BudgetStartTime',
49
+ 'budget_type': 'BudgetType',
50
+ 'period': 'Period'
51
+ }
52
+
53
+ def __init__(self, budget_end_time=None, budget_name=None, budget_plan_type=None, budget_start_time=None, budget_type=None, period=None, _configuration=None): # noqa: E501
54
+ """BudgetForUpdateBudgetInput - a model defined in Swagger""" # noqa: E501
55
+ if _configuration is None:
56
+ _configuration = Configuration()
57
+ self._configuration = _configuration
58
+
59
+ self._budget_end_time = None
60
+ self._budget_name = None
61
+ self._budget_plan_type = None
62
+ self._budget_start_time = None
63
+ self._budget_type = None
64
+ self._period = None
65
+ self.discriminator = None
66
+
67
+ if budget_end_time is not None:
68
+ self.budget_end_time = budget_end_time
69
+ if budget_name is not None:
70
+ self.budget_name = budget_name
71
+ if budget_plan_type is not None:
72
+ self.budget_plan_type = budget_plan_type
73
+ if budget_start_time is not None:
74
+ self.budget_start_time = budget_start_time
75
+ if budget_type is not None:
76
+ self.budget_type = budget_type
77
+ if period is not None:
78
+ self.period = period
79
+
80
+ @property
81
+ def budget_end_time(self):
82
+ """Gets the budget_end_time of this BudgetForUpdateBudgetInput. # noqa: E501
83
+
84
+
85
+ :return: The budget_end_time of this BudgetForUpdateBudgetInput. # noqa: E501
86
+ :rtype: str
87
+ """
88
+ return self._budget_end_time
89
+
90
+ @budget_end_time.setter
91
+ def budget_end_time(self, budget_end_time):
92
+ """Sets the budget_end_time of this BudgetForUpdateBudgetInput.
93
+
94
+
95
+ :param budget_end_time: The budget_end_time of this BudgetForUpdateBudgetInput. # noqa: E501
96
+ :type: str
97
+ """
98
+
99
+ self._budget_end_time = budget_end_time
100
+
101
+ @property
102
+ def budget_name(self):
103
+ """Gets the budget_name of this BudgetForUpdateBudgetInput. # noqa: E501
104
+
105
+
106
+ :return: The budget_name of this BudgetForUpdateBudgetInput. # noqa: E501
107
+ :rtype: str
108
+ """
109
+ return self._budget_name
110
+
111
+ @budget_name.setter
112
+ def budget_name(self, budget_name):
113
+ """Sets the budget_name of this BudgetForUpdateBudgetInput.
114
+
115
+
116
+ :param budget_name: The budget_name of this BudgetForUpdateBudgetInput. # noqa: E501
117
+ :type: str
118
+ """
119
+
120
+ self._budget_name = budget_name
121
+
122
+ @property
123
+ def budget_plan_type(self):
124
+ """Gets the budget_plan_type of this BudgetForUpdateBudgetInput. # noqa: E501
125
+
126
+
127
+ :return: The budget_plan_type of this BudgetForUpdateBudgetInput. # noqa: E501
128
+ :rtype: str
129
+ """
130
+ return self._budget_plan_type
131
+
132
+ @budget_plan_type.setter
133
+ def budget_plan_type(self, budget_plan_type):
134
+ """Sets the budget_plan_type of this BudgetForUpdateBudgetInput.
135
+
136
+
137
+ :param budget_plan_type: The budget_plan_type of this BudgetForUpdateBudgetInput. # noqa: E501
138
+ :type: str
139
+ """
140
+ allowed_values = ["fixed_amount", "planning"] # noqa: E501
141
+ if (self._configuration.client_side_validation and
142
+ budget_plan_type not in allowed_values):
143
+ raise ValueError(
144
+ "Invalid value for `budget_plan_type` ({0}), must be one of {1}" # noqa: E501
145
+ .format(budget_plan_type, allowed_values)
146
+ )
147
+
148
+ self._budget_plan_type = budget_plan_type
149
+
150
+ @property
151
+ def budget_start_time(self):
152
+ """Gets the budget_start_time of this BudgetForUpdateBudgetInput. # noqa: E501
153
+
154
+
155
+ :return: The budget_start_time of this BudgetForUpdateBudgetInput. # noqa: E501
156
+ :rtype: str
157
+ """
158
+ return self._budget_start_time
159
+
160
+ @budget_start_time.setter
161
+ def budget_start_time(self, budget_start_time):
162
+ """Sets the budget_start_time of this BudgetForUpdateBudgetInput.
163
+
164
+
165
+ :param budget_start_time: The budget_start_time of this BudgetForUpdateBudgetInput. # noqa: E501
166
+ :type: str
167
+ """
168
+
169
+ self._budget_start_time = budget_start_time
170
+
171
+ @property
172
+ def budget_type(self):
173
+ """Gets the budget_type of this BudgetForUpdateBudgetInput. # noqa: E501
174
+
175
+
176
+ :return: The budget_type of this BudgetForUpdateBudgetInput. # noqa: E501
177
+ :rtype: str
178
+ """
179
+ return self._budget_type
180
+
181
+ @budget_type.setter
182
+ def budget_type(self, budget_type):
183
+ """Sets the budget_type of this BudgetForUpdateBudgetInput.
184
+
185
+
186
+ :param budget_type: The budget_type of this BudgetForUpdateBudgetInput. # noqa: E501
187
+ :type: str
188
+ """
189
+ allowed_values = ["cost_budget"] # noqa: E501
190
+ if (self._configuration.client_side_validation and
191
+ budget_type not in allowed_values):
192
+ raise ValueError(
193
+ "Invalid value for `budget_type` ({0}), must be one of {1}" # noqa: E501
194
+ .format(budget_type, allowed_values)
195
+ )
196
+
197
+ self._budget_type = budget_type
198
+
199
+ @property
200
+ def period(self):
201
+ """Gets the period of this BudgetForUpdateBudgetInput. # noqa: E501
202
+
203
+
204
+ :return: The period of this BudgetForUpdateBudgetInput. # noqa: E501
205
+ :rtype: str
206
+ """
207
+ return self._period
208
+
209
+ @period.setter
210
+ def period(self, period):
211
+ """Sets the period of this BudgetForUpdateBudgetInput.
212
+
213
+
214
+ :param period: The period of this BudgetForUpdateBudgetInput. # noqa: E501
215
+ :type: str
216
+ """
217
+ allowed_values = ["month", "quarter", "year"] # noqa: E501
218
+ if (self._configuration.client_side_validation and
219
+ period not in allowed_values):
220
+ raise ValueError(
221
+ "Invalid value for `period` ({0}), must be one of {1}" # noqa: E501
222
+ .format(period, allowed_values)
223
+ )
224
+
225
+ self._period = period
226
+
227
+ def to_dict(self):
228
+ """Returns the model properties as a dict"""
229
+ result = {}
230
+
231
+ for attr, _ in six.iteritems(self.swagger_types):
232
+ value = getattr(self, attr)
233
+ if isinstance(value, list):
234
+ result[attr] = list(map(
235
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
236
+ value
237
+ ))
238
+ elif hasattr(value, "to_dict"):
239
+ result[attr] = value.to_dict()
240
+ elif isinstance(value, dict):
241
+ result[attr] = dict(map(
242
+ lambda item: (item[0], item[1].to_dict())
243
+ if hasattr(item[1], "to_dict") else item,
244
+ value.items()
245
+ ))
246
+ else:
247
+ result[attr] = value
248
+ if issubclass(BudgetForUpdateBudgetInput, dict):
249
+ for key, value in self.items():
250
+ result[key] = value
251
+
252
+ return result
253
+
254
+ def to_str(self):
255
+ """Returns the string representation of the model"""
256
+ return pprint.pformat(self.to_dict())
257
+
258
+ def __repr__(self):
259
+ """For `print` and `pprint`"""
260
+ return self.to_str()
261
+
262
+ def __eq__(self, other):
263
+ """Returns true if both objects are equal"""
264
+ if not isinstance(other, BudgetForUpdateBudgetInput):
265
+ return False
266
+
267
+ return self.to_dict() == other.to_dict()
268
+
269
+ def __ne__(self, other):
270
+ """Returns true if both objects are not equal"""
271
+ if not isinstance(other, BudgetForUpdateBudgetInput):
272
+ return True
273
+
274
+ return self.to_dict() != other.to_dict()