/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface CustomFieldOptionUpdate { /** * Whether the option is disabled. */ disabled?: boolean; /** * The ID of the custom field option. */ id: string; /** * The value of the custom field option. */ value?: string; } //# sourceMappingURL=CustomFieldOptionUpdate.d.ts.map