@c8y/client
Version:
Client application programming interface to access the Cumulocity IoT-Platform REST services.
23 lines • 409 B
TypeScript
export interface IDeviceCredentials {
/**
* Device identifier, e.g. IMEI
*/
id: string;
/**
* New password
*/
password: string;
/**
* Link to this resource
*/
self: string;
/**
* Tenant id for authentication
*/
tenantId: string;
/**
* New username
*/
username: string;
}
//# sourceMappingURL=IDeviceCredentials.d.ts.map