UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

46 lines (45 loc) 1.55 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 { PaymentProviderType } from './PaymentProviderType'; /** * Represents a processor-provider pair for whitelist bypass logic. * @export * @interface ProcessorProviderPair */ export interface ProcessorProviderPair { /** * * @type {string} * @memberof ProcessorProviderPair */ processorId?: string | null; /** * * @type {string} * @memberof ProcessorProviderPair */ processorName?: string | null; /** * The payment provider type for this processor * @type {PaymentProviderType} * @memberof ProcessorProviderPair */ provider: PaymentProviderType; } /** * Check if a given object implements the ProcessorProviderPair interface. */ export declare function instanceOfProcessorProviderPair(value: object): value is ProcessorProviderPair; export declare function ProcessorProviderPairFromJSON(json: any): ProcessorProviderPair; export declare function ProcessorProviderPairFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProcessorProviderPair; export declare function ProcessorProviderPairToJSON(json: any): ProcessorProviderPair; export declare function ProcessorProviderPairToJSONTyped(value?: ProcessorProviderPair | null, ignoreDiscriminator?: boolean): any;