getFieldDeserializers method
The deserialization information for the current model
Implementation
@override
Map<String, void Function(ParseNode)> getFieldDeserializers() {
var deserializerMap = <String, void Function(ParseNode)>{};
deserializerMap['payer'] = (node) => payer =
node.getEnumValue<AccountUnificationAccountControllerFeesPayer>(
(stringValue) => AccountUnificationAccountControllerFeesPayer.values
.where((enumVal) => enumVal.value == stringValue)
.firstOrNull);
return deserializerMap;
}