Class: Privy::Models::LinkedAccountAuthorizationKey
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Privy::Models::LinkedAccountAuthorizationKey
- Defined in:
- lib/privy/models/linked_account_authorization_key.rb
Defined Under Namespace
Modules: Type
Instance Attribute Summary collapse
- #first_verified_at ⇒ Float?
- #latest_verified_at ⇒ Float?
- #public_key ⇒ String
- #type ⇒ Symbol, Privy::Models::LinkedAccountAuthorizationKey::Type
- #verified_at ⇒ Float
Instance Method Summary collapse
-
#initialize(first_verified_at:, latest_verified_at:, public_key:, type:, verified_at:) ⇒ Object
constructor
An authorization key linked to the user.
Methods inherited from Internal::Type::BaseModel
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(first_verified_at:, latest_verified_at:, public_key:, type:, verified_at:) ⇒ Object
An authorization key linked to the user.
|
|
# File 'lib/privy/models/linked_account_authorization_key.rb', line 31
|
Instance Attribute Details
#first_verified_at ⇒ Float?
9 |
# File 'lib/privy/models/linked_account_authorization_key.rb', line 9 required :first_verified_at, Float, nil?: true |
#latest_verified_at ⇒ Float?
14 |
# File 'lib/privy/models/linked_account_authorization_key.rb', line 14 required :latest_verified_at, Float, nil?: true |
#public_key ⇒ String
19 |
# File 'lib/privy/models/linked_account_authorization_key.rb', line 19 required :public_key, String |
#type ⇒ Symbol, Privy::Models::LinkedAccountAuthorizationKey::Type
24 |
# File 'lib/privy/models/linked_account_authorization_key.rb', line 24 required :type, enum: -> { Privy::LinkedAccountAuthorizationKey::Type } |
#verified_at ⇒ Float
29 |
# File 'lib/privy/models/linked_account_authorization_key.rb', line 29 required :verified_at, Float |