Type Alias AgreementAdminListResponseDto

AgreementAdminListResponseDto: {
    terms: {
        consentCount: number;
        consentTtlDays: number | null;
        documentUrl: {
            en: string | null;
            ko: string | null;
        };
        isActive: boolean;
        isEssential: boolean;
        isVisible: boolean;
        order: number;
        scope: "platform" | "tenant";
        title: {
            en: string | null;
            ko: string | null;
        };
        topic: string;
        version: number;
    }[];
}