toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final anomalyCount = this.anomalyCount;
final deployedModelId = this.deployedModelId;
final featureStats = this.featureStats;
final objective = this.objective;
return {
'anomalyCount': ?anomalyCount,
'deployedModelId': ?deployedModelId,
'featureStats': ?featureStats,
'objective': ?objective,
};
}