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