@getopenpay/client
Version:
OpenPay API TypeScript SDK
45 lines (44 loc) • 1.41 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 MerchantTaxIdSetting
*/
export interface MerchantTaxIdSetting {
/**
* Whether this tax ID is the default for the country
* @type {boolean}
* @memberof MerchantTaxIdSetting
*/
isDefault: boolean;
/**
* The tax ID value
* @type {string}
* @memberof MerchantTaxIdSetting
*/
taxId: string;
/**
* The type code for this tax ID
* @type {string}
* @memberof MerchantTaxIdSetting
*/
taxIdType: string;
}
/**
* Check if a given object implements the MerchantTaxIdSetting interface.
*/
export declare function instanceOfMerchantTaxIdSetting(value: object): value is MerchantTaxIdSetting;
export declare function MerchantTaxIdSettingFromJSON(json: any): MerchantTaxIdSetting;
export declare function MerchantTaxIdSettingFromJSONTyped(json: any, ignoreDiscriminator: boolean): MerchantTaxIdSetting;
export declare function MerchantTaxIdSettingToJSON(json: any): MerchantTaxIdSetting;
export declare function MerchantTaxIdSettingToJSONTyped(value?: MerchantTaxIdSetting | null, ignoreDiscriminator?: boolean): any;