Show / Hide Table of Contents

Class UpdateFileRequestArgs

Arguments for UpdateAsync(UpdateFileRequestArgs).

Inheritance
System.Object
UpdateFileRequestArgs
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Dropbox.Api.FileRequests
Assembly: Dropbox.Api.dll
Syntax
public class UpdateFileRequestArgs

Constructors

| Improve this Doc View Source

UpdateFileRequestArgs(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 Source

Deadline

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
| Improve this Doc View Source

Description

The description of the file request.

Declaration
public string Description { get; protected set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

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
| Improve this Doc View Source

Id

The ID of the file request to update.

Declaration
public string Id { get; protected set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

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>
| Improve this Doc View Source

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
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • UpdateFileRequestArgs(String, String, String, UpdateFileRequestDeadline, Nullable<Boolean>, String)
  • Properties
    • Deadline
    • Description
    • Destination
    • Id
    • Open
    • Title
Back to top Generated by DocFX