Gateway

public struct Gateway : Codable, Equatable

Object describing a specific gateway.

  • The current status of the gateway. connected means the gateway is connected to the remotly installed gateway. idle means this gateway is not currently in use.

    See more

    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. connected means the gateway is connected to the remotly installed gateway. idle means 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?