toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final apiProxyType = this.apiProxyType;
final clientIpResolutionConfig = this.clientIpResolutionConfig;
final createdAt = this.createdAt;
final deploymentType = this.deploymentType;
final description = this.description;
final displayName = this.displayName;
final forwardProxyUri = this.forwardProxyUri;
final hasAttachedFlowHooks = this.hasAttachedFlowHooks;
final lastModifiedAt = this.lastModifiedAt;
final name = this.name;
final nodeConfig = this.nodeConfig;
final properties = this.properties;
final state = this.state;
final type = this.type;
return {
'apiProxyType': ?apiProxyType,
'clientIpResolutionConfig': ?clientIpResolutionConfig,
'createdAt': ?createdAt,
'deploymentType': ?deploymentType,
'description': ?description,
'displayName': ?displayName,
'forwardProxyUri': ?forwardProxyUri,
'hasAttachedFlowHooks': ?hasAttachedFlowHooks,
'lastModifiedAt': ?lastModifiedAt,
'name': ?name,
'nodeConfig': ?nodeConfig,
'properties': ?properties,
'state': ?state,
'type': ?type,
};
}