/** * Request serializer for BlankProgramInvitationView POST endpoint */ export type BlankProgramInvitationCreate = { /** * The program to create invitations for */ program_key: string; /** * The source identifier for the invitations */ source: string; /** * The number of blank invitations to create */ count: number; /** * Additional metadata for the invitations */ metadata?: Record; };