OBJECT

XsollaConfigs

link GraphQL Schema definition

1type XsollaConfigs {
2
3# Iframe URL to allow payment method management or purchase checkout
4# There are various cases in which this can be null. One example during
5# subscription purchase checkout flow is if there is an issue with the
6# Xsolla product mapping to the product in Twitch's system.
7iframeURL: String! @deprecated( reason: "Moving iframe URL generation to Twilight" )
8
9# Access token to allow purchase checkout. This can be an empty string if the
10# token cannot be generated.
11token: String!
12
13# Indicates if the token is for Xsolla's sandbox environment.
14isSandbox: Boolean!
15
16}