Class: MethodRuby::Models::Entity::EntityIndividualResource::Connect::EntityConnect::Account::AccountLiabilityResource::Payoff::AccountPayoff
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- MethodRuby::Models::Entity::EntityIndividualResource::Connect::EntityConnect::Account::AccountLiabilityResource::Payoff::AccountPayoff
- Defined in:
- lib/method_ruby/models/entity.rb
Defined Under Namespace
Modules: Status Classes: Error
Instance Attribute Summary collapse
-
#account_id ⇒ String
The account this payoff belongs to.
-
#amount ⇒ Float?
The payoff amount in cents.
-
#created_at ⇒ Time
Timestamp when the payoff was created.
-
#error ⇒ MethodRuby::Models::Entity::EntityIndividualResource::Connect::EntityConnect::Account::AccountLiabilityResource::Payoff::AccountPayoff::Error?
Error details when a payoff sync fails.
-
#id ⇒ String
Unique identifier for the payoff.
-
#per_diem_amount ⇒ Float?
Per diem interest amount in cents.
-
#status ⇒ Symbol, MethodRuby::Models::Entity::EntityIndividualResource::Connect::EntityConnect::Account::AccountLiabilityResource::Payoff::AccountPayoff::Status
Current status of the payoff request.
-
#term ⇒ Float?
Number of days the payoff amount is valid.
-
#updated_at ⇒ Time
Timestamp when the payoff was last updated.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(id:, account_id:, amount:, created_at:, per_diem_amount:, status:, term:, updated_at:, error: nil) ⇒ Object
constructor
A payoff record 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:, amount:, created_at:, per_diem_amount:, status:, term:, updated_at:, error: nil) ⇒ Object
A payoff record for an account.
|
|
# File 'lib/method_ruby/models/entity.rb', line 6811
|
Instance Attribute Details
#account_id ⇒ String
The account this payoff belongs to.
6762 |
# File 'lib/method_ruby/models/entity.rb', line 6762 required :account_id, String |
#amount ⇒ Float?
The payoff amount in cents.
6768 |
# File 'lib/method_ruby/models/entity.rb', line 6768 required :amount, Float, nil?: true |
#created_at ⇒ Time
Timestamp when the payoff was created.
6774 |
# File 'lib/method_ruby/models/entity.rb', line 6774 required :created_at, Time |
#error ⇒ MethodRuby::Models::Entity::EntityIndividualResource::Connect::EntityConnect::Account::AccountLiabilityResource::Payoff::AccountPayoff::Error?
Error details when a payoff sync fails.
6805 6806 6807 6808 6809 |
# File 'lib/method_ruby/models/entity.rb', line 6805 optional :error, -> { MethodRuby::Entity::EntityIndividualResource::Connect::EntityConnect::Account::AccountLiabilityResource::Payoff::AccountPayoff::Error }, nil?: true |
#id ⇒ String
Unique identifier for the payoff.
6756 |
# File 'lib/method_ruby/models/entity.rb', line 6756 required :id, String |
#per_diem_amount ⇒ Float?
Per diem interest amount in cents.
6780 |
# File 'lib/method_ruby/models/entity.rb', line 6780 required :per_diem_amount, Float, nil?: true |
#status ⇒ Symbol, MethodRuby::Models::Entity::EntityIndividualResource::Connect::EntityConnect::Account::AccountLiabilityResource::Payoff::AccountPayoff::Status
Current status of the payoff request.
6786 6787 |
# File 'lib/method_ruby/models/entity.rb', line 6786 required :status, enum: -> { MethodRuby::Entity::EntityIndividualResource::Connect::EntityConnect::Account::AccountLiabilityResource::Payoff::AccountPayoff::Status } |
#term ⇒ Float?
Number of days the payoff amount is valid.
6793 |
# File 'lib/method_ruby/models/entity.rb', line 6793 required :term, Float, nil?: true |
#updated_at ⇒ Time
Timestamp when the payoff was last updated.
6799 |
# File 'lib/method_ruby/models/entity.rb', line 6799 required :updated_at, Time |
Class Method Details
.values ⇒ Array<Symbol>
|
|
# File 'lib/method_ruby/models/entity.rb', line 6842
|