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