Search Results for

    Show / Hide Table of Contents

    Class TransferDetail

    Represents a transfer and includes detailed information.

    Inheritance
    object
    Transfer
    TransferDetail
    Inherited Members
    Transfer.Id
    Transfer.Name
    Transfer.State
    Transfer.TransferType
    Transfer.BusinessProcessId
    Transfer.FileTransferCount
    Transfer.CollectionId
    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 TransferDetail : Transfer

    Properties

    Audit

    Audit information.

    Declaration
    [JsonProperty("audit", Required = Required.Always)]
    [Required]
    public UserAudit Audit { get; set; }
    Property Value
    UserAudit

    DataExtractionInProgressCount

    Number of items currently being processed in data extraction.

    Declaration
    [JsonProperty("dataExtractionInProgressCount", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
    public long DataExtractionInProgressCount { get; set; }
    Property Value
    long

    FileUploadInProgressCount

    Number of items currently being uploaded.

    Declaration
    [JsonProperty("fileUploadInProgressCount", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
    public long FileUploadInProgressCount { get; set; }
    Property Value
    long

    ItemCount

    Total number of items.

    Declaration
    [JsonProperty("itemCount", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
    public long ItemCount { get; set; }
    Property Value
    long

    ItemProgress

    Number of items processed.

    Declaration
    [JsonProperty("itemProgress", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
    public long ItemProgress { get; set; }
    Property Value
    long

    ItemsCancelled

    Number of items cancelled.

    Declaration
    [JsonProperty("itemsCancelled", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
    public long ItemsCancelled { get; set; }
    Property Value
    long

    ItemsFailed

    Number of items failed.

    Declaration
    [JsonProperty("itemsFailed", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
    public long ItemsFailed { get; set; }
    Property Value
    long

    LastDataExtractionProgressTimeStamp

    Time stamp of last progress update from data extraction.

    Declaration
    [JsonProperty("lastDataExtractionProgressTimeStamp", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public DateTime? LastDataExtractionProgressTimeStamp { get; set; }
    Property Value
    DateTime?

    LastFileUploadProgressTimeStamp

    Time stamp of last progress update from upload.

    Declaration
    [JsonProperty("lastFileUploadProgressTimeStamp", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public DateTime? LastFileUploadProgressTimeStamp { get; set; }
    Property Value
    DateTime?

    Methods

    FromJson(string)

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

    Returns
    TransferDetail

    ToJson()

    Declaration
    public string ToJson()
    Returns
    string

    Back to top Generated by DocFX