import type * as Square from "../index"; /** * A response that contains the unlinked `GiftCard` object. If the request resulted in errors, * the response contains a set of `Error` objects. */ export interface UnlinkCustomerFromGiftCardResponse { /** Any errors that occurred during the request. */ errors?: Square.Error_[]; /** * The gift card with the ID of the unlinked customer removed from the `customer_ids` field. * If no other customers are linked, the `customer_ids` field is also removed. */ giftCard?: Square.GiftCard; }