/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Request serializer for PlatformInvitationRedemptionView POST endpoint */ export type PlatformInvitationRedemption = { /** * The platform key for the invitation */ platform_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; };