Dropbox .NET SDK
Show / Hide Table of Contents

Class BulkSuspendComplete

The bulk suspend complete object

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

Constructors

View Source

BulkSuspendComplete(long, long, long, long, BulkSuspendReportDeliveryStatus)

Initializes a new instance of the BulkSuspendComplete class.

Declaration
public BulkSuspendComplete(long requested, long suspended, long failed, long unknown, BulkSuspendReportDeliveryStatus reportDelivery)
Parameters
Type Name Description
long requested

The requested

long suspended

The suspended

long failed

The failed

long unknown

The unknown

BulkSuspendReportDeliveryStatus reportDelivery

The report delivery

Properties

View Source

Failed

Gets the failed of the bulk suspend complete

Declaration
public long Failed { get; protected set; }
Property Value
Type Description
long
View Source

ReportDelivery

Gets the report delivery of the bulk suspend complete

Declaration
public BulkSuspendReportDeliveryStatus ReportDelivery { get; protected set; }
Property Value
Type Description
BulkSuspendReportDeliveryStatus
View Source

Requested

Gets the requested of the bulk suspend complete

Declaration
public long Requested { get; protected set; }
Property Value
Type Description
long
View Source

Suspended

Gets the suspended of the bulk suspend complete

Declaration
public long Suspended { get; protected set; }
Property Value
Type Description
long
View Source

Unknown

Gets the unknown of the bulk suspend complete

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