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