UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

40 lines (39 loc) 1.39 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 { SimpleFilterType } from './SimpleFilterType'; /** * * @export * @interface SimpleProcessorFilter */ export interface SimpleProcessorFilter { /** * The type of filter to apply. * @type {SimpleFilterType} * @memberof SimpleProcessorFilter */ filterType: SimpleFilterType; /** * The list of processor IDs to filter by. * @type {Array<string>} * @memberof SimpleProcessorFilter */ processorIds: Array<string>; } /** * Check if a given object implements the SimpleProcessorFilter interface. */ export declare function instanceOfSimpleProcessorFilter(value: object): value is SimpleProcessorFilter; export declare function SimpleProcessorFilterFromJSON(json: any): SimpleProcessorFilter; export declare function SimpleProcessorFilterFromJSONTyped(json: any, ignoreDiscriminator: boolean): SimpleProcessorFilter; export declare function SimpleProcessorFilterToJSON(json: any): SimpleProcessorFilter; export declare function SimpleProcessorFilterToJSONTyped(value?: SimpleProcessorFilter | null, ignoreDiscriminator?: boolean): any;