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