DBUSERSNameSerializer
Objective-C
@interface DBUSERSNameSerializer : NSObject
                Swift
class DBUSERSNameSerializer : NSObject
                The serialization class for the Name struct.
- 
                  
                  
Serializes
DBUSERSNameinstances.Declaration
Objective-C
+ (nullable NSDictionary<NSString *, id> *)serialize: (nonnull DBUSERSName *)instance;Swift
class func serialize(_ instance: DBUSERSName) -> [String : Any]?Parameters
instanceAn instance of the
DBUSERSNameAPI object.Return Value
A json-compatible dictionary representation of the
DBUSERSNameAPI object. - 
                  
                  
Deserializes
DBUSERSNameinstances.Declaration
Objective-C
+ (nonnull DBUSERSName *)deserialize: (nonnull NSDictionary<NSString *, id> *)dict;Swift
class func deserialize(_ dict: [String : Any]) -> DBUSERSNameParameters
dictA json-compatible dictionary representation of the
DBUSERSNameAPI object.Return Value
An instantiation of the
DBUSERSNameobject. 
View on GitHub
        DBUSERSNameSerializer Class Reference