Class DocumentCcDetails
The document cc details properties are email address, user Id.
[DataContract]
public class DocumentCcDetails
- Inheritance
-
DocumentCcDetails
- Inherited Members
Constructors
DocumentCcDetails(string, string, bool)
Initializes a new instance of the DocumentCcDetails class.
public DocumentCcDetails(string emailAddress = null, string userId = null, bool isViewed = false)
Parameters
emailAddress
stringGets or sets the email address..
userId
stringGets or sets the user id..
isViewed
boolGets or sets a value indicating whether is viewed. (default to false).
Properties
EmailAddress
Gets or sets the email address of the cc recipient.
[DataMember(Name = "emailAddress", EmitDefaultValue = true)]
public string EmailAddress { get; set; }
Property Value
- string
Gets or sets the email address.
IsViewed
Gets or sets a value indicating whether document is viewed by the cc recipient.
[DataMember(Name = "isViewed", EmitDefaultValue = false)]
public bool IsViewed { get; set; }
Property Value
- bool
Gets or sets a value indicating whether is viewed.
UserId
Gets or sets the user Id of the cc recipient.
[DataMember(Name = "userId", EmitDefaultValue = true)]
public string UserId { get; set; }
Property Value
- string
Gets or sets the user id.
Methods
ToJson()
Returns the JSON string presentation of the object
public virtual string ToJson()
Returns
- string
JSON string presentation of the object