import type * as Square from "../index"; /** * Represents a response from getting an order custom attribute. */ export interface RetrieveOrderCustomAttributeResponse { /** The retrieved custom attribute. If `with_definition` was set to `true` in the request, the custom attribute definition is returned in the `definition field. */ customAttribute?: Square.CustomAttribute; /** Any errors that occurred during the request. */ errors?: Square.Error_[]; }