Represents the test settings of the run. Used to create test settings and fetch test settings

interface TestSettings2 {
    areaPath?: string;
    createdBy?: IdentityRef;
    createdDate?: Date;
    description?: string;
    isPublic?: boolean;
    lastUpdatedBy?: IdentityRef;
    lastUpdatedDate?: Date;
    machineRoles?: string;
    testSettingsContent: string;
    testSettingsId?: number;
    testSettingsName: string;
}

Properties

areaPath?: string

Area path required to create test settings

createdBy?: IdentityRef
createdDate?: Date
description?: string

Description of the test settings. Used in create test settings.

isPublic?: boolean

Indicates if the tests settings is public or private.Used in create test settings.

lastUpdatedBy?: IdentityRef
lastUpdatedDate?: Date
machineRoles?: string

Xml string of machine roles. Used in create test settings.

testSettingsContent: string

Test settings content.

testSettingsId?: number

Test settings id.

testSettingsName: string

Test settings name.