@cardscan.ai/cardscan-client
Version:
Typescript client for the CardScan API
48 lines (47 loc) • 1.2 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 { CopayCategory } from './copay-category';
import { CopayDeductibleService } from './copay-deductible-service';
import { KeysToCamelCase, KeysToSnakeCase } from "./";
/**
*
* @export
* @interface CopayResultInner
*/
export interface CopayResultInnerOriginal {
/**
*
* @type {string}
* @memberof CopayResultInner
*/
'value'?: string;
/**
*
* @type {Array<string>}
* @memberof CopayResultInner
*/
'scores'?: Array<string>;
/**
*
* @type {CopayDeductibleService}
* @memberof CopayResultInner
*/
'service'?: CopayDeductibleService;
/**
*
* @type {CopayCategory}
* @memberof CopayResultInner
*/
'category'?: CopayCategory;
}
export type CopayResultInner = KeysToCamelCase<CopayResultInnerOriginal>;
export type CopayResultInnerSnake = KeysToSnakeCase<CopayResultInnerOriginal>;