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