Class Transfer
Represents a transfer.
Inherited Members
Namespace: System.Dynamic.ExpandoObject
Syntax
[GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
public class Transfer
Properties
BusinessProcessId
Associated business process ID.
Declaration
[JsonProperty("businessProcessId", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string BusinessProcessId { get; set; }
Property Value
string |
CollectionId
ID of collection created from transfer.
Declaration
[JsonProperty("collectionId", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string CollectionId { get; set; }
Property Value
string |
FileTransferCount
Number of files in transfer.
Declaration
[JsonProperty("fileTransferCount", Required = Required.Always)]
public long FileTransferCount { get; set; }
Property Value
long |
Id
ID of transfer.
Declaration
[JsonProperty("id", Required = Required.Always)]
[Required]
public string Id { get; set; }
Property Value
string |
Name
Name of transfer.
Declaration
[JsonProperty("name", Required = Required.Always)]
[Required]
public string Name { get; set; }
Property Value
string |
State
State of transfer.
Declaration
[JsonProperty("state", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
[JsonConverter(typeof(StringEnumConverter))]
public TransferState State { get; set; }
Property Value
TransferState |
TransferType
Type of transfer.
Declaration
[JsonProperty("transferType", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
[JsonConverter(typeof(StringEnumConverter))]
public TransferType TransferType { get; set; }
Property Value
TransferType |