@getopenpay/client
Version:
OpenPay API TypeScript SDK
41 lines (40 loc) • 1.69 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 FallbackConfigurationInput
*/
export interface FallbackConfigurationInput {
/**
*
* @type {CheckoutProcessorsPreferences}
* @memberof FallbackConfigurationInput
*/
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 FallbackConfigurationInput
*/
priceGroups?: Array<SelectedPriceQuantity>;
}
/**
* Check if a given object implements the FallbackConfigurationInput interface.
*/
export declare function instanceOfFallbackConfigurationInput(value: object): value is FallbackConfigurationInput;
export declare function FallbackConfigurationInputFromJSON(json: any): FallbackConfigurationInput;
export declare function FallbackConfigurationInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): FallbackConfigurationInput;
export declare function FallbackConfigurationInputToJSON(json: any): FallbackConfigurationInput;
export declare function FallbackConfigurationInputToJSONTyped(value?: FallbackConfigurationInput | null, ignoreDiscriminator?: boolean): any;