toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final autoCreatedSubnetInfo = this.autoCreatedSubnetInfo;
final createTime = this.createTime;
final description = this.description;
final etag = this.etag;
final infrastructure = this.infrastructure;
final labels = this.labels;
final name = this.name;
final network = this.network;
final pscConfig = this.pscConfig;
final pscConnections = this.pscConnections;
final serviceClass = this.serviceClass;
final updateTime = this.updateTime;
return {
'autoCreatedSubnetInfo': ?autoCreatedSubnetInfo,
'createTime': ?createTime,
'description': ?description,
'etag': ?etag,
'infrastructure': ?infrastructure,
'labels': ?labels,
'name': ?name,
'network': ?network,
'pscConfig': ?pscConfig,
'pscConnections': ?pscConnections,
'serviceClass': ?serviceClass,
'updateTime': ?updateTime,
};
}