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