@webitel/api-services
    Preparing search index...
    • Parameters

      • axiosInstance: AxiosInstance = axios

      Returns {
          createLink: (
              caseEtag: string,
              params?: CreateLinkParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<WebitelCasesCaseLink, any, {}>>;
          deleteLink: (
              caseEtag: string,
              etag: string,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<WebitelCasesCaseLink, any, {}>>;
          listLinks: (
              caseEtag: string,
              params?: ListLinksParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<WebitelCasesCaseLinkList, any, {}>>;
          locateLink: (
              caseEtag: string,
              etag: string,
              params?: LocateLinkParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<WebitelCasesCaseLink, any, {}>>;
          updateLink: (
              caseEtag: string,
              updateLinkBody: UpdateLinkBody,
              params?: UpdateLinkParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<WebitelCasesCaseLink, any, {}>>;
          updateLink2: (
              caseEtag: string,
              updateLink2Body: UpdateLink2Body,
              params?: UpdateLink2Params,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<WebitelCasesCaseLink, any, {}>>;
      }