@revolugo/booking-api-client
Version:
Javascript Revolugo Booking API Client (browser + server)
44 lines (43 loc) • 1.35 kB
TypeScript
/**
* 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 PaymentMethodApiOneOfPayload
*/
export interface PaymentMethodApiOneOfPayload {
/**
*
* @type {number}
* @memberof PaymentMethodApiOneOfPayload
*/
amount: number;
/**
*
* @type {string}
* @memberof PaymentMethodApiOneOfPayload
*/
couponId?: string | null;
/**
*
* @type {string}
* @memberof PaymentMethodApiOneOfPayload
*/
token: string;
}
/**
* Check if a given object implements the PaymentMethodApiOneOfPayload interface.
*/
export declare function instanceOfPaymentMethodApiOneOfPayload(value: object): boolean;
export declare function PaymentMethodApiOneOfPayloadFromJSON(json: any): PaymentMethodApiOneOfPayload;
export declare function PaymentMethodApiOneOfPayloadFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaymentMethodApiOneOfPayload;
export declare function PaymentMethodApiOneOfPayloadToJSON(value?: PaymentMethodApiOneOfPayload | null): any;