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