Class: Increase::Models::CardValidation::CreatedBy
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Increase::Models::CardValidation::CreatedBy
- Defined in:
- lib/increase/models/card_validation.rb
Overview
Defined Under Namespace
Modules: Category Classes: APIKey, OAuthApplication, User
Instance Attribute Summary collapse
-
#api_key ⇒ Increase::Models::CardValidation::CreatedBy::APIKey?
If present, details about the API key that created the transfer.
-
#category ⇒ Symbol, Increase::Models::CardValidation::CreatedBy::Category
The type of object that created this transfer.
-
#oauth_application ⇒ Increase::Models::CardValidation::CreatedBy::OAuthApplication?
If present, details about the OAuth Application that created the transfer.
-
#user ⇒ Increase::Models::CardValidation::CreatedBy::User?
If present, details about the User that created the transfer.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(name: ) ⇒ Object
constructor
If present, details about the OAuth Application that created the transfer.
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(name: ) ⇒ Object
If present, details about the OAuth Application that created the transfer.
|
|
# File 'lib/increase/models/card_validation.rb', line 446
|
Instance Attribute Details
#api_key ⇒ Increase::Models::CardValidation::CreatedBy::APIKey?
If present, details about the API key that created the transfer.
426 |
# File 'lib/increase/models/card_validation.rb', line 426 required :api_key, -> { Increase::CardValidation::CreatedBy::APIKey }, nil?: true |
#category ⇒ Symbol, Increase::Models::CardValidation::CreatedBy::Category
The type of object that created this transfer.
432 |
# File 'lib/increase/models/card_validation.rb', line 432 required :category, enum: -> { Increase::CardValidation::CreatedBy::Category } |
#oauth_application ⇒ Increase::Models::CardValidation::CreatedBy::OAuthApplication?
If present, details about the OAuth Application that created the transfer.
438 |
# File 'lib/increase/models/card_validation.rb', line 438 required :oauth_application, -> { Increase::CardValidation::CreatedBy::OAuthApplication }, nil?: true |
#user ⇒ Increase::Models::CardValidation::CreatedBy::User?
If present, details about the User that created the transfer.
444 |
# File 'lib/increase/models/card_validation.rb', line 444 required :user, -> { Increase::CardValidation::CreatedBy::User }, nil?: true |
Class Method Details
.values ⇒ Array<Symbol>
|
|
# File 'lib/increase/models/card_validation.rb', line 486
|