Skip to content

Commit 6274ccb

Browse files
authored
Update to 2.1.1 for issuance_type and disclaimers (#76)
1 parent 9f8b01e commit 6274ccb

10 files changed

+367
-9
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

Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
patch_ruby (2.1.0)
4+
patch_ruby (2.1.1)
55
typhoeus (~> 1.0, >= 1.0.1)
66

77
GEM

lib/patch_ruby.rb

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
require 'patch_ruby/models/create_vehicle_estimate_request'
3535
require 'patch_ruby/models/delete_order_line_item_response'
3636
require 'patch_ruby/models/delete_order_response'
37+
require 'patch_ruby/models/disclaimer'
3738
require 'patch_ruby/models/error_response'
3839
require 'patch_ruby/models/estimate'
3940
require 'patch_ruby/models/estimate_list_response'

lib/patch_ruby/api_client.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class ApiClient
3131
# @option config [Configuration] Configuration for initializing the object, default to Configuration.default
3232
def initialize(config = Configuration.default)
3333
@config = config
34-
@user_agent = "patch-ruby/2.1.0"
34+
@user_agent = "patch-ruby/2.1.1"
3535
@default_headers = {
3636
'Content-Type' => 'application/json',
3737
'User-Agent' => @user_agent

lib/patch_ruby/models/disclaimer.rb

+282
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,282 @@
1+
=begin
2+
#Patch API V2
3+
4+
#The core API used to integrate with Patch's service
5+
6+
The version of the OpenAPI document: 2
7+
8+
Generated by: https://openapi-generator.tech
9+
OpenAPI Generator version: 5.3.1
10+
11+
=end
12+
13+
require 'date'
14+
require 'time'
15+
16+
module Patch
17+
class Disclaimer
18+
# The body of the disclaimer.
19+
attr_accessor :body
20+
21+
# The header for the disclaimer.
22+
attr_accessor :header
23+
24+
# The severity of the disclaimer.
25+
attr_accessor :severity
26+
27+
# The text for the provided link.
28+
attr_accessor :link_text
29+
30+
# The destination of the provided link.
31+
attr_accessor :link_destination
32+
33+
# Attribute mapping from ruby-style variable name to JSON key.
34+
def self.attribute_map
35+
{
36+
:'body' => :'body',
37+
:'header' => :'header',
38+
:'severity' => :'severity',
39+
:'link_text' => :'link_text',
40+
:'link_destination' => :'link_destination'
41+
}
42+
end
43+
44+
# Returns all the JSON keys this model knows about
45+
def self.acceptable_attributes
46+
attribute_map.values
47+
end
48+
49+
# Attribute type mapping.
50+
def self.openapi_types
51+
{
52+
:'body' => :'String',
53+
:'header' => :'String',
54+
:'severity' => :'String',
55+
:'link_text' => :'String',
56+
:'link_destination' => :'String'
57+
}
58+
end
59+
60+
# List of attributes with nullable: true
61+
def self.openapi_nullable
62+
Set.new([
63+
:'body',
64+
:'link_text',
65+
:'link_destination'
66+
])
67+
end
68+
69+
70+
# Allows models with corresponding API classes to delegate API operations to those API classes
71+
# Exposes Model.operation_id which delegates to ModelsApi.new.operation_id
72+
# Eg. Order.create_order delegates to OrdersApi.new.create_order
73+
def self.method_missing(message, *args, &block)
74+
if Object.const_defined?('Patch::DisclaimersApi::OPERATIONS') && Patch::DisclaimersApi::OPERATIONS.include?(message)
75+
Patch::DisclaimersApi.new.send(message, *args)
76+
else
77+
super
78+
end
79+
end
80+
81+
# Initializes the object
82+
# @param [Hash] attributes Model attributes in the form of hash
83+
def initialize(attributes = {})
84+
if (!attributes.is_a?(Hash))
85+
fail ArgumentError, "The input argument (attributes) must be a hash in `Patch::Disclaimer` initialize method"
86+
end
87+
88+
# check to see if the attribute exists and convert string to symbol for hash key
89+
attributes = attributes.each_with_object({}) { |(k, v), h|
90+
if (!self.class.attribute_map.key?(k.to_sym))
91+
fail ArgumentError, "`#{k}` is not a valid attribute in `Patch::Disclaimer`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
92+
end
93+
h[k.to_sym] = v
94+
}
95+
96+
if attributes.key?(:'body')
97+
self.body = attributes[:'body']
98+
end
99+
100+
if attributes.key?(:'header')
101+
self.header = attributes[:'header']
102+
end
103+
104+
if attributes.key?(:'severity')
105+
self.severity = attributes[:'severity']
106+
end
107+
108+
if attributes.key?(:'link_text')
109+
self.link_text = attributes[:'link_text']
110+
end
111+
112+
if attributes.key?(:'link_destination')
113+
self.link_destination = attributes[:'link_destination']
114+
end
115+
end
116+
117+
# Show invalid properties with the reasons. Usually used together with valid?
118+
# @return Array for valid properties with the reasons
119+
def list_invalid_properties
120+
invalid_properties = Array.new
121+
if @header.nil?
122+
invalid_properties.push('invalid value for "header", header cannot be nil.')
123+
end
124+
125+
if @severity.nil?
126+
invalid_properties.push('invalid value for "severity", severity cannot be nil.')
127+
end
128+
129+
invalid_properties
130+
end
131+
132+
# Check to see if the all the properties in the model are valid
133+
# @return true if the model is valid
134+
def valid?
135+
return false if @header.nil?
136+
return false if @severity.nil?
137+
true
138+
end
139+
140+
# Checks equality by comparing each attribute.
141+
# @param [Object] Object to be compared
142+
def ==(o)
143+
return true if self.equal?(o)
144+
self.class == o.class &&
145+
body == o.body &&
146+
header == o.header &&
147+
severity == o.severity &&
148+
link_text == o.link_text &&
149+
link_destination == o.link_destination
150+
end
151+
152+
# @see the `==` method
153+
# @param [Object] Object to be compared
154+
def eql?(o)
155+
self == o
156+
end
157+
158+
# Calculates hash code according to all attributes.
159+
# @return [Integer] Hash code
160+
def hash
161+
[body, header, severity, link_text, link_destination].hash
162+
end
163+
164+
# Builds the object from hash
165+
# @param [Hash] attributes Model attributes in the form of hash
166+
# @return [Object] Returns the model itself
167+
def self.build_from_hash(attributes)
168+
new.build_from_hash(attributes)
169+
end
170+
171+
# Builds the object from hash
172+
# @param [Hash] attributes Model attributes in the form of hash
173+
# @return [Object] Returns the model itself
174+
def build_from_hash(attributes)
175+
return nil unless attributes.is_a?(Hash)
176+
self.class.openapi_types.each_pair do |key, type|
177+
if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
178+
self.send("#{key}=", nil)
179+
elsif type =~ /\AArray<(.*)>/i
180+
# check to ensure the input is an array given that the attribute
181+
# is documented as an array but the input is not
182+
if attributes[self.class.attribute_map[key]].is_a?(Array)
183+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
184+
end
185+
elsif !attributes[self.class.attribute_map[key]].nil?
186+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
187+
end
188+
end
189+
190+
self
191+
end
192+
193+
# Deserializes the data based on type
194+
# @param string type Data type
195+
# @param string value Value to be deserialized
196+
# @return [Object] Deserialized data
197+
def _deserialize(type, value)
198+
case type.to_sym
199+
when :Time
200+
Time.parse(value)
201+
when :Date
202+
Date.parse(value)
203+
when :String
204+
value.to_s
205+
when :Integer
206+
value.to_i
207+
when :Float
208+
value.to_f
209+
when :Boolean
210+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
211+
true
212+
else
213+
false
214+
end
215+
when :Object
216+
# generic object (usually a Hash), return directly
217+
value
218+
when /\AArray<(?<inner_type>.+)>\z/
219+
inner_type = Regexp.last_match[:inner_type]
220+
value.map { |v| _deserialize(inner_type, v) }
221+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
222+
k_type = Regexp.last_match[:k_type]
223+
v_type = Regexp.last_match[:v_type]
224+
{}.tap do |hash|
225+
value.each do |k, v|
226+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
227+
end
228+
end
229+
else # model
230+
# models (e.g. Pet) or oneOf
231+
klass = Patch.const_get(type)
232+
klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
233+
end
234+
end
235+
236+
# Returns the string representation of the object
237+
# @return [String] String presentation of the object
238+
def to_s
239+
to_hash.to_s
240+
end
241+
242+
# to_body is an alias to to_hash (backward compatibility)
243+
# @return [Hash] Returns the object in the form of hash
244+
def to_body
245+
to_hash
246+
end
247+
248+
# Returns the object in the form of hash
249+
# @return [Hash] Returns the object in the form of hash
250+
def to_hash
251+
hash = {}
252+
self.class.attribute_map.each_pair do |attr, param|
253+
value = self.send(attr)
254+
if value.nil?
255+
is_nullable = self.class.openapi_nullable.include?(attr)
256+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
257+
end
258+
259+
hash[param] = _to_hash(value)
260+
end
261+
hash
262+
end
263+
264+
# Outputs non-array value in the form of hash
265+
# For object, use to_hash. Otherwise, just return the value
266+
# @param [Object] value Any valid value
267+
# @return [Hash] Returns the value in the form of hash
268+
def _to_hash(value)
269+
if value.is_a?(Array)
270+
value.compact.map { |v| _to_hash(v) }
271+
elsif value.is_a?(Hash)
272+
{}.tap do |hash|
273+
value.each { |k, v| hash[k] = _to_hash(v) }
274+
end
275+
elsif value.respond_to? :to_hash
276+
value.to_hash
277+
else
278+
value
279+
end
280+
end
281+
end
282+
end

lib/patch_ruby/models/order.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class Order
4242
# The currency code for the `price` and `patch_fee`.
4343
attr_accessor :currency
4444

45-
# The url of this order in the public registry.
45+
# The URL of this order in the public registry. Use this URL to access the order's accompanying certificate.
4646
attr_accessor :registry_url
4747

4848
# An optional JSON object containing metadata for this order.

lib/patch_ruby/models/order_line_item.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class OrderLineItem
2424
# The year in which the climate impacts of the project occurred, or will occur.
2525
attr_accessor :vintage_year
2626

27-
# The starting_year in which the climate impacts of the project occurred, or will occur.
27+
# The starting year in which the climate impacts of the project occurred, or will occur.
2828
attr_accessor :vintage_start_year
2929

3030
# The ending year in which the climate impacts of the project occurred, or will occur.

0 commit comments

Comments
 (0)