Show / Hide Table of Contents

Class OccDemandSignalValue

The Value of Demand Signal for particular month.

Inheritance
object
OccDemandSignalValue
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 OccDemandSignalValue

Properties

Comments

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

Space provided for users to make comments regarding the value.

TimeExpected

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

The date of the Demand Signal Value.

Remarks

Required

Value

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

The Demand Signal Value.

Remarks

Required

In this article
Back to top