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