GraphQL OBJECT

Configuration

Configuration settings for the client account.

link Definition

  • type Configuration {
  • # Unique ID of the configuration.
  • id: Int!
  • # Client to which the configuration belongs.
  • client: Client
  • # User who created the configuration.
  • createdBy: UserAccount
  • # Date and time when the configuration was created.
  • creationDate: DateTime
  • # Description of the configuration.
  • description: String
  • # User who last modified the configuration.
  • lastModifiedBy: UserAccount
  • # Date and time when the last edit occurred.
  • lastModifyDate: DateTime
  • # Master configuration of the configuration.
  • masterConfiguration: Configuration
  • # Name of the configuration.
  • name: String
  • # Name of the parameter.
  • parameterName: String
  • # If true this configuration is used for a customer's subsequent interactions
  • # related to the purchase, for example changing the payment details or canceling
  • # the subscription. If the checkbox is not selected, the default configuration for
  • # the client account is used. You can, for example, use this option to load the
  • # web configuration instead of the in-app configuration for in-app purchases.
  • saveInPurchase: Boolean
  • }