sdk/oapiSdk/lark_oapi/api/helpdesk/v1/resource/agent_skill.py

214 lines
7.5 KiB
Python
Raw Normal View History

2025-08-19 10:20:23 +00:00
# Code generated by Lark OpenAPI.
import io
from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type
from lark_oapi.core.const import UTF_8, CONTENT_TYPE, APPLICATION_JSON
from lark_oapi.core import JSON
from lark_oapi.core.token import verify
from lark_oapi.core.http import Transport
from lark_oapi.core.model import Config, RequestOption, RawResponse
from lark_oapi.core.utils import Files
from requests_toolbelt import MultipartEncoder
from ..model.create_agent_skill_request import CreateAgentSkillRequest
from ..model.create_agent_skill_response import CreateAgentSkillResponse
from ..model.delete_agent_skill_request import DeleteAgentSkillRequest
from ..model.delete_agent_skill_response import DeleteAgentSkillResponse
from ..model.get_agent_skill_request import GetAgentSkillRequest
from ..model.get_agent_skill_response import GetAgentSkillResponse
from ..model.list_agent_skill_request import ListAgentSkillRequest
from ..model.list_agent_skill_response import ListAgentSkillResponse
from ..model.patch_agent_skill_request import PatchAgentSkillRequest
from ..model.patch_agent_skill_response import PatchAgentSkillResponse
class AgentSkill(object):
def __init__(self, config: Config) -> None:
self.config: Config = config
def create(self, request: CreateAgentSkillRequest,
option: Optional[RequestOption] = None) -> CreateAgentSkillResponse:
if option is None:
option = RequestOption()
# 鉴权、获取 token
verify(self.config, request, option)
# 添加 content-type
if request.body is not None:
option.headers[CONTENT_TYPE] = f"{APPLICATION_JSON}; charset=utf-8"
# 发起请求
resp: RawResponse = Transport.execute(self.config, request, option)
# 反序列化
response: CreateAgentSkillResponse = JSON.unmarshal(str(resp.content, UTF_8), CreateAgentSkillResponse)
response.raw = resp
return response
async def acreate(self, request: CreateAgentSkillRequest,
option: Optional[RequestOption] = None) -> CreateAgentSkillResponse:
if option is None:
option = RequestOption()
# 鉴权、获取 token
verify(self.config, request, option)
# 发起请求
resp: RawResponse = await Transport.aexecute(self.config, request, option)
# 反序列化
response: CreateAgentSkillResponse = JSON.unmarshal(str(resp.content, UTF_8), CreateAgentSkillResponse)
response.raw = resp
return response
def delete(self, request: DeleteAgentSkillRequest,
option: Optional[RequestOption] = None) -> DeleteAgentSkillResponse:
if option is None:
option = RequestOption()
# 鉴权、获取 token
verify(self.config, request, option)
# 添加 content-type
if request.body is not None:
option.headers[CONTENT_TYPE] = f"{APPLICATION_JSON}; charset=utf-8"
# 发起请求
resp: RawResponse = Transport.execute(self.config, request, option)
# 反序列化
response: DeleteAgentSkillResponse = JSON.unmarshal(str(resp.content, UTF_8), DeleteAgentSkillResponse)
response.raw = resp
return response
async def adelete(self, request: DeleteAgentSkillRequest,
option: Optional[RequestOption] = None) -> DeleteAgentSkillResponse:
if option is None:
option = RequestOption()
# 鉴权、获取 token
verify(self.config, request, option)
# 发起请求
resp: RawResponse = await Transport.aexecute(self.config, request, option)
# 反序列化
response: DeleteAgentSkillResponse = JSON.unmarshal(str(resp.content, UTF_8), DeleteAgentSkillResponse)
response.raw = resp
return response
def get(self, request: GetAgentSkillRequest, option: Optional[RequestOption] = None) -> GetAgentSkillResponse:
if option is None:
option = RequestOption()
# 鉴权、获取 token
verify(self.config, request, option)
# 添加 content-type
if request.body is not None:
option.headers[CONTENT_TYPE] = f"{APPLICATION_JSON}; charset=utf-8"
# 发起请求
resp: RawResponse = Transport.execute(self.config, request, option)
# 反序列化
response: GetAgentSkillResponse = JSON.unmarshal(str(resp.content, UTF_8), GetAgentSkillResponse)
response.raw = resp
return response
async def aget(self, request: GetAgentSkillRequest,
option: Optional[RequestOption] = None) -> GetAgentSkillResponse:
if option is None:
option = RequestOption()
# 鉴权、获取 token
verify(self.config, request, option)
# 发起请求
resp: RawResponse = await Transport.aexecute(self.config, request, option)
# 反序列化
response: GetAgentSkillResponse = JSON.unmarshal(str(resp.content, UTF_8), GetAgentSkillResponse)
response.raw = resp
return response
def list(self, request: ListAgentSkillRequest, option: Optional[RequestOption] = None) -> ListAgentSkillResponse:
if option is None:
option = RequestOption()
# 鉴权、获取 token
verify(self.config, request, option)
# 添加 content-type
if request.body is not None:
option.headers[CONTENT_TYPE] = f"{APPLICATION_JSON}; charset=utf-8"
# 发起请求
resp: RawResponse = Transport.execute(self.config, request, option)
# 反序列化
response: ListAgentSkillResponse = JSON.unmarshal(str(resp.content, UTF_8), ListAgentSkillResponse)
response.raw = resp
return response
async def alist(self, request: ListAgentSkillRequest,
option: Optional[RequestOption] = None) -> ListAgentSkillResponse:
if option is None:
option = RequestOption()
# 鉴权、获取 token
verify(self.config, request, option)
# 发起请求
resp: RawResponse = await Transport.aexecute(self.config, request, option)
# 反序列化
response: ListAgentSkillResponse = JSON.unmarshal(str(resp.content, UTF_8), ListAgentSkillResponse)
response.raw = resp
return response
def patch(self, request: PatchAgentSkillRequest, option: Optional[RequestOption] = None) -> PatchAgentSkillResponse:
if option is None:
option = RequestOption()
# 鉴权、获取 token
verify(self.config, request, option)
# 添加 content-type
if request.body is not None:
option.headers[CONTENT_TYPE] = f"{APPLICATION_JSON}; charset=utf-8"
# 发起请求
resp: RawResponse = Transport.execute(self.config, request, option)
# 反序列化
response: PatchAgentSkillResponse = JSON.unmarshal(str(resp.content, UTF_8), PatchAgentSkillResponse)
response.raw = resp
return response
async def apatch(self, request: PatchAgentSkillRequest,
option: Optional[RequestOption] = None) -> PatchAgentSkillResponse:
if option is None:
option = RequestOption()
# 鉴权、获取 token
verify(self.config, request, option)
# 发起请求
resp: RawResponse = await Transport.aexecute(self.config, request, option)
# 反序列化
response: PatchAgentSkillResponse = JSON.unmarshal(str(resp.content, UTF_8), PatchAgentSkillResponse)
response.raw = resp
return response