Function ShopListingApiAxiosParamCreator
- ShopListingApiAxiosParamCreator(
configuration?: Configuration,
): {
shopListingControllerCreate: (
shopListingCreateDTO?: ShopListingCreateDTO,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
shopListingControllerDelete: (
id: string,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
shopListingControllerGetOne: (
id: string,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
shopListingControllerImportListings: (
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
shopListingControllerSearch: (
shopListingSearchInputDTO?: ShopListingSearchInputDTO,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
shopListingControllerUpdate: (
id: string,
shopListingUpdateDTO?: ShopListingUpdateDTO,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
} Parameters
Optional
configuration: Configuration
Returns {
shopListingControllerCreate: (
shopListingCreateDTO?: ShopListingCreateDTO,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
shopListingControllerDelete: (
id: string,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
shopListingControllerGetOne: (
id: string,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
shopListingControllerImportListings: (
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
shopListingControllerSearch: (
shopListingSearchInputDTO?: ShopListingSearchInputDTO,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
shopListingControllerUpdate: (
id: string,
shopListingUpdateDTO?: ShopListingUpdateDTO,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
}
shopListingControllerCreate: (
shopListingCreateDTO?: ShopListingCreateDTO,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>
shopListingControllerDelete: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>
shopListingControllerGetOne: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>
shopListingControllerImportListings: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>
shopListingControllerSearch: (
shopListingSearchInputDTO?: ShopListingSearchInputDTO,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>
shopListingControllerUpdate: (
id: string,
shopListingUpdateDTO?: ShopListingUpdateDTO,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>
ShopListingApi - axios parameter creator
Export