DBPAPERPaperFolderCreateResult

Objective-C

@interface DBPAPERPaperFolderCreateResult : NSObject <DBSerializable, NSCopying>

Swift

class DBPAPERPaperFolderCreateResult : NSObject, DBSerializable, NSCopying

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

  • Folder ID of the newly created folder.

    Declaration

    Objective-C

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

    Swift

    var folderId: String { get }

Constructors

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

    Declaration

    Objective-C

    - (nonnull instancetype)initWithFolderId:(nonnull NSString *)folderId;

    Swift

    init(folderId: String)

    Parameters

    folderId

    Folder ID of the newly created folder.

    Return Value

    An initialized instance.