import type * as Square from "../index"; /** * A response that includes the loyalty account. */ export interface GetLoyaltyAccountResponse { /** Any errors that occurred during the request. */ errors?: Square.Error_[]; /** The loyalty account. */ loyaltyAccount?: Square.LoyaltyAccount; }