(client_invoice_fees)
Create client-invoice fees
import wingspan
from wingspan.models import shared
s = wingspan.Wingspan()
req = shared.TestInvoiceCreate(
contact_name='online',
email='Rylan13@yahoo.com',
)
res = s.client_invoice_fees.create(req)
if res.client_invoice is not None:
# handle response
pass| Parameter | Type | Required | Description |
|---|---|---|---|
request |
shared.TestInvoiceCreate | ✔️ | The request object to use for the request. |
operations.CreateClientInvoiceFeesResponse
List client-invoice fees
import wingspan
from wingspan.models import operations
s = wingspan.Wingspan()
res = s.client_invoice_fees.list(invoice_id='Bicycle')
if res.invoice_fee_calculation is not None:
# handle response
pass| Parameter | Type | Required | Description |
|---|---|---|---|
invoice_id |
str | ✔️ | Unique identifier of an invoice |