Search Results for

    Show / Hide Table of Contents

    Class Transfer

    Represents a transfer.

    Inheritance
    object
    Transfer
    TransferDetail
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    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

    Methods

    FromJson(string)

    Declaration
    public static Transfer FromJson(string data)
    Parameters
    string data

    Returns
    Transfer

    ToJson()

    Declaration
    public string ToJson()
    Returns
    string

    Back to top Generated by DocFX