Show / Hide Table of Contents

Class OccDemandSignalData

The Data Object For Demand Signal.

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

Properties

ResourceType

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

The name of the resource for the data.

Remarks

Required

Units

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

The units of the data.

Remarks

Required

Values

Declaration
[Required(ErrorMessage = "Values is required.")]
[JsonProperty(PropertyName = "values")]
public List<OccDemandSignalValue> Values { get; set; }
Property Value
Type Description
List<OccDemandSignalValue>

The values of forecast.

Remarks

Required

In this article
Back to top