-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat(invoice_custom_section): add invoice custom section information …
…to open_api (#317) * add invoice custom section information to open_api * build
- Loading branch information
1 parent
680d202
commit a7f3e68
Showing
5 changed files
with
129 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,45 @@ | ||
type: object | ||
required: | ||
- lago_id | ||
- name | ||
- code | ||
properties: | ||
lago_id: | ||
type: string | ||
format: "uuid" | ||
description: Unique identifier for the invoice custom section in the Lago application, generated by Lago to ensure record uniqueness within the system. | ||
example: "1a901a90-1a90-1a90-1a90-1a901a901a90" | ||
name: | ||
type: string | ||
description: Name of the invoice custom section. | ||
example: "EU Bank Details" | ||
code: | ||
type: string | ||
description: Unique code identifying the invoice custom section for the API request. | ||
example: "eu_bank_details" | ||
description: | ||
type: string | ||
description: Internal description of the invoice custom section. | ||
example: "This section contains the bank details for EU customers." | ||
details: | ||
type: string | ||
description: The value shown on the invoice PDF. | ||
example: "Bank Name: Lago Bank, IBAN: FR7630004000031234567890143" | ||
display_name: | ||
type: string | ||
description: The name of the invoice custom section displayed on the invoice. | ||
example: "Bank Details:" | ||
applied_to_organization: | ||
type: boolean | ||
description: Set to true if the invoice custom section is a default for the organization. | ||
example: true | ||
organization_id: | ||
type: string | ||
format: "uuid" | ||
description: Unique identifier for the organization associated with the invoice custom section. | ||
example: "1a901a90-1a90-1a90-1a90-1a901a901a90" | ||
created_at: | ||
type: string | ||
format: "date-time" | ||
description: Creation date of the tax. | ||
example: "2023-07-06T14:35:58Z" |