Dropbox .NET SDK

Class FileRequestDetails

File request details

Inheritance
object
FileRequestDetails
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 FileRequestDetails

Constructors

View Source

FileRequestDetails(ulong, FileRequestDeadline, bool?)

Initializes a new instance of the FileRequestDetails class.

Declaration
public FileRequestDetails(ulong assetIndex, FileRequestDeadline deadline = null, bool? hasPassword = null)
Parameters
Type Name Description
ulong assetIndex

Asset position in the Assets list.

FileRequestDeadline deadline

File request deadline.

bool? hasPassword

Flag represents if this file request has password.

Properties

View Source

AssetIndex

Asset position in the Assets list.

Declaration
public ulong AssetIndex { get; protected set; }
Property Value
Type Description
ulong
View Source

Deadline

File request deadline.

Declaration
public FileRequestDeadline Deadline { get; protected set; }
Property Value
Type Description
FileRequestDeadline
View Source

HasPassword

Flag represents if this file request has password.

Declaration
public bool? HasPassword { get; protected set; }
Property Value
Type Description
bool?

See Also

FileRequestChangeDetails
  • View Source
In this article
Back to top Dropbox .NET SDK