DBTEAMLOGLegalHoldsExportDownloadedDetails
Objective-C
@interface DBTEAMLOGLegalHoldsExportDownloadedDetails
: NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMLOGLegalHoldsExportDownloadedDetails : NSObject, DBSerializable, NSCopying
The LegalHoldsExportDownloadedDetails
struct.
Downloaded 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 }
-
Part.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nullable) NSString *part;
Swift
var part: String? { get }
-
Filename.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nullable) NSString *fileName;
Swift
var fileName: 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 part:(nullable NSString *)part fileName:(nullable NSString *)fileName;
Swift
init(legalHoldId: String, name: String, exportName: String, part: String?, fileName: String?)
Parameters
legalHoldId
Hold ID.
name
Hold name.
exportName
Export name.
part
Part.
fileName
Filename.
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 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.