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