trinsic_api 2.0.2 → 2.1.0.pre.alpha1
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 +4 -4
- data/docs/AttachmentsApi.md +2 -2
- data/docs/BangladeshNidInput.md +26 -0
- data/docs/BrazilDigitalCnhInput.md +1 -1
- data/docs/ContractField.md +20 -0
- data/docs/CreateAdvancedProviderSessionRequest.md +3 -3
- data/docs/CreateHostedProviderSessionRequest.md +1 -1
- data/docs/FieldAvailability.md +15 -0
- data/docs/HttpValidationProblemDetails.md +5 -5
- data/docs/NetworkApi.md +14 -9
- data/docs/ProblemDetails.md +5 -5
- data/docs/ProviderContract.md +6 -2
- data/docs/ProviderInfo.md +9 -1
- data/docs/ProviderInformation.md +16 -4
- data/docs/ProviderInput.md +13 -13
- data/docs/RecommendRequest.md +3 -1
- data/docs/RecommendResponse.md +3 -3
- data/docs/RefreshStepContentRequest.md +1 -1
- data/docs/Session.md +1 -1
- data/docs/SessionsApi.md +13 -13
- data/docs/SmartIdInput.md +3 -1
- data/docs/SubProviderMetadata.md +4 -2
- data/lib/trinsic_api/api/attachments_api.rb +3 -3
- data/lib/trinsic_api/api/network_api.rb +8 -5
- data/lib/trinsic_api/api/sessions_api.rb +11 -11
- data/lib/trinsic_api/models/bangladesh_nid_input.rb +350 -0
- data/lib/trinsic_api/models/brazil_digital_cnh_input.rb +1 -1
- data/lib/trinsic_api/models/{bangladesh_national_id_input.rb → contract_field.rb} +69 -36
- data/lib/trinsic_api/models/create_advanced_provider_session_request.rb +16 -16
- data/lib/trinsic_api/models/create_hosted_provider_session_request.rb +1 -1
- data/lib/trinsic_api/models/document_type.rb +2 -1
- data/lib/trinsic_api/models/field_availability.rb +41 -0
- data/lib/trinsic_api/models/http_validation_problem_details.rb +5 -0
- data/lib/trinsic_api/models/integration_capability.rb +2 -1
- data/lib/trinsic_api/models/problem_details.rb +5 -0
- data/lib/trinsic_api/models/provider_contract.rb +42 -2
- data/lib/trinsic_api/models/provider_info.rb +98 -4
- data/lib/trinsic_api/models/provider_information.rb +155 -4
- data/lib/trinsic_api/models/provider_input.rb +13 -13
- data/lib/trinsic_api/models/recommend_request.rb +16 -5
- data/lib/trinsic_api/models/recommend_response.rb +3 -3
- data/lib/trinsic_api/models/refresh_step_content_request.rb +26 -1
- data/lib/trinsic_api/models/session.rb +1 -1
- data/lib/trinsic_api/models/smart_id_input.rb +16 -5
- data/lib/trinsic_api/models/sub_provider_metadata.rb +29 -2
- data/lib/trinsic_api/version.rb +1 -1
- data/lib/trinsic_api.rb +3 -2
- data/spec/api/attachments_api_spec.rb +1 -1
- data/spec/api/network_api_spec.rb +2 -1
- data/spec/api/sessions_api_spec.rb +1 -1
- data/spec/models/{bangladesh_national_id_input_spec.rb → bangladesh_nid_input_spec.rb} +13 -7
- data/spec/models/contract_field_spec.rb +42 -0
- data/spec/models/create_advanced_provider_session_request_spec.rb +4 -4
- data/spec/models/field_availability_spec.rb +30 -0
- data/spec/models/provider_contract_spec.rb +12 -0
- data/spec/models/provider_info_spec.rb +24 -0
- data/spec/models/provider_information_spec.rb +36 -0
- data/spec/models/recommend_request_spec.rb +6 -0
- data/spec/models/smart_id_input_spec.rb +6 -0
- data/spec/models/sub_provider_metadata_spec.rb +6 -0
- metadata +67 -63
- data/docs/BangladeshNationalIdInput.md +0 -24
- data/docs/WellKnownApi.md +0 -71
- data/lib/trinsic_api/api/well_known_api.rb +0 -75
- data/spec/api/well_known_api_spec.rb +0 -44
@@ -18,10 +18,14 @@ module TrinsicApi
|
|
18
18
|
# The user's Smart ID Document Number
|
19
19
|
attr_accessor :smart_id_document_number
|
20
20
|
|
21
|
+
# The user's Smart ID ETSI number or document number.
|
22
|
+
attr_accessor :smart_id_number
|
23
|
+
|
21
24
|
# Attribute mapping from ruby-style variable name to JSON key.
|
22
25
|
def self.attribute_map
|
23
26
|
{
|
24
|
-
:'smart_id_document_number' => :'smartIdDocumentNumber'
|
27
|
+
:'smart_id_document_number' => :'smartIdDocumentNumber',
|
28
|
+
:'smart_id_number' => :'smartIdNumber'
|
25
29
|
}
|
26
30
|
end
|
27
31
|
|
@@ -38,14 +42,16 @@ module TrinsicApi
|
|
38
42
|
# Attribute type mapping.
|
39
43
|
def self.openapi_types
|
40
44
|
{
|
41
|
-
:'smart_id_document_number' => :'String'
|
45
|
+
:'smart_id_document_number' => :'String',
|
46
|
+
:'smart_id_number' => :'String'
|
42
47
|
}
|
43
48
|
end
|
44
49
|
|
45
50
|
# List of attributes with nullable: true
|
46
51
|
def self.openapi_nullable
|
47
52
|
Set.new([
|
48
|
-
:'smart_id_document_number'
|
53
|
+
:'smart_id_document_number',
|
54
|
+
:'smart_id_number'
|
49
55
|
])
|
50
56
|
end
|
51
57
|
|
@@ -68,6 +74,10 @@ module TrinsicApi
|
|
68
74
|
if attributes.key?(:'smart_id_document_number')
|
69
75
|
self.smart_id_document_number = attributes[:'smart_id_document_number']
|
70
76
|
end
|
77
|
+
|
78
|
+
if attributes.key?(:'smart_id_number')
|
79
|
+
self.smart_id_number = attributes[:'smart_id_number']
|
80
|
+
end
|
71
81
|
end
|
72
82
|
|
73
83
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -90,7 +100,8 @@ module TrinsicApi
|
|
90
100
|
def ==(o)
|
91
101
|
return true if self.equal?(o)
|
92
102
|
self.class == o.class &&
|
93
|
-
smart_id_document_number == o.smart_id_document_number
|
103
|
+
smart_id_document_number == o.smart_id_document_number &&
|
104
|
+
smart_id_number == o.smart_id_number
|
94
105
|
end
|
95
106
|
|
96
107
|
# @see the `==` method
|
@@ -102,7 +113,7 @@ module TrinsicApi
|
|
102
113
|
# Calculates hash code according to all attributes.
|
103
114
|
# @return [Integer] Hash code
|
104
115
|
def hash
|
105
|
-
[smart_id_document_number].hash
|
116
|
+
[smart_id_document_number, smart_id_number].hash
|
106
117
|
end
|
107
118
|
|
108
119
|
# Builds the object from hash
|
@@ -22,7 +22,10 @@ module TrinsicApi
|
|
22
22
|
# The name of the sub-provider
|
23
23
|
attr_accessor :name
|
24
24
|
|
25
|
-
#
|
25
|
+
# The Provider's subtext recommended to be shown next to the name. This is flavor text, not a full, human-readable description of the provider.
|
26
|
+
attr_accessor :subtext
|
27
|
+
|
28
|
+
# The Provider's subtext recommended to be shown next to the name. This is flavor text, not a full, human-readable description of the provider.
|
26
29
|
attr_accessor :description
|
27
30
|
|
28
31
|
# A URL pointing to the logo on Trinsic's CDN. May be a PNG, JPG, or SVG image.
|
@@ -33,6 +36,7 @@ module TrinsicApi
|
|
33
36
|
{
|
34
37
|
:'id' => :'id',
|
35
38
|
:'name' => :'name',
|
39
|
+
:'subtext' => :'subtext',
|
36
40
|
:'description' => :'description',
|
37
41
|
:'logo_url' => :'logoUrl'
|
38
42
|
}
|
@@ -53,6 +57,7 @@ module TrinsicApi
|
|
53
57
|
{
|
54
58
|
:'id' => :'String',
|
55
59
|
:'name' => :'String',
|
60
|
+
:'subtext' => :'String',
|
56
61
|
:'description' => :'String',
|
57
62
|
:'logo_url' => :'String'
|
58
63
|
}
|
@@ -92,6 +97,12 @@ module TrinsicApi
|
|
92
97
|
self.name = nil
|
93
98
|
end
|
94
99
|
|
100
|
+
if attributes.key?(:'subtext')
|
101
|
+
self.subtext = attributes[:'subtext']
|
102
|
+
else
|
103
|
+
self.subtext = nil
|
104
|
+
end
|
105
|
+
|
95
106
|
if attributes.key?(:'description')
|
96
107
|
self.description = attributes[:'description']
|
97
108
|
else
|
@@ -118,6 +129,10 @@ module TrinsicApi
|
|
118
129
|
invalid_properties.push('invalid value for "name", name cannot be nil.')
|
119
130
|
end
|
120
131
|
|
132
|
+
if @subtext.nil?
|
133
|
+
invalid_properties.push('invalid value for "subtext", subtext cannot be nil.')
|
134
|
+
end
|
135
|
+
|
121
136
|
if @description.nil?
|
122
137
|
invalid_properties.push('invalid value for "description", description cannot be nil.')
|
123
138
|
end
|
@@ -135,6 +150,7 @@ module TrinsicApi
|
|
135
150
|
warn '[DEPRECATED] the `valid?` method is obsolete'
|
136
151
|
return false if @id.nil?
|
137
152
|
return false if @name.nil?
|
153
|
+
return false if @subtext.nil?
|
138
154
|
return false if @description.nil?
|
139
155
|
return false if @logo_url.nil?
|
140
156
|
true
|
@@ -160,6 +176,16 @@ module TrinsicApi
|
|
160
176
|
@name = name
|
161
177
|
end
|
162
178
|
|
179
|
+
# Custom attribute writer method with validation
|
180
|
+
# @param [Object] subtext Value to be assigned
|
181
|
+
def subtext=(subtext)
|
182
|
+
if subtext.nil?
|
183
|
+
fail ArgumentError, 'subtext cannot be nil'
|
184
|
+
end
|
185
|
+
|
186
|
+
@subtext = subtext
|
187
|
+
end
|
188
|
+
|
163
189
|
# Custom attribute writer method with validation
|
164
190
|
# @param [Object] description Value to be assigned
|
165
191
|
def description=(description)
|
@@ -187,6 +213,7 @@ module TrinsicApi
|
|
187
213
|
self.class == o.class &&
|
188
214
|
id == o.id &&
|
189
215
|
name == o.name &&
|
216
|
+
subtext == o.subtext &&
|
190
217
|
description == o.description &&
|
191
218
|
logo_url == o.logo_url
|
192
219
|
end
|
@@ -200,7 +227,7 @@ module TrinsicApi
|
|
200
227
|
# Calculates hash code according to all attributes.
|
201
228
|
# @return [Integer] Hash code
|
202
229
|
def hash
|
203
|
-
[id, name, description, logo_url].hash
|
230
|
+
[id, name, subtext, description, logo_url].hash
|
204
231
|
end
|
205
232
|
|
206
233
|
# Builds the object from hash
|
data/lib/trinsic_api/version.rb
CHANGED
data/lib/trinsic_api.rb
CHANGED
@@ -20,10 +20,11 @@ require 'trinsic_api/configuration'
|
|
20
20
|
require 'trinsic_api/models/aadhaar_input'
|
21
21
|
require 'trinsic_api/models/address'
|
22
22
|
require 'trinsic_api/models/attachment_access_keys'
|
23
|
-
require 'trinsic_api/models/
|
23
|
+
require 'trinsic_api/models/bangladesh_nid_input'
|
24
24
|
require 'trinsic_api/models/brazil_cpf_check_input'
|
25
25
|
require 'trinsic_api/models/brazil_digital_cnh_input'
|
26
26
|
require 'trinsic_api/models/cancel_session_response'
|
27
|
+
require 'trinsic_api/models/contract_field'
|
27
28
|
require 'trinsic_api/models/create_advanced_provider_session_request'
|
28
29
|
require 'trinsic_api/models/create_advanced_provider_session_response'
|
29
30
|
require 'trinsic_api/models/create_hosted_provider_session_request'
|
@@ -33,6 +34,7 @@ require 'trinsic_api/models/create_widget_session_response'
|
|
33
34
|
require 'trinsic_api/models/document_data'
|
34
35
|
require 'trinsic_api/models/document_scan_attachments'
|
35
36
|
require 'trinsic_api/models/document_type'
|
37
|
+
require 'trinsic_api/models/field_availability'
|
36
38
|
require 'trinsic_api/models/get_attachment_request'
|
37
39
|
require 'trinsic_api/models/get_attachment_response'
|
38
40
|
require 'trinsic_api/models/get_session_response'
|
@@ -87,7 +89,6 @@ require 'trinsic_api/models/trinsic_test_sub_providers_input'
|
|
87
89
|
require 'trinsic_api/api/attachments_api'
|
88
90
|
require 'trinsic_api/api/network_api'
|
89
91
|
require 'trinsic_api/api/sessions_api'
|
90
|
-
require 'trinsic_api/api/well_known_api'
|
91
92
|
|
92
93
|
module TrinsicApi
|
93
94
|
class << self
|
@@ -34,7 +34,7 @@ describe 'AttachmentsApi' do
|
|
34
34
|
|
35
35
|
# unit tests for get_attachment
|
36
36
|
# Get Attachment
|
37
|
-
# Exchange an Attachment Access Key (from `IdentityData.
|
37
|
+
# Exchange an Attachment Access Key (from `IdentityData.AttachmentAccessKeys`) for the raw contents of the attachment. Use this API to fetch document (front, back, portrait) or other (selfie) images from a verification, if relevant. In some cases, attachments may not be immediately available after a verification is completed. If so, this endpoint will return an HTTP 503 code, and you should try again later.
|
38
38
|
# @param [Hash] opts the optional parameters
|
39
39
|
# @option opts [GetAttachmentRequest] :get_attachment_request
|
40
40
|
# @return [GetAttachmentResponse]
|
@@ -47,6 +47,7 @@ describe 'NetworkApi' do
|
|
47
47
|
# List Providers
|
48
48
|
# List all identity providers available for use
|
49
49
|
# @param [Hash] opts the optional parameters
|
50
|
+
# @option opts [String] :health Filter providers by health status. Valid values: \"online\", \"offline\", \"all\". Defaults to \"all\".
|
50
51
|
# @return [ListProvidersResponse]
|
51
52
|
describe 'list_providers test' do
|
52
53
|
it 'should work' do
|
@@ -56,7 +57,7 @@ describe 'NetworkApi' do
|
|
56
57
|
|
57
58
|
# unit tests for recommend_providers
|
58
59
|
# Recommend Providers
|
59
|
-
# Generate provider recommendations based on the
|
60
|
+
# Generate provider recommendations based on signals about the user's location (phone number, countries, states).
|
60
61
|
# @param [Hash] opts the optional parameters
|
61
62
|
# @option opts [RecommendRequest] :recommend_request
|
62
63
|
# @return [RecommendResponse]
|
@@ -121,7 +121,7 @@ describe 'SessionsApi' do
|
|
121
121
|
|
122
122
|
# unit tests for redact_session
|
123
123
|
# Redact Session
|
124
|
-
# Redact a Session, removing all identity data from Trinsic's servers. Every application has a redaction period that dictates how long we will hold on to your users' PII data. Once a session falls outside the redaction cutoff date, all PII will automatically be removed from that session. You can utilize this endpoint to redact a session immediately.
|
124
|
+
# Redact a Session, removing all identity data from Trinsic's servers. Every application has a redaction period that dictates how long we will hold on to your users' PII data. Once a session falls outside the redaction cutoff date, all PII will automatically be removed from that session. You can utilize this endpoint to redact a session immediately.
|
125
125
|
# @param session_id
|
126
126
|
# @param [Hash] opts the optional parameters
|
127
127
|
# @return [nil]
|
@@ -14,16 +14,16 @@ require 'spec_helper'
|
|
14
14
|
require 'json'
|
15
15
|
require 'date'
|
16
16
|
|
17
|
-
# Unit tests for TrinsicApi::
|
17
|
+
# Unit tests for TrinsicApi::BangladeshNidInput
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
19
|
# Please update as you see appropriate
|
20
|
-
describe TrinsicApi::
|
21
|
-
let(:instance) { TrinsicApi::
|
20
|
+
describe TrinsicApi::BangladeshNidInput do
|
21
|
+
let(:instance) { TrinsicApi::BangladeshNidInput.new }
|
22
22
|
|
23
|
-
describe 'test an instance of
|
24
|
-
it 'should create an instance of
|
23
|
+
describe 'test an instance of BangladeshNidInput' do
|
24
|
+
it 'should create an instance of BangladeshNidInput' do
|
25
25
|
# uncomment below to test the instance creation
|
26
|
-
#expect(instance).to be_instance_of(TrinsicApi::
|
26
|
+
#expect(instance).to be_instance_of(TrinsicApi::BangladeshNidInput)
|
27
27
|
end
|
28
28
|
end
|
29
29
|
|
@@ -45,7 +45,13 @@ describe TrinsicApi::BangladeshNationalIdInput do
|
|
45
45
|
end
|
46
46
|
end
|
47
47
|
|
48
|
-
describe 'test attribute "
|
48
|
+
describe 'test attribute "photo_byes"' do
|
49
|
+
it 'should work' do
|
50
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
describe 'test attribute "photo_image_mime_type"' do
|
49
55
|
it 'should work' do
|
50
56
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
51
57
|
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
=begin
|
2
|
+
#Trinsic API
|
3
|
+
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
|
+
|
6
|
+
The version of the OpenAPI document: v1
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
Generator version: 7.13.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for TrinsicApi::ContractField
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe TrinsicApi::ContractField do
|
21
|
+
let(:instance) { TrinsicApi::ContractField.new }
|
22
|
+
|
23
|
+
describe 'test an instance of ContractField' do
|
24
|
+
it 'should create an instance of ContractField' do
|
25
|
+
# uncomment below to test the instance creation
|
26
|
+
#expect(instance).to be_instance_of(TrinsicApi::ContractField)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test attribute "name"' do
|
31
|
+
it 'should work' do
|
32
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
describe 'test attribute "outputted"' do
|
37
|
+
it 'should work' do
|
38
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
end
|
@@ -33,25 +33,25 @@ describe TrinsicApi::CreateAdvancedProviderSessionRequest do
|
|
33
33
|
end
|
34
34
|
end
|
35
35
|
|
36
|
-
describe 'test attribute "
|
36
|
+
describe 'test attribute "redirect_url"' do
|
37
37
|
it 'should work' do
|
38
38
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
39
39
|
end
|
40
40
|
end
|
41
41
|
|
42
|
-
describe 'test attribute "
|
42
|
+
describe 'test attribute "capabilities"' do
|
43
43
|
it 'should work' do
|
44
44
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
45
45
|
end
|
46
46
|
end
|
47
47
|
|
48
|
-
describe 'test attribute "
|
48
|
+
describe 'test attribute "fallback_to_hosted_ui"' do
|
49
49
|
it 'should work' do
|
50
50
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
51
51
|
end
|
52
52
|
end
|
53
53
|
|
54
|
-
describe 'test attribute "
|
54
|
+
describe 'test attribute "provider_input"' do
|
55
55
|
it 'should work' do
|
56
56
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
57
57
|
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
=begin
|
2
|
+
#Trinsic API
|
3
|
+
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
|
+
|
6
|
+
The version of the OpenAPI document: v1
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
Generator version: 7.13.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for TrinsicApi::FieldAvailability
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe TrinsicApi::FieldAvailability do
|
21
|
+
let(:instance) { TrinsicApi::FieldAvailability.new }
|
22
|
+
|
23
|
+
describe 'test an instance of FieldAvailability' do
|
24
|
+
it 'should create an instance of FieldAvailability' do
|
25
|
+
# uncomment below to test the instance creation
|
26
|
+
#expect(instance).to be_instance_of(TrinsicApi::FieldAvailability)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
end
|
@@ -39,6 +39,12 @@ describe TrinsicApi::ProviderContract do
|
|
39
39
|
end
|
40
40
|
end
|
41
41
|
|
42
|
+
describe 'test attribute "subtext"' 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
|
describe 'test attribute "description"' do
|
43
49
|
it 'should work' do
|
44
50
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
@@ -111,6 +117,12 @@ describe TrinsicApi::ProviderContract do
|
|
111
117
|
end
|
112
118
|
end
|
113
119
|
|
120
|
+
describe 'test attribute "available_fields"' do
|
121
|
+
it 'should work' do
|
122
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
123
|
+
end
|
124
|
+
end
|
125
|
+
|
114
126
|
describe 'test attribute "sub_providers"' do
|
115
127
|
it 'should work' do
|
116
128
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
@@ -45,4 +45,28 @@ describe TrinsicApi::ProviderInfo do
|
|
45
45
|
end
|
46
46
|
end
|
47
47
|
|
48
|
+
describe 'test attribute "subtext"' do
|
49
|
+
it 'should work' do
|
50
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
describe 'test attribute "description"' 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
|
+
|
60
|
+
describe 'test attribute "health"' do
|
61
|
+
it 'should work' do
|
62
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
describe 'test attribute "sub_providers"' do
|
67
|
+
it 'should work' do
|
68
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
48
72
|
end
|
@@ -27,6 +27,30 @@ describe TrinsicApi::ProviderInformation do
|
|
27
27
|
end
|
28
28
|
end
|
29
29
|
|
30
|
+
describe 'test attribute "id"' do
|
31
|
+
it 'should work' do
|
32
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
describe 'test attribute "name"' do
|
37
|
+
it 'should work' do
|
38
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
describe 'test attribute "logo_url"' 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
|
+
|
48
|
+
describe 'test attribute "subtext"' do
|
49
|
+
it 'should work' do
|
50
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
30
54
|
describe 'test attribute "provider_id"' do
|
31
55
|
it 'should work' do
|
32
56
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
@@ -45,4 +69,16 @@ describe TrinsicApi::ProviderInformation do
|
|
45
69
|
end
|
46
70
|
end
|
47
71
|
|
72
|
+
describe 'test attribute "health"' do
|
73
|
+
it 'should work' do
|
74
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
78
|
+
describe 'test attribute "sub_providers"' do
|
79
|
+
it 'should work' do
|
80
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
48
84
|
end
|
@@ -39,6 +39,12 @@ describe TrinsicApi::SubProviderMetadata do
|
|
39
39
|
end
|
40
40
|
end
|
41
41
|
|
42
|
+
describe 'test attribute "subtext"' 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
|
describe 'test attribute "description"' do
|
43
49
|
it 'should work' do
|
44
50
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|