Class UpdateFileRequestArgs
Arguments for UpdateAsync(UpdateFileRequestArgs).
Inheritance
Inherited Members
Namespace: Dropbox.Api.FileRequests
Assembly: Dropbox.Api.dll
Syntax
public class UpdateFileRequestArgs
Constructors
| Improve this Doc View SourceUpdateFileRequestArgs(String, String, String, UpdateFileRequestDeadline, Nullable<Boolean>, String)
Initializes a new instance of the UpdateFileRequestArgs class.
Declaration
public UpdateFileRequestArgs(string id, string title = null, string destination = null, UpdateFileRequestDeadline deadline = null, bool? open = null, string description = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | id | The ID of the file request to update. |
System.String | title | The new title of the file request. Must not be empty. |
System.String | destination | The new path of the folder in the Dropbox where uploaded files will be sent. For apps with the app folder permission, this will be relative to the app folder. |
UpdateFileRequestDeadline | deadline | The new deadline for the file request. Deadlines can only be set by Professional and Business accounts. |
System.Nullable<System.Boolean> | open | Whether to set this file request as open or closed. |
System.String | description | The description of the file request. |
Properties
| Improve this Doc View SourceDeadline
The new deadline for the file request. Deadlines can only be set by Professional and Business accounts.
Declaration
public UpdateFileRequestDeadline Deadline { get; protected set; }
Property Value
Type | Description |
---|---|
UpdateFileRequestDeadline |
Description
The description of the file request.
Declaration
public string Description { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
Destination
The new path of the folder in the Dropbox where uploaded files will be sent. For apps with the app folder permission, this will be relative to the app folder.
Declaration
public string Destination { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
Id
The ID of the file request to update.
Declaration
public string Id { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
Open
Whether to set this file request as open or closed.
Declaration
public bool? Open { get; protected set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Boolean> |
Title
The new title of the file request. Must not be empty.
Declaration
public string Title { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |