/**
 * 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 RequestNotificationSubscriptionDTO
 */
export interface RequestNotificationSubscriptionDTO {
    /**
     * Indicates whether the user is subscribed (true) or not (false) to the request\'s notifications.
     * @type {boolean}
     * @memberof RequestNotificationSubscriptionDTO
     */
    subscribed?: boolean;
}
export declare function RequestNotificationSubscriptionDTOFromJSON(json: any): RequestNotificationSubscriptionDTO;
export declare function RequestNotificationSubscriptionDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): RequestNotificationSubscriptionDTO;
export declare function RequestNotificationSubscriptionDTOToJSON(value?: RequestNotificationSubscriptionDTO): any;
