OBJECT

Xsolla

Contains configuration used to setup checkout via Xsolla, a payment provider.

link GraphQL Schema definition

1type Xsolla {
2
3# Iframe URL to allow purchase checkout. This can be an empty string if the URL
4# cannot be generated.
5iframeURL: String! @deprecated( reason: "moving iframe URL generation client-side" )
6
7# Indicates if the token is for Xsolla's sandbox environment.
8isSandbox: Boolean!
9
10# Access token to allow purchase checkout. This can be an empty string if the
11# token cannot be generated.
12token: String!
13
14}