import type { DisclaimerScopeEnum } from './DisclaimerScopeEnum'; export type PatchedDisclaimer = { readonly id?: number; scope?: DisclaimerScopeEnum; /** * Platform to which the disclaimer applies. */ readonly platform?: number; content?: string; title?: string; active?: boolean; readonly created_at?: string; readonly updated_at?: string; readonly has_agreed?: boolean; readonly platform_key?: string; mentors?: Array; };