import type * as Square from "../index"; /** * Describes buyer data to prepopulate in the payment form. * For more information, * see [Optional Checkout Configurations](https://developer.squareup.com/docs/checkout-api/optional-checkout-configurations). */ export interface PrePopulatedData { /** The buyer email to prepopulate in the payment form. */ buyerEmail?: string | null; /** The buyer phone number to prepopulate in the payment form. */ buyerPhoneNumber?: string | null; /** The buyer address to prepopulate in the payment form. */ buyerAddress?: Square.Address; }