/** * 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 ImportReviewsRequest */ export interface ImportReviewsRequest { /** * * @type {string} * @memberof ImportReviewsRequest */ key: string; } /** * Check if a given object implements the ImportReviewsRequest interface. */ export declare function instanceOfImportReviewsRequest(value: object): value is ImportReviewsRequest; export declare function ImportReviewsRequestFromJSON(json: any): ImportReviewsRequest; export declare function ImportReviewsRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ImportReviewsRequest; export declare function ImportReviewsRequestToJSON(json: any): ImportReviewsRequest; export declare function ImportReviewsRequestToJSONTyped(value?: ImportReviewsRequest | null, ignoreDiscriminator?: boolean): any;