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