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 789e76b commit ac40fadCopy full SHA for ac40fad
src/typings/transferWebhooks/transferDataTracking.ts
@@ -30,7 +30,11 @@ 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;
+ static readonly mapping: {[index: string]: string} | undefined = {
36
+ "confirmation": "ConfirmationTrackingData",
37
+ "estimation": "EstimationTrackingData",
38
+ "internalReview": "InternalReviewTrackingData"
39
+ };
40
}
0 commit comments