Class ApplicationLocalState
Stores local state associated with an application.
Inheritance
ApplicationLocalState
Assembly: Algorand.dll
Syntax
[MessagePackObject(false)]
public class ApplicationLocalState
Properties
|
Edit this page
View Source
Id
Declaration
[JsonProperty("id", Required = Required.Always)]
[Key("id")]
[Required]
public ulong Id { get; set; }
Property Value
|
Edit this page
View Source
KeyValue
Declaration
[JsonProperty("key-value", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
[Key("key-value")]
public ICollection<TealKeyValue> KeyValue { get; set; }
Property Value
|
Edit this page
View Source
Schema
Declaration
[JsonProperty("schema", Required = Required.Always)]
[Key("schema")]
[Required]
public ApplicationStateSchema Schema { get; set; }
Property Value