/* * 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 update functions. /// public partial class LoRaWANUpdateDevice { private UpdateAbpV1_0_x _abpV1_0_x; private UpdateAbpV1_1 _abpV1_1; private string _deviceProfileId; private UpdateFPorts _fPorts; private string _serviceProfileId; /// /// Gets and sets the property AbpV1_0_x. /// /// ABP device object for update APIs for v1.0.x /// /// public UpdateAbpV1_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 update APIs for v1.1 /// /// public UpdateAbpV1_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 DeviceProfileId. /// /// The ID of the device profile for the 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. /// /// FPorts object for the positioning information of the device. /// /// public UpdateFPorts 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 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; } } }