Skip to content

Latest commit

 

History

History
executable file
·
75 lines (45 loc) · 2.29 KB

File metadata and controls

executable file
·
75 lines (45 loc) · 2.29 KB

ClientInvoiceFees

(client_invoice_fees)

Available Operations

  • create - Create client-invoice fees
  • list - List client-invoice fees

create

Create client-invoice fees

Example Usage

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

Parameters

Parameter Type Required Description
request shared.TestInvoiceCreate ✔️ The request object to use for the request.

Response

operations.CreateClientInvoiceFeesResponse

list

List client-invoice fees

Example Usage

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

Parameters

Parameter Type Required Description
invoice_id str ✔️ Unique identifier of an invoice

Response

operations.ListClientInvoiceFeesResponse