/** * Request serializer for ProgramInvitationRedemptionView POST endpoint */ export type ProgramInvitationRedemption = { /** * The program key for the invitation */ program_key: string; /** * The source identifier for the invitation */ source: string; /** * The email to associate with the invitation */ email?: string; /** * The username to associate with the invitation */ username?: string; /** * Additional metadata for the invitation */ metadata?: Record; };