toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final checkpointId = this.checkpointId;
  final deployedModelId = this.deployedModelId;
  final endpoint = this.endpoint;
  return {
    'checkpointId': ?checkpointId,
    'deployedModelId': ?deployedModelId,
    'endpoint': ?endpoint,
  };
}