testrail-modern-client
Version:
A modern TypeScript client for TestRail API
16 lines (15 loc) • 430 B
TypeScript
/**
* Represents a test case priority in TestRail.
*/
export interface Priority {
/** The unique ID of the priority */
id: number;
/** The full name of the priority */
name: string;
/** The short version of the priority name */
short_name: string;
/** True for the default priority and false otherwise */
is_default: boolean;
/** The order/position of the priority */
priority: number;
}