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