/// <summary> /// Initializes a new instance of the PipelineJobOperationStatus class. /// </summary> /// <param name="name">The name of the pipeline job operation.</param> /// <param name="status">The status of the pipeline job /// operation.</param> /// <param name="error">The error details for the pipeline job /// operation.</param> public PipelineJobOperationStatus(string name = default(string), string status = default(string), ErrorDetail error = default(ErrorDetail)) { Name = name; Status = status; Error = error; CustomInit(); }
/// <summary> /// Initializes a new instance of the /// VideoAnalyzerPrivateEndpointConnectionOperationStatus class. /// </summary> /// <param name="name">Operation identifier.</param> /// <param name="id">Operation resource ID.</param> /// <param name="startTime">Operation start time.</param> /// <param name="endTime">Operation end time.</param> /// <param name="status">Operation status.</param> public VideoAnalyzerPrivateEndpointConnectionOperationStatus(string name, string id = default(string), string startTime = default(string), string endTime = default(string), string status = default(string), ErrorDetail error = default(ErrorDetail)) { Name = name; Id = id; StartTime = startTime; EndTime = endTime; Status = status; Error = error; CustomInit(); }
/// <summary> /// Initializes a new instance of the ErrorResponse class. /// </summary> /// <param name="error">The error object.</param> public ErrorResponse(ErrorDetail error = default(ErrorDetail)) { Error = error; CustomInit(); }