UNPKG

@revolugo/booking-api-client

Version:

Javascript Revolugo Booking API Client (browser + server)

41 lines (40 loc) 1.62 kB
/** * 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 AllowedPaymentMethodApiOneOf3Payload */ export interface AllowedPaymentMethodApiOneOf3Payload { /** * * @type {string} * @memberof AllowedPaymentMethodApiOneOf3Payload */ status: AllowedPaymentMethodApiOneOf3PayloadStatusEnum; } /** * @export */ export declare const AllowedPaymentMethodApiOneOf3PayloadStatusEnum: { readonly Disabled: "DISABLED"; readonly Enabled: "ENABLED"; readonly Forced: "FORCED"; }; export type AllowedPaymentMethodApiOneOf3PayloadStatusEnum = typeof AllowedPaymentMethodApiOneOf3PayloadStatusEnum[keyof typeof AllowedPaymentMethodApiOneOf3PayloadStatusEnum]; /** * Check if a given object implements the AllowedPaymentMethodApiOneOf3Payload interface. */ export declare function instanceOfAllowedPaymentMethodApiOneOf3Payload(value: object): boolean; export declare function AllowedPaymentMethodApiOneOf3PayloadFromJSON(json: any): AllowedPaymentMethodApiOneOf3Payload; export declare function AllowedPaymentMethodApiOneOf3PayloadFromJSONTyped(json: any, ignoreDiscriminator: boolean): AllowedPaymentMethodApiOneOf3Payload; export declare function AllowedPaymentMethodApiOneOf3PayloadToJSON(value?: AllowedPaymentMethodApiOneOf3Payload | null): any;