Show / Hide Table of Contents

Class MetadataDetails

Metadata parameter details

Inheritance
object
MetadataDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.BlockchainService.Models
Assembly: OCI.DotNetSDK.Blockchain.dll
Syntax
public class MetadataDetails

Properties

IsJsonValue

Declaration
[Required(ErrorMessage = "IsJsonValue is required.")]
[JsonProperty(PropertyName = "isJsonValue")]
public bool? IsJsonValue { get; set; }
Property Value
Type Description
bool?

Indicates if the value is a JSON string

Remarks

Required

ParamName

Declaration
[Required(ErrorMessage = "ParamName is required.")]
[JsonProperty(PropertyName = "paramName")]
public string ParamName { get; set; }
Property Value
Type Description
string

Metadata param name

Remarks

Required

ParamValue

Declaration
[Required(ErrorMessage = "ParamValue is required.")]
[JsonProperty(PropertyName = "paramValue")]
public string ParamValue { get; set; }
Property Value
Type Description
string

Metadata param value. Complex value will be a JSON string.

Remarks

Required

In this article
Back to top