Show / Hide Table of Contents

Class BindDeviceToGatewayRequest

Request for BindDeviceToGateway.

Inheritance
System.Object
BindDeviceToGatewayRequest
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.CloudIot.v1.Data
Assembly: Google.Apis.CloudIot.v1.dll
Syntax
public class BindDeviceToGatewayRequest : IDirectResponseSchema

Properties

DeviceId

Required. The device to associate with the specified gateway. The value of device_id can be either the device numeric ID or the user-defined device identifier.

Declaration
[JsonProperty("deviceId")]
public virtual string DeviceId { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

GatewayId

Required. The value of gateway_id can be either the device numeric ID or the user-defined device identifier.

Declaration
[JsonProperty("gatewayId")]
public virtual string GatewayId { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
In This Article
Back to top