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