DBTEAMLOGLegalHoldsExportRemovedDetails
Objective-C
@interface DBTEAMLOGLegalHoldsExportRemovedDetails
: NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMLOGLegalHoldsExportRemovedDetails : NSObject, DBSerializable, NSCopying
The LegalHoldsExportRemovedDetails
struct.
Removed export for a hold.
This class implements the DBSerializable
protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
-
Hold ID.
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull legalHoldId;
Swift
var legalHoldId: String { get }
-
Hold name.
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull name;
Swift
var name: String { get }
-
Export name.
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull exportName;
Swift
var exportName: String { get }
-
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype)initWithLegalHoldId:(nonnull NSString *)legalHoldId name:(nonnull NSString *)name exportName:(nonnull NSString *)exportName;
Swift
init(legalHoldId: String, name: String, exportName: String)
Parameters
legalHoldId
Hold ID.
name
Hold name.
exportName
Export name.
Return Value
An initialized instance.