/** * Request serializer for BlankPlatformInvitationView POST endpoint */ export type BlankPlatformInvitationCreate = { /** * The platform to create invitations for */ platform_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; };