We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8e6e2c commit 6afbeeeCopy full SHA for 6afbeee
src/typings/transferWebhooks/transferDataTracking.ts
@@ -30,11 +30,7 @@ export type TransferDataTracking = ConfirmationTrackingData | EstimationTracking
30
*/
31
export class TransferDataTrackingClass {
32
33
- static readonly discriminator: string | undefined = "type";
+ static readonly discriminator: string = "type";
34
35
- static readonly mapping: {[index: string]: string} | undefined = {
36
- "confirmation": "ConfirmationTrackingData",
37
- "estimation": "EstimationTrackingData",
38
- "internalReview": "InternalReviewTrackingData"
39
- };
+ static readonly mapping: {[index: string]: string} | undefined = undefined;
40
}
0 commit comments