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