quickbooks-types 0.1.1

Type definitions for QuickBooks Online API
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// Errors for Quickbooks validation / processing
#[derive(Debug, thiserror::Error)]
pub enum QBTypeError {
    #[cfg(feature = "builder")]
    #[error("Error validating QB Object in builder: {0}")]
    ValidationError(String),
    #[error("Missing field in QB Object: {0}")]
    MissingField(&'static str),
    #[error("QB Item could not be referenced!")]
    QBToRefError,
}