@getopenpay/client
Version:
OpenPay API TypeScript SDK
41 lines (40 loc) • 1.7 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.
*/
import type { CheckoutProcessorsPreferences } from './CheckoutProcessorsPreferences';
import type { SelectedPriceQuantity } from './SelectedPriceQuantity';
/**
*
* @export
* @interface FallbackConfigurationOutput
*/
export interface FallbackConfigurationOutput {
/**
*
* @type {CheckoutProcessorsPreferences}
* @memberof FallbackConfigurationOutput
*/
fallbackProcessorPreferences?: CheckoutProcessorsPreferences | null;
/**
* List of price groups that will be used to fall back to if the selected product price quantity fails to be created.
* @type {Array<SelectedPriceQuantity>}
* @memberof FallbackConfigurationOutput
*/
priceGroups?: Array<SelectedPriceQuantity>;
}
/**
* Check if a given object implements the FallbackConfigurationOutput interface.
*/
export declare function instanceOfFallbackConfigurationOutput(value: object): value is FallbackConfigurationOutput;
export declare function FallbackConfigurationOutputFromJSON(json: any): FallbackConfigurationOutput;
export declare function FallbackConfigurationOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): FallbackConfigurationOutput;
export declare function FallbackConfigurationOutputToJSON(json: any): FallbackConfigurationOutput;
export declare function FallbackConfigurationOutputToJSONTyped(value?: FallbackConfigurationOutput | null, ignoreDiscriminator?: boolean): any;