Class AllowTrustOperationResponse
Represents AllowTrust operation response. See: https://www.stellar.org/developers/horizon/reference/resources/operation.html stellar_dotnetcore_sdk.requests.OperationsRequestBuilder stellar_dotnetcore_sdk.Server
Inherited Members
Namespace: System.Dynamic.ExpandoObject
Assembly: stellar-dotnet-sdk.dll
Syntax
public class AllowTrustOperationResponse : OperationResponse, IPagingToken
Constructors
AllowTrustOperationResponse()
Declaration
public AllowTrustOperationResponse()
AllowTrustOperationResponse(String, String, String, String, String, Boolean)
Updates the “authorized” flag of an existing trust line this is called by the issuer of the asset.
Declaration
public AllowTrustOperationResponse(string trustor, string trustee, string assetType, string assetCode, string assetIssuer, bool authorize)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | trustor | Trustor account. |
| System.String | trustee | Trustee account. |
| System.String | assetType | Asset type (native / alphanum4 / alphanum12) |
| System.String | assetCode | Asset code. |
| System.String | assetIssuer | Asset issuer. |
| System.Boolean | authorize | true when allowing trust, false when revoking trust |
Properties
Asset
The asset to allow trust.
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
|
Authorize
true when allowing trust, false when revoking trust
Declaration
public bool Authorize { get; }
Property Value
|
System.Boolean
|
Trustee
Trustee account.
Declaration
public string Trustee { get; }
Property Value
|
System.String
|
TrusteeMuxed
Trustee account.
Declaration
public string TrusteeMuxed { get; }
Property Value
|
System.String
|
TrusteeMuxedID
Trustee account.
Declaration
public ulong? TrusteeMuxedID { get; }
Property Value
|
System.Nullable<System.UInt64>
|
Trustor
Trustor account.
Declaration
public string Trustor { get; }
Property Value
|
System.String
|
TypeId
Declaration
public override int TypeId { get; }
Property Value
|
System.Int32
|