Show / Hide Table of Contents

Class SetTrustlineFlagsOperationResponse

Represents SetTrustlineFlags operation response. See: https://www.stellar.org/developers/horizon/reference/resources/operation.html stellar_dotnetcore_sdk.requests.ClawbackOperationResponse stellar_dotnetcore_sdk.Server

Inheritance
System.Object
Response
OperationResponse
SetTrustlineFlagsOperationResponse
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 SetTrustlineFlagsOperationResponse : OperationResponse, IPagingToken

Constructors

SetTrustlineFlagsOperationResponse()

Declaration
public SetTrustlineFlagsOperationResponse()

SetTrustlineFlagsOperationResponse(String, String, String, String, String[], String[])

Declaration
public SetTrustlineFlagsOperationResponse(string assetType, string assetCode, string assetIssuer, string trustor, string[] setFlags, string[] clearFlags)
Parameters
Type Name Description
System.String assetType

Asset type (native / alphanum4 / alphanum12)

System.String assetCode

Asset code.

System.String assetIssuer

Asset issuer.

System.String trustor
System.String[] setFlags
System.String[] clearFlags

Properties

Asset

Asset representation (Using the values of the other fields)

Declaration
public AssetTypeCreditAlphaNum Asset { get; }
Property Value
AssetTypeCreditAlphaNum

AssetCode

Asset code.

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

AssetIssuer

Asset issuer.

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

AssetType

Asset type (native / alphanum4 / alphanum12)

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

ClearFlags

Indicates which flags to clear. For details about the flags, please refer to the accounts doc. The bit mask integer adds onto the existing flags of the account. This allows for setting specific bits without knowledge of existing flags.

Declaration
public string[] ClearFlags { get; }
Property Value
System.String[]

SetFlags

Indicates which flags to set. For details about the flags, please refer to the accounts doc. The bit mask integer adds onto the existing flags of the account. This allows for setting specific bits without knowledge of existing flags.

Declaration
public string[] SetFlags { get; }
Property Value
System.String[]

Trustor

Trustor account.

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

TypeId

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

Overrides
OperationResponse.TypeId
Back to top Generated by DocFX