toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final deployedModelRefs = this.deployedModelRefs;
final deployedModels = this.deployedModels;
final nextPageToken = this.nextPageToken;
final totalDeployedModelCount = this.totalDeployedModelCount;
final totalEndpointCount = this.totalEndpointCount;
return {
'deployedModelRefs': ?deployedModelRefs,
'deployedModels': ?deployedModels,
'nextPageToken': ?nextPageToken,
'totalDeployedModelCount': ?totalDeployedModelCount,
'totalEndpointCount': ?totalEndpointCount,
};
}