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