/*
* 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 groundstation-2019-05-23.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.GroundStation.Model
{
///
/// Metadata describing a particular ephemeris.
///
public partial class EphemerisMetaData
{
private string _ephemerisId;
private DateTime? _epoch;
private string _name;
private EphemerisSource _source;
///
/// Gets and sets the property EphemerisId.
///
/// UUID of a customer-provided ephemeris.
///
///
///
/// This field is not populated for default ephemerides from Space Track.
///
///
[AWSProperty(Min=1, Max=128)]
public string EphemerisId
{
get { return this._ephemerisId; }
set { this._ephemerisId = value; }
}
// Check to see if EphemerisId property is set
internal bool IsSetEphemerisId()
{
return this._ephemerisId != null;
}
///
/// Gets and sets the property Epoch.
///
/// The epoch of a default, ephemeris from Space Track in UTC.
///
///
///
/// This field is not populated for customer-provided ephemerides.
///
///
public DateTime Epoch
{
get { return this._epoch.GetValueOrDefault(); }
set { this._epoch = value; }
}
// Check to see if Epoch property is set
internal bool IsSetEpoch()
{
return this._epoch.HasValue;
}
///
/// Gets and sets the property Name.
///
/// A name string associated with the ephemeris. Used as a human-readable identifier for
/// the ephemeris.
///
///
///
/// A name is only returned for customer-provider ephemerides that have a name associated.
///
///
[AWSProperty(Min=1, Max=256)]
public string Name
{
get { return this._name; }
set { this._name = value; }
}
// Check to see if Name property is set
internal bool IsSetName()
{
return this._name != null;
}
///
/// Gets and sets the property Source.
///
/// The EphemerisSource
that generated a given ephemeris.
///
///
[AWSProperty(Required=true)]
public EphemerisSource Source
{
get { return this._source; }
set { this._source = value; }
}
// Check to see if Source property is set
internal bool IsSetSource()
{
return this._source != null;
}
}
}