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