egain-api-python 0.1.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- egain_api_python/__init__.py +17 -0
- egain_api_python/_hooks/__init__.py +5 -0
- egain_api_python/_hooks/registration.py +13 -0
- egain_api_python/_hooks/sdkhooks.py +76 -0
- egain_api_python/_hooks/types.py +112 -0
- egain_api_python/_version.py +15 -0
- egain_api_python/aiservices.py +23 -0
- egain_api_python/answers.py +281 -0
- egain_api_python/articlelists.py +469 -0
- egain_api_python/basesdk.py +368 -0
- egain_api_python/connectorssearchevents.py +537 -0
- egain_api_python/content.py +23 -0
- egain_api_python/errors/__init__.py +78 -0
- egain_api_python/errors/egaindefaulterror.py +40 -0
- egain_api_python/errors/egainerror.py +30 -0
- egain_api_python/errors/gethealthop.py +74 -0
- egain_api_python/errors/no_response_error.py +17 -0
- egain_api_python/errors/responsevalidationerror.py +27 -0
- egain_api_python/errors/schemas_wserrorcommon.py +51 -0
- egain_api_python/errors/wserrorcommon.py +49 -0
- egain_api_python/escalation.py +955 -0
- egain_api_python/export.py +487 -0
- egain_api_python/federatedsearchevent.py +287 -0
- egain_api_python/general.py +925 -0
- egain_api_python/guidedhelp.py +3373 -0
- egain_api_python/health.py +253 -0
- egain_api_python/httpclient.py +125 -0
- egain_api_python/import_.py +1161 -0
- egain_api_python/models/__init__.py +2136 -0
- egain_api_python/models/acceptghsolutionop.py +52 -0
- egain_api_python/models/acceptlanguage.py +23 -0
- egain_api_python/models/accessibleportal.py +37 -0
- egain_api_python/models/action.py +56 -0
- egain_api_python/models/actionsearch.py +92 -0
- egain_api_python/models/addasreferenceop.py +52 -0
- egain_api_python/models/addbookmarkop.py +43 -0
- egain_api_python/models/additionalsnippets.py +57 -0
- egain_api_python/models/addtoreplyop.py +52 -0
- egain_api_python/models/aisearchop.py +131 -0
- egain_api_python/models/aisearchresponse.py +67 -0
- egain_api_python/models/allaccessibleportals.py +28 -0
- egain_api_python/models/answer.py +21 -0
- egain_api_python/models/answeredquestion.py +125 -0
- egain_api_python/models/answerrange.py +41 -0
- egain_api_python/models/answersrequest.py +78 -0
- egain_api_python/models/answersresponse.py +93 -0
- egain_api_python/models/article.py +241 -0
- egain_api_python/models/articleactivitylink.py +62 -0
- egain_api_python/models/articleadditionalattributes.py +23 -0
- egain_api_python/models/articleaisearchresult.py +254 -0
- egain_api_python/models/articleattachment.py +44 -0
- egain_api_python/models/articlelist.py +48 -0
- egain_api_python/models/articlelistresult.py +38 -0
- egain_api_python/models/articlelistsresult.py +22 -0
- egain_api_python/models/articlepermissions.py +25 -0
- egain_api_python/models/articlepermissionsresult.py +27 -0
- egain_api_python/models/articlerating.py +51 -0
- egain_api_python/models/articleratingsresponse.py +28 -0
- egain_api_python/models/articleresult.py +159 -0
- egain_api_python/models/articleresultadditionalattributes.py +22 -0
- egain_api_python/models/articleresults.py +32 -0
- egain_api_python/models/articlesearchresult.py +243 -0
- egain_api_python/models/articlesearchresults.py +32 -0
- egain_api_python/models/articlesort.py +11 -0
- egain_api_python/models/articlesortorder.py +11 -0
- egain_api_python/models/articletype.py +56 -0
- egain_api_python/models/articlewitheditions.py +227 -0
- egain_api_python/models/attachment.py +31 -0
- egain_api_python/models/attachmentadditionalattributes.py +10 -0
- egain_api_python/models/attachmentcontent.py +57 -0
- egain_api_python/models/attachmentcontentresult.py +22 -0
- egain_api_python/models/attachmentforcreatesuggestion.py +25 -0
- egain_api_python/models/attachments.py +35 -0
- egain_api_python/models/attachmentsummary.py +37 -0
- egain_api_python/models/attachmentupload.py +20 -0
- egain_api_python/models/avertcustomerescalationop.py +44 -0
- egain_api_python/models/bookmark.py +57 -0
- egain_api_python/models/bookmarkresult.py +26 -0
- egain_api_python/models/bookmarkstatus.py +34 -0
- egain_api_python/models/case.py +158 -0
- egain_api_python/models/caseadditionalattributes.py +11 -0
- egain_api_python/models/caseanswer.py +21 -0
- egain_api_python/models/casebase.py +67 -0
- egain_api_python/models/casebaseresult.py +28 -0
- egain_api_python/models/casebasesearchsettings.py +26 -0
- egain_api_python/models/caselistresult.py +74 -0
- egain_api_python/models/caselistresults.py +28 -0
- egain_api_python/models/casequestion.py +16 -0
- egain_api_python/models/casequestiondetail.py +29 -0
- egain_api_python/models/casesearch.py +80 -0
- egain_api_python/models/clusterid.py +16 -0
- egain_api_python/models/clusterresult.py +37 -0
- egain_api_python/models/clusterresults.py +28 -0
- egain_api_python/models/comment.py +33 -0
- egain_api_python/models/comments.py +26 -0
- egain_api_python/models/completecustomerescalationop.py +44 -0
- egain_api_python/models/compliancearticleresult.py +166 -0
- egain_api_python/models/compliancearticleresultadditionalattributes.py +22 -0
- egain_api_python/models/compliancearticleresults.py +35 -0
- egain_api_python/models/complianceforarticle.py +59 -0
- egain_api_python/models/complyarticleop.py +40 -0
- egain_api_python/models/components_schemas_tag.py +25 -0
- egain_api_python/models/components_schemas_tagcategory.py +39 -0
- egain_api_python/models/components_schemas_taggroup.py +25 -0
- egain_api_python/models/configurableattribute.py +25 -0
- egain_api_python/models/configurableattributes.py +15 -0
- egain_api_python/models/contactperson.py +43 -0
- egain_api_python/models/contacts.py +21 -0
- egain_api_python/models/createbookmark.py +64 -0
- egain_api_python/models/createdby.py +37 -0
- egain_api_python/models/createfederatedsearchevent.py +85 -0
- egain_api_python/models/createfederatedsearchresulteventop.py +46 -0
- egain_api_python/models/createimportop.py +20 -0
- egain_api_python/models/createimportvalidationop.py +20 -0
- egain_api_python/models/createquickpick.py +34 -0
- egain_api_python/models/createquickpickop.py +55 -0
- egain_api_python/models/createsearchresulteventforconnectors.py +71 -0
- egain_api_python/models/createsearchresulteventforconnectorsop.py +48 -0
- egain_api_python/models/createsignedurlop.py +29 -0
- egain_api_python/models/createsuggestion.py +126 -0
- egain_api_python/models/createviewedsearchresulteventforconnectors.py +76 -0
- egain_api_python/models/createviewedsearchresultseventforconnectorsop.py +48 -0
- egain_api_python/models/customattribute.py +35 -0
- egain_api_python/models/deletebookmarkop.py +40 -0
- egain_api_python/models/deletesuggestionop.py +40 -0
- egain_api_python/models/department.py +21 -0
- egain_api_python/models/detailfield.py +32 -0
- egain_api_python/models/displayfield.py +27 -0
- egain_api_python/models/dynamiccluster.py +21 -0
- egain_api_python/models/dynamicsearch.py +40 -0
- egain_api_python/models/edition.py +79 -0
- egain_api_python/models/editionwithcontent.py +68 -0
- egain_api_python/models/email.py +21 -0
- egain_api_python/models/exportcontentop.py +14 -0
- egain_api_python/models/exportstatus.py +106 -0
- egain_api_python/models/exportstatusop.py +31 -0
- egain_api_python/models/feedbackarticleforsuggestion.py +34 -0
- egain_api_python/models/folderbreadcrumb.py +24 -0
- egain_api_python/models/foldersummary.py +29 -0
- egain_api_python/models/getacknowledgedcompliancearticlesop.py +119 -0
- egain_api_python/models/getallarticlelistsop.py +47 -0
- egain_api_python/models/getallcasebasesreleasesop.py +65 -0
- egain_api_python/models/getallcasesop.py +83 -0
- egain_api_python/models/getallportalsop.py +60 -0
- egain_api_python/models/getallprofilesinportalop.py +64 -0
- egain_api_python/models/getallquickpicksop.py +83 -0
- egain_api_python/models/getalltopicsop.py +132 -0
- egain_api_python/models/getalluserprofilesop.py +47 -0
- egain_api_python/models/getancestortopicsop.py +133 -0
- egain_api_python/models/getannouncementarticlesop.py +134 -0
- egain_api_python/models/getarticleattachmentbyidop.py +31 -0
- egain_api_python/models/getarticlebyidop.py +257 -0
- egain_api_python/models/getarticlebyidwitheditionsop.py +46 -0
- egain_api_python/models/getarticleeditiondetailsop.py +55 -0
- egain_api_python/models/getarticlelistdetailsop.py +115 -0
- egain_api_python/models/getarticlepermissionsbyidop.py +40 -0
- egain_api_python/models/getarticlepersonalizationop.py +73 -0
- egain_api_python/models/getarticleratingsop.py +74 -0
- egain_api_python/models/getarticlesintopicop.py +172 -0
- egain_api_python/models/getattachmentbyidinportalop.py +56 -0
- egain_api_python/models/getbookmarkop.py +31 -0
- egain_api_python/models/getcasebasereleasebyidop.py +64 -0
- egain_api_python/models/getcasebyidop.py +75 -0
- egain_api_python/models/getchildtopicsop.py +150 -0
- egain_api_python/models/getclusterbycasebasereleaseidop.py +74 -0
- egain_api_python/models/gethealthop.py +130 -0
- egain_api_python/models/getimportcontentop.py +46 -0
- egain_api_python/models/getmyportalsop.py +97 -0
- egain_api_python/models/getmysubscriptionop.py +115 -0
- egain_api_python/models/getpendingcompliancearticlesop.py +119 -0
- egain_api_python/models/getpopulararticlesop.py +133 -0
- egain_api_python/models/getportaldetailsbyidop.py +47 -0
- egain_api_python/models/getrelatedarticlesforsuggestionop.py +96 -0
- egain_api_python/models/getrelatedarticlesop.py +143 -0
- egain_api_python/models/getsuggestionattachmentbyidop.py +76 -0
- egain_api_python/models/getsuggestionattachmentsop.py +40 -0
- egain_api_python/models/getsuggestioncommentsop.py +40 -0
- egain_api_python/models/getsuggestionop.py +107 -0
- egain_api_python/models/gettagcategoriesforinterestforportalop.py +46 -0
- egain_api_python/models/gettopicbreadcrumbforarticleop.py +55 -0
- egain_api_python/models/getuserdetailsop.py +22 -0
- egain_api_python/models/getusermilestonesop.py +22 -0
- egain_api_python/models/ghsearchrequest.py +67 -0
- egain_api_python/models/ghsearchresult.py +75 -0
- egain_api_python/models/ghstepsearchrequest.py +64 -0
- egain_api_python/models/image.py +17 -0
- egain_api_python/models/importcontent.py +79 -0
- egain_api_python/models/importstatus.py +29 -0
- egain_api_python/models/kblanguage.py +63 -0
- egain_api_python/models/kblanguagecode.py +48 -0
- egain_api_python/models/kblanguages.py +22 -0
- egain_api_python/models/knowledgeexport.py +237 -0
- egain_api_python/models/l10nstring.py +22 -0
- egain_api_python/models/languagecode.py +39 -0
- egain_api_python/models/languagecode_parameter.py +39 -0
- egain_api_python/models/languagequeryparameter.py +39 -0
- egain_api_python/models/link.py +25 -0
- egain_api_python/models/makesuggestionop.py +44 -0
- egain_api_python/models/mandatorylanguagequeryparameter.py +38 -0
- egain_api_python/models/metadata.py +29 -0
- egain_api_python/models/milestone.py +21 -0
- egain_api_python/models/milestonename.py +26 -0
- egain_api_python/models/milestones.py +21 -0
- egain_api_python/models/modifiedby.py +37 -0
- egain_api_python/models/modifysuggestion.py +78 -0
- egain_api_python/models/modifysuggestionsop.py +44 -0
- egain_api_python/models/optionalarticleattributes.py +20 -0
- egain_api_python/models/order.py +10 -0
- egain_api_python/models/ownedby.py +37 -0
- egain_api_python/models/paginationinfo.py +32 -0
- egain_api_python/models/patchimportcontentvalidationop.py +46 -0
- egain_api_python/models/personalization.py +67 -0
- egain_api_python/models/phone.py +21 -0
- egain_api_python/models/portal.py +102 -0
- egain_api_python/models/portalresult.py +28 -0
- egain_api_python/models/portalsettings.py +398 -0
- egain_api_python/models/post_portalid_answersop.py +88 -0
- egain_api_python/models/post_portalid_retrieveop.py +88 -0
- egain_api_python/models/profile.py +26 -0
- egain_api_python/models/profileresult.py +24 -0
- egain_api_python/models/publishprofile.py +30 -0
- egain_api_python/models/publishview.py +38 -0
- egain_api_python/models/question.py +101 -0
- egain_api_python/models/questionandanswer.py +26 -0
- egain_api_python/models/quickpickrating.py +32 -0
- egain_api_python/models/quickpickresult.py +38 -0
- egain_api_python/models/quickpickresults.py +28 -0
- egain_api_python/models/ratearticleop.py +71 -0
- egain_api_python/models/referenceresponse.py +80 -0
- egain_api_python/models/rejectghsolutionop.py +52 -0
- egain_api_python/models/relatedquestions.py +28 -0
- egain_api_python/models/resourcetype_parameter.py +10 -0
- egain_api_python/models/restorequickpickop.py +63 -0
- egain_api_python/models/retrieverequest.py +47 -0
- egain_api_python/models/retrieveresponse.py +96 -0
- egain_api_python/models/role.py +26 -0
- egain_api_python/models/roletemplate.py +25 -0
- egain_api_python/models/schemas_answer.py +94 -0
- egain_api_python/models/schemas_customattribute.py +35 -0
- egain_api_python/models/schemas_link.py +27 -0
- egain_api_python/models/schemas_tag.py +21 -0
- egain_api_python/models/schemas_tagcategory.py +75 -0
- egain_api_python/models/schemas_taggroup.py +31 -0
- egain_api_python/models/schemas_tags.py +19 -0
- egain_api_python/models/schemas_wserrorcommon.py +17 -0
- egain_api_python/models/searchfilterattribute.py +61 -0
- egain_api_python/models/searchpriortoescalationop.py +108 -0
- egain_api_python/models/searchresult.py +101 -0
- egain_api_python/models/searchsuggestionop.py +93 -0
- egain_api_python/models/security.py +25 -0
- egain_api_python/models/selectuserprofileop.py +44 -0
- egain_api_python/models/sessioncontextvariable.py +17 -0
- egain_api_python/models/shorturl.py +32 -0
- egain_api_python/models/sortidname.py +10 -0
- egain_api_python/models/sortidnamedepartment.py +11 -0
- egain_api_python/models/stage.py +26 -0
- egain_api_python/models/startcustomerescalationop.py +66 -0
- egain_api_python/models/startescalationrequest.py +94 -0
- egain_api_python/models/startghsearchop.py +74 -0
- egain_api_python/models/startquestionandanswer.py +26 -0
- egain_api_python/models/stepghsearchop.py +62 -0
- egain_api_python/models/stringattributevalue.py +30 -0
- egain_api_python/models/structuredauthoringfields.py +33 -0
- egain_api_python/models/subscribearticleop.py +40 -0
- egain_api_python/models/suggestion.py +190 -0
- egain_api_python/models/suggestionadditionalattributes.py +11 -0
- egain_api_python/models/suggestionattachment.py +46 -0
- egain_api_python/models/suggestions.py +28 -0
- egain_api_python/models/tag.py +17 -0
- egain_api_python/models/tagcategoriesforinterest.py +22 -0
- egain_api_python/models/tagcategory.py +34 -0
- egain_api_python/models/taggroup.py +17 -0
- egain_api_python/models/taggroups.py +20 -0
- egain_api_python/models/tags.py +17 -0
- egain_api_python/models/topic.py +113 -0
- egain_api_python/models/topicadditionalattributes.py +20 -0
- egain_api_python/models/topicaisearchresult.py +67 -0
- egain_api_python/models/topicbreadcrumb.py +24 -0
- egain_api_python/models/topicresult.py +26 -0
- egain_api_python/models/topicsummary.py +31 -0
- egain_api_python/models/topictreenode.py +27 -0
- egain_api_python/models/topictreeresult.py +28 -0
- egain_api_python/models/unsubscribearticleop.py +55 -0
- egain_api_python/models/uploadattachmentop.py +36 -0
- egain_api_python/models/userdetails.py +44 -0
- egain_api_python/models/userprofile.py +33 -0
- egain_api_python/models/userprofiles.py +21 -0
- egain_api_python/models/userview.py +33 -0
- egain_api_python/models/validateimportcontent.py +58 -0
- egain_api_python/models/virtualcase.py +52 -0
- egain_api_python/models/workflow.py +21 -0
- egain_api_python/models/workflowmilestone.py +11 -0
- egain_api_python/models/wserrorcommon.py +17 -0
- egain_api_python/populararticles.py +287 -0
- egain_api_python/portal_article.py +4935 -0
- egain_api_python/portal_attachment.py +494 -0
- egain_api_python/portal_bookmark.py +707 -0
- egain_api_python/portal_sdk.py +88 -0
- egain_api_python/portal_suggestion.py +2283 -0
- egain_api_python/portal_topic.py +975 -0
- egain_api_python/portal_userdetails.py +211 -0
- egain_api_python/portal_userprofile.py +431 -0
- egain_api_python/py.typed +1 -0
- egain_api_python/retrieve.py +265 -0
- egain_api_python/sdk.py +216 -0
- egain_api_python/sdkconfiguration.py +50 -0
- egain_api_python/search.py +251 -0
- egain_api_python/types/__init__.py +21 -0
- egain_api_python/types/basemodel.py +39 -0
- egain_api_python/usermilestones.py +219 -0
- egain_api_python/utils/__init__.py +200 -0
- egain_api_python/utils/annotations.py +79 -0
- egain_api_python/utils/datetimes.py +23 -0
- egain_api_python/utils/enums.py +74 -0
- egain_api_python/utils/eventstreaming.py +248 -0
- egain_api_python/utils/forms.py +223 -0
- egain_api_python/utils/headers.py +136 -0
- egain_api_python/utils/logger.py +27 -0
- egain_api_python/utils/metadata.py +118 -0
- egain_api_python/utils/queryparams.py +205 -0
- egain_api_python/utils/requestbodies.py +66 -0
- egain_api_python/utils/retries.py +217 -0
- egain_api_python/utils/security.py +192 -0
- egain_api_python/utils/serializers.py +249 -0
- egain_api_python/utils/unmarshal_json_response.py +24 -0
- egain_api_python/utils/url.py +155 -0
- egain_api_python/utils/values.py +137 -0
- egain_api_python-0.1.1.dist-info/METADATA +827 -0
- egain_api_python-0.1.1.dist-info/RECORD +332 -0
- egain_api_python-0.1.1.dist-info/WHEEL +5 -0
- egain_api_python-0.1.1.dist-info/licenses/LICENSE +21 -0
- egain_api_python-0.1.1.dist-info/top_level.txt +1 -0
@@ -0,0 +1,2136 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from typing import TYPE_CHECKING
|
4
|
+
from importlib import import_module
|
5
|
+
import builtins
|
6
|
+
import sys
|
7
|
+
|
8
|
+
if TYPE_CHECKING:
|
9
|
+
from .acceptghsolutionop import (
|
10
|
+
AcceptGHSolutionRequest,
|
11
|
+
AcceptGHSolutionRequestTypedDict,
|
12
|
+
)
|
13
|
+
from .acceptlanguage import AcceptLanguage
|
14
|
+
from .accessibleportal import AccessiblePortal, AccessiblePortalTypedDict
|
15
|
+
from .action import Action, ActionTypedDict
|
16
|
+
from .actionsearch import ActionSearch, ActionSearchType, ActionSearchTypedDict
|
17
|
+
from .addasreferenceop import AddAsReferenceRequest, AddAsReferenceRequestTypedDict
|
18
|
+
from .addbookmarkop import AddbookmarkRequest, AddbookmarkRequestTypedDict
|
19
|
+
from .additionalsnippets import (
|
20
|
+
AdditionalSnippets,
|
21
|
+
AdditionalSnippetsDocType,
|
22
|
+
AdditionalSnippetsTypedDict,
|
23
|
+
)
|
24
|
+
from .addtoreplyop import AddToReplyRequest, AddToReplyRequestTypedDict
|
25
|
+
from .aisearchop import AiSearchRequest, AiSearchRequestTypedDict
|
26
|
+
from .aisearchresponse import (
|
27
|
+
AISearchResponse,
|
28
|
+
AISearchResponseChannel,
|
29
|
+
AISearchResponseChannelTypedDict,
|
30
|
+
AISearchResponseType,
|
31
|
+
AISearchResponseTypedDict,
|
32
|
+
SearchResults,
|
33
|
+
SearchResultsTypedDict,
|
34
|
+
)
|
35
|
+
from .allaccessibleportals import (
|
36
|
+
AllAccessiblePortals,
|
37
|
+
AllAccessiblePortalsTypedDict,
|
38
|
+
)
|
39
|
+
from .answer import Answer, AnswerTypedDict
|
40
|
+
from .answeredquestion import (
|
41
|
+
AnswerSource,
|
42
|
+
AnsweredQuestion,
|
43
|
+
AnsweredQuestionFormat,
|
44
|
+
AnsweredQuestionType,
|
45
|
+
AnsweredQuestionTypedDict,
|
46
|
+
)
|
47
|
+
from .answerrange import AnswerRange, AnswerRangeTypedDict
|
48
|
+
from .answersrequest import (
|
49
|
+
AnswersRequest,
|
50
|
+
AnswersRequestChannel,
|
51
|
+
AnswersRequestChannelTypedDict,
|
52
|
+
AnswersRequestType,
|
53
|
+
AnswersRequestTypedDict,
|
54
|
+
Context,
|
55
|
+
ContextTypedDict,
|
56
|
+
)
|
57
|
+
from .answersresponse import (
|
58
|
+
AnswersResponse,
|
59
|
+
AnswersResponseAnswer,
|
60
|
+
AnswersResponseAnswerType,
|
61
|
+
AnswersResponseAnswerTypedDict,
|
62
|
+
AnswersResponseChannel,
|
63
|
+
AnswersResponseChannelTypedDict,
|
64
|
+
AnswersResponseType,
|
65
|
+
AnswersResponseTypedDict,
|
66
|
+
)
|
67
|
+
from .article import Article, ArticleTypedDict
|
68
|
+
from .articleactivitylink import (
|
69
|
+
ArticleActivityLink,
|
70
|
+
ArticleActivityLinkCode,
|
71
|
+
ArticleActivityLinkLanguage,
|
72
|
+
ArticleActivityLinkLanguageTypedDict,
|
73
|
+
ArticleActivityLinkTypedDict,
|
74
|
+
)
|
75
|
+
from .articleadditionalattributes import ArticleAdditionalAttributes
|
76
|
+
from .articleaisearchresult import (
|
77
|
+
ArticleAISearchResult,
|
78
|
+
ArticleAISearchResultCustomAttribute,
|
79
|
+
ArticleAISearchResultCustomAttributeTypedDict,
|
80
|
+
ArticleAISearchResultDocType,
|
81
|
+
ArticleAISearchResultLink,
|
82
|
+
ArticleAISearchResultLinkTypedDict,
|
83
|
+
ArticleAISearchResultSource,
|
84
|
+
ArticleAISearchResultType,
|
85
|
+
ArticleAISearchResultTypeName,
|
86
|
+
ArticleAISearchResultTypedDict,
|
87
|
+
ArticleTypeAttributes,
|
88
|
+
ArticleTypeAttributesTypedDict,
|
89
|
+
OpensearchHighlightingRaw,
|
90
|
+
OpensearchHighlightingRawTypedDict,
|
91
|
+
)
|
92
|
+
from .articleattachment import (
|
93
|
+
ArticleAttachment,
|
94
|
+
ArticleAttachmentType,
|
95
|
+
ArticleAttachmentTypedDict,
|
96
|
+
)
|
97
|
+
from .articlelist import ArticleList, ArticleListTypedDict
|
98
|
+
from .articlelistresult import ArticleListResult, ArticleListResultTypedDict
|
99
|
+
from .articlelistsresult import ArticleListsResult, ArticleListsResultTypedDict
|
100
|
+
from .articlepermissions import ArticlePermissions, ArticlePermissionsTypedDict
|
101
|
+
from .articlepermissionsresult import (
|
102
|
+
ArticlePermissionsResult,
|
103
|
+
ArticlePermissionsResultTypedDict,
|
104
|
+
)
|
105
|
+
from .articlerating import ArticleRating, ArticleRatingTypedDict
|
106
|
+
from .articleratingsresponse import (
|
107
|
+
ArticleRatingsResponse,
|
108
|
+
ArticleRatingsResponseTypedDict,
|
109
|
+
)
|
110
|
+
from .articleresult import ArticleResult, ArticleResultTypedDict
|
111
|
+
from .articleresultadditionalattributes import ArticleResultAdditionalAttributes
|
112
|
+
from .articleresults import ArticleResults, ArticleResultsTypedDict
|
113
|
+
from .articlesearchresult import (
|
114
|
+
ArticleSearchResult,
|
115
|
+
ArticleSearchResultTypedDict,
|
116
|
+
SnippetForStructuredAuthoring,
|
117
|
+
SnippetForStructuredAuthoringTypedDict,
|
118
|
+
)
|
119
|
+
from .articlesearchresults import (
|
120
|
+
ArticleSearchResults,
|
121
|
+
ArticleSearchResultsTypedDict,
|
122
|
+
)
|
123
|
+
from .articlesort import ArticleSort
|
124
|
+
from .articlesortorder import ArticleSortOrder
|
125
|
+
from .articletype import ArticleType, ArticleTypeTypeName, ArticleTypeTypedDict
|
126
|
+
from .articlewitheditions import ArticleWithEditions, ArticleWithEditionsTypedDict
|
127
|
+
from .attachment import Attachment, AttachmentTypedDict
|
128
|
+
from .attachmentadditionalattributes import AttachmentAdditionalAttributes
|
129
|
+
from .attachmentcontent import (
|
130
|
+
AttachmentContent,
|
131
|
+
AttachmentContentType,
|
132
|
+
AttachmentContentTypedDict,
|
133
|
+
)
|
134
|
+
from .attachmentcontentresult import (
|
135
|
+
AttachmentContentResult,
|
136
|
+
AttachmentContentResultTypedDict,
|
137
|
+
)
|
138
|
+
from .attachmentforcreatesuggestion import (
|
139
|
+
AttachmentForCreateSuggestion,
|
140
|
+
AttachmentForCreateSuggestionTypedDict,
|
141
|
+
)
|
142
|
+
from .attachments import Attachments, AttachmentsTypedDict
|
143
|
+
from .attachmentsummary import AttachmentSummary, AttachmentSummaryTypedDict
|
144
|
+
from .attachmentupload import AttachmentUpload, AttachmentUploadTypedDict
|
145
|
+
from .avertcustomerescalationop import (
|
146
|
+
AvertCustomerEscalationRequest,
|
147
|
+
AvertCustomerEscalationRequestTypedDict,
|
148
|
+
)
|
149
|
+
from .bookmark import Bookmark, BookmarkTypedDict
|
150
|
+
from .bookmarkresult import BookmarkResult, BookmarkResultTypedDict
|
151
|
+
from .bookmarkstatus import BookmarkStatus, BookmarkStatusTypedDict
|
152
|
+
from .case import Case, CaseType, CaseTypedDict, ThresholdType
|
153
|
+
from .caseadditionalattributes import CaseAdditionalAttributes
|
154
|
+
from .caseanswer import CaseAnswer, CaseAnswerTypedDict
|
155
|
+
from .casebase import Casebase, CasebaseStatus, CasebaseTypedDict
|
156
|
+
from .casebaseresult import CasebaseResult, CasebaseResultTypedDict
|
157
|
+
from .casebasesearchsettings import (
|
158
|
+
CasebaseSearchSettings,
|
159
|
+
CasebaseSearchSettingsTypedDict,
|
160
|
+
)
|
161
|
+
from .caselistresult import CaseListResult, CaseListResultTypedDict
|
162
|
+
from .caselistresults import CaseListResults, CaseListResultsTypedDict
|
163
|
+
from .casequestion import CaseQuestion, CaseQuestionTypedDict
|
164
|
+
from .casequestiondetail import CaseQuestionDetail, CaseQuestionDetailTypedDict
|
165
|
+
from .casesearch import CaseSearch, CaseSearchType, CaseSearchTypedDict
|
166
|
+
from .clusterid import ClusterID, ClusterIDTypedDict
|
167
|
+
from .clusterresult import ClusterResult, ClusterResultTypedDict
|
168
|
+
from .clusterresults import ClusterResults, ClusterResultsTypedDict
|
169
|
+
from .comment import Comment, CommentTypedDict
|
170
|
+
from .comments import Comments, CommentsTypedDict
|
171
|
+
from .completecustomerescalationop import (
|
172
|
+
CompleteCustomerEscalationRequest,
|
173
|
+
CompleteCustomerEscalationRequestTypedDict,
|
174
|
+
)
|
175
|
+
from .compliancearticleresult import (
|
176
|
+
ComplianceArticleResult,
|
177
|
+
ComplianceArticleResultTypedDict,
|
178
|
+
)
|
179
|
+
from .compliancearticleresultadditionalattributes import (
|
180
|
+
ComplianceArticleResultAdditionalAttributes,
|
181
|
+
)
|
182
|
+
from .compliancearticleresults import (
|
183
|
+
ComplianceArticleResults,
|
184
|
+
ComplianceArticleResultsTypedDict,
|
185
|
+
)
|
186
|
+
from .complianceforarticle import (
|
187
|
+
ComplianceForArticle,
|
188
|
+
ComplianceForArticleTypedDict,
|
189
|
+
DueDateDateAndTime,
|
190
|
+
DueDateDateAndTimeTypedDict,
|
191
|
+
StartDateDateAndTime,
|
192
|
+
StartDateDateAndTimeTypedDict,
|
193
|
+
)
|
194
|
+
from .complyarticleop import ComplyArticleRequest, ComplyArticleRequestTypedDict
|
195
|
+
from .components_schemas_tag import (
|
196
|
+
ComponentsSchemasTag,
|
197
|
+
ComponentsSchemasTagTypedDict,
|
198
|
+
)
|
199
|
+
from .components_schemas_tagcategory import (
|
200
|
+
ComponentsSchemasTagCategory,
|
201
|
+
ComponentsSchemasTagCategoryTypedDict,
|
202
|
+
)
|
203
|
+
from .components_schemas_taggroup import (
|
204
|
+
ComponentsSchemasTagGroup,
|
205
|
+
ComponentsSchemasTagGroupTypedDict,
|
206
|
+
)
|
207
|
+
from .configurableattribute import (
|
208
|
+
ConfigurableAttribute,
|
209
|
+
ConfigurableAttributeTypedDict,
|
210
|
+
)
|
211
|
+
from .configurableattributes import (
|
212
|
+
ConfigurableAttributes,
|
213
|
+
ConfigurableAttributesTypedDict,
|
214
|
+
)
|
215
|
+
from .contactperson import ContactPerson, ContactPersonTypedDict
|
216
|
+
from .contacts import Contacts, ContactsTypedDict
|
217
|
+
from .createbookmark import CreateBookmark, CreateBookmarkTypedDict, UserType
|
218
|
+
from .createdby import CreatedBy, CreatedByTypedDict
|
219
|
+
from .createfederatedsearchevent import (
|
220
|
+
CreateFederatedSearchEvent,
|
221
|
+
CreateFederatedSearchEventTypedDict,
|
222
|
+
ResultType,
|
223
|
+
)
|
224
|
+
from .createfederatedsearchresulteventop import (
|
225
|
+
CreateFederatedSearchResultEventRequest,
|
226
|
+
CreateFederatedSearchResultEventRequestTypedDict,
|
227
|
+
)
|
228
|
+
from .createimportop import (
|
229
|
+
CREATE_IMPORT_OP_SERVERS,
|
230
|
+
CreateImportResponse,
|
231
|
+
CreateImportResponseTypedDict,
|
232
|
+
)
|
233
|
+
from .createimportvalidationop import (
|
234
|
+
CREATE_IMPORT_VALIDATION_OP_SERVERS,
|
235
|
+
CreateImportValidationResponse,
|
236
|
+
CreateImportValidationResponseTypedDict,
|
237
|
+
)
|
238
|
+
from .createquickpick import CreateQuickpick, CreateQuickpickTypedDict
|
239
|
+
from .createquickpickop import (
|
240
|
+
CreateQuickpickRequest,
|
241
|
+
CreateQuickpickRequestTypedDict,
|
242
|
+
)
|
243
|
+
from .createsearchresulteventforconnectors import (
|
244
|
+
CreateSearchResultEventForConnectors,
|
245
|
+
CreateSearchResultEventForConnectorsTypedDict,
|
246
|
+
)
|
247
|
+
from .createsearchresulteventforconnectorsop import (
|
248
|
+
CreateSearchResultEventForConnectorsRequest,
|
249
|
+
CreateSearchResultEventForConnectorsRequestTypedDict,
|
250
|
+
)
|
251
|
+
from .createsignedurlop import (
|
252
|
+
CreateSignedURLRequest,
|
253
|
+
CreateSignedURLRequestTypedDict,
|
254
|
+
)
|
255
|
+
from .createsuggestion import (
|
256
|
+
CreateSuggestion,
|
257
|
+
CreateSuggestionAttachments,
|
258
|
+
CreateSuggestionAttachmentsTypedDict,
|
259
|
+
CreateSuggestionCode,
|
260
|
+
CreateSuggestionLanguage,
|
261
|
+
CreateSuggestionLanguageTypedDict,
|
262
|
+
CreateSuggestionTypedDict,
|
263
|
+
RelatedArticleForCreateUpdateDeleteSuggestion,
|
264
|
+
RelatedArticleForCreateUpdateDeleteSuggestionTypedDict,
|
265
|
+
)
|
266
|
+
from .createviewedsearchresulteventforconnectors import (
|
267
|
+
CreateViewedSearchResultEventForConnectors,
|
268
|
+
CreateViewedSearchResultEventForConnectorsTypedDict,
|
269
|
+
)
|
270
|
+
from .createviewedsearchresultseventforconnectorsop import (
|
271
|
+
CreateViewedSearchResultsEventForConnectorsRequest,
|
272
|
+
CreateViewedSearchResultsEventForConnectorsRequestTypedDict,
|
273
|
+
)
|
274
|
+
from .customattribute import (
|
275
|
+
CustomAttribute,
|
276
|
+
CustomAttributeType,
|
277
|
+
CustomAttributeTypedDict,
|
278
|
+
)
|
279
|
+
from .deletebookmarkop import DeletebookmarkRequest, DeletebookmarkRequestTypedDict
|
280
|
+
from .deletesuggestionop import (
|
281
|
+
DeleteSuggestionRequest,
|
282
|
+
DeleteSuggestionRequestTypedDict,
|
283
|
+
)
|
284
|
+
from .department import Department, DepartmentTypedDict
|
285
|
+
from .detailfield import DetailField, DetailFieldTypedDict
|
286
|
+
from .displayfield import DisplayField, DisplayFieldTypedDict
|
287
|
+
from .dynamiccluster import DynamicCluster, DynamicClusterTypedDict
|
288
|
+
from .dynamicsearch import DynamicSearch, DynamicSearchTypedDict
|
289
|
+
from .edition import (
|
290
|
+
Edition,
|
291
|
+
EditionPublishProfile,
|
292
|
+
EditionPublishProfileTypedDict,
|
293
|
+
EditionTypedDict,
|
294
|
+
)
|
295
|
+
from .editionwithcontent import (
|
296
|
+
EditionWithContent,
|
297
|
+
EditionWithContentAccessTags,
|
298
|
+
EditionWithContentAccessTagsTypedDict,
|
299
|
+
EditionWithContentTypedDict,
|
300
|
+
)
|
301
|
+
from .email import Email, EmailTypedDict
|
302
|
+
from .exportcontentop import ExportContentResponse, ExportContentResponseTypedDict
|
303
|
+
from .exportstatus import (
|
304
|
+
ExportStatus,
|
305
|
+
ExportStatusStatus,
|
306
|
+
ExportStatusTypedDict,
|
307
|
+
Progress,
|
308
|
+
ProgressTypedDict,
|
309
|
+
Results,
|
310
|
+
ResultsTypedDict,
|
311
|
+
)
|
312
|
+
from .exportstatusop import ExportStatusRequest, ExportStatusRequestTypedDict
|
313
|
+
from .feedbackarticleforsuggestion import (
|
314
|
+
FeedbackArticleForSuggestion,
|
315
|
+
FeedbackArticleForSuggestionTypedDict,
|
316
|
+
)
|
317
|
+
from .folderbreadcrumb import FolderBreadcrumb, FolderBreadcrumbTypedDict
|
318
|
+
from .foldersummary import FolderSummary, FolderSummaryTypedDict
|
319
|
+
from .getacknowledgedcompliancearticlesop import (
|
320
|
+
GetAcknowledgedComplianceArticlesRequest,
|
321
|
+
GetAcknowledgedComplianceArticlesRequestTypedDict,
|
322
|
+
)
|
323
|
+
from .getallarticlelistsop import (
|
324
|
+
GetAllArticleListsRequest,
|
325
|
+
GetAllArticleListsRequestTypedDict,
|
326
|
+
)
|
327
|
+
from .getallcasebasesreleasesop import (
|
328
|
+
GetAllCasebasesReleasesRequest,
|
329
|
+
GetAllCasebasesReleasesRequestTypedDict,
|
330
|
+
)
|
331
|
+
from .getallcasesop import GetAllCasesRequest, GetAllCasesRequestTypedDict
|
332
|
+
from .getallportalsop import GetAllPortalsRequest, GetAllPortalsRequestTypedDict
|
333
|
+
from .getallprofilesinportalop import (
|
334
|
+
GetAllProfilesInPortalRequest,
|
335
|
+
GetAllProfilesInPortalRequestTypedDict,
|
336
|
+
)
|
337
|
+
from .getallquickpicksop import (
|
338
|
+
GetAllQuickPicksRequest,
|
339
|
+
GetAllQuickPicksRequestTypedDict,
|
340
|
+
)
|
341
|
+
from .getalltopicsop import GetalltopicsRequest, GetalltopicsRequestTypedDict
|
342
|
+
from .getalluserprofilesop import (
|
343
|
+
GetAllUserProfilesRequest,
|
344
|
+
GetAllUserProfilesRequestTypedDict,
|
345
|
+
)
|
346
|
+
from .getancestortopicsop import (
|
347
|
+
GetancestortopicsRequest,
|
348
|
+
GetancestortopicsRequestTypedDict,
|
349
|
+
)
|
350
|
+
from .getannouncementarticlesop import (
|
351
|
+
GetAnnouncementArticlesRequest,
|
352
|
+
GetAnnouncementArticlesRequestTypedDict,
|
353
|
+
)
|
354
|
+
from .getarticleattachmentbyidop import (
|
355
|
+
GetArticleAttachmentByIDRequest,
|
356
|
+
GetArticleAttachmentByIDRequestTypedDict,
|
357
|
+
)
|
358
|
+
from .getarticlebyidop import (
|
359
|
+
AccessSource,
|
360
|
+
GetArticleByIDRequest,
|
361
|
+
GetArticleByIDRequestTypedDict,
|
362
|
+
)
|
363
|
+
from .getarticlebyidwitheditionsop import (
|
364
|
+
GetArticleByIDWithEditionsRequest,
|
365
|
+
GetArticleByIDWithEditionsRequestTypedDict,
|
366
|
+
)
|
367
|
+
from .getarticleeditiondetailsop import (
|
368
|
+
GetArticleEditionDetailsRequest,
|
369
|
+
GetArticleEditionDetailsRequestTypedDict,
|
370
|
+
)
|
371
|
+
from .getarticlelistdetailsop import (
|
372
|
+
GetArticleListDetailsRequest,
|
373
|
+
GetArticleListDetailsRequestTypedDict,
|
374
|
+
)
|
375
|
+
from .getarticlepermissionsbyidop import (
|
376
|
+
GetArticlePermissionsByIDRequest,
|
377
|
+
GetArticlePermissionsByIDRequestTypedDict,
|
378
|
+
)
|
379
|
+
from .getarticlepersonalizationop import (
|
380
|
+
GetArticlePersonalizationRequest,
|
381
|
+
GetArticlePersonalizationRequestTypedDict,
|
382
|
+
GetArticlePersonalizationWorkflowMilestone,
|
383
|
+
)
|
384
|
+
from .getarticleratingsop import (
|
385
|
+
GetArticleRatingsRequest,
|
386
|
+
GetArticleRatingsRequestTypedDict,
|
387
|
+
)
|
388
|
+
from .getarticlesintopicop import (
|
389
|
+
GetArticlesInTopicRequest,
|
390
|
+
GetArticlesInTopicRequestTypedDict,
|
391
|
+
)
|
392
|
+
from .getattachmentbyidinportalop import (
|
393
|
+
GetAttachmentByIDInPortalRequest,
|
394
|
+
GetAttachmentByIDInPortalRequestTypedDict,
|
395
|
+
)
|
396
|
+
from .getbookmarkop import GetbookmarkRequest, GetbookmarkRequestTypedDict
|
397
|
+
from .getcasebasereleasebyidop import (
|
398
|
+
GetCasebaseReleaseByIDRequest,
|
399
|
+
GetCasebaseReleaseByIDRequestTypedDict,
|
400
|
+
)
|
401
|
+
from .getcasebyidop import GetCaseByIDRequest, GetCaseByIDRequestTypedDict
|
402
|
+
from .getchildtopicsop import GetchildtopicsRequest, GetchildtopicsRequestTypedDict
|
403
|
+
from .getclusterbycasebasereleaseidop import (
|
404
|
+
GetClusterByCasebaseReleaseIDRequest,
|
405
|
+
GetClusterByCasebaseReleaseIDRequestTypedDict,
|
406
|
+
)
|
407
|
+
from .gethealthop import (
|
408
|
+
GET_HEALTH_OP_SERVERS,
|
409
|
+
GetHealthResponse,
|
410
|
+
GetHealthResponseTypedDict,
|
411
|
+
)
|
412
|
+
from .getimportcontentop import (
|
413
|
+
GET_IMPORT_CONTENT_OP_SERVERS,
|
414
|
+
GetImportContentRequest,
|
415
|
+
GetImportContentRequestTypedDict,
|
416
|
+
)
|
417
|
+
from .getmyportalsop import GetMyPortalsRequest, GetMyPortalsRequestTypedDict
|
418
|
+
from .getmysubscriptionop import (
|
419
|
+
GetMySubscriptionRequest,
|
420
|
+
GetMySubscriptionRequestTypedDict,
|
421
|
+
)
|
422
|
+
from .getpendingcompliancearticlesop import (
|
423
|
+
GetPendingComplianceArticlesRequest,
|
424
|
+
GetPendingComplianceArticlesRequestTypedDict,
|
425
|
+
)
|
426
|
+
from .getpopulararticlesop import (
|
427
|
+
GetpopulararticlesRequest,
|
428
|
+
GetpopulararticlesRequestTypedDict,
|
429
|
+
)
|
430
|
+
from .getportaldetailsbyidop import (
|
431
|
+
GetPortalDetailsByIDRequest,
|
432
|
+
GetPortalDetailsByIDRequestTypedDict,
|
433
|
+
)
|
434
|
+
from .getrelatedarticlesforsuggestionop import (
|
435
|
+
GetRelatedArticlesForSuggestionRequest,
|
436
|
+
GetRelatedArticlesForSuggestionRequestTypedDict,
|
437
|
+
)
|
438
|
+
from .getrelatedarticlesop import (
|
439
|
+
GetRelatedArticlesRequest,
|
440
|
+
GetRelatedArticlesRequestTypedDict,
|
441
|
+
)
|
442
|
+
from .getsuggestionattachmentbyidop import (
|
443
|
+
GetSuggestionAttachmentByIDRequest,
|
444
|
+
GetSuggestionAttachmentByIDRequestTypedDict,
|
445
|
+
)
|
446
|
+
from .getsuggestionattachmentsop import (
|
447
|
+
GetSuggestionAttachmentsRequest,
|
448
|
+
GetSuggestionAttachmentsRequestTypedDict,
|
449
|
+
)
|
450
|
+
from .getsuggestioncommentsop import (
|
451
|
+
GetSuggestionCommentsRequest,
|
452
|
+
GetSuggestionCommentsRequestTypedDict,
|
453
|
+
)
|
454
|
+
from .getsuggestionop import GetSuggestionRequest, GetSuggestionRequestTypedDict
|
455
|
+
from .gettagcategoriesforinterestforportalop import (
|
456
|
+
GetTagCategoriesForInterestForPortalRequest,
|
457
|
+
GetTagCategoriesForInterestForPortalRequestTypedDict,
|
458
|
+
)
|
459
|
+
from .gettopicbreadcrumbforarticleop import (
|
460
|
+
GetTopicBreadcrumbForArticleRequest,
|
461
|
+
GetTopicBreadcrumbForArticleRequestTypedDict,
|
462
|
+
)
|
463
|
+
from .getuserdetailsop import GetUserDetailsRequest, GetUserDetailsRequestTypedDict
|
464
|
+
from .getusermilestonesop import (
|
465
|
+
GetUserMilestonesRequest,
|
466
|
+
GetUserMilestonesRequestTypedDict,
|
467
|
+
)
|
468
|
+
from .ghsearchrequest import GHSearchRequest, GHSearchRequestTypedDict
|
469
|
+
from .ghsearchresult import GHSearchResult, GHSearchResultTypedDict
|
470
|
+
from .ghstepsearchrequest import GHStepSearchRequest, GHStepSearchRequestTypedDict
|
471
|
+
from .image import Image, ImageTypedDict
|
472
|
+
from .importcontent import (
|
473
|
+
ImportContent,
|
474
|
+
ImportContentCredentials,
|
475
|
+
ImportContentCredentialsTypedDict,
|
476
|
+
ImportContentDataSource,
|
477
|
+
ImportContentDataSourceTypedDict,
|
478
|
+
ImportContentType,
|
479
|
+
ImportContentTypedDict,
|
480
|
+
Operation,
|
481
|
+
ScheduleTime,
|
482
|
+
ScheduleTimeTypedDict,
|
483
|
+
)
|
484
|
+
from .importstatus import ImportStatus, ImportStatusStatus, ImportStatusTypedDict
|
485
|
+
from .kblanguage import KbLanguage, KbLanguageCode1, KbLanguageTypedDict, Name
|
486
|
+
from .kblanguagecode import KbLanguageCode
|
487
|
+
from .kblanguages import KbLanguages, KbLanguagesTypedDict
|
488
|
+
from .knowledgeexport import (
|
489
|
+
ArticleCategories,
|
490
|
+
DataDestination,
|
491
|
+
DataDestinationTypedDict,
|
492
|
+
DestinationType,
|
493
|
+
KnowledgeExport,
|
494
|
+
KnowledgeExportCode,
|
495
|
+
KnowledgeExportCredentials,
|
496
|
+
KnowledgeExportCredentialsTypedDict,
|
497
|
+
KnowledgeExportLanguage,
|
498
|
+
KnowledgeExportLanguageTypedDict,
|
499
|
+
KnowledgeExportResourceType,
|
500
|
+
KnowledgeExportTypedDict,
|
501
|
+
)
|
502
|
+
from .l10nstring import L10NString, L10NStringTypedDict
|
503
|
+
from .languagecode import LanguageCode
|
504
|
+
from .languagecode_parameter import LanguageCodeParameter
|
505
|
+
from .languagequeryparameter import LanguageQueryParameter
|
506
|
+
from .link import Link, LinkTypedDict
|
507
|
+
from .makesuggestionop import MakeSuggestionRequest, MakeSuggestionRequestTypedDict
|
508
|
+
from .mandatorylanguagequeryparameter import MandatoryLanguageQueryParameter
|
509
|
+
from .metadata import Metadata, MetadataTypedDict
|
510
|
+
from .milestone import Milestone, MilestoneTypedDict
|
511
|
+
from .milestonename import MilestoneName, MilestoneNameTypedDict
|
512
|
+
from .milestones import Milestones, MilestonesTypedDict
|
513
|
+
from .modifiedby import ModifiedBy, ModifiedByTypedDict
|
514
|
+
from .modifysuggestion import (
|
515
|
+
ModifySuggestion,
|
516
|
+
ModifySuggestionAttachments,
|
517
|
+
ModifySuggestionAttachmentsTypedDict,
|
518
|
+
ModifySuggestionTypedDict,
|
519
|
+
)
|
520
|
+
from .modifysuggestionsop import (
|
521
|
+
ModifySuggestionsRequest,
|
522
|
+
ModifySuggestionsRequestTypedDict,
|
523
|
+
)
|
524
|
+
from .optionalarticleattributes import OptionalArticleAttributes
|
525
|
+
from .order import Order
|
526
|
+
from .ownedby import OwnedBy, OwnedByTypedDict
|
527
|
+
from .paginationinfo import PaginationInfo, PaginationInfoTypedDict
|
528
|
+
from .patchimportcontentvalidationop import (
|
529
|
+
PATCH_IMPORT_CONTENT_VALIDATION_OP_SERVERS,
|
530
|
+
PatchImportContentValidationRequest,
|
531
|
+
PatchImportContentValidationRequestTypedDict,
|
532
|
+
)
|
533
|
+
from .personalization import (
|
534
|
+
Filters,
|
535
|
+
FiltersTypedDict,
|
536
|
+
Personalization,
|
537
|
+
PersonalizationAccessTags,
|
538
|
+
PersonalizationAccessTagsTypedDict,
|
539
|
+
PersonalizationTypedDict,
|
540
|
+
PublishViews,
|
541
|
+
PublishViewsTypedDict,
|
542
|
+
)
|
543
|
+
from .phone import Phone, PhoneTypedDict
|
544
|
+
from .portal import Portal, PortalTypedDict
|
545
|
+
from .portalresult import PortalResult, PortalResultTypedDict
|
546
|
+
from .portalsettings import (
|
547
|
+
PortalSettings,
|
548
|
+
PortalSettingsTypedDict,
|
549
|
+
SearchLearningLevel,
|
550
|
+
)
|
551
|
+
from .post_portalid_answersop import (
|
552
|
+
POST_PORTAL_ID_ANSWERS_OP_SERVERS,
|
553
|
+
PostPortalIDAnswersRequest,
|
554
|
+
PostPortalIDAnswersRequestTypedDict,
|
555
|
+
)
|
556
|
+
from .post_portalid_retrieveop import (
|
557
|
+
POST_PORTAL_ID_RETRIEVE_OP_SERVERS,
|
558
|
+
PostPortalIDRetrieveRequest,
|
559
|
+
PostPortalIDRetrieveRequestTypedDict,
|
560
|
+
)
|
561
|
+
from .profile import Profile, ProfileTypedDict
|
562
|
+
from .profileresult import ProfileResult, ProfileResultTypedDict
|
563
|
+
from .publishprofile import PublishProfile, PublishProfileTypedDict
|
564
|
+
from .publishview import (
|
565
|
+
PublishView,
|
566
|
+
PublishViewTagCategory,
|
567
|
+
PublishViewTagCategoryTypedDict,
|
568
|
+
PublishViewTypedDict,
|
569
|
+
)
|
570
|
+
from .question import Question, QuestionFormat, QuestionType, QuestionTypedDict
|
571
|
+
from .questionandanswer import QuestionAndAnswer, QuestionAndAnswerTypedDict
|
572
|
+
from .quickpickrating import QuickpickRating, QuickpickRatingTypedDict
|
573
|
+
from .quickpickresult import QuickpickResult, QuickpickResultTypedDict
|
574
|
+
from .quickpickresults import QuickpickResults, QuickpickResultsTypedDict
|
575
|
+
from .ratearticleop import RateArticleRequest, RateArticleRequestTypedDict
|
576
|
+
from .referenceresponse import (
|
577
|
+
ReferenceResponse,
|
578
|
+
ReferenceResponseDocType,
|
579
|
+
ReferenceResponseLink,
|
580
|
+
ReferenceResponseLinkTypedDict,
|
581
|
+
ReferenceResponseSource,
|
582
|
+
ReferenceResponseTypedDict,
|
583
|
+
)
|
584
|
+
from .rejectghsolutionop import (
|
585
|
+
RejectGHSolutionRequest,
|
586
|
+
RejectGHSolutionRequestTypedDict,
|
587
|
+
)
|
588
|
+
from .relatedquestions import RelatedQuestions, RelatedQuestionsTypedDict
|
589
|
+
from .resourcetype_parameter import ResourceTypeParameter
|
590
|
+
from .restorequickpickop import (
|
591
|
+
RestoreQuickpickRequest,
|
592
|
+
RestoreQuickpickRequestTypedDict,
|
593
|
+
)
|
594
|
+
from .retrieverequest import (
|
595
|
+
RetrieveRequest,
|
596
|
+
RetrieveRequestChannel,
|
597
|
+
RetrieveRequestChannelTypedDict,
|
598
|
+
RetrieveRequestType,
|
599
|
+
RetrieveRequestTypedDict,
|
600
|
+
)
|
601
|
+
from .retrieveresponse import (
|
602
|
+
RetrieveResponse,
|
603
|
+
RetrieveResponseAnswer,
|
604
|
+
RetrieveResponseAnswerType,
|
605
|
+
RetrieveResponseAnswerTypedDict,
|
606
|
+
RetrieveResponseChannel,
|
607
|
+
RetrieveResponseChannelTypedDict,
|
608
|
+
RetrieveResponseType,
|
609
|
+
RetrieveResponseTypedDict,
|
610
|
+
)
|
611
|
+
from .role import Role, RoleTypedDict
|
612
|
+
from .roletemplate import RoleTemplate, RoleTemplateTypedDict
|
613
|
+
from .schemas_answer import SchemasAnswer, SchemasAnswerTypedDict
|
614
|
+
from .schemas_customattribute import (
|
615
|
+
SchemasCustomAttribute,
|
616
|
+
SchemasCustomAttributeType,
|
617
|
+
SchemasCustomAttributeTypedDict,
|
618
|
+
)
|
619
|
+
from .schemas_link import SchemasLink, SchemasLinkTypedDict
|
620
|
+
from .schemas_tag import SchemasTag, SchemasTagTypedDict
|
621
|
+
from .schemas_tagcategory import (
|
622
|
+
CreatedDateAndTime,
|
623
|
+
CreatedDateAndTimeTypedDict,
|
624
|
+
LastModifiedDateAndTime,
|
625
|
+
LastModifiedDateAndTimeTypedDict,
|
626
|
+
SchemasTagCategory,
|
627
|
+
SchemasTagCategoryTypedDict,
|
628
|
+
)
|
629
|
+
from .schemas_taggroup import SchemasTagGroup, SchemasTagGroupTypedDict
|
630
|
+
from .schemas_tags import SchemasTags, SchemasTagsTypedDict
|
631
|
+
from .schemas_wserrorcommon import (
|
632
|
+
SchemasWSErrorCommonDetail,
|
633
|
+
SchemasWSErrorCommonDetailTypedDict,
|
634
|
+
)
|
635
|
+
from .searchfilterattribute import (
|
636
|
+
SearchFilterAttribute,
|
637
|
+
SearchFilterAttributeTypedDict,
|
638
|
+
ValueType,
|
639
|
+
)
|
640
|
+
from .searchpriortoescalationop import (
|
641
|
+
SearchPriorToEscalationRequest,
|
642
|
+
SearchPriorToEscalationRequestTypedDict,
|
643
|
+
)
|
644
|
+
from .searchresult import (
|
645
|
+
SearchResult,
|
646
|
+
SearchResultDocType,
|
647
|
+
SearchResultLink,
|
648
|
+
SearchResultLinkTypedDict,
|
649
|
+
SearchResultSource,
|
650
|
+
SearchResultTypedDict,
|
651
|
+
SnippetType,
|
652
|
+
)
|
653
|
+
from .searchsuggestionop import (
|
654
|
+
FilterStatus,
|
655
|
+
SearchSuggestionRequest,
|
656
|
+
SearchSuggestionRequestTypedDict,
|
657
|
+
)
|
658
|
+
from .security import Security, SecurityTypedDict
|
659
|
+
from .selectuserprofileop import (
|
660
|
+
SelectUserProfileRequest,
|
661
|
+
SelectUserProfileRequestTypedDict,
|
662
|
+
)
|
663
|
+
from .sessioncontextvariable import (
|
664
|
+
SessionContextVariable,
|
665
|
+
SessionContextVariableTypedDict,
|
666
|
+
)
|
667
|
+
from .shorturl import ShortURL, ShortURLTypedDict
|
668
|
+
from .sortidname import SortIDName
|
669
|
+
from .sortidnamedepartment import SortIDNameDepartment
|
670
|
+
from .stage import Stage, StageTypedDict
|
671
|
+
from .startcustomerescalationop import (
|
672
|
+
StartCustomerEscalationRequest,
|
673
|
+
StartCustomerEscalationRequestTypedDict,
|
674
|
+
StartCustomerEscalationResponse,
|
675
|
+
StartCustomerEscalationResponseTypedDict,
|
676
|
+
)
|
677
|
+
from .startescalationrequest import (
|
678
|
+
Captcha,
|
679
|
+
CaptchaTypedDict,
|
680
|
+
ChannelEnum,
|
681
|
+
Customer,
|
682
|
+
CustomerTypedDict,
|
683
|
+
StartEscalationRequest,
|
684
|
+
StartEscalationRequestTypedDict,
|
685
|
+
)
|
686
|
+
from .startghsearchop import (
|
687
|
+
StartGHSearchRequest,
|
688
|
+
StartGHSearchRequestTypedDict,
|
689
|
+
StartGHSearchResponse,
|
690
|
+
StartGHSearchResponseTypedDict,
|
691
|
+
)
|
692
|
+
from .startquestionandanswer import (
|
693
|
+
StartQuestionAndAnswer,
|
694
|
+
StartQuestionAndAnswerTypedDict,
|
695
|
+
)
|
696
|
+
from .stepghsearchop import StepGHSearchRequest, StepGHSearchRequestTypedDict
|
697
|
+
from .stringattributevalue import (
|
698
|
+
StringAttributeValue,
|
699
|
+
StringAttributeValueTypedDict,
|
700
|
+
)
|
701
|
+
from .structuredauthoringfields import (
|
702
|
+
StructuredAuthoringFields,
|
703
|
+
StructuredAuthoringFieldsTypedDict,
|
704
|
+
)
|
705
|
+
from .subscribearticleop import (
|
706
|
+
SubscribeArticleRequest,
|
707
|
+
SubscribeArticleRequestTypedDict,
|
708
|
+
)
|
709
|
+
from .suggestion import (
|
710
|
+
Label,
|
711
|
+
Suggestion,
|
712
|
+
SuggestionCode,
|
713
|
+
SuggestionL10NString,
|
714
|
+
SuggestionL10NStringTypedDict,
|
715
|
+
SuggestionLanguage,
|
716
|
+
SuggestionLanguageTypedDict,
|
717
|
+
SuggestionTypedDict,
|
718
|
+
)
|
719
|
+
from .suggestionadditionalattributes import SuggestionAdditionalAttributes
|
720
|
+
from .suggestionattachment import (
|
721
|
+
SuggestionAttachment,
|
722
|
+
SuggestionAttachmentTypedDict,
|
723
|
+
)
|
724
|
+
from .suggestions import Suggestions, SuggestionsTypedDict
|
725
|
+
from .tag import Tag, TagTypedDict
|
726
|
+
from .tagcategoriesforinterest import (
|
727
|
+
TagCategoriesForInterest,
|
728
|
+
TagCategoriesForInterestTypedDict,
|
729
|
+
)
|
730
|
+
from .tagcategory import TagCategory, TagCategoryTypedDict
|
731
|
+
from .taggroup import TagGroup, TagGroupTypedDict
|
732
|
+
from .taggroups import TagGroups, TagGroupsTypedDict
|
733
|
+
from .tags import Tags, TagsTypedDict
|
734
|
+
from .topic import Topic, TopicTypedDict
|
735
|
+
from .topicadditionalattributes import TopicAdditionalAttributes
|
736
|
+
from .topicaisearchresult import TopicAISearchResult, TopicAISearchResultTypedDict
|
737
|
+
from .topicbreadcrumb import TopicBreadcrumb, TopicBreadcrumbTypedDict
|
738
|
+
from .topicresult import TopicResult, TopicResultTypedDict
|
739
|
+
from .topicsummary import TopicSummary, TopicSummaryTypedDict
|
740
|
+
from .topictreenode import TopicTreeNode, TopicTreeNodeTypedDict
|
741
|
+
from .topictreeresult import TopicTreeResult, TopicTreeResultTypedDict
|
742
|
+
from .unsubscribearticleop import (
|
743
|
+
UnsubscribeArticleRequest,
|
744
|
+
UnsubscribeArticleRequestTypedDict,
|
745
|
+
)
|
746
|
+
from .uploadattachmentop import (
|
747
|
+
UploadAttachmentRequest,
|
748
|
+
UploadAttachmentRequestTypedDict,
|
749
|
+
)
|
750
|
+
from .userdetails import UserDetails, UserDetailsTypedDict
|
751
|
+
from .userprofile import UserProfile, UserProfileTypedDict
|
752
|
+
from .userprofiles import UserProfiles, UserProfilesTypedDict
|
753
|
+
from .userview import UserView, UserViewTypedDict
|
754
|
+
from .validateimportcontent import (
|
755
|
+
ValidateImportContent,
|
756
|
+
ValidateImportContentCredentials,
|
757
|
+
ValidateImportContentCredentialsTypedDict,
|
758
|
+
ValidateImportContentDataSource,
|
759
|
+
ValidateImportContentDataSourceTypedDict,
|
760
|
+
ValidateImportContentType,
|
761
|
+
ValidateImportContentTypedDict,
|
762
|
+
)
|
763
|
+
from .virtualcase import VirtualCase, VirtualCaseTypedDict
|
764
|
+
from .workflow import Workflow, WorkflowTypedDict
|
765
|
+
from .workflowmilestone import WorkflowMilestone
|
766
|
+
from .wserrorcommon import WSErrorCommonDetail, WSErrorCommonDetailTypedDict
|
767
|
+
|
768
|
+
__all__ = [
|
769
|
+
"AISearchResponse",
|
770
|
+
"AISearchResponseChannel",
|
771
|
+
"AISearchResponseChannelTypedDict",
|
772
|
+
"AISearchResponseType",
|
773
|
+
"AISearchResponseTypedDict",
|
774
|
+
"AcceptGHSolutionRequest",
|
775
|
+
"AcceptGHSolutionRequestTypedDict",
|
776
|
+
"AcceptLanguage",
|
777
|
+
"AccessSource",
|
778
|
+
"AccessiblePortal",
|
779
|
+
"AccessiblePortalTypedDict",
|
780
|
+
"Action",
|
781
|
+
"ActionSearch",
|
782
|
+
"ActionSearchType",
|
783
|
+
"ActionSearchTypedDict",
|
784
|
+
"ActionTypedDict",
|
785
|
+
"AddAsReferenceRequest",
|
786
|
+
"AddAsReferenceRequestTypedDict",
|
787
|
+
"AddToReplyRequest",
|
788
|
+
"AddToReplyRequestTypedDict",
|
789
|
+
"AddbookmarkRequest",
|
790
|
+
"AddbookmarkRequestTypedDict",
|
791
|
+
"AdditionalSnippets",
|
792
|
+
"AdditionalSnippetsDocType",
|
793
|
+
"AdditionalSnippetsTypedDict",
|
794
|
+
"AiSearchRequest",
|
795
|
+
"AiSearchRequestTypedDict",
|
796
|
+
"AllAccessiblePortals",
|
797
|
+
"AllAccessiblePortalsTypedDict",
|
798
|
+
"Answer",
|
799
|
+
"AnswerRange",
|
800
|
+
"AnswerRangeTypedDict",
|
801
|
+
"AnswerSource",
|
802
|
+
"AnswerTypedDict",
|
803
|
+
"AnsweredQuestion",
|
804
|
+
"AnsweredQuestionFormat",
|
805
|
+
"AnsweredQuestionType",
|
806
|
+
"AnsweredQuestionTypedDict",
|
807
|
+
"AnswersRequest",
|
808
|
+
"AnswersRequestChannel",
|
809
|
+
"AnswersRequestChannelTypedDict",
|
810
|
+
"AnswersRequestType",
|
811
|
+
"AnswersRequestTypedDict",
|
812
|
+
"AnswersResponse",
|
813
|
+
"AnswersResponseAnswer",
|
814
|
+
"AnswersResponseAnswerType",
|
815
|
+
"AnswersResponseAnswerTypedDict",
|
816
|
+
"AnswersResponseChannel",
|
817
|
+
"AnswersResponseChannelTypedDict",
|
818
|
+
"AnswersResponseType",
|
819
|
+
"AnswersResponseTypedDict",
|
820
|
+
"Article",
|
821
|
+
"ArticleAISearchResult",
|
822
|
+
"ArticleAISearchResultCustomAttribute",
|
823
|
+
"ArticleAISearchResultCustomAttributeTypedDict",
|
824
|
+
"ArticleAISearchResultDocType",
|
825
|
+
"ArticleAISearchResultLink",
|
826
|
+
"ArticleAISearchResultLinkTypedDict",
|
827
|
+
"ArticleAISearchResultSource",
|
828
|
+
"ArticleAISearchResultType",
|
829
|
+
"ArticleAISearchResultTypeName",
|
830
|
+
"ArticleAISearchResultTypedDict",
|
831
|
+
"ArticleActivityLink",
|
832
|
+
"ArticleActivityLinkCode",
|
833
|
+
"ArticleActivityLinkLanguage",
|
834
|
+
"ArticleActivityLinkLanguageTypedDict",
|
835
|
+
"ArticleActivityLinkTypedDict",
|
836
|
+
"ArticleAdditionalAttributes",
|
837
|
+
"ArticleAttachment",
|
838
|
+
"ArticleAttachmentType",
|
839
|
+
"ArticleAttachmentTypedDict",
|
840
|
+
"ArticleCategories",
|
841
|
+
"ArticleList",
|
842
|
+
"ArticleListResult",
|
843
|
+
"ArticleListResultTypedDict",
|
844
|
+
"ArticleListTypedDict",
|
845
|
+
"ArticleListsResult",
|
846
|
+
"ArticleListsResultTypedDict",
|
847
|
+
"ArticlePermissions",
|
848
|
+
"ArticlePermissionsResult",
|
849
|
+
"ArticlePermissionsResultTypedDict",
|
850
|
+
"ArticlePermissionsTypedDict",
|
851
|
+
"ArticleRating",
|
852
|
+
"ArticleRatingTypedDict",
|
853
|
+
"ArticleRatingsResponse",
|
854
|
+
"ArticleRatingsResponseTypedDict",
|
855
|
+
"ArticleResult",
|
856
|
+
"ArticleResultAdditionalAttributes",
|
857
|
+
"ArticleResultTypedDict",
|
858
|
+
"ArticleResults",
|
859
|
+
"ArticleResultsTypedDict",
|
860
|
+
"ArticleSearchResult",
|
861
|
+
"ArticleSearchResultTypedDict",
|
862
|
+
"ArticleSearchResults",
|
863
|
+
"ArticleSearchResultsTypedDict",
|
864
|
+
"ArticleSort",
|
865
|
+
"ArticleSortOrder",
|
866
|
+
"ArticleType",
|
867
|
+
"ArticleTypeAttributes",
|
868
|
+
"ArticleTypeAttributesTypedDict",
|
869
|
+
"ArticleTypeTypeName",
|
870
|
+
"ArticleTypeTypedDict",
|
871
|
+
"ArticleTypedDict",
|
872
|
+
"ArticleWithEditions",
|
873
|
+
"ArticleWithEditionsTypedDict",
|
874
|
+
"Attachment",
|
875
|
+
"AttachmentAdditionalAttributes",
|
876
|
+
"AttachmentContent",
|
877
|
+
"AttachmentContentResult",
|
878
|
+
"AttachmentContentResultTypedDict",
|
879
|
+
"AttachmentContentType",
|
880
|
+
"AttachmentContentTypedDict",
|
881
|
+
"AttachmentForCreateSuggestion",
|
882
|
+
"AttachmentForCreateSuggestionTypedDict",
|
883
|
+
"AttachmentSummary",
|
884
|
+
"AttachmentSummaryTypedDict",
|
885
|
+
"AttachmentTypedDict",
|
886
|
+
"AttachmentUpload",
|
887
|
+
"AttachmentUploadTypedDict",
|
888
|
+
"Attachments",
|
889
|
+
"AttachmentsTypedDict",
|
890
|
+
"AvertCustomerEscalationRequest",
|
891
|
+
"AvertCustomerEscalationRequestTypedDict",
|
892
|
+
"Bookmark",
|
893
|
+
"BookmarkResult",
|
894
|
+
"BookmarkResultTypedDict",
|
895
|
+
"BookmarkStatus",
|
896
|
+
"BookmarkStatusTypedDict",
|
897
|
+
"BookmarkTypedDict",
|
898
|
+
"CREATE_IMPORT_OP_SERVERS",
|
899
|
+
"CREATE_IMPORT_VALIDATION_OP_SERVERS",
|
900
|
+
"Captcha",
|
901
|
+
"CaptchaTypedDict",
|
902
|
+
"Case",
|
903
|
+
"CaseAdditionalAttributes",
|
904
|
+
"CaseAnswer",
|
905
|
+
"CaseAnswerTypedDict",
|
906
|
+
"CaseListResult",
|
907
|
+
"CaseListResultTypedDict",
|
908
|
+
"CaseListResults",
|
909
|
+
"CaseListResultsTypedDict",
|
910
|
+
"CaseQuestion",
|
911
|
+
"CaseQuestionDetail",
|
912
|
+
"CaseQuestionDetailTypedDict",
|
913
|
+
"CaseQuestionTypedDict",
|
914
|
+
"CaseSearch",
|
915
|
+
"CaseSearchType",
|
916
|
+
"CaseSearchTypedDict",
|
917
|
+
"CaseType",
|
918
|
+
"CaseTypedDict",
|
919
|
+
"Casebase",
|
920
|
+
"CasebaseResult",
|
921
|
+
"CasebaseResultTypedDict",
|
922
|
+
"CasebaseSearchSettings",
|
923
|
+
"CasebaseSearchSettingsTypedDict",
|
924
|
+
"CasebaseStatus",
|
925
|
+
"CasebaseTypedDict",
|
926
|
+
"ChannelEnum",
|
927
|
+
"ClusterID",
|
928
|
+
"ClusterIDTypedDict",
|
929
|
+
"ClusterResult",
|
930
|
+
"ClusterResultTypedDict",
|
931
|
+
"ClusterResults",
|
932
|
+
"ClusterResultsTypedDict",
|
933
|
+
"Comment",
|
934
|
+
"CommentTypedDict",
|
935
|
+
"Comments",
|
936
|
+
"CommentsTypedDict",
|
937
|
+
"CompleteCustomerEscalationRequest",
|
938
|
+
"CompleteCustomerEscalationRequestTypedDict",
|
939
|
+
"ComplianceArticleResult",
|
940
|
+
"ComplianceArticleResultAdditionalAttributes",
|
941
|
+
"ComplianceArticleResultTypedDict",
|
942
|
+
"ComplianceArticleResults",
|
943
|
+
"ComplianceArticleResultsTypedDict",
|
944
|
+
"ComplianceForArticle",
|
945
|
+
"ComplianceForArticleTypedDict",
|
946
|
+
"ComplyArticleRequest",
|
947
|
+
"ComplyArticleRequestTypedDict",
|
948
|
+
"ComponentsSchemasTag",
|
949
|
+
"ComponentsSchemasTagCategory",
|
950
|
+
"ComponentsSchemasTagCategoryTypedDict",
|
951
|
+
"ComponentsSchemasTagGroup",
|
952
|
+
"ComponentsSchemasTagGroupTypedDict",
|
953
|
+
"ComponentsSchemasTagTypedDict",
|
954
|
+
"ConfigurableAttribute",
|
955
|
+
"ConfigurableAttributeTypedDict",
|
956
|
+
"ConfigurableAttributes",
|
957
|
+
"ConfigurableAttributesTypedDict",
|
958
|
+
"ContactPerson",
|
959
|
+
"ContactPersonTypedDict",
|
960
|
+
"Contacts",
|
961
|
+
"ContactsTypedDict",
|
962
|
+
"Context",
|
963
|
+
"ContextTypedDict",
|
964
|
+
"CreateBookmark",
|
965
|
+
"CreateBookmarkTypedDict",
|
966
|
+
"CreateFederatedSearchEvent",
|
967
|
+
"CreateFederatedSearchEventTypedDict",
|
968
|
+
"CreateFederatedSearchResultEventRequest",
|
969
|
+
"CreateFederatedSearchResultEventRequestTypedDict",
|
970
|
+
"CreateImportResponse",
|
971
|
+
"CreateImportResponseTypedDict",
|
972
|
+
"CreateImportValidationResponse",
|
973
|
+
"CreateImportValidationResponseTypedDict",
|
974
|
+
"CreateQuickpick",
|
975
|
+
"CreateQuickpickRequest",
|
976
|
+
"CreateQuickpickRequestTypedDict",
|
977
|
+
"CreateQuickpickTypedDict",
|
978
|
+
"CreateSearchResultEventForConnectors",
|
979
|
+
"CreateSearchResultEventForConnectorsRequest",
|
980
|
+
"CreateSearchResultEventForConnectorsRequestTypedDict",
|
981
|
+
"CreateSearchResultEventForConnectorsTypedDict",
|
982
|
+
"CreateSignedURLRequest",
|
983
|
+
"CreateSignedURLRequestTypedDict",
|
984
|
+
"CreateSuggestion",
|
985
|
+
"CreateSuggestionAttachments",
|
986
|
+
"CreateSuggestionAttachmentsTypedDict",
|
987
|
+
"CreateSuggestionCode",
|
988
|
+
"CreateSuggestionLanguage",
|
989
|
+
"CreateSuggestionLanguageTypedDict",
|
990
|
+
"CreateSuggestionTypedDict",
|
991
|
+
"CreateViewedSearchResultEventForConnectors",
|
992
|
+
"CreateViewedSearchResultEventForConnectorsTypedDict",
|
993
|
+
"CreateViewedSearchResultsEventForConnectorsRequest",
|
994
|
+
"CreateViewedSearchResultsEventForConnectorsRequestTypedDict",
|
995
|
+
"CreatedBy",
|
996
|
+
"CreatedByTypedDict",
|
997
|
+
"CreatedDateAndTime",
|
998
|
+
"CreatedDateAndTimeTypedDict",
|
999
|
+
"CustomAttribute",
|
1000
|
+
"CustomAttributeType",
|
1001
|
+
"CustomAttributeTypedDict",
|
1002
|
+
"Customer",
|
1003
|
+
"CustomerTypedDict",
|
1004
|
+
"DataDestination",
|
1005
|
+
"DataDestinationTypedDict",
|
1006
|
+
"DeleteSuggestionRequest",
|
1007
|
+
"DeleteSuggestionRequestTypedDict",
|
1008
|
+
"DeletebookmarkRequest",
|
1009
|
+
"DeletebookmarkRequestTypedDict",
|
1010
|
+
"Department",
|
1011
|
+
"DepartmentTypedDict",
|
1012
|
+
"DestinationType",
|
1013
|
+
"DetailField",
|
1014
|
+
"DetailFieldTypedDict",
|
1015
|
+
"DisplayField",
|
1016
|
+
"DisplayFieldTypedDict",
|
1017
|
+
"DueDateDateAndTime",
|
1018
|
+
"DueDateDateAndTimeTypedDict",
|
1019
|
+
"DynamicCluster",
|
1020
|
+
"DynamicClusterTypedDict",
|
1021
|
+
"DynamicSearch",
|
1022
|
+
"DynamicSearchTypedDict",
|
1023
|
+
"Edition",
|
1024
|
+
"EditionPublishProfile",
|
1025
|
+
"EditionPublishProfileTypedDict",
|
1026
|
+
"EditionTypedDict",
|
1027
|
+
"EditionWithContent",
|
1028
|
+
"EditionWithContentAccessTags",
|
1029
|
+
"EditionWithContentAccessTagsTypedDict",
|
1030
|
+
"EditionWithContentTypedDict",
|
1031
|
+
"Email",
|
1032
|
+
"EmailTypedDict",
|
1033
|
+
"ExportContentResponse",
|
1034
|
+
"ExportContentResponseTypedDict",
|
1035
|
+
"ExportStatus",
|
1036
|
+
"ExportStatusRequest",
|
1037
|
+
"ExportStatusRequestTypedDict",
|
1038
|
+
"ExportStatusStatus",
|
1039
|
+
"ExportStatusTypedDict",
|
1040
|
+
"FeedbackArticleForSuggestion",
|
1041
|
+
"FeedbackArticleForSuggestionTypedDict",
|
1042
|
+
"FilterStatus",
|
1043
|
+
"Filters",
|
1044
|
+
"FiltersTypedDict",
|
1045
|
+
"FolderBreadcrumb",
|
1046
|
+
"FolderBreadcrumbTypedDict",
|
1047
|
+
"FolderSummary",
|
1048
|
+
"FolderSummaryTypedDict",
|
1049
|
+
"GET_HEALTH_OP_SERVERS",
|
1050
|
+
"GET_IMPORT_CONTENT_OP_SERVERS",
|
1051
|
+
"GHSearchRequest",
|
1052
|
+
"GHSearchRequestTypedDict",
|
1053
|
+
"GHSearchResult",
|
1054
|
+
"GHSearchResultTypedDict",
|
1055
|
+
"GHStepSearchRequest",
|
1056
|
+
"GHStepSearchRequestTypedDict",
|
1057
|
+
"GetAcknowledgedComplianceArticlesRequest",
|
1058
|
+
"GetAcknowledgedComplianceArticlesRequestTypedDict",
|
1059
|
+
"GetAllArticleListsRequest",
|
1060
|
+
"GetAllArticleListsRequestTypedDict",
|
1061
|
+
"GetAllCasebasesReleasesRequest",
|
1062
|
+
"GetAllCasebasesReleasesRequestTypedDict",
|
1063
|
+
"GetAllCasesRequest",
|
1064
|
+
"GetAllCasesRequestTypedDict",
|
1065
|
+
"GetAllPortalsRequest",
|
1066
|
+
"GetAllPortalsRequestTypedDict",
|
1067
|
+
"GetAllProfilesInPortalRequest",
|
1068
|
+
"GetAllProfilesInPortalRequestTypedDict",
|
1069
|
+
"GetAllQuickPicksRequest",
|
1070
|
+
"GetAllQuickPicksRequestTypedDict",
|
1071
|
+
"GetAllUserProfilesRequest",
|
1072
|
+
"GetAllUserProfilesRequestTypedDict",
|
1073
|
+
"GetAnnouncementArticlesRequest",
|
1074
|
+
"GetAnnouncementArticlesRequestTypedDict",
|
1075
|
+
"GetArticleAttachmentByIDRequest",
|
1076
|
+
"GetArticleAttachmentByIDRequestTypedDict",
|
1077
|
+
"GetArticleByIDRequest",
|
1078
|
+
"GetArticleByIDRequestTypedDict",
|
1079
|
+
"GetArticleByIDWithEditionsRequest",
|
1080
|
+
"GetArticleByIDWithEditionsRequestTypedDict",
|
1081
|
+
"GetArticleEditionDetailsRequest",
|
1082
|
+
"GetArticleEditionDetailsRequestTypedDict",
|
1083
|
+
"GetArticleListDetailsRequest",
|
1084
|
+
"GetArticleListDetailsRequestTypedDict",
|
1085
|
+
"GetArticlePermissionsByIDRequest",
|
1086
|
+
"GetArticlePermissionsByIDRequestTypedDict",
|
1087
|
+
"GetArticlePersonalizationRequest",
|
1088
|
+
"GetArticlePersonalizationRequestTypedDict",
|
1089
|
+
"GetArticlePersonalizationWorkflowMilestone",
|
1090
|
+
"GetArticleRatingsRequest",
|
1091
|
+
"GetArticleRatingsRequestTypedDict",
|
1092
|
+
"GetArticlesInTopicRequest",
|
1093
|
+
"GetArticlesInTopicRequestTypedDict",
|
1094
|
+
"GetAttachmentByIDInPortalRequest",
|
1095
|
+
"GetAttachmentByIDInPortalRequestTypedDict",
|
1096
|
+
"GetCaseByIDRequest",
|
1097
|
+
"GetCaseByIDRequestTypedDict",
|
1098
|
+
"GetCasebaseReleaseByIDRequest",
|
1099
|
+
"GetCasebaseReleaseByIDRequestTypedDict",
|
1100
|
+
"GetClusterByCasebaseReleaseIDRequest",
|
1101
|
+
"GetClusterByCasebaseReleaseIDRequestTypedDict",
|
1102
|
+
"GetHealthResponse",
|
1103
|
+
"GetHealthResponseTypedDict",
|
1104
|
+
"GetImportContentRequest",
|
1105
|
+
"GetImportContentRequestTypedDict",
|
1106
|
+
"GetMyPortalsRequest",
|
1107
|
+
"GetMyPortalsRequestTypedDict",
|
1108
|
+
"GetMySubscriptionRequest",
|
1109
|
+
"GetMySubscriptionRequestTypedDict",
|
1110
|
+
"GetPendingComplianceArticlesRequest",
|
1111
|
+
"GetPendingComplianceArticlesRequestTypedDict",
|
1112
|
+
"GetPortalDetailsByIDRequest",
|
1113
|
+
"GetPortalDetailsByIDRequestTypedDict",
|
1114
|
+
"GetRelatedArticlesForSuggestionRequest",
|
1115
|
+
"GetRelatedArticlesForSuggestionRequestTypedDict",
|
1116
|
+
"GetRelatedArticlesRequest",
|
1117
|
+
"GetRelatedArticlesRequestTypedDict",
|
1118
|
+
"GetSuggestionAttachmentByIDRequest",
|
1119
|
+
"GetSuggestionAttachmentByIDRequestTypedDict",
|
1120
|
+
"GetSuggestionAttachmentsRequest",
|
1121
|
+
"GetSuggestionAttachmentsRequestTypedDict",
|
1122
|
+
"GetSuggestionCommentsRequest",
|
1123
|
+
"GetSuggestionCommentsRequestTypedDict",
|
1124
|
+
"GetSuggestionRequest",
|
1125
|
+
"GetSuggestionRequestTypedDict",
|
1126
|
+
"GetTagCategoriesForInterestForPortalRequest",
|
1127
|
+
"GetTagCategoriesForInterestForPortalRequestTypedDict",
|
1128
|
+
"GetTopicBreadcrumbForArticleRequest",
|
1129
|
+
"GetTopicBreadcrumbForArticleRequestTypedDict",
|
1130
|
+
"GetUserDetailsRequest",
|
1131
|
+
"GetUserDetailsRequestTypedDict",
|
1132
|
+
"GetUserMilestonesRequest",
|
1133
|
+
"GetUserMilestonesRequestTypedDict",
|
1134
|
+
"GetalltopicsRequest",
|
1135
|
+
"GetalltopicsRequestTypedDict",
|
1136
|
+
"GetancestortopicsRequest",
|
1137
|
+
"GetancestortopicsRequestTypedDict",
|
1138
|
+
"GetbookmarkRequest",
|
1139
|
+
"GetbookmarkRequestTypedDict",
|
1140
|
+
"GetchildtopicsRequest",
|
1141
|
+
"GetchildtopicsRequestTypedDict",
|
1142
|
+
"GetpopulararticlesRequest",
|
1143
|
+
"GetpopulararticlesRequestTypedDict",
|
1144
|
+
"Image",
|
1145
|
+
"ImageTypedDict",
|
1146
|
+
"ImportContent",
|
1147
|
+
"ImportContentCredentials",
|
1148
|
+
"ImportContentCredentialsTypedDict",
|
1149
|
+
"ImportContentDataSource",
|
1150
|
+
"ImportContentDataSourceTypedDict",
|
1151
|
+
"ImportContentType",
|
1152
|
+
"ImportContentTypedDict",
|
1153
|
+
"ImportStatus",
|
1154
|
+
"ImportStatusStatus",
|
1155
|
+
"ImportStatusTypedDict",
|
1156
|
+
"KbLanguage",
|
1157
|
+
"KbLanguageCode",
|
1158
|
+
"KbLanguageCode1",
|
1159
|
+
"KbLanguageTypedDict",
|
1160
|
+
"KbLanguages",
|
1161
|
+
"KbLanguagesTypedDict",
|
1162
|
+
"KnowledgeExport",
|
1163
|
+
"KnowledgeExportCode",
|
1164
|
+
"KnowledgeExportCredentials",
|
1165
|
+
"KnowledgeExportCredentialsTypedDict",
|
1166
|
+
"KnowledgeExportLanguage",
|
1167
|
+
"KnowledgeExportLanguageTypedDict",
|
1168
|
+
"KnowledgeExportResourceType",
|
1169
|
+
"KnowledgeExportTypedDict",
|
1170
|
+
"L10NString",
|
1171
|
+
"L10NStringTypedDict",
|
1172
|
+
"Label",
|
1173
|
+
"LanguageCode",
|
1174
|
+
"LanguageCodeParameter",
|
1175
|
+
"LanguageQueryParameter",
|
1176
|
+
"LastModifiedDateAndTime",
|
1177
|
+
"LastModifiedDateAndTimeTypedDict",
|
1178
|
+
"Link",
|
1179
|
+
"LinkTypedDict",
|
1180
|
+
"MakeSuggestionRequest",
|
1181
|
+
"MakeSuggestionRequestTypedDict",
|
1182
|
+
"MandatoryLanguageQueryParameter",
|
1183
|
+
"Metadata",
|
1184
|
+
"MetadataTypedDict",
|
1185
|
+
"Milestone",
|
1186
|
+
"MilestoneName",
|
1187
|
+
"MilestoneNameTypedDict",
|
1188
|
+
"MilestoneTypedDict",
|
1189
|
+
"Milestones",
|
1190
|
+
"MilestonesTypedDict",
|
1191
|
+
"ModifiedBy",
|
1192
|
+
"ModifiedByTypedDict",
|
1193
|
+
"ModifySuggestion",
|
1194
|
+
"ModifySuggestionAttachments",
|
1195
|
+
"ModifySuggestionAttachmentsTypedDict",
|
1196
|
+
"ModifySuggestionTypedDict",
|
1197
|
+
"ModifySuggestionsRequest",
|
1198
|
+
"ModifySuggestionsRequestTypedDict",
|
1199
|
+
"Name",
|
1200
|
+
"OpensearchHighlightingRaw",
|
1201
|
+
"OpensearchHighlightingRawTypedDict",
|
1202
|
+
"Operation",
|
1203
|
+
"OptionalArticleAttributes",
|
1204
|
+
"Order",
|
1205
|
+
"OwnedBy",
|
1206
|
+
"OwnedByTypedDict",
|
1207
|
+
"PATCH_IMPORT_CONTENT_VALIDATION_OP_SERVERS",
|
1208
|
+
"POST_PORTAL_ID_ANSWERS_OP_SERVERS",
|
1209
|
+
"POST_PORTAL_ID_RETRIEVE_OP_SERVERS",
|
1210
|
+
"PaginationInfo",
|
1211
|
+
"PaginationInfoTypedDict",
|
1212
|
+
"PatchImportContentValidationRequest",
|
1213
|
+
"PatchImportContentValidationRequestTypedDict",
|
1214
|
+
"Personalization",
|
1215
|
+
"PersonalizationAccessTags",
|
1216
|
+
"PersonalizationAccessTagsTypedDict",
|
1217
|
+
"PersonalizationTypedDict",
|
1218
|
+
"Phone",
|
1219
|
+
"PhoneTypedDict",
|
1220
|
+
"Portal",
|
1221
|
+
"PortalResult",
|
1222
|
+
"PortalResultTypedDict",
|
1223
|
+
"PortalSettings",
|
1224
|
+
"PortalSettingsTypedDict",
|
1225
|
+
"PortalTypedDict",
|
1226
|
+
"PostPortalIDAnswersRequest",
|
1227
|
+
"PostPortalIDAnswersRequestTypedDict",
|
1228
|
+
"PostPortalIDRetrieveRequest",
|
1229
|
+
"PostPortalIDRetrieveRequestTypedDict",
|
1230
|
+
"Profile",
|
1231
|
+
"ProfileResult",
|
1232
|
+
"ProfileResultTypedDict",
|
1233
|
+
"ProfileTypedDict",
|
1234
|
+
"Progress",
|
1235
|
+
"ProgressTypedDict",
|
1236
|
+
"PublishProfile",
|
1237
|
+
"PublishProfileTypedDict",
|
1238
|
+
"PublishView",
|
1239
|
+
"PublishViewTagCategory",
|
1240
|
+
"PublishViewTagCategoryTypedDict",
|
1241
|
+
"PublishViewTypedDict",
|
1242
|
+
"PublishViews",
|
1243
|
+
"PublishViewsTypedDict",
|
1244
|
+
"Question",
|
1245
|
+
"QuestionAndAnswer",
|
1246
|
+
"QuestionAndAnswerTypedDict",
|
1247
|
+
"QuestionFormat",
|
1248
|
+
"QuestionType",
|
1249
|
+
"QuestionTypedDict",
|
1250
|
+
"QuickpickRating",
|
1251
|
+
"QuickpickRatingTypedDict",
|
1252
|
+
"QuickpickResult",
|
1253
|
+
"QuickpickResultTypedDict",
|
1254
|
+
"QuickpickResults",
|
1255
|
+
"QuickpickResultsTypedDict",
|
1256
|
+
"RateArticleRequest",
|
1257
|
+
"RateArticleRequestTypedDict",
|
1258
|
+
"ReferenceResponse",
|
1259
|
+
"ReferenceResponseDocType",
|
1260
|
+
"ReferenceResponseLink",
|
1261
|
+
"ReferenceResponseLinkTypedDict",
|
1262
|
+
"ReferenceResponseSource",
|
1263
|
+
"ReferenceResponseTypedDict",
|
1264
|
+
"RejectGHSolutionRequest",
|
1265
|
+
"RejectGHSolutionRequestTypedDict",
|
1266
|
+
"RelatedArticleForCreateUpdateDeleteSuggestion",
|
1267
|
+
"RelatedArticleForCreateUpdateDeleteSuggestionTypedDict",
|
1268
|
+
"RelatedQuestions",
|
1269
|
+
"RelatedQuestionsTypedDict",
|
1270
|
+
"ResourceTypeParameter",
|
1271
|
+
"RestoreQuickpickRequest",
|
1272
|
+
"RestoreQuickpickRequestTypedDict",
|
1273
|
+
"ResultType",
|
1274
|
+
"Results",
|
1275
|
+
"ResultsTypedDict",
|
1276
|
+
"RetrieveRequest",
|
1277
|
+
"RetrieveRequestChannel",
|
1278
|
+
"RetrieveRequestChannelTypedDict",
|
1279
|
+
"RetrieveRequestType",
|
1280
|
+
"RetrieveRequestTypedDict",
|
1281
|
+
"RetrieveResponse",
|
1282
|
+
"RetrieveResponseAnswer",
|
1283
|
+
"RetrieveResponseAnswerType",
|
1284
|
+
"RetrieveResponseAnswerTypedDict",
|
1285
|
+
"RetrieveResponseChannel",
|
1286
|
+
"RetrieveResponseChannelTypedDict",
|
1287
|
+
"RetrieveResponseType",
|
1288
|
+
"RetrieveResponseTypedDict",
|
1289
|
+
"Role",
|
1290
|
+
"RoleTemplate",
|
1291
|
+
"RoleTemplateTypedDict",
|
1292
|
+
"RoleTypedDict",
|
1293
|
+
"ScheduleTime",
|
1294
|
+
"ScheduleTimeTypedDict",
|
1295
|
+
"SchemasAnswer",
|
1296
|
+
"SchemasAnswerTypedDict",
|
1297
|
+
"SchemasCustomAttribute",
|
1298
|
+
"SchemasCustomAttributeType",
|
1299
|
+
"SchemasCustomAttributeTypedDict",
|
1300
|
+
"SchemasLink",
|
1301
|
+
"SchemasLinkTypedDict",
|
1302
|
+
"SchemasTag",
|
1303
|
+
"SchemasTagCategory",
|
1304
|
+
"SchemasTagCategoryTypedDict",
|
1305
|
+
"SchemasTagGroup",
|
1306
|
+
"SchemasTagGroupTypedDict",
|
1307
|
+
"SchemasTagTypedDict",
|
1308
|
+
"SchemasTags",
|
1309
|
+
"SchemasTagsTypedDict",
|
1310
|
+
"SchemasWSErrorCommonDetail",
|
1311
|
+
"SchemasWSErrorCommonDetailTypedDict",
|
1312
|
+
"SearchFilterAttribute",
|
1313
|
+
"SearchFilterAttributeTypedDict",
|
1314
|
+
"SearchLearningLevel",
|
1315
|
+
"SearchPriorToEscalationRequest",
|
1316
|
+
"SearchPriorToEscalationRequestTypedDict",
|
1317
|
+
"SearchResult",
|
1318
|
+
"SearchResultDocType",
|
1319
|
+
"SearchResultLink",
|
1320
|
+
"SearchResultLinkTypedDict",
|
1321
|
+
"SearchResultSource",
|
1322
|
+
"SearchResultTypedDict",
|
1323
|
+
"SearchResults",
|
1324
|
+
"SearchResultsTypedDict",
|
1325
|
+
"SearchSuggestionRequest",
|
1326
|
+
"SearchSuggestionRequestTypedDict",
|
1327
|
+
"Security",
|
1328
|
+
"SecurityTypedDict",
|
1329
|
+
"SelectUserProfileRequest",
|
1330
|
+
"SelectUserProfileRequestTypedDict",
|
1331
|
+
"SessionContextVariable",
|
1332
|
+
"SessionContextVariableTypedDict",
|
1333
|
+
"ShortURL",
|
1334
|
+
"ShortURLTypedDict",
|
1335
|
+
"SnippetForStructuredAuthoring",
|
1336
|
+
"SnippetForStructuredAuthoringTypedDict",
|
1337
|
+
"SnippetType",
|
1338
|
+
"SortIDName",
|
1339
|
+
"SortIDNameDepartment",
|
1340
|
+
"Stage",
|
1341
|
+
"StageTypedDict",
|
1342
|
+
"StartCustomerEscalationRequest",
|
1343
|
+
"StartCustomerEscalationRequestTypedDict",
|
1344
|
+
"StartCustomerEscalationResponse",
|
1345
|
+
"StartCustomerEscalationResponseTypedDict",
|
1346
|
+
"StartDateDateAndTime",
|
1347
|
+
"StartDateDateAndTimeTypedDict",
|
1348
|
+
"StartEscalationRequest",
|
1349
|
+
"StartEscalationRequestTypedDict",
|
1350
|
+
"StartGHSearchRequest",
|
1351
|
+
"StartGHSearchRequestTypedDict",
|
1352
|
+
"StartGHSearchResponse",
|
1353
|
+
"StartGHSearchResponseTypedDict",
|
1354
|
+
"StartQuestionAndAnswer",
|
1355
|
+
"StartQuestionAndAnswerTypedDict",
|
1356
|
+
"StepGHSearchRequest",
|
1357
|
+
"StepGHSearchRequestTypedDict",
|
1358
|
+
"StringAttributeValue",
|
1359
|
+
"StringAttributeValueTypedDict",
|
1360
|
+
"StructuredAuthoringFields",
|
1361
|
+
"StructuredAuthoringFieldsTypedDict",
|
1362
|
+
"SubscribeArticleRequest",
|
1363
|
+
"SubscribeArticleRequestTypedDict",
|
1364
|
+
"Suggestion",
|
1365
|
+
"SuggestionAdditionalAttributes",
|
1366
|
+
"SuggestionAttachment",
|
1367
|
+
"SuggestionAttachmentTypedDict",
|
1368
|
+
"SuggestionCode",
|
1369
|
+
"SuggestionL10NString",
|
1370
|
+
"SuggestionL10NStringTypedDict",
|
1371
|
+
"SuggestionLanguage",
|
1372
|
+
"SuggestionLanguageTypedDict",
|
1373
|
+
"SuggestionTypedDict",
|
1374
|
+
"Suggestions",
|
1375
|
+
"SuggestionsTypedDict",
|
1376
|
+
"Tag",
|
1377
|
+
"TagCategoriesForInterest",
|
1378
|
+
"TagCategoriesForInterestTypedDict",
|
1379
|
+
"TagCategory",
|
1380
|
+
"TagCategoryTypedDict",
|
1381
|
+
"TagGroup",
|
1382
|
+
"TagGroupTypedDict",
|
1383
|
+
"TagGroups",
|
1384
|
+
"TagGroupsTypedDict",
|
1385
|
+
"TagTypedDict",
|
1386
|
+
"Tags",
|
1387
|
+
"TagsTypedDict",
|
1388
|
+
"ThresholdType",
|
1389
|
+
"Topic",
|
1390
|
+
"TopicAISearchResult",
|
1391
|
+
"TopicAISearchResultTypedDict",
|
1392
|
+
"TopicAdditionalAttributes",
|
1393
|
+
"TopicBreadcrumb",
|
1394
|
+
"TopicBreadcrumbTypedDict",
|
1395
|
+
"TopicResult",
|
1396
|
+
"TopicResultTypedDict",
|
1397
|
+
"TopicSummary",
|
1398
|
+
"TopicSummaryTypedDict",
|
1399
|
+
"TopicTreeNode",
|
1400
|
+
"TopicTreeNodeTypedDict",
|
1401
|
+
"TopicTreeResult",
|
1402
|
+
"TopicTreeResultTypedDict",
|
1403
|
+
"TopicTypedDict",
|
1404
|
+
"UnsubscribeArticleRequest",
|
1405
|
+
"UnsubscribeArticleRequestTypedDict",
|
1406
|
+
"UploadAttachmentRequest",
|
1407
|
+
"UploadAttachmentRequestTypedDict",
|
1408
|
+
"UserDetails",
|
1409
|
+
"UserDetailsTypedDict",
|
1410
|
+
"UserProfile",
|
1411
|
+
"UserProfileTypedDict",
|
1412
|
+
"UserProfiles",
|
1413
|
+
"UserProfilesTypedDict",
|
1414
|
+
"UserType",
|
1415
|
+
"UserView",
|
1416
|
+
"UserViewTypedDict",
|
1417
|
+
"ValidateImportContent",
|
1418
|
+
"ValidateImportContentCredentials",
|
1419
|
+
"ValidateImportContentCredentialsTypedDict",
|
1420
|
+
"ValidateImportContentDataSource",
|
1421
|
+
"ValidateImportContentDataSourceTypedDict",
|
1422
|
+
"ValidateImportContentType",
|
1423
|
+
"ValidateImportContentTypedDict",
|
1424
|
+
"ValueType",
|
1425
|
+
"VirtualCase",
|
1426
|
+
"VirtualCaseTypedDict",
|
1427
|
+
"WSErrorCommonDetail",
|
1428
|
+
"WSErrorCommonDetailTypedDict",
|
1429
|
+
"Workflow",
|
1430
|
+
"WorkflowMilestone",
|
1431
|
+
"WorkflowTypedDict",
|
1432
|
+
]
|
1433
|
+
|
1434
|
+
_dynamic_imports: dict[str, str] = {
|
1435
|
+
"AcceptGHSolutionRequest": ".acceptghsolutionop",
|
1436
|
+
"AcceptGHSolutionRequestTypedDict": ".acceptghsolutionop",
|
1437
|
+
"AcceptLanguage": ".acceptlanguage",
|
1438
|
+
"AccessiblePortal": ".accessibleportal",
|
1439
|
+
"AccessiblePortalTypedDict": ".accessibleportal",
|
1440
|
+
"Action": ".action",
|
1441
|
+
"ActionTypedDict": ".action",
|
1442
|
+
"ActionSearch": ".actionsearch",
|
1443
|
+
"ActionSearchType": ".actionsearch",
|
1444
|
+
"ActionSearchTypedDict": ".actionsearch",
|
1445
|
+
"AddAsReferenceRequest": ".addasreferenceop",
|
1446
|
+
"AddAsReferenceRequestTypedDict": ".addasreferenceop",
|
1447
|
+
"AddbookmarkRequest": ".addbookmarkop",
|
1448
|
+
"AddbookmarkRequestTypedDict": ".addbookmarkop",
|
1449
|
+
"AdditionalSnippets": ".additionalsnippets",
|
1450
|
+
"AdditionalSnippetsDocType": ".additionalsnippets",
|
1451
|
+
"AdditionalSnippetsTypedDict": ".additionalsnippets",
|
1452
|
+
"AddToReplyRequest": ".addtoreplyop",
|
1453
|
+
"AddToReplyRequestTypedDict": ".addtoreplyop",
|
1454
|
+
"AiSearchRequest": ".aisearchop",
|
1455
|
+
"AiSearchRequestTypedDict": ".aisearchop",
|
1456
|
+
"AISearchResponse": ".aisearchresponse",
|
1457
|
+
"AISearchResponseChannel": ".aisearchresponse",
|
1458
|
+
"AISearchResponseChannelTypedDict": ".aisearchresponse",
|
1459
|
+
"AISearchResponseType": ".aisearchresponse",
|
1460
|
+
"AISearchResponseTypedDict": ".aisearchresponse",
|
1461
|
+
"SearchResults": ".aisearchresponse",
|
1462
|
+
"SearchResultsTypedDict": ".aisearchresponse",
|
1463
|
+
"AllAccessiblePortals": ".allaccessibleportals",
|
1464
|
+
"AllAccessiblePortalsTypedDict": ".allaccessibleportals",
|
1465
|
+
"Answer": ".answer",
|
1466
|
+
"AnswerTypedDict": ".answer",
|
1467
|
+
"AnswerSource": ".answeredquestion",
|
1468
|
+
"AnsweredQuestion": ".answeredquestion",
|
1469
|
+
"AnsweredQuestionFormat": ".answeredquestion",
|
1470
|
+
"AnsweredQuestionType": ".answeredquestion",
|
1471
|
+
"AnsweredQuestionTypedDict": ".answeredquestion",
|
1472
|
+
"AnswerRange": ".answerrange",
|
1473
|
+
"AnswerRangeTypedDict": ".answerrange",
|
1474
|
+
"AnswersRequest": ".answersrequest",
|
1475
|
+
"AnswersRequestChannel": ".answersrequest",
|
1476
|
+
"AnswersRequestChannelTypedDict": ".answersrequest",
|
1477
|
+
"AnswersRequestType": ".answersrequest",
|
1478
|
+
"AnswersRequestTypedDict": ".answersrequest",
|
1479
|
+
"Context": ".answersrequest",
|
1480
|
+
"ContextTypedDict": ".answersrequest",
|
1481
|
+
"AnswersResponse": ".answersresponse",
|
1482
|
+
"AnswersResponseAnswer": ".answersresponse",
|
1483
|
+
"AnswersResponseAnswerType": ".answersresponse",
|
1484
|
+
"AnswersResponseAnswerTypedDict": ".answersresponse",
|
1485
|
+
"AnswersResponseChannel": ".answersresponse",
|
1486
|
+
"AnswersResponseChannelTypedDict": ".answersresponse",
|
1487
|
+
"AnswersResponseType": ".answersresponse",
|
1488
|
+
"AnswersResponseTypedDict": ".answersresponse",
|
1489
|
+
"Article": ".article",
|
1490
|
+
"ArticleTypedDict": ".article",
|
1491
|
+
"ArticleActivityLink": ".articleactivitylink",
|
1492
|
+
"ArticleActivityLinkCode": ".articleactivitylink",
|
1493
|
+
"ArticleActivityLinkLanguage": ".articleactivitylink",
|
1494
|
+
"ArticleActivityLinkLanguageTypedDict": ".articleactivitylink",
|
1495
|
+
"ArticleActivityLinkTypedDict": ".articleactivitylink",
|
1496
|
+
"ArticleAdditionalAttributes": ".articleadditionalattributes",
|
1497
|
+
"ArticleAISearchResult": ".articleaisearchresult",
|
1498
|
+
"ArticleAISearchResultCustomAttribute": ".articleaisearchresult",
|
1499
|
+
"ArticleAISearchResultCustomAttributeTypedDict": ".articleaisearchresult",
|
1500
|
+
"ArticleAISearchResultDocType": ".articleaisearchresult",
|
1501
|
+
"ArticleAISearchResultLink": ".articleaisearchresult",
|
1502
|
+
"ArticleAISearchResultLinkTypedDict": ".articleaisearchresult",
|
1503
|
+
"ArticleAISearchResultSource": ".articleaisearchresult",
|
1504
|
+
"ArticleAISearchResultType": ".articleaisearchresult",
|
1505
|
+
"ArticleAISearchResultTypeName": ".articleaisearchresult",
|
1506
|
+
"ArticleAISearchResultTypedDict": ".articleaisearchresult",
|
1507
|
+
"ArticleTypeAttributes": ".articleaisearchresult",
|
1508
|
+
"ArticleTypeAttributesTypedDict": ".articleaisearchresult",
|
1509
|
+
"OpensearchHighlightingRaw": ".articleaisearchresult",
|
1510
|
+
"OpensearchHighlightingRawTypedDict": ".articleaisearchresult",
|
1511
|
+
"ArticleAttachment": ".articleattachment",
|
1512
|
+
"ArticleAttachmentType": ".articleattachment",
|
1513
|
+
"ArticleAttachmentTypedDict": ".articleattachment",
|
1514
|
+
"ArticleList": ".articlelist",
|
1515
|
+
"ArticleListTypedDict": ".articlelist",
|
1516
|
+
"ArticleListResult": ".articlelistresult",
|
1517
|
+
"ArticleListResultTypedDict": ".articlelistresult",
|
1518
|
+
"ArticleListsResult": ".articlelistsresult",
|
1519
|
+
"ArticleListsResultTypedDict": ".articlelistsresult",
|
1520
|
+
"ArticlePermissions": ".articlepermissions",
|
1521
|
+
"ArticlePermissionsTypedDict": ".articlepermissions",
|
1522
|
+
"ArticlePermissionsResult": ".articlepermissionsresult",
|
1523
|
+
"ArticlePermissionsResultTypedDict": ".articlepermissionsresult",
|
1524
|
+
"ArticleRating": ".articlerating",
|
1525
|
+
"ArticleRatingTypedDict": ".articlerating",
|
1526
|
+
"ArticleRatingsResponse": ".articleratingsresponse",
|
1527
|
+
"ArticleRatingsResponseTypedDict": ".articleratingsresponse",
|
1528
|
+
"ArticleResult": ".articleresult",
|
1529
|
+
"ArticleResultTypedDict": ".articleresult",
|
1530
|
+
"ArticleResultAdditionalAttributes": ".articleresultadditionalattributes",
|
1531
|
+
"ArticleResults": ".articleresults",
|
1532
|
+
"ArticleResultsTypedDict": ".articleresults",
|
1533
|
+
"ArticleSearchResult": ".articlesearchresult",
|
1534
|
+
"ArticleSearchResultTypedDict": ".articlesearchresult",
|
1535
|
+
"SnippetForStructuredAuthoring": ".articlesearchresult",
|
1536
|
+
"SnippetForStructuredAuthoringTypedDict": ".articlesearchresult",
|
1537
|
+
"ArticleSearchResults": ".articlesearchresults",
|
1538
|
+
"ArticleSearchResultsTypedDict": ".articlesearchresults",
|
1539
|
+
"ArticleSort": ".articlesort",
|
1540
|
+
"ArticleSortOrder": ".articlesortorder",
|
1541
|
+
"ArticleType": ".articletype",
|
1542
|
+
"ArticleTypeTypeName": ".articletype",
|
1543
|
+
"ArticleTypeTypedDict": ".articletype",
|
1544
|
+
"ArticleWithEditions": ".articlewitheditions",
|
1545
|
+
"ArticleWithEditionsTypedDict": ".articlewitheditions",
|
1546
|
+
"Attachment": ".attachment",
|
1547
|
+
"AttachmentTypedDict": ".attachment",
|
1548
|
+
"AttachmentAdditionalAttributes": ".attachmentadditionalattributes",
|
1549
|
+
"AttachmentContent": ".attachmentcontent",
|
1550
|
+
"AttachmentContentType": ".attachmentcontent",
|
1551
|
+
"AttachmentContentTypedDict": ".attachmentcontent",
|
1552
|
+
"AttachmentContentResult": ".attachmentcontentresult",
|
1553
|
+
"AttachmentContentResultTypedDict": ".attachmentcontentresult",
|
1554
|
+
"AttachmentForCreateSuggestion": ".attachmentforcreatesuggestion",
|
1555
|
+
"AttachmentForCreateSuggestionTypedDict": ".attachmentforcreatesuggestion",
|
1556
|
+
"Attachments": ".attachments",
|
1557
|
+
"AttachmentsTypedDict": ".attachments",
|
1558
|
+
"AttachmentSummary": ".attachmentsummary",
|
1559
|
+
"AttachmentSummaryTypedDict": ".attachmentsummary",
|
1560
|
+
"AttachmentUpload": ".attachmentupload",
|
1561
|
+
"AttachmentUploadTypedDict": ".attachmentupload",
|
1562
|
+
"AvertCustomerEscalationRequest": ".avertcustomerescalationop",
|
1563
|
+
"AvertCustomerEscalationRequestTypedDict": ".avertcustomerescalationop",
|
1564
|
+
"Bookmark": ".bookmark",
|
1565
|
+
"BookmarkTypedDict": ".bookmark",
|
1566
|
+
"BookmarkResult": ".bookmarkresult",
|
1567
|
+
"BookmarkResultTypedDict": ".bookmarkresult",
|
1568
|
+
"BookmarkStatus": ".bookmarkstatus",
|
1569
|
+
"BookmarkStatusTypedDict": ".bookmarkstatus",
|
1570
|
+
"Case": ".case",
|
1571
|
+
"CaseType": ".case",
|
1572
|
+
"CaseTypedDict": ".case",
|
1573
|
+
"ThresholdType": ".case",
|
1574
|
+
"CaseAdditionalAttributes": ".caseadditionalattributes",
|
1575
|
+
"CaseAnswer": ".caseanswer",
|
1576
|
+
"CaseAnswerTypedDict": ".caseanswer",
|
1577
|
+
"Casebase": ".casebase",
|
1578
|
+
"CasebaseStatus": ".casebase",
|
1579
|
+
"CasebaseTypedDict": ".casebase",
|
1580
|
+
"CasebaseResult": ".casebaseresult",
|
1581
|
+
"CasebaseResultTypedDict": ".casebaseresult",
|
1582
|
+
"CasebaseSearchSettings": ".casebasesearchsettings",
|
1583
|
+
"CasebaseSearchSettingsTypedDict": ".casebasesearchsettings",
|
1584
|
+
"CaseListResult": ".caselistresult",
|
1585
|
+
"CaseListResultTypedDict": ".caselistresult",
|
1586
|
+
"CaseListResults": ".caselistresults",
|
1587
|
+
"CaseListResultsTypedDict": ".caselistresults",
|
1588
|
+
"CaseQuestion": ".casequestion",
|
1589
|
+
"CaseQuestionTypedDict": ".casequestion",
|
1590
|
+
"CaseQuestionDetail": ".casequestiondetail",
|
1591
|
+
"CaseQuestionDetailTypedDict": ".casequestiondetail",
|
1592
|
+
"CaseSearch": ".casesearch",
|
1593
|
+
"CaseSearchType": ".casesearch",
|
1594
|
+
"CaseSearchTypedDict": ".casesearch",
|
1595
|
+
"ClusterID": ".clusterid",
|
1596
|
+
"ClusterIDTypedDict": ".clusterid",
|
1597
|
+
"ClusterResult": ".clusterresult",
|
1598
|
+
"ClusterResultTypedDict": ".clusterresult",
|
1599
|
+
"ClusterResults": ".clusterresults",
|
1600
|
+
"ClusterResultsTypedDict": ".clusterresults",
|
1601
|
+
"Comment": ".comment",
|
1602
|
+
"CommentTypedDict": ".comment",
|
1603
|
+
"Comments": ".comments",
|
1604
|
+
"CommentsTypedDict": ".comments",
|
1605
|
+
"CompleteCustomerEscalationRequest": ".completecustomerescalationop",
|
1606
|
+
"CompleteCustomerEscalationRequestTypedDict": ".completecustomerescalationop",
|
1607
|
+
"ComplianceArticleResult": ".compliancearticleresult",
|
1608
|
+
"ComplianceArticleResultTypedDict": ".compliancearticleresult",
|
1609
|
+
"ComplianceArticleResultAdditionalAttributes": ".compliancearticleresultadditionalattributes",
|
1610
|
+
"ComplianceArticleResults": ".compliancearticleresults",
|
1611
|
+
"ComplianceArticleResultsTypedDict": ".compliancearticleresults",
|
1612
|
+
"ComplianceForArticle": ".complianceforarticle",
|
1613
|
+
"ComplianceForArticleTypedDict": ".complianceforarticle",
|
1614
|
+
"DueDateDateAndTime": ".complianceforarticle",
|
1615
|
+
"DueDateDateAndTimeTypedDict": ".complianceforarticle",
|
1616
|
+
"StartDateDateAndTime": ".complianceforarticle",
|
1617
|
+
"StartDateDateAndTimeTypedDict": ".complianceforarticle",
|
1618
|
+
"ComplyArticleRequest": ".complyarticleop",
|
1619
|
+
"ComplyArticleRequestTypedDict": ".complyarticleop",
|
1620
|
+
"ComponentsSchemasTag": ".components_schemas_tag",
|
1621
|
+
"ComponentsSchemasTagTypedDict": ".components_schemas_tag",
|
1622
|
+
"ComponentsSchemasTagCategory": ".components_schemas_tagcategory",
|
1623
|
+
"ComponentsSchemasTagCategoryTypedDict": ".components_schemas_tagcategory",
|
1624
|
+
"ComponentsSchemasTagGroup": ".components_schemas_taggroup",
|
1625
|
+
"ComponentsSchemasTagGroupTypedDict": ".components_schemas_taggroup",
|
1626
|
+
"ConfigurableAttribute": ".configurableattribute",
|
1627
|
+
"ConfigurableAttributeTypedDict": ".configurableattribute",
|
1628
|
+
"ConfigurableAttributes": ".configurableattributes",
|
1629
|
+
"ConfigurableAttributesTypedDict": ".configurableattributes",
|
1630
|
+
"ContactPerson": ".contactperson",
|
1631
|
+
"ContactPersonTypedDict": ".contactperson",
|
1632
|
+
"Contacts": ".contacts",
|
1633
|
+
"ContactsTypedDict": ".contacts",
|
1634
|
+
"CreateBookmark": ".createbookmark",
|
1635
|
+
"CreateBookmarkTypedDict": ".createbookmark",
|
1636
|
+
"UserType": ".createbookmark",
|
1637
|
+
"CreatedBy": ".createdby",
|
1638
|
+
"CreatedByTypedDict": ".createdby",
|
1639
|
+
"CreateFederatedSearchEvent": ".createfederatedsearchevent",
|
1640
|
+
"CreateFederatedSearchEventTypedDict": ".createfederatedsearchevent",
|
1641
|
+
"ResultType": ".createfederatedsearchevent",
|
1642
|
+
"CreateFederatedSearchResultEventRequest": ".createfederatedsearchresulteventop",
|
1643
|
+
"CreateFederatedSearchResultEventRequestTypedDict": ".createfederatedsearchresulteventop",
|
1644
|
+
"CREATE_IMPORT_OP_SERVERS": ".createimportop",
|
1645
|
+
"CreateImportResponse": ".createimportop",
|
1646
|
+
"CreateImportResponseTypedDict": ".createimportop",
|
1647
|
+
"CREATE_IMPORT_VALIDATION_OP_SERVERS": ".createimportvalidationop",
|
1648
|
+
"CreateImportValidationResponse": ".createimportvalidationop",
|
1649
|
+
"CreateImportValidationResponseTypedDict": ".createimportvalidationop",
|
1650
|
+
"CreateQuickpick": ".createquickpick",
|
1651
|
+
"CreateQuickpickTypedDict": ".createquickpick",
|
1652
|
+
"CreateQuickpickRequest": ".createquickpickop",
|
1653
|
+
"CreateQuickpickRequestTypedDict": ".createquickpickop",
|
1654
|
+
"CreateSearchResultEventForConnectors": ".createsearchresulteventforconnectors",
|
1655
|
+
"CreateSearchResultEventForConnectorsTypedDict": ".createsearchresulteventforconnectors",
|
1656
|
+
"CreateSearchResultEventForConnectorsRequest": ".createsearchresulteventforconnectorsop",
|
1657
|
+
"CreateSearchResultEventForConnectorsRequestTypedDict": ".createsearchresulteventforconnectorsop",
|
1658
|
+
"CreateSignedURLRequest": ".createsignedurlop",
|
1659
|
+
"CreateSignedURLRequestTypedDict": ".createsignedurlop",
|
1660
|
+
"CreateSuggestion": ".createsuggestion",
|
1661
|
+
"CreateSuggestionAttachments": ".createsuggestion",
|
1662
|
+
"CreateSuggestionAttachmentsTypedDict": ".createsuggestion",
|
1663
|
+
"CreateSuggestionCode": ".createsuggestion",
|
1664
|
+
"CreateSuggestionLanguage": ".createsuggestion",
|
1665
|
+
"CreateSuggestionLanguageTypedDict": ".createsuggestion",
|
1666
|
+
"CreateSuggestionTypedDict": ".createsuggestion",
|
1667
|
+
"RelatedArticleForCreateUpdateDeleteSuggestion": ".createsuggestion",
|
1668
|
+
"RelatedArticleForCreateUpdateDeleteSuggestionTypedDict": ".createsuggestion",
|
1669
|
+
"CreateViewedSearchResultEventForConnectors": ".createviewedsearchresulteventforconnectors",
|
1670
|
+
"CreateViewedSearchResultEventForConnectorsTypedDict": ".createviewedsearchresulteventforconnectors",
|
1671
|
+
"CreateViewedSearchResultsEventForConnectorsRequest": ".createviewedsearchresultseventforconnectorsop",
|
1672
|
+
"CreateViewedSearchResultsEventForConnectorsRequestTypedDict": ".createviewedsearchresultseventforconnectorsop",
|
1673
|
+
"CustomAttribute": ".customattribute",
|
1674
|
+
"CustomAttributeType": ".customattribute",
|
1675
|
+
"CustomAttributeTypedDict": ".customattribute",
|
1676
|
+
"DeletebookmarkRequest": ".deletebookmarkop",
|
1677
|
+
"DeletebookmarkRequestTypedDict": ".deletebookmarkop",
|
1678
|
+
"DeleteSuggestionRequest": ".deletesuggestionop",
|
1679
|
+
"DeleteSuggestionRequestTypedDict": ".deletesuggestionop",
|
1680
|
+
"Department": ".department",
|
1681
|
+
"DepartmentTypedDict": ".department",
|
1682
|
+
"DetailField": ".detailfield",
|
1683
|
+
"DetailFieldTypedDict": ".detailfield",
|
1684
|
+
"DisplayField": ".displayfield",
|
1685
|
+
"DisplayFieldTypedDict": ".displayfield",
|
1686
|
+
"DynamicCluster": ".dynamiccluster",
|
1687
|
+
"DynamicClusterTypedDict": ".dynamiccluster",
|
1688
|
+
"DynamicSearch": ".dynamicsearch",
|
1689
|
+
"DynamicSearchTypedDict": ".dynamicsearch",
|
1690
|
+
"Edition": ".edition",
|
1691
|
+
"EditionPublishProfile": ".edition",
|
1692
|
+
"EditionPublishProfileTypedDict": ".edition",
|
1693
|
+
"EditionTypedDict": ".edition",
|
1694
|
+
"EditionWithContent": ".editionwithcontent",
|
1695
|
+
"EditionWithContentAccessTags": ".editionwithcontent",
|
1696
|
+
"EditionWithContentAccessTagsTypedDict": ".editionwithcontent",
|
1697
|
+
"EditionWithContentTypedDict": ".editionwithcontent",
|
1698
|
+
"Email": ".email",
|
1699
|
+
"EmailTypedDict": ".email",
|
1700
|
+
"ExportContentResponse": ".exportcontentop",
|
1701
|
+
"ExportContentResponseTypedDict": ".exportcontentop",
|
1702
|
+
"ExportStatus": ".exportstatus",
|
1703
|
+
"ExportStatusStatus": ".exportstatus",
|
1704
|
+
"ExportStatusTypedDict": ".exportstatus",
|
1705
|
+
"Progress": ".exportstatus",
|
1706
|
+
"ProgressTypedDict": ".exportstatus",
|
1707
|
+
"Results": ".exportstatus",
|
1708
|
+
"ResultsTypedDict": ".exportstatus",
|
1709
|
+
"ExportStatusRequest": ".exportstatusop",
|
1710
|
+
"ExportStatusRequestTypedDict": ".exportstatusop",
|
1711
|
+
"FeedbackArticleForSuggestion": ".feedbackarticleforsuggestion",
|
1712
|
+
"FeedbackArticleForSuggestionTypedDict": ".feedbackarticleforsuggestion",
|
1713
|
+
"FolderBreadcrumb": ".folderbreadcrumb",
|
1714
|
+
"FolderBreadcrumbTypedDict": ".folderbreadcrumb",
|
1715
|
+
"FolderSummary": ".foldersummary",
|
1716
|
+
"FolderSummaryTypedDict": ".foldersummary",
|
1717
|
+
"GetAcknowledgedComplianceArticlesRequest": ".getacknowledgedcompliancearticlesop",
|
1718
|
+
"GetAcknowledgedComplianceArticlesRequestTypedDict": ".getacknowledgedcompliancearticlesop",
|
1719
|
+
"GetAllArticleListsRequest": ".getallarticlelistsop",
|
1720
|
+
"GetAllArticleListsRequestTypedDict": ".getallarticlelistsop",
|
1721
|
+
"GetAllCasebasesReleasesRequest": ".getallcasebasesreleasesop",
|
1722
|
+
"GetAllCasebasesReleasesRequestTypedDict": ".getallcasebasesreleasesop",
|
1723
|
+
"GetAllCasesRequest": ".getallcasesop",
|
1724
|
+
"GetAllCasesRequestTypedDict": ".getallcasesop",
|
1725
|
+
"GetAllPortalsRequest": ".getallportalsop",
|
1726
|
+
"GetAllPortalsRequestTypedDict": ".getallportalsop",
|
1727
|
+
"GetAllProfilesInPortalRequest": ".getallprofilesinportalop",
|
1728
|
+
"GetAllProfilesInPortalRequestTypedDict": ".getallprofilesinportalop",
|
1729
|
+
"GetAllQuickPicksRequest": ".getallquickpicksop",
|
1730
|
+
"GetAllQuickPicksRequestTypedDict": ".getallquickpicksop",
|
1731
|
+
"GetalltopicsRequest": ".getalltopicsop",
|
1732
|
+
"GetalltopicsRequestTypedDict": ".getalltopicsop",
|
1733
|
+
"GetAllUserProfilesRequest": ".getalluserprofilesop",
|
1734
|
+
"GetAllUserProfilesRequestTypedDict": ".getalluserprofilesop",
|
1735
|
+
"GetancestortopicsRequest": ".getancestortopicsop",
|
1736
|
+
"GetancestortopicsRequestTypedDict": ".getancestortopicsop",
|
1737
|
+
"GetAnnouncementArticlesRequest": ".getannouncementarticlesop",
|
1738
|
+
"GetAnnouncementArticlesRequestTypedDict": ".getannouncementarticlesop",
|
1739
|
+
"GetArticleAttachmentByIDRequest": ".getarticleattachmentbyidop",
|
1740
|
+
"GetArticleAttachmentByIDRequestTypedDict": ".getarticleattachmentbyidop",
|
1741
|
+
"AccessSource": ".getarticlebyidop",
|
1742
|
+
"GetArticleByIDRequest": ".getarticlebyidop",
|
1743
|
+
"GetArticleByIDRequestTypedDict": ".getarticlebyidop",
|
1744
|
+
"GetArticleByIDWithEditionsRequest": ".getarticlebyidwitheditionsop",
|
1745
|
+
"GetArticleByIDWithEditionsRequestTypedDict": ".getarticlebyidwitheditionsop",
|
1746
|
+
"GetArticleEditionDetailsRequest": ".getarticleeditiondetailsop",
|
1747
|
+
"GetArticleEditionDetailsRequestTypedDict": ".getarticleeditiondetailsop",
|
1748
|
+
"GetArticleListDetailsRequest": ".getarticlelistdetailsop",
|
1749
|
+
"GetArticleListDetailsRequestTypedDict": ".getarticlelistdetailsop",
|
1750
|
+
"GetArticlePermissionsByIDRequest": ".getarticlepermissionsbyidop",
|
1751
|
+
"GetArticlePermissionsByIDRequestTypedDict": ".getarticlepermissionsbyidop",
|
1752
|
+
"GetArticlePersonalizationRequest": ".getarticlepersonalizationop",
|
1753
|
+
"GetArticlePersonalizationRequestTypedDict": ".getarticlepersonalizationop",
|
1754
|
+
"GetArticlePersonalizationWorkflowMilestone": ".getarticlepersonalizationop",
|
1755
|
+
"GetArticleRatingsRequest": ".getarticleratingsop",
|
1756
|
+
"GetArticleRatingsRequestTypedDict": ".getarticleratingsop",
|
1757
|
+
"GetArticlesInTopicRequest": ".getarticlesintopicop",
|
1758
|
+
"GetArticlesInTopicRequestTypedDict": ".getarticlesintopicop",
|
1759
|
+
"GetAttachmentByIDInPortalRequest": ".getattachmentbyidinportalop",
|
1760
|
+
"GetAttachmentByIDInPortalRequestTypedDict": ".getattachmentbyidinportalop",
|
1761
|
+
"GetbookmarkRequest": ".getbookmarkop",
|
1762
|
+
"GetbookmarkRequestTypedDict": ".getbookmarkop",
|
1763
|
+
"GetCasebaseReleaseByIDRequest": ".getcasebasereleasebyidop",
|
1764
|
+
"GetCasebaseReleaseByIDRequestTypedDict": ".getcasebasereleasebyidop",
|
1765
|
+
"GetCaseByIDRequest": ".getcasebyidop",
|
1766
|
+
"GetCaseByIDRequestTypedDict": ".getcasebyidop",
|
1767
|
+
"GetchildtopicsRequest": ".getchildtopicsop",
|
1768
|
+
"GetchildtopicsRequestTypedDict": ".getchildtopicsop",
|
1769
|
+
"GetClusterByCasebaseReleaseIDRequest": ".getclusterbycasebasereleaseidop",
|
1770
|
+
"GetClusterByCasebaseReleaseIDRequestTypedDict": ".getclusterbycasebasereleaseidop",
|
1771
|
+
"GET_HEALTH_OP_SERVERS": ".gethealthop",
|
1772
|
+
"GetHealthResponse": ".gethealthop",
|
1773
|
+
"GetHealthResponseTypedDict": ".gethealthop",
|
1774
|
+
"GET_IMPORT_CONTENT_OP_SERVERS": ".getimportcontentop",
|
1775
|
+
"GetImportContentRequest": ".getimportcontentop",
|
1776
|
+
"GetImportContentRequestTypedDict": ".getimportcontentop",
|
1777
|
+
"GetMyPortalsRequest": ".getmyportalsop",
|
1778
|
+
"GetMyPortalsRequestTypedDict": ".getmyportalsop",
|
1779
|
+
"GetMySubscriptionRequest": ".getmysubscriptionop",
|
1780
|
+
"GetMySubscriptionRequestTypedDict": ".getmysubscriptionop",
|
1781
|
+
"GetPendingComplianceArticlesRequest": ".getpendingcompliancearticlesop",
|
1782
|
+
"GetPendingComplianceArticlesRequestTypedDict": ".getpendingcompliancearticlesop",
|
1783
|
+
"GetpopulararticlesRequest": ".getpopulararticlesop",
|
1784
|
+
"GetpopulararticlesRequestTypedDict": ".getpopulararticlesop",
|
1785
|
+
"GetPortalDetailsByIDRequest": ".getportaldetailsbyidop",
|
1786
|
+
"GetPortalDetailsByIDRequestTypedDict": ".getportaldetailsbyidop",
|
1787
|
+
"GetRelatedArticlesForSuggestionRequest": ".getrelatedarticlesforsuggestionop",
|
1788
|
+
"GetRelatedArticlesForSuggestionRequestTypedDict": ".getrelatedarticlesforsuggestionop",
|
1789
|
+
"GetRelatedArticlesRequest": ".getrelatedarticlesop",
|
1790
|
+
"GetRelatedArticlesRequestTypedDict": ".getrelatedarticlesop",
|
1791
|
+
"GetSuggestionAttachmentByIDRequest": ".getsuggestionattachmentbyidop",
|
1792
|
+
"GetSuggestionAttachmentByIDRequestTypedDict": ".getsuggestionattachmentbyidop",
|
1793
|
+
"GetSuggestionAttachmentsRequest": ".getsuggestionattachmentsop",
|
1794
|
+
"GetSuggestionAttachmentsRequestTypedDict": ".getsuggestionattachmentsop",
|
1795
|
+
"GetSuggestionCommentsRequest": ".getsuggestioncommentsop",
|
1796
|
+
"GetSuggestionCommentsRequestTypedDict": ".getsuggestioncommentsop",
|
1797
|
+
"GetSuggestionRequest": ".getsuggestionop",
|
1798
|
+
"GetSuggestionRequestTypedDict": ".getsuggestionop",
|
1799
|
+
"GetTagCategoriesForInterestForPortalRequest": ".gettagcategoriesforinterestforportalop",
|
1800
|
+
"GetTagCategoriesForInterestForPortalRequestTypedDict": ".gettagcategoriesforinterestforportalop",
|
1801
|
+
"GetTopicBreadcrumbForArticleRequest": ".gettopicbreadcrumbforarticleop",
|
1802
|
+
"GetTopicBreadcrumbForArticleRequestTypedDict": ".gettopicbreadcrumbforarticleop",
|
1803
|
+
"GetUserDetailsRequest": ".getuserdetailsop",
|
1804
|
+
"GetUserDetailsRequestTypedDict": ".getuserdetailsop",
|
1805
|
+
"GetUserMilestonesRequest": ".getusermilestonesop",
|
1806
|
+
"GetUserMilestonesRequestTypedDict": ".getusermilestonesop",
|
1807
|
+
"GHSearchRequest": ".ghsearchrequest",
|
1808
|
+
"GHSearchRequestTypedDict": ".ghsearchrequest",
|
1809
|
+
"GHSearchResult": ".ghsearchresult",
|
1810
|
+
"GHSearchResultTypedDict": ".ghsearchresult",
|
1811
|
+
"GHStepSearchRequest": ".ghstepsearchrequest",
|
1812
|
+
"GHStepSearchRequestTypedDict": ".ghstepsearchrequest",
|
1813
|
+
"Image": ".image",
|
1814
|
+
"ImageTypedDict": ".image",
|
1815
|
+
"ImportContent": ".importcontent",
|
1816
|
+
"ImportContentCredentials": ".importcontent",
|
1817
|
+
"ImportContentCredentialsTypedDict": ".importcontent",
|
1818
|
+
"ImportContentDataSource": ".importcontent",
|
1819
|
+
"ImportContentDataSourceTypedDict": ".importcontent",
|
1820
|
+
"ImportContentType": ".importcontent",
|
1821
|
+
"ImportContentTypedDict": ".importcontent",
|
1822
|
+
"Operation": ".importcontent",
|
1823
|
+
"ScheduleTime": ".importcontent",
|
1824
|
+
"ScheduleTimeTypedDict": ".importcontent",
|
1825
|
+
"ImportStatus": ".importstatus",
|
1826
|
+
"ImportStatusStatus": ".importstatus",
|
1827
|
+
"ImportStatusTypedDict": ".importstatus",
|
1828
|
+
"KbLanguage": ".kblanguage",
|
1829
|
+
"KbLanguageCode1": ".kblanguage",
|
1830
|
+
"KbLanguageTypedDict": ".kblanguage",
|
1831
|
+
"Name": ".kblanguage",
|
1832
|
+
"KbLanguageCode": ".kblanguagecode",
|
1833
|
+
"KbLanguages": ".kblanguages",
|
1834
|
+
"KbLanguagesTypedDict": ".kblanguages",
|
1835
|
+
"ArticleCategories": ".knowledgeexport",
|
1836
|
+
"DataDestination": ".knowledgeexport",
|
1837
|
+
"DataDestinationTypedDict": ".knowledgeexport",
|
1838
|
+
"DestinationType": ".knowledgeexport",
|
1839
|
+
"KnowledgeExport": ".knowledgeexport",
|
1840
|
+
"KnowledgeExportCode": ".knowledgeexport",
|
1841
|
+
"KnowledgeExportCredentials": ".knowledgeexport",
|
1842
|
+
"KnowledgeExportCredentialsTypedDict": ".knowledgeexport",
|
1843
|
+
"KnowledgeExportLanguage": ".knowledgeexport",
|
1844
|
+
"KnowledgeExportLanguageTypedDict": ".knowledgeexport",
|
1845
|
+
"KnowledgeExportResourceType": ".knowledgeexport",
|
1846
|
+
"KnowledgeExportTypedDict": ".knowledgeexport",
|
1847
|
+
"L10NString": ".l10nstring",
|
1848
|
+
"L10NStringTypedDict": ".l10nstring",
|
1849
|
+
"LanguageCode": ".languagecode",
|
1850
|
+
"LanguageCodeParameter": ".languagecode_parameter",
|
1851
|
+
"LanguageQueryParameter": ".languagequeryparameter",
|
1852
|
+
"Link": ".link",
|
1853
|
+
"LinkTypedDict": ".link",
|
1854
|
+
"MakeSuggestionRequest": ".makesuggestionop",
|
1855
|
+
"MakeSuggestionRequestTypedDict": ".makesuggestionop",
|
1856
|
+
"MandatoryLanguageQueryParameter": ".mandatorylanguagequeryparameter",
|
1857
|
+
"Metadata": ".metadata",
|
1858
|
+
"MetadataTypedDict": ".metadata",
|
1859
|
+
"Milestone": ".milestone",
|
1860
|
+
"MilestoneTypedDict": ".milestone",
|
1861
|
+
"MilestoneName": ".milestonename",
|
1862
|
+
"MilestoneNameTypedDict": ".milestonename",
|
1863
|
+
"Milestones": ".milestones",
|
1864
|
+
"MilestonesTypedDict": ".milestones",
|
1865
|
+
"ModifiedBy": ".modifiedby",
|
1866
|
+
"ModifiedByTypedDict": ".modifiedby",
|
1867
|
+
"ModifySuggestion": ".modifysuggestion",
|
1868
|
+
"ModifySuggestionAttachments": ".modifysuggestion",
|
1869
|
+
"ModifySuggestionAttachmentsTypedDict": ".modifysuggestion",
|
1870
|
+
"ModifySuggestionTypedDict": ".modifysuggestion",
|
1871
|
+
"ModifySuggestionsRequest": ".modifysuggestionsop",
|
1872
|
+
"ModifySuggestionsRequestTypedDict": ".modifysuggestionsop",
|
1873
|
+
"OptionalArticleAttributes": ".optionalarticleattributes",
|
1874
|
+
"Order": ".order",
|
1875
|
+
"OwnedBy": ".ownedby",
|
1876
|
+
"OwnedByTypedDict": ".ownedby",
|
1877
|
+
"PaginationInfo": ".paginationinfo",
|
1878
|
+
"PaginationInfoTypedDict": ".paginationinfo",
|
1879
|
+
"PATCH_IMPORT_CONTENT_VALIDATION_OP_SERVERS": ".patchimportcontentvalidationop",
|
1880
|
+
"PatchImportContentValidationRequest": ".patchimportcontentvalidationop",
|
1881
|
+
"PatchImportContentValidationRequestTypedDict": ".patchimportcontentvalidationop",
|
1882
|
+
"Filters": ".personalization",
|
1883
|
+
"FiltersTypedDict": ".personalization",
|
1884
|
+
"Personalization": ".personalization",
|
1885
|
+
"PersonalizationAccessTags": ".personalization",
|
1886
|
+
"PersonalizationAccessTagsTypedDict": ".personalization",
|
1887
|
+
"PersonalizationTypedDict": ".personalization",
|
1888
|
+
"PublishViews": ".personalization",
|
1889
|
+
"PublishViewsTypedDict": ".personalization",
|
1890
|
+
"Phone": ".phone",
|
1891
|
+
"PhoneTypedDict": ".phone",
|
1892
|
+
"Portal": ".portal",
|
1893
|
+
"PortalTypedDict": ".portal",
|
1894
|
+
"PortalResult": ".portalresult",
|
1895
|
+
"PortalResultTypedDict": ".portalresult",
|
1896
|
+
"PortalSettings": ".portalsettings",
|
1897
|
+
"PortalSettingsTypedDict": ".portalsettings",
|
1898
|
+
"SearchLearningLevel": ".portalsettings",
|
1899
|
+
"POST_PORTAL_ID_ANSWERS_OP_SERVERS": ".post_portalid_answersop",
|
1900
|
+
"PostPortalIDAnswersRequest": ".post_portalid_answersop",
|
1901
|
+
"PostPortalIDAnswersRequestTypedDict": ".post_portalid_answersop",
|
1902
|
+
"POST_PORTAL_ID_RETRIEVE_OP_SERVERS": ".post_portalid_retrieveop",
|
1903
|
+
"PostPortalIDRetrieveRequest": ".post_portalid_retrieveop",
|
1904
|
+
"PostPortalIDRetrieveRequestTypedDict": ".post_portalid_retrieveop",
|
1905
|
+
"Profile": ".profile",
|
1906
|
+
"ProfileTypedDict": ".profile",
|
1907
|
+
"ProfileResult": ".profileresult",
|
1908
|
+
"ProfileResultTypedDict": ".profileresult",
|
1909
|
+
"PublishProfile": ".publishprofile",
|
1910
|
+
"PublishProfileTypedDict": ".publishprofile",
|
1911
|
+
"PublishView": ".publishview",
|
1912
|
+
"PublishViewTagCategory": ".publishview",
|
1913
|
+
"PublishViewTagCategoryTypedDict": ".publishview",
|
1914
|
+
"PublishViewTypedDict": ".publishview",
|
1915
|
+
"Question": ".question",
|
1916
|
+
"QuestionFormat": ".question",
|
1917
|
+
"QuestionType": ".question",
|
1918
|
+
"QuestionTypedDict": ".question",
|
1919
|
+
"QuestionAndAnswer": ".questionandanswer",
|
1920
|
+
"QuestionAndAnswerTypedDict": ".questionandanswer",
|
1921
|
+
"QuickpickRating": ".quickpickrating",
|
1922
|
+
"QuickpickRatingTypedDict": ".quickpickrating",
|
1923
|
+
"QuickpickResult": ".quickpickresult",
|
1924
|
+
"QuickpickResultTypedDict": ".quickpickresult",
|
1925
|
+
"QuickpickResults": ".quickpickresults",
|
1926
|
+
"QuickpickResultsTypedDict": ".quickpickresults",
|
1927
|
+
"RateArticleRequest": ".ratearticleop",
|
1928
|
+
"RateArticleRequestTypedDict": ".ratearticleop",
|
1929
|
+
"ReferenceResponse": ".referenceresponse",
|
1930
|
+
"ReferenceResponseDocType": ".referenceresponse",
|
1931
|
+
"ReferenceResponseLink": ".referenceresponse",
|
1932
|
+
"ReferenceResponseLinkTypedDict": ".referenceresponse",
|
1933
|
+
"ReferenceResponseSource": ".referenceresponse",
|
1934
|
+
"ReferenceResponseTypedDict": ".referenceresponse",
|
1935
|
+
"RejectGHSolutionRequest": ".rejectghsolutionop",
|
1936
|
+
"RejectGHSolutionRequestTypedDict": ".rejectghsolutionop",
|
1937
|
+
"RelatedQuestions": ".relatedquestions",
|
1938
|
+
"RelatedQuestionsTypedDict": ".relatedquestions",
|
1939
|
+
"ResourceTypeParameter": ".resourcetype_parameter",
|
1940
|
+
"RestoreQuickpickRequest": ".restorequickpickop",
|
1941
|
+
"RestoreQuickpickRequestTypedDict": ".restorequickpickop",
|
1942
|
+
"RetrieveRequest": ".retrieverequest",
|
1943
|
+
"RetrieveRequestChannel": ".retrieverequest",
|
1944
|
+
"RetrieveRequestChannelTypedDict": ".retrieverequest",
|
1945
|
+
"RetrieveRequestType": ".retrieverequest",
|
1946
|
+
"RetrieveRequestTypedDict": ".retrieverequest",
|
1947
|
+
"RetrieveResponse": ".retrieveresponse",
|
1948
|
+
"RetrieveResponseAnswer": ".retrieveresponse",
|
1949
|
+
"RetrieveResponseAnswerType": ".retrieveresponse",
|
1950
|
+
"RetrieveResponseAnswerTypedDict": ".retrieveresponse",
|
1951
|
+
"RetrieveResponseChannel": ".retrieveresponse",
|
1952
|
+
"RetrieveResponseChannelTypedDict": ".retrieveresponse",
|
1953
|
+
"RetrieveResponseType": ".retrieveresponse",
|
1954
|
+
"RetrieveResponseTypedDict": ".retrieveresponse",
|
1955
|
+
"Role": ".role",
|
1956
|
+
"RoleTypedDict": ".role",
|
1957
|
+
"RoleTemplate": ".roletemplate",
|
1958
|
+
"RoleTemplateTypedDict": ".roletemplate",
|
1959
|
+
"SchemasAnswer": ".schemas_answer",
|
1960
|
+
"SchemasAnswerTypedDict": ".schemas_answer",
|
1961
|
+
"SchemasCustomAttribute": ".schemas_customattribute",
|
1962
|
+
"SchemasCustomAttributeType": ".schemas_customattribute",
|
1963
|
+
"SchemasCustomAttributeTypedDict": ".schemas_customattribute",
|
1964
|
+
"SchemasLink": ".schemas_link",
|
1965
|
+
"SchemasLinkTypedDict": ".schemas_link",
|
1966
|
+
"SchemasTag": ".schemas_tag",
|
1967
|
+
"SchemasTagTypedDict": ".schemas_tag",
|
1968
|
+
"CreatedDateAndTime": ".schemas_tagcategory",
|
1969
|
+
"CreatedDateAndTimeTypedDict": ".schemas_tagcategory",
|
1970
|
+
"LastModifiedDateAndTime": ".schemas_tagcategory",
|
1971
|
+
"LastModifiedDateAndTimeTypedDict": ".schemas_tagcategory",
|
1972
|
+
"SchemasTagCategory": ".schemas_tagcategory",
|
1973
|
+
"SchemasTagCategoryTypedDict": ".schemas_tagcategory",
|
1974
|
+
"SchemasTagGroup": ".schemas_taggroup",
|
1975
|
+
"SchemasTagGroupTypedDict": ".schemas_taggroup",
|
1976
|
+
"SchemasTags": ".schemas_tags",
|
1977
|
+
"SchemasTagsTypedDict": ".schemas_tags",
|
1978
|
+
"SchemasWSErrorCommonDetail": ".schemas_wserrorcommon",
|
1979
|
+
"SchemasWSErrorCommonDetailTypedDict": ".schemas_wserrorcommon",
|
1980
|
+
"SearchFilterAttribute": ".searchfilterattribute",
|
1981
|
+
"SearchFilterAttributeTypedDict": ".searchfilterattribute",
|
1982
|
+
"ValueType": ".searchfilterattribute",
|
1983
|
+
"SearchPriorToEscalationRequest": ".searchpriortoescalationop",
|
1984
|
+
"SearchPriorToEscalationRequestTypedDict": ".searchpriortoescalationop",
|
1985
|
+
"SearchResult": ".searchresult",
|
1986
|
+
"SearchResultDocType": ".searchresult",
|
1987
|
+
"SearchResultLink": ".searchresult",
|
1988
|
+
"SearchResultLinkTypedDict": ".searchresult",
|
1989
|
+
"SearchResultSource": ".searchresult",
|
1990
|
+
"SearchResultTypedDict": ".searchresult",
|
1991
|
+
"SnippetType": ".searchresult",
|
1992
|
+
"FilterStatus": ".searchsuggestionop",
|
1993
|
+
"SearchSuggestionRequest": ".searchsuggestionop",
|
1994
|
+
"SearchSuggestionRequestTypedDict": ".searchsuggestionop",
|
1995
|
+
"Security": ".security",
|
1996
|
+
"SecurityTypedDict": ".security",
|
1997
|
+
"SelectUserProfileRequest": ".selectuserprofileop",
|
1998
|
+
"SelectUserProfileRequestTypedDict": ".selectuserprofileop",
|
1999
|
+
"SessionContextVariable": ".sessioncontextvariable",
|
2000
|
+
"SessionContextVariableTypedDict": ".sessioncontextvariable",
|
2001
|
+
"ShortURL": ".shorturl",
|
2002
|
+
"ShortURLTypedDict": ".shorturl",
|
2003
|
+
"SortIDName": ".sortidname",
|
2004
|
+
"SortIDNameDepartment": ".sortidnamedepartment",
|
2005
|
+
"Stage": ".stage",
|
2006
|
+
"StageTypedDict": ".stage",
|
2007
|
+
"StartCustomerEscalationRequest": ".startcustomerescalationop",
|
2008
|
+
"StartCustomerEscalationRequestTypedDict": ".startcustomerescalationop",
|
2009
|
+
"StartCustomerEscalationResponse": ".startcustomerescalationop",
|
2010
|
+
"StartCustomerEscalationResponseTypedDict": ".startcustomerescalationop",
|
2011
|
+
"Captcha": ".startescalationrequest",
|
2012
|
+
"CaptchaTypedDict": ".startescalationrequest",
|
2013
|
+
"ChannelEnum": ".startescalationrequest",
|
2014
|
+
"Customer": ".startescalationrequest",
|
2015
|
+
"CustomerTypedDict": ".startescalationrequest",
|
2016
|
+
"StartEscalationRequest": ".startescalationrequest",
|
2017
|
+
"StartEscalationRequestTypedDict": ".startescalationrequest",
|
2018
|
+
"StartGHSearchRequest": ".startghsearchop",
|
2019
|
+
"StartGHSearchRequestTypedDict": ".startghsearchop",
|
2020
|
+
"StartGHSearchResponse": ".startghsearchop",
|
2021
|
+
"StartGHSearchResponseTypedDict": ".startghsearchop",
|
2022
|
+
"StartQuestionAndAnswer": ".startquestionandanswer",
|
2023
|
+
"StartQuestionAndAnswerTypedDict": ".startquestionandanswer",
|
2024
|
+
"StepGHSearchRequest": ".stepghsearchop",
|
2025
|
+
"StepGHSearchRequestTypedDict": ".stepghsearchop",
|
2026
|
+
"StringAttributeValue": ".stringattributevalue",
|
2027
|
+
"StringAttributeValueTypedDict": ".stringattributevalue",
|
2028
|
+
"StructuredAuthoringFields": ".structuredauthoringfields",
|
2029
|
+
"StructuredAuthoringFieldsTypedDict": ".structuredauthoringfields",
|
2030
|
+
"SubscribeArticleRequest": ".subscribearticleop",
|
2031
|
+
"SubscribeArticleRequestTypedDict": ".subscribearticleop",
|
2032
|
+
"Label": ".suggestion",
|
2033
|
+
"Suggestion": ".suggestion",
|
2034
|
+
"SuggestionCode": ".suggestion",
|
2035
|
+
"SuggestionL10NString": ".suggestion",
|
2036
|
+
"SuggestionL10NStringTypedDict": ".suggestion",
|
2037
|
+
"SuggestionLanguage": ".suggestion",
|
2038
|
+
"SuggestionLanguageTypedDict": ".suggestion",
|
2039
|
+
"SuggestionTypedDict": ".suggestion",
|
2040
|
+
"SuggestionAdditionalAttributes": ".suggestionadditionalattributes",
|
2041
|
+
"SuggestionAttachment": ".suggestionattachment",
|
2042
|
+
"SuggestionAttachmentTypedDict": ".suggestionattachment",
|
2043
|
+
"Suggestions": ".suggestions",
|
2044
|
+
"SuggestionsTypedDict": ".suggestions",
|
2045
|
+
"Tag": ".tag",
|
2046
|
+
"TagTypedDict": ".tag",
|
2047
|
+
"TagCategoriesForInterest": ".tagcategoriesforinterest",
|
2048
|
+
"TagCategoriesForInterestTypedDict": ".tagcategoriesforinterest",
|
2049
|
+
"TagCategory": ".tagcategory",
|
2050
|
+
"TagCategoryTypedDict": ".tagcategory",
|
2051
|
+
"TagGroup": ".taggroup",
|
2052
|
+
"TagGroupTypedDict": ".taggroup",
|
2053
|
+
"TagGroups": ".taggroups",
|
2054
|
+
"TagGroupsTypedDict": ".taggroups",
|
2055
|
+
"Tags": ".tags",
|
2056
|
+
"TagsTypedDict": ".tags",
|
2057
|
+
"Topic": ".topic",
|
2058
|
+
"TopicTypedDict": ".topic",
|
2059
|
+
"TopicAdditionalAttributes": ".topicadditionalattributes",
|
2060
|
+
"TopicAISearchResult": ".topicaisearchresult",
|
2061
|
+
"TopicAISearchResultTypedDict": ".topicaisearchresult",
|
2062
|
+
"TopicBreadcrumb": ".topicbreadcrumb",
|
2063
|
+
"TopicBreadcrumbTypedDict": ".topicbreadcrumb",
|
2064
|
+
"TopicResult": ".topicresult",
|
2065
|
+
"TopicResultTypedDict": ".topicresult",
|
2066
|
+
"TopicSummary": ".topicsummary",
|
2067
|
+
"TopicSummaryTypedDict": ".topicsummary",
|
2068
|
+
"TopicTreeNode": ".topictreenode",
|
2069
|
+
"TopicTreeNodeTypedDict": ".topictreenode",
|
2070
|
+
"TopicTreeResult": ".topictreeresult",
|
2071
|
+
"TopicTreeResultTypedDict": ".topictreeresult",
|
2072
|
+
"UnsubscribeArticleRequest": ".unsubscribearticleop",
|
2073
|
+
"UnsubscribeArticleRequestTypedDict": ".unsubscribearticleop",
|
2074
|
+
"UploadAttachmentRequest": ".uploadattachmentop",
|
2075
|
+
"UploadAttachmentRequestTypedDict": ".uploadattachmentop",
|
2076
|
+
"UserDetails": ".userdetails",
|
2077
|
+
"UserDetailsTypedDict": ".userdetails",
|
2078
|
+
"UserProfile": ".userprofile",
|
2079
|
+
"UserProfileTypedDict": ".userprofile",
|
2080
|
+
"UserProfiles": ".userprofiles",
|
2081
|
+
"UserProfilesTypedDict": ".userprofiles",
|
2082
|
+
"UserView": ".userview",
|
2083
|
+
"UserViewTypedDict": ".userview",
|
2084
|
+
"ValidateImportContent": ".validateimportcontent",
|
2085
|
+
"ValidateImportContentCredentials": ".validateimportcontent",
|
2086
|
+
"ValidateImportContentCredentialsTypedDict": ".validateimportcontent",
|
2087
|
+
"ValidateImportContentDataSource": ".validateimportcontent",
|
2088
|
+
"ValidateImportContentDataSourceTypedDict": ".validateimportcontent",
|
2089
|
+
"ValidateImportContentType": ".validateimportcontent",
|
2090
|
+
"ValidateImportContentTypedDict": ".validateimportcontent",
|
2091
|
+
"VirtualCase": ".virtualcase",
|
2092
|
+
"VirtualCaseTypedDict": ".virtualcase",
|
2093
|
+
"Workflow": ".workflow",
|
2094
|
+
"WorkflowTypedDict": ".workflow",
|
2095
|
+
"WorkflowMilestone": ".workflowmilestone",
|
2096
|
+
"WSErrorCommonDetail": ".wserrorcommon",
|
2097
|
+
"WSErrorCommonDetailTypedDict": ".wserrorcommon",
|
2098
|
+
}
|
2099
|
+
|
2100
|
+
|
2101
|
+
def dynamic_import(modname, retries=3):
|
2102
|
+
for attempt in range(retries):
|
2103
|
+
try:
|
2104
|
+
return import_module(modname, __package__)
|
2105
|
+
except KeyError:
|
2106
|
+
# Clear any half-initialized module and retry
|
2107
|
+
sys.modules.pop(modname, None)
|
2108
|
+
if attempt == retries - 1:
|
2109
|
+
break
|
2110
|
+
raise KeyError(f"Failed to import module '{modname}' after {retries} attempts")
|
2111
|
+
|
2112
|
+
|
2113
|
+
def __getattr__(attr_name: str) -> object:
|
2114
|
+
module_name = _dynamic_imports.get(attr_name)
|
2115
|
+
if module_name is None:
|
2116
|
+
raise AttributeError(
|
2117
|
+
f"No {attr_name} found in _dynamic_imports for module name -> {__name__} "
|
2118
|
+
)
|
2119
|
+
|
2120
|
+
try:
|
2121
|
+
module = dynamic_import(module_name)
|
2122
|
+
result = getattr(module, attr_name)
|
2123
|
+
return result
|
2124
|
+
except ImportError as e:
|
2125
|
+
raise ImportError(
|
2126
|
+
f"Failed to import {attr_name} from {module_name}: {e}"
|
2127
|
+
) from e
|
2128
|
+
except AttributeError as e:
|
2129
|
+
raise AttributeError(
|
2130
|
+
f"Failed to get {attr_name} from {module_name}: {e}"
|
2131
|
+
) from e
|
2132
|
+
|
2133
|
+
|
2134
|
+
def __dir__():
|
2135
|
+
lazy_attrs = builtins.list(_dynamic_imports.keys())
|
2136
|
+
return builtins.sorted(lazy_attrs)
|