UNPKG

@trophyso/node

Version:
11 lines (10 loc) 330 B
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[]; }