/**
 * 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 AllowedPaymentMethodApiOneOf
 */
export interface AllowedPaymentMethodApiOneOf {
    /**
     *
     * @type {string}
     * @memberof AllowedPaymentMethodApiOneOf
     */
    name: AllowedPaymentMethodApiOneOfNameEnum;
}
/**
 * @export
 */
export declare const AllowedPaymentMethodApiOneOfNameEnum: {
    readonly CreditCard: "CREDIT_CARD";
};
export type AllowedPaymentMethodApiOneOfNameEnum = typeof AllowedPaymentMethodApiOneOfNameEnum[keyof typeof AllowedPaymentMethodApiOneOfNameEnum];
/**
 * Check if a given object implements the AllowedPaymentMethodApiOneOf interface.
 */
export declare function instanceOfAllowedPaymentMethodApiOneOf(value: object): boolean;
export declare function AllowedPaymentMethodApiOneOfFromJSON(json: any): AllowedPaymentMethodApiOneOf;
export declare function AllowedPaymentMethodApiOneOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): AllowedPaymentMethodApiOneOf;
export declare function AllowedPaymentMethodApiOneOfToJSON(value?: AllowedPaymentMethodApiOneOf | null): any;
