> ## Documentation Index
> Fetch the complete documentation index at: https://docs.fluz.app/llms.txt
> Use this file to discover all available pages before exploring further.

# GiftCard

> GiftCard represents a record of a gift card purchased by a user.

**Object**

GiftCard represents a record of a gift card purchased by a user.

## Fields

<ResponseField name="giftCardId" type="UUID!">
  The ID associated with the gift card.
</ResponseField>

<ResponseField name="purchaseId" type="UUID">
  The ID of the purchase that created this gift card.
</ResponseField>

<ResponseField name="purchaseDisplayId" type="String">
  The display ID of the purchase that created this gift card.
</ResponseField>

<ResponseField name="purchaserUserId" type="UUID!">
  The ID of the user who made the purchase.
</ResponseField>

<ResponseField name="endDate" type="DateTime!">
  The expiration date of the gift card.
</ResponseField>

<ResponseField name="status" type="GiftCardStatus!">
  The status of the Gift Card.
</ResponseField>

<ResponseField name="purchaseValue" type="Float">
  The value the gift card was purchased at (its denomination / face value).
</ResponseField>

<ResponseField name="currentValue" type="Float">
  The remaining balance on the gift card.
</ResponseField>

<ResponseField name="currency" type="String">
  The ISO currency code of the gift card's value.
</ResponseField>

<ResponseField name="createdAt" type="DateTime!">
  The time the gift card was created.
</ResponseField>

<ResponseField name="merchant" type="Merchant">
  A connection to the merchant that the gift card can be redeemed at.
</ResponseField>

<ResponseField name="termsAndConditions" type="String">
  The terms and conditions for this gift card's offer.
</ResponseField>

<ResponseField name="deliveryFormat" type="DeliveryFormatType">
  The delivery format of the offer this gift card was purchased from. The active offer on a merchant may change over time, so the delivery format of the merchant's current offer is not necessarily the same as the delivery format of the offer used to purchase this gift card.
</ResponseField>
