/* generated using openapi-typescript-codegen -- do no edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Platform represents the platform (Arch/OS). * */ export type Platform = { /** * Architecture represents the hardware architecture (for example, * `x86_64`). * */ Architecture?: string; /** * OS represents the Operating System (for example, `linux` or `windows`). * */ OS?: string; };