import type * as Square from "../index"; export interface DataCollectionOptions { /** The title text to display in the data collection flow on the Terminal. */ title: string; /** * The body text to display under the title in the data collection screen flow on the * Terminal. */ body: string; /** * Represents the type of the input text. * See [InputType](#type-inputtype) for possible values */ inputType: Square.DataCollectionOptionsInputType; /** The buyer’s input text from the data collection screen. */ collectedData?: Square.CollectedData; }