toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final createTime = this.createTime;
final dataState = this.dataState;
final displayName = this.displayName;
final filteringOption = this.filteringOption;
final lastTuneTime = this.lastTuneTime;
final modelFeaturesConfig = this.modelFeaturesConfig;
final name = this.name;
final optimizationObjective = this.optimizationObjective;
final periodicTuningState = this.periodicTuningState;
final servingConfigLists = this.servingConfigLists;
final servingState = this.servingState;
final trainingState = this.trainingState;
final tuningOperation = this.tuningOperation;
final type = this.type;
final updateTime = this.updateTime;
return {
'createTime': ?createTime,
'dataState': ?dataState,
'displayName': ?displayName,
'filteringOption': ?filteringOption,
'lastTuneTime': ?lastTuneTime,
'modelFeaturesConfig': ?modelFeaturesConfig,
'name': ?name,
'optimizationObjective': ?optimizationObjective,
'periodicTuningState': ?periodicTuningState,
'servingConfigLists': ?servingConfigLists,
'servingState': ?servingState,
'trainingState': ?trainingState,
'tuningOperation': ?tuningOperation,
'type': ?type,
'updateTime': ?updateTime,
};
}