/** * 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 SearchStoresRequest */ export interface SearchStoresRequest { /** * * @type {string} * @memberof SearchStoresRequest */ search?: string | null; /** * * @type {string} * @memberof SearchStoresRequest */ sortBy?: SearchStoresRequestSortByEnum; /** * * @type {string} * @memberof SearchStoresRequest */ sortDirection?: SearchStoresRequestSortDirectionEnum; /** * * @type {number} * @memberof SearchStoresRequest */ perPage?: number; /** * * @type {number} * @memberof SearchStoresRequest */ page?: number; /** * * @type {Array} * @memberof SearchStoresRequest */ siteId?: Array; /** * * @type {Array} * @memberof SearchStoresRequest */ suppliersId?: Array; /** * * @type {number} * @memberof SearchStoresRequest */ relatedId?: number; /** * * @type {string} * @memberof SearchStoresRequest */ relatedType?: string; /** * * @type {boolean} * @memberof SearchStoresRequest */ includesRelations?: boolean; } /** * @export */ export declare const SearchStoresRequestSortByEnum: { readonly Id: "id"; readonly SiteId: "site_id"; readonly Name: "name"; readonly CreatedAt: "created_at"; readonly UpdatedAt: "updated_at"; }; export type SearchStoresRequestSortByEnum = typeof SearchStoresRequestSortByEnum[keyof typeof SearchStoresRequestSortByEnum]; /** * @export */ export declare const SearchStoresRequestSortDirectionEnum: { readonly Asc: "asc"; readonly Desc: "desc"; }; export type SearchStoresRequestSortDirectionEnum = typeof SearchStoresRequestSortDirectionEnum[keyof typeof SearchStoresRequestSortDirectionEnum]; /** * Check if a given object implements the SearchStoresRequest interface. */ export declare function instanceOfSearchStoresRequest(value: object): value is SearchStoresRequest; export declare function SearchStoresRequestFromJSON(json: any): SearchStoresRequest; export declare function SearchStoresRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SearchStoresRequest; export declare function SearchStoresRequestToJSON(json: any): SearchStoresRequest; export declare function SearchStoresRequestToJSONTyped(value?: SearchStoresRequest | null, ignoreDiscriminator?: boolean): any;