Type Alias AgreementMyConsentsResponseDto
AgreementMyConsentsResponseDto: {
classumAgreements: {
agreedAt: string;
expiresAt: string | null;
isEffective: boolean;
isEssential: boolean;
scope: "platform" | "tenant";
topic: string;
version: number;
withdrawnAt: string | null;
}[];
tenantAgreements: {
agreedAt: string;
expiresAt: string | null;
isEffective: boolean;
isEssential: boolean;
scope: "platform" | "tenant";
topic: string;
version: number;
withdrawnAt: string | null;
}[];
}