/* * 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 pinpoint-2016-12-01.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.Pinpoint.Model { /// /// Provides information from a specified run of a journey. /// public partial class JourneyRunResponse { private string _creationTime; private string _lastUpdateTime; private string _runId; private JourneyRunStatus _status; /// /// Gets and sets the property CreationTime. /// /// The time when the journey run was created or scheduled, in ISO 8601 format. /// /// [AWSProperty(Required=true)] public string CreationTime { get { return this._creationTime; } set { this._creationTime = value; } } // Check to see if CreationTime property is set internal bool IsSetCreationTime() { return this._creationTime != null; } /// /// Gets and sets the property LastUpdateTime. /// /// The last time the journey run was updated, in ISO 8601 format.. /// /// [AWSProperty(Required=true)] public string LastUpdateTime { get { return this._lastUpdateTime; } set { this._lastUpdateTime = value; } } // Check to see if LastUpdateTime property is set internal bool IsSetLastUpdateTime() { return this._lastUpdateTime != null; } /// /// Gets and sets the property RunId. /// /// The unique identifier for the run. /// /// [AWSProperty(Required=true)] public string RunId { get { return this._runId; } set { this._runId = value; } } // Check to see if RunId property is set internal bool IsSetRunId() { return this._runId != null; } /// /// Gets and sets the property Status. /// /// The current status of the journey run. /// /// [AWSProperty(Required=true)] public JourneyRunStatus Status { get { return this._status; } set { this._status = value; } } // Check to see if Status property is set internal bool IsSetStatus() { return this._status != null; } } }