TransactionLinksResponse
public struct TransactionLinksResponse : Decodable, Sendable
Navigation links for transaction-related resources.
Provides hypermedia links to resources associated with a transaction, including the source account, containing ledger, operations, effects, and chronologically adjacent transactions.
See also:
- Stellar developer docs
- TransactionResponse for complete transaction details
- LinkResponse for individual link structure
-
Link to this transaction resource (self reference).
Declaration
Swift
public let selfLink: LinkResponse -
Link to the account that submitted this transaction.
Declaration
Swift
public let account: LinkResponse -
Link to the ledger in which this transaction was included.
Declaration
Swift
public let ledger: LinkResponse -
Templated link to operations contained in this transaction. Supports cursor, order, and limit.
Declaration
Swift
public let operations: LinkResponse -
Templated link to effects produced by operations in this transaction. Supports cursor, order, and limit.
Declaration
Swift
public let effects: LinkResponse -
Templated link to transactions that occurred chronologically after this one.
Declaration
Swift
public let precedes: LinkResponse -
Templated link to transactions that occurred chronologically before this one.
Declaration
Swift
public let succeeds: LinkResponse -
Initializer - creates a new instance by decoding from the given decoder.
Declaration
Swift
public init(from decoder: Decoder) throwsParameters
decoderThe decoder containing the data
View on GitHub
Install in Dash