Type Alias TenantListResponseDto
TenantListResponseDto: {
page: number;
pageSize: number;
tenants: {
createdAt: string;
csManager: {
displayName: string;
id: string;
} | null;
currentContractPeriod: {
expiredAt: string;
startedAt: string;
} | null;
currentPlan:
| "FREE"
| "PREMIUM"
| "ULTIMATE"
| null;
id: string;
isFavorite: boolean;
isInternalTest: boolean;
key: string;
loginIdentifier: "userId" | "email";
memberCount: number;
memberLimit: number | null;
name: string;
salesManager: {
displayName: string;
id: string;
} | null;
videoHoursLimit: number | null;
}[];
total: number;
totalPages: number;
}