CheckoutAgreement
Defines details about an individual checkout agreement.
type CheckoutAgreement = {
__typename?: 'CheckoutAgreement'; /** The ID for a checkout agreement. */
agreement_id: Scalars['Int']['output']; /** The checkbox text for the checkout agreement. */
checkbox_text: Scalars['String']['output']; /** Required. The text of the agreement. */
content: Scalars['String']['output']; /** The height of the text box where the Terms and Conditions statement appears during checkout. */
content_height?: Maybe<Scalars['String']['output']>; /** Indicates whether the `content` text is in HTML format. */
is_html: Scalars['Boolean']['output']; /** Indicates whether agreements are accepted automatically or manually. */
mode: CheckoutAgreementMode; /** The name given to the condition. */
name: Scalars['String']['output'];
};