Class ActionBatch
Action batch
[DataContract]
public class ActionBatch : IdentifiedItem
- Inheritance
-
ActionBatch
- Inherited Members
Properties
Action
A set of changes to make as part of this action (more details)
[ApiAccess(ApiAccess.ReadCreate)]
[DataMember(Name = "actions")]
public List<Action> Action { get; set; }
Property Value
ActionBatchStatus
Status
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "status")]
public ActionBatchStatus ActionBatchStatus { get; set; }
Property Value
Callback
Information for callback used to send back results
[ApiAccess(ApiAccess.ReadCreate)]
[DataMember(Name = "callback")]
public ActionBatchCallback Callback { get; set; }
Property Value
Confirmed
Set to true for immediate execution. Set to false if the action should be previewed before executing. This property cannot be unset once it is true. Defaults to false.
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "confirmed")]
public bool Confirmed { get; set; }
Property Value
OrganizationId
Organization id
[ApiAccess(ApiAccess.Read)]
[ApiForeignKey(typeof(Organization))]
[DataMember(Name = "organizationId")]
public string OrganizationId { get; set; }
Property Value
Synchronous
Set to true to force the batch to run synchronous.There can be at most 20 actions in synchronous batch.Defaults to false.
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "synchronous")]
public bool Synchronous { get; set; }