Class BehalfOf
The document's behalf sender detail includes name and email id.
[DataContract]
public class BehalfOf
- Inheritance
-
BehalfOf
- Inherited Members
Constructors
BehalfOf(string, string)
Initializes a new instance of the BehalfOf class.
public BehalfOf(string name = null, string emailAddress = null)
Parameters
name
stringGets or sets behalf sender Name..
emailAddress
stringGets or sets the behalf sender email address.
Properties
EmailAddress
Gets or sets the behalf sender email address.
[DataMember(Name = "emailAddress", EmitDefaultValue = true)]
public string EmailAddress { get; set; }
Property Value
- string
Gets the value of behalf sender email address.
Name
Gets or sets the behalf sender name.
[DataMember(Name = "name", EmitDefaultValue = true)]
public string Name { get; set; }
Property Value
- string
Gets the value of behalf sender name.
Methods
ToJson()
Returns the JSON string presentation of the object.
public virtual string ToJson()
Returns
- string
JSON string presentation of the object.