UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

39 lines (38 loc) 1.29 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. */ /** * * @export * @interface ProcessBatchRequest */ export interface ProcessBatchRequest { /** * If true, validate only without creating records * @type {boolean} * @memberof ProcessBatchRequest */ dryRun?: boolean; /** * If true, finalize invoices after creation * @type {boolean} * @memberof ProcessBatchRequest */ finalizeInvoices?: boolean; } /** * Check if a given object implements the ProcessBatchRequest interface. */ export declare function instanceOfProcessBatchRequest(value: object): value is ProcessBatchRequest; export declare function ProcessBatchRequestFromJSON(json: any): ProcessBatchRequest; export declare function ProcessBatchRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProcessBatchRequest; export declare function ProcessBatchRequestToJSON(json: any): ProcessBatchRequest; export declare function ProcessBatchRequestToJSONTyped(value?: ProcessBatchRequest | null, ignoreDiscriminator?: boolean): any;