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