namespace Alkami.Ops.SecretServer.Enum { /// /// An Enum which represents the overall status of the request /// public enum ResultStatus { Unknown = 0, Success = 1, Failure = 2, PartialFailure = 3 } }