/// <summary> /// Initializes a new instance of the <see cref="JobListItem" /> class. /// </summary> /// <param name="JobId">JobId.</param> /// <param name="Name">Name.</param> /// <param name="Services">Services.</param> /// <param name="JobStatus">JobStatus.</param> /// <param name="ProgressDetails">ProgressDetails.</param> /// <param name="CreatedAt">The time of job creation.</param> public JobListItem(string JobId = default(string), string Name = default(string), ServicesArray Services = default(ServicesArray), JobStatus JobStatus = default(JobStatus), ProgressDetails ProgressDetails = default(ProgressDetails), DateTime?CreatedAt = default(DateTime?)) { this.JobId = JobId; this.Name = Name; this.Services = Services; this.JobStatus = JobStatus; this.ProgressDetails = ProgressDetails; this.CreatedAt = CreatedAt; }
/// <summary> /// Initializes a new instance of the <see cref="JobInformationResponse" /> class. /// </summary> /// <param name="JobId">JobId.</param> /// <param name="Name">A user-provided name for the job..</param> /// <param name="Description">An optional user-provided text describing the job..</param> /// <param name="CreatedAt">The time of job creation.</param> /// <param name="Owner">The user_id of the job-owning user..</param> /// <param name="ClientInformation">ClientInformation.</param> /// <param name="Services">Services.</param> /// <param name="JobStatus">JobStatus.</param> /// <param name="ProgressDetails">ProgressDetails.</param> /// <param name="AssessmentMetrics">AssessmentMetrics.</param> public JobInformationResponse(string JobId = default(string), string Name = default(string), string Description = default(string), DateTime?CreatedAt = default(DateTime?), string Owner = default(string), ClientInformation ClientInformation = default(ClientInformation), ServicesArray Services = default(ServicesArray), JobStatus JobStatus = default(JobStatus), ProgressDetails ProgressDetails = default(ProgressDetails), JobInformationResponseAssessmentMetrics AssessmentMetrics = default(JobInformationResponseAssessmentMetrics)) { this.JobId = JobId; this.Name = Name; this.Description = Description; this.CreatedAt = CreatedAt; this.Owner = Owner; this.ClientInformation = ClientInformation; this.Services = Services; this.JobStatus = JobStatus; this.ProgressDetails = ProgressDetails; this.AssessmentMetrics = AssessmentMetrics; }