Class ApplicationStateOperation
Inheritance
ApplicationStateOperation
Assembly: Algorand.dll
Syntax
[MessagePackObject(false)]
public class ApplicationStateOperation
Properties
|
Edit this page
View Source
Account
Declaration
[JsonProperty("account", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
[Key("account")]
public Address Account { get; set; }
Property Value
|
Edit this page
View Source
AppStateType
Declaration
[JsonProperty("app-state-type", Required = Required.Always)]
[Key("app-state-type")]
[Required]
public string AppStateType { get; set; }
Property Value
|
Edit this page
View Source
Key
Declaration
[JsonProperty("key", Required = Required.Always)]
[Key("key")]
[Required]
public byte[] Key { get; set; }
Property Value
|
Edit this page
View Source
NewValue
Declaration
[JsonProperty("new-value", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
[Key("new-value")]
public AvmValue NewValue { get; set; }
Property Value
|
Edit this page
View Source
Operation
Declaration
[JsonProperty("operation", Required = Required.Always)]
[Key("operation")]
[Required]
public string Operation { get; set; }
Property Value