SetOptionsOperation class

Represents SetOptions operation. See: List of Operations

Inheritance

Constructors

SetOptionsOperation(String? inflationDestination, int? clearFlags, int? setFlags, int? masterKeyWeight, int? lowThreshold, int? mediumThreshold, int? highThreshold, String? homeDomain, XdrSignerKey? signer, int? signerWeight)

Properties

clearFlags int?
Indicates which flags to clear. For details about the flags, please refer to the accounts doc.
no setter
hashCode int
The hash code for this object.
no setterinherited
highThreshold int?
A number from 0-255 representing the threshold this account sets on all operations it performs that have a high threshold.
no setter
homeDomain String?
The home domain of an account.
no setter
inflationDestination String?
Account Id of the inflation destination.
no setter
lowThreshold int?
A number from 0-255 representing the threshold this account sets on all operations it performs that have a low threshold.
no setter
masterKeyWeight int?
Weight of the master key.
no setter
mediumThreshold int?
A number from 0-255 representing the threshold this account sets on all operations it performs that have a medium threshold.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
setFlags int?
Indicates which flags to set. For details about the flags, please refer to the accounts doc.
no setter
signer XdrSignerKey?
Additional signer added/removed in this operation.
no setter
signerWeight int?
Additional signer weight. The signer is deleted if the weight is 0.
no setter
sourceAccount MuxedAccount?
getter/setter pairinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toOperationBody() XdrOperationBody
Generates OperationBody XDR object.
override
toString() String
A string representation of this object.
inherited
toXdr() XdrOperation
inherited
toXdrBase64() String
Returns base64-encoded Operation XDR object from this operation.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

builder(XdrSetOptionsOp op) SetOptionsOperationBuilder
Builds SetOptions operation.