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