-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d75fe5c
commit 028221b
Showing
10 changed files
with
300 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
configured_endpoints: 48 | ||
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/conductor%2Fconductor-718574f99ce1ca403cfbfed1749f5ef4c78733d417d71ce29dcceb152e3b5cec.yml | ||
configured_endpoints: 49 | ||
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/conductor%2Fconductor-b72cbb29975fb7eb76998a0147cb708ab08c0084eec602f0d3e2751e2eecadb5.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. | ||
|
||
from __future__ import annotations | ||
|
||
from typing_extensions import Required, Annotated, TypedDict | ||
|
||
from ..._utils import PropertyInfo | ||
|
||
__all__ = ["StandardTermCreateParams"] | ||
|
||
|
||
class StandardTermCreateParams(TypedDict, total=False): | ||
name: Required[str] | ||
""" | ||
The case-insensitive unique name of this standard term, unique across all | ||
standard terms. | ||
""" | ||
|
||
conductor_end_user_id: Required[Annotated[str, PropertyInfo(alias="Conductor-End-User-Id")]] | ||
""" | ||
The ID of the EndUser to receive this request (e.g., | ||
`"Conductor-End-User-Id: {{END_USER_ID}}"`). | ||
""" | ||
|
||
discount_days: Annotated[float, PropertyInfo(alias="discountDays")] | ||
""" | ||
The number of days within which payment must be received to qualify for the | ||
discount specified by `discountPercentage`. | ||
""" | ||
|
||
discount_percentage: Annotated[str, PropertyInfo(alias="discountPercentage")] | ||
""" | ||
The discount percentage applied to the payment if received within the number of | ||
days specified by `discountDays`. The value is between 0 and 100. | ||
""" | ||
|
||
due_days: Annotated[float, PropertyInfo(alias="dueDays")] | ||
"""The number of days until payment is due.""" | ||
|
||
is_active: Annotated[bool, PropertyInfo(alias="isActive")] | ||
"""Indicates whether this standard term is active. | ||
Inactive objects are typically hidden from views and reports in QuickBooks. | ||
""" |
Oops, something went wrong.