UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

46 lines (45 loc) 1.32 kB
/** * OpenPay API * super charge your subscription management. * * The version of the OpenAPI document: 1.2.1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { TaxIdTypeEnum } from './TaxIdTypeEnum'; /** * * @export * @interface TaxIdType */ export interface TaxIdType { /** * Human readable description of this tax ID type * @type {string} * @memberof TaxIdType */ description: string; /** * Example of a valid tax ID of this type * @type {string} * @memberof TaxIdType */ example: string; /** * The type code for this tax ID * @type {TaxIdTypeEnum} * @memberof TaxIdType */ taxIdType: TaxIdTypeEnum; } /** * Check if a given object implements the TaxIdType interface. */ export declare function instanceOfTaxIdType(value: object): value is TaxIdType; export declare function TaxIdTypeFromJSON(json: any): TaxIdType; export declare function TaxIdTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): TaxIdType; export declare function TaxIdTypeToJSON(json: any): TaxIdType; export declare function TaxIdTypeToJSONTyped(value?: TaxIdType | null, ignoreDiscriminator?: boolean): any;