@cardscan.ai/cardscan-client
Version:
Typescript client for the CardScan API
40 lines (39 loc) • 1.14 kB
TypeScript
/**
* 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 GenerateMagicLink200Response
*/
export interface GenerateMagicLink200ResponseOriginal {
/**
* The URL of the magic link
* @type {string}
* @memberof GenerateMagicLink200Response
*/
'magic_link': string;
/**
* The token associated with the magic link
* @type {string}
* @memberof GenerateMagicLink200Response
*/
'token': string;
/**
* The expiration date and time of the magic link
* @type {string}
* @memberof GenerateMagicLink200Response
*/
'expires_at': string;
}
export type GenerateMagicLink200Response = KeysToCamelCase<GenerateMagicLink200ResponseOriginal>;
export type GenerateMagicLink200ResponseSnake = KeysToSnakeCase<GenerateMagicLink200ResponseOriginal>;