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