Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 82
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb-05f09f77c63744e86cb2b03330b994964f8319c0d69f41f964f9f57de969257c.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb-e0338fed09226882fc7e89ae7249ca67d95217701cba0c91b68c7a6cc102fd7f.yml
12 changes: 12 additions & 0 deletions src/orb/resources/customers/credits/credits.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,9 @@ def list(
"""
Returns a paginated list of unexpired, non-zero credit blocks for a customer.

Note that `currency` defaults to credits if not specified. To use a real world
currency, set `currency` to an ISO 4217 string.

Args:
currency: The ledger currency or custom pricing unit to use.

Expand Down Expand Up @@ -129,6 +132,9 @@ def list_by_external_id(
"""
Returns a paginated list of unexpired, non-zero credit blocks for a customer.

Note that `currency` defaults to credits if not specified. To use a real world
currency, set `currency` to an ISO 4217 string.

Args:
currency: The ledger currency or custom pricing unit to use.

Expand Down Expand Up @@ -204,6 +210,9 @@ def list(
"""
Returns a paginated list of unexpired, non-zero credit blocks for a customer.

Note that `currency` defaults to credits if not specified. To use a real world
currency, set `currency` to an ISO 4217 string.

Args:
currency: The ledger currency or custom pricing unit to use.

Expand Down Expand Up @@ -259,6 +268,9 @@ def list_by_external_id(
"""
Returns a paginated list of unexpired, non-zero credit blocks for a customer.

Note that `currency` defaults to credits if not specified. To use a real world
currency, set `currency` to an ISO 4217 string.

Args:
currency: The ledger currency or custom pricing unit to use.

Expand Down
4 changes: 2 additions & 2 deletions src/orb/resources/invoices.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ def issue(
"""This endpoint allows an eligible invoice to be issued manually.

This is only
possible with invoices where status is `draft`, `will_auto_issue` is true, and
possible with invoices where status is `draft`, `will_auto_issue` is false, and
an `eligible_to_issue_at` is a time in the past. Issuing an invoice could
possibly trigger side effects, some of which could be customer-visible (e.g.
sending emails, auto-collecting payment, syncing the invoice to external
Expand Down Expand Up @@ -718,7 +718,7 @@ async def issue(
"""This endpoint allows an eligible invoice to be issued manually.

This is only
possible with invoices where status is `draft`, `will_auto_issue` is true, and
possible with invoices where status is `draft`, `will_auto_issue` is false, and
an `eligible_to_issue_at` is a time in the past. Issuing an invoice could
possibly trigger side effects, some of which could be customer-visible (e.g.
sending emails, auto-collecting payment, syncing the invoice to external
Expand Down