Class UserResendResult
Result of trying to resend verification emails to a user. 'success' is the only value indicating that a user was successfully retrieved for sending verification emails. The other values explain the type of error that occurred, and include the user for which the error occurred.
Inheritance
System.Object
UserResendResult
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 UserResendResult
Constructors
| Improve this Doc View SourceUserResendResult()
Initializes a new instance of the UserResendResult class.
Declaration
public UserResendResult()
Properties
| Improve this Doc View SourceAsInvalidUser
Gets this instance as a InvalidUser, or null
.
Declaration
public UserResendResult.InvalidUser AsInvalidUser { get; }
Property Value
Type | Description |
---|---|
UserResendResult.InvalidUser |
AsOther
Gets this instance as a Other, or null
.
Declaration
public UserResendResult.Other AsOther { get; }
Property Value
Type | Description |
---|---|
UserResendResult.Other |
AsSuccess
Gets this instance as a Success, or null
.
Declaration
public UserResendResult.Success AsSuccess { get; }
Property Value
Type | Description |
---|---|
UserResendResult.Success |
IsInvalidUser
Gets a value indicating whether this instance is InvalidUser
Declaration
public bool IsInvalidUser { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsOther
Gets a value indicating whether this instance is Other
Declaration
public bool IsOther { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsSuccess
Gets a value indicating whether this instance is Success
Declaration
public bool IsSuccess { get; }
Property Value
Type | Description |
---|---|
System.Boolean |