Class StorageKey
Describes a single key in app storage.
Inherited Members
Namespace: AVM.ClientGenerator.ABI.ARC56
Assembly: Algorand.dll
Syntax
public class StorageKey
Properties
| Edit this page View SourceDescription
Description of what this storage key holds.
Declaration
[JsonProperty("desc")]
public string? Description { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Key
The bytes of the key encoded as base64.
Declaration
[JsonProperty("key")]
public string Key { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
KeyType
The type of the key.
Declaration
[JsonProperty("keyType")]
public string KeyType { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
ValueType
The type of the value.
Declaration
[JsonProperty("valueType")]
public string ValueType { get; set; }
Property Value
| Type | Description |
|---|---|
| string |