Class FileCounts
public class FileCounts
- Inheritance
-
objectFileCounts
Properties
Cancelled
The number of files that were cancelled.
public int? Cancelled { get; set; }
Property Value
- int?
Completed
The number of files that have been successfully processed.
public int? Completed { get; set; }
Property Value
- int?
Failed
The number of files that have failed to process.
public int? Failed { get; set; }
Property Value
- int?
InProgress
The number of files that are currently being processed.
public int? InProgress { get; set; }
Property Value
- int?
Total
The total number of files.
public int? Total { get; set; }
Property Value
- int?