OBJECT
Billing
Billing record.
link GraphQL Schema definition
- type Billing implements Node {
- # The billing amount. Denominated in cents.
- Int! @deprecated( reason: "Prices can be larger than is representable by a graphql integer. Use the string version instead. This field will be removed no earlier than July 1st, 2025.
" ) :
- # The billing amount excluding tax.
- Decimal! :
- # The billing amount excluding tax. Denominated in cents.
- Int! @deprecated( reason: "Prices can be larger than is representable by a graphql integer. Use the string version instead. This field will be removed no earlier than July 1st, 2025.
" ) :
- # The billing amount excluding tax. In string with currency symbol.
- #
- # Arguments
- # currency: Currency in which to display money fields. Defaults
- # to the currency of the marketplace's home country.
- String): String! ( :
- # The billing amount. In string with currency symbol.
- #
- # Arguments
- # currency: Currency in which to display money fields. Defaults
- # to the currency of the marketplace's home country.
- String): String! ( :
- BillingLineItem!]! : [
- # The date the billing was created.
- ISO8601DateTime! :
- ID! :
- # The id used to identify the billing.
- Int! :
- # The date the billing was paid.
- ISO8601DateTime :
- # Arguments
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- String, : String, : Int, : Int): PaymentEventConnection! ( :
- # Link to retrieve the billing invoice in PDF format (EXPENSIVE TO GENERATE)
- String @deprecated( reason: "Use pdfData instead" ) :
- # Link to retrieve the billing invoice in PDF format
- String :
- Seller! :
- BillingStatusEnum! :
- # The tax on the billing.
- Decimal! :
- # The tax on the billing. Denominated in cents.
- Int! @deprecated( reason: "Prices can be larger than is representable by a graphql integer. Use the string version instead. This field will be removed no earlier than July 1st, 2025.
" ) :
- # The tax on the billing. In string with currency symbol.
- #
- # Arguments
- # currency: Currency in which to display money fields. Defaults
- # to the currency of the marketplace's home country.
- String): String! ( :
- # The date the billing was updated.
- ISO8601DateTime! :
- # This field identifies billing records that are user cancellable.
- Boolean! :
- }