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 Public Class Constants
#Region "Status Fields"
Public Enum EnvelopeStatus Public Enum EnvelopeStatus
Created = 0 Created = 0
Saved = 1 Saved = 1
@ -8,10 +9,6 @@
CompleteSigned = 4 CompleteSigned = 4
End Enum End Enum
Public Enum ElementType
Signature = 0
End Enum
Public Enum ElementStatus Public Enum ElementStatus
Created = 0 Created = 0
End Enum End Enum
@ -26,6 +23,9 @@
Signed = 1 Signed = 1
End Enum End Enum
''' <summary>
''' This is a status, which is called Type because it fits with the other action fields
''' </summary>
Public Enum EnvelopeHistoryActionType Public Enum EnvelopeHistoryActionType
Created = 0 Created = 0
Saved = 1 Saved = 1
@ -36,9 +36,17 @@
Signed = 6 Signed = 6
Rejected = 7 Rejected = 7
End Enum End Enum
#End Region
#Region "Type Fields"
Public Enum ElementType
Signature = 1
End Enum
Public Enum ContractType Public Enum ContractType
Contract = 0 Contract = 1
ReadAndSign = 1 ReadAndSign = 2
End Enum End Enum
#End Region
End Class End Class