Skip to main content

DynamicFieldOutput

Namespace: IotaSdk

The output of a dynamic field query, that includes the name, value, and value's json representation.

public record class DynamicFieldOutput : System.IDisposable, System.IEquatable`1[[IotaSdk.DynamicFieldOutput, IotaSdk, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]

Inheritance ObjectDynamicFieldOutput
Implements IDisposable, IEquatable<DynamicFieldOutput>
Attributes NullableContextAttribute, NullableAttribute

Properties

Name

The name of the dynamic field

public DynamicFieldName Name { get; init; }

Property Value

DynamicFieldName

Value

The dynamic field value typename and bcs

public DynamicFieldValue? Value { get; init; }

Property Value

DynamicFieldValue

ValueAsJson

The json representation of the dynamic field value object

public string? ValueAsJson { get; init; }

Property Value

String

Constructors

DynamicFieldOutput(DynamicFieldName, DynamicFieldValue, String)

The output of a dynamic field query, that includes the name, value, and value's json representation.

public DynamicFieldOutput(DynamicFieldName Name, DynamicFieldValue? Value = null, string? ValueAsJson = null)

Parameters

Name DynamicFieldName
The name of the dynamic field

Value DynamicFieldValue?
The dynamic field value typename and bcs

ValueAsJson String?
The json representation of the dynamic field value object

Methods

Dispose()

public void Dispose()