export interface GetUserConsentResponse { count: number; total: number; items: UserConsent[]; pages: PaginationResponse; } export interface PaginationResponse { first: string; next: string; previous: string; last: string; } export interface UserConsent { domainID: number; userID: number; consentTypeId: number; tagCode: string; friendlyName: string; status: string; expirationDate: string; } export interface UserConsentForm { tagCode: UserConsent['tagCode']; status: boolean; friendlyName: UserConsent['friendlyName']; }