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