Class DeleteRequest
- Namespace
- NetCoreForce.Client.Models
- Assembly
- NetCoreForce.Client.dll
public class DeleteRequest
- Inheritance
-
DeleteRequest
- Inherited Members
Constructors
DeleteRequest(List<string>, bool)
Constructor
public DeleteRequest(List<string> ids, bool allOrNone = false)
Parameters
Properties
AllOrNone
Optional. Indicates whether to roll back the entire request when the deletion of any object fails (true) or to continue with the independent deletion of other objects in the request. The default is false.
[JsonProperty(PropertyName = "allOrNone")]
public bool AllOrNone { get; set; }
Property Value
Ids
Required. A list of up to 200 IDs of objects to be deleted. The IDs can belong to different object types, including custom objects.
[JsonProperty(PropertyName = "Ids")]
public List<string> Ids { get; set; }