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