Exemple #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="WebhookJobDto" /> class.
 /// </summary>
 /// <param name="Robot">The robot associated with the current job..</param>
 /// <param name="Release">The release associated with the current job..</param>
 /// <param name="InputArguments">Input parameters in JSON format to be passed to job execution.</param>
 /// <param name="OutputArguments">Output parameters in JSON format resulted from job execution.</param>
 public WebhookJobDto(WebhookRobotDto Robot = default(WebhookRobotDto), WebhookReleaseDto Release = default(WebhookReleaseDto), Object InputArguments = default(Object), Object OutputArguments = default(Object))
 {
     this.Robot           = Robot;
     this.Release         = Release;
     this.InputArguments  = InputArguments;
     this.OutputArguments = OutputArguments;
 }
Exemple #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="WebhookQueueItemDto" /> class.
 /// </summary>
 /// <param name="ProcessingException">Stores the actual processing exception, if any..</param>
 /// <param name="Robot">The robot that has processed the item, if any..</param>
 /// <param name="ReviewerUser">Stores the actual reviewer user, 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>
 public WebhookQueueItemDto(WebhookProcessingExceptionDto ProcessingException = default(WebhookProcessingExceptionDto), WebhookRobotDto Robot = default(WebhookRobotDto), WebhookSimpleUserDto ReviewerUser = default(WebhookSimpleUserDto), Dictionary <string, Object> SpecificContent = default(Dictionary <string, Object>), Dictionary <string, Object> Output = default(Dictionary <string, Object>))
 {
     this.ProcessingException = ProcessingException;
     this.Robot           = Robot;
     this.ReviewerUser    = ReviewerUser;
     this.SpecificContent = SpecificContent;
     this.Output          = Output;
 }