Show / Hide Table of Contents

Class BulkCreateOccmDemandSignalItemDetails

Details about the model that is to be used for bulk creating demand signal items.

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

Properties

CreateOccmDemandSignalItems

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

A list of demand signal items that we want to bulk create.

Remarks

Required

DemandSignalId

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

The OCID of the demand signal in which we want to bulk create these demand signal item resources.

Remarks

Required

In this article
Back to top