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