Initial version of the E-Invoice solution of JR IT Services
This commit is contained in:
11
jr_einvoice/types.py
Normal file
11
jr_einvoice/types.py
Normal file
@@ -0,0 +1,11 @@
|
||||
from __future__ import annotations
|
||||
from dataclasses import dataclass
|
||||
from pathlib import Path
|
||||
from typing import Optional
|
||||
|
||||
@dataclass
|
||||
class RenderResult:
|
||||
ok: bool
|
||||
backend: str
|
||||
path: Optional[Path]
|
||||
error: Optional[str] = None
|
||||
Reference in New Issue
Block a user