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