/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Response serializer for ProgramMetadataView GET endpoint. */ export type ProgramMetadataResponse = { /** * Program name */ name?: string | null; /** * Program description */ description?: string | null; /** * Whether the program is enabled */ enabled?: boolean | null; /** * Program slug */ slug?: string | null; /** * List of associated skills */ skills?: Array; /** * Platform key */ platform_key?: string | null; };