toJsonForProtocol method
Returns a JSON structure of the model, optimized for Protocol communication.
Implementation
@override
Map<String, dynamic> toJsonForProtocol() {
return {
'__className__': 'serverpod.ServerHealthMetric',
if (id != null) 'id': id,
'name': name,
'serverId': serverId,
'timestamp': timestamp.toJson(),
'isHealthy': isHealthy,
'value': value,
'granularity': granularity,
};
}