@trophyso/node
Version:
NodeJS SDK for the Trophy API
11 lines (10 loc) • 330 B
TypeScript
import type * as TrophyApi from "../index";
/**
* Response containing created tenants and any issues.
*/
export interface CreateTenantsResponse {
/** Array of successfully created tenants. */
created: TrophyApi.AdminTenant[];
/** Array of issues encountered during creation. */
issues: TrophyApi.AdminIssue[];
}