getFieldDeserializers method
The deserialization information for the current model
Implementation
@override
Map<String, void Function(ParseNode)> getFieldDeserializers() {
var deserializerMap = <String, void Function(ParseNode)>{};
deserializerMap['customer_notification'] = (node) => customerNotification =
node.getObjectValue<PaymentIntentProcessingCustomerNotification>(
PaymentIntentProcessingCustomerNotification
.createFromDiscriminatorValue);
return deserializerMap;
}