Skip to content

[Update] Invoice Items #184

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 13, 2020
Merged
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
34 changes: 17 additions & 17 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14370,44 +14370,44 @@ components:
example: Invoice
x-linode-cli-display: 3
subtotal:
type: integer
type: number
readOnly: true
description: The amount of the Invoice before taxes in US Dollars.
example: 120
example: 120.25
x-linode-cli-display: 4
tax:
type: integer
type: number
readOnly: true
description: The amount of tax levied on the Invoice in US Dollars.
example: 12
example: 12.25
x-linode-cli-display: 5
total:
type: integer
type: number
readOnly: true
description: The amount of the Invoice after taxes in US Dollars.
example: 132
example: 132.50
x-linode-cli-display: 6
InvoiceItem:
type: object
description: An InvoiceItem object.
properties:
amount:
type: integer
type: number
readOnly: true
description: The price, in US dollars, of the Invoice Item. Equal to the unit price multiplied by quantity.
example: 20
example: 20.20
x-linode-cli-display: 4
tax:
type: integer
type: number
readOnly: true
description: The amount of tax levied on this Item in US Dollars.
example: 2
example: 1.25
x-linode-cli-display: 5
total:
type: integer
type: number
readOnly: true
description: The price of this Item after taxes in US Dollars.
example: 22
example: 21.45
x-linode-cli-display: 6
from:
type: string
Expand All @@ -14426,7 +14426,7 @@ components:
type: integer
readOnly: true
description: The quantity of this Item for the specified Invoice.
example: 2
example: 4
to:
type: string
readOnly: true
Expand All @@ -14437,16 +14437,16 @@ components:
type:
type: string
readOnly: true
description: The type of service, ether `prepay` or `misc`.
description: The type of service, ether `hourly` or `misc`.
enum:
- hourly
- prepay
- misc
example: hourly
unitprice:
type: integer
type: number
readOnly: true
description: The monthly service fee in US Dollars for this Item.
example: 10
example: 5.05
IPAddress:
type: object
description: >
Expand Down