Dropbox .NET SDK
Show / Hide Table of Contents

Class GroupMembersChangeResult

Result returned by GroupsMembersAddAsync(GroupMembersAddArg) and GroupsMembersRemoveAsync(GroupMembersRemoveArg).

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

Constructors

View Source

GroupMembersChangeResult(GroupFullInfo, string)

Initializes a new instance of the GroupMembersChangeResult class.

Declaration
public GroupMembersChangeResult(GroupFullInfo groupInfo, string asyncJobId)
Parameters
Type Name Description
GroupFullInfo groupInfo

The group info after member change operation has been performed.

string asyncJobId

Field is deprecated. For legacy purposes async_job_id will always return one space ' '. Formerly, it was an ID that was used to obtain the status of granting/revoking group-owned resources. It's no longer necessary because the async processing now happens automatically.

Properties

View Source

AsyncJobId

Field is deprecated. For legacy purposes async_job_id will always return one space ' '. Formerly, it was an ID that was used to obtain the status of granting/revoking group-owned resources. It's no longer necessary because the async processing now happens automatically.

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

GroupInfo

The group info after member change operation has been performed.

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