Dropbox .NET SDK

Class FileRequestDeadline

File request deadline

Inheritance
object
FileRequestDeadline
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.TeamLog
Assembly: Dropbox.Api.dll
Syntax
public class FileRequestDeadline

Constructors

View Source

FileRequestDeadline(DateTime?, string)

Initializes a new instance of the FileRequestDeadline class.

Declaration
public FileRequestDeadline(DateTime? deadline = null, string allowLateUploads = null)
Parameters
Type Name Description
DateTime? deadline

The deadline for this file request. Might be missing due to historical data gap.

string allowLateUploads

If set, allow uploads after the deadline has passed.

Properties

View Source

AllowLateUploads

If set, allow uploads after the deadline has passed.

Declaration
public string AllowLateUploads { get; protected set; }
Property Value
Type Description
string
View Source

Deadline

The deadline for this file request. Might be missing due to historical data gap.

Declaration
public DateTime? Deadline { get; protected set; }
Property Value
Type Description
DateTime?
  • View Source
In this article
Back to top Dropbox .NET SDK