/** * Adzerk Decision API * Adzerk Decision API * * The version of the OpenAPI document: 1.0 * * * 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 Content */ export interface Content { /** * * @type {string} * @memberof Content */ type?: string; /** * * @type {string} * @memberof Content */ template?: string; /** * * @type {string} * @memberof Content */ customTemplate?: string; /** * * @type {object} * @memberof Content */ data?: object; /** * * @type {string} * @memberof Content */ body?: string; } export declare function ContentFromJSON(json: any): Content; export declare function ContentFromJSONTyped(json: any, ignoreDiscriminator: boolean): Content; export declare function ContentToJSON(value?: Content | null): any;