Dropbox .NET SDK

Class GuestAdminChangeStatusDetails

Changed guest team admin status.

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

Constructors

View Source

GuestAdminChangeStatusDetails(bool, TrustedTeamsRequestState, TrustedTeamsRequestState, TrustedTeamsRequestAction, string, string)

Initializes a new instance of the GuestAdminChangeStatusDetails class.

Declaration
public GuestAdminChangeStatusDetails(bool isGuest, TrustedTeamsRequestState previousValue, TrustedTeamsRequestState newValue, TrustedTeamsRequestAction actionDetails, string guestTeamName = null, string hostTeamName = null)
Parameters
Type Name Description
bool isGuest

True for guest, false for host.

TrustedTeamsRequestState previousValue

Previous request state.

TrustedTeamsRequestState newValue

New request state.

TrustedTeamsRequestAction actionDetails

Action details.

string guestTeamName

The name of the guest team.

string hostTeamName

The name of the host team.

Properties

View Source

ActionDetails

Action details.

Declaration
public TrustedTeamsRequestAction ActionDetails { get; protected set; }
Property Value
Type Description
TrustedTeamsRequestAction
View Source

GuestTeamName

The name of the guest team.

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

HostTeamName

The name of the host team.

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

IsGuest

True for guest, false for host.

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

NewValue

New request state.

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

PreviousValue

Previous request state.

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