UNPKG

@cardscan.ai/cardscan-client

Version:

Typescript client for the CardScan API

34 lines (33 loc) 967 B
/** * CardScan API * The official documentation for the CardScan API Clients. * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { KeysToCamelCase, KeysToSnakeCase } from "./"; /** * * @export * @interface ValidateMagicLink200Response */ export interface ValidateMagicLink200ResponseOriginal { /** * The token associated with the magic link * @type {string} * @memberof ValidateMagicLink200Response */ 'Token': string; /** * The identity ID. * @type {string} * @memberof ValidateMagicLink200Response */ 'IdentityId': string; } export type ValidateMagicLink200Response = KeysToCamelCase<ValidateMagicLink200ResponseOriginal>; export type ValidateMagicLink200ResponseSnake = KeysToSnakeCase<ValidateMagicLink200ResponseOriginal>;