DBFILESGetTemporaryUploadLinkResult
Objective-C
@interface DBFILESGetTemporaryUploadLinkResult
: NSObject <DBSerializable, NSCopying>
Swift
class DBFILESGetTemporaryUploadLinkResult : NSObject, DBSerializable, NSCopying
The GetTemporaryUploadLinkResult
struct.
This class implements the DBSerializable
protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
-
The temporary link which can be used to stream a file to a Dropbox location.
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull link;
Swift
var link: String { get }
-
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype)initWithLink:(nonnull NSString *)link;
Swift
init(link: String)
Parameters
link
The temporary link which can be used to stream a file to a Dropbox location.
Return Value
An initialized instance.