DBFILEREQUESTSListFileRequestsContinueArg

Objective-C

@interface DBFILEREQUESTSListFileRequestsContinueArg
    : NSObject <DBSerializable, NSCopying>

Swift

class DBFILEREQUESTSListFileRequestsContinueArg : NSObject, DBSerializable, NSCopying

The ListFileRequestsContinueArg 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

  • The cursor returned by the previous API call specified in the endpoint description.

    Declaration

    Objective-C

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

    Swift

    var cursor: String { get }

Constructors

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

    Declaration

    Objective-C

    - (nonnull instancetype)initWithCursor:(nonnull NSString *)cursor;

    Swift

    init(cursor: String)

    Parameters

    cursor

    The cursor returned by the previous API call specified in the endpoint description.

    Return Value

    An initialized instance.