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