/**
 * 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 CustomerRequestActionDTO
 */
export interface CustomerRequestActionDTO {
    /**
     * Indicates whether the user can undertake the action (true) or not (false).
     * @type {boolean}
     * @memberof CustomerRequestActionDTO
     */
    allowed?: boolean;
}
export declare function CustomerRequestActionDTOFromJSON(json: any): CustomerRequestActionDTO;
export declare function CustomerRequestActionDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomerRequestActionDTO;
export declare function CustomerRequestActionDTOToJSON(value?: CustomerRequestActionDTO): any;
