/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ export type PatchedTag = { /** * Server-assigned id. */ readonly id?: number; /** * Platform this Tag belongs to. Set automatically from your credentials; you cannot pass another Platform's id. */ readonly platform?: number; /** * Display label shown on tag chips. Must be unique within your Platform (case-sensitive). Up to 64 characters. */ name?: string; /** * Hex color (e.g. `#3F6BFF`) used to render the chip. Six lowercase or uppercase hex digits with a leading `#`. */ color?: string; /** * Free-form JSON for Platform-defined attributes. */ metadata?: any; /** * Creation timestamp. */ readonly created_at?: string; /** * Last-modified timestamp. */ readonly updated_at?: string; };