Dropbox .NET SDK
Show / Hide Table of Contents

Class DeleteSecondaryEmailsArg

The delete secondary emails arg object

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

Constructors

View Source

DeleteSecondaryEmailsArg(IEnumerable<UserSecondaryEmailsArg>)

Initializes a new instance of the DeleteSecondaryEmailsArg class.

Declaration
public DeleteSecondaryEmailsArg(IEnumerable<UserSecondaryEmailsArg> emailsToDelete)
Parameters
Type Name Description
IEnumerable<UserSecondaryEmailsArg> emailsToDelete

List of users and their secondary emails to delete.

Properties

View Source

EmailsToDelete

List of users and their secondary emails to delete.

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