/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the mediaconvert-2017-08-29.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.MediaConvert.Model { /// /// Information about when jobs are submitted, started, and finished is specified in Unix /// epoch format in seconds. /// public partial class Timing { private DateTime? _finishTime; private DateTime? _startTime; private DateTime? _submitTime; /// /// Gets and sets the property FinishTime. The time, in Unix epoch format, that the transcoding /// job finished /// public DateTime FinishTime { get { return this._finishTime.GetValueOrDefault(); } set { this._finishTime = value; } } // Check to see if FinishTime property is set internal bool IsSetFinishTime() { return this._finishTime.HasValue; } /// /// Gets and sets the property StartTime. The time, in Unix epoch format, that transcoding /// for the job began. /// public DateTime StartTime { get { return this._startTime.GetValueOrDefault(); } set { this._startTime = value; } } // Check to see if StartTime property is set internal bool IsSetStartTime() { return this._startTime.HasValue; } /// /// Gets and sets the property SubmitTime. The time, in Unix epoch format, that you submitted /// the job. /// public DateTime SubmitTime { get { return this._submitTime.GetValueOrDefault(); } set { this._submitTime = value; } } // Check to see if SubmitTime property is set internal bool IsSetSubmitTime() { return this._submitTime.HasValue; } } }