@@ -4716,6 +4716,55 @@ func (builder *UniversalSearchReqBuilder) Build() *UniversalSearchReq {
47164716 return req
47174717}
47184718
4719+ type UpdateAiEntityReq struct {
4720+ apiReq * core.APIReq
4721+ }
4722+ type UpdateAiEntityReqBody struct {
4723+ UpdateAiEntityParam []UpdateAiEntityParam `json:"update_ai_entity_param,omitempty"`
4724+ ProjectKey * string `json:"project_key,omitempty"`
4725+ UserKey * string `json:"user_key,omitempty"`
4726+ }
4727+ type UpdateAiEntityResp struct {
4728+ * core.APIResp `json:"-"`
4729+ core.CodeError
4730+ }
4731+
4732+ type UpdateAiEntityReqBuilder struct {
4733+ apiReq * core.APIReq
4734+ }
4735+
4736+ func NewUpdateAiEntityReqBuilder () * UpdateAiEntityReqBuilder {
4737+ builder := & UpdateAiEntityReqBuilder {}
4738+ builder .apiReq = & core.APIReq {
4739+ PathParams : core.PathParams {},
4740+ QueryParams : core.QueryParams {},
4741+ Body : & UpdateAiEntityReqBody {},
4742+ }
4743+ return builder
4744+ }
4745+
4746+ func (builder * UpdateAiEntityReqBuilder ) UpdateAiEntityParam (updateAiEntityParam []UpdateAiEntityParam ) * UpdateAiEntityReqBuilder {
4747+ builder .apiReq .Body .(* UpdateAiEntityReqBody ).UpdateAiEntityParam = updateAiEntityParam
4748+ return builder
4749+ }
4750+
4751+ func (builder * UpdateAiEntityReqBuilder ) ProjectKey (projectKey string ) * UpdateAiEntityReqBuilder {
4752+ builder .apiReq .Body .(* UpdateAiEntityReqBody ).ProjectKey = & projectKey
4753+ return builder
4754+ }
4755+
4756+
4757+ func (builder * UpdateAiEntityReqBuilder ) UserKey (userKey string ) * UpdateAiEntityReqBuilder {
4758+ builder .apiReq .Body .(* UpdateAiEntityReqBody ).UserKey = & userKey
4759+ return builder
4760+ }
4761+
4762+ func (builder * UpdateAiEntityReqBuilder ) Build () * UpdateAiEntityReq {
4763+ req := & UpdateAiEntityReq {}
4764+ req .apiReq = builder .apiReq
4765+ return req
4766+ }
4767+
47194768type UpdateCompoundFieldValueReq struct {
47204769 apiReq * core.APIReq
47214770}
0 commit comments