/** * Serializer for platform information. */ export type PlatformInfo = { /** * Platform ID */ platform_id: number; /** * Platform name */ platform_name: string; /** * Platform key */ platform_key: string; };