DeviceId

public class DeviceId : SdkObject
extension DeviceId: CustomStringConvertible
extension DeviceId: Equatable

ID of a device.

Must be greater than 0.

  • Constructs a DeviceId from the provided Int64.

    Fails if the provided ID is not valid.

    Declaration

    Swift

    public convenience init?(_ id: Int64)
  • id

    ID of the device

    Declaration

    Swift

    public lazy var id: Int64 { get set }
  • Declaration

    Swift

    public var description: String { get }
  • Declaration

    Swift

    public static func == (lhs: DeviceId, rhs: DeviceId) -> Bool