43 lines
733 B
VB.net
43 lines
733 B
VB.net
Public Class Constants
|
|
|
|
Public Enum EnvelopeStatus
|
|
Created = 0
|
|
Saved = 1
|
|
Sent = 2
|
|
End Enum
|
|
|
|
Public Enum ElementType
|
|
Signature = 0
|
|
End Enum
|
|
|
|
Public Enum ElementStatus
|
|
Created = 0
|
|
End Enum
|
|
|
|
Public Enum DocumentStatus
|
|
Created = 0
|
|
Signed = 1
|
|
End Enum
|
|
|
|
Public Enum ReceiverStatus
|
|
Unsigned = 0
|
|
Signed = 1
|
|
End Enum
|
|
|
|
Public Enum EnvelopeHistoryActionType
|
|
Created = 0
|
|
Saved = 1
|
|
Sent = 2
|
|
EmailSent = 3
|
|
Delivered = 4
|
|
Seen = 5
|
|
Signed = 6
|
|
Rejected = 7
|
|
End Enum
|
|
|
|
Public Enum ContractType
|
|
Contract = 0
|
|
ReadAndSign = 1
|
|
End Enum
|
|
End Class
|