blob: 4560458374b4c9f687d9d72fbd9dcf57cbf511a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/**
* 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
|