late-sdk 0.0.959 → 0.0.960

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7c36aecfa4d211f3f26f5c61d8ea13974516afb1d6f95dac5afb0f80a6b9f7e8
4
- data.tar.gz: 6d905bf0ecc74efcab36c94f1b8a7b8c74554c21b3619acd6e1ad2a4948d4097
3
+ metadata.gz: 6fa0660ea2190376f84f611b976ae8041849ea40f2a26121fbcee6f546ea157b
4
+ data.tar.gz: ac84a3d7341e7e5d9f85016f5bf850bcd6fc6920308ea6d3b90bdf85c73c8f22
5
5
  SHA512:
6
- metadata.gz: 858ea02cdb583e193986cda9a5b956aacafb4a4e0b5266e09bb20ee12ed108badd2120594e1db5d80e4245616b32cd421f8144d74a7f0075ba6af2bb0dfbae62
7
- data.tar.gz: bd440a25d8e6e10df6df288fc0d860b75e546e35d45810b8c97b6aeae0496e5611189dbeca9df5f90d2a43ae266a36eace22dc8ea89df09a83e5f485707e777b
6
+ metadata.gz: cd0600c171e2cce7c39d8964c0306c60771ff11e37614854b68e8c1017f1d05a5aaabb07c1226a59d72690e9a54a44c85bab58f82c21c8c52de663007c93398d
7
+ data.tar.gz: 4778504ba6a5e4251146dfb9d99d27b216af2b0f67e29a205d483890beaaa011dac4ff93b07e9f565278158b2bf73232d09a8b49963bc7d02b9968b49b6b459e
@@ -8,6 +8,7 @@
8
8
  | **filename** | **String** | | [optional] |
9
9
  | **base64** | **String** | Base64-encoded file bytes (or supply documentId instead). | [optional] |
10
10
  | **document_id** | **String** | Id of a document already uploaded out-of-band. | [optional] |
11
+ | **issued_at** | **Date** | Date printed on the document (YYYY-MM-DD), for slots the regulator windows such as proof of address. The pre-submit review trusts it over its own read of the PDF. | [optional] |
11
12
 
12
13
  ## Example
13
14
 
@@ -18,7 +19,8 @@ instance = Zernio::RespondToPhoneNumberReviewerRequestDocumentsInner.new(
18
19
  requirement_id: null,
19
20
  filename: null,
20
21
  base64: null,
21
- document_id: null
22
+ document_id: null,
23
+ issued_at: null
22
24
  )
23
25
  ```
24
26
 
@@ -6,6 +6,7 @@
6
6
  | ---- | ---- | ----------- | ----- |
7
7
  | **requirement_id** | **String** | | |
8
8
  | **document_id** | **String** | Id from POST /v1/phone-numbers/kyc/upload-document. | |
9
+ | **issued_at** | **Date** | Date printed on the document (YYYY-MM-DD), for slots the regulator windows such as proof of address. The pre-submit review trusts it over its own read of the PDF. | [optional] |
9
10
 
10
11
  ## Example
11
12
 
@@ -14,7 +15,8 @@ require 'zernio-sdk'
14
15
 
15
16
  instance = Zernio::SubmitPhoneNumberKycRequestDocumentsInnerOneOf1.new(
16
17
  requirement_id: null,
17
- document_id: null
18
+ document_id: null,
19
+ issued_at: null
18
20
  )
19
21
  ```
20
22
 
@@ -25,13 +25,17 @@ module Zernio
25
25
  # Id of a document already uploaded out-of-band.
26
26
  attr_accessor :document_id
27
27
 
28
+ # Date printed on the document (YYYY-MM-DD), for slots the regulator windows such as proof of address. The pre-submit review trusts it over its own read of the PDF.
29
+ attr_accessor :issued_at
30
+
28
31
  # Attribute mapping from ruby-style variable name to JSON key.
29
32
  def self.attribute_map
30
33
  {
31
34
  :'requirement_id' => :'requirementId',
32
35
  :'filename' => :'filename',
33
36
  :'base64' => :'base64',
34
- :'document_id' => :'documentId'
37
+ :'document_id' => :'documentId',
38
+ :'issued_at' => :'issuedAt'
35
39
  }
36
40
  end
37
41
 
@@ -51,7 +55,8 @@ module Zernio
51
55
  :'requirement_id' => :'String',
52
56
  :'filename' => :'String',
53
57
  :'base64' => :'String',
54
- :'document_id' => :'String'
58
+ :'document_id' => :'String',
59
+ :'issued_at' => :'Date'
55
60
  }
56
61
  end
57
62
 
@@ -94,6 +99,10 @@ module Zernio
94
99
  if attributes.key?(:'document_id')
95
100
  self.document_id = attributes[:'document_id']
96
101
  end
102
+
103
+ if attributes.key?(:'issued_at')
104
+ self.issued_at = attributes[:'issued_at']
105
+ end
97
106
  end
98
107
 
99
108
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -134,7 +143,8 @@ module Zernio
134
143
  requirement_id == o.requirement_id &&
135
144
  filename == o.filename &&
136
145
  base64 == o.base64 &&
137
- document_id == o.document_id
146
+ document_id == o.document_id &&
147
+ issued_at == o.issued_at
138
148
  end
139
149
 
140
150
  # @see the `==` method
@@ -146,7 +156,7 @@ module Zernio
146
156
  # Calculates hash code according to all attributes.
147
157
  # @return [Integer] Hash code
148
158
  def hash
149
- [requirement_id, filename, base64, document_id].hash
159
+ [requirement_id, filename, base64, document_id, issued_at].hash
150
160
  end
151
161
 
152
162
  # Builds the object from hash
@@ -20,11 +20,15 @@ module Zernio
20
20
  # Id from POST /v1/phone-numbers/kyc/upload-document.
21
21
  attr_accessor :document_id
22
22
 
23
+ # Date printed on the document (YYYY-MM-DD), for slots the regulator windows such as proof of address. The pre-submit review trusts it over its own read of the PDF.
24
+ attr_accessor :issued_at
25
+
23
26
  # Attribute mapping from ruby-style variable name to JSON key.
24
27
  def self.attribute_map
25
28
  {
26
29
  :'requirement_id' => :'requirementId',
27
- :'document_id' => :'documentId'
30
+ :'document_id' => :'documentId',
31
+ :'issued_at' => :'issuedAt'
28
32
  }
29
33
  end
30
34
 
@@ -42,7 +46,8 @@ module Zernio
42
46
  def self.openapi_types
43
47
  {
44
48
  :'requirement_id' => :'String',
45
- :'document_id' => :'String'
49
+ :'document_id' => :'String',
50
+ :'issued_at' => :'Date'
46
51
  }
47
52
  end
48
53
 
@@ -79,6 +84,10 @@ module Zernio
79
84
  else
80
85
  self.document_id = nil
81
86
  end
87
+
88
+ if attributes.key?(:'issued_at')
89
+ self.issued_at = attributes[:'issued_at']
90
+ end
82
91
  end
83
92
 
84
93
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -132,7 +141,8 @@ module Zernio
132
141
  return true if self.equal?(o)
133
142
  self.class == o.class &&
134
143
  requirement_id == o.requirement_id &&
135
- document_id == o.document_id
144
+ document_id == o.document_id &&
145
+ issued_at == o.issued_at
136
146
  end
137
147
 
138
148
  # @see the `==` method
@@ -144,7 +154,7 @@ module Zernio
144
154
  # Calculates hash code according to all attributes.
145
155
  # @return [Integer] Hash code
146
156
  def hash
147
- [requirement_id, document_id].hash
157
+ [requirement_id, document_id, issued_at].hash
148
158
  end
149
159
 
150
160
  # Builds the object from hash
@@ -11,5 +11,5 @@ Generator version: 7.19.0
11
11
  =end
12
12
 
13
13
  module Zernio
14
- VERSION = '0.0.959'
14
+ VERSION = '0.0.960'
15
15
  end
data/openapi.yaml CHANGED
@@ -37922,6 +37922,7 @@ paths:
37922
37922
  properties:
37923
37923
  requirementId: { type: string }
37924
37924
  documentId: { type: string, description: Id from POST /v1/phone-numbers/kyc/upload-document. }
37925
+ issuedAt: { type: string, format: date, description: 'Date printed on the document (YYYY-MM-DD), for slots the regulator windows such as proof of address. The pre-submit review trusts it over its own read of the PDF.' }
37925
37926
  address:
37926
37927
  type: object
37927
37928
  properties:
@@ -38551,6 +38552,7 @@ paths:
38551
38552
  properties:
38552
38553
  requirementId: { type: string }
38553
38554
  documentId: { type: string, description: Id from POST /v1/phone-numbers/kyc/upload-document. }
38555
+ issuedAt: { type: string, format: date, description: 'Date printed on the document (YYYY-MM-DD), for slots the regulator windows such as proof of address. The pre-submit review trusts it over its own read of the PDF.' }
38554
38556
  responses:
38555
38557
  '200':
38556
38558
  description: Advisories (empty when the packet looks fine or the review was unavailable).
@@ -38736,6 +38738,7 @@ paths:
38736
38738
  filename: { type: string }
38737
38739
  base64: { type: string, description: Base64-encoded file bytes (or supply documentId instead). }
38738
38740
  documentId: { type: string, description: Id of a document already uploaded out-of-band. }
38741
+ issuedAt: { type: string, format: date, description: 'Date printed on the document (YYYY-MM-DD), for slots the regulator windows such as proof of address. The pre-submit review trusts it over its own read of the PDF.' }
38739
38742
  address:
38740
38743
  type: object
38741
38744
  description: A corrected address record, keyed to its requirement.
@@ -51,4 +51,10 @@ describe Zernio::RespondToPhoneNumberReviewerRequestDocumentsInner do
51
51
  end
52
52
  end
53
53
 
54
+ describe 'test attribute "issued_at"' do
55
+ it 'should work' do
56
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
57
+ end
58
+ end
59
+
54
60
  end
@@ -39,4 +39,10 @@ describe Zernio::SubmitPhoneNumberKycRequestDocumentsInnerOneOf1 do
39
39
  end
40
40
  end
41
41
 
42
+ describe 'test attribute "issued_at"' 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
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: late-sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.959
4
+ version: 0.0.960
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
@@ -6487,7 +6487,7 @@ files:
6487
6487
  - spec/models/you_tube_video_retention_response_retention_curve_inner_spec.rb
6488
6488
  - spec/models/you_tube_video_retention_response_spec.rb
6489
6489
  - spec/spec_helper.rb
6490
- - zernio-sdk-0.0.959.gem
6490
+ - zernio-sdk-0.0.960.gem
6491
6491
  - zernio-sdk.gemspec
6492
6492
  homepage: https://openapi-generator.tech
6493
6493
  licenses:
Binary file