Class DocumentSenderDetail
The document sender detail includes Email ID, name and so on.
Inheritance
System.Object
DocumentSenderDetail
Namespace: BoldSign.Model
Assembly: BoldSign.Api.dll
Syntax
public class DocumentSenderDetail : object
Constructors
| Improve this Doc View SourceDocumentSenderDetail(String, String, String, Boolean)
Initializes a new instance of the DocumentSenderDetail class.
Declaration
public DocumentSenderDetail(string name = null, string emailAddress = null, string userId = null, bool isViewed = false)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | Gets or sets recipient Name.. |
System.String | emailAddress | Gets or sets the email address.. |
System.String | userId | Gets or sets the user id.. |
System.Boolean | isViewed | Gets or sets a value indicating whether is viewed. (default to false). |
Properties
| Improve this Doc View SourceEmailAddress
Gets or sets the email address.
Declaration
public string EmailAddress { get; set; }
Property Value
Type | Description |
---|---|
System.String | Gets or sets the email address. |
IsViewed
Gets or sets a value indicating whether document is viewed.
Declaration
public bool IsViewed { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | Gets or sets a value indicating whether is viewed. |
Name
Gets or sets recipient Name.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String | Gets or sets recipient Name. |
UserId
Gets or sets the user ID.
Declaration
public string UserId { get; set; }
Property Value
Type | Description |
---|---|
System.String | Gets or sets the user id. |
Methods
| Improve this Doc View SourceToJson()
Returns the JSON string presentation of the object
Declaration
public virtual string ToJson()
Returns
Type | Description |
---|---|
System.String | JSON string presentation of the object |