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