/**
 * Revolugo Booking API Reference
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: 1.5.0
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 *
 * @export
 * @interface AllowedPaymentMethodApiOneOf2
 */
export interface AllowedPaymentMethodApiOneOf2 {
    /**
     *
     * @type {string}
     * @memberof AllowedPaymentMethodApiOneOf2
     */
    name: AllowedPaymentMethodApiOneOf2NameEnum;
}
/**
 * @export
 */
export declare const AllowedPaymentMethodApiOneOf2NameEnum: {
    readonly DepositAccount: "DEPOSIT_ACCOUNT";
};
export type AllowedPaymentMethodApiOneOf2NameEnum = typeof AllowedPaymentMethodApiOneOf2NameEnum[keyof typeof AllowedPaymentMethodApiOneOf2NameEnum];
/**
 * Check if a given object implements the AllowedPaymentMethodApiOneOf2 interface.
 */
export declare function instanceOfAllowedPaymentMethodApiOneOf2(value: object): boolean;
export declare function AllowedPaymentMethodApiOneOf2FromJSON(json: any): AllowedPaymentMethodApiOneOf2;
export declare function AllowedPaymentMethodApiOneOf2FromJSONTyped(json: any, ignoreDiscriminator: boolean): AllowedPaymentMethodApiOneOf2;
export declare function AllowedPaymentMethodApiOneOf2ToJSON(value?: AllowedPaymentMethodApiOneOf2 | null): any;
