@@ -15,7 +15,7 @@ pip install codat-commerce
1515<!-- Start SDK Example Usage -->
1616``` python
1717import codatcommerce
18- from codatcommerce.models import operations, shared
18+ from codatcommerce.models import operations
1919
2020s = codatcommerce.CodatCommerce(
2121 security = shared.Security(
@@ -28,8 +28,8 @@ req = operations.GetCompanyInfoRequest(
2828 company_id = " 8a210b68-6988-11ed-a1eb-0242ac120002" ,
2929 connection_id = " 2e9d2c44-f675-40ba-8049-353bfcb5e171" ,
3030)
31-
32- res = s.company_info.get_company_info (req)
31+
32+ res = s.company_info.get (req)
3333
3434if res.company_info is not None :
3535 # handle response
@@ -40,43 +40,43 @@ if res.company_info is not None:
4040## Available Resources and Operations
4141
4242
43- ### company_info
43+ ### [ company_info] ( docs/companyinfo/README.md )
4444
45- * ` get_company_info ` - Get company info
45+ * [ get ] ( docs/companyinfo/README.md#get ) - Get company info
4646
47- ### customers
47+ ### [ customers] ( docs/customers/README.md )
4848
49- * ` list_customers ` - List customers
49+ * [ list ] ( docs/customers/README.md#list ) - List customers
5050
51- ### disputes
51+ ### [ disputes] ( docs/disputes/README.md )
5252
53- * ` list_disputes ` - List disputes
53+ * [ list ] ( docs/disputes/README.md#list ) - List disputes
5454
55- ### locations
55+ ### [ locations] ( docs/locations/README.md )
5656
57- * ` list_locations ` - List locations
57+ * [ list ] ( docs/locations/README.md#list ) - List locations
5858
59- ### orders
59+ ### [ orders] ( docs/orders/README.md )
6060
61- * ` list_orders ` - List orders
61+ * [ list ] ( docs/orders/README.md#list ) - List orders
6262
63- ### payments
63+ ### [ payments] ( docs/payments/README.md )
6464
65- * ` list_payment_methods ` - List payment methods
66- * ` list_payments ` - List payments
65+ * [ list ] ( docs/payments/README.md#list ) - List payments
66+ * [ list_methods ] ( docs/payments/README.md#list_methods ) - List payment methods
6767
68- ### products
68+ ### [ products] ( docs/products/README.md )
6969
70- * ` list_product_categories ` - List product categories
71- * ` list_products ` - List products
70+ * [ list ] ( docs/products/README.md#list ) - List products
71+ * [ list_categories ] ( docs/products/README.md#list_categories ) - List product categories
7272
73- ### tax_components
73+ ### [ tax_components] ( docs/taxcomponents/README.md )
7474
75- * ` get_tax_components ` - List tax components
75+ * [ get ] ( docs/taxcomponents/README.md#get ) - List tax components
7676
77- ### transactions
77+ ### [ transactions] ( docs/transactions/README.md )
7878
79- * ` list_transactions ` - List transactions
79+ * [ list ] ( docs/transactions/README.md#list ) - List transactions
8080<!-- End SDK Available Operations -->
8181
8282### SDK Generated by [ Speakeasy] ( https://docs.speakeasyapi.dev/docs/using-speakeasy/client-sdks )
0 commit comments