OBJECT

BillingLineItem

Billing line items associated with a billing.

link GraphQL Schema definition

  • type BillingLineItem implements Node {
  • # Amount Denominated in cents.
  • amountCents: Int
  • # 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.
  • amountFormatted(currency: String): String
  • # Type of the billing line item.
  • billingLineItemType: BillingLineItemTypeEnum!
  • description: String
  • id: ID!
  • legacyId: Int!
  • }