/**
 * 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 ContentDTO
 */
export interface ContentDTO {
    /**
     * Url containing the body of the article (without title), suitable for rendering in an iframe
     * @type {string}
     * @memberof ContentDTO
     */
    iframeSrc?: string;
}
export declare function ContentDTOFromJSON(json: any): ContentDTO;
export declare function ContentDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContentDTO;
export declare function ContentDTOToJSON(value?: ContentDTO): any;
