Update Type enums

This commit is contained in:
Jonathan Jenne 2023-11-06 11:50:28 +01:00
parent b480100f4d
commit f4549c0481

View File

@ -1,5 +1,6 @@
Public Class Constants
#Region "Status Fields"
Public Enum EnvelopeStatus
Created = 0
Saved = 1
@ -8,10 +9,6 @@
CompleteSigned = 4
End Enum
Public Enum ElementType
Signature = 0
End Enum
Public Enum ElementStatus
Created = 0
End Enum
@ -26,6 +23,9 @@
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
@ -36,9 +36,17 @@
Signed = 6
Rejected = 7
End Enum
#End Region
#Region "Type Fields"
Public Enum ElementType
Signature = 1
End Enum
Public Enum ContractType
Contract = 0
ReadAndSign = 1
Contract = 1
ReadAndSign = 2
End Enum
#End Region
End Class