Class: MethodRuby::Models::Accounts::ConsentWithdrawResponse::Data::AccountLiabilityResource::Sensitive::AccountSensitive::Field
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- MethodRuby::Models::Accounts::ConsentWithdrawResponse::Data::AccountLiabilityResource::Sensitive::AccountSensitive::Field
- Defined in:
- lib/method_ruby/models/accounts/consent_withdraw_response.rb
Instance Attribute Summary collapse
-
#name ⇒ String?
Name of the field.
-
#value ⇒ String?
Value of the field.
Instance Method Summary collapse
-
#initialize(id:, account_id:, created_at:, fields:, status:, type:, updated_at:, error: nil) ⇒ Object
constructor
Sensitive data for an account.
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(id:, account_id:, created_at:, fields:, status:, type:, updated_at:, error: nil) ⇒ Object
Sensitive data for an account.
6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 |
# File 'lib/method_ruby/models/accounts/consent_withdraw_response.rb', line 6116 class Field < MethodRuby::Internal::Type::BaseModel # @!attribute name # Name of the field. # # @return [String, nil] optional :name, String # @!attribute value # Value of the field. # # @return [String, nil] optional :value, String # @!method initialize(name: nil, value: nil) # @param name [String] Name of the field. # # @param value [String] Value of the field. end |
Instance Attribute Details
#name ⇒ String?
Name of the field.
6121 |
# File 'lib/method_ruby/models/accounts/consent_withdraw_response.rb', line 6121 optional :name, String |
#value ⇒ String?
Value of the field.
6127 |
# File 'lib/method_ruby/models/accounts/consent_withdraw_response.rb', line 6127 optional :value, String |