/**
 * Service Desk Public REST API
 * Public REST API for Jira Service Desk
 *
 * The version of the OpenAPI document: 1001.0.0-SNAPSHOT
 *
 *
 * 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 RequestTypeFieldValueDTO
 */
export interface RequestTypeFieldValueDTO {
    /**
     * Value of the field.
     * @type {string}
     * @memberof RequestTypeFieldValueDTO
     */
    value?: string;
    /**
     * Label for the field.
     * @type {string}
     * @memberof RequestTypeFieldValueDTO
     */
    label?: string;
    /**
     * List of child fields.
     * @type {Array<RequestTypeFieldValueDTO>}
     * @memberof RequestTypeFieldValueDTO
     */
    children?: Array<RequestTypeFieldValueDTO>;
}
export declare function RequestTypeFieldValueDTOFromJSON(json: any): RequestTypeFieldValueDTO;
export declare function RequestTypeFieldValueDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): RequestTypeFieldValueDTO;
export declare function RequestTypeFieldValueDTOToJSON(value?: RequestTypeFieldValueDTO): any;
