/** * 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. */ import { Content, Event, MatchedPoint, PricingData } from './'; /** * * @export * @interface Decision */ export interface Decision { /** * * @type {number} * @memberof Decision */ adId?: number; /** * * @type {number} * @memberof Decision */ advertiserId?: number; /** * * @type {number} * @memberof Decision */ creativeId?: number; /** * * @type {number} * @memberof Decision */ flightId?: number; /** * * @type {number} * @memberof Decision */ campaignId?: number; /** * * @type {number} * @memberof Decision */ priorityId?: number; /** * * @type {string} * @memberof Decision */ clickUrl?: string; /** * * @type {Array} * @memberof Decision */ contents?: Array; /** * * @type {string} * @memberof Decision */ impressionUrl?: string; /** * * @type {Array} * @memberof Decision */ events?: Array; /** * * @type {Array} * @memberof Decision */ matchedPoints?: Array; /** * * @type {PricingData} * @memberof Decision */ pricing?: PricingData; } export declare function DecisionFromJSON(json: any): Decision; export declare function DecisionFromJSONTyped(json: any, ignoreDiscriminator: boolean): Decision; export declare function DecisionToJSON(value?: Decision | null): any;