/**
 * 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 OrganizationServiceDeskUpdateDTO
 */
export interface OrganizationServiceDeskUpdateDTO {
    /**
     * List of organizations, specified by \'ID\' field values, to add to or remove from the service desk.
     * @type {number}
     * @memberof OrganizationServiceDeskUpdateDTO
     */
    organizationId?: number;
}
export declare function OrganizationServiceDeskUpdateDTOFromJSON(json: any): OrganizationServiceDeskUpdateDTO;
export declare function OrganizationServiceDeskUpdateDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): OrganizationServiceDeskUpdateDTO;
export declare function OrganizationServiceDeskUpdateDTOToJSON(value?: OrganizationServiceDeskUpdateDTO): any;
