/**
 * Apideck
 * The Apideck OpenAPI Spec: SDK Optimized
 *
 * The version of the OpenAPI document: 10.13.0
 * Contact: support@apideck.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 *
 * @export
 * @interface CustomField
 */
export interface CustomField {
    /**
     * Unique identifier for the custom field.
     * @type {string}
     * @memberof CustomField
     */
    id: string | null;
    /**
     * Name of the custom field.
     * @type {string}
     * @memberof CustomField
     */
    name?: string | null;
    /**
     * More information about the custom field
     * @type {string}
     * @memberof CustomField
     */
    description?: string | null;
    /**
     *
     * @type {string | number | boolean | object | Array<string> | Array<object>}
     * @memberof CustomField
     */
    value?: string | number | boolean | object | Array<string> | Array<object> | null;
}
export declare function CustomFieldFromJSON(json: any): CustomField;
export declare function CustomFieldFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomField;
export declare function CustomFieldToJSON(value?: CustomField | null): any;
