Spaces:
Build error
Build error
File size: 350 Bytes
d6afd6c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
package com.dalab.adminservice.client;
import com.dalab.adminservice.dto.JobStatusDTO;
import java.util.List;
/**
* Test client interface for Autolabel Job API
*/
public interface IAutolabelJobApiClient {
/**
* Get all labeling jobs status
* @return List of job status DTOs
*/
List<JobStatusDTO> getAutolabelJobs();
} |