/// <summary> /// Initializes a new instance of the QueueItemDto class. /// </summary> /// <param name="queueDefinitionId">The Id of the parent queue.</param> /// <param name="queueDefinition">The parent queue</param> /// <param name="processingException">Stores the actual processing /// exception, if any.</param> /// <param name="specificContent">A collection of key value pairs /// containing custom data configured in the Add Queue Item activity, /// in UiPath Studio.</param> /// <param name="output">A collection of key value pairs containing /// custom data resulted after successful processing.</param> /// <param name="outputData">A JSON representation of the output data /// generated by the item's processing.</param> /// <param name="status">The processing state of the item. Possible /// values include: 'New', 'InProgress', 'Failed', 'Successful', /// 'Abandoned', 'Retried', 'Deleted'</param> /// <param name="reviewStatus">The review state of the item - /// applicable only for failed items. Possible values include: 'None', /// 'InReview', 'Verified', 'Retried'</param> /// <param name="reviewerUserId">The UserId of the Reviewer, if /// any.</param> /// <param name="reviewerUser">Stores the actual reviewer user, if /// any.</param> /// <param name="key">The unique identifier of a queue item.</param> /// <param name="reference">An optional, user-specified value for queue /// item identification.</param> /// <param name="processingExceptionType">The processing exception. If /// the item has not been processed or has been processed successfully /// it will be null. Possible values include: 'ApplicationException', /// 'BusinessException'</param> /// <param name="dueDate">The latest date and time at which the item /// should be processed. If empty the item can be processed at any /// given time.</param> /// <param name="priority">Sets the processing importance for a given /// item. Possible values include: 'High', 'Normal', 'Low'</param> /// <param name="robot">The robot that has processed the item, if /// any.</param> /// <param name="deferDate">The earliest date and time at which the /// item is available for processing. If empty the item can be /// processed as soon as possible.</param> /// <param name="startProcessing">The date and time at which the item /// processing started. This is null if the item was not /// processed.</param> /// <param name="endProcessing">The date and time at which the item /// processing ended. This is null if the item was not /// processed.</param> /// <param name="secondsInPreviousAttempts">The number of seconds that /// the last failed processing lasted.</param> /// <param name="ancestorId">The Id of an ancestor item connected to /// the current item.</param> /// <param name="retryNumber">The number of times this work item has /// been processed. /// <para />This can be higher than 0 only if MaxRetried number /// is set and the item processing failed at least once with /// ApplicationException.</param> /// <param name="specificData">A JSON representation of the specific /// content.</param> /// <param name="creationTime">The date and time when the item was /// created.</param> /// <param name="progress">String field which is used to keep track of /// the business flow progress.</param> /// <param name="rowVersion">Identifier used for optimistic /// concurrency, so Orchestrator can figure whether data is out of date /// or not.</param> public QueueItemDto(long?queueDefinitionId = default(long?), QueueDefinitionDto queueDefinition = default(QueueDefinitionDto), ProcessingExceptionDto processingException = default(ProcessingExceptionDto), IDictionary <string, object> specificContent = default(IDictionary <string, object>), QueueItemOutput output = default(QueueItemOutput), string outputData = default(string), QueueItemDtoStatus?status = default(QueueItemDtoStatus?), QueueItemDtoReviewStatus?reviewStatus = default(QueueItemDtoReviewStatus?), long?reviewerUserId = default(long?), SimpleUserDto reviewerUser = default(SimpleUserDto), System.Guid?key = default(System.Guid?), string reference = default(string), QueueItemDtoProcessingExceptionType?processingExceptionType = default(QueueItemDtoProcessingExceptionType?), System.DateTime?dueDate = default(System.DateTime?), QueueItemDtoPriority?priority = default(QueueItemDtoPriority?), SimpleRobotDto robot = default(SimpleRobotDto), System.DateTime?deferDate = default(System.DateTime?), System.DateTime?startProcessing = default(System.DateTime?), System.DateTime?endProcessing = default(System.DateTime?), int?secondsInPreviousAttempts = default(int?), long?ancestorId = default(long?), int?retryNumber = default(int?), string specificData = default(string), System.DateTime?creationTime = default(System.DateTime?), string progress = default(string), byte[] rowVersion = default(byte[]), long?id = default(long?)) { QueueDefinitionId = queueDefinitionId; QueueDefinition = queueDefinition; ProcessingException = processingException; SpecificContent = specificContent; Output = output; OutputData = outputData; Status = status; ReviewStatus = reviewStatus; ReviewerUserId = reviewerUserId; ReviewerUser = reviewerUser; Key = key; Reference = reference; ProcessingExceptionType = processingExceptionType; DueDate = dueDate; Priority = priority; Robot = robot; DeferDate = deferDate; StartProcessing = startProcessing; EndProcessing = endProcessing; SecondsInPreviousAttempts = secondsInPreviousAttempts; AncestorId = ancestorId; RetryNumber = retryNumber; SpecificData = specificData; CreationTime = creationTime; Progress = progress; RowVersion = rowVersion; Id = id; CustomInit(); }
/// <summary> /// Initializes a new instance of the TransactionResultDto class. /// </summary> /// <param name="isSuccessful">States if the processing was successful /// or not.</param> /// <param name="processingException">The details of the processing /// exception thrown if the item failed.</param> /// <param name="deferDate">The earliest date and time at which the /// item is available for processing. If empty the item can be /// processed as soon as possible.</param> /// <param name="dueDate">The latest date and time at which the item /// should be processed. If empty the item can be processed at any /// given time.</param> /// <param name="output">A collection of key value pairs containing /// custom data resulted after successful processing.</param> /// <param name="progress">String field which is used to keep track of /// the business flow progress.</param> public TransactionResultDto(bool?isSuccessful = default(bool?), ProcessingExceptionDto processingException = default(ProcessingExceptionDto), System.DateTime?deferDate = default(System.DateTime?), System.DateTime?dueDate = default(System.DateTime?), QueueItemOutput output = default(QueueItemOutput), string progress = default(string)) { IsSuccessful = isSuccessful; ProcessingException = processingException; DeferDate = deferDate; DueDate = dueDate; Output = output; Progress = progress; CustomInit(); }