/** * @type GiftCardResponse: Document representing a gift card response. * * @property brand: The gift card brand. * - **Max Length:** 256 * * @property maskedCardNumber: The masked gift card number. * - **Max Length:** 40 * * @property expirationMonth: The month when the gift card expires. * * @property expirationYear: The year when the gift card expires. * */ export type GiftCardResponse = { brand?: string; maskedCardNumber?: string; expirationMonth?: number; expirationYear?: number; } & { [key: string]: any; };