Skip to content
This repository has been archived by the owner on Apr 23, 2021. It is now read-only.

Latest commit

 

History

History
25 lines (18 loc) · 2.02 KB

DeviceCode.md

File metadata and controls

25 lines (18 loc) · 2.02 KB

DeviceCode

Description

Properties

Name Getter Setter Type Description Notes
id getId() setId($value) string The unique id for this device code. [optional]
name getName() setName($value) string An optional user-defined name for the device code. [optional]
code getCode() setCode($value) string The unique code that can be used to login. [optional]
device_id getDeviceId() setDeviceId($value) string The unique id of the device that used this code. Populated when the device is paired up. [optional]
product_type getProductType() setProductType($value) string The targeting product type of the device code. See ProductType for possible values
location_id getLocationId() setLocationId($value) string The location assigned to this code. [optional]
status getStatus() setStatus($value) string The pairing status of the device code. See DeviceCodeStatus for possible values [optional]
pair_by getPairBy() setPairBy($value) string When this DeviceCode will expire and no longer login. Timestamp in RFC 3339 format. [optional]
created_at getCreatedAt() setCreatedAt($value) string When this DeviceCode was created. Timestamp in RFC 3339 format. [optional]
status_changed_at getStatusChangedAt() setStatusChangedAt($value) string When this DeviceCode's status was last changed. Timestamp in RFC 3339 format. [optional]
paired_at getPairedAt() setPairedAt($value) string When this DeviceCode was paired. Timestamp in RFC 3339 format. [optional]

Note: All properties are protected and only accessed via getters and setters.

[Back to Model list] [Back to API list] [Back to README]