@getopenpay/client
Version:
OpenPay API TypeScript SDK
33 lines (32 loc) • 1.42 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.
*/
/**
*
* @export
*/
export declare const RouteConditionAttribute: {
readonly PaymentProvider: "payment_provider";
readonly IsCustomerInitiated: "is_customer_initiated";
readonly IsInCardSetupPhase: "is_in_card_setup_phase";
readonly CardType: "card_type";
readonly CardBrand: "card_brand";
readonly CardCountry: "card_country";
readonly CardIssuer: "card_issuer";
readonly PercentSplitter: "percent_splitter";
readonly CheckoutAttemptId: "checkout_attempt_id";
};
export type RouteConditionAttribute = typeof RouteConditionAttribute[keyof typeof RouteConditionAttribute];
export declare function instanceOfRouteConditionAttribute(value: any): boolean;
export declare function RouteConditionAttributeFromJSON(json: any): RouteConditionAttribute;
export declare function RouteConditionAttributeFromJSONTyped(json: any, ignoreDiscriminator: boolean): RouteConditionAttribute;
export declare function RouteConditionAttributeToJSON(value?: RouteConditionAttribute | null): any;
export declare function RouteConditionAttributeToJSONTyped(value: any, ignoreDiscriminator: boolean): RouteConditionAttribute;