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