AI-generated Key Takeaways
-
GMTSTaskState
is an enumeration that defines the possible states of a task. -
GMTSTaskStateUnspecified
represents the default state of a task, which is assigned a value of 0. -
GMTSTaskStateOpened
indicates that a task is in an open state, with a corresponding value of 1. -
GMTSTaskStateClosed
signifies that a task is closed, identified by the associated value of 2.
GMTSTaskState
enum GMTSTaskState : NSUInteger {}
\defgroup GMTSTaskState GMTSTaskState @{
-
Declaration
Swift
case unspecified = 0
Objective-C
GMTSTaskStateUnspecified = 0
-
Declaration
Swift
case opened = 1
Objective-C
GMTSTaskStateOpened
-
Declaration
Swift
case closed = 2
Objective-C
GMTSTaskStateClosed