toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final accessType = this.accessType;
final address = this.address;
final createTime = this.createTime;
final description = this.description;
final ipAddress = this.ipAddress;
final labels = this.labels;
final name = this.name;
final network = this.network;
final pscForwardingRule = this.pscForwardingRule;
final subnetwork = this.subnetwork;
final targetGoogleApi = this.targetGoogleApi;
final updateTime = this.updateTime;
return {
'accessType': ?accessType,
'address': ?address,
'createTime': ?createTime,
'description': ?description,
'ipAddress': ?ipAddress,
'labels': ?labels,
'name': ?name,
'network': ?network,
'pscForwardingRule': ?pscForwardingRule,
'subnetwork': ?subnetwork,
'targetGoogleApi': ?targetGoogleApi,
'updateTime': ?updateTime,
};
}