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