summaryrefslogtreecommitdiff
path: root/node_modules/@jet-app/app-store/tmp/src/api/models/ad-incidents.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/@jet-app/app-store/tmp/src/api/models/ad-incidents.js')
-rw-r--r--node_modules/@jet-app/app-store/tmp/src/api/models/ad-incidents.js26
1 files changed, 26 insertions, 0 deletions
diff --git a/node_modules/@jet-app/app-store/tmp/src/api/models/ad-incidents.js b/node_modules/@jet-app/app-store/tmp/src/api/models/ad-incidents.js
new file mode 100644
index 0000000..d62caa5
--- /dev/null
+++ b/node_modules/@jet-app/app-store/tmp/src/api/models/ad-incidents.js
@@ -0,0 +1,26 @@
+/**
+ * Models for Ad Incidents that may occur while building model.
+ */
+import { Model } from "./base";
+/**
+ * @public
+ * Base Incident Type
+ */
+export class AdIncident extends Model {
+ constructor(incidentType) {
+ super();
+ this.incidentType = incidentType;
+ }
+}
+/**
+ * @public
+ * Type of Ad Incident where Ad was discarded due to some reason
+ */
+export class DiscardAdIncident extends AdIncident {
+ constructor(instanceId, reason) {
+ super("discard");
+ this.instanceId = instanceId;
+ this.reason = reason;
+ }
+}
+//# sourceMappingURL=ad-incidents.js.map \ No newline at end of file