DBTEAMLOGLegalHoldsChangeHoldNameDetails
Objective-C
@interface DBTEAMLOGLegalHoldsChangeHoldNameDetails
    : NSObject <DBSerializable, NSCopying>
                Swift
class DBTEAMLOGLegalHoldsChangeHoldNameDetails : NSObject, DBSerializable, NSCopying
                The LegalHoldsChangeHoldNameDetails struct.
Renamed 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 } - 
                  
                  
Previous Name.
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull previousValue;Swift
var previousValue: String { get } - 
                  
                  
New Name.
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull dNewValue;Swift
var dNewValue: String { get } 
- 
                  
                  
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype)initWithLegalHoldId:(nonnull NSString *)legalHoldId previousValue:(nonnull NSString *)previousValue dNewValue:(nonnull NSString *)dNewValue;Swift
init(legalHoldId: String, previousValue: String, dNewValue: String)Parameters
legalHoldIdHold ID.
previousValuePrevious Name.
dNewValueNew Name.
Return Value
An initialized instance.
 
View on GitHub
        DBTEAMLOGLegalHoldsChangeHoldNameDetails Class Reference