FileRequest
public class FileRequest : CustomStringConvertible, JSONRepresentable
A file request https://www.dropbox.com/help/9090 for receiving files into the user’s Dropbox account.
-
The ID of the file request.
Declaration
Swift
public let id: String
-
The URL of the file request.
Declaration
Swift
public let url: String
-
The title of the file request.
Declaration
Swift
public let title: String
-
The path of the folder in the Dropbox where uploaded files will be sent. This can be null if the destination was removed. For apps with the app folder permission, this will be relative to the app folder.
Declaration
Swift
public let destination: String?
-
When this file request was created.
Declaration
Swift
public let created: Date
-
The deadline for this file request. Only set if the request has a deadline.
Declaration
Swift
public let deadline: FileRequests.FileRequestDeadline?
-
Whether or not the file request is open. If the file request is closed, it will not accept any more file submissions.
Declaration
Swift
public let isOpen: Bool
-
The number of files this file request has received.
Declaration
Swift
public let fileCount: Int64
-
A description of the file request.
Declaration
Swift
public let description_: String?
-
Declaration
Swift
public var description: String { get }