testrail-modern-client
Version:
A modern TypeScript client for TestRail API
12 lines (11 loc) • 333 B
TypeScript
/**
* Represents a test case type in TestRail
*/
export interface CaseType {
/** The unique identifier of the case type */
id: number;
/** The name of the case type (e.g. "Automated", "Functionality", "Other") */
name: string;
/** Whether this is the default case type in TestRail */
is_default: boolean;
}