Dropbox .NET SDK

Class DashExternalUserOpenedStackDetails

External user opened a stack.

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

Constructors

View Source

DashExternalUserOpenedStackDetails(string, DashStackSharingScope, bool, bool, long?, DashStackType)

Initializes a new instance of the DashExternalUserOpenedStackDetails class.

Declaration
public DashExternalUserOpenedStackDetails(string stackName, DashStackSharingScope stackSharingScope, bool isInvited, bool isVerified, long? stackOwnerTeamId = null, DashStackType stackType = null)
Parameters
Type Name Description
string stackName

The name of the stack.

DashStackSharingScope stackSharingScope

The sharing scope of the stack.

bool isInvited

Whether the user was invited to the stack.

bool isVerified

Whether the user has verified their email address.

long? stackOwnerTeamId

The team ID of the stack owner.

DashStackType stackType

The type of stack backend.

Properties

View Source

IsInvited

Whether the user was invited to the stack.

Declaration
public bool IsInvited { get; protected set; }
Property Value
Type Description
bool
View Source

IsVerified

Whether the user has verified their email address.

Declaration
public bool IsVerified { get; protected set; }
Property Value
Type Description
bool
View Source

StackName

The name of the stack.

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

StackOwnerTeamId

The team ID of the stack owner.

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

StackSharingScope

The sharing scope of the stack.

Declaration
public DashStackSharingScope StackSharingScope { get; protected set; }
Property Value
Type Description
DashStackSharingScope
View Source

StackType

The type of stack backend.

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