We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4283091 commit 9e9cdb7Copy full SHA for 9e9cdb7
src/typings/transferWebhooks/transferDataTracking.ts
@@ -30,7 +30,12 @@ export type TransferDataTracking = ConfirmationTrackingData | EstimationTracking
30
*/
31
export class TransferDataTrackingClass {
32
33
- static readonly discriminator: string = "type";
+ static readonly discriminator: string | undefined = "type";
34
35
- static readonly mapping: {[index: string]: string} | undefined = undefined;
36
-}
+ static readonly mapping: {[index: string]: string} | undefined = {
+ "confirmation": "ConfirmationTrackingData",
37
+ "estimation": "EstimationTrackingData",
38
+ "internalReview": "InternalReviewTrackingData",
39
+ };
40
+
41
+}
0 commit comments