OBJECT

ZuoraConfigs

link GraphQL Schema definition

1type ZuoraConfigs {
2
3# Twitch merchant account ID on Zuora.
4externalAccountID: ID!
5
6# ID of the hosted page we will render.
7hostedPageID: ID!
8
9# URL of the hosted page we will render.
10hostedPageURL: String!
11
12# Used to encrypt sensitive information.
13publicKey: String!
14
15# Need to pass generated signature to access Zuora payment pages.
16signature: String!
17
18# In some cases, when you contact Zuora Support with an issue, the person helping
19# you may ask you to provide the tenant ID.
20tenantID: ID!
21
22# Zuora API uses token as part of authentication.
23token: String!
24
25}