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