UpdatePointOfSaleInput
No description
input UpdatePointOfSaleInput {
  id: ID!
  storeId: ID
  name: String
  description: String
  manualAmount: Boolean
  requireEmail: Boolean
  requireTaxId: Boolean
  fixedAmount: Int
  fixedCurrency: Currencies
  includeQrCode: Boolean
  qrCodeText: String
  paymentCallbackUrl: String
}
Fields
UpdatePointOfSaleInput.id ● ID! non-null scalar
The ID of the point of sale
UpdatePointOfSaleInput.storeId ● ID scalar
Store's ID where this point of sale belongs
UpdatePointOfSaleInput.name ● String scalar
A name that represents the point of sale
UpdatePointOfSaleInput.description ● String scalar
The description of the point of sale
UpdatePointOfSaleInput.manualAmount ● Boolean scalar
Whether the user can manually enter the amount or not
UpdatePointOfSaleInput.requireEmail ● Boolean scalar
Whether the user must provide an email address or not
UpdatePointOfSaleInput.requireTaxId ● Boolean scalar
Whether the user must provide a tax ID or not
UpdatePointOfSaleInput.fixedAmount ● Int scalar
Fixed amount to be charged
UpdatePointOfSaleInput.fixedCurrency ● Currencies enum
Fixed currency to be charged
UpdatePointOfSaleInput.includeQrCode ● Boolean scalar
Whether the user must provide a fixed amount or not
UpdatePointOfSaleInput.qrCodeText ● String scalar
QR code text
UpdatePointOfSaleInput.paymentCallbackUrl ● String scalar
The URL where to notify a success payment (server-to-server HTTP POST request)
Member Of
updatePointOfSale  mutation