/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface CustomFieldOptionObject { /** * Name of the dropdown option */ name: string; /** * Position of the dropdown option */ position?: number; /** * Value of the dropdown option */ value: string; } //# sourceMappingURL=CustomFieldOptionObject.d.ts.map