Class BatchSubRequest
- Namespace
- NetCoreForce.Client.Models
- Assembly
- NetCoreForce.Client.dll
public class BatchSubRequest
- Inheritance
-
BatchSubRequest
- Inherited Members
Properties
BinaryPartName
The name of the binary part in the multipart request.
Optional
[JsonProperty(PropertyName = "binaryPartName")]
public string BinaryPartName { get; set; }
Property Value
BinaryPartNameAlias
The name parameter in the Content-Disposition header of the binary body part. Different resources expect different values.
If this value exists, a binaryPartName value must also exist.
Optional
[JsonProperty(PropertyName = "binaryPartNameAlias")]
public string BinaryPartNameAlias { get; set; }
Property Value
Method
The method to use with the requested resource. For a list of valid methods, refer to the documentation for the requested resource.
Required
[JsonProperty(PropertyName = "method")]
public string Method { get; set; }
Property Value
RichInput
The input body for the request. The type depends on the request specified in the url property.
Optional
[JsonProperty(PropertyName = "richInput")]
public string RichInput { get; set; }
Property Value
Url
The resource to request.
Required
The URL can include any query string parameters that the subrequest supports. The query string must be URL-encoded.
You can use parameters to filter response bodies.
You cannot apply headers at the subrequest level.
[JsonProperty(PropertyName = "url")]
public string Url { get; set; }