コード例 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="WebhookSimpleJobDto" /> class.
 /// </summary>
 /// <param name="OutputArguments">OutputArguments.</param>
 /// <param name="Robot">Robot.</param>
 /// <param name="Release">Release.</param>
 public WebhookSimpleJobDto(Object OutputArguments = default(Object), WebhookSimpleRobotDto Robot = default(WebhookSimpleRobotDto), WebhookSimpleReleaseDto Release = default(WebhookSimpleReleaseDto))
 {
     this.OutputArguments = OutputArguments;
     this.Robot           = Robot;
     this.Release         = Release;
 }
コード例 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="WebhookProcessScheduleDto" /> class.
 /// </summary>
 /// <param name="Release">Process details associated with the schedule.</param>
 /// <param name="ExecutorRobots">The collection of specific robots selected to be targeted by the current schedule. This collection must be empty if the start strategy is not 0 (specific robots)..</param>
 /// <param name="InputArguments">Input parameters that will be passed to each job created by this schedule..</param>
 public WebhookProcessScheduleDto(WebhookSimpleReleaseDto Release = default(WebhookSimpleReleaseDto), List <WebhookSimpleRobotDto> ExecutorRobots = default(List <WebhookSimpleRobotDto>), Object InputArguments = default(Object))
 {
     this.Release        = Release;
     this.ExecutorRobots = ExecutorRobots;
     this.InputArguments = InputArguments;
 }