/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { PlatformListStatusEnum } from './PlatformListStatusEnum'; export type PlatformList = { /** * The platform key */ key: string; /** * The name of the platform */ name?: string | null; /** * The associated edX org code */ org?: string | null; /** * The LMS URL for the platform */ lms_url?: string | null; /** * The CMS URL for the platform */ cms_url?: string | null; /** * The portal URL for the platform */ portal_url?: string | null; status?: PlatformListStatusEnum; active?: boolean; };