/** * Models for Advert Actions */ import * as models from "../base"; /** * @public * Object that provides metrics data for actions pertaining to advert's native instrumentation. */ export class AdvertActionMetrics extends models.Model { constructor(instanceId, adamId, bundleId, advertType, invocation, purchaseType, reportingDestination) { super(); this.instanceId = instanceId; this.adamId = adamId; this.bundleId = bundleId; this.advertType = advertType; this.invocation = invocation; this.purchaseType = purchaseType; this.reportingDestination = reportingDestination; } } //# sourceMappingURL=advert-action-metrics.js.map