/**
 * 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