Type Alias AgreementTermsResponseDto

AgreementTermsResponseDto: {
    classumAgreements: {
        documentUrl: {
            en: string | null;
            ko: string | null;
        };
        isEssential: boolean;
        isVisible: boolean;
        order: number;
        scope: "platform" | "tenant";
        title: {
            en: string | null;
            ko: string | null;
        };
        topic: string;
        version: number;
    }[];
    tenantAgreements: {
        documentUrl: {
            en: string | null;
            ko: string | null;
        };
        isEssential: boolean;
        isVisible: boolean;
        order: number;
        scope: "platform" | "tenant";
        title: {
            en: string | null;
            ko: string | null;
        };
        topic: string;
        version: number;
    }[];
}