import type * as Square from "../index"; /** * Options to include related resources of the requested `CatalogObject`s. Related resources will be included in * `IncludedResources` in the response. */ export interface IncludeOptions { /** * Resources to include in the response. * See [IncludeType](#type-includetype) for possible values */ include?: Square.IncludeType[] | null; }