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