import type * as Square from "../index"; /** * A response that contains a `GiftCard`. This response might contain a set of `Error` objects * if the request resulted in errors. */ export interface GetGiftCardFromGanResponse { /** Any errors that occurred during the request. */ errors?: Square.Error_[]; /** A gift card that was fetched, if present. It returns empty if an error occurred. */ giftCard?: Square.GiftCard; }