# CryptogramEntity

Cryptogram object for a saved card.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**instrument_id** | **string** | Identifier for the card saved at Cashfree. | [optional] [default to undefined]
**token_requestor_id** | **string** | TRID issued by respective card networks. | [optional] [default to undefined]
**card_number** | **string** | Token number. | [optional] [default to undefined]
**card_expiry_mm** | **string** | Token expiry month. | [optional] [default to undefined]
**card_expiry_yy** | **string** | Token expiry year. | [optional] [default to undefined]
**cryptogram** | **string** | A one-time code dynamically generated by the respective card network, required to process saved card payments. | [optional] [default to undefined]
**card_display** | **string** | Displays the last four digits of the actual card number. | [optional] [default to undefined]

## Example

```typescript
import { CryptogramEntity } from 'cashfree-pg';

const instance: CryptogramEntity = {
    instrument_id,
    token_requestor_id,
    card_number,
    card_expiry_mm,
    card_expiry_yy,
    cryptogram,
    card_display,
};
```

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
