Takaro - v0.7.3
    Preparing search index...

    Function ShopListingApiFactory

    • ShopListingApi - factory interface

      Parameters

      • Optionalconfiguration: Configuration
      • OptionalbasePath: string
      • Optionalaxios: AxiosInstance

      Returns {
          shopListingControllerCreate(
              shopListingCreateDTO?: ShopListingCreateDTO,
              options?: RawAxiosRequestConfig,
          ): AxiosPromise<ShopListingOutputDTOAPI>;
          shopListingControllerDelete(
              id: string,
              options?: RawAxiosRequestConfig,
          ): AxiosPromise<APIOutput>;
          shopListingControllerGetOne(
              id: string,
              options?: RawAxiosRequestConfig,
          ): AxiosPromise<ShopListingOutputDTOAPI>;
          shopListingControllerImportListings(
              options?: RawAxiosRequestConfig,
          ): AxiosPromise<APIOutput>;
          shopListingControllerSearch(
              shopListingSearchInputDTO?: ShopListingSearchInputDTO,
              options?: RawAxiosRequestConfig,
          ): AxiosPromise<ShopListingOutputArrayDTOAPI>;
          shopListingControllerUpdate(
              id: string,
              shopListingUpdateDTO?: ShopListingUpdateDTO,
              options?: RawAxiosRequestConfig,
          ): AxiosPromise<ShopListingOutputDTOAPI>;
      }