Gateway
public struct Gateway : Codable, Equatable
Object describing a specific gateway.
-
The current status of the gateway.
See moreconnectedmeans the gateway is connected to the remotly installed gateway.idlemeans this gateway is not currently in use.Declaration
Swift
public enum Status : String -
The gateway ID of the gateway.
Declaration
Swift
public var gatewayID: String? -
The user defined name of the gateway.
Declaration
Swift
public var name: String? -
The current status of the gateway.
connectedmeans the gateway is connected to the remotly installed gateway.idlemeans this gateway is not currently in use.Declaration
Swift
public var status: String? -
The generated token for this gateway. The value of this field is used when configuring the remotly installed gateway.
Declaration
Swift
public var token: String? -
The generated token_id for this gateway. The value of this field is used when configuring the remotly installed gateway.
Declaration
Swift
public var tokenID: String?
View on GitHub
Gateway Structure Reference