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