/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface FieldConfigurationItemAsResponse { /** * The description of the field within the field configuration. */ description?: string; /** * The ID of the field within the field configuration. */ id: string; /** * Whether the field is hidden in the field configuration. */ isHidden?: boolean; /** * Whether the field is required in the field configuration. */ isRequired?: boolean; /** * The renderer type for the field within the field configuration. */ renderer?: string; } //# sourceMappingURL=FieldConfigurationItemAsResponse.d.ts.map