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