Function ShopListingApiFactory
- ShopListingApiFactory(configuration?, basePath?, axios?): {
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>;
} Parameters
Optional
configuration: ConfigurationOptional
basePath: stringOptional
axios: 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>;
}
shopListingControllerCreate:function
shopListingControllerDelete:function
- shopListingControllerDelete(id, options?): AxiosPromise<APIOutput>
Parameters
- id: string
Optional
options: RawAxiosRequestConfig
Returns AxiosPromise<APIOutput>
shopListingControllerGetOne:function
- shopListingControllerGetOne(id, options?): AxiosPromise<ShopListingOutputDTOAPI>
Parameters
- id: string
Optional
options: RawAxiosRequestConfig
shopListingControllerImportListings:function
- shopListingControllerImportListings(options?): AxiosPromise<APIOutput>
Parameters
Optional
options: RawAxiosRequestConfig
Returns AxiosPromise<APIOutput>
shopListingControllerSearch:function
shopListingControllerUpdate:function
ShopListingApi - factory interface
Export