> ## 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.

# VirtualCard

> VirtualCard represents a record of a virtual card generated by a user.

**Object**

VirtualCard represents a record of a virtual card generated by a user.

## Fields

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

<ResponseField name="userId" type="UUID!">
  The ID of the user who created the virtual card.
</ResponseField>

<ResponseField name="cardholderName" type="String!">
  The cardholder name appeared on the virtual card.
</ResponseField>

<ResponseField name="expiryMonth" type="String!">
  The expiration month of the virtual card.
</ResponseField>

<ResponseField name="expiryYear" type="String!">
  The expiration year of the virtual card.
</ResponseField>

<ResponseField name="virtualCardLast4" type="String!">
  The last 4 digits of the virtual card number.
</ResponseField>

<ResponseField name="status" type="VirtualCardStatus!">
  The status of the virtual card.
</ResponseField>

<ResponseField name="cardType" type="VirtualCardType!">
  The type of the virtual card.
</ResponseField>

<ResponseField name="initialAmount" type="Float!">
  The initial amount requested when the card was generated.
</ResponseField>

<ResponseField name="usedAmount" type="Float">
  The total amount spent on the virtual card.
</ResponseField>

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

<ResponseField name="authorizationSetting" type="VirtualCardAuthorizationSetting">
  A connection to the authorization setting of the virtual card.
</ResponseField>
