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