UNPKG

usimple-saleor-sdk

Version:

This package contains all queries and mutations that are used in our sample storefront. It can be used for semi-custom or fully-custom (with ability to extend existing queries) storefront solutions.

31 lines (30 loc) 637 B
export interface PaymentGateway_config { __typename: "GatewayConfigLine"; /** * Gateway config key. */ field: string; /** * Gateway config value for key. */ value: string | null; } export interface PaymentGateway { __typename: "PaymentGateway"; /** * Payment gateway ID. */ id: string; /** * Payment gateway name. */ name: string; /** * Payment gateway client configuration. */ config: PaymentGateway_config[]; /** * Payment gateway supported currencies. */ currencies: (string | null)[]; }