UNPKG

@cardscan.ai/cardscan-client

Version:

Typescript client for the CardScan API

34 lines (33 loc) 934 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 "./"; /** * Dimensions of the video background * @export * @interface ScanMetadataVideoBackground */ export interface ScanMetadataVideoBackgroundOriginal { /** * * @type {number} * @memberof ScanMetadataVideoBackground */ 'width'?: number; /** * * @type {number} * @memberof ScanMetadataVideoBackground */ 'height'?: number; } export type ScanMetadataVideoBackground = KeysToCamelCase<ScanMetadataVideoBackgroundOriginal>; export type ScanMetadataVideoBackgroundSnake = KeysToSnakeCase<ScanMetadataVideoBackgroundOriginal>;