Dropbox .NET SDK

Class MemberSpaceLimitsChangePolicyDetails

Changed team default member space limit.

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

Constructors

View Source

MemberSpaceLimitsChangePolicyDetails(ulong?, ulong?)

Initializes a new instance of the MemberSpaceLimitsChangePolicyDetails class.

Declaration
public MemberSpaceLimitsChangePolicyDetails(ulong? previousValue = null, ulong? newValue = null)
Parameters
Type Name Description
ulong? previousValue

Previous team default limit value in bytes. Might be missing due to historical data gap.

ulong? newValue

New team default limit value in bytes. Might be missing due to historical data gap.

Properties

View Source

NewValue

New team default limit value in bytes. Might be missing due to historical data gap.

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

PreviousValue

Previous team default limit value in bytes. Might be missing due to historical data gap.

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