OBJECT

ServicePriceItem

link GraphQL Schema definition

  • type ServicePriceItem {
  • currencyId: Int
  • currency: Currency
  • # total price amount, without quantity
  • originalPriceAmount: Float @deprecated( reason: "use originalPriceAmountTimesQuantity instead to get the correct price with quantity" )
  • # total price amount, without quantity
  • priceAmount: Float @deprecated( reason: "use priceAmountTimesQuantity instead to get the correct price with quantity" )
  • # Approximated price in USD, for client-side filtering and ordering
  • priceUsd: Float @deprecated( reason: "use priceUsdTimesQuantity instead to get the correct price with quantity" )
  • # total price amount, with quantity
  • originalPriceAmountTimesQuantity: Float
  • # total price amount, with quantity
  • priceAmountTimesQuantity: Float
  • # total usd amount, with quantity
  • priceUsdTimesQuantity: Float
  • fees: [FeePriceItem]
  • discounts: [DiscountItem]
  • offeringId: Int
  • offering: Offering
  • durationAmount: Int
  • durationTypeId: Int
  • durationType: DurationType
  • startDate: DateOnly
  • endDate: DateOnly
  • serviceQuantity: Int
  • }