DBTEAMLegalHoldsListHeldRevisionsContinueArg

Objective-C

@interface DBTEAMLegalHoldsListHeldRevisionsContinueArg
    : NSObject <DBSerializable, NSCopying>

Swift

class DBTEAMLegalHoldsListHeldRevisionsContinueArg : NSObject, DBSerializable, NSCopying

The LegalHoldsListHeldRevisionsContinueArg struct.

This class implements the DBSerializable protocol (serialize and deserialize instance methods), which is required for all Obj-C SDK API route objects.

Instance fields

  • id_

    The legal hold Id.

    Declaration

    Objective-C

    @property (nonatomic, copy, readonly) NSString *_Nonnull id_;

    Swift

    var id_: String { get }
  • The cursor idicates where to continue reading file metadata entries for the next API call. When there are no more entries, the cursor will return none.

    Declaration

    Objective-C

    @property (nonatomic, copy, readonly, nullable) NSString *cursor;

    Swift

    var cursor: String? { get }

Constructors

  • Full constructor for the struct (exposes all instance variables).

    Declaration

    Objective-C

    - (nonnull instancetype)initWithId_:(nonnull NSString *)id_
                                 cursor:(nullable NSString *)cursor;

    Swift

    init(id_: String, cursor: String?)

    Parameters

    id_

    The legal hold Id.

    cursor

    The cursor idicates where to continue reading file metadata entries for the next API call. When there are no more entries, the cursor will return none.

    Return Value

    An initialized instance.

  • Convenience constructor (exposes only non-nullable instance variables with no default value).

    Declaration

    Objective-C

    - (nonnull instancetype)initWithId_:(nonnull NSString *)id_;

    Swift

    init(id_: String)

    Parameters

    id_

    The legal hold Id.

    Return Value

    An initialized instance.