Flow.Net
Show / Hide Table of Contents

Class AccountPublicKey

Inheritance
Object
AccountPublicKey
Namespace: Flow.Net.Sdk.Client.Http
Assembly: Flow.Net.Sdk.Client.Http.dll
Syntax
public class AccountPublicKey

Properties

| Improve this Doc View Source

AdditionalProperties

Declaration
[JsonExtensionData]
public IDictionary<string, object> AdditionalProperties { get; set; }
Property Value
Type Description
IDictionary<String, Object>
| Improve this Doc View Source

Hashing_algorithm

Declaration
[JsonProperty("hashing_algorithm", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
[JsonConverter(typeof(StringEnumConverter))]
public HashingAlgorithm Hashing_algorithm { get; set; }
Property Value
Type Description
HashingAlgorithm
| Improve this Doc View Source

Index

Index of the public key.

Declaration
[JsonProperty("index", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string Index { get; set; }
Property Value
Type Description
String
| Improve this Doc View Source

Public_key

Hex encoded public key.

Declaration
[JsonProperty("public_key", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string Public_key { get; set; }
Property Value
Type Description
String
| Improve this Doc View Source

Revoked

Flag indicating whether the key is active or not.

Declaration
[JsonProperty("revoked", Required = Required.Always)]
public bool Revoked { get; set; }
Property Value
Type Description
Boolean
| Improve this Doc View Source

Sequence_number

Current account sequence number.

Declaration
[JsonProperty("sequence_number", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string Sequence_number { get; set; }
Property Value
Type Description
String
| Improve this Doc View Source

Signing_algorithm

Declaration
[JsonProperty("signing_algorithm", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
[JsonConverter(typeof(StringEnumConverter))]
public SigningAlgorithm Signing_algorithm { get; set; }
Property Value
Type Description
SigningAlgorithm
| Improve this Doc View Source

Weight

Weight of the key.

Declaration
[JsonProperty("weight", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string Weight { get; set; }
Property Value
Type Description
String
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX