Dropbox .NET SDK
Show / Hide Table of Contents

Class UserFeaturesGetValuesBatchArg

The user features get values batch arg object

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

Constructors

View Source

UserFeaturesGetValuesBatchArg(IEnumerable<UserFeature>)

Initializes a new instance of the UserFeaturesGetValuesBatchArg class.

Declaration
public UserFeaturesGetValuesBatchArg(IEnumerable<UserFeature> features)
Parameters
Type Name Description
IEnumerable<UserFeature> features

A list of features in UserFeature. If the list is empty, this route will return UserFeaturesGetValuesBatchError.

Properties

View Source

Features

A list of features in UserFeature. If the list is empty, this route will return UserFeaturesGetValuesBatchError.

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