Class: WhopSDK::Models::PayoutMethodListResponse
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- WhopSDK::Models::PayoutMethodListResponse
- Defined in:
- lib/whop_sdk/models/payout_method_list_response.rb
Overview
Defined Under Namespace
Classes: Company, Destination
Instance Attribute Summary collapse
-
#account_reference ⇒ String?
A masked identifier for the payout destination, such as the last four digits of a bank account or an email address.
-
#company ⇒ WhopSDK::Models::PayoutMethodListResponse::Company?
The company associated with this payout destination.
-
#created_at ⇒ Time
The datetime the payout token was created.
-
#currency ⇒ String
The three-letter ISO currency code that payouts are delivered in for this destination.
-
#destination ⇒ WhopSDK::Models::PayoutMethodListResponse::Destination?
The payout destination configuration linked to this token.
-
#id ⇒ String
The unique identifier for the payout token.
-
#institution_name ⇒ String?
The name of the bank or financial institution receiving payouts.
-
#is_default ⇒ Boolean
Whether this is the default payout destination for the associated payout account.
-
#nickname ⇒ String?
A user-defined label to help identify this payout destination.
Instance Method Summary collapse
-
#initialize(id:) ⇒ Object
constructor
The company associated with this payout destination.
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:) ⇒ Object
The company associated with this payout destination. Null if not linked to a specific company.
|
|
# File 'lib/whop_sdk/models/payout_method_list_response.rb', line 68
|
Instance Attribute Details
#account_reference ⇒ String?
A masked identifier for the payout destination, such as the last four digits of a bank account or an email address. Null if no reference is available.
18 |
# File 'lib/whop_sdk/models/payout_method_list_response.rb', line 18 required :account_reference, String, nil?: true |
#company ⇒ WhopSDK::Models::PayoutMethodListResponse::Company?
The company associated with this payout destination. Null if not linked to a specific company.
25 |
# File 'lib/whop_sdk/models/payout_method_list_response.rb', line 25 required :company, -> { WhopSDK::Models::PayoutMethodListResponse::Company }, nil?: true |
#created_at ⇒ Time
The datetime the payout token was created.
31 |
# File 'lib/whop_sdk/models/payout_method_list_response.rb', line 31 required :created_at, Time |
#currency ⇒ String
The three-letter ISO currency code that payouts are delivered in for this destination.
38 |
# File 'lib/whop_sdk/models/payout_method_list_response.rb', line 38 required :currency, String |
#destination ⇒ WhopSDK::Models::PayoutMethodListResponse::Destination?
The payout destination configuration linked to this token. Null if not yet configured.
45 |
# File 'lib/whop_sdk/models/payout_method_list_response.rb', line 45 required :destination, -> { WhopSDK::Models::PayoutMethodListResponse::Destination }, nil?: true |
#id ⇒ String
The unique identifier for the payout token.
11 |
# File 'lib/whop_sdk/models/payout_method_list_response.rb', line 11 required :id, String |
#institution_name ⇒ String?
The name of the bank or financial institution receiving payouts. Null if not applicable or not provided.
52 |
# File 'lib/whop_sdk/models/payout_method_list_response.rb', line 52 required :institution_name, String, nil?: true |
#is_default ⇒ Boolean
Whether this is the default payout destination for the associated payout account.
59 |
# File 'lib/whop_sdk/models/payout_method_list_response.rb', line 59 required :is_default, WhopSDK::Internal::Type::Boolean |
#nickname ⇒ String?
A user-defined label to help identify this payout destination. Not sent to the provider. Null if no nickname has been set.
66 |
# File 'lib/whop_sdk/models/payout_method_list_response.rb', line 66 required :nickname, String, nil?: true |