DBTEAMLOGLegalHoldsExportAHoldDetails
Objective-C
@interface DBTEAMLOGLegalHoldsExportAHoldDetails
    : NSObject <DBSerializable, NSCopying>
                Swift
class DBTEAMLOGLegalHoldsExportAHoldDetails : NSObject, DBSerializable, NSCopying
                The LegalHoldsExportAHoldDetails struct.
Exported 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, nullable) NSString *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:(nullable NSString *)exportName;Swift
init(legalHoldId: String, name: String, exportName: String?)Parameters
legalHoldIdHold ID.
nameHold name.
exportNameExport name.
Return Value
An initialized instance.
 - 
                  
                  
Convenience constructor (exposes only non-nullable instance variables with no default value).
Declaration
Objective-C
- (nonnull instancetype)initWithLegalHoldId:(nonnull NSString *)legalHoldId name:(nonnull NSString *)name;Swift
init(legalHoldId: String, name: String)Parameters
legalHoldIdHold ID.
nameHold name.
Return Value
An initialized instance.
 
View on GitHub
        DBTEAMLOGLegalHoldsExportAHoldDetails Class Reference