import type * as Square from "../index"; /** * A response that contains all loyalty programs. */ export interface ListLoyaltyProgramsResponse { /** Any errors that occurred during the request. */ errors?: Square.Error_[]; /** A list of `LoyaltyProgram` for the merchant. */ programs?: Square.LoyaltyProgram[]; }