/** * Grant one program to a platform user, optionally linked to a placement. */ export type PlacementProgramAssignmentCreate = { user_id: number; program_key: string; started?: string; expired?: string; placement_id?: number; };