toJson method
Implementation
Map<String, dynamic> toJson() {
final authentication = this.authentication;
final authenticationConfiguration = this.authenticationConfiguration;
final filters = this.filters;
final name = this.name;
final targetAction = this.targetAction;
final targetPipeline = this.targetPipeline;
return {
'authentication': authentication.toValue(),
'authenticationConfiguration': authenticationConfiguration,
'filters': filters,
'name': name,
'targetAction': targetAction,
'targetPipeline': targetPipeline,
};
}