/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Request serializer for ProgramMetadataView POST endpoint. */ export type ProgramMetadataRequest = { /** * The unique identifier for the program */ program_id: string; /** * The organization associated with the program */ org?: string; /** * Platform key identifier (alternative to org) */ platform_key?: string; /** * Program key (alternative to program_id + org) */ program_key?: string; /** * Metadata to update for the program */ metadata: Record; /** * Whether to update existing metadata */ update?: boolean; };