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