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