/* generated using openapi-typescript-codegen -- do no edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Client input to update project settings. */ export type ProjectSettingsInput = { /** * Whether the project is public. */ is_public?: boolean | null; /** * The name of the project. */ name?: string | null; /** * List of labels to associate with the project. */ labels?: Array | null; };