/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { JsonTypeBeanAsResponse } from "../definitions/JsonTypeBeanAsResponse"; export interface FieldCreateMetadataAsResponse { /** * The list of values allowed in the field. */ allowedValues?: Array; /** * The URL that can be used to automatically complete the field. */ autoCompleteUrl?: string; /** * The configuration properties. */ configuration?: { [x: string]: any; }; /** * The default value of the field. */ defaultValue?: any; /** * The field id. */ fieldId: string; /** * Whether the field has a default value. */ hasDefaultValue?: boolean; /** * The key of the field. */ key: string; /** * The name of the field. */ name: string; /** * The list of operations that can be performed on the field. */ operations: Array; /** * Whether the field is required. */ required: boolean; /** * The data type of the field. */ schema: JsonTypeBeanAsResponse; } //# sourceMappingURL=FieldCreateMetadataAsResponse.d.ts.map