Enum ChecksumValidationStatus
States for response checksum validation
public enum ChecksumValidationStatus
  Fields
INVALID = 3The checksum of the response stream did not match the header sent by the service.
NOT_VALIDATED = 0Set when the SDK did not perform checksum validation.
PENDING_RESPONSE_READ = 1Set when a checksum was selected to be validated, but validation will not completed until the response stream is fully read. At that point an exception will be thrown if the checksum is invalid.
SUCCESSFUL = 2The checksum has been validated successfully during response unmarshalling.