UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

48 lines (47 loc) 1.78 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 { TaxIntegrationApiName } from './TaxIntegrationApiName'; /** * * @export * @interface CreateTaxIntegrationRequest */ export interface CreateTaxIntegrationRequest { /** * The timezone name for the accounting timezone (see pytz.all_timezones for a full list) * @type {string} * @memberof CreateTaxIntegrationRequest */ accountingTz: string; /** * These keys will allow to authenticate API requests to the tax processor. * @type {{ [key: string]: string; }} * @memberof CreateTaxIntegrationRequest */ apiKeys: { [key: string]: string; }; /** * The name of the API used for the tax integration. * @type {TaxIntegrationApiName} * @memberof CreateTaxIntegrationRequest */ apiName: TaxIntegrationApiName; } /** * Check if a given object implements the CreateTaxIntegrationRequest interface. */ export declare function instanceOfCreateTaxIntegrationRequest(value: object): value is CreateTaxIntegrationRequest; export declare function CreateTaxIntegrationRequestFromJSON(json: any): CreateTaxIntegrationRequest; export declare function CreateTaxIntegrationRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateTaxIntegrationRequest; export declare function CreateTaxIntegrationRequestToJSON(json: any): CreateTaxIntegrationRequest; export declare function CreateTaxIntegrationRequestToJSONTyped(value?: CreateTaxIntegrationRequest | null, ignoreDiscriminator?: boolean): any;