/*
* 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 iotwireless-2020-11-22.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.IoTWireless.Model
{
///
/// Details of the Semtech GNSS solver object.
///
public partial class SemtechGnssDetail
{
private PositionConfigurationFec _fec;
private PositionSolverProvider _provider;
private PositionConfigurationStatus _status;
private PositionSolverType _type;
///
/// Gets and sets the property Fec.
///
/// Whether forward error correction is enabled.
///
///
public PositionConfigurationFec Fec
{
get { return this._fec; }
set { this._fec = value; }
}
// Check to see if Fec property is set
internal bool IsSetFec()
{
return this._fec != null;
}
///
/// Gets and sets the property Provider.
///
/// The vendor of the solver object.
///
///
public PositionSolverProvider Provider
{
get { return this._provider; }
set { this._provider = value; }
}
// Check to see if Provider property is set
internal bool IsSetProvider()
{
return this._provider != null;
}
///
/// Gets and sets the property Status.
///
/// The status indicating whether the solver is enabled.
///
///
public PositionConfigurationStatus Status
{
get { return this._status; }
set { this._status = value; }
}
// Check to see if Status property is set
internal bool IsSetStatus()
{
return this._status != null;
}
///
/// Gets and sets the property Type.
///
/// The type of positioning solver used.
///
///
public PositionSolverType Type
{
get { return this._type; }
set { this._type = value; }
}
// Check to see if Type property is set
internal bool IsSetType()
{
return this._type != null;
}
}
}