/**
 * 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 RequestTypeCreateDTO
 */
export interface RequestTypeCreateDTO {
    /**
     * ID of the request type to add to the service desk.
     * @type {string}
     * @memberof RequestTypeCreateDTO
     */
    issueTypeId?: string;
    /**
     * Name of the request type on the service desk.
     * @type {string}
     * @memberof RequestTypeCreateDTO
     */
    name?: string;
    /**
     * Description of the request type on the service desk.
     * @type {string}
     * @memberof RequestTypeCreateDTO
     */
    description?: string;
    /**
     * Help text for the request type on the service desk.
     * @type {string}
     * @memberof RequestTypeCreateDTO
     */
    helpText?: string;
}
export declare function RequestTypeCreateDTOFromJSON(json: any): RequestTypeCreateDTO;
export declare function RequestTypeCreateDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): RequestTypeCreateDTO;
export declare function RequestTypeCreateDTOToJSON(value?: RequestTypeCreateDTO): any;
