Show / Hide Table of Contents

Class MemberChangeStatusDetails

Changed member status (invited, joined, suspended, etc.).

Inheritance
System.Object
MemberChangeStatusDetails
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Dropbox.Api.TeamLog
Assembly: Dropbox.Api.dll
Syntax
public class MemberChangeStatusDetails

Constructors

| Improve this Doc View Source

MemberChangeStatusDetails(MemberStatus, MemberStatus, ActionDetails, String, String)

Initializes a new instance of the MemberChangeStatusDetails class.

Declaration
public MemberChangeStatusDetails(MemberStatus newValue, MemberStatus previousValue = null, ActionDetails action = null, string newTeam = null, string previousTeam = null)
Parameters
Type Name Description
MemberStatus newValue

New member status.

MemberStatus previousValue

Previous member status. Might be missing due to historical data gap.

ActionDetails action

Additional information indicating the action taken that caused status change.

System.String newTeam

The user's new team name. This field is relevant when the user is transferred off the team.

System.String previousTeam

The user's previous team name. This field is relevant when the user is transferred onto the team.

Properties

| Improve this Doc View Source

Action

Additional information indicating the action taken that caused status change.

Declaration
public ActionDetails Action { get; protected set; }
Property Value
Type Description
ActionDetails
| Improve this Doc View Source

NewTeam

The user's new team name. This field is relevant when the user is transferred off the team.

Declaration
public string NewTeam { get; protected set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

NewValue

New member status.

Declaration
public MemberStatus NewValue { get; protected set; }
Property Value
Type Description
MemberStatus
| Improve this Doc View Source

PreviousTeam

The user's previous team name. This field is relevant when the user is transferred onto the team.

Declaration
public string PreviousTeam { get; protected set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

PreviousValue

Previous member status. Might be missing due to historical data gap.

Declaration
public MemberStatus PreviousValue { get; protected set; }
Property Value
Type Description
MemberStatus
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • MemberChangeStatusDetails(MemberStatus, MemberStatus, ActionDetails, String, String)
  • Properties
    • Action
    • NewTeam
    • NewValue
    • PreviousTeam
    • PreviousValue
Back to top Generated by DocFX