UNPKG

@piiano/vault-client

Version:

Piiano Vault generated typescript client

11 lines 1.23 kB
/** * The type of the token: * - `randomized` – token that represent the property values as they were when the token was created. For non-format preserving tokens, the token ID is taken from the token_id parameter of the request (if applicable) or randomly assigned a unique ID. * - `pointer` – token that represent the property values as they are when the request to detokenize is made. For non-format preserving tokens, the token ID is taken from the token_id parameter of the request (if applicable) or randomly assigned a unique ID. * - `pci` – token that represent property values as they were when the token was created. The token ID reuses the ID of an existing token where both tokens are created on the same collection with the same values and scope. Otherwise, the token ID is either randomly assigned, or taken from the token_id parameter of the request (if applicable). * - `pci_oneway` – PCI token that cannot be detokenized. * - `deterministic` - token that is assigned a deterministic ID based on the collection, tokenized object, property values, and scope. * */ export type TokenType = 'pci' | 'pci_oneway' | 'pointer' | 'randomized' | 'deterministic'; //# sourceMappingURL=TokenType.d.ts.map