Parameters for the trainingsDelete operation.

interface TrainingsDeleteParams {
    hardDelete?: boolean;
    headers?: OutgoingHttpHeaders;
    projectId?: string;
    spaceId?: string;
    trainingId: string;
}

Properties

hardDelete?: boolean

Set to true in order to also delete the job or request metadata.

headers?: OutgoingHttpHeaders
projectId?: string

The project that contains the resource. Either space_id or project_id query parameter has to be given.

spaceId?: string

The space that contains the resource. Either space_id or project_id query parameter has to be given.

trainingId: string

The training identifier.