trinsic_api 3.0.0 → 3.0.2.pre.preview

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.
Files changed (128) hide show
  1. checksums.yaml +4 -4
  2. data/docs/AadhaarClaims.md +46 -0
  3. data/docs/AadhaarLanguage.md +20 -0
  4. data/docs/AadhaarLocalizedClaims.md +40 -0
  5. data/docs/AppleWalletInput.md +3 -1
  6. data/docs/ConnectIdAddress.md +26 -0
  7. data/docs/ConnectIdAgeVerification.md +20 -0
  8. data/docs/ConnectIdBeneficiaryAccount.md +24 -0
  9. data/docs/ConnectIdProviderOutput.md +38 -0
  10. data/docs/CzechMojeIdAddressOutput.md +28 -0
  11. data/docs/CzechMojeIdProviderOutput.md +62 -0
  12. data/docs/DigilockerAadhaarProviderOutput.md +30 -0
  13. data/docs/FaydaProviderOutput.md +7 -1
  14. data/docs/FinnishTrustNetworkProviderOutput.md +38 -0
  15. data/docs/FranceIdentiteInput.md +18 -0
  16. data/docs/FranceIdentiteProviderOutput.md +18 -0
  17. data/docs/FrejaIndirectProviderOutput.md +24 -0
  18. data/docs/FrejaProviderOutput.md +36 -8
  19. data/docs/GetProviderResponse.md +18 -0
  20. data/docs/GoogleWalletInput.md +3 -1
  21. data/docs/KenyaNidLookup2Address.md +26 -0
  22. data/docs/KenyaNidLookup2ProviderOutput.md +38 -0
  23. data/docs/NigeriaNinLookup2ProviderOutput.md +40 -0
  24. data/docs/NorwegianBankIdProviderOutput.md +32 -0
  25. data/docs/OneIdProviderAddress.md +26 -0
  26. data/docs/OneIdProviderOutput.md +28 -0
  27. data/docs/OutputFrejaAddress.md +24 -0
  28. data/docs/OutputFrejaDocument.md +24 -0
  29. data/docs/PhilippinesDigitalNidProviderOutput.md +21 -1
  30. data/docs/PhilippinesPhysicalNidProviderOutput.md +17 -1
  31. data/docs/ProviderInput.md +6 -0
  32. data/docs/ProviderOutput.md +26 -2
  33. data/docs/ProvidersApi.md +70 -0
  34. data/docs/Raw18013DocumentRequest.md +20 -0
  35. data/docs/Raw18013RequestInput.md +18 -0
  36. data/docs/RecommendProvidersResponse.md +3 -1
  37. data/docs/SamsungWalletInput.md +18 -0
  38. data/docs/UkEvisaLookupInput.md +20 -0
  39. data/docs/UnitedKingdomEvisaProviderOutput.md +38 -0
  40. data/docs/VerificationProfileResponse.md +2 -0
  41. data/docs/VerificationProfilesApi.md +4 -0
  42. data/docs/YotiDeeplinkProviderOutput.md +40 -0
  43. data/lib/trinsic_api/api/providers_api.rb +63 -0
  44. data/lib/trinsic_api/api/verification_profiles_api.rb +6 -0
  45. data/lib/trinsic_api/models/aadhaar_claims.rb +376 -0
  46. data/lib/trinsic_api/models/aadhaar_language.rb +250 -0
  47. data/lib/trinsic_api/models/aadhaar_localized_claims.rb +343 -0
  48. data/lib/trinsic_api/models/apple_wallet_input.rb +16 -5
  49. data/lib/trinsic_api/models/connect_id_address.rb +266 -0
  50. data/lib/trinsic_api/models/connect_id_age_verification.rb +233 -0
  51. data/lib/trinsic_api/models/connect_id_beneficiary_account.rb +255 -0
  52. data/lib/trinsic_api/models/connect_id_provider_output.rb +333 -0
  53. data/lib/trinsic_api/models/czech_moje_id_address_output.rb +277 -0
  54. data/lib/trinsic_api/models/czech_moje_id_provider_output.rb +465 -0
  55. data/lib/trinsic_api/models/digilocker_aadhaar_provider_output.rb +305 -0
  56. data/lib/trinsic_api/models/fayda_provider_output.rb +38 -5
  57. data/lib/trinsic_api/models/finnish_trust_network_provider_output.rb +333 -0
  58. data/lib/trinsic_api/models/france_identite_input.rb +222 -0
  59. data/lib/trinsic_api/models/france_identite_provider_output.rb +239 -0
  60. data/lib/trinsic_api/models/freja_indirect_provider_output.rb +320 -0
  61. data/lib/trinsic_api/models/freja_provider_output.rb +185 -91
  62. data/lib/trinsic_api/models/get_provider_response.rb +238 -0
  63. data/lib/trinsic_api/models/google_wallet_input.rb +16 -5
  64. data/lib/trinsic_api/models/integration_step.rb +1 -1
  65. data/lib/trinsic_api/models/kenya_nid_lookup2_address.rb +269 -0
  66. data/lib/trinsic_api/models/kenya_nid_lookup2_provider_output.rb +429 -0
  67. data/lib/trinsic_api/models/nigeria_nin_lookup2_provider_output.rb +392 -0
  68. data/lib/trinsic_api/models/norwegian_bank_id_provider_output.rb +300 -0
  69. data/lib/trinsic_api/models/one_id_provider_address.rb +266 -0
  70. data/lib/trinsic_api/models/one_id_provider_output.rb +278 -0
  71. data/lib/trinsic_api/models/output_freja_address.rb +255 -0
  72. data/lib/trinsic_api/models/output_freja_document.rb +255 -0
  73. data/lib/trinsic_api/models/philippines_digital_nid_provider_output.rb +114 -4
  74. data/lib/trinsic_api/models/philippines_physical_nid_provider_output.rb +92 -4
  75. data/lib/trinsic_api/models/provider_input.rb +34 -1
  76. data/lib/trinsic_api/models/provider_output.rb +138 -6
  77. data/lib/trinsic_api/models/raw18013_document_request.rb +276 -0
  78. data/lib/trinsic_api/models/raw18013_request_input.rb +259 -0
  79. data/lib/trinsic_api/models/recommend_providers_response.rb +33 -4
  80. data/lib/trinsic_api/models/samsung_wallet_input.rb +222 -0
  81. data/lib/trinsic_api/models/uk_evisa_lookup_input.rb +283 -0
  82. data/lib/trinsic_api/models/united_kingdom_evisa_provider_output.rb +333 -0
  83. data/lib/trinsic_api/models/verification_profile_response.rb +28 -1
  84. data/lib/trinsic_api/models/yoti_deeplink_provider_output.rb +344 -0
  85. data/lib/trinsic_api/version.rb +1 -1
  86. data/lib/trinsic_api.rb +29 -0
  87. data/spec/api/providers_api_spec.rb +12 -0
  88. data/spec/api/verification_profiles_api_spec.rb +2 -0
  89. data/spec/models/aadhaar_claims_spec.rb +120 -0
  90. data/spec/models/aadhaar_language_spec.rb +42 -0
  91. data/spec/models/aadhaar_localized_claims_spec.rb +102 -0
  92. data/spec/models/apple_wallet_input_spec.rb +6 -0
  93. data/spec/models/connect_id_address_spec.rb +60 -0
  94. data/spec/models/connect_id_age_verification_spec.rb +42 -0
  95. data/spec/models/connect_id_beneficiary_account_spec.rb +54 -0
  96. data/spec/models/connect_id_provider_output_spec.rb +96 -0
  97. data/spec/models/czech_moje_id_address_output_spec.rb +66 -0
  98. data/spec/models/czech_moje_id_provider_output_spec.rb +168 -0
  99. data/spec/models/digilocker_aadhaar_provider_output_spec.rb +72 -0
  100. data/spec/models/fayda_provider_output_spec.rb +18 -0
  101. data/spec/models/finnish_trust_network_provider_output_spec.rb +96 -0
  102. data/spec/models/france_identite_input_spec.rb +36 -0
  103. data/spec/models/france_identite_provider_output_spec.rb +36 -0
  104. data/spec/models/freja_indirect_provider_output_spec.rb +54 -0
  105. data/spec/models/freja_provider_output_spec.rb +88 -4
  106. data/spec/models/get_provider_response_spec.rb +36 -0
  107. data/spec/models/google_wallet_input_spec.rb +6 -0
  108. data/spec/models/kenya_nid_lookup2_address_spec.rb +60 -0
  109. data/spec/models/kenya_nid_lookup2_provider_output_spec.rb +96 -0
  110. data/spec/models/nigeria_nin_lookup2_provider_output_spec.rb +102 -0
  111. data/spec/models/norwegian_bank_id_provider_output_spec.rb +78 -0
  112. data/spec/models/one_id_provider_address_spec.rb +60 -0
  113. data/spec/models/one_id_provider_output_spec.rb +66 -0
  114. data/spec/models/output_freja_address_spec.rb +54 -0
  115. data/spec/models/output_freja_document_spec.rb +54 -0
  116. data/spec/models/philippines_digital_nid_provider_output_spec.rb +60 -0
  117. data/spec/models/philippines_physical_nid_provider_output_spec.rb +48 -0
  118. data/spec/models/provider_input_spec.rb +18 -0
  119. data/spec/models/provider_output_spec.rb +72 -0
  120. data/spec/models/raw18013_document_request_spec.rb +42 -0
  121. data/spec/models/raw18013_request_input_spec.rb +36 -0
  122. data/spec/models/recommend_providers_response_spec.rb +6 -0
  123. data/spec/models/samsung_wallet_input_spec.rb +36 -0
  124. data/spec/models/uk_evisa_lookup_input_spec.rb +42 -0
  125. data/spec/models/united_kingdom_evisa_provider_output_spec.rb +96 -0
  126. data/spec/models/verification_profile_response_spec.rb +6 -0
  127. data/spec/models/yoti_deeplink_provider_output_spec.rb +102 -0
  128. metadata +236 -120
@@ -19,10 +19,42 @@ module TrinsicApi
19
19
  # The PhilSys Card Number (PCN). Every citizen or resident alien registered in PhilSys has a PhilSys Number (PSN). This number is tokenized into a card number to protect the PSN. The PhilSys Card Number is 12 characters long, and often is written in octets with dashes in between.
20
20
  attr_accessor :philsys_card_number
21
21
 
22
+ # The given (first) name of the individual.
23
+ attr_accessor :given_name
24
+
25
+ # The middle name of the individual.
26
+ attr_accessor :middle_name
27
+
28
+ # The family (last) name of the individual.
29
+ attr_accessor :family_name
30
+
31
+ # The date of birth of the individual.
32
+ attr_accessor :date_of_birth
33
+
34
+ # The name suffix of the individual (e.g. Jr., III).
35
+ attr_accessor :suffix
36
+
37
+ # The sex of the individual. Possible values: - Male - Female
38
+ attr_accessor :sex
39
+
40
+ # The place of birth of the individual as recorded on the PhilSys credential.
41
+ attr_accessor :place_of_birth
42
+
43
+ # The date the document was issued.
44
+ attr_accessor :document_issue_date
45
+
22
46
  # Attribute mapping from ruby-style variable name to JSON key.
23
47
  def self.attribute_map
24
48
  {
25
- :'philsys_card_number' => :'philsysCardNumber'
49
+ :'philsys_card_number' => :'philsysCardNumber',
50
+ :'given_name' => :'givenName',
51
+ :'middle_name' => :'middleName',
52
+ :'family_name' => :'familyName',
53
+ :'date_of_birth' => :'dateOfBirth',
54
+ :'suffix' => :'suffix',
55
+ :'sex' => :'sex',
56
+ :'place_of_birth' => :'placeOfBirth',
57
+ :'document_issue_date' => :'documentIssueDate'
26
58
  }
27
59
  end
28
60
 
@@ -39,13 +71,29 @@ module TrinsicApi
39
71
  # Attribute type mapping.
40
72
  def self.openapi_types
41
73
  {
42
- :'philsys_card_number' => :'String'
74
+ :'philsys_card_number' => :'String',
75
+ :'given_name' => :'String',
76
+ :'middle_name' => :'String',
77
+ :'family_name' => :'String',
78
+ :'date_of_birth' => :'Date',
79
+ :'suffix' => :'String',
80
+ :'sex' => :'String',
81
+ :'place_of_birth' => :'String',
82
+ :'document_issue_date' => :'Date'
43
83
  }
44
84
  end
45
85
 
46
86
  # List of attributes with nullable: true
47
87
  def self.openapi_nullable
48
88
  Set.new([
89
+ :'given_name',
90
+ :'middle_name',
91
+ :'family_name',
92
+ :'date_of_birth',
93
+ :'suffix',
94
+ :'sex',
95
+ :'place_of_birth',
96
+ :'document_issue_date'
49
97
  ])
50
98
  end
51
99
 
@@ -70,6 +118,38 @@ module TrinsicApi
70
118
  else
71
119
  self.philsys_card_number = nil
72
120
  end
121
+
122
+ if attributes.key?(:'given_name')
123
+ self.given_name = attributes[:'given_name']
124
+ end
125
+
126
+ if attributes.key?(:'middle_name')
127
+ self.middle_name = attributes[:'middle_name']
128
+ end
129
+
130
+ if attributes.key?(:'family_name')
131
+ self.family_name = attributes[:'family_name']
132
+ end
133
+
134
+ if attributes.key?(:'date_of_birth')
135
+ self.date_of_birth = attributes[:'date_of_birth']
136
+ end
137
+
138
+ if attributes.key?(:'suffix')
139
+ self.suffix = attributes[:'suffix']
140
+ end
141
+
142
+ if attributes.key?(:'sex')
143
+ self.sex = attributes[:'sex']
144
+ end
145
+
146
+ if attributes.key?(:'place_of_birth')
147
+ self.place_of_birth = attributes[:'place_of_birth']
148
+ end
149
+
150
+ if attributes.key?(:'document_issue_date')
151
+ self.document_issue_date = attributes[:'document_issue_date']
152
+ end
73
153
  end
74
154
 
75
155
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -107,7 +187,15 @@ module TrinsicApi
107
187
  def ==(o)
108
188
  return true if self.equal?(o)
109
189
  self.class == o.class &&
110
- philsys_card_number == o.philsys_card_number
190
+ philsys_card_number == o.philsys_card_number &&
191
+ given_name == o.given_name &&
192
+ middle_name == o.middle_name &&
193
+ family_name == o.family_name &&
194
+ date_of_birth == o.date_of_birth &&
195
+ suffix == o.suffix &&
196
+ sex == o.sex &&
197
+ place_of_birth == o.place_of_birth &&
198
+ document_issue_date == o.document_issue_date
111
199
  end
112
200
 
113
201
  # @see the `==` method
@@ -119,7 +207,7 @@ module TrinsicApi
119
207
  # Calculates hash code according to all attributes.
120
208
  # @return [Integer] Hash code
121
209
  def hash
122
- [philsys_card_number].hash
210
+ [philsys_card_number, given_name, middle_name, family_name, date_of_birth, suffix, sex, place_of_birth, document_issue_date].hash
123
211
  end
124
212
 
125
213
  # Builds the object from hash
@@ -105,9 +105,18 @@ module TrinsicApi
105
105
  # Input for the `apple-wallet` provider
106
106
  attr_accessor :apple_wallet
107
107
 
108
+ # Input for the `samsung-wallet` provider
109
+ attr_accessor :samsung_wallet
110
+
111
+ # Input for the `france-identite` provider
112
+ attr_accessor :france_identite
113
+
108
114
  # Input for the `peru-dni-lookup` provider
109
115
  attr_accessor :peru_dni_lookup
110
116
 
117
+ # Input for the `uk-evisa-lookup` provider
118
+ attr_accessor :uk_evisa_lookup
119
+
111
120
  # *TEST MODE ONLY.* Input for the `trinsic-test-database-lookup` provider
112
121
  attr_accessor :trinsic_test_database_lookup
113
122
 
@@ -147,7 +156,10 @@ module TrinsicApi
147
156
  :'italy_spid' => :'italy-spid',
148
157
  :'google_wallet' => :'google-wallet',
149
158
  :'apple_wallet' => :'apple-wallet',
159
+ :'samsung_wallet' => :'samsung-wallet',
160
+ :'france_identite' => :'france-identite',
150
161
  :'peru_dni_lookup' => :'peru-dni-lookup',
162
+ :'uk_evisa_lookup' => :'uk-evisa-lookup',
151
163
  :'trinsic_test_database_lookup' => :'trinsic-test-database-lookup',
152
164
  :'trinsic_test_sub_providers' => :'trinsic-test-sub-providers'
153
165
  }
@@ -196,7 +208,10 @@ module TrinsicApi
196
208
  :'italy_spid' => :'SpidInput',
197
209
  :'google_wallet' => :'GoogleWalletInput',
198
210
  :'apple_wallet' => :'AppleWalletInput',
211
+ :'samsung_wallet' => :'SamsungWalletInput',
212
+ :'france_identite' => :'FranceIdentiteInput',
199
213
  :'peru_dni_lookup' => :'PeruDniLookupInput',
214
+ :'uk_evisa_lookup' => :'UkEvisaLookupInput',
200
215
  :'trinsic_test_database_lookup' => :'TrinsicTestDatabaseLookupInput',
201
216
  :'trinsic_test_sub_providers' => :'TrinsicTestSubProvidersInput'
202
217
  }
@@ -235,7 +250,10 @@ module TrinsicApi
235
250
  :'italy_spid',
236
251
  :'google_wallet',
237
252
  :'apple_wallet',
253
+ :'samsung_wallet',
254
+ :'france_identite',
238
255
  :'peru_dni_lookup',
256
+ :'uk_evisa_lookup',
239
257
  :'trinsic_test_database_lookup',
240
258
  :'trinsic_test_sub_providers'
241
259
  ])
@@ -377,10 +395,22 @@ module TrinsicApi
377
395
  self.apple_wallet = attributes[:'apple_wallet']
378
396
  end
379
397
 
398
+ if attributes.key?(:'samsung_wallet')
399
+ self.samsung_wallet = attributes[:'samsung_wallet']
400
+ end
401
+
402
+ if attributes.key?(:'france_identite')
403
+ self.france_identite = attributes[:'france_identite']
404
+ end
405
+
380
406
  if attributes.key?(:'peru_dni_lookup')
381
407
  self.peru_dni_lookup = attributes[:'peru_dni_lookup']
382
408
  end
383
409
 
410
+ if attributes.key?(:'uk_evisa_lookup')
411
+ self.uk_evisa_lookup = attributes[:'uk_evisa_lookup']
412
+ end
413
+
384
414
  if attributes.key?(:'trinsic_test_database_lookup')
385
415
  self.trinsic_test_database_lookup = attributes[:'trinsic_test_database_lookup']
386
416
  end
@@ -440,7 +470,10 @@ module TrinsicApi
440
470
  italy_spid == o.italy_spid &&
441
471
  google_wallet == o.google_wallet &&
442
472
  apple_wallet == o.apple_wallet &&
473
+ samsung_wallet == o.samsung_wallet &&
474
+ france_identite == o.france_identite &&
443
475
  peru_dni_lookup == o.peru_dni_lookup &&
476
+ uk_evisa_lookup == o.uk_evisa_lookup &&
444
477
  trinsic_test_database_lookup == o.trinsic_test_database_lookup &&
445
478
  trinsic_test_sub_providers == o.trinsic_test_sub_providers
446
479
  end
@@ -454,7 +487,7 @@ module TrinsicApi
454
487
  # Calculates hash code according to all attributes.
455
488
  # @return [Integer] Hash code
456
489
  def hash
457
- [kenya_nid_match_biometric_2, indonesia_nik_lookup, indonesia_dukcapil_match, mexico_curp_lookup, south_africa_nid_lookup, kenya_nid_lookup, kenya_nid_match_2, kenya_nid_lookup_2, south_africa_nid_lookup_2, south_africa_nid_match_2, south_africa_nid_match_biometric_2, nigeria_nin_lookup_2, cote_divoire_nid_lookup_2, zimbabwe_nid_lookup_2, nigeria_nin_match_2, uganda_nid_match_2, nigeria_nin_match_biometric_2, nigeria_nin_lookup, india_digilocker_aadhaar_match, brazil_cpf_lookup, brazil_digital_cnh, philippines_philsys_match, philippines_physical_national_id_qr, philippines_digital_national_id_qr, smart_id, mobile_id, netherlands_idin, italy_spid, google_wallet, apple_wallet, peru_dni_lookup, trinsic_test_database_lookup, trinsic_test_sub_providers].hash
490
+ [kenya_nid_match_biometric_2, indonesia_nik_lookup, indonesia_dukcapil_match, mexico_curp_lookup, south_africa_nid_lookup, kenya_nid_lookup, kenya_nid_match_2, kenya_nid_lookup_2, south_africa_nid_lookup_2, south_africa_nid_match_2, south_africa_nid_match_biometric_2, nigeria_nin_lookup_2, cote_divoire_nid_lookup_2, zimbabwe_nid_lookup_2, nigeria_nin_match_2, uganda_nid_match_2, nigeria_nin_match_biometric_2, nigeria_nin_lookup, india_digilocker_aadhaar_match, brazil_cpf_lookup, brazil_digital_cnh, philippines_philsys_match, philippines_physical_national_id_qr, philippines_digital_national_id_qr, smart_id, mobile_id, netherlands_idin, italy_spid, google_wallet, apple_wallet, samsung_wallet, france_identite, peru_dni_lookup, uk_evisa_lookup, trinsic_test_database_lookup, trinsic_test_sub_providers].hash
458
491
  end
459
492
 
460
493
  # Builds the object from hash
@@ -51,6 +51,12 @@ module TrinsicApi
51
51
  # Exposed properties for the `a-pl-mojeid-login` Provider which do not directly map to the normalized IdentityData model.
52
52
  attr_accessor :a_pl_mojeid_login
53
53
 
54
+ # Exposed properties for the `australia-connect-id` Provider which do not directly map to the normalized IdentityData model.
55
+ attr_accessor :australia_connect_id
56
+
57
+ # Exposed properties for the `czech-moje-id` Provider which do not directly map to the normalized IdentityData model.
58
+ attr_accessor :czech_republic_mojeid
59
+
54
60
  # Exposed properties for the `a-pt-id-login` Provider which do not directly map to the normalized IdentityData model.
55
61
  attr_accessor :a_pt_id_login
56
62
 
@@ -66,15 +72,30 @@ module TrinsicApi
66
72
  # Exposed properties for the `ethiopia-fayda` Provider which do not directly map to the normalized IdentityData model.
67
73
  attr_accessor :ethiopia_fayda
68
74
 
75
+ # Exposed properties for the `finnish-trust-network` Provider which do not directly map to the normalized IdentityData model.
76
+ attr_accessor :finnish_trust_network
77
+
78
+ # Exposed properties for the `france-identite` Provider which do not directly map to the normalized IdentityData model.
79
+ attr_accessor :france_identite
80
+
69
81
  # Exposed properties for the `france-identite-numerique` Provider which do not directly map to the normalized IdentityData model.
70
82
  attr_accessor :france_identite_numerique
71
83
 
84
+ # Exposed properties for the `freja` Provider which do not directly map to the normalized IdentityData model.
85
+ attr_accessor :freja
86
+
72
87
  # Exposed properties for the `google-wallet` Provider which do not directly map to the normalized IdentityData model.
73
88
  attr_accessor :google_wallet
74
89
 
90
+ # Exposed properties for the `india-digilocker-aadhaar` Provider which do not directly map to the normalized IdentityData model.
91
+ attr_accessor :india_digilocker_aadhaar
92
+
75
93
  # Exposed properties for the `italy-spid` Provider which do not directly map to the normalized IdentityData model.
76
94
  attr_accessor :italy_spid
77
95
 
96
+ # Exposed properties for the `kenya-nid-lookup-2` Provider which do not directly map to the normalized IdentityData model.
97
+ attr_accessor :kenya_nid_lookup_2
98
+
78
99
  # Exposed properties for the `lloyds-smart-id` Provider which do not directly map to the normalized IdentityData model.
79
100
  attr_accessor :lloyds_smart_id
80
101
 
@@ -84,9 +105,18 @@ module TrinsicApi
84
105
  # Exposed properties for the `mobile-id` Provider which do not directly map to the normalized IdentityData model.
85
106
  attr_accessor :mobile_id
86
107
 
108
+ # Exposed properties for the `nigeria-nin-lookup-2` Provider which do not directly map to the normalized IdentityData model.
109
+ attr_accessor :nigeria_nin_lookup_2
110
+
111
+ # Exposed properties for the `oneid` Provider which do not directly map to the normalized IdentityData model.
112
+ attr_accessor :oneid
113
+
87
114
  # Exposed properties for the `peru-dni-lookup` Provider which do not directly map to the normalized IdentityData model.
88
115
  attr_accessor :peru_dni_lookup
89
116
 
117
+ # Exposed properties for the `norway-bankid` Provider which do not directly map to the normalized IdentityData model.
118
+ attr_accessor :norway_bankid
119
+
90
120
  # Exposed properties for the `philippines-digital-national-id-qr` Provider which do not directly map to the normalized IdentityData model.
91
121
  attr_accessor :philippines_digital_national_id_qr
92
122
 
@@ -102,6 +132,9 @@ module TrinsicApi
102
132
  # Exposed properties for the `smart-id` Provider which do not directly map to the normalized IdentityData model.
103
133
  attr_accessor :smart_id
104
134
 
135
+ # Exposed properties for the `uk-evisa-lookup` Provider which do not directly map to the normalized IdentityData model.
136
+ attr_accessor :uk_evisa_lookup
137
+
105
138
  # Exposed properties for the `sweden-bankid` Provider which do not directly map to the normalized IdentityData model.
106
139
  attr_accessor :sweden_bankid
107
140
 
@@ -111,6 +144,9 @@ module TrinsicApi
111
144
  # Exposed properties for the `yoti` Provider which do not directly map to the normalized IdentityData model.
112
145
  attr_accessor :yoti
113
146
 
147
+ # Exposed properties for the `yoti-deeplink` Provider which do not directly map to the normalized IdentityData model.
148
+ attr_accessor :yoti_deeplink
149
+
114
150
  # Attribute mapping from ruby-style variable name to JSON key.
115
151
  def self.attribute_map
116
152
  {
@@ -126,26 +162,38 @@ module TrinsicApi
126
162
  :'a_lv_eparaksts_mobile_login' => :'a-lv-eparaksts-mobile-login',
127
163
  :'a_mojeid' => :'a-mojeid',
128
164
  :'a_pl_mojeid_login' => :'a-pl-mojeid-login',
165
+ :'australia_connect_id' => :'australia-connect-id',
166
+ :'czech_republic_mojeid' => :'czech-republic-mojeid',
129
167
  :'a_pt_id_login' => :'a-pt-id-login',
130
168
  :'a_rs_id_login' => :'a-rs-id-login',
131
169
  :'apple_wallet' => :'apple-wallet',
132
170
  :'denmark_mitid' => :'denmark-mitid',
133
171
  :'ethiopia_fayda' => :'ethiopia-fayda',
172
+ :'finnish_trust_network' => :'finnish-trust-network',
173
+ :'france_identite' => :'france-identite',
134
174
  :'france_identite_numerique' => :'france-identite-numerique',
175
+ :'freja' => :'freja',
135
176
  :'google_wallet' => :'google-wallet',
177
+ :'india_digilocker_aadhaar' => :'india-digilocker-aadhaar',
136
178
  :'italy_spid' => :'italy-spid',
179
+ :'kenya_nid_lookup_2' => :'kenya-nid-lookup-2',
137
180
  :'lloyds_smart_id' => :'lloyds-smart-id',
138
181
  :'mexico_curp_lookup' => :'mexico-curp-lookup',
139
182
  :'mobile_id' => :'mobile-id',
183
+ :'nigeria_nin_lookup_2' => :'nigeria-nin-lookup-2',
184
+ :'oneid' => :'oneid',
140
185
  :'peru_dni_lookup' => :'peru-dni-lookup',
186
+ :'norway_bankid' => :'norway-bankid',
141
187
  :'philippines_digital_national_id_qr' => :'philippines-digital-national-id-qr',
142
188
  :'philippines_physical_national_id_qr' => :'philippines-physical-national-id-qr',
143
189
  :'post_office_easyid' => :'post-office-easyid',
144
190
  :'samsung_wallet' => :'samsung-wallet',
145
191
  :'smart_id' => :'smart-id',
192
+ :'uk_evisa_lookup' => :'uk-evisa-lookup',
146
193
  :'sweden_bankid' => :'sweden-bankid',
147
194
  :'usa_louisiana_wallet' => :'usa-louisiana-wallet',
148
- :'yoti' => :'yoti'
195
+ :'yoti' => :'yoti',
196
+ :'yoti_deeplink' => :'yoti-deeplink'
149
197
  }
150
198
  end
151
199
 
@@ -167,33 +215,45 @@ module TrinsicApi
167
215
  :'a_edoapp_eid_login' => :'PolandEdoAppProviderOutput',
168
216
  :'a_ee_web_eid_login' => :'EstoniaIdCardProviderOutput',
169
217
  :'a_fi_id_login' => :'FinlandIdCardProviderOutput',
170
- :'a_freja_eid_login' => :'FrejaProviderOutput',
218
+ :'a_freja_eid_login' => :'FrejaIndirectProviderOutput',
171
219
  :'a_itsme_login' => :'ItsmeProviderOutput',
172
220
  :'a_lt_id_login' => :'LithuaniaIdCardProviderOutput',
173
221
  :'a_lv_eparaksts_id_login' => :'LatviaEparakstsProviderOutput',
174
222
  :'a_lv_eparaksts_mobile_login' => :'LatviaEparakstsMobileProviderOutput',
175
223
  :'a_mojeid' => :'CzechiaMojeIdProviderOutput',
176
224
  :'a_pl_mojeid_login' => :'PolandMojeIdProviderOutput',
225
+ :'australia_connect_id' => :'ConnectIdProviderOutput',
226
+ :'czech_republic_mojeid' => :'CzechMojeIdProviderOutput',
177
227
  :'a_pt_id_login' => :'PortugalIdCardProviderOutput',
178
228
  :'a_rs_id_login' => :'SerbiaIdCardProviderOutput',
179
229
  :'apple_wallet' => :'AppleWalletProviderOutput',
180
230
  :'denmark_mitid' => :'MitIdProviderOutput',
181
231
  :'ethiopia_fayda' => :'FaydaProviderOutput',
232
+ :'finnish_trust_network' => :'FinnishTrustNetworkProviderOutput',
233
+ :'france_identite' => :'FranceIdentiteProviderOutput',
182
234
  :'france_identite_numerique' => :'FrenchNumeriqueProviderOutput',
235
+ :'freja' => :'FrejaProviderOutput',
183
236
  :'google_wallet' => :'GoogleWalletProviderOutput',
237
+ :'india_digilocker_aadhaar' => :'DigilockerAadhaarProviderOutput',
184
238
  :'italy_spid' => :'SpidProviderOutput',
239
+ :'kenya_nid_lookup_2' => :'KenyaNidLookup2ProviderOutput',
185
240
  :'lloyds_smart_id' => :'LloydsSmartIdProviderOutput',
186
241
  :'mexico_curp_lookup' => :'MexicoCurpProviderOutput',
187
242
  :'mobile_id' => :'MobileIdProviderOutput',
243
+ :'nigeria_nin_lookup_2' => :'NigeriaNinLookup2ProviderOutput',
244
+ :'oneid' => :'OneIdProviderOutput',
188
245
  :'peru_dni_lookup' => :'PeruDniProviderOutput',
246
+ :'norway_bankid' => :'NorwegianBankIdProviderOutput',
189
247
  :'philippines_digital_national_id_qr' => :'PhilippinesDigitalNidProviderOutput',
190
248
  :'philippines_physical_national_id_qr' => :'PhilippinesPhysicalNidProviderOutput',
191
249
  :'post_office_easyid' => :'PostOfficeEasyIdProviderOutput',
192
250
  :'samsung_wallet' => :'SamsungWalletProviderOutput',
193
251
  :'smart_id' => :'SmartIdProviderOutput',
252
+ :'uk_evisa_lookup' => :'UnitedKingdomEvisaProviderOutput',
194
253
  :'sweden_bankid' => :'SwedenBankIdProviderOutput',
195
254
  :'usa_louisiana_wallet' => :'LaWalletProviderOutput',
196
- :'yoti' => :'YotiProviderOutput'
255
+ :'yoti' => :'YotiProviderOutput',
256
+ :'yoti_deeplink' => :'YotiDeeplinkProviderOutput'
197
257
  }
198
258
  end
199
259
 
@@ -212,26 +272,38 @@ module TrinsicApi
212
272
  :'a_lv_eparaksts_mobile_login',
213
273
  :'a_mojeid',
214
274
  :'a_pl_mojeid_login',
275
+ :'australia_connect_id',
276
+ :'czech_republic_mojeid',
215
277
  :'a_pt_id_login',
216
278
  :'a_rs_id_login',
217
279
  :'apple_wallet',
218
280
  :'denmark_mitid',
219
281
  :'ethiopia_fayda',
282
+ :'finnish_trust_network',
283
+ :'france_identite',
220
284
  :'france_identite_numerique',
285
+ :'freja',
221
286
  :'google_wallet',
287
+ :'india_digilocker_aadhaar',
222
288
  :'italy_spid',
289
+ :'kenya_nid_lookup_2',
223
290
  :'lloyds_smart_id',
224
291
  :'mexico_curp_lookup',
225
292
  :'mobile_id',
293
+ :'nigeria_nin_lookup_2',
294
+ :'oneid',
226
295
  :'peru_dni_lookup',
296
+ :'norway_bankid',
227
297
  :'philippines_digital_national_id_qr',
228
298
  :'philippines_physical_national_id_qr',
229
299
  :'post_office_easyid',
230
300
  :'samsung_wallet',
231
301
  :'smart_id',
302
+ :'uk_evisa_lookup',
232
303
  :'sweden_bankid',
233
304
  :'usa_louisiana_wallet',
234
- :'yoti'
305
+ :'yoti',
306
+ :'yoti_deeplink'
235
307
  ])
236
308
  end
237
309
 
@@ -299,6 +371,14 @@ module TrinsicApi
299
371
  self.a_pl_mojeid_login = attributes[:'a_pl_mojeid_login']
300
372
  end
301
373
 
374
+ if attributes.key?(:'australia_connect_id')
375
+ self.australia_connect_id = attributes[:'australia_connect_id']
376
+ end
377
+
378
+ if attributes.key?(:'czech_republic_mojeid')
379
+ self.czech_republic_mojeid = attributes[:'czech_republic_mojeid']
380
+ end
381
+
302
382
  if attributes.key?(:'a_pt_id_login')
303
383
  self.a_pt_id_login = attributes[:'a_pt_id_login']
304
384
  end
@@ -319,18 +399,38 @@ module TrinsicApi
319
399
  self.ethiopia_fayda = attributes[:'ethiopia_fayda']
320
400
  end
321
401
 
402
+ if attributes.key?(:'finnish_trust_network')
403
+ self.finnish_trust_network = attributes[:'finnish_trust_network']
404
+ end
405
+
406
+ if attributes.key?(:'france_identite')
407
+ self.france_identite = attributes[:'france_identite']
408
+ end
409
+
322
410
  if attributes.key?(:'france_identite_numerique')
323
411
  self.france_identite_numerique = attributes[:'france_identite_numerique']
324
412
  end
325
413
 
414
+ if attributes.key?(:'freja')
415
+ self.freja = attributes[:'freja']
416
+ end
417
+
326
418
  if attributes.key?(:'google_wallet')
327
419
  self.google_wallet = attributes[:'google_wallet']
328
420
  end
329
421
 
422
+ if attributes.key?(:'india_digilocker_aadhaar')
423
+ self.india_digilocker_aadhaar = attributes[:'india_digilocker_aadhaar']
424
+ end
425
+
330
426
  if attributes.key?(:'italy_spid')
331
427
  self.italy_spid = attributes[:'italy_spid']
332
428
  end
333
429
 
430
+ if attributes.key?(:'kenya_nid_lookup_2')
431
+ self.kenya_nid_lookup_2 = attributes[:'kenya_nid_lookup_2']
432
+ end
433
+
334
434
  if attributes.key?(:'lloyds_smart_id')
335
435
  self.lloyds_smart_id = attributes[:'lloyds_smart_id']
336
436
  end
@@ -343,10 +443,22 @@ module TrinsicApi
343
443
  self.mobile_id = attributes[:'mobile_id']
344
444
  end
345
445
 
446
+ if attributes.key?(:'nigeria_nin_lookup_2')
447
+ self.nigeria_nin_lookup_2 = attributes[:'nigeria_nin_lookup_2']
448
+ end
449
+
450
+ if attributes.key?(:'oneid')
451
+ self.oneid = attributes[:'oneid']
452
+ end
453
+
346
454
  if attributes.key?(:'peru_dni_lookup')
347
455
  self.peru_dni_lookup = attributes[:'peru_dni_lookup']
348
456
  end
349
457
 
458
+ if attributes.key?(:'norway_bankid')
459
+ self.norway_bankid = attributes[:'norway_bankid']
460
+ end
461
+
350
462
  if attributes.key?(:'philippines_digital_national_id_qr')
351
463
  self.philippines_digital_national_id_qr = attributes[:'philippines_digital_national_id_qr']
352
464
  end
@@ -367,6 +479,10 @@ module TrinsicApi
367
479
  self.smart_id = attributes[:'smart_id']
368
480
  end
369
481
 
482
+ if attributes.key?(:'uk_evisa_lookup')
483
+ self.uk_evisa_lookup = attributes[:'uk_evisa_lookup']
484
+ end
485
+
370
486
  if attributes.key?(:'sweden_bankid')
371
487
  self.sweden_bankid = attributes[:'sweden_bankid']
372
488
  end
@@ -378,6 +494,10 @@ module TrinsicApi
378
494
  if attributes.key?(:'yoti')
379
495
  self.yoti = attributes[:'yoti']
380
496
  end
497
+
498
+ if attributes.key?(:'yoti_deeplink')
499
+ self.yoti_deeplink = attributes[:'yoti_deeplink']
500
+ end
381
501
  end
382
502
 
383
503
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -412,26 +532,38 @@ module TrinsicApi
412
532
  a_lv_eparaksts_mobile_login == o.a_lv_eparaksts_mobile_login &&
413
533
  a_mojeid == o.a_mojeid &&
414
534
  a_pl_mojeid_login == o.a_pl_mojeid_login &&
535
+ australia_connect_id == o.australia_connect_id &&
536
+ czech_republic_mojeid == o.czech_republic_mojeid &&
415
537
  a_pt_id_login == o.a_pt_id_login &&
416
538
  a_rs_id_login == o.a_rs_id_login &&
417
539
  apple_wallet == o.apple_wallet &&
418
540
  denmark_mitid == o.denmark_mitid &&
419
541
  ethiopia_fayda == o.ethiopia_fayda &&
542
+ finnish_trust_network == o.finnish_trust_network &&
543
+ france_identite == o.france_identite &&
420
544
  france_identite_numerique == o.france_identite_numerique &&
545
+ freja == o.freja &&
421
546
  google_wallet == o.google_wallet &&
547
+ india_digilocker_aadhaar == o.india_digilocker_aadhaar &&
422
548
  italy_spid == o.italy_spid &&
549
+ kenya_nid_lookup_2 == o.kenya_nid_lookup_2 &&
423
550
  lloyds_smart_id == o.lloyds_smart_id &&
424
551
  mexico_curp_lookup == o.mexico_curp_lookup &&
425
552
  mobile_id == o.mobile_id &&
553
+ nigeria_nin_lookup_2 == o.nigeria_nin_lookup_2 &&
554
+ oneid == o.oneid &&
426
555
  peru_dni_lookup == o.peru_dni_lookup &&
556
+ norway_bankid == o.norway_bankid &&
427
557
  philippines_digital_national_id_qr == o.philippines_digital_national_id_qr &&
428
558
  philippines_physical_national_id_qr == o.philippines_physical_national_id_qr &&
429
559
  post_office_easyid == o.post_office_easyid &&
430
560
  samsung_wallet == o.samsung_wallet &&
431
561
  smart_id == o.smart_id &&
562
+ uk_evisa_lookup == o.uk_evisa_lookup &&
432
563
  sweden_bankid == o.sweden_bankid &&
433
564
  usa_louisiana_wallet == o.usa_louisiana_wallet &&
434
- yoti == o.yoti
565
+ yoti == o.yoti &&
566
+ yoti_deeplink == o.yoti_deeplink
435
567
  end
436
568
 
437
569
  # @see the `==` method
@@ -443,7 +575,7 @@ module TrinsicApi
443
575
  # Calculates hash code according to all attributes.
444
576
  # @return [Integer] Hash code
445
577
  def hash
446
- [a_at_handy_signatur_login, a_be_id_login, a_edoapp_eid_login, a_ee_web_eid_login, a_fi_id_login, a_freja_eid_login, a_itsme_login, a_lt_id_login, a_lv_eparaksts_id_login, a_lv_eparaksts_mobile_login, a_mojeid, a_pl_mojeid_login, a_pt_id_login, a_rs_id_login, apple_wallet, denmark_mitid, ethiopia_fayda, france_identite_numerique, google_wallet, italy_spid, lloyds_smart_id, mexico_curp_lookup, mobile_id, peru_dni_lookup, philippines_digital_national_id_qr, philippines_physical_national_id_qr, post_office_easyid, samsung_wallet, smart_id, sweden_bankid, usa_louisiana_wallet, yoti].hash
578
+ [a_at_handy_signatur_login, a_be_id_login, a_edoapp_eid_login, a_ee_web_eid_login, a_fi_id_login, a_freja_eid_login, a_itsme_login, a_lt_id_login, a_lv_eparaksts_id_login, a_lv_eparaksts_mobile_login, a_mojeid, a_pl_mojeid_login, australia_connect_id, czech_republic_mojeid, a_pt_id_login, a_rs_id_login, apple_wallet, denmark_mitid, ethiopia_fayda, finnish_trust_network, france_identite, france_identite_numerique, freja, google_wallet, india_digilocker_aadhaar, italy_spid, kenya_nid_lookup_2, lloyds_smart_id, mexico_curp_lookup, mobile_id, nigeria_nin_lookup_2, oneid, peru_dni_lookup, norway_bankid, philippines_digital_national_id_qr, philippines_physical_national_id_qr, post_office_easyid, samsung_wallet, smart_id, uk_evisa_lookup, sweden_bankid, usa_louisiana_wallet, yoti, yoti_deeplink].hash
447
579
  end
448
580
 
449
581
  # Builds the object from hash