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