Skip to content

Pause

Pauses milestone if found and returns instance of milestone.

1
myMilestones.Pause(name: string):Milestone

Parameters

string name
    Name of milestone. Required.

Returns

Instance of milestone if found, otherwise null.

Remarks

In case of multiple milestones with the same name, only the In Progress milestone will be paused and returned.

Example

1
var sla1 = $Case.Milestones.Pause('SLA 1');

See Also