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