Class MemberAddArgBase
The member add arg base object
Inherited Members
Namespace: Dropbox.Api.Team
Assembly: Dropbox.Api.dll
Syntax
public class MemberAddArgBase
Constructors
| Improve this Doc View SourceMemberAddArgBase(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 SourceIsDirectoryRestricted
Whether a user is directory restricted.
Declaration
public bool? IsDirectoryRestricted { get; protected set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Boolean> |
MemberEmail
Gets the member email of the member add arg base
Declaration
public string MemberEmail { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
MemberExternalId
External ID for member.
Declaration
public string MemberExternalId { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
MemberGivenName
Member's first name.
Declaration
public string MemberGivenName { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
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 |
MemberSurname
Member's last name.
Declaration
public string MemberSurname { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
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 |