felicity-lims/felicity/api/gql/billing/__init__.py
2023-12-04 12:04:30 +02:00

32 lines
592 B
Python

from .types import (
AnalysisPriceType,
ProfilePriceType,
AnalysisDiscountType,
ProfileDiscountType,
VoucherType,
VoucherCodeType,
VoucherCustomerType,
TestBillType,
TestBillEdge,
TestBillCursorPage,
TestBillTransactionType,
TestBillInvoiceType
)
billing_types = [
AnalysisPriceType,
ProfilePriceType,
AnalysisDiscountType,
ProfileDiscountType,
VoucherType,
VoucherCodeType,
VoucherCustomerType,
TestBillType,
TestBillEdge,
TestBillCursorPage,
TestBillTransactionType,
TestBillInvoiceType,
]