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