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