Show / Hide Table of Contents

Class OperationResponseLinks

The response is for the genesis ledger of the Stellar network, and the links in the _links attribute provide links to other relavant resources in Horizon. The key of each link specifies that links relation to the current resource, and transactions means “Transactions that occurred in this operation”.

The transactions link is also templated, which means that the href attribute of the link is actually a URI template, as specified by RFC 6570. We use URI templates to show you what parameters a give resource can take.

Inheritance
System.Object
OperationResponseLinks
Namespace: System.Dynamic.ExpandoObject
Assembly: stellar-dotnet-sdk.dll
Syntax
public class OperationResponseLinks : object

Constructors

OperationResponseLinks()

Declaration
public OperationResponseLinks()

OperationResponseLinks(Link<Page<EffectResponse>>, Link<OperationResponse>, Link<OperationResponse>, Link<OperationResponse>, Link<TransactionResponse>)

Creates an OperationsResponseLinks object type.

Declaration
public OperationResponseLinks(Link<Page<EffectResponse>> effects, Link<OperationResponse> precedes, Link<OperationResponse> self, Link<OperationResponse> succeeds, Link<TransactionResponse> transaction)
Parameters
Type Name Description
Link<Page<EffectResponse>> effects

This endpoint represents effects that occurred as a result of a given operation.

Link<OperationResponse> precedes

This endpoint represents precedes that occurred as a result of a given operation.

Link<OperationResponse> self

This endpoint represents self that occurred as a result of a given operation.

Link<OperationResponse> succeeds

This endpoint represents succeeds that occurred as a result of a given operation.

Link<TransactionResponse> transaction

This endpoint represents transaction that occurred as a result of a given operation.

Properties

Effects

This endpoint represents effects that occurred as a result of a given operation.

Declaration
public Link<Page<EffectResponse>> Effects { get; }
Property Value
Link<Page<EffectResponse>>

Precedes

This endpoint represents precedes that occurred as a result of a given operation.

Declaration
public Link<OperationResponse> Precedes { get; }
Property Value
Link<OperationResponse>

Self

This endpoint represents self that occurred as a result of a given operation.

Declaration
public Link<OperationResponse> Self { get; }
Property Value
Link<OperationResponse>

Succeeds

This endpoint represents succeeds that occurred as a result of a given operation.

Declaration
public Link<OperationResponse> Succeeds { get; }
Property Value
Link<OperationResponse>

Transaction

This endpoint represents transaction that occurred as a result of a given operation.

Declaration
public Link<TransactionResponse> Transaction { get; }
Property Value
Link<TransactionResponse>

Back to top Generated by DocFX