Dropbox .NET SDK
Show / Hide Table of Contents

Class GetAccountBatchArg

The get account batch arg object

Inheritance
object
GetAccountBatchArg
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Users
Assembly: Dropbox.Api.dll
Syntax
public class GetAccountBatchArg

Constructors

View Source

GetAccountBatchArg(IEnumerable<string>)

Initializes a new instance of the GetAccountBatchArg class.

Declaration
public GetAccountBatchArg(IEnumerable<string> accountIds)
Parameters
Type Name Description
IEnumerable<string> accountIds

List of user account identifiers. Should not contain any duplicate account IDs.

Properties

View Source

AccountIds

List of user account identifiers. Should not contain any duplicate account IDs.

Declaration
public IList<string> AccountIds { get; protected set; }
Property Value
Type Description
IList<string>
  • View Source
In this article
Back to top Dropbox .NET SDK