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