Class TealKeyValue
Represents a key-value pair in an application store.
Assembly: Algorand.dll
Syntax
[MessagePackObject(false)]
public class TealKeyValue
Properties
|
Edit this page
View Source
Key
Declaration
[JsonProperty("key", Required = Required.Always)]
[Key("key")]
[Required]
public string Key { get; set; }
Property Value
|
Edit this page
View Source
Value
Declaration
[JsonProperty("value", Required = Required.Always)]
[Key("value")]
[Required]
public TealValue Value { get; set; }
Property Value