@@ -12,8 +12,6 @@ pip install codat-sync-for-payables
1212
1313## Example Usage
1414<!-- Start SDK Example Usage -->
15-
16-
1715``` python
1816import codatsyncpayables
1917from codatsyncpayables.models import operations, shared
@@ -27,11 +25,11 @@ s = codatsyncpayables.CodatSyncPayables(
2725
2826req = operations.CreateAccountRequest(
2927 account = shared.Account(
30- currency = ' USD ' ,
28+ currency = ' EUR ' ,
3129 current_balance = Decimal(' 0' ),
3230 description = ' Invoices the business has issued but has not yet collected payment on.' ,
3331 fully_qualified_category = ' Asset.Current' ,
34- fully_qualified_name = ' Fixed Asset ' ,
32+ fully_qualified_name = ' Cash On Hand ' ,
3533 id = ' 1b6266d1-1e44-46c5-8eb5-a8f98e03124e' ,
3634 is_bank_account = False ,
3735 metadata = shared.Metadata(
@@ -46,15 +44,15 @@ req = operations.CreateAccountRequest(
4644 valid_datatype_links = [
4745 shared.AccountValidDataTypeLinks(
4846 links = [
49- ' unde ' ,
47+ ' suscipit ' ,
5048 ],
51- property = ' nulla ' ,
49+ property = ' iure ' ,
5250 ),
5351 ],
5452 ),
5553 company_id = ' 8a210b68-6988-11ed-a1eb-0242ac120002' ,
5654 connection_id = ' 2e9d2c44-f675-40ba-8049-353bfcb5e171' ,
57- timeout_in_minutes = 544883 ,
55+ timeout_in_minutes = 297534 ,
5856)
5957
6058res = s.accounts.create(req)
@@ -95,6 +93,7 @@ if res.create_account_response is not None:
9593
9694* [ create] ( docs/sdks/bills/README.md#create ) - Create bill
9795* [ delete] ( docs/sdks/bills/README.md#delete ) - Delete bill
96+ * [ delete_attachment] ( docs/sdks/bills/README.md#delete_attachment ) - Delete bill attachment
9897* [ download_attachment] ( docs/sdks/bills/README.md#download_attachment ) - Download bill attachment
9998* [ get] ( docs/sdks/bills/README.md#get ) - Get bill
10099* [ get_attachment] ( docs/sdks/bills/README.md#get_attachment ) - Get bill attachment
@@ -172,4 +171,30 @@ if res.create_account_response is not None:
172171* [ get] ( docs/sdks/trackingcategories/README.md#get ) - Get tracking categories
173172* [ list] ( docs/sdks/trackingcategories/README.md#list ) - List tracking categories
174173<!-- End SDK Available Operations -->
174+
175+
176+
177+ <!-- Start Dev Containers -->
178+
179+
180+
181+ <!-- End Dev Containers -->
182+
183+
184+
185+ <!-- Start Pagination -->
186+ # Pagination
187+
188+ Some of the endpoints in this SDK support pagination. To use pagination, you make your SDK calls as usual, but the
189+ returned response object will have a ` Next ` method that can be called to pull down the next group of results. If the
190+ return value of ` Next ` is ` None ` , then there are no more pages to be fetched.
191+
192+ Here's an example of one such pagination call:
193+
194+
195+ <!-- End Pagination -->
196+
197+ <!-- Placeholder for Future Speakeasy SDK Sections -->
198+
199+
175200### Library generated by [ Speakeasy] ( https://docs.speakeasyapi.dev/docs/using-speakeasy/client-sdks )
0 commit comments