DealMakerAPI 0.107.2 → 0.107.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 00e65603a3efa00c97f06217c2e58d5962fc1554fbcdeb2b1fe0ee2527631c88
4
- data.tar.gz: 7842559937dedcf55fc400789d3dfd54f26eef3358ccc3ed7fa1bbd6f61b69bc
3
+ metadata.gz: 31ca7f8a15f9974f39ddaf0f803520ef30f708d00c72a84009ed9a8bd09af51a
4
+ data.tar.gz: d5b8dd5503edfdba6d34adcc756371f586b0eebaa0e5e6bf6ef56c49cd974315
5
5
  SHA512:
6
- metadata.gz: edca57ea5d8d362bb8fd0b868f3b976fdce3e6beb3c2c55c0763eb31e0c18c202ccd6410a7f2f225adf0802f80718c489b4d710b50f827205dac090d3604f3d3
7
- data.tar.gz: 7b524b1c60e15f66ae9bec7a241ef93be0d5eb0b5bf24e25ad17fd4c25c1be4e0f994f2a35ffac6de66548a48ddeec4fdc45414945143fde351b0ecc250e2553
6
+ metadata.gz: c77499f0eae31f3e56f9a9b5f3d833255ea632586848577d20dc918572c6f89425125133f372f58754dcf00b18c3e7ef9257c95be1a9445819e184ee284874dc
7
+ data.tar.gz: f2cc29077aecf671ae01c6049d83a60977e186b4ab9b3f30a9b2f58d8e0635fb8bded086fbab37b2feacb93ea286ba4e95fc3253e459cb8d6bd59b6ead7734a7
data/README.md CHANGED
@@ -338,7 +338,7 @@ Given the high number of updates our platform performs on any investor, we’ve
338
338
  This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
339
339
 
340
340
  - API version: 1.75.0
341
- - Package version: 0.107.2
341
+ - Package version: 0.107.3
342
342
  - Generator version: 7.8.0-SNAPSHOT
343
343
  - Build package: org.openapitools.codegen.languages.RubyClientCodegen
344
344
 
@@ -355,16 +355,16 @@ gem build DealMakerAPI.gemspec
355
355
  Then either install the gem locally:
356
356
 
357
357
  ```shell
358
- gem install ./DealMakerAPI-0.107.2.gem
358
+ gem install ./DealMakerAPI-0.107.3.gem
359
359
  ```
360
360
 
361
- (for development, run `gem install --dev ./DealMakerAPI-0.107.2.gem` to install the development dependencies)
361
+ (for development, run `gem install --dev ./DealMakerAPI-0.107.3.gem` to install the development dependencies)
362
362
 
363
363
  or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
364
364
 
365
365
  Finally add this to the Gemfile:
366
366
 
367
- gem 'DealMakerAPI', '~> 0.107.2'
367
+ gem 'DealMakerAPI', '~> 0.107.3'
368
368
 
369
369
  ### Install from Git
370
370
 
@@ -6,6 +6,7 @@
6
6
  | ---- | ---- | ----------- | ----- |
7
7
  | **token** | **String** | The token for the user. | [optional] |
8
8
  | **reservation_id** | **Integer** | The ID of the reservation. | [optional] |
9
+ | **complete** | **Boolean** | Whether the reservation is complete. | [optional] |
9
10
 
10
11
  ## Example
11
12
 
@@ -14,7 +15,8 @@ require 'DealMakerAPI'
14
15
 
15
16
  instance = DealMakerAPI::V1EntitiesTtwReservationGetResponse.new(
16
17
  token: null,
17
- reservation_id: null
18
+ reservation_id: null,
19
+ complete: null
18
20
  )
19
21
  ```
20
22
 
@@ -22,11 +22,15 @@ module DealMakerAPI
22
22
  # The ID of the reservation.
23
23
  attr_accessor :reservation_id
24
24
 
25
+ # Whether the reservation is complete.
26
+ attr_accessor :complete
27
+
25
28
  # Attribute mapping from ruby-style variable name to JSON key.
26
29
  def self.attribute_map
27
30
  {
28
31
  :'token' => :'token',
29
- :'reservation_id' => :'reservation_id'
32
+ :'reservation_id' => :'reservation_id',
33
+ :'complete' => :'complete'
30
34
  }
31
35
  end
32
36
 
@@ -39,7 +43,8 @@ module DealMakerAPI
39
43
  def self.openapi_types
40
44
  {
41
45
  :'token' => :'String',
42
- :'reservation_id' => :'Integer'
46
+ :'reservation_id' => :'Integer',
47
+ :'complete' => :'Boolean'
43
48
  }
44
49
  end
45
50
 
@@ -71,6 +76,10 @@ module DealMakerAPI
71
76
  if attributes.key?(:'reservation_id')
72
77
  self.reservation_id = attributes[:'reservation_id']
73
78
  end
79
+
80
+ if attributes.key?(:'complete')
81
+ self.complete = attributes[:'complete']
82
+ end
74
83
  end
75
84
 
76
85
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -94,7 +103,8 @@ module DealMakerAPI
94
103
  return true if self.equal?(o)
95
104
  self.class == o.class &&
96
105
  token == o.token &&
97
- reservation_id == o.reservation_id
106
+ reservation_id == o.reservation_id &&
107
+ complete == o.complete
98
108
  end
99
109
 
100
110
  # @see the `==` method
@@ -106,7 +116,7 @@ module DealMakerAPI
106
116
  # Calculates hash code according to all attributes.
107
117
  # @return [Integer] Hash code
108
118
  def hash
109
- [token, reservation_id].hash
119
+ [token, reservation_id, complete].hash
110
120
  end
111
121
 
112
122
  # Builds the object from hash
@@ -11,5 +11,5 @@ Generator version: 7.8.0-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module DealMakerAPI
14
- VERSION = '0.107.2'
14
+ VERSION = '0.107.3'
15
15
  end
@@ -39,4 +39,10 @@ describe DealMakerAPI::V1EntitiesTtwReservationGetResponse do
39
39
  end
40
40
  end
41
41
 
42
+ describe 'test attribute "complete"' do
43
+ it 'should work' do
44
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
+ end
46
+ end
47
+
42
48
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: DealMakerAPI
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.107.2
4
+ version: 0.107.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - DealMaker
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-07-15 00:00:00.000000000 Z
11
+ date: 2024-07-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus