Skip to main content

core_invoice/
kind.rs

1/// Syntax root. Not derived from BT-3. Self-billing is a profile + type code, not a third kind.
2#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Default)]
3pub enum DocumentKind {
4    #[default]
5    Invoice,
6    CreditNote,
7}