Function ShopListingApiAxiosParamCreator
- ShopListingApiAxiosParamCreator(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>)
- (shopListingCreateDTO?, options?): Promise<RequestArgs>
Returns Promise<RequestArgs>
shopListingControllerDelete: ((id: string, options??: RawAxiosRequestConfig) => Promise<RequestArgs>)
- (id, options?): Promise<RequestArgs>
Parameters
- id: string
Optional
options: RawAxiosRequestConfig = {}
Returns Promise<RequestArgs>
shopListingControllerGetOne: ((id: string, options??: RawAxiosRequestConfig) => Promise<RequestArgs>)
- (id, options?): Promise<RequestArgs>
Parameters
- id: string
Optional
options: RawAxiosRequestConfig = {}
Returns Promise<RequestArgs>
shopListingControllerImportListings: ((options??: RawAxiosRequestConfig) => Promise<RequestArgs>)
- (options?): Promise<RequestArgs>
Parameters
Optional
options: RawAxiosRequestConfig = {}
Returns Promise<RequestArgs>
shopListingControllerSearch: ((shopListingSearchInputDTO?: ShopListingSearchInputDTO, options??: RawAxiosRequestConfig) => Promise<RequestArgs>)
- (shopListingSearchInputDTO?, options?): Promise<RequestArgs>
Returns Promise<RequestArgs>
shopListingControllerUpdate: ((id: string, shopListingUpdateDTO?: ShopListingUpdateDTO, options??: RawAxiosRequestConfig) => Promise<RequestArgs>)
- (id, shopListingUpdateDTO?, options?): Promise<RequestArgs>
Parameters
- id: string
Optional
shopListingUpdateDTO: ShopListingUpdateDTOOptional
options: RawAxiosRequestConfig = {}
Returns Promise<RequestArgs>
ShopListingApi - axios parameter creator
Export