toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final autoGeoLocationEnabled = this.autoGeoLocationEnabled;
final connectionStatus = this.connectionStatus;
final createTime = this.createTime;
final deploymentType = this.deploymentType;
final displayName = this.displayName;
final errors = this.errors;
final geoLocation = this.geoLocation;
final guid = this.guid;
final host = this.host;
final hostname = this.hostname;
final name = this.name;
final networkInterfaces = this.networkInterfaces;
final originatingIp = this.originatingIp;
final providerTags = this.providerTags;
final type = this.type;
final updateTime = this.updateTime;
final upgradeAvailable = this.upgradeAvailable;
final upgradeType = this.upgradeType;
final version = this.version;
return {
'autoGeoLocationEnabled': ?autoGeoLocationEnabled,
'connectionStatus': ?connectionStatus,
'createTime': ?createTime,
'deploymentType': ?deploymentType,
'displayName': ?displayName,
'errors': ?errors,
'geoLocation': ?geoLocation,
'guid': ?guid,
'host': ?host,
'hostname': ?hostname,
'name': ?name,
'networkInterfaces': ?networkInterfaces,
'originatingIp': ?originatingIp,
'providerTags': ?providerTags,
'type': ?type,
'updateTime': ?updateTime,
'upgradeAvailable': ?upgradeAvailable,
'upgradeType': ?upgradeType,
'version': ?version,
};
}