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