66 lines
1.3 KiB
VB.net
66 lines
1.3 KiB
VB.net
Public Class Constants
|
|
|
|
#Region "Status Fields"
|
|
Public Enum EnvelopeStatus
|
|
Created = 0
|
|
Saved = 1
|
|
Sent = 2
|
|
PartlySigned = 3
|
|
CompletelySigned = 4
|
|
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
|
|
|
|
''' <summary>
|
|
''' This is a status, which is called Type because it fits with the other action fields
|
|
''' </summary>
|
|
Public Enum EnvelopeHistoryActionType
|
|
Created = 0
|
|
Saved = 1
|
|
Sent = 2
|
|
EmailSent = 3
|
|
Delivered = 4
|
|
Seen = 5
|
|
Signed = 6
|
|
Rejected = 7
|
|
End Enum
|
|
#End Region
|
|
|
|
#Region "Type Fields"
|
|
Public Enum ElementType
|
|
Signature = 1
|
|
End Enum
|
|
|
|
Public Enum ContractType
|
|
Contract = 1
|
|
ReadAndSign = 2
|
|
End Enum
|
|
|
|
Public Enum ColorType
|
|
ReceiverColor1 = 1
|
|
ReceiverColor2 = 2
|
|
ReceiverColor3 = 3
|
|
ReceiverColor4 = 4
|
|
ReceiverColor5 = 5
|
|
ReceiverColor6 = 6
|
|
ReceiverColor7 = 7
|
|
ReceiverColor8 = 8
|
|
ReceiverColor9 = 9
|
|
ReceiverColor10 = 10
|
|
End Enum
|
|
#End Region
|
|
|
|
End Class
|