Show / Hide Table of Contents

Class PaymentOperationResponse

Sends an amount in a specific asset to a destination account. See: https://www.stellar.org/developers/horizon/reference/resources/operation.html stellar_dotnetcore_sdk.requests.OperationsRequestBuilder stellar_dotnetcore_sdk.Server

Inheritance
System.Object
Response
OperationResponse
PaymentOperationResponse
Inherited Members
OperationResponse.Id
OperationResponse.SourceAccount
OperationResponse.SourceAccountMuxed
OperationResponse.SourceAccountMuxedID
OperationResponse.PagingToken
OperationResponse.Type
OperationResponse.CreatedAt
OperationResponse.TransactionHash
OperationResponse.TransactionSuccessful
OperationResponse.Links
Response.RateLimitLimit
Response.RateLimitRemaining
Response.RateLimitReset
Response.SetHeaders(HttpResponseHeaders)
Namespace: System.Dynamic.ExpandoObject
Assembly: stellar-dotnet-sdk.dll
Syntax
public class PaymentOperationResponse : OperationResponse, IPagingToken

Constructors

PaymentOperationResponse()

Declaration
public PaymentOperationResponse()

PaymentOperationResponse(String, String, String, String, String, String)

Sends an amount in a specific asset to a destination account.

Declaration
public PaymentOperationResponse(string amount, string assetType, string assetCode, string assetIssuer, string from, string to)
Parameters
Type Name Description
System.String amount

Amount of the aforementioned asset to send.

System.String assetType

The asset type (USD, BTC, etc.)

System.String assetCode

The asset code (Alpha4, Alpha12, etc.)

System.String assetIssuer

The account that created the asset

System.String from

Account address that is sending the payment.

System.String to

Account address that receives the payment.

Properties

Amount

Amount of the aforementioned asset to send.

Declaration
public string Amount { get; }
Property Value
System.String

Asset

Account address that receives the payment.

Declaration
public Asset Asset { get; }
Property Value
Asset

AssetCode

The asset code (Alpha4, Alpha12, etc.)

Declaration
public string AssetCode { get; }
Property Value
System.String

AssetIssuer

Declaration
public string AssetIssuer { get; }
Property Value
System.String

AssetType

The asset type (USD, BTC, etc.)

Declaration
public string AssetType { get; }
Property Value
System.String

From

Account address that is sending the payment.

Declaration
public string From { get; }
Property Value
System.String

FromMuxed

Declaration
public string FromMuxed { get; }
Property Value
System.String

FromMuxedID

Declaration
public ulong? FromMuxedID { get; }
Property Value
System.Nullable<System.UInt64>

To

Declaration
public string To { get; }
Property Value
System.String

ToMuxed

Declaration
public string ToMuxed { get; }
Property Value
System.String

ToMuxedID

Declaration
public ulong? ToMuxedID { get; }
Property Value
System.Nullable<System.UInt64>

TypeId

Declaration
public override int TypeId { get; }
Property Value
System.Int32

Overrides
OperationResponse.TypeId
Back to top Generated by DocFX