Type Alias TenantCursorListResponseDto
TenantCursorListResponseDto: {
hasMore: boolean;
items: {
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;
}[];
nextCursor: string | null;
}