Class GroupSigner
The Group Signer model class.
[DataContract]
public class GroupSigner
- Inheritance
-
GroupSigner
- Inherited Members
Constructors
GroupSigner(string, string, string, SignerStatus, bool, bool, bool?)
Initializes a new instance of the GroupSigner class.
public GroupSigner(string id = null, string signerEmail = null, string signerName = null, SignerStatus status = (SignerStatus)0, bool isViewed = false, bool isDeliveryFailed = false, bool? isAuthenticationFailed = null)
Parameters
idstringGets or sets id.
signerEmailstringGets or sets the signer's email address.
signerNamestringGets or sets the signer's full name.
statusSignerStatusGets or sets the current status of the signer (e.g., Pending, Completed).
isViewedboolGets or sets a value indicating whether the document has been viewed by the signer.
isDeliveryFailedboolGets or sets a value indicating whether delivery to the signer failed.
isAuthenticationFailedbool?Gets or sets a value indicating whether authentication failed (nullable).
Properties
Id
Gets or sets id.
[DataMember(Name = "id", EmitDefaultValue = false)]
public string Id { get; set; }
Property Value
IsAuthenticationFailed
Gets or sets a value indicating whether authentication failed (nullable).
[DataMember(Name = "isAuthenticationFailed", EmitDefaultValue = false)]
public bool? IsAuthenticationFailed { get; set; }
Property Value
- bool?
IsDeliveryFailed
Gets or sets a value indicating whether delivery to the signer failed.
[DataMember(Name = "isDeliveryFailed", EmitDefaultValue = false)]
public bool IsDeliveryFailed { get; set; }
Property Value
IsViewed
Gets or sets a value indicating whether the document has been viewed by the signer.
[DataMember(Name = "isViewed", EmitDefaultValue = false)]
public bool IsViewed { get; set; }
Property Value
SignerEmail
Gets or sets the signer's email address.
[DataMember(Name = "signerEmail", EmitDefaultValue = false)]
public string SignerEmail { get; set; }
Property Value
SignerName
Gets or sets the signer's full name.
[DataMember(Name = "signerName", EmitDefaultValue = false)]
public string SignerName { get; set; }
Property Value
Status
Gets or sets the current status of the signer (e.g., Pending, Completed).
[DataMember(Name = "status", EmitDefaultValue = false)]
public SignerStatus Status { get; set; }
Property Value
Methods
ToJson()
Returns the JSON string presentation of the object.
public virtual string ToJson()
Returns
- string
JSON string presentation of the object.