/** * @type GiftCardRequest: Represents gift card details for a request. * * @property brand: The gift card type or brand (for example, givex, blackhawk). * - **Max Length:** 256 * * @property cardNumber: The gift card number. * - **Max Length:** 40 * * @property cvc: The card verification code (CVC/CVV) for the gift card. * - **Max Length:** 4 * * @property expirationMonth: The month when the gift card expires. * * @property expirationYear: The year when the gift card expires. * */ export type GiftCardRequest = { brand: string; cardNumber: string; cvc: string; expirationMonth?: number; expirationYear?: number; } & { [key: string]: any; };