PointOfSale
No description
type PointOfSale {
  id: ID!
  storeId: ID
  number: Int!
  name: String
  description: String
  manualAmount: Boolean
  requireEmail: Boolean
  requireTaxId: Boolean
  fixedAmount: Int
  includeQrCode: Boolean
  fixedCurrency: Currencies
  qrCodeText: String
  paymentCallbackUrl: String
  currentPaymentId: ID
  type: PointOfSaleType
}
Fields
PointOfSale.id ● ID! non-null scalar
The ID of the point of sale
PointOfSale.storeId ● ID scalar
The store's ID where this point of sale belongs
PointOfSale.number ● Int! non-null scalar
Point of sale unique number inside the store
PointOfSale.name ● String scalar
The name that represents the point of sale
PointOfSale.description ● String scalar
The description of the point of sale
PointOfSale.manualAmount ● Boolean scalar
Whether the user can manually enter the amount or not
PointOfSale.requireEmail ● Boolean scalar
Whether the user must provide an email address or not
PointOfSale.requireTaxId ● Boolean scalar
Whether the user must provide a tax ID or not
PointOfSale.fixedAmount ● Int scalar
Fixed amount to be charged
PointOfSale.includeQrCode ● Boolean scalar
Whether the user must provide a fixed amount or not
PointOfSale.fixedCurrency ● Currencies enum
Fixed currency to be charged
PointOfSale.qrCodeText ● String scalar
QR code text
PointOfSale.paymentCallbackUrl ● String scalar
The URL where to notify a success payment (server-to-server HTTP POST request)
PointOfSale.currentPaymentId ● ID scalar
The ID of the current payment
PointOfSale.type ● PointOfSaleType enum
The type of the point of sale
Returned By
createPointOfSale  mutation ● pointOfSale  query ● updatePointOfSale  mutation ● userPointOfSale  query
Member Of
PointsOfSaleConnection  object