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