Skip to content

Commit e8e799f

Browse files
authored
Update to 2.1.1 (#73)
1 parent cf49ec7 commit e8e799f

11 files changed

+347
-8
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [2.1.1] - 2023-04-18
9+
10+
### Added
11+
12+
- Adds `issuance_type` to `project` responses
13+
- Adds `disclaimers` to `project` responses
14+
815
## [2.1.0] - 2023-04-04
916

1017
### Added

patch_api/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
from __future__ import absolute_import
1717

18-
__version__ = "2.1.0"
18+
__version__ = "2.1.1"
1919

2020
# import ApiClient
2121
from patch_api.api_client import ApiClient

patch_api/api_client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def __init__(
9292
self.default_headers[header_name] = header_value
9393
self.cookie = cookie
9494
# Set default User-Agent.
95-
self.user_agent = "patch-python/2.1.0"
95+
self.user_agent = "patch-python/2.1.1"
9696
# Set default Patch-Version
9797
self.patch_version = 2
9898

patch_api/configuration.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ def to_debug_report(self):
341341
"OS: {env}\n"
342342
"Python Version: {pyversion}\n"
343343
"Version of the API: 2\n"
344-
"SDK Package Version: 2.1.0".format(env=sys.platform, pyversion=sys.version)
344+
"SDK Package Version: 2.1.1".format(env=sys.platform, pyversion=sys.version)
345345
)
346346

347347
def get_host_settings(self):

patch_api/models/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
CreateVehicleEstimateRequest,
5050
)
5151
from patch_api.models.delete_order_response import DeleteOrderResponse
52+
from patch_api.models.disclaimer import Disclaimer
5253
from patch_api.models.error_response import ErrorResponse
5354
from patch_api.models.estimate import Estimate
5455
from patch_api.models.estimate_list_response import EstimateListResponse

patch_api/models/disclaimer.py

+252
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,252 @@
1+
# coding: utf-8
2+
3+
"""
4+
Patch API V2
5+
6+
The core API used to integrate with Patch's service # noqa: E501
7+
8+
The version of the OpenAPI document: 2
9+
10+
Generated by: https://openapi-generator.tech
11+
"""
12+
13+
14+
import pprint
15+
import re # noqa: F401
16+
17+
import six
18+
19+
from patch_api.configuration import Configuration
20+
21+
22+
class Disclaimer(object):
23+
"""NOTE: This class is auto generated by OpenAPI Generator.
24+
Ref: https://openapi-generator.tech
25+
26+
Do not edit the class manually.
27+
"""
28+
29+
"""
30+
Attributes:
31+
openapi_types (dict): The key is attribute name
32+
and the value is attribute type.
33+
attribute_map (dict): The key is attribute name
34+
and the value is json key in definition.
35+
"""
36+
openapi_types = {
37+
"body": "str",
38+
"header": "str",
39+
"severity": "str",
40+
"link_text": "str",
41+
"link_destination": "str",
42+
}
43+
44+
attribute_map = {
45+
"body": "body",
46+
"header": "header",
47+
"severity": "severity",
48+
"link_text": "link_text",
49+
"link_destination": "link_destination",
50+
}
51+
52+
def __init__(
53+
self,
54+
body=None,
55+
header=None,
56+
severity=None,
57+
link_text=None,
58+
link_destination=None,
59+
local_vars_configuration=None,
60+
): # noqa: E501
61+
"""Disclaimer - a model defined in OpenAPI""" # noqa: E501
62+
if local_vars_configuration is None:
63+
local_vars_configuration = Configuration()
64+
self.local_vars_configuration = local_vars_configuration
65+
66+
self._body = None
67+
self._header = None
68+
self._severity = None
69+
self._link_text = None
70+
self._link_destination = None
71+
self.discriminator = None
72+
73+
self.body = body
74+
self.header = header
75+
self.severity = severity
76+
self.link_text = link_text
77+
self.link_destination = link_destination
78+
79+
@property
80+
def body(self):
81+
"""Gets the body of this Disclaimer. # noqa: E501
82+
83+
The body of the disclaimer. # noqa: E501
84+
85+
:return: The body of this Disclaimer. # noqa: E501
86+
:rtype: str
87+
"""
88+
return self._body
89+
90+
@body.setter
91+
def body(self, body):
92+
"""Sets the body of this Disclaimer.
93+
94+
The body of the disclaimer. # noqa: E501
95+
96+
:param body: The body of this Disclaimer. # noqa: E501
97+
:type: str
98+
"""
99+
100+
self._body = body
101+
102+
@property
103+
def header(self):
104+
"""Gets the header of this Disclaimer. # noqa: E501
105+
106+
The header for the disclaimer. # noqa: E501
107+
108+
:return: The header of this Disclaimer. # noqa: E501
109+
:rtype: str
110+
"""
111+
return self._header
112+
113+
@header.setter
114+
def header(self, header):
115+
"""Sets the header of this Disclaimer.
116+
117+
The header for the disclaimer. # noqa: E501
118+
119+
:param header: The header of this Disclaimer. # noqa: E501
120+
:type: str
121+
"""
122+
if (
123+
self.local_vars_configuration.client_side_validation and header is None
124+
): # noqa: E501
125+
raise ValueError(
126+
"Invalid value for `header`, must not be `None`"
127+
) # noqa: E501
128+
129+
self._header = header
130+
131+
@property
132+
def severity(self):
133+
"""Gets the severity of this Disclaimer. # noqa: E501
134+
135+
The severity of the disclaimer. # noqa: E501
136+
137+
:return: The severity of this Disclaimer. # noqa: E501
138+
:rtype: str
139+
"""
140+
return self._severity
141+
142+
@severity.setter
143+
def severity(self, severity):
144+
"""Sets the severity of this Disclaimer.
145+
146+
The severity of the disclaimer. # noqa: E501
147+
148+
:param severity: The severity of this Disclaimer. # noqa: E501
149+
:type: str
150+
"""
151+
if (
152+
self.local_vars_configuration.client_side_validation and severity is None
153+
): # noqa: E501
154+
raise ValueError(
155+
"Invalid value for `severity`, must not be `None`"
156+
) # noqa: E501
157+
158+
self._severity = severity
159+
160+
@property
161+
def link_text(self):
162+
"""Gets the link_text of this Disclaimer. # noqa: E501
163+
164+
The text for the provided link. # noqa: E501
165+
166+
:return: The link_text of this Disclaimer. # noqa: E501
167+
:rtype: str
168+
"""
169+
return self._link_text
170+
171+
@link_text.setter
172+
def link_text(self, link_text):
173+
"""Sets the link_text of this Disclaimer.
174+
175+
The text for the provided link. # noqa: E501
176+
177+
:param link_text: The link_text of this Disclaimer. # noqa: E501
178+
:type: str
179+
"""
180+
181+
self._link_text = link_text
182+
183+
@property
184+
def link_destination(self):
185+
"""Gets the link_destination of this Disclaimer. # noqa: E501
186+
187+
The destination of the provided link. # noqa: E501
188+
189+
:return: The link_destination of this Disclaimer. # noqa: E501
190+
:rtype: str
191+
"""
192+
return self._link_destination
193+
194+
@link_destination.setter
195+
def link_destination(self, link_destination):
196+
"""Sets the link_destination of this Disclaimer.
197+
198+
The destination of the provided link. # noqa: E501
199+
200+
:param link_destination: The link_destination of this Disclaimer. # noqa: E501
201+
:type: str
202+
"""
203+
204+
self._link_destination = link_destination
205+
206+
def to_dict(self):
207+
"""Returns the model properties as a dict"""
208+
result = {}
209+
210+
for attr, _ in six.iteritems(self.openapi_types):
211+
value = getattr(self, attr)
212+
if isinstance(value, list):
213+
result[attr] = list(
214+
map(lambda x: x.to_dict() if hasattr(x, "to_dict") else x, value)
215+
)
216+
elif hasattr(value, "to_dict"):
217+
result[attr] = value.to_dict()
218+
elif isinstance(value, dict):
219+
result[attr] = dict(
220+
map(
221+
lambda item: (item[0], item[1].to_dict())
222+
if hasattr(item[1], "to_dict")
223+
else item,
224+
value.items(),
225+
)
226+
)
227+
else:
228+
result[attr] = value
229+
230+
return result
231+
232+
def to_str(self):
233+
"""Returns the string representation of the model"""
234+
return pprint.pformat(self.to_dict())
235+
236+
def __repr__(self):
237+
"""For `print` and `pprint`"""
238+
return self.to_str()
239+
240+
def __eq__(self, other):
241+
"""Returns true if both objects are equal"""
242+
if not isinstance(other, Disclaimer):
243+
return False
244+
245+
return self.to_dict() == other.to_dict()
246+
247+
def __ne__(self, other):
248+
"""Returns true if both objects are not equal"""
249+
if not isinstance(other, Disclaimer):
250+
return True
251+
252+
return self.to_dict() != other.to_dict()

patch_api/models/order.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ def currency(self, currency):
410410
def registry_url(self):
411411
"""Gets the registry_url of this Order. # noqa: E501
412412
413-
The url of this order in the public registry. # noqa: E501
413+
The URL of this order in the public registry. Use this URL to access the order's accompanying certificate. # noqa: E501
414414
415415
:return: The registry_url of this Order. # noqa: E501
416416
:rtype: str
@@ -421,7 +421,7 @@ def registry_url(self):
421421
def registry_url(self, registry_url):
422422
"""Sets the registry_url of this Order.
423423
424-
The url of this order in the public registry. # noqa: E501
424+
The URL of this order in the public registry. Use this URL to access the order's accompanying certificate. # noqa: E501
425425
426426
:param registry_url: The registry_url of this Order. # noqa: E501
427427
:type: str

patch_api/models/order_line_item.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ def vintage_year(self, vintage_year):
183183
def vintage_start_year(self):
184184
"""Gets the vintage_start_year of this OrderLineItem. # noqa: E501
185185
186-
The starting_year in which the climate impacts of the project occurred, or will occur. # noqa: E501
186+
The starting year in which the climate impacts of the project occurred, or will occur. # noqa: E501
187187
188188
:return: The vintage_start_year of this OrderLineItem. # noqa: E501
189189
:rtype: int
@@ -194,7 +194,7 @@ def vintage_start_year(self):
194194
def vintage_start_year(self, vintage_start_year):
195195
"""Sets the vintage_start_year of this OrderLineItem.
196196
197-
The starting_year in which the climate impacts of the project occurred, or will occur. # noqa: E501
197+
The starting year in which the climate impacts of the project occurred, or will occur. # noqa: E501
198198
199199
:param vintage_start_year: The vintage_start_year of this OrderLineItem. # noqa: E501
200200
:type: int

0 commit comments

Comments
 (0)