/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { PlatformInvitationDetail } from './PlatformInvitationDetail'; /** * Response serializer for paginated platform invitation list */ export type PaginatedPlatformInvitation = { /** * Total number of results */ count: number; /** * URL for next page of results */ next_page: string | null; /** * URL for previous page of results */ previous_page: string | null; /** * List of platform invitations */ results: Array; };