import type * as Square from "../index"; /** * A response that contains a `GiftCard`. The response might contain a set of `Error` objects if the request * resulted in errors. */ export interface CreateGiftCardResponse { /** Any errors that occurred during the request. */ errors?: Square.Error_[]; /** The new gift card. */ giftCard?: Square.GiftCard; }