/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { App } from './App'; import type { Platform } from './Platform'; export type UserApp = { readonly id: number; /** * The app details */ app: App; /** * The platform details */ readonly platform: Platform; /** * The subscription details, would contain identifier, active, created_on, last_updated */ readonly subscription: Record | null; provider: string; readonly is_admin: boolean; readonly is_active: boolean; metadata?: any; onboarding_completed?: boolean; free_trial_started?: boolean; free_trial_expired?: boolean; has_active_subscription?: boolean; };