DBFILESCreateFolderResult
Objective-C
@interface DBFILESCreateFolderResult
    : DBFILESFileOpsResult <DBSerializable, NSCopying>
                Swift
class DBFILESCreateFolderResult : DBFILESFileOpsResult, DBSerializable, NSCopying
                The CreateFolderResult struct.
This class implements the DBSerializable protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
- 
                  
                  
Metadata of the created folder.
Declaration
Objective-C
@property (nonatomic, readonly) DBFILESFolderMetadata *_Nonnull metadata;Swift
var metadata: DBFILESFolderMetadata { get } 
- 
                  
                  
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype)initWithMetadata: (nonnull DBFILESFolderMetadata *)metadata;Swift
init(metadata: DBFILESFolderMetadata)Parameters
metadataMetadata of the created folder.
Return Value
An initialized instance.
 
View on GitHub
        DBFILESCreateFolderResult Class Reference