Show / Hide Table of Contents

Class InsightDataContract

Describes the response data format returned for an insight type.

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

Properties

Kind

Declaration
[Required(ErrorMessage = "Kind is required.")]
[JsonProperty(PropertyName = "kind")]
[JsonConverter(typeof(ResponseEnumConverter))]
public InsightDataContract.KindEnum? Kind { get; set; }
Property Value
Type Description
InsightDataContract.KindEnum?

Indicates the structure of the insight data payload.

Remarks

Required

Unit

Declaration
[JsonProperty(PropertyName = "unit")]
public string Unit { get; set; }
Property Value
Type Description
string

Optional unit associated with numeric values.

In this article
Back to top