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