/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { DisclaimerScopeEnum } from './DisclaimerScopeEnum'; export type Disclaimer = { 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; };