Class TemplateSenderDetails
The template document sender user details have functions that define the email address, name of user ID of the recipient.
Inheritance
System.Object
TemplateSenderDetails
Namespace: BoldSign.Model
Assembly: BoldSign.Api.dll
Syntax
public class TemplateSenderDetails : object
Constructors
| Improve this Doc View SourceTemplateSenderDetails(String, String, String)
Initializes a new instance of the TemplateSenderDetails class.
Declaration
public TemplateSenderDetails(string name = null, string emailAddress = null, string userId = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | Gets or sets recipient Name.. |
System.String | emailAddress | Gets or sets recipient Email address.. |
System.String | userId | Gets or sets recipient User Id.. |
Properties
| Improve this Doc View SourceEmailAddress
Gets or sets recipient Email address.
Declaration
public string EmailAddress { get; set; }
Property Value
Type | Description |
---|---|
System.String | Gets or sets recipient Email address. |
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 recipient User Id.
Declaration
public string UserId { get; set; }
Property Value
Type | Description |
---|---|
System.String | Gets or sets recipient 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 |