Function ShopListingApiAxiosParamCreator

ShopListingApi - axios parameter creator

  • Parameters

    • Optionalconfiguration: Configuration

    Returns {
        shopListingControllerCreate: ((shopListingCreateDTO?: ShopListingCreateDTO, options??: RawAxiosRequestConfig) => Promise<RequestArgs>);
        shopListingControllerDelete: ((id: string, options??: RawAxiosRequestConfig) => Promise<RequestArgs>);
        shopListingControllerGetOne: ((id: string, 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>)

      Required permissions: MANAGE_SHOP_LISTINGS

      Create

        • (shopListingCreateDTO?, options?): Promise<RequestArgs>
        • Parameters

          • OptionalshopListingCreateDTO: ShopListingCreateDTO

            ShopListingCreateDTO

          • Optionaloptions: RawAxiosRequestConfig = {}

            Override http request option.

          Returns Promise<RequestArgs>

    • shopListingControllerDelete: ((id: string, options??: RawAxiosRequestConfig) => Promise<RequestArgs>)

      Required permissions: MANAGE_SHOP_LISTINGS

      Delete

        • (id, options?): Promise<RequestArgs>
        • Parameters

          • id: string
          • Optionaloptions: RawAxiosRequestConfig = {}

            Override http request option.

          Returns Promise<RequestArgs>

    • shopListingControllerGetOne: ((id: string, options??: RawAxiosRequestConfig) => Promise<RequestArgs>)

      Get one

        • (id, options?): Promise<RequestArgs>
        • Parameters

          • id: string
          • Optionaloptions: RawAxiosRequestConfig = {}

            Override http request option.

          Returns Promise<RequestArgs>

    • shopListingControllerSearch: ((shopListingSearchInputDTO?: ShopListingSearchInputDTO, options??: RawAxiosRequestConfig) => Promise<RequestArgs>)

      Search

        • (shopListingSearchInputDTO?, options?): Promise<RequestArgs>
        • Parameters

          • OptionalshopListingSearchInputDTO: ShopListingSearchInputDTO

            ShopListingSearchInputDTO

          • Optionaloptions: RawAxiosRequestConfig = {}

            Override http request option.

          Returns Promise<RequestArgs>

    • shopListingControllerUpdate: ((id: string, shopListingUpdateDTO?: ShopListingUpdateDTO, options??: RawAxiosRequestConfig) => Promise<RequestArgs>)

      Required permissions: MANAGE_SHOP_LISTINGS

      Update

        • (id, shopListingUpdateDTO?, options?): Promise<RequestArgs>
        • Parameters

          • id: string
          • OptionalshopListingUpdateDTO: ShopListingUpdateDTO

            ShopListingUpdateDTO

          • Optionaloptions: RawAxiosRequestConfig = {}

            Override http request option.

          Returns Promise<RequestArgs>