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