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