import type * as Square from "../index"; /** * Defines the response returned by [GetPayment](api-endpoint:Payments-GetPayment). */ export interface GetPaymentResponse { /** Information about errors encountered during the request. */ errors?: Square.Error_[]; /** The requested `Payment`. */ payment?: Square.Payment; }