OperationLinksResponse
public struct OperationLinksResponse : Decodable, Sendable
Navigation links for operation-related resources.
Provides hypermedia links to resources associated with an operation, including effects, the containing transaction, and chronologically adjacent operations.
See also:
- Stellar developer docs
- OperationResponse for complete operation details
- LinkResponse for individual link structure
-
Templated link to effects produced by this operation. Supports cursor, order, and limit.
Declaration
Swift
public let effects: LinkResponse -
Link to this operation resource (self reference).
Declaration
Swift
public let selfLink: LinkResponse -
Link to the transaction containing this operation.
Declaration
Swift
public let transaction: LinkResponse -
Templated link to operations that occurred chronologically after this one.
Declaration
Swift
public let precedes: LinkResponse -
Templated link to operations 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