/*
* 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
{
///
/// LoRaWAN object for create functions.
///
public partial class LoRaWANDevice
{
private AbpV1_0_x _abpV1_0_x;
private AbpV1_1 _abpV1_1;
private string _devEui;
private string _deviceProfileId;
private FPorts _fPorts;
private OtaaV1_0_x _otaaV1_0_x;
private OtaaV1_1 _otaaV1_1;
private string _serviceProfileId;
///
/// Gets and sets the property AbpV1_0_x.
///
/// LoRaWAN object for create APIs
///
///
public AbpV1_0_x AbpV1_0_x
{
get { return this._abpV1_0_x; }
set { this._abpV1_0_x = value; }
}
// Check to see if AbpV1_0_x property is set
internal bool IsSetAbpV1_0_x()
{
return this._abpV1_0_x != null;
}
///
/// Gets and sets the property AbpV1_1.
///
/// ABP device object for create APIs for v1.1
///
///
public AbpV1_1 AbpV1_1
{
get { return this._abpV1_1; }
set { this._abpV1_1 = value; }
}
// Check to see if AbpV1_1 property is set
internal bool IsSetAbpV1_1()
{
return this._abpV1_1 != null;
}
///
/// Gets and sets the property DevEui.
///
/// The DevEUI value.
///
///
public string DevEui
{
get { return this._devEui; }
set { this._devEui = value; }
}
// Check to see if DevEui property is set
internal bool IsSetDevEui()
{
return this._devEui != null;
}
///
/// Gets and sets the property DeviceProfileId.
///
/// The ID of the device profile for the new wireless device.
///
///
[AWSProperty(Max=256)]
public string DeviceProfileId
{
get { return this._deviceProfileId; }
set { this._deviceProfileId = value; }
}
// Check to see if DeviceProfileId property is set
internal bool IsSetDeviceProfileId()
{
return this._deviceProfileId != null;
}
///
/// Gets and sets the property FPorts.
///
public FPorts FPorts
{
get { return this._fPorts; }
set { this._fPorts = value; }
}
// Check to see if FPorts property is set
internal bool IsSetFPorts()
{
return this._fPorts != null;
}
///
/// Gets and sets the property OtaaV1_0_x.
///
/// OTAA device object for create APIs for v1.0.x
///
///
public OtaaV1_0_x OtaaV1_0_x
{
get { return this._otaaV1_0_x; }
set { this._otaaV1_0_x = value; }
}
// Check to see if OtaaV1_0_x property is set
internal bool IsSetOtaaV1_0_x()
{
return this._otaaV1_0_x != null;
}
///
/// Gets and sets the property OtaaV1_1.
///
/// OTAA device object for v1.1 for create APIs
///
///
public OtaaV1_1 OtaaV1_1
{
get { return this._otaaV1_1; }
set { this._otaaV1_1 = value; }
}
// Check to see if OtaaV1_1 property is set
internal bool IsSetOtaaV1_1()
{
return this._otaaV1_1 != null;
}
///
/// Gets and sets the property ServiceProfileId.
///
/// The ID of the service profile.
///
///
[AWSProperty(Max=256)]
public string ServiceProfileId
{
get { return this._serviceProfileId; }
set { this._serviceProfileId = value; }
}
// Check to see if ServiceProfileId property is set
internal bool IsSetServiceProfileId()
{
return this._serviceProfileId != null;
}
}
}