Interface IDeviceRegistration

interface IDeviceRegistration {
    creationTime?: string;
    customProperties?: {
        [key: string]: any;
    };
    groupId?: string;
    id: string;
    owner?: string;
    securityToken?: string;
    self: string;
    status: DeviceRegistrationStatus;
    tenantId: string;
    type?: string;
}

Hierarchy (view full)

Properties

creationTime?: string

Shows the server-side creation time of the object

customProperties?: {
    [key: string]: any;
}

Object for custom fragments

groupId?: string

Identifies the target group

id: string

Unique identifier

owner?: string

Identifies the owner of the object

securityToken?: string

Security token for a device may be required to register successfully

self: string

Link to this resource

Possible state of device registration

tenantId: string

Identifies the tenant

type?: string

Identifies the type of request, e.g.: c8y_DataBroker. For device requests value is normally skipped.