type GooglePayConfig = PaymentConfigItem & { __typename?: 'GooglePayConfig'; /** The styles for the GooglePay Button configuration */ button_styles?: Maybe<GooglePayButtonStyles>; /** The payment method code as defined in the payment gateway */ code?: Maybe<Scalars['String']['output']>; /** Indicates whether the payment method is displayed */ is_visible?: Maybe<Scalars['Boolean']['output']>; /** Defines the payment intent (Authorize or Capture */ payment_intent?: Maybe<Scalars['String']['output']>; /** The payment source for the payment method */ payment_source?: Maybe<Scalars['String']['output']>; /** The PayPal parameters required to load the JS SDK */ sdk_params?: Maybe<Array<Maybe<SdkParams>>>; /** The relative order the payment method is displayed on the checkout page */ sort_order?: Maybe<Scalars['String']['output']>; /** 3DS mode */ three_ds_mode?: Maybe<ThreeDsMode>; /** The name displayed for the payment method */ title?: Maybe<Scalars['String']['output']>;};