Show / Hide Table of Contents

Class MemberAddArgBase

The member add arg base object

Inheritance
System.Object
MemberAddArgBase
MemberAddArg
MemberAddV2Arg
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.Team
Assembly: Dropbox.Api.dll
Syntax
public class MemberAddArgBase

Constructors

| Improve this Doc View Source

MemberAddArgBase(String, String, String, String, String, Boolean, Nullable<Boolean>)

Initializes a new instance of the MemberAddArgBase class.

Declaration
public MemberAddArgBase(string memberEmail, string memberGivenName = null, string memberSurname = null, string memberExternalId = null, string memberPersistentId = null, bool sendWelcomeEmail = true, bool? isDirectoryRestricted = null)
Parameters
Type Name Description
System.String memberEmail

The member email

System.String memberGivenName

Member's first name.

System.String memberSurname

Member's last name.

System.String memberExternalId

External ID for member.

System.String memberPersistentId

Persistent ID for member. This field is only available to teams using persistent ID SAML configuration.

System.Boolean sendWelcomeEmail

Whether to send a welcome email to the member. If send_welcome_email is false, no email invitation will be sent to the user. This may be useful for apps using single sign-on (SSO) flows for onboarding that want to handle announcements themselves.

System.Nullable<System.Boolean> isDirectoryRestricted

Whether a user is directory restricted.

Properties

| Improve this Doc View Source

IsDirectoryRestricted

Whether a user is directory restricted.

Declaration
public bool? IsDirectoryRestricted { get; protected set; }
Property Value
Type Description
System.Nullable<System.Boolean>
| Improve this Doc View Source

MemberEmail

Gets the member email of the member add arg base

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

MemberExternalId

External ID for member.

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

MemberGivenName

Member's first name.

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

MemberPersistentId

Persistent ID for member. This field is only available to teams using persistent ID SAML configuration.

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

MemberSurname

Member's last name.

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

SendWelcomeEmail

Whether to send a welcome email to the member. If send_welcome_email is false, no email invitation will be sent to the user. This may be useful for apps using single sign-on (SSO) flows for onboarding that want to handle announcements themselves.

Declaration
public bool SendWelcomeEmail { get; protected set; }
Property Value
Type Description
System.Boolean

See Also

MemberAddArg
MemberAddV2Arg
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • MemberAddArgBase(String, String, String, String, String, Boolean, Nullable<Boolean>)
  • Properties
    • IsDirectoryRestricted
    • MemberEmail
    • MemberExternalId
    • MemberGivenName
    • MemberPersistentId
    • MemberSurname
    • SendWelcomeEmail
  • See Also
Back to top Generated by DocFX