UNPKG

testrail-modern-client

Version:
12 lines (11 loc) 333 B
/** * 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; }