Class CreateUserRequest
The create user details.
Inheritance
System.Object
CreateUserRequest
Namespace: BoldSign.Model
Assembly: BoldSign.Api.dll
Syntax
public class CreateUserRequest : object
Constructors
| Improve this Doc View SourceCreateUserRequest(String, String, Nullable<UserRoleType>)
Initializes a new instance of the CreateUserRequest class.
Declaration
public CreateUserRequest(string emailId = null, string teamId = null, UserRoleType? userRole = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | emailId | Gets or sets the emailId. |
System.String | teamId | Gets or sets the teamId(optional). |
System.Nullable<UserRoleType> | userRole | Gets or sets the userRole(optional). |
Properties
| Improve this Doc View SourceEmailId
Gets or sets the email.
Declaration
public string EmailId { get; set; }
Property Value
Type | Description |
---|---|
System.String |
TeamId
Gets or sets the TeamId.
Declaration
public string TeamId { get; set; }
Property Value
Type | Description |
---|---|
System.String |
UserRole
Gets or sets the UserRole.
Declaration
public UserRoleType? UserRole { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<UserRoleType> |