/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Serializer for pathway creation/update request body. */ export type PathwayCreateUpdateRequest = { /** * Pathway ID */ pathway_id?: string; /** * Pathway UUID */ pathway_uuid?: string; /** * User ID of the pathway owner */ user_id: number; /** * Username of the pathway owner */ username?: string; /** * Pathway name */ name: string; /** * Pathway slug */ slug?: string; /** * Whether the pathway is visible */ visible?: boolean; /** * Platform key */ platform_key?: string; /** * List of items in the pathway with item_id and optional position */ path: Array>; /** * Additional pathway data */ data?: any; };