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