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,201 @@
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 RecipientInformationListForListRecipientInformationOutput(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
+ 'recipient_email': 'str',
37
+ 'recipient_id': 'int',
38
+ 'recipient_message': 'str',
39
+ 'recipient_name': 'str'
40
+ }
41
+
42
+ attribute_map = {
43
+ 'recipient_email': 'RecipientEmail',
44
+ 'recipient_id': 'RecipientID',
45
+ 'recipient_message': 'RecipientMessage',
46
+ 'recipient_name': 'RecipientName'
47
+ }
48
+
49
+ def __init__(self, recipient_email=None, recipient_id=None, recipient_message=None, recipient_name=None, _configuration=None): # noqa: E501
50
+ """RecipientInformationListForListRecipientInformationOutput - a model defined in Swagger""" # noqa: E501
51
+ if _configuration is None:
52
+ _configuration = Configuration()
53
+ self._configuration = _configuration
54
+
55
+ self._recipient_email = None
56
+ self._recipient_id = None
57
+ self._recipient_message = None
58
+ self._recipient_name = None
59
+ self.discriminator = None
60
+
61
+ if recipient_email is not None:
62
+ self.recipient_email = recipient_email
63
+ if recipient_id is not None:
64
+ self.recipient_id = recipient_id
65
+ if recipient_message is not None:
66
+ self.recipient_message = recipient_message
67
+ if recipient_name is not None:
68
+ self.recipient_name = recipient_name
69
+
70
+ @property
71
+ def recipient_email(self):
72
+ """Gets the recipient_email of this RecipientInformationListForListRecipientInformationOutput. # noqa: E501
73
+
74
+
75
+ :return: The recipient_email of this RecipientInformationListForListRecipientInformationOutput. # noqa: E501
76
+ :rtype: str
77
+ """
78
+ return self._recipient_email
79
+
80
+ @recipient_email.setter
81
+ def recipient_email(self, recipient_email):
82
+ """Sets the recipient_email of this RecipientInformationListForListRecipientInformationOutput.
83
+
84
+
85
+ :param recipient_email: The recipient_email of this RecipientInformationListForListRecipientInformationOutput. # noqa: E501
86
+ :type: str
87
+ """
88
+
89
+ self._recipient_email = recipient_email
90
+
91
+ @property
92
+ def recipient_id(self):
93
+ """Gets the recipient_id of this RecipientInformationListForListRecipientInformationOutput. # noqa: E501
94
+
95
+
96
+ :return: The recipient_id of this RecipientInformationListForListRecipientInformationOutput. # noqa: E501
97
+ :rtype: int
98
+ """
99
+ return self._recipient_id
100
+
101
+ @recipient_id.setter
102
+ def recipient_id(self, recipient_id):
103
+ """Sets the recipient_id of this RecipientInformationListForListRecipientInformationOutput.
104
+
105
+
106
+ :param recipient_id: The recipient_id of this RecipientInformationListForListRecipientInformationOutput. # noqa: E501
107
+ :type: int
108
+ """
109
+
110
+ self._recipient_id = recipient_id
111
+
112
+ @property
113
+ def recipient_message(self):
114
+ """Gets the recipient_message of this RecipientInformationListForListRecipientInformationOutput. # noqa: E501
115
+
116
+
117
+ :return: The recipient_message of this RecipientInformationListForListRecipientInformationOutput. # noqa: E501
118
+ :rtype: str
119
+ """
120
+ return self._recipient_message
121
+
122
+ @recipient_message.setter
123
+ def recipient_message(self, recipient_message):
124
+ """Sets the recipient_message of this RecipientInformationListForListRecipientInformationOutput.
125
+
126
+
127
+ :param recipient_message: The recipient_message of this RecipientInformationListForListRecipientInformationOutput. # noqa: E501
128
+ :type: str
129
+ """
130
+
131
+ self._recipient_message = recipient_message
132
+
133
+ @property
134
+ def recipient_name(self):
135
+ """Gets the recipient_name of this RecipientInformationListForListRecipientInformationOutput. # noqa: E501
136
+
137
+
138
+ :return: The recipient_name of this RecipientInformationListForListRecipientInformationOutput. # noqa: E501
139
+ :rtype: str
140
+ """
141
+ return self._recipient_name
142
+
143
+ @recipient_name.setter
144
+ def recipient_name(self, recipient_name):
145
+ """Sets the recipient_name of this RecipientInformationListForListRecipientInformationOutput.
146
+
147
+
148
+ :param recipient_name: The recipient_name of this RecipientInformationListForListRecipientInformationOutput. # noqa: E501
149
+ :type: str
150
+ """
151
+
152
+ self._recipient_name = recipient_name
153
+
154
+ def to_dict(self):
155
+ """Returns the model properties as a dict"""
156
+ result = {}
157
+
158
+ for attr, _ in six.iteritems(self.swagger_types):
159
+ value = getattr(self, attr)
160
+ if isinstance(value, list):
161
+ result[attr] = list(map(
162
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
163
+ value
164
+ ))
165
+ elif hasattr(value, "to_dict"):
166
+ result[attr] = value.to_dict()
167
+ elif isinstance(value, dict):
168
+ result[attr] = dict(map(
169
+ lambda item: (item[0], item[1].to_dict())
170
+ if hasattr(item[1], "to_dict") else item,
171
+ value.items()
172
+ ))
173
+ else:
174
+ result[attr] = value
175
+ if issubclass(RecipientInformationListForListRecipientInformationOutput, dict):
176
+ for key, value in self.items():
177
+ result[key] = value
178
+
179
+ return result
180
+
181
+ def to_str(self):
182
+ """Returns the string representation of the model"""
183
+ return pprint.pformat(self.to_dict())
184
+
185
+ def __repr__(self):
186
+ """For `print` and `pprint`"""
187
+ return self.to_str()
188
+
189
+ def __eq__(self, other):
190
+ """Returns true if both objects are equal"""
191
+ if not isinstance(other, RecipientInformationListForListRecipientInformationOutput):
192
+ return False
193
+
194
+ return self.to_dict() == other.to_dict()
195
+
196
+ def __ne__(self, other):
197
+ """Returns true if both objects are not equal"""
198
+ if not isinstance(other, RecipientInformationListForListRecipientInformationOutput):
199
+ return True
200
+
201
+ return self.to_dict() != other.to_dict()
@@ -0,0 +1,149 @@
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 RegionInfoListForListBudgetFilterRegionCodeOutput(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
+ 'region_code': 'str',
37
+ 'region_name': 'str'
38
+ }
39
+
40
+ attribute_map = {
41
+ 'region_code': 'RegionCode',
42
+ 'region_name': 'RegionName'
43
+ }
44
+
45
+ def __init__(self, region_code=None, region_name=None, _configuration=None): # noqa: E501
46
+ """RegionInfoListForListBudgetFilterRegionCodeOutput - a model defined in Swagger""" # noqa: E501
47
+ if _configuration is None:
48
+ _configuration = Configuration()
49
+ self._configuration = _configuration
50
+
51
+ self._region_code = None
52
+ self._region_name = None
53
+ self.discriminator = None
54
+
55
+ if region_code is not None:
56
+ self.region_code = region_code
57
+ if region_name is not None:
58
+ self.region_name = region_name
59
+
60
+ @property
61
+ def region_code(self):
62
+ """Gets the region_code of this RegionInfoListForListBudgetFilterRegionCodeOutput. # noqa: E501
63
+
64
+
65
+ :return: The region_code of this RegionInfoListForListBudgetFilterRegionCodeOutput. # noqa: E501
66
+ :rtype: str
67
+ """
68
+ return self._region_code
69
+
70
+ @region_code.setter
71
+ def region_code(self, region_code):
72
+ """Sets the region_code of this RegionInfoListForListBudgetFilterRegionCodeOutput.
73
+
74
+
75
+ :param region_code: The region_code of this RegionInfoListForListBudgetFilterRegionCodeOutput. # noqa: E501
76
+ :type: str
77
+ """
78
+
79
+ self._region_code = region_code
80
+
81
+ @property
82
+ def region_name(self):
83
+ """Gets the region_name of this RegionInfoListForListBudgetFilterRegionCodeOutput. # noqa: E501
84
+
85
+
86
+ :return: The region_name of this RegionInfoListForListBudgetFilterRegionCodeOutput. # noqa: E501
87
+ :rtype: str
88
+ """
89
+ return self._region_name
90
+
91
+ @region_name.setter
92
+ def region_name(self, region_name):
93
+ """Sets the region_name of this RegionInfoListForListBudgetFilterRegionCodeOutput.
94
+
95
+
96
+ :param region_name: The region_name of this RegionInfoListForListBudgetFilterRegionCodeOutput. # noqa: E501
97
+ :type: str
98
+ """
99
+
100
+ self._region_name = region_name
101
+
102
+ def to_dict(self):
103
+ """Returns the model properties as a dict"""
104
+ result = {}
105
+
106
+ for attr, _ in six.iteritems(self.swagger_types):
107
+ value = getattr(self, attr)
108
+ if isinstance(value, list):
109
+ result[attr] = list(map(
110
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
111
+ value
112
+ ))
113
+ elif hasattr(value, "to_dict"):
114
+ result[attr] = value.to_dict()
115
+ elif isinstance(value, dict):
116
+ result[attr] = dict(map(
117
+ lambda item: (item[0], item[1].to_dict())
118
+ if hasattr(item[1], "to_dict") else item,
119
+ value.items()
120
+ ))
121
+ else:
122
+ result[attr] = value
123
+ if issubclass(RegionInfoListForListBudgetFilterRegionCodeOutput, dict):
124
+ for key, value in self.items():
125
+ result[key] = value
126
+
127
+ return result
128
+
129
+ def to_str(self):
130
+ """Returns the string representation of the model"""
131
+ return pprint.pformat(self.to_dict())
132
+
133
+ def __repr__(self):
134
+ """For `print` and `pprint`"""
135
+ return self.to_str()
136
+
137
+ def __eq__(self, other):
138
+ """Returns true if both objects are equal"""
139
+ if not isinstance(other, RegionInfoListForListBudgetFilterRegionCodeOutput):
140
+ return False
141
+
142
+ return self.to_dict() == other.to_dict()
143
+
144
+ def __ne__(self, other):
145
+ """Returns true if both objects are not equal"""
146
+ if not isinstance(other, RegionInfoListForListBudgetFilterRegionCodeOutput):
147
+ return True
148
+
149
+ return self.to_dict() != other.to_dict()
@@ -0,0 +1,149 @@
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 SubjectInfoListForListBudgetFilterSubjectInfoOutput(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
+ 'subject_name': 'str',
37
+ 'subject_no': 'str'
38
+ }
39
+
40
+ attribute_map = {
41
+ 'subject_name': 'SubjectName',
42
+ 'subject_no': 'SubjectNo'
43
+ }
44
+
45
+ def __init__(self, subject_name=None, subject_no=None, _configuration=None): # noqa: E501
46
+ """SubjectInfoListForListBudgetFilterSubjectInfoOutput - a model defined in Swagger""" # noqa: E501
47
+ if _configuration is None:
48
+ _configuration = Configuration()
49
+ self._configuration = _configuration
50
+
51
+ self._subject_name = None
52
+ self._subject_no = None
53
+ self.discriminator = None
54
+
55
+ if subject_name is not None:
56
+ self.subject_name = subject_name
57
+ if subject_no is not None:
58
+ self.subject_no = subject_no
59
+
60
+ @property
61
+ def subject_name(self):
62
+ """Gets the subject_name of this SubjectInfoListForListBudgetFilterSubjectInfoOutput. # noqa: E501
63
+
64
+
65
+ :return: The subject_name of this SubjectInfoListForListBudgetFilterSubjectInfoOutput. # noqa: E501
66
+ :rtype: str
67
+ """
68
+ return self._subject_name
69
+
70
+ @subject_name.setter
71
+ def subject_name(self, subject_name):
72
+ """Sets the subject_name of this SubjectInfoListForListBudgetFilterSubjectInfoOutput.
73
+
74
+
75
+ :param subject_name: The subject_name of this SubjectInfoListForListBudgetFilterSubjectInfoOutput. # noqa: E501
76
+ :type: str
77
+ """
78
+
79
+ self._subject_name = subject_name
80
+
81
+ @property
82
+ def subject_no(self):
83
+ """Gets the subject_no of this SubjectInfoListForListBudgetFilterSubjectInfoOutput. # noqa: E501
84
+
85
+
86
+ :return: The subject_no of this SubjectInfoListForListBudgetFilterSubjectInfoOutput. # noqa: E501
87
+ :rtype: str
88
+ """
89
+ return self._subject_no
90
+
91
+ @subject_no.setter
92
+ def subject_no(self, subject_no):
93
+ """Sets the subject_no of this SubjectInfoListForListBudgetFilterSubjectInfoOutput.
94
+
95
+
96
+ :param subject_no: The subject_no of this SubjectInfoListForListBudgetFilterSubjectInfoOutput. # noqa: E501
97
+ :type: str
98
+ """
99
+
100
+ self._subject_no = subject_no
101
+
102
+ def to_dict(self):
103
+ """Returns the model properties as a dict"""
104
+ result = {}
105
+
106
+ for attr, _ in six.iteritems(self.swagger_types):
107
+ value = getattr(self, attr)
108
+ if isinstance(value, list):
109
+ result[attr] = list(map(
110
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
111
+ value
112
+ ))
113
+ elif hasattr(value, "to_dict"):
114
+ result[attr] = value.to_dict()
115
+ elif isinstance(value, dict):
116
+ result[attr] = dict(map(
117
+ lambda item: (item[0], item[1].to_dict())
118
+ if hasattr(item[1], "to_dict") else item,
119
+ value.items()
120
+ ))
121
+ else:
122
+ result[attr] = value
123
+ if issubclass(SubjectInfoListForListBudgetFilterSubjectInfoOutput, dict):
124
+ for key, value in self.items():
125
+ result[key] = value
126
+
127
+ return result
128
+
129
+ def to_str(self):
130
+ """Returns the string representation of the model"""
131
+ return pprint.pformat(self.to_dict())
132
+
133
+ def __repr__(self):
134
+ """For `print` and `pprint`"""
135
+ return self.to_str()
136
+
137
+ def __eq__(self, other):
138
+ """Returns true if both objects are equal"""
139
+ if not isinstance(other, SubjectInfoListForListBudgetFilterSubjectInfoOutput):
140
+ return False
141
+
142
+ return self.to_dict() == other.to_dict()
143
+
144
+ def __ne__(self, other):
145
+ """Returns true if both objects are not equal"""
146
+ if not isinstance(other, SubjectInfoListForListBudgetFilterSubjectInfoOutput):
147
+ return True
148
+
149
+ return self.to_dict() != other.to_dict()