DBTEAMGroupMembersSelectorSerializer
Objective-C
@interface DBTEAMGroupMembersSelectorSerializer : NSObject
Swift
class DBTEAMGroupMembersSelectorSerializer : NSObject
The serialization class for the GroupMembersSelector
struct.
-
Serializes
DBTEAMGroupMembersSelector
instances.Declaration
Objective-C
+ (nullable NSDictionary<NSString *, id> *)serialize: (nonnull DBTEAMGroupMembersSelector *)instance;
Swift
class func serialize(_ instance: DBTEAMGroupMembersSelector) -> [String : Any]?
Parameters
instance
An instance of the
DBTEAMGroupMembersSelector
API object.Return Value
A json-compatible dictionary representation of the
DBTEAMGroupMembersSelector
API object. -
Deserializes
DBTEAMGroupMembersSelector
instances.Declaration
Objective-C
+ (nonnull DBTEAMGroupMembersSelector *)deserialize: (nonnull NSDictionary<NSString *, id> *)dict;
Swift
class func deserialize(_ dict: [String : Any]) -> DBTEAMGroupMembersSelector
Parameters
dict
A json-compatible dictionary representation of the
DBTEAMGroupMembersSelector
API object.Return Value
An instantiation of the
DBTEAMGroupMembersSelector
object.