Class: Privy::Models::TransactionStillPendingWebhookPayload
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Privy::Models::TransactionStillPendingWebhookPayload
- Defined in:
- lib/privy/models/transaction_still_pending_webhook_payload.rb
Defined Under Namespace
Modules: Type
Instance Attribute Summary collapse
-
#caip2 ⇒ String
The CAIP-2 chain identifier (e.g., eip155:1 for Ethereum mainnet).
-
#reference_id ⇒ String?
Developer-provided reference ID for transaction reconciliation, if one was provided.
-
#transaction_hash ⇒ String
The blockchain transaction hash.
-
#transaction_id ⇒ String
The Privy-assigned ID for this transaction.
-
#transaction_request ⇒ Privy::Models::UnsignedStandardEthereumTransaction
An unsigned standard Ethereum transaction object.
-
#type ⇒ Symbol, Privy::Models::TransactionStillPendingWebhookPayload::Type
The type of webhook event.
-
#wallet_id ⇒ String
The ID of the wallet that initiated the transaction.
Instance Method Summary collapse
-
#initialize(caip2:, transaction_hash:, transaction_id:, transaction_request:, type:, wallet_id:, reference_id: nil) ⇒ Object
constructor
Some parameter documentations has been truncated, see TransactionStillPendingWebhookPayload for more details.
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(caip2:, transaction_hash:, transaction_id:, transaction_request:, type:, wallet_id:, reference_id: nil) ⇒ Object
Some parameter documentations has been truncated, see Privy::Models::TransactionStillPendingWebhookPayload for more details.
Payload for the transaction.still_pending webhook event.
|
|
# File 'lib/privy/models/transaction_still_pending_webhook_payload.rb', line 50
|
Instance Attribute Details
#caip2 ⇒ String
The CAIP-2 chain identifier (e.g., eip155:1 for Ethereum mainnet).
10 |
# File 'lib/privy/models/transaction_still_pending_webhook_payload.rb', line 10 required :caip2, String |
#reference_id ⇒ String?
Developer-provided reference ID for transaction reconciliation, if one was provided.
48 |
# File 'lib/privy/models/transaction_still_pending_webhook_payload.rb', line 48 optional :reference_id, String, nil?: true |
#transaction_hash ⇒ String
The blockchain transaction hash.
16 |
# File 'lib/privy/models/transaction_still_pending_webhook_payload.rb', line 16 required :transaction_hash, String |
#transaction_id ⇒ String
The Privy-assigned ID for this transaction.
22 |
# File 'lib/privy/models/transaction_still_pending_webhook_payload.rb', line 22 required :transaction_id, String |
#transaction_request ⇒ Privy::Models::UnsignedStandardEthereumTransaction
An unsigned standard Ethereum transaction object. Supports EVM transaction types 0, 1, 2, and 4.
29 |
# File 'lib/privy/models/transaction_still_pending_webhook_payload.rb', line 29 required :transaction_request, -> { Privy::UnsignedStandardEthereumTransaction } |
#type ⇒ Symbol, Privy::Models::TransactionStillPendingWebhookPayload::Type
The type of webhook event.
35 |
# File 'lib/privy/models/transaction_still_pending_webhook_payload.rb', line 35 required :type, enum: -> { Privy::TransactionStillPendingWebhookPayload::Type } |
#wallet_id ⇒ String
The ID of the wallet that initiated the transaction.
41 |
# File 'lib/privy/models/transaction_still_pending_webhook_payload.rb', line 41 required :wallet_id, String |