TaskStatusType
extends Enumeration
in package
Represents the status of a task item.
Table of Contents
Constants
- COMPLETED = 'Completed'
- Indicates that the task has been completed.
- DEFERRED = 'Deferred'
- Indicates that the task has been deferred.
- IN_PROGRESS = 'InProgress'
- Indicates that the task has been started.
- NOT_STARTED = 'NotStarted'
- Indicates that the task has not yet been started.
- WAITING_ON_OTHERS = 'WaitingOnOthers'
- Indicates that the task is waiting on others.
Properties
- $_ : string
- Element value.
Methods
- __clone() : mixed
- Clones any object properties on a type object when it is cloned. Allows for a deep clone required when using object to represent data types when making a SOAP call.
- __toString() : string
- Returns the value of this enumeration as a string.
Constants
COMPLETED
Indicates that the task has been completed.
public
string
COMPLETED
= 'Completed'
Tags
DEFERRED
Indicates that the task has been deferred.
public
string
DEFERRED
= 'Deferred'
Tags
IN_PROGRESS
Indicates that the task has been started.
public
string
IN_PROGRESS
= 'InProgress'
Tags
NOT_STARTED
Indicates that the task has not yet been started.
public
string
NOT_STARTED
= 'NotStarted'
Tags
WAITING_ON_OTHERS
Indicates that the task is waiting on others.
public
string
WAITING_ON_OTHERS
= 'WaitingOnOthers'
Tags
Properties
$_
Element value.
public
string
$_
Tags
Methods
__clone()
Clones any object properties on a type object when it is cloned. Allows for a deep clone required when using object to represent data types when making a SOAP call.
public
__clone() : mixed
__toString()
Returns the value of this enumeration as a string.
public
__toString() : string
.