pub type VerificationResult<T> = Result<T, VerificationError>;Expand description
Shared result for signature checks that decide whether a webhook may influence downstream workflows.
Aliased Type§
pub enum VerificationResult<T> {
Ok(T),
Err(VerificationError),
}