/** * My API * API documentation for my Laravel app * * The version of the OpenAPI document: 1.0.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 RefundTransactionRequest */ export interface RefundTransactionRequest { /** * * @type {number} * @memberof RefundTransactionRequest */ amount: number; /** * * @type {string} * @memberof RefundTransactionRequest */ description?: string | null; } /** * Check if a given object implements the RefundTransactionRequest interface. */ export declare function instanceOfRefundTransactionRequest(value: object): value is RefundTransactionRequest; export declare function RefundTransactionRequestFromJSON(json: any): RefundTransactionRequest; export declare function RefundTransactionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): RefundTransactionRequest; export declare function RefundTransactionRequestToJSON(json: any): RefundTransactionRequest; export declare function RefundTransactionRequestToJSONTyped(value?: RefundTransactionRequest | null, ignoreDiscriminator?: boolean): any;