@getopenpay/client
Version:
OpenPay API TypeScript SDK
39 lines (38 loc) • 1.13 kB
TypeScript
/**
* 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.
*/
/**
*
* @export
* @interface TaxIdSetting
*/
export interface TaxIdSetting {
/**
* The tax ID value
* @type {string}
* @memberof TaxIdSetting
*/
taxId: string;
/**
* The type code for this tax ID
* @type {string}
* @memberof TaxIdSetting
*/
taxIdType: string;
}
/**
* Check if a given object implements the TaxIdSetting interface.
*/
export declare function instanceOfTaxIdSetting(value: object): value is TaxIdSetting;
export declare function TaxIdSettingFromJSON(json: any): TaxIdSetting;
export declare function TaxIdSettingFromJSONTyped(json: any, ignoreDiscriminator: boolean): TaxIdSetting;
export declare function TaxIdSettingToJSON(json: any): TaxIdSetting;
export declare function TaxIdSettingToJSONTyped(value?: TaxIdSetting | null, ignoreDiscriminator?: boolean): any;