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