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