Show / Hide Table of Contents

Class UnbindDeviceFromGatewayRequest

Request for UnbindDeviceFromGateway.

Inheritance
System.Object
UnbindDeviceFromGatewayRequest
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 UnbindDeviceFromGatewayRequest : IDirectResponseSchema

Properties

DeviceId

Required. The device to disassociate from 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