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.
18 lines (17 loc) • 469 B
TypeScript
import { CheckoutErrorCode } from "./../../gqlTypes/globalTypes";
export interface CheckoutError {
__typename: "CheckoutError";
/**
* The error code.
*/
code: CheckoutErrorCode;
/**
* Name of a field that caused the error. A value of `null` indicates that the
* error isn't associated with a particular field.
*/
field: string | null;
/**
* The error message.
*/
message: string | null;
}