Skip to content

Resume

Resumes a milestone that was previously paused, if found.

1
myMilestones.Resume(name: string):Milestone

Parameters

string name
    The name of the milestone. Required.

Returns

The Milestone instance if found; otherwise, null.

Remarks

If multiple milestones share the same name, only the milestone that is currently paused will be resumed and returned.

Example

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

See Also