toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final displayName = this.displayName;
final loadBalancerName = this.loadBalancerName;
final matchedPortRange = this.matchedPortRange;
final matchedProtocol = this.matchedProtocol;
final networkUri = this.networkUri;
final pscGoogleApiTarget = this.pscGoogleApiTarget;
final pscServiceAttachmentUri = this.pscServiceAttachmentUri;
final region = this.region;
final target = this.target;
final uri = this.uri;
final vip = this.vip;
return {
'displayName': ?displayName,
'loadBalancerName': ?loadBalancerName,
'matchedPortRange': ?matchedPortRange,
'matchedProtocol': ?matchedProtocol,
'networkUri': ?networkUri,
'pscGoogleApiTarget': ?pscGoogleApiTarget,
'pscServiceAttachmentUri': ?pscServiceAttachmentUri,
'region': ?region,
'target': ?target,
'uri': ?uri,
'vip': ?vip,
};
}