/**
 * 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 CustomFieldFinder
 */
export interface CustomFieldFinder {
    /**
     * Custom Field ID
     * @type {string}
     * @memberof CustomFieldFinder
     */
    readonly id?: string;
    /**
     * Custom Field name to use as a label if provided
     * @type {string}
     * @memberof CustomFieldFinder
     */
    readonly name?: string | null;
    /**
     * More information about the custom field
     * @type {string}
     * @memberof CustomFieldFinder
     */
    description?: string | null;
    /**
     * Custom Field value
     * @type {any}
     * @memberof CustomFieldFinder
     */
    value?: any | null;
    /**
     * JSONPath finder for retrieving this value when mapping a response payload from downstream
     * @type {string}
     * @memberof CustomFieldFinder
     */
    readonly finder?: string;
}
export declare function CustomFieldFinderFromJSON(json: any): CustomFieldFinder;
export declare function CustomFieldFinderFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomFieldFinder;
export declare function CustomFieldFinderToJSON(value?: CustomFieldFinder | null): any;
