toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final apiOperationCount = this.apiOperationCount;
final createTime = this.createTime;
final hostname = this.hostname;
final knownOperationsCount = this.knownOperationsCount;
final lastEventDetectedTime = this.lastEventDetectedTime;
final name = this.name;
final origin = this.origin;
final serverIps = this.serverIps;
final sourceLocations = this.sourceLocations;
final sourceMetadata = this.sourceMetadata;
final sourceTypes = this.sourceTypes;
final style = this.style;
final unknownOperationsCount = this.unknownOperationsCount;
final updateTime = this.updateTime;
return {
'apiOperationCount': ?apiOperationCount,
'createTime': ?createTime,
'hostname': ?hostname,
'knownOperationsCount': ?knownOperationsCount,
'lastEventDetectedTime': ?lastEventDetectedTime,
'name': ?name,
'origin': ?origin,
'serverIps': ?serverIps,
'sourceLocations': ?sourceLocations,
'sourceMetadata': ?sourceMetadata,
'sourceTypes': ?sourceTypes,
'style': ?style,
'unknownOperationsCount': ?unknownOperationsCount,
'updateTime': ?updateTime,
};
}