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