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