Class: WhopSDK::Models::PayoutMethodCreatedWebhookEvent::Data
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- WhopSDK::Models::PayoutMethodCreatedWebhookEvent::Data
- Defined in:
- lib/whop_sdk/models/payout_method_created_webhook_event.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::PayoutMethodCreatedWebhookEvent::Data::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::PayoutMethodCreatedWebhookEvent::Data::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_created_webhook_event.rb', line 122
|
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.
72 |
# File 'lib/whop_sdk/models/payout_method_created_webhook_event.rb', line 72 required :account_reference, String, nil?: true |
#company ⇒ WhopSDK::Models::PayoutMethodCreatedWebhookEvent::Data::Company?
The company associated with this payout destination. Null if not linked to a specific company.
79 |
# File 'lib/whop_sdk/models/payout_method_created_webhook_event.rb', line 79 required :company, -> { WhopSDK::PayoutMethodCreatedWebhookEvent::Data::Company }, nil?: true |
#created_at ⇒ Time
The datetime the payout token was created.
85 |
# File 'lib/whop_sdk/models/payout_method_created_webhook_event.rb', line 85 required :created_at, Time |
#currency ⇒ String
The three-letter ISO currency code that payouts are delivered in for this destination.
92 |
# File 'lib/whop_sdk/models/payout_method_created_webhook_event.rb', line 92 required :currency, String |
#destination ⇒ WhopSDK::Models::PayoutMethodCreatedWebhookEvent::Data::Destination?
The payout destination configuration linked to this token. Null if not yet configured.
99 |
# File 'lib/whop_sdk/models/payout_method_created_webhook_event.rb', line 99 required :destination, -> { WhopSDK::PayoutMethodCreatedWebhookEvent::Data::Destination }, nil?: true |
#id ⇒ String
The unique identifier for the payout token.
65 |
# File 'lib/whop_sdk/models/payout_method_created_webhook_event.rb', line 65 required :id, String |
#institution_name ⇒ String?
The name of the bank or financial institution receiving payouts. Null if not applicable or not provided.
106 |
# File 'lib/whop_sdk/models/payout_method_created_webhook_event.rb', line 106 required :institution_name, String, nil?: true |
#is_default ⇒ Boolean
Whether this is the default payout destination for the associated payout account.
113 |
# File 'lib/whop_sdk/models/payout_method_created_webhook_event.rb', line 113 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.
120 |
# File 'lib/whop_sdk/models/payout_method_created_webhook_event.rb', line 120 required :nickname, String, nil?: true |