UNPKG

@c8y/client

Version:

Client application programming interface to access the Cumulocity IoT-Platform REST services.

16 lines 516 B
/** * Response returned by the microservice subscription endpoint. * Contains an array of credentials that can be used to access subscribed tenants. */ export interface IMicroserviceSubscriptionsResponse { users: IMicroserviceSubscription[]; } /** * Not to be confused with ICredentials as 'name' is used instead of 'user' for the username. */ export interface IMicroserviceSubscription { tenant: string; name: string; password: string; } //# sourceMappingURL=IMicroserviceSubscriptions.d.ts.map