From a0426f8d8051ca11a713c275f2cc04cae1c35e8f Mon Sep 17 00:00:00 2001 From: chyroc Date: Sun, 1 Mar 2026 00:26:27 +0800 Subject: [PATCH 01/12] feat: generate APIs added in PR31 with compatibility wrappers --- api_ccm_sheet_default_import_result.go | 79 + api_contact_v2_department_batch_add.go | 81 + api_im_url_preview_batch_update.go | 76 + api_mdm_user_auth_data_relation_bind.go | 87 +- api_mdm_user_auth_data_relation_unbind.go | 87 +- impl.go | 6 + mock.go | 2202 +++++++++++---------- 7 files changed, 1460 insertions(+), 1158 deletions(-) create mode 100644 api_ccm_sheet_default_import_result.go create mode 100644 api_contact_v2_department_batch_add.go create mode 100644 api_im_url_preview_batch_update.go diff --git a/api_ccm_sheet_default_import_result.go b/api_ccm_sheet_default_import_result.go new file mode 100644 index 00000000..93de63e6 --- /dev/null +++ b/api_ccm_sheet_default_import_result.go @@ -0,0 +1,79 @@ +// Code generated by lark_sdk_gen. DO NOT EDIT. +/** + * Copyright 2022 chyroc + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package lark + +import ( + "context" +) + +// GetCcmSheetDefaultImportResult 该接口用于查询文件导入结果。查询30分钟无结果为导入失败。 +// +// doc: https://open.feishu.cn/document/ukTMukTMukTM/uETO2YjLxkjN24SM5YjN +// new doc: https://open.feishu.cn/document/server-docs/historic-version/docs/sheets/sheet-operation/query-import-results +// +// Deprecated +func (r *CcmSheetService) GetCcmSheetDefaultImportResult(ctx context.Context, request *GetCcmSheetDefaultImportResultReq, options ...MethodOptionFunc) (*GetCcmSheetDefaultImportResultResp, *Response, error) { + if r.cli.mock.mockCcmSheetGetCcmSheetDefaultImportResult != nil { + r.cli.Log(ctx, LogLevelDebug, "[lark] CcmSheet#GetCcmSheetDefaultImportResult mock enable") + return r.cli.mock.mockCcmSheetGetCcmSheetDefaultImportResult(ctx, request, options...) + } + + req := &RawRequestReq{ + Scope: "CcmSheet", + API: "GetCcmSheetDefaultImportResult", + Method: "GET", + URL: r.cli.openBaseURL + "/open-apis/sheets/v2/import/result", + Body: request, + MethodOption: newMethodOption(options), + NeedTenantAccessToken: true, + NeedUserAccessToken: true, + } + resp := new(getCcmSheetDefaultImportResultResp) + + response, err := r.cli.RawRequest(ctx, req, resp) + return resp.Data, response, err +} + +// MockCcmSheetGetCcmSheetDefaultImportResult mock CcmSheetGetCcmSheetDefaultImportResult method +func (r *Mock) MockCcmSheetGetCcmSheetDefaultImportResult(f func(ctx context.Context, request *GetCcmSheetDefaultImportResultReq, options ...MethodOptionFunc) (*GetCcmSheetDefaultImportResultResp, *Response, error)) { + r.mockCcmSheetGetCcmSheetDefaultImportResult = f +} + +// UnMockCcmSheetGetCcmSheetDefaultImportResult un-mock CcmSheetGetCcmSheetDefaultImportResult method +func (r *Mock) UnMockCcmSheetGetCcmSheetDefaultImportResult() { + r.mockCcmSheetGetCcmSheetDefaultImportResult = nil +} + +// GetCcmSheetDefaultImportResultReq ... +type GetCcmSheetDefaultImportResultReq struct { + Ticket string `query:"ticket" json:"-"` // 导入时获取的凭证 +} + +// GetCcmSheetDefaultImportResultResp ... +type GetCcmSheetDefaultImportResultResp struct { + Ticket string `json:"ticket,omitempty"` // 导入时获取的凭证 + URL string `json:"url,omitempty"` // 导入文档的链接 + WarningCode int64 `json:"warningCode,omitempty"` // 导入的文档的状态码 +} + +// getCcmSheetDefaultImportResultResp ... +type getCcmSheetDefaultImportResultResp struct { + Code int64 `json:"code,omitempty"` + Msg string `json:"msg,omitempty"` + Data *GetCcmSheetDefaultImportResultResp `json:"data,omitempty"` +} diff --git a/api_contact_v2_department_batch_add.go b/api_contact_v2_department_batch_add.go new file mode 100644 index 00000000..f5d0e46d --- /dev/null +++ b/api_contact_v2_department_batch_add.go @@ -0,0 +1,81 @@ +// Code generated by lark_sdk_gen. DO NOT EDIT. +/** + * Copyright 2022 chyroc + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package lark + +import ( + "context" +) + +// BatchAddContactV2Department 该接口用于向通讯录中批量新增多个部门。 +// +// 调用该接口需要具有所有新增部门父部门的授权范围。 +// 应用商店应用无权限调用此接口。 +// 调用该接口需要申请 `更新通讯录` 以及 `以应用身份访问通讯录` 权限。 +// +// doc: https://open.feishu.cn/document/ukTMukTMukTM/uMDOwUjLzgDM14yM4ATN +// new doc: https://open.feishu.cn/document/server-docs/historic-version//import-api/batch-add-departments +// +// Deprecated +func (r *ContactService) BatchAddContactV2Department(ctx context.Context, request *BatchAddContactV2DepartmentReq, options ...MethodOptionFunc) (*BatchAddContactV2DepartmentResp, *Response, error) { + if r.cli.mock.mockContactBatchAddContactV2Department != nil { + r.cli.Log(ctx, LogLevelDebug, "[lark] Contact#BatchAddContactV2Department mock enable") + return r.cli.mock.mockContactBatchAddContactV2Department(ctx, request, options...) + } + + req := &RawRequestReq{ + Scope: "Contact", + API: "BatchAddContactV2Department", + Method: "POST", + URL: r.cli.openBaseURL + "/open-apis/contact/v2/department/batch_add", + Body: request, + MethodOption: newMethodOption(options), + NeedTenantAccessToken: true, + } + resp := new(batchAddContactV2DepartmentResp) + + response, err := r.cli.RawRequest(ctx, req, resp) + return resp.Data, response, err +} + +// MockContactBatchAddContactV2Department mock ContactBatchAddContactV2Department method +func (r *Mock) MockContactBatchAddContactV2Department(f func(ctx context.Context, request *BatchAddContactV2DepartmentReq, options ...MethodOptionFunc) (*BatchAddContactV2DepartmentResp, *Response, error)) { + r.mockContactBatchAddContactV2Department = f +} + +// UnMockContactBatchAddContactV2Department un-mock ContactBatchAddContactV2Department method +func (r *Mock) UnMockContactBatchAddContactV2Department() { + r.mockContactBatchAddContactV2Department = nil +} + +// BatchAddContactV2DepartmentReq ... +type BatchAddContactV2DepartmentReq struct { + Departments []string `json:"departments,omitempty"` // 所有要新增部门的集合。 +} + +// BatchAddContactV2DepartmentResp ... +type BatchAddContactV2DepartmentResp struct { + TaskID string `json:"task_id,omitempty"` // 生成的异步任务 ID, 参见 [查询批量任务执行状态](https://open.feishu.cn/document/ukTMukTMukTM/uUDOwUjL1gDM14SN4ATN) 接口。 +} + +// batchAddContactV2DepartmentResp ... +type batchAddContactV2DepartmentResp struct { + Code int64 `json:"code,omitempty"` // 返回码, 非 0 表示失败。 + Msg string `json:"msg,omitempty"` // 对返回码的文本描述。 + Data *BatchAddContactV2DepartmentResp `json:"data,omitempty"` + Error *ErrorDetail `json:"error,omitempty"` +} diff --git a/api_im_url_preview_batch_update.go b/api_im_url_preview_batch_update.go new file mode 100644 index 00000000..022d1297 --- /dev/null +++ b/api_im_url_preview_batch_update.go @@ -0,0 +1,76 @@ +// Code generated by lark_sdk_gen. DO NOT EDIT. +/** + * Copyright 2022 chyroc + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package lark + +import ( + "context" +) + +// BatchUpdateImurlPreview 该接口用于主动更新 [URL 预览](https://open.feishu.cn/document/uAjLw4CM/ukzMukzMukzM/development-link-preview/link-preview-development-guide), 调用后会重新触发一次客户端拉取, 需要回调服务返回更新后的数据。 +// +// 注意: 更新链接预览时需要注意更新频率, 如果更新时不指定用户, 则可能会造成链接预览请求放大。例如, 群聊中的链接预览, 所有群成员均会尝试重新拉取预览请求。 +// +// doc: https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/group/im-v2/url_preview/batch_update +// new doc: https://open.feishu.cn/document/im-v1/url_preview/batch_update +func (r *IMService) BatchUpdateImurlPreview(ctx context.Context, request *BatchUpdateImurlPreviewReq, options ...MethodOptionFunc) (*BatchUpdateImurlPreviewResp, *Response, error) { + if r.cli.mock.mockIMBatchUpdateImurlPreview != nil { + r.cli.Log(ctx, LogLevelDebug, "[lark] IM#BatchUpdateImurlPreview mock enable") + return r.cli.mock.mockIMBatchUpdateImurlPreview(ctx, request, options...) + } + + req := &RawRequestReq{ + Scope: "IM", + API: "BatchUpdateImurlPreview", + Method: "POST", + URL: r.cli.openBaseURL + "/open-apis/im/v2/url_previews/batch_update", + Body: request, + MethodOption: newMethodOption(options), + NeedTenantAccessToken: true, + } + resp := new(batchUpdateImurlPreviewResp) + + response, err := r.cli.RawRequest(ctx, req, resp) + return resp.Data, response, err +} + +// MockIMBatchUpdateImurlPreview mock IMBatchUpdateImurlPreview method +func (r *Mock) MockIMBatchUpdateImurlPreview(f func(ctx context.Context, request *BatchUpdateImurlPreviewReq, options ...MethodOptionFunc) (*BatchUpdateImurlPreviewResp, *Response, error)) { + r.mockIMBatchUpdateImurlPreview = f +} + +// UnMockIMBatchUpdateImurlPreview un-mock IMBatchUpdateImurlPreview method +func (r *Mock) UnMockIMBatchUpdateImurlPreview() { + r.mockIMBatchUpdateImurlPreview = nil +} + +// BatchUpdateImurlPreviewReq ... +type BatchUpdateImurlPreviewReq struct { + PreviewTokens []string `json:"preview_tokens,omitempty"` // URL 预览的 preview_tokens 列表。需要通过[拉取链接预览数据](https://open.feishu.cn/document/uAjLw4CM/ukzMukzMukzM/development-link-preview/pull-link-preview-data-callback-structure)回调获取 preview_tokens。注意: 单个 token 限制更新频率为 1次/5秒。示例值: ["952te0c8-9ccf-463d-ad73-593f8f768a5c"] 长度范围: `1` ~ `10` + OpenIDs *string `json:"open_ids,omitempty"` // 需要更新 URL 预览的用户 open_id。若不传, 则默认更新 URL 预览所在会话的所有成员;若用户不在 URL 所在会话, 则无法触发更新该用户对应的 URL 预览结果。获取方式参见[如何获取 Open ID](https://open.feishu.cn/document/uAjLw4CM/ugTN1YjL4UTN24CO1UjN/trouble-shooting/how-to-obtain-openid)。示例值: ["ou_xxx"] 长度范围: `0` ~ `100` +} + +// BatchUpdateImurlPreviewResp ... +type BatchUpdateImurlPreviewResp struct{} + +// batchUpdateImurlPreviewResp ... +type batchUpdateImurlPreviewResp struct { + Code int64 `json:"code,omitempty"` // 错误码, 非 0 表示失败 + Msg string `json:"msg,omitempty"` // 错误描述 + Data *BatchUpdateImurlPreviewResp `json:"data,omitempty"` + Error *ErrorDetail `json:"error,omitempty"` +} diff --git a/api_mdm_user_auth_data_relation_bind.go b/api_mdm_user_auth_data_relation_bind.go index 5ceb711f..4a5bc420 100644 --- a/api_mdm_user_auth_data_relation_bind.go +++ b/api_mdm_user_auth_data_relation_bind.go @@ -21,57 +21,86 @@ import ( "context" ) -// BindMDMUserAuthDataRelation 通过该接口, 可为指定应用下的用户绑定一类数据维度, 支持批量给多个用户同时增量授权。 +// CreateMDMUserAuthDataRelationBind 通过该接口, 可为指定应用下的用户绑定一类数据维度, 支持批量给多个用户同时增量授权。 // -// doc: https://open.larkoffice.com/document/uAjLw4CM/ukTMukTMukTM/mdm-v1/user_auth_data_relation/bind +// doc: https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/mdm-v1/user_auth_data_relation/bind // new doc: https://open.feishu.cn/document/server-docs/mdm-v1/user_auth_data_relation/bind -func (r *MDMService) BindMDMUserAuthDataRelation(ctx context.Context, request *BindMDMUserAuthDataRelationReq, options ...MethodOptionFunc) (*BindMDMUserAuthDataRelationResp, *Response, error) { - if r.cli.mock.mockMDMBindMDMUserAuthDataRelation != nil { - r.cli.Log(ctx, LogLevelDebug, "[lark] MDM#BindMDMUserAuthDataRelation mock enable") - return r.cli.mock.mockMDMBindMDMUserAuthDataRelation(ctx, request, options...) +func (r *MDMService) CreateMDMUserAuthDataRelationBind(ctx context.Context, request *CreateMDMUserAuthDataRelationBindReq, options ...MethodOptionFunc) (*CreateMDMUserAuthDataRelationBindResp, *Response, error) { + if r.cli.mock.mockMDMCreateMDMUserAuthDataRelationBind != nil { + r.cli.Log(ctx, LogLevelDebug, "[lark] MDM#CreateMDMUserAuthDataRelationBind mock enable") + return r.cli.mock.mockMDMCreateMDMUserAuthDataRelationBind(ctx, request, options...) } req := &RawRequestReq{ Scope: "MDM", - API: "BindMDMUserAuthDataRelation", + API: "CreateMDMUserAuthDataRelationBind", Method: "POST", URL: r.cli.openBaseURL + "/open-apis/mdm/v1/user_auth_data_relations/bind", Body: request, MethodOption: newMethodOption(options), NeedTenantAccessToken: true, } - resp := new(bindMDMUserAuthDataRelationResp) + resp := new(createMDMUserAuthDataRelationBindResp) response, err := r.cli.RawRequest(ctx, req, resp) return resp.Data, response, err } -// MockMDMBindMDMUserAuthDataRelation mock MDMBindMDMUserAuthDataRelation method -func (r *Mock) MockMDMBindMDMUserAuthDataRelation(f func(ctx context.Context, request *BindMDMUserAuthDataRelationReq, options ...MethodOptionFunc) (*BindMDMUserAuthDataRelationResp, *Response, error)) { - r.mockMDMBindMDMUserAuthDataRelation = f +// MockMDMCreateMDMUserAuthDataRelationBind mock MDMCreateMDMUserAuthDataRelationBind method +func (r *Mock) MockMDMCreateMDMUserAuthDataRelationBind(f func(ctx context.Context, request *CreateMDMUserAuthDataRelationBindReq, options ...MethodOptionFunc) (*CreateMDMUserAuthDataRelationBindResp, *Response, error)) { + r.mockMDMCreateMDMUserAuthDataRelationBind = f } -// UnMockMDMBindMDMUserAuthDataRelation un-mock MDMBindMDMUserAuthDataRelation method -func (r *Mock) UnMockMDMBindMDMUserAuthDataRelation() { - r.mockMDMBindMDMUserAuthDataRelation = nil +// UnMockMDMCreateMDMUserAuthDataRelationBind un-mock MDMCreateMDMUserAuthDataRelationBind method +func (r *Mock) UnMockMDMCreateMDMUserAuthDataRelationBind() { + r.mockMDMCreateMDMUserAuthDataRelationBind = nil } -// BindMDMUserAuthDataRelationReq ... -type BindMDMUserAuthDataRelationReq struct { - UserIDType *IDType `query:"user_id_type" json:"-"` // 用户 ID 类型, 示例值: open_id, 可选值有: open_id: 标识一个用户在某个应用中的身份。同一个用户在不同应用中的 Open ID 不同。[了解更多: 如何获取 Open ID](https://open.feishu.cn/document/uAjLw4CM/ugTN1YjL4UTN24CO1UjN/trouble-shooting/how-to-obtain-openid), union_id: 标识一个用户在某个应用开发商下的身份。同一用户在同一开发商下的应用中的 Union ID 是相同的, 在不同开发商下的应用中的 Union ID 是不同的。通过 Union ID, 应用开发商可以把同个用户在多个应用中的身份关联起来。[了解更多: 如何获取 Union ID?](https://open.feishu.cn/document/uAjLw4CM/ugTN1YjL4UTN24CO1UjN/trouble-shooting/how-to-obtain-union-id), user_id: 标识一个用户在某个租户内的身份。同一个用户在租户 A 和租户 B 内的 User ID 是不同的。在同一个租户内, 一个用户的 User ID 在所有应用(包括商店应用)中都保持一致。User ID 主要用于在不同的应用间打通用户数据。[了解更多: 如何获取 User ID?](https://open.feishu.cn/document/uAjLw4CM/ugTN1YjL4UTN24CO1UjN/trouble-shooting/how-to-obtain-user-id), 默认值: `open_id`, 当值为 `user_id`, 字段权限要求: 获取用户 user ID - RootDimensionType string `json:"root_dimension_type,omitempty"` // 数据类型编码, 示例值: "gongsi", 长度范围: `1` ~ `200` 字符 - SubDimensionTypes []string `json:"sub_dimension_types,omitempty"` // 数据编码列表, 示例值: ["code_dimension"], 长度范围: `1` ~ `200` - AuthorizedUserIDs []string `json:"authorized_user_ids,omitempty"` // 授权人的lark id, 示例值: ["ou_7dab8a3d3cdcc9da365777c7ad535d62"], 长度范围: `1` ~ `200` - UamsAppID string `json:"uams_app_id,omitempty"` // uams系统中应用id, 示例值: "uams-tenant-test", 长度范围: `1` ~ `200` 字符 +// CreateMDMUserAuthDataRelationBindReq ... +type CreateMDMUserAuthDataRelationBindReq struct { + UserIDType *IDType `query:"user_id_type" json:"-"` // 用户 ID 类型示例值: open_id可选值有: 标识一个用户在某个应用中的身份。同一个用户在不同应用中的 Open ID 不同。[了解更多: 如何获取 Open ID](https://open.feishu.cn/document/uAjLw4CM/ugTN1YjL4UTN24CO1UjN/trouble-shooting/how-to-obtain-openid)标识一个用户在某个应用开发商下的身份。同一用户在同一开发商下的应用中的 Union ID 是相同的, 在不同开发商下的应用中的 Union ID 是不同的。通过 Union ID, 应用开发商可以把同个用户在多个应用中的身份关联起来。[了解更多: 如何获取 Union ID?](https://open.feishu.cn/document/uAjLw4CM/ugTN1YjL4UTN24CO1UjN/trouble-shooting/how-to-obtain-union-id)标识一个用户在某个租户内的身份。同一个用户在租户 A 和租户 B 内的 User ID 是不同的。在同一个租户内, 一个用户的 User ID 在所有应用(包括商店应用)中都保持一致。User ID 主要用于在不同的应用间打通用户数据。[了解更多: 如何获取 User ID?](https://open.feishu.cn/document/uAjLw4CM/ugTN1YjL4UTN24CO1UjN/trouble-shooting/how-to-obtain-user-id)默认值: `open_id`当值为 `user_id`, 字段权限要求: 获取用户 user ID + RootDimensionType string `json:"root_dimension_type,omitempty"` // 数据类型编码示例值: "gongsi" 长度范围: `1` ~ `200` 字符 + SubDimensionTypes []string `json:"sub_dimension_types,omitempty"` // 数据编码列表示例值: ["code_dimension"] 长度范围: `1` ~ `200` + AuthorizedUserIDs []string `json:"authorized_user_ids,omitempty"` // 授权人的lark id示例值: ["ou_7dab8a3d3cdcc9da365777c7ad535d62"] 长度范围: `1` ~ `200` + UamsAppID string `json:"uams_app_id,omitempty"` // uams系统中应用id示例值: "uams-tenant-test" 长度范围: `1` ~ `200` 字符 } -// BindMDMUserAuthDataRelationResp ... -type BindMDMUserAuthDataRelationResp struct{} +// CreateMDMUserAuthDataRelationBindResp ... +type CreateMDMUserAuthDataRelationBindResp struct{} -// bindMDMUserAuthDataRelationResp ... -type bindMDMUserAuthDataRelationResp struct { - Code int64 `json:"code,omitempty"` // 错误码, 非 0 表示失败 - Msg string `json:"msg,omitempty"` // 错误描述 - Data *BindMDMUserAuthDataRelationResp `json:"data,omitempty"` - Error *ErrorDetail `json:"error,omitempty"` +// createMDMUserAuthDataRelationBindResp ... +type createMDMUserAuthDataRelationBindResp struct { + Code int64 `json:"code,omitempty"` // 错误码, 非 0 表示失败 + Msg string `json:"msg,omitempty"` // 错误描述 + Data *CreateMDMUserAuthDataRelationBindResp `json:"data,omitempty"` + Error *ErrorDetail `json:"error,omitempty"` +} + +// Deprecated: use BindMDMUserAuthDataRelation. +type BindMDMUserAuthDataRelationReq = CreateMDMUserAuthDataRelationBindReq + +// Deprecated: use CreateMDMUserAuthDataRelationBindResp. +type BindMDMUserAuthDataRelationResp = CreateMDMUserAuthDataRelationBindResp + +// BindMDMUserAuthDataRelation 通过该接口, 可为指定应用下的用户绑定一类数据维度, 支持批量给多个用户同时增量授权。 +// +// Deprecated: use CreateMDMUserAuthDataRelationBind. +func (r *MDMService) BindMDMUserAuthDataRelation(ctx context.Context, request *BindMDMUserAuthDataRelationReq, options ...MethodOptionFunc) (*BindMDMUserAuthDataRelationResp, *Response, error) { + return r.CreateMDMUserAuthDataRelationBind(ctx, request, options...) +} + +// MockMDMBindMDMUserAuthDataRelation mock MDMBindMDMUserAuthDataRelation method +// +// Deprecated: use MockMDMCreateMDMUserAuthDataRelationBind. +func (r *Mock) MockMDMBindMDMUserAuthDataRelation(f func(ctx context.Context, request *BindMDMUserAuthDataRelationReq, options ...MethodOptionFunc) (*BindMDMUserAuthDataRelationResp, *Response, error)) { + r.MockMDMCreateMDMUserAuthDataRelationBind(func(ctx context.Context, request *CreateMDMUserAuthDataRelationBindReq, options ...MethodOptionFunc) (*CreateMDMUserAuthDataRelationBindResp, *Response, error) { + return f(ctx, request, options...) + }) +} + +// UnMockMDMBindMDMUserAuthDataRelation un-mock MDMBindMDMUserAuthDataRelation method +// +// Deprecated: use UnMockMDMCreateMDMUserAuthDataRelationBind. +func (r *Mock) UnMockMDMBindMDMUserAuthDataRelation() { + r.UnMockMDMCreateMDMUserAuthDataRelationBind() } diff --git a/api_mdm_user_auth_data_relation_unbind.go b/api_mdm_user_auth_data_relation_unbind.go index 2472caae..1658c3c8 100644 --- a/api_mdm_user_auth_data_relation_unbind.go +++ b/api_mdm_user_auth_data_relation_unbind.go @@ -21,57 +21,86 @@ import ( "context" ) -// UnbindMDMUserAuthDataRelation 通过该接口, 可为指定应用下的指定用户解除一类数据维度。 +// CreateMDMUserAuthDataRelationUnbind 通过该接口, 可为指定应用下的指定用户解除一类数据维度。 // -// doc: https://open.larkoffice.com/document/uAjLw4CM/ukTMukTMukTM/mdm-v1/user_auth_data_relation/unbind +// doc: https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/mdm-v1/user_auth_data_relation/unbind // new doc: https://open.feishu.cn/document/server-docs/mdm-v1/user_auth_data_relation/unbind -func (r *MDMService) UnbindMDMUserAuthDataRelation(ctx context.Context, request *UnbindMDMUserAuthDataRelationReq, options ...MethodOptionFunc) (*UnbindMDMUserAuthDataRelationResp, *Response, error) { - if r.cli.mock.mockMDMUnbindMDMUserAuthDataRelation != nil { - r.cli.Log(ctx, LogLevelDebug, "[lark] MDM#UnbindMDMUserAuthDataRelation mock enable") - return r.cli.mock.mockMDMUnbindMDMUserAuthDataRelation(ctx, request, options...) +func (r *MDMService) CreateMDMUserAuthDataRelationUnbind(ctx context.Context, request *CreateMDMUserAuthDataRelationUnbindReq, options ...MethodOptionFunc) (*CreateMDMUserAuthDataRelationUnbindResp, *Response, error) { + if r.cli.mock.mockMDMCreateMDMUserAuthDataRelationUnbind != nil { + r.cli.Log(ctx, LogLevelDebug, "[lark] MDM#CreateMDMUserAuthDataRelationUnbind mock enable") + return r.cli.mock.mockMDMCreateMDMUserAuthDataRelationUnbind(ctx, request, options...) } req := &RawRequestReq{ Scope: "MDM", - API: "UnbindMDMUserAuthDataRelation", + API: "CreateMDMUserAuthDataRelationUnbind", Method: "POST", URL: r.cli.openBaseURL + "/open-apis/mdm/v1/user_auth_data_relations/unbind", Body: request, MethodOption: newMethodOption(options), NeedTenantAccessToken: true, } - resp := new(unbindMDMUserAuthDataRelationResp) + resp := new(createMDMUserAuthDataRelationUnbindResp) response, err := r.cli.RawRequest(ctx, req, resp) return resp.Data, response, err } -// MockMDMUnbindMDMUserAuthDataRelation mock MDMUnbindMDMUserAuthDataRelation method -func (r *Mock) MockMDMUnbindMDMUserAuthDataRelation(f func(ctx context.Context, request *UnbindMDMUserAuthDataRelationReq, options ...MethodOptionFunc) (*UnbindMDMUserAuthDataRelationResp, *Response, error)) { - r.mockMDMUnbindMDMUserAuthDataRelation = f +// MockMDMCreateMDMUserAuthDataRelationUnbind mock MDMCreateMDMUserAuthDataRelationUnbind method +func (r *Mock) MockMDMCreateMDMUserAuthDataRelationUnbind(f func(ctx context.Context, request *CreateMDMUserAuthDataRelationUnbindReq, options ...MethodOptionFunc) (*CreateMDMUserAuthDataRelationUnbindResp, *Response, error)) { + r.mockMDMCreateMDMUserAuthDataRelationUnbind = f } -// UnMockMDMUnbindMDMUserAuthDataRelation un-mock MDMUnbindMDMUserAuthDataRelation method -func (r *Mock) UnMockMDMUnbindMDMUserAuthDataRelation() { - r.mockMDMUnbindMDMUserAuthDataRelation = nil +// UnMockMDMCreateMDMUserAuthDataRelationUnbind un-mock MDMCreateMDMUserAuthDataRelationUnbind method +func (r *Mock) UnMockMDMCreateMDMUserAuthDataRelationUnbind() { + r.mockMDMCreateMDMUserAuthDataRelationUnbind = nil } -// UnbindMDMUserAuthDataRelationReq ... -type UnbindMDMUserAuthDataRelationReq struct { - UserIDType *IDType `query:"user_id_type" json:"-"` // 用户 ID 类型, 示例值: open_id, 可选值有: open_id: 标识一个用户在某个应用中的身份。同一个用户在不同应用中的 Open ID 不同。[了解更多: 如何获取 Open ID](https://open.feishu.cn/document/uAjLw4CM/ugTN1YjL4UTN24CO1UjN/trouble-shooting/how-to-obtain-openid), union_id: 标识一个用户在某个应用开发商下的身份。同一用户在同一开发商下的应用中的 Union ID 是相同的, 在不同开发商下的应用中的 Union ID 是不同的。通过 Union ID, 应用开发商可以把同个用户在多个应用中的身份关联起来。[了解更多: 如何获取 Union ID?](https://open.feishu.cn/document/uAjLw4CM/ugTN1YjL4UTN24CO1UjN/trouble-shooting/how-to-obtain-union-id), user_id: 标识一个用户在某个租户内的身份。同一个用户在租户 A 和租户 B 内的 User ID 是不同的。在同一个租户内, 一个用户的 User ID 在所有应用(包括商店应用)中都保持一致。User ID 主要用于在不同的应用间打通用户数据。[了解更多: 如何获取 User ID?](https://open.feishu.cn/document/uAjLw4CM/ugTN1YjL4UTN24CO1UjN/trouble-shooting/how-to-obtain-user-id), 默认值: `open_id`, 当值为 `user_id`, 字段权限要求: 获取用户 user ID - RootDimensionType string `json:"root_dimension_type,omitempty"` // 数据类型编码, 示例值: "gongsi", 长度范围: `1` ~ `200` 字符 - SubDimensionTypes []string `json:"sub_dimension_types,omitempty"` // 数据编码列表, 示例值: ["zijie"], 长度范围: `1` ~ `200` - AuthorizedUserIDs []string `json:"authorized_user_ids,omitempty"` // 授权人的lark id, 示例值: ["on_21f2db9bdbafadeb16cd77b76060d41d"], 长度范围: `1` ~ `200` - UamsAppID string `json:"uams_app_id,omitempty"` // uams系统中应用id, 示例值: "uams-tenant-test", 长度范围: `1` ~ `200` 字符 +// CreateMDMUserAuthDataRelationUnbindReq ... +type CreateMDMUserAuthDataRelationUnbindReq struct { + UserIDType *IDType `query:"user_id_type" json:"-"` // 用户 ID 类型示例值: open_id可选值有: 标识一个用户在某个应用中的身份。同一个用户在不同应用中的 Open ID 不同。[了解更多: 如何获取 Open ID](https://open.feishu.cn/document/uAjLw4CM/ugTN1YjL4UTN24CO1UjN/trouble-shooting/how-to-obtain-openid)标识一个用户在某个应用开发商下的身份。同一用户在同一开发商下的应用中的 Union ID 是相同的, 在不同开发商下的应用中的 Union ID 是不同的。通过 Union ID, 应用开发商可以把同个用户在多个应用中的身份关联起来。[了解更多: 如何获取 Union ID?](https://open.feishu.cn/document/uAjLw4CM/ugTN1YjL4UTN24CO1UjN/trouble-shooting/how-to-obtain-union-id)标识一个用户在某个租户内的身份。同一个用户在租户 A 和租户 B 内的 User ID 是不同的。在同一个租户内, 一个用户的 User ID 在所有应用(包括商店应用)中都保持一致。User ID 主要用于在不同的应用间打通用户数据。[了解更多: 如何获取 User ID?](https://open.feishu.cn/document/uAjLw4CM/ugTN1YjL4UTN24CO1UjN/trouble-shooting/how-to-obtain-user-id)默认值: `open_id`当值为 `user_id`, 字段权限要求: 获取用户 user ID + RootDimensionType string `json:"root_dimension_type,omitempty"` // 数据类型编码示例值: "gongsi" 长度范围: `1` ~ `200` 字符 + SubDimensionTypes []string `json:"sub_dimension_types,omitempty"` // 数据编码列表示例值: ["zijie"] 长度范围: `1` ~ `200` + AuthorizedUserIDs []string `json:"authorized_user_ids,omitempty"` // 授权人的lark id示例值: ["on_21f2db9bdbafadeb16cd77b76060d41d"] 长度范围: `1` ~ `200` + UamsAppID string `json:"uams_app_id,omitempty"` // uams系统中应用id示例值: "uams-tenant-test" 长度范围: `1` ~ `200` 字符 } -// UnbindMDMUserAuthDataRelationResp ... -type UnbindMDMUserAuthDataRelationResp struct{} +// CreateMDMUserAuthDataRelationUnbindResp ... +type CreateMDMUserAuthDataRelationUnbindResp struct{} -// unbindMDMUserAuthDataRelationResp ... -type unbindMDMUserAuthDataRelationResp struct { - Code int64 `json:"code,omitempty"` // 错误码, 非 0 表示失败 - Msg string `json:"msg,omitempty"` // 错误描述 - Data *UnbindMDMUserAuthDataRelationResp `json:"data,omitempty"` - Error *ErrorDetail `json:"error,omitempty"` +// createMDMUserAuthDataRelationUnbindResp ... +type createMDMUserAuthDataRelationUnbindResp struct { + Code int64 `json:"code,omitempty"` // 错误码, 非 0 表示失败 + Msg string `json:"msg,omitempty"` // 错误描述 + Data *CreateMDMUserAuthDataRelationUnbindResp `json:"data,omitempty"` + Error *ErrorDetail `json:"error,omitempty"` +} + +// Deprecated: use UnbindMDMUserAuthDataRelation. +type UnbindMDMUserAuthDataRelationReq = CreateMDMUserAuthDataRelationUnbindReq + +// Deprecated: use CreateMDMUserAuthDataRelationUnbindResp. +type UnbindMDMUserAuthDataRelationResp = CreateMDMUserAuthDataRelationUnbindResp + +// UnbindMDMUserAuthDataRelation 通过该接口, 可为指定应用下的指定用户解除一类数据维度。 +// +// Deprecated: use CreateMDMUserAuthDataRelationUnbind. +func (r *MDMService) UnbindMDMUserAuthDataRelation(ctx context.Context, request *UnbindMDMUserAuthDataRelationReq, options ...MethodOptionFunc) (*UnbindMDMUserAuthDataRelationResp, *Response, error) { + return r.CreateMDMUserAuthDataRelationUnbind(ctx, request, options...) +} + +// MockMDMUnbindMDMUserAuthDataRelation mock MDMUnbindMDMUserAuthDataRelation method +// +// Deprecated: use MockMDMCreateMDMUserAuthDataRelationUnbind. +func (r *Mock) MockMDMUnbindMDMUserAuthDataRelation(f func(ctx context.Context, request *UnbindMDMUserAuthDataRelationReq, options ...MethodOptionFunc) (*UnbindMDMUserAuthDataRelationResp, *Response, error)) { + r.MockMDMCreateMDMUserAuthDataRelationUnbind(func(ctx context.Context, request *CreateMDMUserAuthDataRelationUnbindReq, options ...MethodOptionFunc) (*CreateMDMUserAuthDataRelationUnbindResp, *Response, error) { + return f(ctx, request, options...) + }) +} + +// UnMockMDMUnbindMDMUserAuthDataRelation un-mock MDMUnbindMDMUserAuthDataRelation method +// +// Deprecated: use UnMockMDMCreateMDMUserAuthDataRelationUnbind. +func (r *Mock) UnMockMDMUnbindMDMUserAuthDataRelation() { + r.UnMockMDMCreateMDMUserAuthDataRelationUnbind() } diff --git a/impl.go b/impl.go index b151a1d7..0b9154d5 100644 --- a/impl.go +++ b/impl.go @@ -65,6 +65,7 @@ type Lark struct { Bitable *BitableService Bot *BotService Calendar *CalendarService + CcmSheet *CcmSheetService Chat *ChatService Contact *ContactService CoreHR *CoreHRService @@ -76,6 +77,7 @@ type Lark struct { Helpdesk *HelpdeskService Hire *HireService HumanAuth *HumanAuthService + IM *IMService Jssdk *JssdkService Lingo *LingoService MDM *MDMService @@ -124,6 +126,7 @@ func (r *Lark) init() { r.Bitable = &BitableService{cli: r} r.Bot = &BotService{cli: r} r.Calendar = &CalendarService{cli: r} + r.CcmSheet = &CcmSheetService{cli: r} r.Chat = &ChatService{cli: r} r.Contact = &ContactService{cli: r} r.CoreHR = &CoreHRService{cli: r} @@ -135,6 +138,7 @@ func (r *Lark) init() { r.Helpdesk = &HelpdeskService{cli: r} r.Hire = &HireService{cli: r} r.HumanAuth = &HumanAuthService{cli: r} + r.IM = &IMService{cli: r} r.Jssdk = &JssdkService{cli: r} r.Lingo = &LingoService{cli: r} r.MDM = &MDMService{cli: r} @@ -201,6 +205,7 @@ type ( BitableService struct{ cli *Lark } BotService struct{ cli *Lark } CalendarService struct{ cli *Lark } + CcmSheetService struct{ cli *Lark } ChatService struct{ cli *Lark } ContactService struct{ cli *Lark } CoreHRService struct{ cli *Lark } @@ -212,6 +217,7 @@ type ( HelpdeskService struct{ cli *Lark } HireService struct{ cli *Lark } HumanAuthService struct{ cli *Lark } + IMService struct{ cli *Lark } JssdkService struct{ cli *Lark } LingoService struct{ cli *Lark } MDMService struct{ cli *Lark } diff --git a/mock.go b/mock.go index bf599101..81dd3dbc 100644 --- a/mock.go +++ b/mock.go @@ -23,1106 +23,1108 @@ import ( // Mock mock struct type Mock struct { - mockRawRequest func(ctx context.Context, req *RawRequestReq, resp interface{}) (response *Response, err error) - mockGetTenantAccessToken func(ctx context.Context) (*TokenExpire, *Response, error) - mockGetAppAccessToken func(ctx context.Context) (*TokenExpire, *Response, error) - mockACSCreateACSRuleExternal func(ctx context.Context, request *CreateACSRuleExternalReq, options ...MethodOptionFunc) (*CreateACSRuleExternalResp, *Response, error) - mockACSCreateACSVisitor func(ctx context.Context, request *CreateACSVisitorReq, options ...MethodOptionFunc) (*CreateACSVisitorResp, *Response, error) - mockACSDeleteACSRuleExternal func(ctx context.Context, request *DeleteACSRuleExternalReq, options ...MethodOptionFunc) (*DeleteACSRuleExternalResp, *Response, error) - mockACSDeleteACSVisitor func(ctx context.Context, request *DeleteACSVisitorReq, options ...MethodOptionFunc) (*DeleteACSVisitorResp, *Response, error) - mockACSDeviceBindACSRuleExternal func(ctx context.Context, request *DeviceBindACSRuleExternalReq, options ...MethodOptionFunc) (*DeviceBindACSRuleExternalResp, *Response, error) - mockACSGetACSAccessRecordList func(ctx context.Context, request *GetACSAccessRecordListReq, options ...MethodOptionFunc) (*GetACSAccessRecordListResp, *Response, error) - mockACSGetACSAccessRecordPhoto func(ctx context.Context, request *GetACSAccessRecordPhotoReq, options ...MethodOptionFunc) (*GetACSAccessRecordPhotoResp, *Response, error) - mockACSGetACSDeviceList func(ctx context.Context, request *GetACSDeviceListReq, options ...MethodOptionFunc) (*GetACSDeviceListResp, *Response, error) - mockACSGetACSRuleExternal func(ctx context.Context, request *GetACSRuleExternalReq, options ...MethodOptionFunc) (*GetACSRuleExternalResp, *Response, error) - mockACSGetACSUser func(ctx context.Context, request *GetACSUserReq, options ...MethodOptionFunc) (*GetACSUserResp, *Response, error) - mockACSGetACSUserFace func(ctx context.Context, request *GetACSUserFaceReq, options ...MethodOptionFunc) (*GetACSUserFaceResp, *Response, error) - mockACSGetACSUserList func(ctx context.Context, request *GetACSUserListReq, options ...MethodOptionFunc) (*GetACSUserListResp, *Response, error) - mockACSUpdateACSUser func(ctx context.Context, request *UpdateACSUserReq, options ...MethodOptionFunc) (*UpdateACSUserResp, *Response, error) - mockACSUpdateACSUserFace func(ctx context.Context, request *UpdateACSUserFaceReq, options ...MethodOptionFunc) (*UpdateACSUserFaceResp, *Response, error) - mockAIDetectFaceAttributes func(ctx context.Context, request *DetectFaceAttributesReq, options ...MethodOptionFunc) (*DetectFaceAttributesResp, *Response, error) - mockAIDetectTextLanguage func(ctx context.Context, request *DetectTextLanguageReq, options ...MethodOptionFunc) (*DetectTextLanguageResp, *Response, error) - mockAIExtractAIContractField func(ctx context.Context, request *ExtractAIContractFieldReq, options ...MethodOptionFunc) (*ExtractAIContractFieldResp, *Response, error) - mockAIParseAIResume func(ctx context.Context, request *ParseAIResumeReq, options ...MethodOptionFunc) (*ParseAIResumeResp, *Response, error) - mockAIRecognizeAIBankCard func(ctx context.Context, request *RecognizeAIBankCardReq, options ...MethodOptionFunc) (*RecognizeAIBankCardResp, *Response, error) - mockAIRecognizeAIBusinessCard func(ctx context.Context, request *RecognizeAIBusinessCardReq, options ...MethodOptionFunc) (*RecognizeAIBusinessCardResp, *Response, error) - mockAIRecognizeAIBusinessLicense func(ctx context.Context, request *RecognizeAIBusinessLicenseReq, options ...MethodOptionFunc) (*RecognizeAIBusinessLicenseResp, *Response, error) - mockAIRecognizeAIChinesePassport func(ctx context.Context, request *RecognizeAIChinesePassportReq, options ...MethodOptionFunc) (*RecognizeAIChinesePassportResp, *Response, error) - mockAIRecognizeAIDrivingLicense func(ctx context.Context, request *RecognizeAIDrivingLicenseReq, options ...MethodOptionFunc) (*RecognizeAIDrivingLicenseResp, *Response, error) - mockAIRecognizeAIFoodManageLicense func(ctx context.Context, request *RecognizeAIFoodManageLicenseReq, options ...MethodOptionFunc) (*RecognizeAIFoodManageLicenseResp, *Response, error) - mockAIRecognizeAIFoodProduceLicense func(ctx context.Context, request *RecognizeAIFoodProduceLicenseReq, options ...MethodOptionFunc) (*RecognizeAIFoodProduceLicenseResp, *Response, error) - mockAIRecognizeAIHealthCertificate func(ctx context.Context, request *RecognizeAIHealthCertificateReq, options ...MethodOptionFunc) (*RecognizeAIHealthCertificateResp, *Response, error) - mockAIRecognizeAIHkmMainlandTravelPermit func(ctx context.Context, request *RecognizeAIHkmMainlandTravelPermitReq, options ...MethodOptionFunc) (*RecognizeAIHkmMainlandTravelPermitResp, *Response, error) - mockAIRecognizeAITaxiInvoice func(ctx context.Context, request *RecognizeAITaxiInvoiceReq, options ...MethodOptionFunc) (*RecognizeAITaxiInvoiceResp, *Response, error) - mockAIRecognizeAITrainInvoice func(ctx context.Context, request *RecognizeAITrainInvoiceReq, options ...MethodOptionFunc) (*RecognizeAITrainInvoiceResp, *Response, error) - mockAIRecognizeAITwMainlandTravelPermit func(ctx context.Context, request *RecognizeAITwMainlandTravelPermitReq, options ...MethodOptionFunc) (*RecognizeAITwMainlandTravelPermitResp, *Response, error) - mockAIRecognizeAIVatInvoice func(ctx context.Context, request *RecognizeAIVatInvoiceReq, options ...MethodOptionFunc) (*RecognizeAIVatInvoiceResp, *Response, error) - mockAIRecognizeAIVehicleInvoice func(ctx context.Context, request *RecognizeAIVehicleInvoiceReq, options ...MethodOptionFunc) (*RecognizeAIVehicleInvoiceResp, *Response, error) - mockAIRecognizeAIVehicleLicense func(ctx context.Context, request *RecognizeAIVehicleLicenseReq, options ...MethodOptionFunc) (*RecognizeAIVehicleLicenseResp, *Response, error) - mockAIRecognizeAiidCard func(ctx context.Context, request *RecognizeAiidCardReq, options ...MethodOptionFunc) (*RecognizeAiidCardResp, *Response, error) - mockAIRecognizeBasicImage func(ctx context.Context, request *RecognizeBasicImageReq, options ...MethodOptionFunc) (*RecognizeBasicImageResp, *Response, error) - mockAIRecognizeSpeechFile func(ctx context.Context, request *RecognizeSpeechFileReq, options ...MethodOptionFunc) (*RecognizeSpeechFileResp, *Response, error) - mockAIRecognizeSpeechStream func(ctx context.Context, request *RecognizeSpeechStreamReq, options ...MethodOptionFunc) (*RecognizeSpeechStreamResp, *Response, error) - mockAITranslateText func(ctx context.Context, request *TranslateTextReq, options ...MethodOptionFunc) (*TranslateTextResp, *Response, error) - mockAPaaSAddAPaaSApprovalTaskAssignee func(ctx context.Context, request *AddAPaaSApprovalTaskAssigneeReq, options ...MethodOptionFunc) (*AddAPaaSApprovalTaskAssigneeResp, *Response, error) - mockAPaaSAgreeAPaaSApprovalTask func(ctx context.Context, request *AgreeAPaaSApprovalTaskReq, options ...MethodOptionFunc) (*AgreeAPaaSApprovalTaskResp, *Response, error) - mockAPaaSRejectAPaaSApprovalTask func(ctx context.Context, request *RejectAPaaSApprovalTaskReq, options ...MethodOptionFunc) (*RejectAPaaSApprovalTaskResp, *Response, error) - mockAPaaSTransferAPaaSApprovalTask func(ctx context.Context, request *TransferAPaaSApprovalTaskReq, options ...MethodOptionFunc) (*TransferAPaaSApprovalTaskResp, *Response, error) - mockAdminAdminResetPassword func(ctx context.Context, request *AdminResetPasswordReq, options ...MethodOptionFunc) (*AdminResetPasswordResp, *Response, error) - mockAdminCreateAdminBadge func(ctx context.Context, request *CreateAdminBadgeReq, options ...MethodOptionFunc) (*CreateAdminBadgeResp, *Response, error) - mockAdminCreateAdminBadgeGrant func(ctx context.Context, request *CreateAdminBadgeGrantReq, options ...MethodOptionFunc) (*CreateAdminBadgeGrantResp, *Response, error) - mockAdminDeleteAdminBadgeGrant func(ctx context.Context, request *DeleteAdminBadgeGrantReq, options ...MethodOptionFunc) (*DeleteAdminBadgeGrantResp, *Response, error) - mockAdminGetAdminBadge func(ctx context.Context, request *GetAdminBadgeReq, options ...MethodOptionFunc) (*GetAdminBadgeResp, *Response, error) - mockAdminGetAdminBadgeGrant func(ctx context.Context, request *GetAdminBadgeGrantReq, options ...MethodOptionFunc) (*GetAdminBadgeGrantResp, *Response, error) - mockAdminGetAdminBadgeGrantList func(ctx context.Context, request *GetAdminBadgeGrantListReq, options ...MethodOptionFunc) (*GetAdminBadgeGrantListResp, *Response, error) - mockAdminGetAdminBadgeList func(ctx context.Context, request *GetAdminBadgeListReq, options ...MethodOptionFunc) (*GetAdminBadgeListResp, *Response, error) - mockAdminGetAdminDeptStats func(ctx context.Context, request *GetAdminDeptStatsReq, options ...MethodOptionFunc) (*GetAdminDeptStatsResp, *Response, error) - mockAdminGetAdminUserStats func(ctx context.Context, request *GetAdminUserStatsReq, options ...MethodOptionFunc) (*GetAdminUserStatsResp, *Response, error) - mockAdminUpdateAdminBadge func(ctx context.Context, request *UpdateAdminBadgeReq, options ...MethodOptionFunc) (*UpdateAdminBadgeResp, *Response, error) - mockAdminUpdateAdminBadgeGrant func(ctx context.Context, request *UpdateAdminBadgeGrantReq, options ...MethodOptionFunc) (*UpdateAdminBadgeGrantResp, *Response, error) - mockAdminUploadAdminBadgeImage func(ctx context.Context, request *UploadAdminBadgeImageReq, options ...MethodOptionFunc) (*UploadAdminBadgeImageResp, *Response, error) - mockApplicationCheckApplicationVisibleWhiteBlackList func(ctx context.Context, request *CheckApplicationVisibleWhiteBlackListReq, options ...MethodOptionFunc) (*CheckApplicationVisibleWhiteBlackListResp, *Response, error) - mockApplicationCheckUserIsInApplicationPaidScope func(ctx context.Context, request *CheckUserIsInApplicationPaidScopeReq, options ...MethodOptionFunc) (*CheckUserIsInApplicationPaidScopeResp, *Response, error) - mockApplicationGetApplication func(ctx context.Context, request *GetApplicationReq, options ...MethodOptionFunc) (*GetApplicationResp, *Response, error) - mockApplicationGetApplicationAppAdminUserList func(ctx context.Context, request *GetApplicationAppAdminUserListReq, options ...MethodOptionFunc) (*GetApplicationAppAdminUserListResp, *Response, error) - mockApplicationGetApplicationAppList func(ctx context.Context, request *GetApplicationAppListReq, options ...MethodOptionFunc) (*GetApplicationAppListResp, *Response, error) - mockApplicationGetApplicationAppVisibility func(ctx context.Context, request *GetApplicationAppVisibilityReq, options ...MethodOptionFunc) (*GetApplicationAppVisibilityResp, *Response, error) - mockApplicationGetApplicationContactsRangeConfiguration func(ctx context.Context, request *GetApplicationContactsRangeConfigurationReq, options ...MethodOptionFunc) (*GetApplicationContactsRangeConfigurationResp, *Response, error) - mockApplicationGetApplicationFavourite func(ctx context.Context, request *GetApplicationFavouriteReq, options ...MethodOptionFunc) (*GetApplicationFavouriteResp, *Response, error) - mockApplicationGetApplicationFeedbackList func(ctx context.Context, request *GetApplicationFeedbackListReq, options ...MethodOptionFunc) (*GetApplicationFeedbackListResp, *Response, error) - mockApplicationGetApplicationOrder func(ctx context.Context, request *GetApplicationOrderReq, options ...MethodOptionFunc) (*GetApplicationOrderResp, *Response, error) - mockApplicationGetApplicationOrderList func(ctx context.Context, request *GetApplicationOrderListReq, options ...MethodOptionFunc) (*GetApplicationOrderListResp, *Response, error) - mockApplicationGetApplicationRecommend func(ctx context.Context, request *GetApplicationRecommendReq, options ...MethodOptionFunc) (*GetApplicationRecommendResp, *Response, error) - mockApplicationGetApplicationRecommendRuleList func(ctx context.Context, request *GetApplicationRecommendRuleListReq, options ...MethodOptionFunc) (*GetApplicationRecommendRuleListResp, *Response, error) - mockApplicationGetApplicationUnderAuditList func(ctx context.Context, request *GetApplicationUnderAuditListReq, options ...MethodOptionFunc) (*GetApplicationUnderAuditListResp, *Response, error) - mockApplicationGetApplicationUsageDepartmentOverview func(ctx context.Context, request *GetApplicationUsageDepartmentOverviewReq, options ...MethodOptionFunc) (*GetApplicationUsageDepartmentOverviewResp, *Response, error) - mockApplicationGetApplicationUsageOverview func(ctx context.Context, request *GetApplicationUsageOverviewReq, options ...MethodOptionFunc) (*GetApplicationUsageOverviewResp, *Response, error) - mockApplicationGetApplicationUsageTrend func(ctx context.Context, request *GetApplicationUsageTrendReq, options ...MethodOptionFunc) (*GetApplicationUsageTrendResp, *Response, error) - mockApplicationGetApplicationUserAdminScope func(ctx context.Context, request *GetApplicationUserAdminScopeReq, options ...MethodOptionFunc) (*GetApplicationUserAdminScopeResp, *Response, error) - mockApplicationGetApplicationUserVisibleApp func(ctx context.Context, request *GetApplicationUserVisibleAppReq, options ...MethodOptionFunc) (*GetApplicationUserVisibleAppResp, *Response, error) - mockApplicationGetApplicationVersion func(ctx context.Context, request *GetApplicationVersionReq, options ...MethodOptionFunc) (*GetApplicationVersionResp, *Response, error) - mockApplicationGetApplicationVersionContactsRangeSuggest func(ctx context.Context, request *GetApplicationVersionContactsRangeSuggestReq, options ...MethodOptionFunc) (*GetApplicationVersionContactsRangeSuggestResp, *Response, error) - mockApplicationGetApplicationVersionList func(ctx context.Context, request *GetApplicationVersionListReq, options ...MethodOptionFunc) (*GetApplicationVersionListResp, *Response, error) - mockApplicationIsApplicationUserAdmin func(ctx context.Context, request *IsApplicationUserAdminReq, options ...MethodOptionFunc) (*IsApplicationUserAdminResp, *Response, error) - mockApplicationSearchApplicationCustomWorkplaceAccessData func(ctx context.Context, request *SearchApplicationCustomWorkplaceAccessDataReq, options ...MethodOptionFunc) (*SearchApplicationCustomWorkplaceAccessDataResp, *Response, error) - mockApplicationSearchApplicationWorkplaceAccessData func(ctx context.Context, request *SearchApplicationWorkplaceAccessDataReq, options ...MethodOptionFunc) (*SearchApplicationWorkplaceAccessDataResp, *Response, error) - mockApplicationSearchApplicationWorkplaceBlockAccessData func(ctx context.Context, request *SearchApplicationWorkplaceBlockAccessDataReq, options ...MethodOptionFunc) (*SearchApplicationWorkplaceBlockAccessDataResp, *Response, error) - mockApplicationSetApplicationAppBadge func(ctx context.Context, request *SetApplicationAppBadgeReq, options ...MethodOptionFunc) (*SetApplicationAppBadgeResp, *Response, error) - mockApplicationUpdateApplication func(ctx context.Context, request *UpdateApplicationReq, options ...MethodOptionFunc) (*UpdateApplicationResp, *Response, error) - mockApplicationUpdateApplicationAppManagement func(ctx context.Context, request *UpdateApplicationAppManagementReq, options ...MethodOptionFunc) (*UpdateApplicationAppManagementResp, *Response, error) - mockApplicationUpdateApplicationAppVisibility func(ctx context.Context, request *UpdateApplicationAppVisibilityReq, options ...MethodOptionFunc) (*UpdateApplicationAppVisibilityResp, *Response, error) - mockApplicationUpdateApplicationAppVisibilityV6 func(ctx context.Context, request *UpdateApplicationAppVisibilityV6Req, options ...MethodOptionFunc) (*UpdateApplicationAppVisibilityV6Resp, *Response, error) - mockApplicationUpdateApplicationContactsRangeConfiguration func(ctx context.Context, request *UpdateApplicationContactsRangeConfigurationReq, options ...MethodOptionFunc) (*UpdateApplicationContactsRangeConfigurationResp, *Response, error) - mockApplicationUpdateApplicationFeedback func(ctx context.Context, request *UpdateApplicationFeedbackReq, options ...MethodOptionFunc) (*UpdateApplicationFeedbackResp, *Response, error) - mockApplicationUpdateApplicationVersion func(ctx context.Context, request *UpdateApplicationVersionReq, options ...MethodOptionFunc) (*UpdateApplicationVersionResp, *Response, error) - mockApprovalAddApprovalInstanceSign func(ctx context.Context, request *AddApprovalInstanceSignReq, options ...MethodOptionFunc) (*AddApprovalInstanceSignResp, *Response, error) - mockApprovalApproveApprovalInstance func(ctx context.Context, request *ApproveApprovalInstanceReq, options ...MethodOptionFunc) (*ApproveApprovalInstanceResp, *Response, error) - mockApprovalCancelApprovalInstance func(ctx context.Context, request *CancelApprovalInstanceReq, options ...MethodOptionFunc) (*CancelApprovalInstanceResp, *Response, error) - mockApprovalCheckApprovalExternalInstance func(ctx context.Context, request *CheckApprovalExternalInstanceReq, options ...MethodOptionFunc) (*CheckApprovalExternalInstanceResp, *Response, error) - mockApprovalCreateApproval func(ctx context.Context, request *CreateApprovalReq, options ...MethodOptionFunc) (*CreateApprovalResp, *Response, error) - mockApprovalCreateApprovalCarbonCopy func(ctx context.Context, request *CreateApprovalCarbonCopyReq, options ...MethodOptionFunc) (*CreateApprovalCarbonCopyResp, *Response, error) - mockApprovalCreateApprovalComment func(ctx context.Context, request *CreateApprovalCommentReq, options ...MethodOptionFunc) (*CreateApprovalCommentResp, *Response, error) - mockApprovalCreateApprovalExternalApproval func(ctx context.Context, request *CreateApprovalExternalApprovalReq, options ...MethodOptionFunc) (*CreateApprovalExternalApprovalResp, *Response, error) - mockApprovalCreateApprovalExternalInstance func(ctx context.Context, request *CreateApprovalExternalInstanceReq, options ...MethodOptionFunc) (*CreateApprovalExternalInstanceResp, *Response, error) - mockApprovalCreateApprovalInstance func(ctx context.Context, request *CreateApprovalInstanceReq, options ...MethodOptionFunc) (*CreateApprovalInstanceResp, *Response, error) - mockApprovalDeleteApprovalComment func(ctx context.Context, request *DeleteApprovalCommentReq, options ...MethodOptionFunc) (*DeleteApprovalCommentResp, *Response, error) - mockApprovalGetApproval func(ctx context.Context, request *GetApprovalReq, options ...MethodOptionFunc) (*GetApprovalResp, *Response, error) - mockApprovalGetApprovalComment func(ctx context.Context, request *GetApprovalCommentReq, options ...MethodOptionFunc) (*GetApprovalCommentResp, *Response, error) - mockApprovalGetApprovalExternalApproval func(ctx context.Context, request *GetApprovalExternalApprovalReq, options ...MethodOptionFunc) (*GetApprovalExternalApprovalResp, *Response, error) - mockApprovalGetApprovalExternalList func(ctx context.Context, request *GetApprovalExternalListReq, options ...MethodOptionFunc) (*GetApprovalExternalListResp, *Response, error) - mockApprovalGetApprovalInstance func(ctx context.Context, request *GetApprovalInstanceReq, options ...MethodOptionFunc) (*GetApprovalInstanceResp, *Response, error) - mockApprovalGetApprovalInstanceList func(ctx context.Context, request *GetApprovalInstanceListReq, options ...MethodOptionFunc) (*GetApprovalInstanceListResp, *Response, error) - mockApprovalGetApprovalList func(ctx context.Context, request *GetApprovalListReq, options ...MethodOptionFunc) (*GetApprovalListResp, *Response, error) - mockApprovalGetApprovalUserTaskList func(ctx context.Context, request *GetApprovalUserTaskListReq, options ...MethodOptionFunc) (*GetApprovalUserTaskListResp, *Response, error) - mockApprovalPreviewApprovalInstance func(ctx context.Context, request *PreviewApprovalInstanceReq, options ...MethodOptionFunc) (*PreviewApprovalInstanceResp, *Response, error) - mockApprovalRejectApprovalInstance func(ctx context.Context, request *RejectApprovalInstanceReq, options ...MethodOptionFunc) (*RejectApprovalInstanceResp, *Response, error) - mockApprovalRemoveApprovalComment func(ctx context.Context, request *RemoveApprovalCommentReq, options ...MethodOptionFunc) (*RemoveApprovalCommentResp, *Response, error) - mockApprovalResubmitApprovalInstanceTask func(ctx context.Context, request *ResubmitApprovalInstanceTaskReq, options ...MethodOptionFunc) (*ResubmitApprovalInstanceTaskResp, *Response, error) - mockApprovalRollbackApprovalInstance func(ctx context.Context, request *RollbackApprovalInstanceReq, options ...MethodOptionFunc) (*RollbackApprovalInstanceResp, *Response, error) - mockApprovalSearchApprovalCarbonCopy func(ctx context.Context, request *SearchApprovalCarbonCopyReq, options ...MethodOptionFunc) (*SearchApprovalCarbonCopyResp, *Response, error) - mockApprovalSearchApprovalInstance func(ctx context.Context, request *SearchApprovalInstanceReq, options ...MethodOptionFunc) (*SearchApprovalInstanceResp, *Response, error) - mockApprovalSearchApprovalTask func(ctx context.Context, request *SearchApprovalTaskReq, options ...MethodOptionFunc) (*SearchApprovalTaskResp, *Response, error) - mockApprovalSendApprovalMessage func(ctx context.Context, request *SendApprovalMessageReq, options ...MethodOptionFunc) (*SendApprovalMessageResp, *Response, error) - mockApprovalSubscribeApprovalSubscription func(ctx context.Context, request *SubscribeApprovalSubscriptionReq, options ...MethodOptionFunc) (*SubscribeApprovalSubscriptionResp, *Response, error) - mockApprovalTransferApprovalInstance func(ctx context.Context, request *TransferApprovalInstanceReq, options ...MethodOptionFunc) (*TransferApprovalInstanceResp, *Response, error) - mockApprovalTransformApprovalUserID func(ctx context.Context, request *TransformApprovalUserIDReq, options ...MethodOptionFunc) (*TransformApprovalUserIDResp, *Response, error) - mockApprovalUnsubscribeApprovalSubscription func(ctx context.Context, request *UnsubscribeApprovalSubscriptionReq, options ...MethodOptionFunc) (*UnsubscribeApprovalSubscriptionResp, *Response, error) - mockApprovalUpdateApprovalMessage func(ctx context.Context, request *UpdateApprovalMessageReq, options ...MethodOptionFunc) (*UpdateApprovalMessageResp, *Response, error) - mockApprovalUploadApprovalFile func(ctx context.Context, request *UploadApprovalFileReq, options ...MethodOptionFunc) (*UploadApprovalFileResp, *Response, error) - mockAttendanceBatchCreateAttendanceUserDailyShift func(ctx context.Context, request *BatchCreateAttendanceUserDailyShiftReq, options ...MethodOptionFunc) (*BatchCreateAttendanceUserDailyShiftResp, *Response, error) - mockAttendanceBatchCreateAttendanceUserFlow func(ctx context.Context, request *BatchCreateAttendanceUserFlowReq, options ...MethodOptionFunc) (*BatchCreateAttendanceUserFlowResp, *Response, error) - mockAttendanceBatchGetAttendanceUserFlow func(ctx context.Context, request *BatchGetAttendanceUserFlowReq, options ...MethodOptionFunc) (*BatchGetAttendanceUserFlowResp, *Response, error) - mockAttendanceCreateAttendanceGroup func(ctx context.Context, request *CreateAttendanceGroupReq, options ...MethodOptionFunc) (*CreateAttendanceGroupResp, *Response, error) - mockAttendanceCreateAttendanceShift func(ctx context.Context, request *CreateAttendanceShiftReq, options ...MethodOptionFunc) (*CreateAttendanceShiftResp, *Response, error) - mockAttendanceCreateAttendanceUserApproval func(ctx context.Context, request *CreateAttendanceUserApprovalReq, options ...MethodOptionFunc) (*CreateAttendanceUserApprovalResp, *Response, error) - mockAttendanceCreateAttendanceUserTaskRemedy func(ctx context.Context, request *CreateAttendanceUserTaskRemedyReq, options ...MethodOptionFunc) (*CreateAttendanceUserTaskRemedyResp, *Response, error) - mockAttendanceDeleteAttendanceGroup func(ctx context.Context, request *DeleteAttendanceGroupReq, options ...MethodOptionFunc) (*DeleteAttendanceGroupResp, *Response, error) - mockAttendanceDeleteAttendanceShift func(ctx context.Context, request *DeleteAttendanceShiftReq, options ...MethodOptionFunc) (*DeleteAttendanceShiftResp, *Response, error) - mockAttendanceDownloadAttendanceFile func(ctx context.Context, request *DownloadAttendanceFileReq, options ...MethodOptionFunc) (*DownloadAttendanceFileResp, *Response, error) - mockAttendanceGetAttendanceGroup func(ctx context.Context, request *GetAttendanceGroupReq, options ...MethodOptionFunc) (*GetAttendanceGroupResp, *Response, error) - mockAttendanceGetAttendanceGroupList func(ctx context.Context, request *GetAttendanceGroupListReq, options ...MethodOptionFunc) (*GetAttendanceGroupListResp, *Response, error) - mockAttendanceGetAttendanceLeaveEmployExpireRecord func(ctx context.Context, request *GetAttendanceLeaveEmployExpireRecordReq, options ...MethodOptionFunc) (*GetAttendanceLeaveEmployExpireRecordResp, *Response, error) - mockAttendanceGetAttendanceShift func(ctx context.Context, request *GetAttendanceShiftReq, options ...MethodOptionFunc) (*GetAttendanceShiftResp, *Response, error) - mockAttendanceGetAttendanceShiftDetail func(ctx context.Context, request *GetAttendanceShiftDetailReq, options ...MethodOptionFunc) (*GetAttendanceShiftDetailResp, *Response, error) - mockAttendanceGetAttendanceShiftList func(ctx context.Context, request *GetAttendanceShiftListReq, options ...MethodOptionFunc) (*GetAttendanceShiftListResp, *Response, error) - mockAttendanceGetAttendanceUserApproval func(ctx context.Context, request *GetAttendanceUserApprovalReq, options ...MethodOptionFunc) (*GetAttendanceUserApprovalResp, *Response, error) - mockAttendanceGetAttendanceUserDailyShift func(ctx context.Context, request *GetAttendanceUserDailyShiftReq, options ...MethodOptionFunc) (*GetAttendanceUserDailyShiftResp, *Response, error) - mockAttendanceGetAttendanceUserFlow func(ctx context.Context, request *GetAttendanceUserFlowReq, options ...MethodOptionFunc) (*GetAttendanceUserFlowResp, *Response, error) - mockAttendanceGetAttendanceUserSettingList func(ctx context.Context, request *GetAttendanceUserSettingListReq, options ...MethodOptionFunc) (*GetAttendanceUserSettingListResp, *Response, error) - mockAttendanceGetAttendanceUserStatsData func(ctx context.Context, request *GetAttendanceUserStatsDataReq, options ...MethodOptionFunc) (*GetAttendanceUserStatsDataResp, *Response, error) - mockAttendanceGetAttendanceUserStatsField func(ctx context.Context, request *GetAttendanceUserStatsFieldReq, options ...MethodOptionFunc) (*GetAttendanceUserStatsFieldResp, *Response, error) - mockAttendanceGetAttendanceUserStatsView func(ctx context.Context, request *GetAttendanceUserStatsViewReq, options ...MethodOptionFunc) (*GetAttendanceUserStatsViewResp, *Response, error) - mockAttendanceGetAttendanceUserTask func(ctx context.Context, request *GetAttendanceUserTaskReq, options ...MethodOptionFunc) (*GetAttendanceUserTaskResp, *Response, error) - mockAttendanceGetAttendanceUserTaskRemedy func(ctx context.Context, request *GetAttendanceUserTaskRemedyReq, options ...MethodOptionFunc) (*GetAttendanceUserTaskRemedyResp, *Response, error) - mockAttendanceGetAttendanceUserTaskRemedyAllowedRemedyList func(ctx context.Context, request *GetAttendanceUserTaskRemedyAllowedRemedyListReq, options ...MethodOptionFunc) (*GetAttendanceUserTaskRemedyAllowedRemedyListResp, *Response, error) - mockAttendanceSearchAttendanceGroup func(ctx context.Context, request *SearchAttendanceGroupReq, options ...MethodOptionFunc) (*SearchAttendanceGroupResp, *Response, error) - mockAttendanceUpdateAttendanceLeaveAccrualRecord func(ctx context.Context, request *UpdateAttendanceLeaveAccrualRecordReq, options ...MethodOptionFunc) (*UpdateAttendanceLeaveAccrualRecordResp, *Response, error) - mockAttendanceUpdateAttendanceRemedyApproval func(ctx context.Context, request *UpdateAttendanceRemedyApprovalReq, options ...MethodOptionFunc) (*UpdateAttendanceRemedyApprovalResp, *Response, error) - mockAttendanceUpdateAttendanceUserSetting func(ctx context.Context, request *UpdateAttendanceUserSettingReq, options ...MethodOptionFunc) (*UpdateAttendanceUserSettingResp, *Response, error) - mockAttendanceUpdateAttendanceUserStatsView func(ctx context.Context, request *UpdateAttendanceUserStatsViewReq, options ...MethodOptionFunc) (*UpdateAttendanceUserStatsViewResp, *Response, error) - mockAttendanceUploadAttendanceFile func(ctx context.Context, request *UploadAttendanceFileReq, options ...MethodOptionFunc) (*UploadAttendanceFileResp, *Response, error) - mockAuthGetAccessToken func(ctx context.Context, request *GetAccessTokenReq, options ...MethodOptionFunc) (*GetAccessTokenResp, *Response, error) - mockAuthGetUserInfo func(ctx context.Context, request *GetUserInfoReq, options ...MethodOptionFunc) (*GetUserInfoResp, *Response, error) - mockAuthRefreshAccessToken func(ctx context.Context, request *RefreshAccessTokenReq, options ...MethodOptionFunc) (*RefreshAccessTokenResp, *Response, error) - mockAuthResendAppTicket func(ctx context.Context, request *ResendAppTicketReq, options ...MethodOptionFunc) (*ResendAppTicketResp, *Response, error) - mockBaikeCreateBaikeDraft func(ctx context.Context, request *CreateBaikeDraftReq, options ...MethodOptionFunc) (*CreateBaikeDraftResp, *Response, error) - mockBaikeCreateBaikeEntity func(ctx context.Context, request *CreateBaikeEntityReq, options ...MethodOptionFunc) (*CreateBaikeEntityResp, *Response, error) - mockBaikeCreateBaikeUpdate func(ctx context.Context, request *CreateBaikeUpdateReq, options ...MethodOptionFunc) (*CreateBaikeUpdateResp, *Response, error) - mockBaikeDownloadBaikeImage func(ctx context.Context, request *DownloadBaikeImageReq, options ...MethodOptionFunc) (*DownloadBaikeImageResp, *Response, error) - mockBaikeExtractBaikeEntity func(ctx context.Context, request *ExtractBaikeEntityReq, options ...MethodOptionFunc) (*ExtractBaikeEntityResp, *Response, error) - mockBaikeGetBaikeClassificationList func(ctx context.Context, request *GetBaikeClassificationListReq, options ...MethodOptionFunc) (*GetBaikeClassificationListResp, *Response, error) - mockBaikeGetBaikeEntity func(ctx context.Context, request *GetBaikeEntityReq, options ...MethodOptionFunc) (*GetBaikeEntityResp, *Response, error) - mockBaikeGetBaikeEntityList func(ctx context.Context, request *GetBaikeEntityListReq, options ...MethodOptionFunc) (*GetBaikeEntityListResp, *Response, error) - mockBaikeHighlightBaikeEntity func(ctx context.Context, request *HighlightBaikeEntityReq, options ...MethodOptionFunc) (*HighlightBaikeEntityResp, *Response, error) - mockBaikeMatchBaikeEntity func(ctx context.Context, request *MatchBaikeEntityReq, options ...MethodOptionFunc) (*MatchBaikeEntityResp, *Response, error) - mockBaikeSearchBaikeEntity func(ctx context.Context, request *SearchBaikeEntityReq, options ...MethodOptionFunc) (*SearchBaikeEntityResp, *Response, error) - mockBaikeUpdateBaikeEntity func(ctx context.Context, request *UpdateBaikeEntityReq, options ...MethodOptionFunc) (*UpdateBaikeEntityResp, *Response, error) - mockBaikeUploadBaikeImage func(ctx context.Context, request *UploadBaikeImageReq, options ...MethodOptionFunc) (*UploadBaikeImageResp, *Response, error) - mockBitableBatchCreateBitableAppRoleMember func(ctx context.Context, request *BatchCreateBitableAppRoleMemberReq, options ...MethodOptionFunc) (*BatchCreateBitableAppRoleMemberResp, *Response, error) - mockBitableBatchCreateBitableRecord func(ctx context.Context, request *BatchCreateBitableRecordReq, options ...MethodOptionFunc) (*BatchCreateBitableRecordResp, *Response, error) - mockBitableBatchCreateBitableTable func(ctx context.Context, request *BatchCreateBitableTableReq, options ...MethodOptionFunc) (*BatchCreateBitableTableResp, *Response, error) - mockBitableBatchDeleteBitableAppRoleMember func(ctx context.Context, request *BatchDeleteBitableAppRoleMemberReq, options ...MethodOptionFunc) (*BatchDeleteBitableAppRoleMemberResp, *Response, error) - mockBitableBatchDeleteBitableRecord func(ctx context.Context, request *BatchDeleteBitableRecordReq, options ...MethodOptionFunc) (*BatchDeleteBitableRecordResp, *Response, error) - mockBitableBatchDeleteBitableTable func(ctx context.Context, request *BatchDeleteBitableTableReq, options ...MethodOptionFunc) (*BatchDeleteBitableTableResp, *Response, error) - mockBitableBatchUpdateBitableRecord func(ctx context.Context, request *BatchUpdateBitableRecordReq, options ...MethodOptionFunc) (*BatchUpdateBitableRecordResp, *Response, error) - mockBitableCopyBitableApp func(ctx context.Context, request *CopyBitableAppReq, options ...MethodOptionFunc) (*CopyBitableAppResp, *Response, error) - mockBitableCopyBitableDashboard func(ctx context.Context, request *CopyBitableDashboardReq, options ...MethodOptionFunc) (*CopyBitableDashboardResp, *Response, error) - mockBitableCreateBitableApp func(ctx context.Context, request *CreateBitableAppReq, options ...MethodOptionFunc) (*CreateBitableAppResp, *Response, error) - mockBitableCreateBitableAppRole func(ctx context.Context, request *CreateBitableAppRoleReq, options ...MethodOptionFunc) (*CreateBitableAppRoleResp, *Response, error) - mockBitableCreateBitableAppRoleMember func(ctx context.Context, request *CreateBitableAppRoleMemberReq, options ...MethodOptionFunc) (*CreateBitableAppRoleMemberResp, *Response, error) - mockBitableCreateBitableField func(ctx context.Context, request *CreateBitableFieldReq, options ...MethodOptionFunc) (*CreateBitableFieldResp, *Response, error) - mockBitableCreateBitableRecord func(ctx context.Context, request *CreateBitableRecordReq, options ...MethodOptionFunc) (*CreateBitableRecordResp, *Response, error) - mockBitableCreateBitableTable func(ctx context.Context, request *CreateBitableTableReq, options ...MethodOptionFunc) (*CreateBitableTableResp, *Response, error) - mockBitableCreateBitableView func(ctx context.Context, request *CreateBitableViewReq, options ...MethodOptionFunc) (*CreateBitableViewResp, *Response, error) - mockBitableDeleteBitableAppRole func(ctx context.Context, request *DeleteBitableAppRoleReq, options ...MethodOptionFunc) (*DeleteBitableAppRoleResp, *Response, error) - mockBitableDeleteBitableAppRoleMember func(ctx context.Context, request *DeleteBitableAppRoleMemberReq, options ...MethodOptionFunc) (*DeleteBitableAppRoleMemberResp, *Response, error) - mockBitableDeleteBitableField func(ctx context.Context, request *DeleteBitableFieldReq, options ...MethodOptionFunc) (*DeleteBitableFieldResp, *Response, error) - mockBitableDeleteBitableRecord func(ctx context.Context, request *DeleteBitableRecordReq, options ...MethodOptionFunc) (*DeleteBitableRecordResp, *Response, error) - mockBitableDeleteBitableTable func(ctx context.Context, request *DeleteBitableTableReq, options ...MethodOptionFunc) (*DeleteBitableTableResp, *Response, error) - mockBitableDeleteBitableView func(ctx context.Context, request *DeleteBitableViewReq, options ...MethodOptionFunc) (*DeleteBitableViewResp, *Response, error) - mockBitableGetBitableAppRoleList func(ctx context.Context, request *GetBitableAppRoleListReq, options ...MethodOptionFunc) (*GetBitableAppRoleListResp, *Response, error) - mockBitableGetBitableAppRoleMemberList func(ctx context.Context, request *GetBitableAppRoleMemberListReq, options ...MethodOptionFunc) (*GetBitableAppRoleMemberListResp, *Response, error) - mockBitableGetBitableDashboardList func(ctx context.Context, request *GetBitableDashboardListReq, options ...MethodOptionFunc) (*GetBitableDashboardListResp, *Response, error) - mockBitableGetBitableFieldList func(ctx context.Context, request *GetBitableFieldListReq, options ...MethodOptionFunc) (*GetBitableFieldListResp, *Response, error) - mockBitableGetBitableMeta func(ctx context.Context, request *GetBitableMetaReq, options ...MethodOptionFunc) (*GetBitableMetaResp, *Response, error) - mockBitableGetBitableRecord func(ctx context.Context, request *GetBitableRecordReq, options ...MethodOptionFunc) (*GetBitableRecordResp, *Response, error) - mockBitableGetBitableRecordList func(ctx context.Context, request *GetBitableRecordListReq, options ...MethodOptionFunc) (*GetBitableRecordListResp, *Response, error) - mockBitableGetBitableTableForm func(ctx context.Context, request *GetBitableTableFormReq, options ...MethodOptionFunc) (*GetBitableTableFormResp, *Response, error) - mockBitableGetBitableTableFormFieldList func(ctx context.Context, request *GetBitableTableFormFieldListReq, options ...MethodOptionFunc) (*GetBitableTableFormFieldListResp, *Response, error) - mockBitableGetBitableTableList func(ctx context.Context, request *GetBitableTableListReq, options ...MethodOptionFunc) (*GetBitableTableListResp, *Response, error) - mockBitableGetBitableView func(ctx context.Context, request *GetBitableViewReq, options ...MethodOptionFunc) (*GetBitableViewResp, *Response, error) - mockBitableGetBitableViewList func(ctx context.Context, request *GetBitableViewListReq, options ...MethodOptionFunc) (*GetBitableViewListResp, *Response, error) - mockBitableSearchBitableRecord func(ctx context.Context, request *SearchBitableRecordReq, options ...MethodOptionFunc) (*SearchBitableRecordResp, *Response, error) - mockBitableUpdateBitableAppRole func(ctx context.Context, request *UpdateBitableAppRoleReq, options ...MethodOptionFunc) (*UpdateBitableAppRoleResp, *Response, error) - mockBitableUpdateBitableField func(ctx context.Context, request *UpdateBitableFieldReq, options ...MethodOptionFunc) (*UpdateBitableFieldResp, *Response, error) - mockBitableUpdateBitableMeta func(ctx context.Context, request *UpdateBitableMetaReq, options ...MethodOptionFunc) (*UpdateBitableMetaResp, *Response, error) - mockBitableUpdateBitableRecord func(ctx context.Context, request *UpdateBitableRecordReq, options ...MethodOptionFunc) (*UpdateBitableRecordResp, *Response, error) - mockBitableUpdateBitableTable func(ctx context.Context, request *UpdateBitableTableReq, options ...MethodOptionFunc) (*UpdateBitableTableResp, *Response, error) - mockBitableUpdateBitableTableForm func(ctx context.Context, request *UpdateBitableTableFormReq, options ...MethodOptionFunc) (*UpdateBitableTableFormResp, *Response, error) - mockBitableUpdateBitableTableFormField func(ctx context.Context, request *UpdateBitableTableFormFieldReq, options ...MethodOptionFunc) (*UpdateBitableTableFormFieldResp, *Response, error) - mockBitableUpdateBitableView func(ctx context.Context, request *UpdateBitableViewReq, options ...MethodOptionFunc) (*UpdateBitableViewResp, *Response, error) - mockBotAddBotToChat func(ctx context.Context, request *AddBotToChatReq, options ...MethodOptionFunc) (*AddBotToChatResp, *Response, error) - mockBotGetBotInfo func(ctx context.Context, request *GetBotInfoReq, options ...MethodOptionFunc) (*GetBotInfoResp, *Response, error) - mockCalendarBatchGetCalendarMeetingRoomFreebusy func(ctx context.Context, request *BatchGetCalendarMeetingRoomFreebusyReq, options ...MethodOptionFunc) (*BatchGetCalendarMeetingRoomFreebusyResp, *Response, error) - mockCalendarBatchGetCalendarMeetingRoomSummary func(ctx context.Context, request *BatchGetCalendarMeetingRoomSummaryReq, options ...MethodOptionFunc) (*BatchGetCalendarMeetingRoomSummaryResp, *Response, error) - mockCalendarCreateCalendar func(ctx context.Context, request *CreateCalendarReq, options ...MethodOptionFunc) (*CreateCalendarResp, *Response, error) - mockCalendarCreateCalendarPrimarys func(ctx context.Context, request *CreateCalendarPrimarysReq, options ...MethodOptionFunc) (*CreateCalendarPrimarysResp, *Response, error) - mockCalendarCreateCalendarACL func(ctx context.Context, request *CreateCalendarACLReq, options ...MethodOptionFunc) (*CreateCalendarACLResp, *Response, error) - mockCalendarCreateCalendarEvent func(ctx context.Context, request *CreateCalendarEventReq, options ...MethodOptionFunc) (*CreateCalendarEventResp, *Response, error) - mockCalendarCreateCalendarEventAttendee func(ctx context.Context, request *CreateCalendarEventAttendeeReq, options ...MethodOptionFunc) (*CreateCalendarEventAttendeeResp, *Response, error) - mockCalendarCreateCalendarEventMeetingChat func(ctx context.Context, request *CreateCalendarEventMeetingChatReq, options ...MethodOptionFunc) (*CreateCalendarEventMeetingChatResp, *Response, error) - mockCalendarCreateCalendarExchangeBinding func(ctx context.Context, request *CreateCalendarExchangeBindingReq, options ...MethodOptionFunc) (*CreateCalendarExchangeBindingResp, *Response, error) - mockCalendarCreateCalendarTimeoffEvent func(ctx context.Context, request *CreateCalendarTimeoffEventReq, options ...MethodOptionFunc) (*CreateCalendarTimeoffEventResp, *Response, error) - mockCalendarDeleteCalendar func(ctx context.Context, request *DeleteCalendarReq, options ...MethodOptionFunc) (*DeleteCalendarResp, *Response, error) - mockCalendarDeleteCalendarACL func(ctx context.Context, request *DeleteCalendarACLReq, options ...MethodOptionFunc) (*DeleteCalendarACLResp, *Response, error) - mockCalendarDeleteCalendarEvent func(ctx context.Context, request *DeleteCalendarEventReq, options ...MethodOptionFunc) (*DeleteCalendarEventResp, *Response, error) - mockCalendarDeleteCalendarEventAttendee func(ctx context.Context, request *DeleteCalendarEventAttendeeReq, options ...MethodOptionFunc) (*DeleteCalendarEventAttendeeResp, *Response, error) - mockCalendarDeleteCalendarEventMeetingChat func(ctx context.Context, request *DeleteCalendarEventMeetingChatReq, options ...MethodOptionFunc) (*DeleteCalendarEventMeetingChatResp, *Response, error) - mockCalendarDeleteCalendarExchangeBinding func(ctx context.Context, request *DeleteCalendarExchangeBindingReq, options ...MethodOptionFunc) (*DeleteCalendarExchangeBindingResp, *Response, error) - mockCalendarDeleteCalendarTimeoffEvent func(ctx context.Context, request *DeleteCalendarTimeoffEventReq, options ...MethodOptionFunc) (*DeleteCalendarTimeoffEventResp, *Response, error) - mockCalendarGenerateCaldavConf func(ctx context.Context, request *GenerateCaldavConfReq, options ...MethodOptionFunc) (*GenerateCaldavConfResp, *Response, error) - mockCalendarGetCalendar func(ctx context.Context, request *GetCalendarReq, options ...MethodOptionFunc) (*GetCalendarResp, *Response, error) - mockCalendarGetCalendarACLList func(ctx context.Context, request *GetCalendarACLListReq, options ...MethodOptionFunc) (*GetCalendarACLListResp, *Response, error) - mockCalendarGetCalendarEvent func(ctx context.Context, request *GetCalendarEventReq, options ...MethodOptionFunc) (*GetCalendarEventResp, *Response, error) - mockCalendarGetCalendarEventAttendeeChatMemberList func(ctx context.Context, request *GetCalendarEventAttendeeChatMemberListReq, options ...MethodOptionFunc) (*GetCalendarEventAttendeeChatMemberListResp, *Response, error) - mockCalendarGetCalendarEventAttendeeList func(ctx context.Context, request *GetCalendarEventAttendeeListReq, options ...MethodOptionFunc) (*GetCalendarEventAttendeeListResp, *Response, error) - mockCalendarGetCalendarEventInstanceList func(ctx context.Context, request *GetCalendarEventInstanceListReq, options ...MethodOptionFunc) (*GetCalendarEventInstanceListResp, *Response, error) - mockCalendarGetCalendarEventInstanceViewList func(ctx context.Context, request *GetCalendarEventInstanceViewListReq, options ...MethodOptionFunc) (*GetCalendarEventInstanceViewListResp, *Response, error) - mockCalendarGetCalendarEventList func(ctx context.Context, request *GetCalendarEventListReq, options ...MethodOptionFunc) (*GetCalendarEventListResp, *Response, error) - mockCalendarGetCalendarExchangeBinding func(ctx context.Context, request *GetCalendarExchangeBindingReq, options ...MethodOptionFunc) (*GetCalendarExchangeBindingResp, *Response, error) - mockCalendarGetCalendarFreeBusyList func(ctx context.Context, request *GetCalendarFreeBusyListReq, options ...MethodOptionFunc) (*GetCalendarFreeBusyListResp, *Response, error) - mockCalendarGetCalendarList func(ctx context.Context, request *GetCalendarListReq, options ...MethodOptionFunc) (*GetCalendarListResp, *Response, error) - mockCalendarGetPrimaryCalendar func(ctx context.Context, request *GetPrimaryCalendarReq, options ...MethodOptionFunc) (*GetPrimaryCalendarResp, *Response, error) - mockCalendarReplyCalendarEvent func(ctx context.Context, request *ReplyCalendarEventReq, options ...MethodOptionFunc) (*ReplyCalendarEventResp, *Response, error) - mockCalendarReplyCalendarMeetingRoomInstance func(ctx context.Context, request *ReplyCalendarMeetingRoomInstanceReq, options ...MethodOptionFunc) (*ReplyCalendarMeetingRoomInstanceResp, *Response, error) - mockCalendarSearchCalendar func(ctx context.Context, request *SearchCalendarReq, options ...MethodOptionFunc) (*SearchCalendarResp, *Response, error) - mockCalendarSearchCalendarEvent func(ctx context.Context, request *SearchCalendarEventReq, options ...MethodOptionFunc) (*SearchCalendarEventResp, *Response, error) - mockCalendarSubscribeCalendar func(ctx context.Context, request *SubscribeCalendarReq, options ...MethodOptionFunc) (*SubscribeCalendarResp, *Response, error) - mockCalendarSubscribeCalendarACL func(ctx context.Context, request *SubscribeCalendarACLReq, options ...MethodOptionFunc) (*SubscribeCalendarACLResp, *Response, error) - mockCalendarSubscribeCalendarChangeEvent func(ctx context.Context, request *SubscribeCalendarChangeEventReq, options ...MethodOptionFunc) (*SubscribeCalendarChangeEventResp, *Response, error) - mockCalendarSubscribeCalendarEvent func(ctx context.Context, request *SubscribeCalendarEventReq, options ...MethodOptionFunc) (*SubscribeCalendarEventResp, *Response, error) - mockCalendarUnsubscribeCalendar func(ctx context.Context, request *UnsubscribeCalendarReq, options ...MethodOptionFunc) (*UnsubscribeCalendarResp, *Response, error) - mockCalendarUnsubscribeCalendarACL func(ctx context.Context, request *UnsubscribeCalendarACLReq, options ...MethodOptionFunc) (*UnsubscribeCalendarACLResp, *Response, error) - mockCalendarUnsubscribeCalendarChangeEvent func(ctx context.Context, request *UnsubscribeCalendarChangeEventReq, options ...MethodOptionFunc) (*UnsubscribeCalendarChangeEventResp, *Response, error) - mockCalendarUnsubscribeCalendarEvent func(ctx context.Context, request *UnsubscribeCalendarEventReq, options ...MethodOptionFunc) (*UnsubscribeCalendarEventResp, *Response, error) - mockCalendarUpdateCalendar func(ctx context.Context, request *UpdateCalendarReq, options ...MethodOptionFunc) (*UpdateCalendarResp, *Response, error) - mockCalendarUpdateCalendarEvent func(ctx context.Context, request *UpdateCalendarEventReq, options ...MethodOptionFunc) (*UpdateCalendarEventResp, *Response, error) - mockChatAddChatMember func(ctx context.Context, request *AddChatMemberReq, options ...MethodOptionFunc) (*AddChatMemberResp, *Response, error) - mockChatCreateChat func(ctx context.Context, request *CreateChatReq, options ...MethodOptionFunc) (*CreateChatResp, *Response, error) - mockChatCreateChatManager func(ctx context.Context, request *CreateChatManagerReq, options ...MethodOptionFunc) (*CreateChatManagerResp, *Response, error) - mockChatCreateChatMenuTree func(ctx context.Context, request *CreateChatMenuTreeReq, options ...MethodOptionFunc) (*CreateChatMenuTreeResp, *Response, error) - mockChatCreateChatTab func(ctx context.Context, request *CreateChatTabReq, options ...MethodOptionFunc) (*CreateChatTabResp, *Response, error) - mockChatDeleteChat func(ctx context.Context, request *DeleteChatReq, options ...MethodOptionFunc) (*DeleteChatResp, *Response, error) - mockChatDeleteChatManager func(ctx context.Context, request *DeleteChatManagerReq, options ...MethodOptionFunc) (*DeleteChatManagerResp, *Response, error) - mockChatDeleteChatMember func(ctx context.Context, request *DeleteChatMemberReq, options ...MethodOptionFunc) (*DeleteChatMemberResp, *Response, error) - mockChatDeleteChatMenuTree func(ctx context.Context, request *DeleteChatMenuTreeReq, options ...MethodOptionFunc) (*DeleteChatMenuTreeResp, *Response, error) - mockChatDeleteChatTab func(ctx context.Context, request *DeleteChatTabReq, options ...MethodOptionFunc) (*DeleteChatTabResp, *Response, error) - mockChatDeleteChatTopNotice func(ctx context.Context, request *DeleteChatTopNoticeReq, options ...MethodOptionFunc) (*DeleteChatTopNoticeResp, *Response, error) - mockChatGenChatShareLink func(ctx context.Context, request *GenChatShareLinkReq, options ...MethodOptionFunc) (*GenChatShareLinkResp, *Response, error) - mockChatGetChat func(ctx context.Context, request *GetChatReq, options ...MethodOptionFunc) (*GetChatResp, *Response, error) - mockChatGetChatAnnouncement func(ctx context.Context, request *GetChatAnnouncementReq, options ...MethodOptionFunc) (*GetChatAnnouncementResp, *Response, error) - mockChatGetChatListOfSelf func(ctx context.Context, request *GetChatListOfSelfReq, options ...MethodOptionFunc) (*GetChatListOfSelfResp, *Response, error) - mockChatGetChatMemberList func(ctx context.Context, request *GetChatMemberListReq, options ...MethodOptionFunc) (*GetChatMemberListResp, *Response, error) - mockChatGetChatMenuTree func(ctx context.Context, request *GetChatMenuTreeReq, options ...MethodOptionFunc) (*GetChatMenuTreeResp, *Response, error) - mockChatGetChatModeration func(ctx context.Context, request *GetChatModerationReq, options ...MethodOptionFunc) (*GetChatModerationResp, *Response, error) - mockChatGetChatOld func(ctx context.Context, request *GetChatOldReq, options ...MethodOptionFunc) (*GetChatOldResp, *Response, error) - mockChatGetChatTabList func(ctx context.Context, request *GetChatTabListReq, options ...MethodOptionFunc) (*GetChatTabListResp, *Response, error) - mockChatIsInChat func(ctx context.Context, request *IsInChatReq, options ...MethodOptionFunc) (*IsInChatResp, *Response, error) - mockChatJoinChat func(ctx context.Context, request *JoinChatReq, options ...MethodOptionFunc) (*JoinChatResp, *Response, error) - mockChatSearchChat func(ctx context.Context, request *SearchChatReq, options ...MethodOptionFunc) (*SearchChatResp, *Response, error) - mockChatSortChatMenuTree func(ctx context.Context, request *SortChatMenuTreeReq, options ...MethodOptionFunc) (*SortChatMenuTreeResp, *Response, error) - mockChatSortChatTab func(ctx context.Context, request *SortChatTabReq, options ...MethodOptionFunc) (*SortChatTabResp, *Response, error) - mockChatUpdateChat func(ctx context.Context, request *UpdateChatReq, options ...MethodOptionFunc) (*UpdateChatResp, *Response, error) - mockChatUpdateChatAnnouncement func(ctx context.Context, request *UpdateChatAnnouncementReq, options ...MethodOptionFunc) (*UpdateChatAnnouncementResp, *Response, error) - mockChatUpdateChatMenuTree func(ctx context.Context, request *UpdateChatMenuTreeReq, options ...MethodOptionFunc) (*UpdateChatMenuTreeResp, *Response, error) - mockChatUpdateChatModeration func(ctx context.Context, request *UpdateChatModerationReq, options ...MethodOptionFunc) (*UpdateChatModerationResp, *Response, error) - mockChatUpdateChatTab func(ctx context.Context, request *UpdateChatTabReq, options ...MethodOptionFunc) (*UpdateChatTabResp, *Response, error) - mockChatUpdateChatTopNotice func(ctx context.Context, request *UpdateChatTopNoticeReq, options ...MethodOptionFunc) (*UpdateChatTopNoticeResp, *Response, error) - mockContactAddContactGroupMember func(ctx context.Context, request *AddContactGroupMemberReq, options ...MethodOptionFunc) (*AddContactGroupMemberResp, *Response, error) - mockContactBatchAddContactGroupMember func(ctx context.Context, request *BatchAddContactGroupMemberReq, options ...MethodOptionFunc) (*BatchAddContactGroupMemberResp, *Response, error) - mockContactBatchAddContactV2User func(ctx context.Context, request *BatchAddContactV2UserReq, options ...MethodOptionFunc) (*BatchAddContactV2UserResp, *Response, error) - mockContactBatchCreateContactFunctionalRoleMember func(ctx context.Context, request *BatchCreateContactFunctionalRoleMemberReq, options ...MethodOptionFunc) (*BatchCreateContactFunctionalRoleMemberResp, *Response, error) - mockContactBatchDeleteContactFunctionalRoleMember func(ctx context.Context, request *BatchDeleteContactFunctionalRoleMemberReq, options ...MethodOptionFunc) (*BatchDeleteContactFunctionalRoleMemberResp, *Response, error) - mockContactBatchDeleteContactGroupMember func(ctx context.Context, request *BatchDeleteContactGroupMemberReq, options ...MethodOptionFunc) (*BatchDeleteContactGroupMemberResp, *Response, error) - mockContactBatchGetDepartment func(ctx context.Context, request *BatchGetDepartmentReq, options ...MethodOptionFunc) (*BatchGetDepartmentResp, *Response, error) - mockContactBatchGetUser func(ctx context.Context, request *BatchGetUserReq, options ...MethodOptionFunc) (*BatchGetUserResp, *Response, error) - mockContactBatchGetUserByID func(ctx context.Context, request *BatchGetUserByIDReq, options ...MethodOptionFunc) (*BatchGetUserByIDResp, *Response, error) - mockContactBatchGetUserByIDOld func(ctx context.Context, request *BatchGetUserByIDOldReq, options ...MethodOptionFunc) (*BatchGetUserByIDOldResp, *Response, error) - mockContactBindContactUnitDepartment func(ctx context.Context, request *BindContactUnitDepartmentReq, options ...MethodOptionFunc) (*BindContactUnitDepartmentResp, *Response, error) - mockContactCreateContactFunctionalRole func(ctx context.Context, request *CreateContactFunctionalRoleReq, options ...MethodOptionFunc) (*CreateContactFunctionalRoleResp, *Response, error) - mockContactCreateContactGroup func(ctx context.Context, request *CreateContactGroupReq, options ...MethodOptionFunc) (*CreateContactGroupResp, *Response, error) - mockContactCreateContactJobFamily func(ctx context.Context, request *CreateContactJobFamilyReq, options ...MethodOptionFunc) (*CreateContactJobFamilyResp, *Response, error) - mockContactCreateContactJobLevel func(ctx context.Context, request *CreateContactJobLevelReq, options ...MethodOptionFunc) (*CreateContactJobLevelResp, *Response, error) - mockContactCreateContactUnit func(ctx context.Context, request *CreateContactUnitReq, options ...MethodOptionFunc) (*CreateContactUnitResp, *Response, error) - mockContactCreateDepartment func(ctx context.Context, request *CreateDepartmentReq, options ...MethodOptionFunc) (*CreateDepartmentResp, *Response, error) - mockContactCreateEmployeeTypeEnum func(ctx context.Context, request *CreateEmployeeTypeEnumReq, options ...MethodOptionFunc) (*CreateEmployeeTypeEnumResp, *Response, error) - mockContactCreateUser func(ctx context.Context, request *CreateUserReq, options ...MethodOptionFunc) (*CreateUserResp, *Response, error) - mockContactDeleteContactFunctionalRole func(ctx context.Context, request *DeleteContactFunctionalRoleReq, options ...MethodOptionFunc) (*DeleteContactFunctionalRoleResp, *Response, error) - mockContactDeleteContactGroup func(ctx context.Context, request *DeleteContactGroupReq, options ...MethodOptionFunc) (*DeleteContactGroupResp, *Response, error) - mockContactDeleteContactGroupMember func(ctx context.Context, request *DeleteContactGroupMemberReq, options ...MethodOptionFunc) (*DeleteContactGroupMemberResp, *Response, error) - mockContactDeleteContactJobFamily func(ctx context.Context, request *DeleteContactJobFamilyReq, options ...MethodOptionFunc) (*DeleteContactJobFamilyResp, *Response, error) - mockContactDeleteContactJobLevel func(ctx context.Context, request *DeleteContactJobLevelReq, options ...MethodOptionFunc) (*DeleteContactJobLevelResp, *Response, error) - mockContactDeleteContactUnit func(ctx context.Context, request *DeleteContactUnitReq, options ...MethodOptionFunc) (*DeleteContactUnitResp, *Response, error) - mockContactDeleteDepartment func(ctx context.Context, request *DeleteDepartmentReq, options ...MethodOptionFunc) (*DeleteDepartmentResp, *Response, error) - mockContactDeleteEmployeeTypeEnum func(ctx context.Context, request *DeleteEmployeeTypeEnumReq, options ...MethodOptionFunc) (*DeleteEmployeeTypeEnumResp, *Response, error) - mockContactDeleteUser func(ctx context.Context, request *DeleteUserReq, options ...MethodOptionFunc) (*DeleteUserResp, *Response, error) - mockContactGetContactCustomAttrList func(ctx context.Context, request *GetContactCustomAttrListReq, options ...MethodOptionFunc) (*GetContactCustomAttrListResp, *Response, error) - mockContactGetContactFunctionalRoleMember func(ctx context.Context, request *GetContactFunctionalRoleMemberReq, options ...MethodOptionFunc) (*GetContactFunctionalRoleMemberResp, *Response, error) - mockContactGetContactFunctionalRoleMemberScope func(ctx context.Context, request *GetContactFunctionalRoleMemberScopeReq, options ...MethodOptionFunc) (*GetContactFunctionalRoleMemberScopeResp, *Response, error) - mockContactGetContactGroup func(ctx context.Context, request *GetContactGroupReq, options ...MethodOptionFunc) (*GetContactGroupResp, *Response, error) - mockContactGetContactGroupList func(ctx context.Context, request *GetContactGroupListReq, options ...MethodOptionFunc) (*GetContactGroupListResp, *Response, error) - mockContactGetContactGroupMember func(ctx context.Context, request *GetContactGroupMemberReq, options ...MethodOptionFunc) (*GetContactGroupMemberResp, *Response, error) - mockContactGetContactJobFamily func(ctx context.Context, request *GetContactJobFamilyReq, options ...MethodOptionFunc) (*GetContactJobFamilyResp, *Response, error) - mockContactGetContactJobFamilyList func(ctx context.Context, request *GetContactJobFamilyListReq, options ...MethodOptionFunc) (*GetContactJobFamilyListResp, *Response, error) - mockContactGetContactJobLevel func(ctx context.Context, request *GetContactJobLevelReq, options ...MethodOptionFunc) (*GetContactJobLevelResp, *Response, error) - mockContactGetContactJobLevelList func(ctx context.Context, request *GetContactJobLevelListReq, options ...MethodOptionFunc) (*GetContactJobLevelListResp, *Response, error) - mockContactGetContactJobTitle func(ctx context.Context, request *GetContactJobTitleReq, options ...MethodOptionFunc) (*GetContactJobTitleResp, *Response, error) - mockContactGetContactJobTitleList func(ctx context.Context, request *GetContactJobTitleListReq, options ...MethodOptionFunc) (*GetContactJobTitleListResp, *Response, error) - mockContactGetContactMemberGroupList func(ctx context.Context, request *GetContactMemberGroupListReq, options ...MethodOptionFunc) (*GetContactMemberGroupListResp, *Response, error) - mockContactGetContactScopeList func(ctx context.Context, request *GetContactScopeListReq, options ...MethodOptionFunc) (*GetContactScopeListResp, *Response, error) - mockContactGetContactUnit func(ctx context.Context, request *GetContactUnitReq, options ...MethodOptionFunc) (*GetContactUnitResp, *Response, error) - mockContactGetContactUnitDepartmentList func(ctx context.Context, request *GetContactUnitDepartmentListReq, options ...MethodOptionFunc) (*GetContactUnitDepartmentListResp, *Response, error) - mockContactGetContactUnitList func(ctx context.Context, request *GetContactUnitListReq, options ...MethodOptionFunc) (*GetContactUnitListResp, *Response, error) - mockContactGetContactV2Task func(ctx context.Context, request *GetContactV2TaskReq, options ...MethodOptionFunc) (*GetContactV2TaskResp, *Response, error) - mockContactGetContactWorkCity func(ctx context.Context, request *GetContactWorkCityReq, options ...MethodOptionFunc) (*GetContactWorkCityResp, *Response, error) - mockContactGetContactWorkCityList func(ctx context.Context, request *GetContactWorkCityListReq, options ...MethodOptionFunc) (*GetContactWorkCityListResp, *Response, error) - mockContactGetDepartment func(ctx context.Context, request *GetDepartmentReq, options ...MethodOptionFunc) (*GetDepartmentResp, *Response, error) - mockContactGetDepartmentList func(ctx context.Context, request *GetDepartmentListReq, options ...MethodOptionFunc) (*GetDepartmentListResp, *Response, error) - mockContactGetDepartmentListOld func(ctx context.Context, request *GetDepartmentListOldReq, options ...MethodOptionFunc) (*GetDepartmentListOldResp, *Response, error) - mockContactGetEmployeeTypeEnumList func(ctx context.Context, request *GetEmployeeTypeEnumListReq, options ...MethodOptionFunc) (*GetEmployeeTypeEnumListResp, *Response, error) - mockContactGetParentDepartment func(ctx context.Context, request *GetParentDepartmentReq, options ...MethodOptionFunc) (*GetParentDepartmentResp, *Response, error) - mockContactGetUser func(ctx context.Context, request *GetUserReq, options ...MethodOptionFunc) (*GetUserResp, *Response, error) - mockContactGetUserList func(ctx context.Context, request *GetUserListReq, options ...MethodOptionFunc) (*GetUserListResp, *Response, error) - mockContactGetUserListOld func(ctx context.Context, request *GetUserListOldReq, options ...MethodOptionFunc) (*GetUserListOldResp, *Response, error) - mockContactResurrectUser func(ctx context.Context, request *ResurrectUserReq, options ...MethodOptionFunc) (*ResurrectUserResp, *Response, error) - mockContactSearchDepartment func(ctx context.Context, request *SearchDepartmentReq, options ...MethodOptionFunc) (*SearchDepartmentResp, *Response, error) - mockContactSearchUserOld func(ctx context.Context, request *SearchUserOldReq, options ...MethodOptionFunc) (*SearchUserOldResp, *Response, error) - mockContactUnbindContactUnitDepartment func(ctx context.Context, request *UnbindContactUnitDepartmentReq, options ...MethodOptionFunc) (*UnbindContactUnitDepartmentResp, *Response, error) - mockContactUnbindDepartmentChat func(ctx context.Context, request *UnbindDepartmentChatReq, options ...MethodOptionFunc) (*UnbindDepartmentChatResp, *Response, error) - mockContactUpdateContactFunctionalRole func(ctx context.Context, request *UpdateContactFunctionalRoleReq, options ...MethodOptionFunc) (*UpdateContactFunctionalRoleResp, *Response, error) - mockContactUpdateContactFunctionalRoleMemberScope func(ctx context.Context, request *UpdateContactFunctionalRoleMemberScopeReq, options ...MethodOptionFunc) (*UpdateContactFunctionalRoleMemberScopeResp, *Response, error) - mockContactUpdateContactGroup func(ctx context.Context, request *UpdateContactGroupReq, options ...MethodOptionFunc) (*UpdateContactGroupResp, *Response, error) - mockContactUpdateContactJobFamily func(ctx context.Context, request *UpdateContactJobFamilyReq, options ...MethodOptionFunc) (*UpdateContactJobFamilyResp, *Response, error) - mockContactUpdateContactJobLevel func(ctx context.Context, request *UpdateContactJobLevelReq, options ...MethodOptionFunc) (*UpdateContactJobLevelResp, *Response, error) - mockContactUpdateContactUnit func(ctx context.Context, request *UpdateContactUnitReq, options ...MethodOptionFunc) (*UpdateContactUnitResp, *Response, error) - mockContactUpdateDepartment func(ctx context.Context, request *UpdateDepartmentReq, options ...MethodOptionFunc) (*UpdateDepartmentResp, *Response, error) - mockContactUpdateDepartmentID func(ctx context.Context, request *UpdateDepartmentIDReq, options ...MethodOptionFunc) (*UpdateDepartmentIDResp, *Response, error) - mockContactUpdateDepartmentPatch func(ctx context.Context, request *UpdateDepartmentPatchReq, options ...MethodOptionFunc) (*UpdateDepartmentPatchResp, *Response, error) - mockContactUpdateEmployeeTypeEnumPatch func(ctx context.Context, request *UpdateEmployeeTypeEnumPatchReq, options ...MethodOptionFunc) (*UpdateEmployeeTypeEnumPatchResp, *Response, error) - mockContactUpdateUser func(ctx context.Context, request *UpdateUserReq, options ...MethodOptionFunc) (*UpdateUserResp, *Response, error) - mockContactUpdateUserID func(ctx context.Context, request *UpdateUserIDReq, options ...MethodOptionFunc) (*UpdateUserIDResp, *Response, error) - mockContactUpdateUserPatch func(ctx context.Context, request *UpdateUserPatchReq, options ...MethodOptionFunc) (*UpdateUserPatchResp, *Response, error) - mockCoreHRActiveCoreHRCostCenter func(ctx context.Context, request *ActiveCoreHRCostCenterReq, options ...MethodOptionFunc) (*ActiveCoreHRCostCenterResp, *Response, error) - mockCoreHRBatchGetCoreHRCompany func(ctx context.Context, request *BatchGetCoreHRCompanyReq, options ...MethodOptionFunc) (*BatchGetCoreHRCompanyResp, *Response, error) - mockCoreHRBatchGetCoreHRDepartment func(ctx context.Context, request *BatchGetCoreHRDepartmentReq, options ...MethodOptionFunc) (*BatchGetCoreHRDepartmentResp, *Response, error) - mockCoreHRBatchGetCoreHREmployee func(ctx context.Context, request *BatchGetCoreHREmployeeReq, options ...MethodOptionFunc) (*BatchGetCoreHREmployeeResp, *Response, error) - mockCoreHRBatchGetCoreHRJobData func(ctx context.Context, request *BatchGetCoreHRJobDataReq, options ...MethodOptionFunc) (*BatchGetCoreHRJobDataResp, *Response, error) - mockCoreHRBatchGetCoreHRJobFamily func(ctx context.Context, request *BatchGetCoreHRJobFamilyReq, options ...MethodOptionFunc) (*BatchGetCoreHRJobFamilyResp, *Response, error) - mockCoreHRBatchGetCoreHRJobLevel func(ctx context.Context, request *BatchGetCoreHRJobLevelReq, options ...MethodOptionFunc) (*BatchGetCoreHRJobLevelResp, *Response, error) - mockCoreHRBatchGetCoreHRLocation func(ctx context.Context, request *BatchGetCoreHRLocationReq, options ...MethodOptionFunc) (*BatchGetCoreHRLocationResp, *Response, error) - mockCoreHRBatchGetCoreHrbpByEmployee func(ctx context.Context, request *BatchGetCoreHrbpByEmployeeReq, options ...MethodOptionFunc) (*BatchGetCoreHrbpByEmployeeResp, *Response, error) - mockCoreHRBatchQueryCoreHRDepartmentTimeline func(ctx context.Context, request *BatchQueryCoreHRDepartmentTimelineReq, options ...MethodOptionFunc) (*BatchQueryCoreHRDepartmentTimelineResp, *Response, error) - mockCoreHRCreateCoreHRCompany func(ctx context.Context, request *CreateCoreHRCompanyReq, options ...MethodOptionFunc) (*CreateCoreHRCompanyResp, *Response, error) - mockCoreHRCreateCoreHRContract func(ctx context.Context, request *CreateCoreHRContractReq, options ...MethodOptionFunc) (*CreateCoreHRContractResp, *Response, error) - mockCoreHRCreateCoreHRCostCenter func(ctx context.Context, request *CreateCoreHRCostCenterReq, options ...MethodOptionFunc) (*CreateCoreHRCostCenterResp, *Response, error) - mockCoreHRCreateCoreHRCostCenterVersion func(ctx context.Context, request *CreateCoreHRCostCenterVersionReq, options ...MethodOptionFunc) (*CreateCoreHRCostCenterVersionResp, *Response, error) - mockCoreHRCreateCoreHRDepartment func(ctx context.Context, request *CreateCoreHRDepartmentReq, options ...MethodOptionFunc) (*CreateCoreHRDepartmentResp, *Response, error) - mockCoreHRCreateCoreHREmployeeType func(ctx context.Context, request *CreateCoreHREmployeeTypeReq, options ...MethodOptionFunc) (*CreateCoreHREmployeeTypeResp, *Response, error) - mockCoreHRCreateCoreHREmployment func(ctx context.Context, request *CreateCoreHREmploymentReq, options ...MethodOptionFunc) (*CreateCoreHREmploymentResp, *Response, error) - mockCoreHRCreateCoreHRJob func(ctx context.Context, request *CreateCoreHRJobReq, options ...MethodOptionFunc) (*CreateCoreHRJobResp, *Response, error) - mockCoreHRCreateCoreHRJobChange func(ctx context.Context, request *CreateCoreHRJobChangeReq, options ...MethodOptionFunc) (*CreateCoreHRJobChangeResp, *Response, error) - mockCoreHRCreateCoreHRJobData func(ctx context.Context, request *CreateCoreHRJobDataReq, options ...MethodOptionFunc) (*CreateCoreHRJobDataResp, *Response, error) - mockCoreHRCreateCoreHRJobFamily func(ctx context.Context, request *CreateCoreHRJobFamilyReq, options ...MethodOptionFunc) (*CreateCoreHRJobFamilyResp, *Response, error) - mockCoreHRCreateCoreHRJobLevel func(ctx context.Context, request *CreateCoreHRJobLevelReq, options ...MethodOptionFunc) (*CreateCoreHRJobLevelResp, *Response, error) - mockCoreHRCreateCoreHRLeaveGrantingRecord func(ctx context.Context, request *CreateCoreHRLeaveGrantingRecordReq, options ...MethodOptionFunc) (*CreateCoreHRLeaveGrantingRecordResp, *Response, error) - mockCoreHRCreateCoreHRLocation func(ctx context.Context, request *CreateCoreHRLocationReq, options ...MethodOptionFunc) (*CreateCoreHRLocationResp, *Response, error) - mockCoreHRCreateCoreHRNationalIDType func(ctx context.Context, request *CreateCoreHRNationalIDTypeReq, options ...MethodOptionFunc) (*CreateCoreHRNationalIDTypeResp, *Response, error) - mockCoreHRCreateCoreHROffboarding func(ctx context.Context, request *CreateCoreHROffboardingReq, options ...MethodOptionFunc) (*CreateCoreHROffboardingResp, *Response, error) - mockCoreHRCreateCoreHRPerson func(ctx context.Context, request *CreateCoreHRPersonReq, options ...MethodOptionFunc) (*CreateCoreHRPersonResp, *Response, error) - mockCoreHRCreateCoreHRPreHire func(ctx context.Context, request *CreateCoreHRPreHireReq, options ...MethodOptionFunc) (*CreateCoreHRPreHireResp, *Response, error) - mockCoreHRCreateCoreHRProbationAssessment func(ctx context.Context, request *CreateCoreHRProbationAssessmentReq, options ...MethodOptionFunc) (*CreateCoreHRProbationAssessmentResp, *Response, error) - mockCoreHRCreateCoreHRWorkingHoursType func(ctx context.Context, request *CreateCoreHRWorkingHoursTypeReq, options ...MethodOptionFunc) (*CreateCoreHRWorkingHoursTypeResp, *Response, error) - mockCoreHRDeleteCoreHRCompany func(ctx context.Context, request *DeleteCoreHRCompanyReq, options ...MethodOptionFunc) (*DeleteCoreHRCompanyResp, *Response, error) - mockCoreHRDeleteCoreHRContract func(ctx context.Context, request *DeleteCoreHRContractReq, options ...MethodOptionFunc) (*DeleteCoreHRContractResp, *Response, error) - mockCoreHRDeleteCoreHRCostCenter func(ctx context.Context, request *DeleteCoreHRCostCenterReq, options ...MethodOptionFunc) (*DeleteCoreHRCostCenterResp, *Response, error) - mockCoreHRDeleteCoreHRCostCenterVersion func(ctx context.Context, request *DeleteCoreHRCostCenterVersionReq, options ...MethodOptionFunc) (*DeleteCoreHRCostCenterVersionResp, *Response, error) - mockCoreHRDeleteCoreHRDepartment func(ctx context.Context, request *DeleteCoreHRDepartmentReq, options ...MethodOptionFunc) (*DeleteCoreHRDepartmentResp, *Response, error) - mockCoreHRDeleteCoreHREmployeeType func(ctx context.Context, request *DeleteCoreHREmployeeTypeReq, options ...MethodOptionFunc) (*DeleteCoreHREmployeeTypeResp, *Response, error) - mockCoreHRDeleteCoreHREmployment func(ctx context.Context, request *DeleteCoreHREmploymentReq, options ...MethodOptionFunc) (*DeleteCoreHREmploymentResp, *Response, error) - mockCoreHRDeleteCoreHRJob func(ctx context.Context, request *DeleteCoreHRJobReq, options ...MethodOptionFunc) (*DeleteCoreHRJobResp, *Response, error) - mockCoreHRDeleteCoreHRJobData func(ctx context.Context, request *DeleteCoreHRJobDataReq, options ...MethodOptionFunc) (*DeleteCoreHRJobDataResp, *Response, error) - mockCoreHRDeleteCoreHRJobFamily func(ctx context.Context, request *DeleteCoreHRJobFamilyReq, options ...MethodOptionFunc) (*DeleteCoreHRJobFamilyResp, *Response, error) - mockCoreHRDeleteCoreHRJobLevel func(ctx context.Context, request *DeleteCoreHRJobLevelReq, options ...MethodOptionFunc) (*DeleteCoreHRJobLevelResp, *Response, error) - mockCoreHRDeleteCoreHRLeaveGrantingRecord func(ctx context.Context, request *DeleteCoreHRLeaveGrantingRecordReq, options ...MethodOptionFunc) (*DeleteCoreHRLeaveGrantingRecordResp, *Response, error) - mockCoreHRDeleteCoreHRLocation func(ctx context.Context, request *DeleteCoreHRLocationReq, options ...MethodOptionFunc) (*DeleteCoreHRLocationResp, *Response, error) - mockCoreHRDeleteCoreHRNationalIDType func(ctx context.Context, request *DeleteCoreHRNationalIDTypeReq, options ...MethodOptionFunc) (*DeleteCoreHRNationalIDTypeResp, *Response, error) - mockCoreHRDeleteCoreHRPerson func(ctx context.Context, request *DeleteCoreHRPersonReq, options ...MethodOptionFunc) (*DeleteCoreHRPersonResp, *Response, error) - mockCoreHRDeleteCoreHRPreHire func(ctx context.Context, request *DeleteCoreHRPreHireReq, options ...MethodOptionFunc) (*DeleteCoreHRPreHireResp, *Response, error) - mockCoreHRDeleteCoreHRProbationAssessment func(ctx context.Context, request *DeleteCoreHRProbationAssessmentReq, options ...MethodOptionFunc) (*DeleteCoreHRProbationAssessmentResp, *Response, error) - mockCoreHRDeleteCoreHRWorkingHoursType func(ctx context.Context, request *DeleteCoreHRWorkingHoursTypeReq, options ...MethodOptionFunc) (*DeleteCoreHRWorkingHoursTypeResp, *Response, error) - mockCoreHRDownloadCoreHRPersonFile func(ctx context.Context, request *DownloadCoreHRPersonFileReq, options ...MethodOptionFunc) (*DownloadCoreHRPersonFileResp, *Response, error) - mockCoreHREnableDisableCoreHRProbationAssessment func(ctx context.Context, request *EnableDisableCoreHRProbationAssessmentReq, options ...MethodOptionFunc) (*EnableDisableCoreHRProbationAssessmentResp, *Response, error) - mockCoreHRGetCoreHRAuthorization func(ctx context.Context, request *GetCoreHRAuthorizationReq, options ...MethodOptionFunc) (*GetCoreHRAuthorizationResp, *Response, error) - mockCoreHRGetCoreHRAuthorizationList func(ctx context.Context, request *GetCoreHRAuthorizationListReq, options ...MethodOptionFunc) (*GetCoreHRAuthorizationListResp, *Response, error) - mockCoreHRGetCoreHRCompany func(ctx context.Context, request *GetCoreHRCompanyReq, options ...MethodOptionFunc) (*GetCoreHRCompanyResp, *Response, error) - mockCoreHRGetCoreHRCompanyList func(ctx context.Context, request *GetCoreHRCompanyListReq, options ...MethodOptionFunc) (*GetCoreHRCompanyListResp, *Response, error) - mockCoreHRGetCoreHRCompensationChangeReasonList func(ctx context.Context, request *GetCoreHRCompensationChangeReasonListReq, options ...MethodOptionFunc) (*GetCoreHRCompensationChangeReasonListResp, *Response, error) - mockCoreHRGetCoreHRCompensationIndicatorList func(ctx context.Context, request *GetCoreHRCompensationIndicatorListReq, options ...MethodOptionFunc) (*GetCoreHRCompensationIndicatorListResp, *Response, error) - mockCoreHRGetCoreHRCompensationItemCategoryList func(ctx context.Context, request *GetCoreHRCompensationItemCategoryListReq, options ...MethodOptionFunc) (*GetCoreHRCompensationItemCategoryListResp, *Response, error) - mockCoreHRGetCoreHRCompensationItemList func(ctx context.Context, request *GetCoreHRCompensationItemListReq, options ...MethodOptionFunc) (*GetCoreHRCompensationItemListResp, *Response, error) - mockCoreHRGetCoreHRCompensationPlanList func(ctx context.Context, request *GetCoreHRCompensationPlanListReq, options ...MethodOptionFunc) (*GetCoreHRCompensationPlanListResp, *Response, error) - mockCoreHRGetCoreHRContract func(ctx context.Context, request *GetCoreHRContractReq, options ...MethodOptionFunc) (*GetCoreHRContractResp, *Response, error) - mockCoreHRGetCoreHRContractList func(ctx context.Context, request *GetCoreHRContractListReq, options ...MethodOptionFunc) (*GetCoreHRContractListResp, *Response, error) - mockCoreHRGetCoreHRCountryRegion func(ctx context.Context, request *GetCoreHRCountryRegionReq, options ...MethodOptionFunc) (*GetCoreHRCountryRegionResp, *Response, error) - mockCoreHRGetCoreHRCountryRegionList func(ctx context.Context, request *GetCoreHRCountryRegionListReq, options ...MethodOptionFunc) (*GetCoreHRCountryRegionListResp, *Response, error) - mockCoreHRGetCoreHRCurrency func(ctx context.Context, request *GetCoreHRCurrencyReq, options ...MethodOptionFunc) (*GetCoreHRCurrencyResp, *Response, error) - mockCoreHRGetCoreHRCurrencyList func(ctx context.Context, request *GetCoreHRCurrencyListReq, options ...MethodOptionFunc) (*GetCoreHRCurrencyListResp, *Response, error) - mockCoreHRGetCoreHRCustomField func(ctx context.Context, request *GetCoreHRCustomFieldReq, options ...MethodOptionFunc) (*GetCoreHRCustomFieldResp, *Response, error) - mockCoreHRGetCoreHRCustomFieldList func(ctx context.Context, request *GetCoreHRCustomFieldListReq, options ...MethodOptionFunc) (*GetCoreHRCustomFieldListResp, *Response, error) - mockCoreHRGetCoreHRCustomFieldObjectApiNameList func(ctx context.Context, request *GetCoreHRCustomFieldObjectApiNameListReq, options ...MethodOptionFunc) (*GetCoreHRCustomFieldObjectApiNameListResp, *Response, error) - mockCoreHRGetCoreHRDepartment func(ctx context.Context, request *GetCoreHRDepartmentReq, options ...MethodOptionFunc) (*GetCoreHRDepartmentResp, *Response, error) - mockCoreHRGetCoreHRDepartmentList func(ctx context.Context, request *GetCoreHRDepartmentListReq, options ...MethodOptionFunc) (*GetCoreHRDepartmentListResp, *Response, error) - mockCoreHRGetCoreHRDepartmentParentList func(ctx context.Context, request *GetCoreHRDepartmentParentListReq, options ...MethodOptionFunc) (*GetCoreHRDepartmentParentListResp, *Response, error) - mockCoreHRGetCoreHREmployeeType func(ctx context.Context, request *GetCoreHREmployeeTypeReq, options ...MethodOptionFunc) (*GetCoreHREmployeeTypeResp, *Response, error) - mockCoreHRGetCoreHREmployeeTypeList func(ctx context.Context, request *GetCoreHREmployeeTypeListReq, options ...MethodOptionFunc) (*GetCoreHREmployeeTypeListResp, *Response, error) - mockCoreHRGetCoreHRJob func(ctx context.Context, request *GetCoreHRJobReq, options ...MethodOptionFunc) (*GetCoreHRJobResp, *Response, error) - mockCoreHRGetCoreHRJobData func(ctx context.Context, request *GetCoreHRJobDataReq, options ...MethodOptionFunc) (*GetCoreHRJobDataResp, *Response, error) - mockCoreHRGetCoreHRJobDataList func(ctx context.Context, request *GetCoreHRJobDataListReq, options ...MethodOptionFunc) (*GetCoreHRJobDataListResp, *Response, error) - mockCoreHRGetCoreHRJobFamily func(ctx context.Context, request *GetCoreHRJobFamilyReq, options ...MethodOptionFunc) (*GetCoreHRJobFamilyResp, *Response, error) - mockCoreHRGetCoreHRJobFamilyList func(ctx context.Context, request *GetCoreHRJobFamilyListReq, options ...MethodOptionFunc) (*GetCoreHRJobFamilyListResp, *Response, error) - mockCoreHRGetCoreHRJobLevel func(ctx context.Context, request *GetCoreHRJobLevelReq, options ...MethodOptionFunc) (*GetCoreHRJobLevelResp, *Response, error) - mockCoreHRGetCoreHRJobLevelList func(ctx context.Context, request *GetCoreHRJobLevelListReq, options ...MethodOptionFunc) (*GetCoreHRJobLevelListResp, *Response, error) - mockCoreHRGetCoreHRJobList func(ctx context.Context, request *GetCoreHRJobListReq, options ...MethodOptionFunc) (*GetCoreHRJobListResp, *Response, error) - mockCoreHRGetCoreHRJobListV2 func(ctx context.Context, request *GetCoreHRJobListV2Req, options ...MethodOptionFunc) (*GetCoreHRJobListV2Resp, *Response, error) - mockCoreHRGetCoreHRJobV2 func(ctx context.Context, request *GetCoreHRJobV2Req, options ...MethodOptionFunc) (*GetCoreHRJobV2Resp, *Response, error) - mockCoreHRGetCoreHRLeaveBalanceList func(ctx context.Context, request *GetCoreHRLeaveBalanceListReq, options ...MethodOptionFunc) (*GetCoreHRLeaveBalanceListResp, *Response, error) - mockCoreHRGetCoreHRLeaveRequestHistoryList func(ctx context.Context, request *GetCoreHRLeaveRequestHistoryListReq, options ...MethodOptionFunc) (*GetCoreHRLeaveRequestHistoryListResp, *Response, error) - mockCoreHRGetCoreHRLeaveTypeList func(ctx context.Context, request *GetCoreHRLeaveTypeListReq, options ...MethodOptionFunc) (*GetCoreHRLeaveTypeListResp, *Response, error) - mockCoreHRGetCoreHRLocation func(ctx context.Context, request *GetCoreHRLocationReq, options ...MethodOptionFunc) (*GetCoreHRLocationResp, *Response, error) - mockCoreHRGetCoreHRLocationList func(ctx context.Context, request *GetCoreHRLocationListReq, options ...MethodOptionFunc) (*GetCoreHRLocationListResp, *Response, error) - mockCoreHRGetCoreHRNationalIDType func(ctx context.Context, request *GetCoreHRNationalIDTypeReq, options ...MethodOptionFunc) (*GetCoreHRNationalIDTypeResp, *Response, error) - mockCoreHRGetCoreHRNationalIDTypeList func(ctx context.Context, request *GetCoreHRNationalIDTypeListReq, options ...MethodOptionFunc) (*GetCoreHRNationalIDTypeListResp, *Response, error) - mockCoreHRGetCoreHROffboardingList func(ctx context.Context, request *GetCoreHROffboardingListReq, options ...MethodOptionFunc) (*GetCoreHROffboardingListResp, *Response, error) - mockCoreHRGetCoreHRPerson func(ctx context.Context, request *GetCoreHRPersonReq, options ...MethodOptionFunc) (*GetCoreHRPersonResp, *Response, error) - mockCoreHRGetCoreHRPreHire func(ctx context.Context, request *GetCoreHRPreHireReq, options ...MethodOptionFunc) (*GetCoreHRPreHireResp, *Response, error) - mockCoreHRGetCoreHRPreHireList func(ctx context.Context, request *GetCoreHRPreHireListReq, options ...MethodOptionFunc) (*GetCoreHRPreHireListResp, *Response, error) - mockCoreHRGetCoreHRProcess func(ctx context.Context, request *GetCoreHRProcessReq, options ...MethodOptionFunc) (*GetCoreHRProcessResp, *Response, error) - mockCoreHRGetCoreHRProcessFormVariableData func(ctx context.Context, request *GetCoreHRProcessFormVariableDataReq, options ...MethodOptionFunc) (*GetCoreHRProcessFormVariableDataResp, *Response, error) - mockCoreHRGetCoreHRProcessList func(ctx context.Context, request *GetCoreHRProcessListReq, options ...MethodOptionFunc) (*GetCoreHRProcessListResp, *Response, error) - mockCoreHRGetCoreHRSecurityGroupBp func(ctx context.Context, request *GetCoreHRSecurityGroupBpReq, options ...MethodOptionFunc) (*GetCoreHRSecurityGroupBpResp, *Response, error) - mockCoreHRGetCoreHRSecurityGroupList func(ctx context.Context, request *GetCoreHRSecurityGroupListReq, options ...MethodOptionFunc) (*GetCoreHRSecurityGroupListResp, *Response, error) - mockCoreHRGetCoreHRSubdivision func(ctx context.Context, request *GetCoreHRSubdivisionReq, options ...MethodOptionFunc) (*GetCoreHRSubdivisionResp, *Response, error) - mockCoreHRGetCoreHRSubdivisionList func(ctx context.Context, request *GetCoreHRSubdivisionListReq, options ...MethodOptionFunc) (*GetCoreHRSubdivisionListResp, *Response, error) - mockCoreHRGetCoreHRSubregion func(ctx context.Context, request *GetCoreHRSubregionReq, options ...MethodOptionFunc) (*GetCoreHRSubregionResp, *Response, error) - mockCoreHRGetCoreHRSubregionList func(ctx context.Context, request *GetCoreHRSubregionListReq, options ...MethodOptionFunc) (*GetCoreHRSubregionListResp, *Response, error) - mockCoreHRGetCoreHRTransferReasonList func(ctx context.Context, request *GetCoreHRTransferReasonListReq, options ...MethodOptionFunc) (*GetCoreHRTransferReasonListResp, *Response, error) - mockCoreHRGetCoreHRTransferTypeList func(ctx context.Context, request *GetCoreHRTransferTypeListReq, options ...MethodOptionFunc) (*GetCoreHRTransferTypeListResp, *Response, error) - mockCoreHRGetCoreHRWorkingHoursType func(ctx context.Context, request *GetCoreHRWorkingHoursTypeReq, options ...MethodOptionFunc) (*GetCoreHRWorkingHoursTypeResp, *Response, error) - mockCoreHRGetCoreHRWorkingHoursTypeList func(ctx context.Context, request *GetCoreHRWorkingHoursTypeListReq, options ...MethodOptionFunc) (*GetCoreHRWorkingHoursTypeListResp, *Response, error) - mockCoreHRGetCoreHrbpByDepartment func(ctx context.Context, request *GetCoreHrbpByDepartmentReq, options ...MethodOptionFunc) (*GetCoreHrbpByDepartmentResp, *Response, error) - mockCoreHRGetCoreHrbpList func(ctx context.Context, request *GetCoreHrbpListReq, options ...MethodOptionFunc) (*GetCoreHrbpListResp, *Response, error) - mockCoreHRMatchCoreHRCompensationStandard func(ctx context.Context, request *MatchCoreHRCompensationStandardReq, options ...MethodOptionFunc) (*MatchCoreHRCompensationStandardResp, *Response, error) - mockCoreHRQueryCoreHRCompensationArchive func(ctx context.Context, request *QueryCoreHRCompensationArchiveReq, options ...MethodOptionFunc) (*QueryCoreHRCompensationArchiveResp, *Response, error) - mockCoreHRQueryCoreHRDepartmentTimeline func(ctx context.Context, request *QueryCoreHRDepartmentTimelineReq, options ...MethodOptionFunc) (*QueryCoreHRDepartmentTimelineResp, *Response, error) - mockCoreHRQueryCoreHRJobData func(ctx context.Context, request *QueryCoreHRJobDataReq, options ...MethodOptionFunc) (*QueryCoreHRJobDataResp, *Response, error) - mockCoreHRQueryCoreHRJobGrade func(ctx context.Context, request *QueryCoreHRJobGradeReq, options ...MethodOptionFunc) (*QueryCoreHRJobGradeResp, *Response, error) - mockCoreHRSearchCoreHRAssignedUser func(ctx context.Context, request *SearchCoreHRAssignedUserReq, options ...MethodOptionFunc) (*SearchCoreHRAssignedUserResp, *Response, error) - mockCoreHRSearchCoreHRBank func(ctx context.Context, request *SearchCoreHRBankReq, options ...MethodOptionFunc) (*SearchCoreHRBankResp, *Response, error) - mockCoreHRSearchCoreHRBankBranch func(ctx context.Context, request *SearchCoreHRBankBranchReq, options ...MethodOptionFunc) (*SearchCoreHRBankBranchResp, *Response, error) - mockCoreHRSearchCoreHRCity func(ctx context.Context, request *SearchCoreHRCityReq, options ...MethodOptionFunc) (*SearchCoreHRCityResp, *Response, error) - mockCoreHRSearchCoreHRContract func(ctx context.Context, request *SearchCoreHRContractReq, options ...MethodOptionFunc) (*SearchCoreHRContractResp, *Response, error) - mockCoreHRSearchCoreHRCostCenter func(ctx context.Context, request *SearchCoreHRCostCenterReq, options ...MethodOptionFunc) (*SearchCoreHRCostCenterResp, *Response, error) - mockCoreHRSearchCoreHRCountryRegion func(ctx context.Context, request *SearchCoreHRCountryRegionReq, options ...MethodOptionFunc) (*SearchCoreHRCountryRegionResp, *Response, error) - mockCoreHRSearchCoreHRCountryRegionSubdivision func(ctx context.Context, request *SearchCoreHRCountryRegionSubdivisionReq, options ...MethodOptionFunc) (*SearchCoreHRCountryRegionSubdivisionResp, *Response, error) - mockCoreHRSearchCoreHRCurrency func(ctx context.Context, request *SearchCoreHRCurrencyReq, options ...MethodOptionFunc) (*SearchCoreHRCurrencyResp, *Response, error) - mockCoreHRSearchCoreHRDepartment func(ctx context.Context, request *SearchCoreHRDepartmentReq, options ...MethodOptionFunc) (*SearchCoreHRDepartmentResp, *Response, error) - mockCoreHRSearchCoreHRDistrict func(ctx context.Context, request *SearchCoreHRDistrictReq, options ...MethodOptionFunc) (*SearchCoreHRDistrictResp, *Response, error) - mockCoreHRSearchCoreHREmployee func(ctx context.Context, request *SearchCoreHREmployeeReq, options ...MethodOptionFunc) (*SearchCoreHREmployeeResp, *Response, error) - mockCoreHRSearchCoreHRJobChange func(ctx context.Context, request *SearchCoreHRJobChangeReq, options ...MethodOptionFunc) (*SearchCoreHRJobChangeResp, *Response, error) - mockCoreHRSearchCoreHRNationality func(ctx context.Context, request *SearchCoreHRNationalityReq, options ...MethodOptionFunc) (*SearchCoreHRNationalityResp, *Response, error) - mockCoreHRSearchCoreHROffboarding func(ctx context.Context, request *SearchCoreHROffboardingReq, options ...MethodOptionFunc) (*SearchCoreHROffboardingResp, *Response, error) - mockCoreHRSearchCoreHRPreHire func(ctx context.Context, request *SearchCoreHRPreHireReq, options ...MethodOptionFunc) (*SearchCoreHRPreHireResp, *Response, error) - mockCoreHRSearchCoreHRProbation func(ctx context.Context, request *SearchCoreHRProbationReq, options ...MethodOptionFunc) (*SearchCoreHRProbationResp, *Response, error) - mockCoreHRUpdateCoreHRCompany func(ctx context.Context, request *UpdateCoreHRCompanyReq, options ...MethodOptionFunc) (*UpdateCoreHRCompanyResp, *Response, error) - mockCoreHRUpdateCoreHRContract func(ctx context.Context, request *UpdateCoreHRContractReq, options ...MethodOptionFunc) (*UpdateCoreHRContractResp, *Response, error) - mockCoreHRUpdateCoreHRCostCenterVersion func(ctx context.Context, request *UpdateCoreHRCostCenterVersionReq, options ...MethodOptionFunc) (*UpdateCoreHRCostCenterVersionResp, *Response, error) - mockCoreHRUpdateCoreHRDepartment func(ctx context.Context, request *UpdateCoreHRDepartmentReq, options ...MethodOptionFunc) (*UpdateCoreHRDepartmentResp, *Response, error) - mockCoreHRUpdateCoreHREmployeeType func(ctx context.Context, request *UpdateCoreHREmployeeTypeReq, options ...MethodOptionFunc) (*UpdateCoreHREmployeeTypeResp, *Response, error) - mockCoreHRUpdateCoreHREmployment func(ctx context.Context, request *UpdateCoreHREmploymentReq, options ...MethodOptionFunc) (*UpdateCoreHREmploymentResp, *Response, error) - mockCoreHRUpdateCoreHRJob func(ctx context.Context, request *UpdateCoreHRJobReq, options ...MethodOptionFunc) (*UpdateCoreHRJobResp, *Response, error) - mockCoreHRUpdateCoreHRJobData func(ctx context.Context, request *UpdateCoreHRJobDataReq, options ...MethodOptionFunc) (*UpdateCoreHRJobDataResp, *Response, error) - mockCoreHRUpdateCoreHRJobFamily func(ctx context.Context, request *UpdateCoreHRJobFamilyReq, options ...MethodOptionFunc) (*UpdateCoreHRJobFamilyResp, *Response, error) - mockCoreHRUpdateCoreHRJobLevel func(ctx context.Context, request *UpdateCoreHRJobLevelReq, options ...MethodOptionFunc) (*UpdateCoreHRJobLevelResp, *Response, error) - mockCoreHRUpdateCoreHRNationalIDType func(ctx context.Context, request *UpdateCoreHRNationalIDTypeReq, options ...MethodOptionFunc) (*UpdateCoreHRNationalIDTypeResp, *Response, error) - mockCoreHRUpdateCoreHRPerson func(ctx context.Context, request *UpdateCoreHRPersonReq, options ...MethodOptionFunc) (*UpdateCoreHRPersonResp, *Response, error) - mockCoreHRUpdateCoreHRPreHire func(ctx context.Context, request *UpdateCoreHRPreHireReq, options ...MethodOptionFunc) (*UpdateCoreHRPreHireResp, *Response, error) - mockCoreHRUpdateCoreHRProbationAssessment func(ctx context.Context, request *UpdateCoreHRProbationAssessmentReq, options ...MethodOptionFunc) (*UpdateCoreHRProbationAssessmentResp, *Response, error) - mockCoreHRUpdateCoreHRWorkingHoursType func(ctx context.Context, request *UpdateCoreHRWorkingHoursTypeReq, options ...MethodOptionFunc) (*UpdateCoreHRWorkingHoursTypeResp, *Response, error) - mockCoreHRUploadCoreHRPersonFile func(ctx context.Context, request *UploadCoreHRPersonFileReq, options ...MethodOptionFunc) (*UploadCoreHRPersonFileResp, *Response, error) - mockDriveAddSheetDimensionRange func(ctx context.Context, request *AddSheetDimensionRangeReq, options ...MethodOptionFunc) (*AddSheetDimensionRangeResp, *Response, error) - mockDriveAddWikiSpaceMember func(ctx context.Context, request *AddWikiSpaceMemberReq, options ...MethodOptionFunc) (*AddWikiSpaceMemberResp, *Response, error) - mockDriveAppendSheetValue func(ctx context.Context, request *AppendSheetValueReq, options ...MethodOptionFunc) (*AppendSheetValueResp, *Response, error) - mockDriveBatchDeleteDocxBlock func(ctx context.Context, request *BatchDeleteDocxBlockReq, options ...MethodOptionFunc) (*BatchDeleteDocxBlockResp, *Response, error) - mockDriveBatchGetDriveComment func(ctx context.Context, request *BatchGetDriveCommentReq, options ...MethodOptionFunc) (*BatchGetDriveCommentResp, *Response, error) - mockDriveBatchGetDriveMediaTmpDownloadURL func(ctx context.Context, request *BatchGetDriveMediaTmpDownloadURLReq, options ...MethodOptionFunc) (*BatchGetDriveMediaTmpDownloadURLResp, *Response, error) - mockDriveBatchGetSheetValue func(ctx context.Context, request *BatchGetSheetValueReq, options ...MethodOptionFunc) (*BatchGetSheetValueResp, *Response, error) - mockDriveBatchSetSheetStyle func(ctx context.Context, request *BatchSetSheetStyleReq, options ...MethodOptionFunc) (*BatchSetSheetStyleResp, *Response, error) - mockDriveBatchSetSheetValue func(ctx context.Context, request *BatchSetSheetValueReq, options ...MethodOptionFunc) (*BatchSetSheetValueResp, *Response, error) - mockDriveBatchUpdateSheet func(ctx context.Context, request *BatchUpdateSheetReq, options ...MethodOptionFunc) (*BatchUpdateSheetResp, *Response, error) - mockDriveCheckDriveMemberPermission func(ctx context.Context, request *CheckDriveMemberPermissionReq, options ...MethodOptionFunc) (*CheckDriveMemberPermissionResp, *Response, error) - mockDriveCheckDriveMemberPermissionOld func(ctx context.Context, request *CheckDriveMemberPermissionOldReq, options ...MethodOptionFunc) (*CheckDriveMemberPermissionOldResp, *Response, error) - mockDriveCopyDriveFile func(ctx context.Context, request *CopyDriveFileReq, options ...MethodOptionFunc) (*CopyDriveFileResp, *Response, error) - mockDriveCopyWikiNode func(ctx context.Context, request *CopyWikiNodeReq, options ...MethodOptionFunc) (*CopyWikiNodeResp, *Response, error) - mockDriveCreateDocx func(ctx context.Context, request *CreateDocxReq, options ...MethodOptionFunc) (*CreateDocxResp, *Response, error) - mockDriveCreateDocxBlock func(ctx context.Context, request *CreateDocxBlockReq, options ...MethodOptionFunc) (*CreateDocxBlockResp, *Response, error) - mockDriveCreateDriveComment func(ctx context.Context, request *CreateDriveCommentReq, options ...MethodOptionFunc) (*CreateDriveCommentResp, *Response, error) - mockDriveCreateDriveDoc func(ctx context.Context, request *CreateDriveDocReq, options ...MethodOptionFunc) (*CreateDriveDocResp, *Response, error) - mockDriveCreateDriveExportTask func(ctx context.Context, request *CreateDriveExportTaskReq, options ...MethodOptionFunc) (*CreateDriveExportTaskResp, *Response, error) - mockDriveCreateDriveFile func(ctx context.Context, request *CreateDriveFileReq, options ...MethodOptionFunc) (*CreateDriveFileResp, *Response, error) - mockDriveCreateDriveFileShortcut func(ctx context.Context, request *CreateDriveFileShortcutReq, options ...MethodOptionFunc) (*CreateDriveFileShortcutResp, *Response, error) - mockDriveCreateDriveFileSubscription func(ctx context.Context, request *CreateDriveFileSubscriptionReq, options ...MethodOptionFunc) (*CreateDriveFileSubscriptionResp, *Response, error) - mockDriveCreateDriveFileVersion func(ctx context.Context, request *CreateDriveFileVersionReq, options ...MethodOptionFunc) (*CreateDriveFileVersionResp, *Response, error) - mockDriveCreateDriveFolder func(ctx context.Context, request *CreateDriveFolderReq, options ...MethodOptionFunc) (*CreateDriveFolderResp, *Response, error) - mockDriveCreateDriveImportTask func(ctx context.Context, request *CreateDriveImportTaskReq, options ...MethodOptionFunc) (*CreateDriveImportTaskResp, *Response, error) - mockDriveCreateDriveMemberPermission func(ctx context.Context, request *CreateDriveMemberPermissionReq, options ...MethodOptionFunc) (*CreateDriveMemberPermissionResp, *Response, error) - mockDriveCreateDriveMemberPermissionOld func(ctx context.Context, request *CreateDriveMemberPermissionOldReq, options ...MethodOptionFunc) (*CreateDriveMemberPermissionOldResp, *Response, error) - mockDriveCreateDrivePermissionPublicPassword func(ctx context.Context, request *CreateDrivePermissionPublicPasswordReq, options ...MethodOptionFunc) (*CreateDrivePermissionPublicPasswordResp, *Response, error) - mockDriveCreateSheetConditionFormat func(ctx context.Context, request *CreateSheetConditionFormatReq, options ...MethodOptionFunc) (*CreateSheetConditionFormatResp, *Response, error) - mockDriveCreateSheetDataValidationDropdown func(ctx context.Context, request *CreateSheetDataValidationDropdownReq, options ...MethodOptionFunc) (*CreateSheetDataValidationDropdownResp, *Response, error) - mockDriveCreateSheetFilter func(ctx context.Context, request *CreateSheetFilterReq, options ...MethodOptionFunc) (*CreateSheetFilterResp, *Response, error) - mockDriveCreateSheetFilterView func(ctx context.Context, request *CreateSheetFilterViewReq, options ...MethodOptionFunc) (*CreateSheetFilterViewResp, *Response, error) - mockDriveCreateSheetFilterViewCondition func(ctx context.Context, request *CreateSheetFilterViewConditionReq, options ...MethodOptionFunc) (*CreateSheetFilterViewConditionResp, *Response, error) - mockDriveCreateSheetFloatImage func(ctx context.Context, request *CreateSheetFloatImageReq, options ...MethodOptionFunc) (*CreateSheetFloatImageResp, *Response, error) - mockDriveCreateSheetProtectedDimension func(ctx context.Context, request *CreateSheetProtectedDimensionReq, options ...MethodOptionFunc) (*CreateSheetProtectedDimensionResp, *Response, error) - mockDriveCreateSpreadsheet func(ctx context.Context, request *CreateSpreadsheetReq, options ...MethodOptionFunc) (*CreateSpreadsheetResp, *Response, error) - mockDriveCreateWikiNode func(ctx context.Context, request *CreateWikiNodeReq, options ...MethodOptionFunc) (*CreateWikiNodeResp, *Response, error) - mockDriveCreateWikiSpace func(ctx context.Context, request *CreateWikiSpaceReq, options ...MethodOptionFunc) (*CreateWikiSpaceResp, *Response, error) - mockDriveDeleteDriveComment func(ctx context.Context, request *DeleteDriveCommentReq, options ...MethodOptionFunc) (*DeleteDriveCommentResp, *Response, error) - mockDriveDeleteDriveFile func(ctx context.Context, request *DeleteDriveFileReq, options ...MethodOptionFunc) (*DeleteDriveFileResp, *Response, error) - mockDriveDeleteDriveFileVersion func(ctx context.Context, request *DeleteDriveFileVersionReq, options ...MethodOptionFunc) (*DeleteDriveFileVersionResp, *Response, error) - mockDriveDeleteDriveMemberPermission func(ctx context.Context, request *DeleteDriveMemberPermissionReq, options ...MethodOptionFunc) (*DeleteDriveMemberPermissionResp, *Response, error) - mockDriveDeleteDriveMemberPermissionOld func(ctx context.Context, request *DeleteDriveMemberPermissionOldReq, options ...MethodOptionFunc) (*DeleteDriveMemberPermissionOldResp, *Response, error) - mockDriveDeleteDrivePermissionPublicPassword func(ctx context.Context, request *DeleteDrivePermissionPublicPasswordReq, options ...MethodOptionFunc) (*DeleteDrivePermissionPublicPasswordResp, *Response, error) - mockDriveDeleteDriveSheetFile func(ctx context.Context, request *DeleteDriveSheetFileReq, options ...MethodOptionFunc) (*DeleteDriveSheetFileResp, *Response, error) - mockDriveDeleteSheetConditionFormat func(ctx context.Context, request *DeleteSheetConditionFormatReq, options ...MethodOptionFunc) (*DeleteSheetConditionFormatResp, *Response, error) - mockDriveDeleteSheetDataValidationDropdown func(ctx context.Context, request *DeleteSheetDataValidationDropdownReq, options ...MethodOptionFunc) (*DeleteSheetDataValidationDropdownResp, *Response, error) - mockDriveDeleteSheetDimensionRange func(ctx context.Context, request *DeleteSheetDimensionRangeReq, options ...MethodOptionFunc) (*DeleteSheetDimensionRangeResp, *Response, error) - mockDriveDeleteSheetFilter func(ctx context.Context, request *DeleteSheetFilterReq, options ...MethodOptionFunc) (*DeleteSheetFilterResp, *Response, error) - mockDriveDeleteSheetFilterView func(ctx context.Context, request *DeleteSheetFilterViewReq, options ...MethodOptionFunc) (*DeleteSheetFilterViewResp, *Response, error) - mockDriveDeleteSheetFilterViewCondition func(ctx context.Context, request *DeleteSheetFilterViewConditionReq, options ...MethodOptionFunc) (*DeleteSheetFilterViewConditionResp, *Response, error) - mockDriveDeleteSheetFloatImage func(ctx context.Context, request *DeleteSheetFloatImageReq, options ...MethodOptionFunc) (*DeleteSheetFloatImageResp, *Response, error) - mockDriveDeleteSheetProtectedDimension func(ctx context.Context, request *DeleteSheetProtectedDimensionReq, options ...MethodOptionFunc) (*DeleteSheetProtectedDimensionResp, *Response, error) - mockDriveDeleteWikiSpaceMember func(ctx context.Context, request *DeleteWikiSpaceMemberReq, options ...MethodOptionFunc) (*DeleteWikiSpaceMemberResp, *Response, error) - mockDriveDownloadDriveExportTask func(ctx context.Context, request *DownloadDriveExportTaskReq, options ...MethodOptionFunc) (*DownloadDriveExportTaskResp, *Response, error) - mockDriveDownloadDriveFile func(ctx context.Context, request *DownloadDriveFileReq, options ...MethodOptionFunc) (*DownloadDriveFileResp, *Response, error) - mockDriveDownloadDriveMedia func(ctx context.Context, request *DownloadDriveMediaReq, options ...MethodOptionFunc) (*DownloadDriveMediaResp, *Response, error) - mockDriveFindSheet func(ctx context.Context, request *FindSheetReq, options ...MethodOptionFunc) (*FindSheetResp, *Response, error) - mockDriveFinishUploadDriveFile func(ctx context.Context, request *FinishUploadDriveFileReq, options ...MethodOptionFunc) (*FinishUploadDriveFileResp, *Response, error) - mockDriveFinishUploadDriveMedia func(ctx context.Context, request *FinishUploadDriveMediaReq, options ...MethodOptionFunc) (*FinishUploadDriveMediaResp, *Response, error) - mockDriveGetDocxBlock func(ctx context.Context, request *GetDocxBlockReq, options ...MethodOptionFunc) (*GetDocxBlockResp, *Response, error) - mockDriveGetDocxBlockListOfBlock func(ctx context.Context, request *GetDocxBlockListOfBlockReq, options ...MethodOptionFunc) (*GetDocxBlockListOfBlockResp, *Response, error) - mockDriveGetDocxBlockListOfDocument func(ctx context.Context, request *GetDocxBlockListOfDocumentReq, options ...MethodOptionFunc) (*GetDocxBlockListOfDocumentResp, *Response, error) - mockDriveGetDocxDocument func(ctx context.Context, request *GetDocxDocumentReq, options ...MethodOptionFunc) (*GetDocxDocumentResp, *Response, error) - mockDriveGetDocxDocumentRawContent func(ctx context.Context, request *GetDocxDocumentRawContentReq, options ...MethodOptionFunc) (*GetDocxDocumentRawContentResp, *Response, error) - mockDriveGetDriveComment func(ctx context.Context, request *GetDriveCommentReq, options ...MethodOptionFunc) (*GetDriveCommentResp, *Response, error) - mockDriveGetDriveCommentList func(ctx context.Context, request *GetDriveCommentListReq, options ...MethodOptionFunc) (*GetDriveCommentListResp, *Response, error) - mockDriveGetDriveCommentReplyList func(ctx context.Context, request *GetDriveCommentReplyListReq, options ...MethodOptionFunc) (*GetDriveCommentReplyListResp, *Response, error) - mockDriveGetDriveDocContent func(ctx context.Context, request *GetDriveDocContentReq, options ...MethodOptionFunc) (*GetDriveDocContentResp, *Response, error) - mockDriveGetDriveDocMeta func(ctx context.Context, request *GetDriveDocMetaReq, options ...MethodOptionFunc) (*GetDriveDocMetaResp, *Response, error) - mockDriveGetDriveDocRawContent func(ctx context.Context, request *GetDriveDocRawContentReq, options ...MethodOptionFunc) (*GetDriveDocRawContentResp, *Response, error) - mockDriveGetDriveExportTask func(ctx context.Context, request *GetDriveExportTaskReq, options ...MethodOptionFunc) (*GetDriveExportTaskResp, *Response, error) - mockDriveGetDriveFileList func(ctx context.Context, request *GetDriveFileListReq, options ...MethodOptionFunc) (*GetDriveFileListResp, *Response, error) - mockDriveGetDriveFileMeta func(ctx context.Context, request *GetDriveFileMetaReq, options ...MethodOptionFunc) (*GetDriveFileMetaResp, *Response, error) - mockDriveGetDriveFileStatistics func(ctx context.Context, request *GetDriveFileStatisticsReq, options ...MethodOptionFunc) (*GetDriveFileStatisticsResp, *Response, error) - mockDriveGetDriveFileSubscription func(ctx context.Context, request *GetDriveFileSubscriptionReq, options ...MethodOptionFunc) (*GetDriveFileSubscriptionResp, *Response, error) - mockDriveGetDriveFileTask func(ctx context.Context, request *GetDriveFileTaskReq, options ...MethodOptionFunc) (*GetDriveFileTaskResp, *Response, error) - mockDriveGetDriveFileVersion func(ctx context.Context, request *GetDriveFileVersionReq, options ...MethodOptionFunc) (*GetDriveFileVersionResp, *Response, error) - mockDriveGetDriveFileVersionList func(ctx context.Context, request *GetDriveFileVersionListReq, options ...MethodOptionFunc) (*GetDriveFileVersionListResp, *Response, error) - mockDriveGetDriveFileViewRecordList func(ctx context.Context, request *GetDriveFileViewRecordListReq, options ...MethodOptionFunc) (*GetDriveFileViewRecordListResp, *Response, error) - mockDriveGetDriveFolderChildren func(ctx context.Context, request *GetDriveFolderChildrenReq, options ...MethodOptionFunc) (*GetDriveFolderChildrenResp, *Response, error) - mockDriveGetDriveFolderMeta func(ctx context.Context, request *GetDriveFolderMetaReq, options ...MethodOptionFunc) (*GetDriveFolderMetaResp, *Response, error) - mockDriveGetDriveImportTask func(ctx context.Context, request *GetDriveImportTaskReq, options ...MethodOptionFunc) (*GetDriveImportTaskResp, *Response, error) - mockDriveGetDriveMemberPermissionList func(ctx context.Context, request *GetDriveMemberPermissionListReq, options ...MethodOptionFunc) (*GetDriveMemberPermissionListResp, *Response, error) - mockDriveGetDriveMemberPermissionListOld func(ctx context.Context, request *GetDriveMemberPermissionListOldReq, options ...MethodOptionFunc) (*GetDriveMemberPermissionListOldResp, *Response, error) - mockDriveGetDrivePublicPermission func(ctx context.Context, request *GetDrivePublicPermissionReq, options ...MethodOptionFunc) (*GetDrivePublicPermissionResp, *Response, error) - mockDriveGetDrivePublicPermissionOld func(ctx context.Context, request *GetDrivePublicPermissionOldReq, options ...MethodOptionFunc) (*GetDrivePublicPermissionOldResp, *Response, error) - mockDriveGetDrivePublicPermissionV2 func(ctx context.Context, request *GetDrivePublicPermissionV2Req, options ...MethodOptionFunc) (*GetDrivePublicPermissionV2Resp, *Response, error) - mockDriveGetDriveRootFolderMeta func(ctx context.Context, request *GetDriveRootFolderMetaReq, options ...MethodOptionFunc) (*GetDriveRootFolderMetaResp, *Response, error) - mockDriveGetSheet func(ctx context.Context, request *GetSheetReq, options ...MethodOptionFunc) (*GetSheetResp, *Response, error) - mockDriveGetSheetConditionFormat func(ctx context.Context, request *GetSheetConditionFormatReq, options ...MethodOptionFunc) (*GetSheetConditionFormatResp, *Response, error) - mockDriveGetSheetDataValidationDropdown func(ctx context.Context, request *GetSheetDataValidationDropdownReq, options ...MethodOptionFunc) (*GetSheetDataValidationDropdownResp, *Response, error) - mockDriveGetSheetFilter func(ctx context.Context, request *GetSheetFilterReq, options ...MethodOptionFunc) (*GetSheetFilterResp, *Response, error) - mockDriveGetSheetFilterView func(ctx context.Context, request *GetSheetFilterViewReq, options ...MethodOptionFunc) (*GetSheetFilterViewResp, *Response, error) - mockDriveGetSheetFilterViewCondition func(ctx context.Context, request *GetSheetFilterViewConditionReq, options ...MethodOptionFunc) (*GetSheetFilterViewConditionResp, *Response, error) - mockDriveGetSheetFloatImage func(ctx context.Context, request *GetSheetFloatImageReq, options ...MethodOptionFunc) (*GetSheetFloatImageResp, *Response, error) - mockDriveGetSheetList func(ctx context.Context, request *GetSheetListReq, options ...MethodOptionFunc) (*GetSheetListResp, *Response, error) - mockDriveGetSheetMeta func(ctx context.Context, request *GetSheetMetaReq, options ...MethodOptionFunc) (*GetSheetMetaResp, *Response, error) - mockDriveGetSheetProtectedDimension func(ctx context.Context, request *GetSheetProtectedDimensionReq, options ...MethodOptionFunc) (*GetSheetProtectedDimensionResp, *Response, error) - mockDriveGetSheetValue func(ctx context.Context, request *GetSheetValueReq, options ...MethodOptionFunc) (*GetSheetValueResp, *Response, error) - mockDriveGetSpreadsheet func(ctx context.Context, request *GetSpreadsheetReq, options ...MethodOptionFunc) (*GetSpreadsheetResp, *Response, error) - mockDriveGetSubscribeDriveFile func(ctx context.Context, request *GetSubscribeDriveFileReq, options ...MethodOptionFunc) (*GetSubscribeDriveFileResp, *Response, error) - mockDriveGetWhiteboardNodeList func(ctx context.Context, request *GetWhiteboardNodeListReq, options ...MethodOptionFunc) (*GetWhiteboardNodeListResp, *Response, error) - mockDriveGetWikiNode func(ctx context.Context, request *GetWikiNodeReq, options ...MethodOptionFunc) (*GetWikiNodeResp, *Response, error) - mockDriveGetWikiNodeList func(ctx context.Context, request *GetWikiNodeListReq, options ...MethodOptionFunc) (*GetWikiNodeListResp, *Response, error) - mockDriveGetWikiSpace func(ctx context.Context, request *GetWikiSpaceReq, options ...MethodOptionFunc) (*GetWikiSpaceResp, *Response, error) - mockDriveGetWikiSpaceList func(ctx context.Context, request *GetWikiSpaceListReq, options ...MethodOptionFunc) (*GetWikiSpaceListResp, *Response, error) - mockDriveGetWikiTask func(ctx context.Context, request *GetWikiTaskReq, options ...MethodOptionFunc) (*GetWikiTaskResp, *Response, error) - mockDriveImportSheet func(ctx context.Context, request *ImportSheetReq, options ...MethodOptionFunc) (*ImportSheetResp, *Response, error) - mockDriveInsertSheetDimensionRange func(ctx context.Context, request *InsertSheetDimensionRangeReq, options ...MethodOptionFunc) (*InsertSheetDimensionRangeResp, *Response, error) - mockDriveMergeSheetCell func(ctx context.Context, request *MergeSheetCellReq, options ...MethodOptionFunc) (*MergeSheetCellResp, *Response, error) - mockDriveMoveDocsToWiki func(ctx context.Context, request *MoveDocsToWikiReq, options ...MethodOptionFunc) (*MoveDocsToWikiResp, *Response, error) - mockDriveMoveDriveFile func(ctx context.Context, request *MoveDriveFileReq, options ...MethodOptionFunc) (*MoveDriveFileResp, *Response, error) - mockDriveMoveSheetDimension func(ctx context.Context, request *MoveSheetDimensionReq, options ...MethodOptionFunc) (*MoveSheetDimensionResp, *Response, error) - mockDriveMoveWikiNode func(ctx context.Context, request *MoveWikiNodeReq, options ...MethodOptionFunc) (*MoveWikiNodeResp, *Response, error) - mockDrivePartUploadDriveFile func(ctx context.Context, request *PartUploadDriveFileReq, options ...MethodOptionFunc) (*PartUploadDriveFileResp, *Response, error) - mockDrivePartUploadDriveMedia func(ctx context.Context, request *PartUploadDriveMediaReq, options ...MethodOptionFunc) (*PartUploadDriveMediaResp, *Response, error) - mockDrivePrepareUploadDriveFile func(ctx context.Context, request *PrepareUploadDriveFileReq, options ...MethodOptionFunc) (*PrepareUploadDriveFileResp, *Response, error) - mockDrivePrepareUploadDriveMedia func(ctx context.Context, request *PrepareUploadDriveMediaReq, options ...MethodOptionFunc) (*PrepareUploadDriveMediaResp, *Response, error) - mockDrivePrependSheetValue func(ctx context.Context, request *PrependSheetValueReq, options ...MethodOptionFunc) (*PrependSheetValueResp, *Response, error) - mockDriveQuerySheetFilterView func(ctx context.Context, request *QuerySheetFilterViewReq, options ...MethodOptionFunc) (*QuerySheetFilterViewResp, *Response, error) - mockDriveQuerySheetFilterViewCondition func(ctx context.Context, request *QuerySheetFilterViewConditionReq, options ...MethodOptionFunc) (*QuerySheetFilterViewConditionResp, *Response, error) - mockDriveQuerySheetFloatImage func(ctx context.Context, request *QuerySheetFloatImageReq, options ...MethodOptionFunc) (*QuerySheetFloatImageResp, *Response, error) - mockDriveReplaceSheet func(ctx context.Context, request *ReplaceSheetReq, options ...MethodOptionFunc) (*ReplaceSheetResp, *Response, error) - mockDriveSearchDriveFile func(ctx context.Context, request *SearchDriveFileReq, options ...MethodOptionFunc) (*SearchDriveFileResp, *Response, error) - mockDriveSetSheetStyle func(ctx context.Context, request *SetSheetStyleReq, options ...MethodOptionFunc) (*SetSheetStyleResp, *Response, error) - mockDriveSetSheetValue func(ctx context.Context, request *SetSheetValueReq, options ...MethodOptionFunc) (*SetSheetValueResp, *Response, error) - mockDriveSetSheetValueImage func(ctx context.Context, request *SetSheetValueImageReq, options ...MethodOptionFunc) (*SetSheetValueImageResp, *Response, error) - mockDriveSubscribeDriveFile func(ctx context.Context, request *SubscribeDriveFileReq, options ...MethodOptionFunc) (*SubscribeDriveFileResp, *Response, error) - mockDriveTransferDriveMemberPermission func(ctx context.Context, request *TransferDriveMemberPermissionReq, options ...MethodOptionFunc) (*TransferDriveMemberPermissionResp, *Response, error) - mockDriveTransferDriveOwnerPermission func(ctx context.Context, request *TransferDriveOwnerPermissionReq, options ...MethodOptionFunc) (*TransferDriveOwnerPermissionResp, *Response, error) - mockDriveUnmergeSheetCell func(ctx context.Context, request *UnmergeSheetCellReq, options ...MethodOptionFunc) (*UnmergeSheetCellResp, *Response, error) - mockDriveUnsubscribeDriveFile func(ctx context.Context, request *UnsubscribeDriveFileReq, options ...MethodOptionFunc) (*UnsubscribeDriveFileResp, *Response, error) - mockDriveUpdateDocxBlock func(ctx context.Context, request *UpdateDocxBlockReq, options ...MethodOptionFunc) (*UpdateDocxBlockResp, *Response, error) - mockDriveUpdateDriveComment func(ctx context.Context, request *UpdateDriveCommentReq, options ...MethodOptionFunc) (*UpdateDriveCommentResp, *Response, error) - mockDriveUpdateDriveCommentPatch func(ctx context.Context, request *UpdateDriveCommentPatchReq, options ...MethodOptionFunc) (*UpdateDriveCommentPatchResp, *Response, error) - mockDriveUpdateDriveDocContent func(ctx context.Context, request *UpdateDriveDocContentReq, options ...MethodOptionFunc) (*UpdateDriveDocContentResp, *Response, error) - mockDriveUpdateDriveFileSubscription func(ctx context.Context, request *UpdateDriveFileSubscriptionReq, options ...MethodOptionFunc) (*UpdateDriveFileSubscriptionResp, *Response, error) - mockDriveUpdateDriveMemberPermission func(ctx context.Context, request *UpdateDriveMemberPermissionReq, options ...MethodOptionFunc) (*UpdateDriveMemberPermissionResp, *Response, error) - mockDriveUpdateDriveMemberPermissionOld func(ctx context.Context, request *UpdateDriveMemberPermissionOldReq, options ...MethodOptionFunc) (*UpdateDriveMemberPermissionOldResp, *Response, error) - mockDriveUpdateDrivePermissionPublicPassword func(ctx context.Context, request *UpdateDrivePermissionPublicPasswordReq, options ...MethodOptionFunc) (*UpdateDrivePermissionPublicPasswordResp, *Response, error) - mockDriveUpdateDrivePublicPermission func(ctx context.Context, request *UpdateDrivePublicPermissionReq, options ...MethodOptionFunc) (*UpdateDrivePublicPermissionResp, *Response, error) - mockDriveUpdateDrivePublicPermissionV2 func(ctx context.Context, request *UpdateDrivePublicPermissionV2Req, options ...MethodOptionFunc) (*UpdateDrivePublicPermissionV2Resp, *Response, error) - mockDriveUpdateSheetConditionFormat func(ctx context.Context, request *UpdateSheetConditionFormatReq, options ...MethodOptionFunc) (*UpdateSheetConditionFormatResp, *Response, error) - mockDriveUpdateSheetDataValidationDropdown func(ctx context.Context, request *UpdateSheetDataValidationDropdownReq, options ...MethodOptionFunc) (*UpdateSheetDataValidationDropdownResp, *Response, error) - mockDriveUpdateSheetDimensionRange func(ctx context.Context, request *UpdateSheetDimensionRangeReq, options ...MethodOptionFunc) (*UpdateSheetDimensionRangeResp, *Response, error) - mockDriveUpdateSheetFilter func(ctx context.Context, request *UpdateSheetFilterReq, options ...MethodOptionFunc) (*UpdateSheetFilterResp, *Response, error) - mockDriveUpdateSheetFilterView func(ctx context.Context, request *UpdateSheetFilterViewReq, options ...MethodOptionFunc) (*UpdateSheetFilterViewResp, *Response, error) - mockDriveUpdateSheetFilterViewCondition func(ctx context.Context, request *UpdateSheetFilterViewConditionReq, options ...MethodOptionFunc) (*UpdateSheetFilterViewConditionResp, *Response, error) - mockDriveUpdateSheetFloatImage func(ctx context.Context, request *UpdateSheetFloatImageReq, options ...MethodOptionFunc) (*UpdateSheetFloatImageResp, *Response, error) - mockDriveUpdateSheetProperty func(ctx context.Context, request *UpdateSheetPropertyReq, options ...MethodOptionFunc) (*UpdateSheetPropertyResp, *Response, error) - mockDriveUpdateSheetProtectedDimension func(ctx context.Context, request *UpdateSheetProtectedDimensionReq, options ...MethodOptionFunc) (*UpdateSheetProtectedDimensionResp, *Response, error) - mockDriveUpdateSpreadsheet func(ctx context.Context, request *UpdateSpreadsheetReq, options ...MethodOptionFunc) (*UpdateSpreadsheetResp, *Response, error) - mockDriveUpdateWikiNodeTitle func(ctx context.Context, request *UpdateWikiNodeTitleReq, options ...MethodOptionFunc) (*UpdateWikiNodeTitleResp, *Response, error) - mockDriveUpdateWikiSpaceSetting func(ctx context.Context, request *UpdateWikiSpaceSettingReq, options ...MethodOptionFunc) (*UpdateWikiSpaceSettingResp, *Response, error) - mockDriveUploadDriveFile func(ctx context.Context, request *UploadDriveFileReq, options ...MethodOptionFunc) (*UploadDriveFileResp, *Response, error) - mockDriveUploadDriveMedia func(ctx context.Context, request *UploadDriveMediaReq, options ...MethodOptionFunc) (*UploadDriveMediaResp, *Response, error) - mockEHRDownloadEHRAttachments func(ctx context.Context, request *DownloadEHRAttachmentsReq, options ...MethodOptionFunc) (*DownloadEHRAttachmentsResp, *Response, error) - mockEHRGetEHREmployeeList func(ctx context.Context, request *GetEHREmployeeListReq, options ...MethodOptionFunc) (*GetEHREmployeeListResp, *Response, error) - mockEventGetEventOutboundIpList func(ctx context.Context, request *GetEventOutboundIpListReq, options ...MethodOptionFunc) (*GetEventOutboundIpListResp, *Response, error) - mockFileDownloadFile func(ctx context.Context, request *DownloadFileReq, options ...MethodOptionFunc) (*DownloadFileResp, *Response, error) - mockFileDownloadImage func(ctx context.Context, request *DownloadImageReq, options ...MethodOptionFunc) (*DownloadImageResp, *Response, error) - mockFileUploadFile func(ctx context.Context, request *UploadFileReq, options ...MethodOptionFunc) (*UploadFileResp, *Response, error) - mockFileUploadImage func(ctx context.Context, request *UploadImageReq, options ...MethodOptionFunc) (*UploadImageResp, *Response, error) - mockHelpdeskAnswerHelpdeskTicketUserQuery func(ctx context.Context, request *AnswerHelpdeskTicketUserQueryReq, options ...MethodOptionFunc) (*AnswerHelpdeskTicketUserQueryResp, *Response, error) - mockHelpdeskCancelApproveHelpdeskNotification func(ctx context.Context, request *CancelApproveHelpdeskNotificationReq, options ...MethodOptionFunc) (*CancelApproveHelpdeskNotificationResp, *Response, error) - mockHelpdeskCancelSendHelpdeskNotification func(ctx context.Context, request *CancelSendHelpdeskNotificationReq, options ...MethodOptionFunc) (*CancelSendHelpdeskNotificationResp, *Response, error) - mockHelpdeskCreateHelpdeskAgentSchedule func(ctx context.Context, request *CreateHelpdeskAgentScheduleReq, options ...MethodOptionFunc) (*CreateHelpdeskAgentScheduleResp, *Response, error) - mockHelpdeskCreateHelpdeskAgentSkill func(ctx context.Context, request *CreateHelpdeskAgentSkillReq, options ...MethodOptionFunc) (*CreateHelpdeskAgentSkillResp, *Response, error) - mockHelpdeskCreateHelpdeskCategory func(ctx context.Context, request *CreateHelpdeskCategoryReq, options ...MethodOptionFunc) (*CreateHelpdeskCategoryResp, *Response, error) - mockHelpdeskCreateHelpdeskFAQ func(ctx context.Context, request *CreateHelpdeskFAQReq, options ...MethodOptionFunc) (*CreateHelpdeskFAQResp, *Response, error) - mockHelpdeskCreateHelpdeskNotification func(ctx context.Context, request *CreateHelpdeskNotificationReq, options ...MethodOptionFunc) (*CreateHelpdeskNotificationResp, *Response, error) - mockHelpdeskCreateHelpdeskTicketCustomizedField func(ctx context.Context, request *CreateHelpdeskTicketCustomizedFieldReq, options ...MethodOptionFunc) (*CreateHelpdeskTicketCustomizedFieldResp, *Response, error) - mockHelpdeskDeleteHelpdeskAgentSchedule func(ctx context.Context, request *DeleteHelpdeskAgentScheduleReq, options ...MethodOptionFunc) (*DeleteHelpdeskAgentScheduleResp, *Response, error) - mockHelpdeskDeleteHelpdeskAgentSkill func(ctx context.Context, request *DeleteHelpdeskAgentSkillReq, options ...MethodOptionFunc) (*DeleteHelpdeskAgentSkillResp, *Response, error) - mockHelpdeskDeleteHelpdeskCategory func(ctx context.Context, request *DeleteHelpdeskCategoryReq, options ...MethodOptionFunc) (*DeleteHelpdeskCategoryResp, *Response, error) - mockHelpdeskDeleteHelpdeskFAQ func(ctx context.Context, request *DeleteHelpdeskFAQReq, options ...MethodOptionFunc) (*DeleteHelpdeskFAQResp, *Response, error) - mockHelpdeskDeleteHelpdeskTicketCustomizedField func(ctx context.Context, request *DeleteHelpdeskTicketCustomizedFieldReq, options ...MethodOptionFunc) (*DeleteHelpdeskTicketCustomizedFieldResp, *Response, error) - mockHelpdeskDownloadHelpdeskTicketImage func(ctx context.Context, request *DownloadHelpdeskTicketImageReq, options ...MethodOptionFunc) (*DownloadHelpdeskTicketImageResp, *Response, error) - mockHelpdeskExecuteSendHelpdeskNotification func(ctx context.Context, request *ExecuteSendHelpdeskNotificationReq, options ...MethodOptionFunc) (*ExecuteSendHelpdeskNotificationResp, *Response, error) - mockHelpdeskGetHelpdeskAgentEmail func(ctx context.Context, request *GetHelpdeskAgentEmailReq, options ...MethodOptionFunc) (*GetHelpdeskAgentEmailResp, *Response, error) - mockHelpdeskGetHelpdeskAgentSchedule func(ctx context.Context, request *GetHelpdeskAgentScheduleReq, options ...MethodOptionFunc) (*GetHelpdeskAgentScheduleResp, *Response, error) - mockHelpdeskGetHelpdeskAgentScheduleList func(ctx context.Context, request *GetHelpdeskAgentScheduleListReq, options ...MethodOptionFunc) (*GetHelpdeskAgentScheduleListResp, *Response, error) - mockHelpdeskGetHelpdeskAgentSkill func(ctx context.Context, request *GetHelpdeskAgentSkillReq, options ...MethodOptionFunc) (*GetHelpdeskAgentSkillResp, *Response, error) - mockHelpdeskGetHelpdeskAgentSkillList func(ctx context.Context, request *GetHelpdeskAgentSkillListReq, options ...MethodOptionFunc) (*GetHelpdeskAgentSkillListResp, *Response, error) - mockHelpdeskGetHelpdeskAgentSkillRuleList func(ctx context.Context, request *GetHelpdeskAgentSkillRuleListReq, options ...MethodOptionFunc) (*GetHelpdeskAgentSkillRuleListResp, *Response, error) - mockHelpdeskGetHelpdeskCategory func(ctx context.Context, request *GetHelpdeskCategoryReq, options ...MethodOptionFunc) (*GetHelpdeskCategoryResp, *Response, error) - mockHelpdeskGetHelpdeskCategoryList func(ctx context.Context, request *GetHelpdeskCategoryListReq, options ...MethodOptionFunc) (*GetHelpdeskCategoryListResp, *Response, error) - mockHelpdeskGetHelpdeskFAQ func(ctx context.Context, request *GetHelpdeskFAQReq, options ...MethodOptionFunc) (*GetHelpdeskFAQResp, *Response, error) - mockHelpdeskGetHelpdeskFAQImage func(ctx context.Context, request *GetHelpdeskFAQImageReq, options ...MethodOptionFunc) (*GetHelpdeskFAQImageResp, *Response, error) - mockHelpdeskGetHelpdeskFAQList func(ctx context.Context, request *GetHelpdeskFAQListReq, options ...MethodOptionFunc) (*GetHelpdeskFAQListResp, *Response, error) - mockHelpdeskGetHelpdeskNotification func(ctx context.Context, request *GetHelpdeskNotificationReq, options ...MethodOptionFunc) (*GetHelpdeskNotificationResp, *Response, error) - mockHelpdeskGetHelpdeskTicket func(ctx context.Context, request *GetHelpdeskTicketReq, options ...MethodOptionFunc) (*GetHelpdeskTicketResp, *Response, error) - mockHelpdeskGetHelpdeskTicketCustomizedField func(ctx context.Context, request *GetHelpdeskTicketCustomizedFieldReq, options ...MethodOptionFunc) (*GetHelpdeskTicketCustomizedFieldResp, *Response, error) - mockHelpdeskGetHelpdeskTicketCustomizedFieldList func(ctx context.Context, request *GetHelpdeskTicketCustomizedFieldListReq, options ...MethodOptionFunc) (*GetHelpdeskTicketCustomizedFieldListResp, *Response, error) - mockHelpdeskGetHelpdeskTicketCustomizedFields func(ctx context.Context, request *GetHelpdeskTicketCustomizedFieldsReq, options ...MethodOptionFunc) (*GetHelpdeskTicketCustomizedFieldsResp, *Response, error) - mockHelpdeskGetHelpdeskTicketList func(ctx context.Context, request *GetHelpdeskTicketListReq, options ...MethodOptionFunc) (*GetHelpdeskTicketListResp, *Response, error) - mockHelpdeskGetHelpdeskTicketMessageList func(ctx context.Context, request *GetHelpdeskTicketMessageListReq, options ...MethodOptionFunc) (*GetHelpdeskTicketMessageListResp, *Response, error) - mockHelpdeskPreviewHelpdeskNotification func(ctx context.Context, request *PreviewHelpdeskNotificationReq, options ...MethodOptionFunc) (*PreviewHelpdeskNotificationResp, *Response, error) - mockHelpdeskSearchHelpdeskFAQ func(ctx context.Context, request *SearchHelpdeskFAQReq, options ...MethodOptionFunc) (*SearchHelpdeskFAQResp, *Response, error) - mockHelpdeskSendHelpdeskMessage func(ctx context.Context, request *SendHelpdeskMessageReq, options ...MethodOptionFunc) (*SendHelpdeskMessageResp, *Response, error) - mockHelpdeskSendHelpdeskTicketMessage func(ctx context.Context, request *SendHelpdeskTicketMessageReq, options ...MethodOptionFunc) (*SendHelpdeskTicketMessageResp, *Response, error) - mockHelpdeskStartHelpdeskService func(ctx context.Context, request *StartHelpdeskServiceReq, options ...MethodOptionFunc) (*StartHelpdeskServiceResp, *Response, error) - mockHelpdeskSubmitApproveHelpdeskNotification func(ctx context.Context, request *SubmitApproveHelpdeskNotificationReq, options ...MethodOptionFunc) (*SubmitApproveHelpdeskNotificationResp, *Response, error) - mockHelpdeskSubscribeHelpdeskEvent func(ctx context.Context, request *SubscribeHelpdeskEventReq, options ...MethodOptionFunc) (*SubscribeHelpdeskEventResp, *Response, error) - mockHelpdeskUnsubscribeHelpdeskEvent func(ctx context.Context, request *UnsubscribeHelpdeskEventReq, options ...MethodOptionFunc) (*UnsubscribeHelpdeskEventResp, *Response, error) - mockHelpdeskUpdateHelpdeskAgent func(ctx context.Context, request *UpdateHelpdeskAgentReq, options ...MethodOptionFunc) (*UpdateHelpdeskAgentResp, *Response, error) - mockHelpdeskUpdateHelpdeskAgentSchedule func(ctx context.Context, request *UpdateHelpdeskAgentScheduleReq, options ...MethodOptionFunc) (*UpdateHelpdeskAgentScheduleResp, *Response, error) - mockHelpdeskUpdateHelpdeskAgentSkill func(ctx context.Context, request *UpdateHelpdeskAgentSkillReq, options ...MethodOptionFunc) (*UpdateHelpdeskAgentSkillResp, *Response, error) - mockHelpdeskUpdateHelpdeskCategory func(ctx context.Context, request *UpdateHelpdeskCategoryReq, options ...MethodOptionFunc) (*UpdateHelpdeskCategoryResp, *Response, error) - mockHelpdeskUpdateHelpdeskFAQ func(ctx context.Context, request *UpdateHelpdeskFAQReq, options ...MethodOptionFunc) (*UpdateHelpdeskFAQResp, *Response, error) - mockHelpdeskUpdateHelpdeskNotification func(ctx context.Context, request *UpdateHelpdeskNotificationReq, options ...MethodOptionFunc) (*UpdateHelpdeskNotificationResp, *Response, error) - mockHelpdeskUpdateHelpdeskTicket func(ctx context.Context, request *UpdateHelpdeskTicketReq, options ...MethodOptionFunc) (*UpdateHelpdeskTicketResp, *Response, error) - mockHelpdeskUpdateHelpdeskTicketCustomizedField func(ctx context.Context, request *UpdateHelpdeskTicketCustomizedFieldReq, options ...MethodOptionFunc) (*UpdateHelpdeskTicketCustomizedFieldResp, *Response, error) - mockHireAddHireTalentToFolder func(ctx context.Context, request *AddHireTalentToFolderReq, options ...MethodOptionFunc) (*AddHireTalentToFolderResp, *Response, error) - mockHireBatchDeleteHireEcoAccountCustomField func(ctx context.Context, request *BatchDeleteHireEcoAccountCustomFieldReq, options ...MethodOptionFunc) (*BatchDeleteHireEcoAccountCustomFieldResp, *Response, error) - mockHireBatchDeleteHireEcoBackgroundCheckCustomField func(ctx context.Context, request *BatchDeleteHireEcoBackgroundCheckCustomFieldReq, options ...MethodOptionFunc) (*BatchDeleteHireEcoBackgroundCheckCustomFieldResp, *Response, error) - mockHireBatchDeleteHireEcoBackgroundCheckPackage func(ctx context.Context, request *BatchDeleteHireEcoBackgroundCheckPackageReq, options ...MethodOptionFunc) (*BatchDeleteHireEcoBackgroundCheckPackageResp, *Response, error) - mockHireBatchDeleteHireEcoExamPaper func(ctx context.Context, request *BatchDeleteHireEcoExamPaperReq, options ...MethodOptionFunc) (*BatchDeleteHireEcoExamPaperResp, *Response, error) - mockHireBatchGetHireTalent func(ctx context.Context, request *BatchGetHireTalentReq, options ...MethodOptionFunc) (*BatchGetHireTalentResp, *Response, error) - mockHireBatchUpdateHireEcoAccountCustomField func(ctx context.Context, request *BatchUpdateHireEcoAccountCustomFieldReq, options ...MethodOptionFunc) (*BatchUpdateHireEcoAccountCustomFieldResp, *Response, error) - mockHireBatchUpdateHireEcoBackgroundCheckCustomField func(ctx context.Context, request *BatchUpdateHireEcoBackgroundCheckCustomFieldReq, options ...MethodOptionFunc) (*BatchUpdateHireEcoBackgroundCheckCustomFieldResp, *Response, error) - mockHireBatchUpdateHireEcoBackgroundCheckPackage func(ctx context.Context, request *BatchUpdateHireEcoBackgroundCheckPackageReq, options ...MethodOptionFunc) (*BatchUpdateHireEcoBackgroundCheckPackageResp, *Response, error) - mockHireBatchUpdateHireEcoExamPaper func(ctx context.Context, request *BatchUpdateHireEcoExamPaperReq, options ...MethodOptionFunc) (*BatchUpdateHireEcoExamPaperResp, *Response, error) - mockHireCancelHireEcoBackgroundCheck func(ctx context.Context, request *CancelHireEcoBackgroundCheckReq, options ...MethodOptionFunc) (*CancelHireEcoBackgroundCheckResp, *Response, error) - mockHireCreateHireApplication func(ctx context.Context, request *CreateHireApplicationReq, options ...MethodOptionFunc) (*CreateHireApplicationResp, *Response, error) - mockHireCreateHireEcoAccountCustomField func(ctx context.Context, request *CreateHireEcoAccountCustomFieldReq, options ...MethodOptionFunc) (*CreateHireEcoAccountCustomFieldResp, *Response, error) - mockHireCreateHireEcoBackgroundCheckCustomField func(ctx context.Context, request *CreateHireEcoBackgroundCheckCustomFieldReq, options ...MethodOptionFunc) (*CreateHireEcoBackgroundCheckCustomFieldResp, *Response, error) - mockHireCreateHireEcoBackgroundCheckPackage func(ctx context.Context, request *CreateHireEcoBackgroundCheckPackageReq, options ...MethodOptionFunc) (*CreateHireEcoBackgroundCheckPackageResp, *Response, error) - mockHireCreateHireEcoExamLoginInfo func(ctx context.Context, request *CreateHireEcoExamLoginInfoReq, options ...MethodOptionFunc) (*CreateHireEcoExamLoginInfoResp, *Response, error) - mockHireCreateHireEcoExamPaper func(ctx context.Context, request *CreateHireEcoExamPaperReq, options ...MethodOptionFunc) (*CreateHireEcoExamPaperResp, *Response, error) - mockHireCreateHireExternalApplication func(ctx context.Context, request *CreateHireExternalApplicationReq, options ...MethodOptionFunc) (*CreateHireExternalApplicationResp, *Response, error) - mockHireCreateHireExternalBackgroundCheck func(ctx context.Context, request *CreateHireExternalBackgroundCheckReq, options ...MethodOptionFunc) (*CreateHireExternalBackgroundCheckResp, *Response, error) - mockHireCreateHireExternalInterview func(ctx context.Context, request *CreateHireExternalInterviewReq, options ...MethodOptionFunc) (*CreateHireExternalInterviewResp, *Response, error) - mockHireCreateHireExternalInterviewAssessment func(ctx context.Context, request *CreateHireExternalInterviewAssessmentReq, options ...MethodOptionFunc) (*CreateHireExternalInterviewAssessmentResp, *Response, error) - mockHireCreateHireJob func(ctx context.Context, request *CreateHireJobReq, options ...MethodOptionFunc) (*CreateHireJobResp, *Response, error) - mockHireCreateHireNote func(ctx context.Context, request *CreateHireNoteReq, options ...MethodOptionFunc) (*CreateHireNoteResp, *Response, error) - mockHireCreateHireOffer func(ctx context.Context, request *CreateHireOfferReq, options ...MethodOptionFunc) (*CreateHireOfferResp, *Response, error) - mockHireCreateHireReferralAccount func(ctx context.Context, request *CreateHireReferralAccountReq, options ...MethodOptionFunc) (*CreateHireReferralAccountResp, *Response, error) - mockHireDeactivateHireReferralAccount func(ctx context.Context, request *DeactivateHireReferralAccountReq, options ...MethodOptionFunc) (*DeactivateHireReferralAccountResp, *Response, error) - mockHireDeleteHireExternalApplication func(ctx context.Context, request *DeleteHireExternalApplicationReq, options ...MethodOptionFunc) (*DeleteHireExternalApplicationResp, *Response, error) - mockHireGetHireApplication func(ctx context.Context, request *GetHireApplicationReq, options ...MethodOptionFunc) (*GetHireApplicationResp, *Response, error) - mockHireGetHireApplicationInterviewList func(ctx context.Context, request *GetHireApplicationInterviewListReq, options ...MethodOptionFunc) (*GetHireApplicationInterviewListResp, *Response, error) - mockHireGetHireApplicationList func(ctx context.Context, request *GetHireApplicationListReq, options ...MethodOptionFunc) (*GetHireApplicationListResp, *Response, error) - mockHireGetHireAttachment func(ctx context.Context, request *GetHireAttachmentReq, options ...MethodOptionFunc) (*GetHireAttachmentResp, *Response, error) - mockHireGetHireAttachmentPreview func(ctx context.Context, request *GetHireAttachmentPreviewReq, options ...MethodOptionFunc) (*GetHireAttachmentPreviewResp, *Response, error) - mockHireGetHireEmployee func(ctx context.Context, request *GetHireEmployeeReq, options ...MethodOptionFunc) (*GetHireEmployeeResp, *Response, error) - mockHireGetHireEmployeeByApplication func(ctx context.Context, request *GetHireEmployeeByApplicationReq, options ...MethodOptionFunc) (*GetHireEmployeeByApplicationResp, *Response, error) - mockHireGetHireEvaluationList func(ctx context.Context, request *GetHireEvaluationListReq, options ...MethodOptionFunc) (*GetHireEvaluationListResp, *Response, error) - mockHireGetHireInterviewList func(ctx context.Context, request *GetHireInterviewListReq, options ...MethodOptionFunc) (*GetHireInterviewListResp, *Response, error) - mockHireGetHireJob func(ctx context.Context, request *GetHireJobReq, options ...MethodOptionFunc) (*GetHireJobResp, *Response, error) - mockHireGetHireJobConfig func(ctx context.Context, request *GetHireJobConfigReq, options ...MethodOptionFunc) (*GetHireJobConfigResp, *Response, error) - mockHireGetHireJobManager func(ctx context.Context, request *GetHireJobManagerReq, options ...MethodOptionFunc) (*GetHireJobManagerResp, *Response, error) - mockHireGetHireJobProcessList func(ctx context.Context, request *GetHireJobProcessListReq, options ...MethodOptionFunc) (*GetHireJobProcessListResp, *Response, error) - mockHireGetHireNote func(ctx context.Context, request *GetHireNoteReq, options ...MethodOptionFunc) (*GetHireNoteResp, *Response, error) - mockHireGetHireNoteList func(ctx context.Context, request *GetHireNoteListReq, options ...MethodOptionFunc) (*GetHireNoteListResp, *Response, error) - mockHireGetHireOffer func(ctx context.Context, request *GetHireOfferReq, options ...MethodOptionFunc) (*GetHireOfferResp, *Response, error) - mockHireGetHireOfferByApplication func(ctx context.Context, request *GetHireOfferByApplicationReq, options ...MethodOptionFunc) (*GetHireOfferByApplicationResp, *Response, error) - mockHireGetHireOfferList func(ctx context.Context, request *GetHireOfferListReq, options ...MethodOptionFunc) (*GetHireOfferListResp, *Response, error) - mockHireGetHireOfferSchema func(ctx context.Context, request *GetHireOfferSchemaReq, options ...MethodOptionFunc) (*GetHireOfferSchemaResp, *Response, error) - mockHireGetHireQuestionnaireList func(ctx context.Context, request *GetHireQuestionnaireListReq, options ...MethodOptionFunc) (*GetHireQuestionnaireListResp, *Response, error) - mockHireGetHireReferralByApplication func(ctx context.Context, request *GetHireReferralByApplicationReq, options ...MethodOptionFunc) (*GetHireReferralByApplicationResp, *Response, error) - mockHireGetHireReferralWebsiteJobPost func(ctx context.Context, request *GetHireReferralWebsiteJobPostReq, options ...MethodOptionFunc) (*GetHireReferralWebsiteJobPostResp, *Response, error) - mockHireGetHireReferralWebsiteJobPostList func(ctx context.Context, request *GetHireReferralWebsiteJobPostListReq, options ...MethodOptionFunc) (*GetHireReferralWebsiteJobPostListResp, *Response, error) - mockHireGetHireResumeSource func(ctx context.Context, request *GetHireResumeSourceReq, options ...MethodOptionFunc) (*GetHireResumeSourceResp, *Response, error) - mockHireGetHireTalent func(ctx context.Context, request *GetHireTalentReq, options ...MethodOptionFunc) (*GetHireTalentResp, *Response, error) - mockHireGetHireTalentFolderList func(ctx context.Context, request *GetHireTalentFolderListReq, options ...MethodOptionFunc) (*GetHireTalentFolderListResp, *Response, error) - mockHireGetHireTalentList func(ctx context.Context, request *GetHireTalentListReq, options ...MethodOptionFunc) (*GetHireTalentListResp, *Response, error) - mockHireMakeHireTransferOnboardByApplication func(ctx context.Context, request *MakeHireTransferOnboardByApplicationReq, options ...MethodOptionFunc) (*MakeHireTransferOnboardByApplicationResp, *Response, error) - mockHireQueryHireTalentObject func(ctx context.Context, request *QueryHireTalentObjectReq, options ...MethodOptionFunc) (*QueryHireTalentObjectResp, *Response, error) - mockHireReconcileHireReferralAccount func(ctx context.Context, request *ReconcileHireReferralAccountReq, options ...MethodOptionFunc) (*ReconcileHireReferralAccountResp, *Response, error) - mockHireTerminateHireApplication func(ctx context.Context, request *TerminateHireApplicationReq, options ...MethodOptionFunc) (*TerminateHireApplicationResp, *Response, error) - mockHireUpdateHireEHRImportTask func(ctx context.Context, request *UpdateHireEHRImportTaskReq, options ...MethodOptionFunc) (*UpdateHireEHRImportTaskResp, *Response, error) - mockHireUpdateHireEcoBackgroundCheckProgress func(ctx context.Context, request *UpdateHireEcoBackgroundCheckProgressReq, options ...MethodOptionFunc) (*UpdateHireEcoBackgroundCheckProgressResp, *Response, error) - mockHireUpdateHireEcoBackgroundCheckResult func(ctx context.Context, request *UpdateHireEcoBackgroundCheckResultReq, options ...MethodOptionFunc) (*UpdateHireEcoBackgroundCheckResultResp, *Response, error) - mockHireUpdateHireEmployee func(ctx context.Context, request *UpdateHireEmployeeReq, options ...MethodOptionFunc) (*UpdateHireEmployeeResp, *Response, error) - mockHireUpdateHireExternalApplication func(ctx context.Context, request *UpdateHireExternalApplicationReq, options ...MethodOptionFunc) (*UpdateHireExternalApplicationResp, *Response, error) - mockHireUpdateHireJob func(ctx context.Context, request *UpdateHireJobReq, options ...MethodOptionFunc) (*UpdateHireJobResp, *Response, error) - mockHireUpdateHireJobConfig func(ctx context.Context, request *UpdateHireJobConfigReq, options ...MethodOptionFunc) (*UpdateHireJobConfigResp, *Response, error) - mockHireUpdateHireNote func(ctx context.Context, request *UpdateHireNoteReq, options ...MethodOptionFunc) (*UpdateHireNoteResp, *Response, error) - mockHireUpdateHireOffer func(ctx context.Context, request *UpdateHireOfferReq, options ...MethodOptionFunc) (*UpdateHireOfferResp, *Response, error) - mockHireUpdateHireOfferInternStatus func(ctx context.Context, request *UpdateHireOfferInternStatusReq, options ...MethodOptionFunc) (*UpdateHireOfferInternStatusResp, *Response, error) - mockHireUpdateHireOfferStatus func(ctx context.Context, request *UpdateHireOfferStatusReq, options ...MethodOptionFunc) (*UpdateHireOfferStatusResp, *Response, error) - mockHireUpdateHiredEcoExamResult func(ctx context.Context, request *UpdateHiredEcoExamResultReq, options ...MethodOptionFunc) (*UpdateHiredEcoExamResultResp, *Response, error) - mockHireWithdrawHireReferralAccount func(ctx context.Context, request *WithdrawHireReferralAccountReq, options ...MethodOptionFunc) (*WithdrawHireReferralAccountResp, *Response, error) - mockHumanAuthCreateIdentity func(ctx context.Context, request *CreateIdentityReq, options ...MethodOptionFunc) (*CreateIdentityResp, *Response, error) - mockHumanAuthCropFaceVerifyImage func(ctx context.Context, request *CropFaceVerifyImageReq, options ...MethodOptionFunc) (*CropFaceVerifyImageResp, *Response, error) - mockHumanAuthGetFaceVerifyAuthResult func(ctx context.Context, request *GetFaceVerifyAuthResultReq, options ...MethodOptionFunc) (*GetFaceVerifyAuthResultResp, *Response, error) - mockHumanAuthUploadFaceVerifyImage func(ctx context.Context, request *UploadFaceVerifyImageReq, options ...MethodOptionFunc) (*UploadFaceVerifyImageResp, *Response, error) - mockJssdkGetJssdkTicket func(ctx context.Context, request *GetJssdkTicketReq, options ...MethodOptionFunc) (*GetJssdkTicketResp, *Response, error) - mockLingoCreateLingoDraft func(ctx context.Context, request *CreateLingoDraftReq, options ...MethodOptionFunc) (*CreateLingoDraftResp, *Response, error) - mockLingoCreateLingoEntity func(ctx context.Context, request *CreateLingoEntityReq, options ...MethodOptionFunc) (*CreateLingoEntityResp, *Response, error) - mockLingoDeleteLingoEntity func(ctx context.Context, request *DeleteLingoEntityReq, options ...MethodOptionFunc) (*DeleteLingoEntityResp, *Response, error) - mockLingoDownloadLingoFile func(ctx context.Context, request *DownloadLingoFileReq, options ...MethodOptionFunc) (*DownloadLingoFileResp, *Response, error) - mockLingoExtractLingoEntity func(ctx context.Context, request *ExtractLingoEntityReq, options ...MethodOptionFunc) (*ExtractLingoEntityResp, *Response, error) - mockLingoGetLingoClassificationList func(ctx context.Context, request *GetLingoClassificationListReq, options ...MethodOptionFunc) (*GetLingoClassificationListResp, *Response, error) - mockLingoGetLingoEntity func(ctx context.Context, request *GetLingoEntityReq, options ...MethodOptionFunc) (*GetLingoEntityResp, *Response, error) - mockLingoGetLingoEntityList func(ctx context.Context, request *GetLingoEntityListReq, options ...MethodOptionFunc) (*GetLingoEntityListResp, *Response, error) - mockLingoGetLingoRepoList func(ctx context.Context, request *GetLingoRepoListReq, options ...MethodOptionFunc) (*GetLingoRepoListResp, *Response, error) - mockLingoHighlightLingoEntity func(ctx context.Context, request *HighlightLingoEntityReq, options ...MethodOptionFunc) (*HighlightLingoEntityResp, *Response, error) - mockLingoMatchLingoEntity func(ctx context.Context, request *MatchLingoEntityReq, options ...MethodOptionFunc) (*MatchLingoEntityResp, *Response, error) - mockLingoSearchLingoEntity func(ctx context.Context, request *SearchLingoEntityReq, options ...MethodOptionFunc) (*SearchLingoEntityResp, *Response, error) - mockLingoUpdateLingoDraft func(ctx context.Context, request *UpdateLingoDraftReq, options ...MethodOptionFunc) (*UpdateLingoDraftResp, *Response, error) - mockLingoUpdateLingoEntity func(ctx context.Context, request *UpdateLingoEntityReq, options ...MethodOptionFunc) (*UpdateLingoEntityResp, *Response, error) - mockLingoUploadLingoFile func(ctx context.Context, request *UploadLingoFileReq, options ...MethodOptionFunc) (*UploadLingoFileResp, *Response, error) - mockMDMBindMDMUserAuthDataRelation func(ctx context.Context, request *BindMDMUserAuthDataRelationReq, options ...MethodOptionFunc) (*BindMDMUserAuthDataRelationResp, *Response, error) - mockMDMUnbindMDMUserAuthDataRelation func(ctx context.Context, request *UnbindMDMUserAuthDataRelationReq, options ...MethodOptionFunc) (*UnbindMDMUserAuthDataRelationResp, *Response, error) - mockMailBatchCreateMailGroupManager func(ctx context.Context, request *BatchCreateMailGroupManagerReq, options ...MethodOptionFunc) (*BatchCreateMailGroupManagerResp, *Response, error) - mockMailBatchCreateMailGroupMember func(ctx context.Context, request *BatchCreateMailGroupMemberReq, options ...MethodOptionFunc) (*BatchCreateMailGroupMemberResp, *Response, error) - mockMailBatchCreateMailGroupPermissionMember func(ctx context.Context, request *BatchCreateMailGroupPermissionMemberReq, options ...MethodOptionFunc) (*BatchCreateMailGroupPermissionMemberResp, *Response, error) - mockMailBatchCreatePublicMailboxMember func(ctx context.Context, request *BatchCreatePublicMailboxMemberReq, options ...MethodOptionFunc) (*BatchCreatePublicMailboxMemberResp, *Response, error) - mockMailBatchDeleteMailGroupManager func(ctx context.Context, request *BatchDeleteMailGroupManagerReq, options ...MethodOptionFunc) (*BatchDeleteMailGroupManagerResp, *Response, error) - mockMailBatchDeleteMailGroupMember func(ctx context.Context, request *BatchDeleteMailGroupMemberReq, options ...MethodOptionFunc) (*BatchDeleteMailGroupMemberResp, *Response, error) - mockMailBatchDeleteMailGroupPermissionMember func(ctx context.Context, request *BatchDeleteMailGroupPermissionMemberReq, options ...MethodOptionFunc) (*BatchDeleteMailGroupPermissionMemberResp, *Response, error) - mockMailBatchDeletePublicMailboxMember func(ctx context.Context, request *BatchDeletePublicMailboxMemberReq, options ...MethodOptionFunc) (*BatchDeletePublicMailboxMemberResp, *Response, error) - mockMailClearPublicMailboxMember func(ctx context.Context, request *ClearPublicMailboxMemberReq, options ...MethodOptionFunc) (*ClearPublicMailboxMemberResp, *Response, error) - mockMailCreateMailGroup func(ctx context.Context, request *CreateMailGroupReq, options ...MethodOptionFunc) (*CreateMailGroupResp, *Response, error) - mockMailCreateMailGroupAlias func(ctx context.Context, request *CreateMailGroupAliasReq, options ...MethodOptionFunc) (*CreateMailGroupAliasResp, *Response, error) - mockMailCreateMailGroupMember func(ctx context.Context, request *CreateMailGroupMemberReq, options ...MethodOptionFunc) (*CreateMailGroupMemberResp, *Response, error) - mockMailCreateMailGroupPermissionMember func(ctx context.Context, request *CreateMailGroupPermissionMemberReq, options ...MethodOptionFunc) (*CreateMailGroupPermissionMemberResp, *Response, error) - mockMailCreateMailPublicMailboxAlias func(ctx context.Context, request *CreateMailPublicMailboxAliasReq, options ...MethodOptionFunc) (*CreateMailPublicMailboxAliasResp, *Response, error) - mockMailCreateMailUserMailboxAlias func(ctx context.Context, request *CreateMailUserMailboxAliasReq, options ...MethodOptionFunc) (*CreateMailUserMailboxAliasResp, *Response, error) - mockMailCreatePublicMailbox func(ctx context.Context, request *CreatePublicMailboxReq, options ...MethodOptionFunc) (*CreatePublicMailboxResp, *Response, error) - mockMailCreatePublicMailboxMember func(ctx context.Context, request *CreatePublicMailboxMemberReq, options ...MethodOptionFunc) (*CreatePublicMailboxMemberResp, *Response, error) - mockMailDeleteMailGroup func(ctx context.Context, request *DeleteMailGroupReq, options ...MethodOptionFunc) (*DeleteMailGroupResp, *Response, error) - mockMailDeleteMailGroupAlias func(ctx context.Context, request *DeleteMailGroupAliasReq, options ...MethodOptionFunc) (*DeleteMailGroupAliasResp, *Response, error) - mockMailDeleteMailGroupMember func(ctx context.Context, request *DeleteMailGroupMemberReq, options ...MethodOptionFunc) (*DeleteMailGroupMemberResp, *Response, error) - mockMailDeleteMailGroupPermissionMember func(ctx context.Context, request *DeleteMailGroupPermissionMemberReq, options ...MethodOptionFunc) (*DeleteMailGroupPermissionMemberResp, *Response, error) - mockMailDeleteMailPublicMailboxAlias func(ctx context.Context, request *DeleteMailPublicMailboxAliasReq, options ...MethodOptionFunc) (*DeleteMailPublicMailboxAliasResp, *Response, error) - mockMailDeleteMailUserMailbox func(ctx context.Context, request *DeleteMailUserMailboxReq, options ...MethodOptionFunc) (*DeleteMailUserMailboxResp, *Response, error) - mockMailDeleteMailUserMailboxAlias func(ctx context.Context, request *DeleteMailUserMailboxAliasReq, options ...MethodOptionFunc) (*DeleteMailUserMailboxAliasResp, *Response, error) - mockMailDeletePublicMailbox func(ctx context.Context, request *DeletePublicMailboxReq, options ...MethodOptionFunc) (*DeletePublicMailboxResp, *Response, error) - mockMailDeletePublicMailboxMember func(ctx context.Context, request *DeletePublicMailboxMemberReq, options ...MethodOptionFunc) (*DeletePublicMailboxMemberResp, *Response, error) - mockMailGetMailGroup func(ctx context.Context, request *GetMailGroupReq, options ...MethodOptionFunc) (*GetMailGroupResp, *Response, error) - mockMailGetMailGroupAliasList func(ctx context.Context, request *GetMailGroupAliasListReq, options ...MethodOptionFunc) (*GetMailGroupAliasListResp, *Response, error) - mockMailGetMailGroupList func(ctx context.Context, request *GetMailGroupListReq, options ...MethodOptionFunc) (*GetMailGroupListResp, *Response, error) - mockMailGetMailGroupManagerList func(ctx context.Context, request *GetMailGroupManagerListReq, options ...MethodOptionFunc) (*GetMailGroupManagerListResp, *Response, error) - mockMailGetMailGroupMember func(ctx context.Context, request *GetMailGroupMemberReq, options ...MethodOptionFunc) (*GetMailGroupMemberResp, *Response, error) - mockMailGetMailGroupMemberList func(ctx context.Context, request *GetMailGroupMemberListReq, options ...MethodOptionFunc) (*GetMailGroupMemberListResp, *Response, error) - mockMailGetMailGroupPermissionMember func(ctx context.Context, request *GetMailGroupPermissionMemberReq, options ...MethodOptionFunc) (*GetMailGroupPermissionMemberResp, *Response, error) - mockMailGetMailGroupPermissionMemberList func(ctx context.Context, request *GetMailGroupPermissionMemberListReq, options ...MethodOptionFunc) (*GetMailGroupPermissionMemberListResp, *Response, error) - mockMailGetMailPublicMailboxAliasList func(ctx context.Context, request *GetMailPublicMailboxAliasListReq, options ...MethodOptionFunc) (*GetMailPublicMailboxAliasListResp, *Response, error) - mockMailGetMailUser func(ctx context.Context, request *GetMailUserReq, options ...MethodOptionFunc) (*GetMailUserResp, *Response, error) - mockMailGetMailUserMailboxAliasList func(ctx context.Context, request *GetMailUserMailboxAliasListReq, options ...MethodOptionFunc) (*GetMailUserMailboxAliasListResp, *Response, error) - mockMailGetPublicMailbox func(ctx context.Context, request *GetPublicMailboxReq, options ...MethodOptionFunc) (*GetPublicMailboxResp, *Response, error) - mockMailGetPublicMailboxList func(ctx context.Context, request *GetPublicMailboxListReq, options ...MethodOptionFunc) (*GetPublicMailboxListResp, *Response, error) - mockMailGetPublicMailboxMember func(ctx context.Context, request *GetPublicMailboxMemberReq, options ...MethodOptionFunc) (*GetPublicMailboxMemberResp, *Response, error) - mockMailGetPublicMailboxMemberList func(ctx context.Context, request *GetPublicMailboxMemberListReq, options ...MethodOptionFunc) (*GetPublicMailboxMemberListResp, *Response, error) - mockMailUpdateMailGroup func(ctx context.Context, request *UpdateMailGroupReq, options ...MethodOptionFunc) (*UpdateMailGroupResp, *Response, error) - mockMailUpdateMailGroupPatch func(ctx context.Context, request *UpdateMailGroupPatchReq, options ...MethodOptionFunc) (*UpdateMailGroupPatchResp, *Response, error) - mockMailUpdatePublicMailbox func(ctx context.Context, request *UpdatePublicMailboxReq, options ...MethodOptionFunc) (*UpdatePublicMailboxResp, *Response, error) - mockMailUpdatePublicMailboxPatch func(ctx context.Context, request *UpdatePublicMailboxPatchReq, options ...MethodOptionFunc) (*UpdatePublicMailboxPatchResp, *Response, error) - mockMessageBatchDeleteMessage func(ctx context.Context, request *BatchDeleteMessageReq, options ...MethodOptionFunc) (*BatchDeleteMessageResp, *Response, error) - mockMessageBatchSendOldRawMessage func(ctx context.Context, request *BatchSendOldRawMessageReq, options ...MethodOptionFunc) (*BatchSendOldRawMessageResp, *Response, error) - mockMessageBatchUpdateURLPreview func(ctx context.Context, request *BatchUpdateURLPreviewReq, options ...MethodOptionFunc) (*BatchUpdateURLPreviewResp, *Response, error) - mockMessageCreateAppFeedCard func(ctx context.Context, request *CreateAppFeedCardReq, options ...MethodOptionFunc) (*CreateAppFeedCardResp, *Response, error) - mockMessageCreateIMTag func(ctx context.Context, request *CreateIMTagReq, options ...MethodOptionFunc) (*CreateIMTagResp, *Response, error) - mockMessageCreateIMTagRelation func(ctx context.Context, request *CreateIMTagRelationReq, options ...MethodOptionFunc) (*CreateIMTagRelationResp, *Response, error) - mockMessageCreateMessagePin func(ctx context.Context, request *CreateMessagePinReq, options ...MethodOptionFunc) (*CreateMessagePinResp, *Response, error) - mockMessageCreateMessageReaction func(ctx context.Context, request *CreateMessageReactionReq, options ...MethodOptionFunc) (*CreateMessageReactionResp, *Response, error) - mockMessageDeleteAppFeedCard func(ctx context.Context, request *DeleteAppFeedCardReq, options ...MethodOptionFunc) (*DeleteAppFeedCardResp, *Response, error) - mockMessageDeleteEphemeralMessage func(ctx context.Context, request *DeleteEphemeralMessageReq, options ...MethodOptionFunc) (*DeleteEphemeralMessageResp, *Response, error) - mockMessageDeleteIMTagRelation func(ctx context.Context, request *DeleteIMTagRelationReq, options ...MethodOptionFunc) (*DeleteIMTagRelationResp, *Response, error) - mockMessageDeleteMessage func(ctx context.Context, request *DeleteMessageReq, options ...MethodOptionFunc) (*DeleteMessageResp, *Response, error) - mockMessageDeleteMessagePin func(ctx context.Context, request *DeleteMessagePinReq, options ...MethodOptionFunc) (*DeleteMessagePinResp, *Response, error) - mockMessageDeleteMessageReaction func(ctx context.Context, request *DeleteMessageReactionReq, options ...MethodOptionFunc) (*DeleteMessageReactionResp, *Response, error) - mockMessageForwardMessage func(ctx context.Context, request *ForwardMessageReq, options ...MethodOptionFunc) (*ForwardMessageResp, *Response, error) - mockMessageForwardThreadMessage func(ctx context.Context, request *ForwardThreadMessageReq, options ...MethodOptionFunc) (*ForwardThreadMessageResp, *Response, error) - mockMessageGetBatchSentMessageProgress func(ctx context.Context, request *GetBatchSentMessageProgressReq, options ...MethodOptionFunc) (*GetBatchSentMessageProgressResp, *Response, error) - mockMessageGetBatchSentMessageReadUser func(ctx context.Context, request *GetBatchSentMessageReadUserReq, options ...MethodOptionFunc) (*GetBatchSentMessageReadUserResp, *Response, error) - mockMessageGetMessage func(ctx context.Context, request *GetMessageReq, options ...MethodOptionFunc) (*GetMessageResp, *Response, error) - mockMessageGetMessageFile func(ctx context.Context, request *GetMessageFileReq, options ...MethodOptionFunc) (*GetMessageFileResp, *Response, error) - mockMessageGetMessageList func(ctx context.Context, request *GetMessageListReq, options ...MethodOptionFunc) (*GetMessageListResp, *Response, error) - mockMessageGetMessagePinList func(ctx context.Context, request *GetMessagePinListReq, options ...MethodOptionFunc) (*GetMessagePinListResp, *Response, error) - mockMessageGetMessageReactionList func(ctx context.Context, request *GetMessageReactionListReq, options ...MethodOptionFunc) (*GetMessageReactionListResp, *Response, error) - mockMessageGetMessageReadUserList func(ctx context.Context, request *GetMessageReadUserListReq, options ...MethodOptionFunc) (*GetMessageReadUserListResp, *Response, error) - mockMessageGetMessageSpecialFocusList func(ctx context.Context, request *GetMessageSpecialFocusListReq, options ...MethodOptionFunc) (*GetMessageSpecialFocusListResp, *Response, error) - mockMessageGetMessageSpecialFocusUnread func(ctx context.Context, request *GetMessageSpecialFocusUnreadReq, options ...MethodOptionFunc) (*GetMessageSpecialFocusUnreadResp, *Response, error) - mockMessageInstantReminderAppFeedCard func(ctx context.Context, request *InstantReminderAppFeedCardReq, options ...MethodOptionFunc) (*InstantReminderAppFeedCardResp, *Response, error) - mockMessageListIMTagRelation func(ctx context.Context, request *ListIMTagRelationReq, options ...MethodOptionFunc) (*ListIMTagRelationResp, *Response, error) - mockMessageMGetIMTag func(ctx context.Context, request *MGetIMTagReq, options ...MethodOptionFunc) (*MGetIMTagResp, *Response, error) - mockMessageMergeForwardMessage func(ctx context.Context, request *MergeForwardMessageReq, options ...MethodOptionFunc) (*MergeForwardMessageResp, *Response, error) - mockMessageReplyRawMessage func(ctx context.Context, request *ReplyRawMessageReq, options ...MethodOptionFunc) (*ReplyRawMessageResp, *Response, error) - mockMessageSendEphemeralMessage func(ctx context.Context, request *SendEphemeralMessageReq, options ...MethodOptionFunc) (*SendEphemeralMessageResp, *Response, error) - mockMessageSendRawMessage func(ctx context.Context, request *SendRawMessageReq, options ...MethodOptionFunc) (*SendRawMessageResp, *Response, error) - mockMessageSendRawMessageOld func(ctx context.Context, request *SendRawMessageOldReq, options ...MethodOptionFunc) (*SendRawMessageOldResp, *Response, error) - mockMessageSendUrgentAppMessage func(ctx context.Context, request *SendUrgentAppMessageReq, options ...MethodOptionFunc) (*SendUrgentAppMessageResp, *Response, error) - mockMessageSendUrgentPhoneMessage func(ctx context.Context, request *SendUrgentPhoneMessageReq, options ...MethodOptionFunc) (*SendUrgentPhoneMessageResp, *Response, error) - mockMessageSendUrgentSmsMessage func(ctx context.Context, request *SendUrgentSmsMessageReq, options ...MethodOptionFunc) (*SendUrgentSmsMessageResp, *Response, error) - mockMessageUpdateAppFeedCard func(ctx context.Context, request *UpdateAppFeedCardReq, options ...MethodOptionFunc) (*UpdateAppFeedCardResp, *Response, error) - mockMessageUpdateAppFeedCardButton func(ctx context.Context, request *UpdateAppFeedCardButtonReq, options ...MethodOptionFunc) (*UpdateAppFeedCardButtonResp, *Response, error) - mockMessageUpdateIMTag func(ctx context.Context, request *UpdateIMTagReq, options ...MethodOptionFunc) (*UpdateIMTagResp, *Response, error) - mockMessageUpdateMessage func(ctx context.Context, request *UpdateMessageReq, options ...MethodOptionFunc) (*UpdateMessageResp, *Response, error) - mockMessageUpdateMessageDelay func(ctx context.Context, request *UpdateMessageDelayReq, options ...MethodOptionFunc) (*UpdateMessageDelayResp, *Response, error) - mockMessageUpdateMessageEdit func(ctx context.Context, request *UpdateMessageEditReq, options ...MethodOptionFunc) (*UpdateMessageEditResp, *Response, error) - mockMinaMinaCodeToSession func(ctx context.Context, request *MinaCodeToSessionReq, options ...MethodOptionFunc) (*MinaCodeToSessionResp, *Response, error) - mockMinutesGetMinutesMinute func(ctx context.Context, request *GetMinutesMinuteReq, options ...MethodOptionFunc) (*GetMinutesMinuteResp, *Response, error) - mockMinutesGetMinutesStatistics func(ctx context.Context, request *GetMinutesStatisticsReq, options ...MethodOptionFunc) (*GetMinutesStatisticsResp, *Response, error) - mockOKRBatchGetOKR func(ctx context.Context, request *BatchGetOKRReq, options ...MethodOptionFunc) (*BatchGetOKRResp, *Response, error) - mockOKRBatchUpdateOKRMetricSourceTableItem func(ctx context.Context, request *BatchUpdateOKRMetricSourceTableItemReq, options ...MethodOptionFunc) (*BatchUpdateOKRMetricSourceTableItemResp, *Response, error) - mockOKRCreateOKRPeriod func(ctx context.Context, request *CreateOKRPeriodReq, options ...MethodOptionFunc) (*CreateOKRPeriodResp, *Response, error) - mockOKRCreateOKRProgressRecord func(ctx context.Context, request *CreateOKRProgressRecordReq, options ...MethodOptionFunc) (*CreateOKRProgressRecordResp, *Response, error) - mockOKRDeleteOKRProgressRecord func(ctx context.Context, request *DeleteOKRProgressRecordReq, options ...MethodOptionFunc) (*DeleteOKRProgressRecordResp, *Response, error) - mockOKRGetOKRMetricSourceList func(ctx context.Context, request *GetOKRMetricSourceListReq, options ...MethodOptionFunc) (*GetOKRMetricSourceListResp, *Response, error) - mockOKRGetOKRMetricSourceTableItem func(ctx context.Context, request *GetOKRMetricSourceTableItemReq, options ...MethodOptionFunc) (*GetOKRMetricSourceTableItemResp, *Response, error) - mockOKRGetOKRMetricSourceTableItemList func(ctx context.Context, request *GetOKRMetricSourceTableItemListReq, options ...MethodOptionFunc) (*GetOKRMetricSourceTableItemListResp, *Response, error) - mockOKRGetOKRMetricSourceTableList func(ctx context.Context, request *GetOKRMetricSourceTableListReq, options ...MethodOptionFunc) (*GetOKRMetricSourceTableListResp, *Response, error) - mockOKRGetOKRPeriodList func(ctx context.Context, request *GetOKRPeriodListReq, options ...MethodOptionFunc) (*GetOKRPeriodListResp, *Response, error) - mockOKRGetOKRPeriodRuleList func(ctx context.Context, request *GetOKRPeriodRuleListReq, options ...MethodOptionFunc) (*GetOKRPeriodRuleListResp, *Response, error) - mockOKRGetOKRProgressRecord func(ctx context.Context, request *GetOKRProgressRecordReq, options ...MethodOptionFunc) (*GetOKRProgressRecordResp, *Response, error) - mockOKRGetOKRReview func(ctx context.Context, request *GetOKRReviewReq, options ...MethodOptionFunc) (*GetOKRReviewResp, *Response, error) - mockOKRGetUserOKRList func(ctx context.Context, request *GetUserOKRListReq, options ...MethodOptionFunc) (*GetUserOKRListResp, *Response, error) - mockOKRUpdateOKRMetricSourceTableItem func(ctx context.Context, request *UpdateOKRMetricSourceTableItemReq, options ...MethodOptionFunc) (*UpdateOKRMetricSourceTableItemResp, *Response, error) - mockOKRUpdateOKRPeriod func(ctx context.Context, request *UpdateOKRPeriodReq, options ...MethodOptionFunc) (*UpdateOKRPeriodResp, *Response, error) - mockOKRUpdateOKRProgressRecord func(ctx context.Context, request *UpdateOKRProgressRecordReq, options ...MethodOptionFunc) (*UpdateOKRProgressRecordResp, *Response, error) - mockOKRUploadOKRImage func(ctx context.Context, request *UploadOKRImageReq, options ...MethodOptionFunc) (*UploadOKRImageResp, *Response, error) - mockPassportGetPassportSession func(ctx context.Context, request *GetPassportSessionReq, options ...MethodOptionFunc) (*GetPassportSessionResp, *Response, error) - mockPerformanceGetPerformanceReviewData func(ctx context.Context, request *GetPerformanceReviewDataReq, options ...MethodOptionFunc) (*GetPerformanceReviewDataResp, *Response, error) - mockPerformanceGetPerformanceSemesterList func(ctx context.Context, request *GetPerformanceSemesterListReq, options ...MethodOptionFunc) (*GetPerformanceSemesterListResp, *Response, error) - mockPerformanceGetPerformanceStageTaskByPage func(ctx context.Context, request *GetPerformanceStageTaskByPageReq, options ...MethodOptionFunc) (*GetPerformanceStageTaskByPageResp, *Response, error) - mockPerformanceGetPerformanceStageTaskByUser func(ctx context.Context, request *GetPerformanceStageTaskByUserReq, options ...MethodOptionFunc) (*GetPerformanceStageTaskByUserResp, *Response, error) - mockPersonalSettingsBatchClosePersonalSettingsSystemStatus func(ctx context.Context, request *BatchClosePersonalSettingsSystemStatusReq, options ...MethodOptionFunc) (*BatchClosePersonalSettingsSystemStatusResp, *Response, error) - mockPersonalSettingsBatchOpenPersonalSettingsSystemStatus func(ctx context.Context, request *BatchOpenPersonalSettingsSystemStatusReq, options ...MethodOptionFunc) (*BatchOpenPersonalSettingsSystemStatusResp, *Response, error) - mockPersonalSettingsCreatePersonalSettingsSystemStatus func(ctx context.Context, request *CreatePersonalSettingsSystemStatusReq, options ...MethodOptionFunc) (*CreatePersonalSettingsSystemStatusResp, *Response, error) - mockPersonalSettingsDeletePersonalSettingsSystemStatus func(ctx context.Context, request *DeletePersonalSettingsSystemStatusReq, options ...MethodOptionFunc) (*DeletePersonalSettingsSystemStatusResp, *Response, error) - mockPersonalSettingsGetPersonalSettingsSystemStatusList func(ctx context.Context, request *GetPersonalSettingsSystemStatusListReq, options ...MethodOptionFunc) (*GetPersonalSettingsSystemStatusListResp, *Response, error) - mockPersonalSettingsUpdatePersonalSettingsSystemStatus func(ctx context.Context, request *UpdatePersonalSettingsSystemStatusReq, options ...MethodOptionFunc) (*UpdatePersonalSettingsSystemStatusResp, *Response, error) - mockReportQueryReportRule func(ctx context.Context, request *QueryReportRuleReq, options ...MethodOptionFunc) (*QueryReportRuleResp, *Response, error) - mockReportQueryReportTask func(ctx context.Context, request *QueryReportTaskReq, options ...MethodOptionFunc) (*QueryReportTaskResp, *Response, error) - mockReportRemoveReportView func(ctx context.Context, request *RemoveReportViewReq, options ...MethodOptionFunc) (*RemoveReportViewResp, *Response, error) - mockSearchBatchCreateSearchDataSourceItem func(ctx context.Context, request *BatchCreateSearchDataSourceItemReq, options ...MethodOptionFunc) (*BatchCreateSearchDataSourceItemResp, *Response, error) - mockSearchCreateSearchDataSource func(ctx context.Context, request *CreateSearchDataSourceReq, options ...MethodOptionFunc) (*CreateSearchDataSourceResp, *Response, error) - mockSearchCreateSearchDataSourceItem func(ctx context.Context, request *CreateSearchDataSourceItemReq, options ...MethodOptionFunc) (*CreateSearchDataSourceItemResp, *Response, error) - mockSearchCreateSearchSchema func(ctx context.Context, request *CreateSearchSchemaReq, options ...MethodOptionFunc) (*CreateSearchSchemaResp, *Response, error) - mockSearchDeleteSearchDataSource func(ctx context.Context, request *DeleteSearchDataSourceReq, options ...MethodOptionFunc) (*DeleteSearchDataSourceResp, *Response, error) - mockSearchDeleteSearchDataSourceItem func(ctx context.Context, request *DeleteSearchDataSourceItemReq, options ...MethodOptionFunc) (*DeleteSearchDataSourceItemResp, *Response, error) - mockSearchDeleteSearchSchema func(ctx context.Context, request *DeleteSearchSchemaReq, options ...MethodOptionFunc) (*DeleteSearchSchemaResp, *Response, error) - mockSearchGetSearchDataSource func(ctx context.Context, request *GetSearchDataSourceReq, options ...MethodOptionFunc) (*GetSearchDataSourceResp, *Response, error) - mockSearchGetSearchDataSourceItem func(ctx context.Context, request *GetSearchDataSourceItemReq, options ...MethodOptionFunc) (*GetSearchDataSourceItemResp, *Response, error) - mockSearchGetSearchDataSourceList func(ctx context.Context, request *GetSearchDataSourceListReq, options ...MethodOptionFunc) (*GetSearchDataSourceListResp, *Response, error) - mockSearchGetSearchSchema func(ctx context.Context, request *GetSearchSchemaReq, options ...MethodOptionFunc) (*GetSearchSchemaResp, *Response, error) - mockSearchSearchApp func(ctx context.Context, request *SearchAppReq, options ...MethodOptionFunc) (*SearchAppResp, *Response, error) - mockSearchSearchMessage func(ctx context.Context, request *SearchMessageReq, options ...MethodOptionFunc) (*SearchMessageResp, *Response, error) - mockSearchUpdateSearchDataSource func(ctx context.Context, request *UpdateSearchDataSourceReq, options ...MethodOptionFunc) (*UpdateSearchDataSourceResp, *Response, error) - mockSearchUpdateSearchSchema func(ctx context.Context, request *UpdateSearchSchemaReq, options ...MethodOptionFunc) (*UpdateSearchSchemaResp, *Response, error) - mockTaskAddTaskCustomField func(ctx context.Context, request *AddTaskCustomFieldReq, options ...MethodOptionFunc) (*AddTaskCustomFieldResp, *Response, error) - mockTaskAddTaskDependency func(ctx context.Context, request *AddTaskDependencyReq, options ...MethodOptionFunc) (*AddTaskDependencyResp, *Response, error) - mockTaskAddTaskMember func(ctx context.Context, request *AddTaskMemberReq, options ...MethodOptionFunc) (*AddTaskMemberResp, *Response, error) - mockTaskAddTaskReminder func(ctx context.Context, request *AddTaskReminderReq, options ...MethodOptionFunc) (*AddTaskReminderResp, *Response, error) - mockTaskAddTaskTasklist func(ctx context.Context, request *AddTaskTasklistReq, options ...MethodOptionFunc) (*AddTaskTasklistResp, *Response, error) - mockTaskAddTaskTasklistMember func(ctx context.Context, request *AddTaskTasklistMemberReq, options ...MethodOptionFunc) (*AddTaskTasklistMemberResp, *Response, error) - mockTaskBatchDeleteTaskCollaborator func(ctx context.Context, request *BatchDeleteTaskCollaboratorReq, options ...MethodOptionFunc) (*BatchDeleteTaskCollaboratorResp, *Response, error) - mockTaskBatchDeleteTaskFollower func(ctx context.Context, request *BatchDeleteTaskFollowerReq, options ...MethodOptionFunc) (*BatchDeleteTaskFollowerResp, *Response, error) - mockTaskCompleteTask func(ctx context.Context, request *CompleteTaskReq, options ...MethodOptionFunc) (*CompleteTaskResp, *Response, error) - mockTaskCreateTask func(ctx context.Context, request *CreateTaskReq, options ...MethodOptionFunc) (*CreateTaskResp, *Response, error) - mockTaskCreateTaskCollaborator func(ctx context.Context, request *CreateTaskCollaboratorReq, options ...MethodOptionFunc) (*CreateTaskCollaboratorResp, *Response, error) - mockTaskCreateTaskComment func(ctx context.Context, request *CreateTaskCommentReq, options ...MethodOptionFunc) (*CreateTaskCommentResp, *Response, error) - mockTaskCreateTaskCustomFieldOption func(ctx context.Context, request *CreateTaskCustomFieldOptionReq, options ...MethodOptionFunc) (*CreateTaskCustomFieldOptionResp, *Response, error) - mockTaskCreateTaskFollower func(ctx context.Context, request *CreateTaskFollowerReq, options ...MethodOptionFunc) (*CreateTaskFollowerResp, *Response, error) - mockTaskCreateTaskReminder func(ctx context.Context, request *CreateTaskReminderReq, options ...MethodOptionFunc) (*CreateTaskReminderResp, *Response, error) - mockTaskCreateTaskSection func(ctx context.Context, request *CreateTaskSectionReq, options ...MethodOptionFunc) (*CreateTaskSectionResp, *Response, error) - mockTaskCreateTaskSubtask func(ctx context.Context, request *CreateTaskSubtaskReq, options ...MethodOptionFunc) (*CreateTaskSubtaskResp, *Response, error) - mockTaskCreateTaskTasklist func(ctx context.Context, request *CreateTaskTasklistReq, options ...MethodOptionFunc) (*CreateTaskTasklistResp, *Response, error) - mockTaskCreateTaskTasklistActivitySubscription func(ctx context.Context, request *CreateTaskTasklistActivitySubscriptionReq, options ...MethodOptionFunc) (*CreateTaskTasklistActivitySubscriptionResp, *Response, error) - mockTaskDeleteTask func(ctx context.Context, request *DeleteTaskReq, options ...MethodOptionFunc) (*DeleteTaskResp, *Response, error) - mockTaskDeleteTaskAttachment func(ctx context.Context, request *DeleteTaskAttachmentReq, options ...MethodOptionFunc) (*DeleteTaskAttachmentResp, *Response, error) - mockTaskDeleteTaskCollaborator func(ctx context.Context, request *DeleteTaskCollaboratorReq, options ...MethodOptionFunc) (*DeleteTaskCollaboratorResp, *Response, error) - mockTaskDeleteTaskComment func(ctx context.Context, request *DeleteTaskCommentReq, options ...MethodOptionFunc) (*DeleteTaskCommentResp, *Response, error) - mockTaskDeleteTaskFollower func(ctx context.Context, request *DeleteTaskFollowerReq, options ...MethodOptionFunc) (*DeleteTaskFollowerResp, *Response, error) - mockTaskDeleteTaskReminder func(ctx context.Context, request *DeleteTaskReminderReq, options ...MethodOptionFunc) (*DeleteTaskReminderResp, *Response, error) - mockTaskDeleteTaskSection func(ctx context.Context, request *DeleteTaskSectionReq, options ...MethodOptionFunc) (*DeleteTaskSectionResp, *Response, error) - mockTaskDeleteTaskTasklist func(ctx context.Context, request *DeleteTaskTasklistReq, options ...MethodOptionFunc) (*DeleteTaskTasklistResp, *Response, error) - mockTaskDeleteTaskTasklistActivitySubscription func(ctx context.Context, request *DeleteTaskTasklistActivitySubscriptionReq, options ...MethodOptionFunc) (*DeleteTaskTasklistActivitySubscriptionResp, *Response, error) - mockTaskGetTask func(ctx context.Context, request *GetTaskReq, options ...MethodOptionFunc) (*GetTaskResp, *Response, error) - mockTaskGetTaskAttachment func(ctx context.Context, request *GetTaskAttachmentReq, options ...MethodOptionFunc) (*GetTaskAttachmentResp, *Response, error) - mockTaskGetTaskAttachmentList func(ctx context.Context, request *GetTaskAttachmentListReq, options ...MethodOptionFunc) (*GetTaskAttachmentListResp, *Response, error) - mockTaskGetTaskCollaboratorList func(ctx context.Context, request *GetTaskCollaboratorListReq, options ...MethodOptionFunc) (*GetTaskCollaboratorListResp, *Response, error) - mockTaskGetTaskComment func(ctx context.Context, request *GetTaskCommentReq, options ...MethodOptionFunc) (*GetTaskCommentResp, *Response, error) - mockTaskGetTaskCommentList func(ctx context.Context, request *GetTaskCommentListReq, options ...MethodOptionFunc) (*GetTaskCommentListResp, *Response, error) - mockTaskGetTaskFollowerList func(ctx context.Context, request *GetTaskFollowerListReq, options ...MethodOptionFunc) (*GetTaskFollowerListResp, *Response, error) - mockTaskGetTaskList func(ctx context.Context, request *GetTaskListReq, options ...MethodOptionFunc) (*GetTaskListResp, *Response, error) - mockTaskGetTaskReminderList func(ctx context.Context, request *GetTaskReminderListReq, options ...MethodOptionFunc) (*GetTaskReminderListResp, *Response, error) - mockTaskGetTaskSection func(ctx context.Context, request *GetTaskSectionReq, options ...MethodOptionFunc) (*GetTaskSectionResp, *Response, error) - mockTaskGetTaskSectionList func(ctx context.Context, request *GetTaskSectionListReq, options ...MethodOptionFunc) (*GetTaskSectionListResp, *Response, error) - mockTaskGetTaskSubtaskList func(ctx context.Context, request *GetTaskSubtaskListReq, options ...MethodOptionFunc) (*GetTaskSubtaskListResp, *Response, error) - mockTaskGetTaskTaskListOfSection func(ctx context.Context, request *GetTaskTaskListOfSectionReq, options ...MethodOptionFunc) (*GetTaskTaskListOfSectionResp, *Response, error) - mockTaskGetTaskTaskListOfTasklist func(ctx context.Context, request *GetTaskTaskListOfTasklistReq, options ...MethodOptionFunc) (*GetTaskTaskListOfTasklistResp, *Response, error) - mockTaskGetTaskTasklist func(ctx context.Context, request *GetTaskTasklistReq, options ...MethodOptionFunc) (*GetTaskTasklistResp, *Response, error) - mockTaskGetTaskTasklistActivitySubscription func(ctx context.Context, request *GetTaskTasklistActivitySubscriptionReq, options ...MethodOptionFunc) (*GetTaskTasklistActivitySubscriptionResp, *Response, error) - mockTaskGetTaskTasklistActivitySubscriptionList func(ctx context.Context, request *GetTaskTasklistActivitySubscriptionListReq, options ...MethodOptionFunc) (*GetTaskTasklistActivitySubscriptionListResp, *Response, error) - mockTaskGetTaskTasklistList func(ctx context.Context, request *GetTaskTasklistListReq, options ...MethodOptionFunc) (*GetTaskTasklistListResp, *Response, error) - mockTaskRemoveTaskCustomField func(ctx context.Context, request *RemoveTaskCustomFieldReq, options ...MethodOptionFunc) (*RemoveTaskCustomFieldResp, *Response, error) - mockTaskRemoveTaskDependency func(ctx context.Context, request *RemoveTaskDependencyReq, options ...MethodOptionFunc) (*RemoveTaskDependencyResp, *Response, error) - mockTaskRemoveTaskMember func(ctx context.Context, request *RemoveTaskMemberReq, options ...MethodOptionFunc) (*RemoveTaskMemberResp, *Response, error) - mockTaskRemoveTaskReminder func(ctx context.Context, request *RemoveTaskReminderReq, options ...MethodOptionFunc) (*RemoveTaskReminderResp, *Response, error) - mockTaskRemoveTaskTasklist func(ctx context.Context, request *RemoveTaskTasklistReq, options ...MethodOptionFunc) (*RemoveTaskTasklistResp, *Response, error) - mockTaskRemoveTaskTasklistMember func(ctx context.Context, request *RemoveTaskTasklistMemberReq, options ...MethodOptionFunc) (*RemoveTaskTasklistMemberResp, *Response, error) - mockTaskUncompleteTask func(ctx context.Context, request *UncompleteTaskReq, options ...MethodOptionFunc) (*UncompleteTaskResp, *Response, error) - mockTaskUpdateTask func(ctx context.Context, request *UpdateTaskReq, options ...MethodOptionFunc) (*UpdateTaskResp, *Response, error) - mockTaskUpdateTaskComment func(ctx context.Context, request *UpdateTaskCommentReq, options ...MethodOptionFunc) (*UpdateTaskCommentResp, *Response, error) - mockTaskUpdateTaskCustomFieldOption func(ctx context.Context, request *UpdateTaskCustomFieldOptionReq, options ...MethodOptionFunc) (*UpdateTaskCustomFieldOptionResp, *Response, error) - mockTaskUpdateTaskSection func(ctx context.Context, request *UpdateTaskSectionReq, options ...MethodOptionFunc) (*UpdateTaskSectionResp, *Response, error) - mockTaskUpdateTaskTasklist func(ctx context.Context, request *UpdateTaskTasklistReq, options ...MethodOptionFunc) (*UpdateTaskTasklistResp, *Response, error) - mockTaskUpdateTaskTasklistActivitySubscription func(ctx context.Context, request *UpdateTaskTasklistActivitySubscriptionReq, options ...MethodOptionFunc) (*UpdateTaskTasklistActivitySubscriptionResp, *Response, error) - mockTaskUploadTaskAttachment func(ctx context.Context, request *UploadTaskAttachmentReq, options ...MethodOptionFunc) (*UploadTaskAttachmentResp, *Response, error) - mockTaskV1BatchDeleteTaskV1Collaborator func(ctx context.Context, request *BatchDeleteTaskV1CollaboratorReq, options ...MethodOptionFunc) (*BatchDeleteTaskV1CollaboratorResp, *Response, error) - mockTaskV1BatchDeleteTaskV1Follower func(ctx context.Context, request *BatchDeleteTaskV1FollowerReq, options ...MethodOptionFunc) (*BatchDeleteTaskV1FollowerResp, *Response, error) - mockTaskV1CompleteTaskV1 func(ctx context.Context, request *CompleteTaskV1Req, options ...MethodOptionFunc) (*CompleteTaskV1Resp, *Response, error) - mockTaskV1CreateTaskV1 func(ctx context.Context, request *CreateTaskV1Req, options ...MethodOptionFunc) (*CreateTaskV1Resp, *Response, error) - mockTaskV1CreateTaskV1Collaborator func(ctx context.Context, request *CreateTaskV1CollaboratorReq, options ...MethodOptionFunc) (*CreateTaskV1CollaboratorResp, *Response, error) - mockTaskV1CreateTaskV1Comment func(ctx context.Context, request *CreateTaskV1CommentReq, options ...MethodOptionFunc) (*CreateTaskV1CommentResp, *Response, error) - mockTaskV1CreateTaskV1Follower func(ctx context.Context, request *CreateTaskV1FollowerReq, options ...MethodOptionFunc) (*CreateTaskV1FollowerResp, *Response, error) - mockTaskV1CreateTaskV1Reminder func(ctx context.Context, request *CreateTaskV1ReminderReq, options ...MethodOptionFunc) (*CreateTaskV1ReminderResp, *Response, error) - mockTaskV1DeleteTaskV1 func(ctx context.Context, request *DeleteTaskV1Req, options ...MethodOptionFunc) (*DeleteTaskV1Resp, *Response, error) - mockTaskV1DeleteTaskV1Collaborator func(ctx context.Context, request *DeleteTaskV1CollaboratorReq, options ...MethodOptionFunc) (*DeleteTaskV1CollaboratorResp, *Response, error) - mockTaskV1DeleteTaskV1Comment func(ctx context.Context, request *DeleteTaskV1CommentReq, options ...MethodOptionFunc) (*DeleteTaskV1CommentResp, *Response, error) - mockTaskV1DeleteTaskV1Follower func(ctx context.Context, request *DeleteTaskV1FollowerReq, options ...MethodOptionFunc) (*DeleteTaskV1FollowerResp, *Response, error) - mockTaskV1DeleteTaskV1Reminder func(ctx context.Context, request *DeleteTaskV1ReminderReq, options ...MethodOptionFunc) (*DeleteTaskV1ReminderResp, *Response, error) - mockTaskV1GetTaskFollowerV1List func(ctx context.Context, request *GetTaskFollowerV1ListReq, options ...MethodOptionFunc) (*GetTaskFollowerV1ListResp, *Response, error) - mockTaskV1GetTaskV1 func(ctx context.Context, request *GetTaskV1Req, options ...MethodOptionFunc) (*GetTaskV1Resp, *Response, error) - mockTaskV1GetTaskV1CollaboratorList func(ctx context.Context, request *GetTaskV1CollaboratorListReq, options ...MethodOptionFunc) (*GetTaskV1CollaboratorListResp, *Response, error) - mockTaskV1GetTaskV1Comment func(ctx context.Context, request *GetTaskV1CommentReq, options ...MethodOptionFunc) (*GetTaskV1CommentResp, *Response, error) - mockTaskV1GetTaskV1CommentList func(ctx context.Context, request *GetTaskV1CommentListReq, options ...MethodOptionFunc) (*GetTaskV1CommentListResp, *Response, error) - mockTaskV1GetTaskV1List func(ctx context.Context, request *GetTaskV1ListReq, options ...MethodOptionFunc) (*GetTaskV1ListResp, *Response, error) - mockTaskV1GetTaskV1ReminderList func(ctx context.Context, request *GetTaskV1ReminderListReq, options ...MethodOptionFunc) (*GetTaskV1ReminderListResp, *Response, error) - mockTaskV1UncompleteTaskV1 func(ctx context.Context, request *UncompleteTaskV1Req, options ...MethodOptionFunc) (*UncompleteTaskV1Resp, *Response, error) - mockTaskV1UpdateTaskV1 func(ctx context.Context, request *UpdateTaskV1Req, options ...MethodOptionFunc) (*UpdateTaskV1Resp, *Response, error) - mockTaskV1UpdateTaskV1Comment func(ctx context.Context, request *UpdateTaskV1CommentReq, options ...MethodOptionFunc) (*UpdateTaskV1CommentResp, *Response, error) - mockTenantGetTenant func(ctx context.Context, request *GetTenantReq, options ...MethodOptionFunc) (*GetTenantResp, *Response, error) - mockTenantGetTenantProductAssignInfo func(ctx context.Context, request *GetTenantProductAssignInfoReq, options ...MethodOptionFunc) (*GetTenantProductAssignInfoResp, *Response, error) - mockVCApplyVCReserve func(ctx context.Context, request *ApplyVCReserveReq, options ...MethodOptionFunc) (*ApplyVCReserveResp, *Response, error) - mockVCBatchGetVCRoom func(ctx context.Context, request *BatchGetVCRoomReq, options ...MethodOptionFunc) (*BatchGetVCRoomResp, *Response, error) - mockVCBatchGetVCRoomLevel func(ctx context.Context, request *BatchGetVCRoomLevelReq, options ...MethodOptionFunc) (*BatchGetVCRoomLevelResp, *Response, error) - mockVCCreateVCRoom func(ctx context.Context, request *CreateVCRoomReq, options ...MethodOptionFunc) (*CreateVCRoomResp, *Response, error) - mockVCCreateVCRoomLevel func(ctx context.Context, request *CreateVCRoomLevelReq, options ...MethodOptionFunc) (*CreateVCRoomLevelResp, *Response, error) - mockVCDeleteVCReserve func(ctx context.Context, request *DeleteVCReserveReq, options ...MethodOptionFunc) (*DeleteVCReserveResp, *Response, error) - mockVCDeleteVCRoom func(ctx context.Context, request *DeleteVCRoomReq, options ...MethodOptionFunc) (*DeleteVCRoomResp, *Response, error) - mockVCDeleteVCRoomLevel func(ctx context.Context, request *DeleteVCRoomLevelReq, options ...MethodOptionFunc) (*DeleteVCRoomLevelResp, *Response, error) - mockVCDownloadVCExportFile func(ctx context.Context, request *DownloadVCExportFileReq, options ...MethodOptionFunc) (*DownloadVCExportFileResp, *Response, error) - mockVCEndVCMeeting func(ctx context.Context, request *EndVCMeetingReq, options ...MethodOptionFunc) (*EndVCMeetingResp, *Response, error) - mockVCExportVCMeetingList func(ctx context.Context, request *ExportVCMeetingListReq, options ...MethodOptionFunc) (*ExportVCMeetingListResp, *Response, error) - mockVCExportVCParticipantList func(ctx context.Context, request *ExportVCParticipantListReq, options ...MethodOptionFunc) (*ExportVCParticipantListResp, *Response, error) - mockVCExportVCParticipantQualityList func(ctx context.Context, request *ExportVCParticipantQualityListReq, options ...MethodOptionFunc) (*ExportVCParticipantQualityListResp, *Response, error) - mockVCExportVCResourceReservationList func(ctx context.Context, request *ExportVCResourceReservationListReq, options ...MethodOptionFunc) (*ExportVCResourceReservationListResp, *Response, error) - mockVCGetVCAlertList func(ctx context.Context, request *GetVCAlertListReq, options ...MethodOptionFunc) (*GetVCAlertListResp, *Response, error) - mockVCGetVCDailyReport func(ctx context.Context, request *GetVCDailyReportReq, options ...MethodOptionFunc) (*GetVCDailyReportResp, *Response, error) - mockVCGetVCExportTask func(ctx context.Context, request *GetVCExportTaskReq, options ...MethodOptionFunc) (*GetVCExportTaskResp, *Response, error) - mockVCGetVCMeeting func(ctx context.Context, request *GetVCMeetingReq, options ...MethodOptionFunc) (*GetVCMeetingResp, *Response, error) - mockVCGetVCMeetingList func(ctx context.Context, request *GetVCMeetingListReq, options ...MethodOptionFunc) (*GetVCMeetingListResp, *Response, error) - mockVCGetVCMeetingRecording func(ctx context.Context, request *GetVCMeetingRecordingReq, options ...MethodOptionFunc) (*GetVCMeetingRecordingResp, *Response, error) - mockVCGetVCParticipantList func(ctx context.Context, request *GetVCParticipantListReq, options ...MethodOptionFunc) (*GetVCParticipantListResp, *Response, error) - mockVCGetVCParticipantQualityList func(ctx context.Context, request *GetVCParticipantQualityListReq, options ...MethodOptionFunc) (*GetVCParticipantQualityListResp, *Response, error) - mockVCGetVCReserve func(ctx context.Context, request *GetVCReserveReq, options ...MethodOptionFunc) (*GetVCReserveResp, *Response, error) - mockVCGetVCReserveActiveMeeting func(ctx context.Context, request *GetVCReserveActiveMeetingReq, options ...MethodOptionFunc) (*GetVCReserveActiveMeetingResp, *Response, error) - mockVCGetVCReserveConfig func(ctx context.Context, request *GetVCReserveConfigReq, options ...MethodOptionFunc) (*GetVCReserveConfigResp, *Response, error) - mockVCGetVCReserveConfigAdmin func(ctx context.Context, request *GetVCReserveConfigAdminReq, options ...MethodOptionFunc) (*GetVCReserveConfigAdminResp, *Response, error) - mockVCGetVCReserveConfigDisableInform func(ctx context.Context, request *GetVCReserveConfigDisableInformReq, options ...MethodOptionFunc) (*GetVCReserveConfigDisableInformResp, *Response, error) - mockVCGetVCReserveConfigForm func(ctx context.Context, request *GetVCReserveConfigFormReq, options ...MethodOptionFunc) (*GetVCReserveConfigFormResp, *Response, error) - mockVCGetVCResourceReservationList func(ctx context.Context, request *GetVCResourceReservationListReq, options ...MethodOptionFunc) (*GetVCResourceReservationListResp, *Response, error) - mockVCGetVCRoom func(ctx context.Context, request *GetVCRoomReq, options ...MethodOptionFunc) (*GetVCRoomResp, *Response, error) - mockVCGetVCRoomLevel func(ctx context.Context, request *GetVCRoomLevelReq, options ...MethodOptionFunc) (*GetVCRoomLevelResp, *Response, error) - mockVCGetVCRoomLevelList func(ctx context.Context, request *GetVCRoomLevelListReq, options ...MethodOptionFunc) (*GetVCRoomLevelListResp, *Response, error) - mockVCGetVCRoomList func(ctx context.Context, request *GetVCRoomListReq, options ...MethodOptionFunc) (*GetVCRoomListResp, *Response, error) - mockVCGetVCScopeConfig func(ctx context.Context, request *GetVCScopeConfigReq, options ...MethodOptionFunc) (*GetVCScopeConfigResp, *Response, error) - mockVCGetVCTopUserReport func(ctx context.Context, request *GetVCTopUserReportReq, options ...MethodOptionFunc) (*GetVCTopUserReportResp, *Response, error) - mockVCInviteVCMeeting func(ctx context.Context, request *InviteVCMeetingReq, options ...MethodOptionFunc) (*InviteVCMeetingResp, *Response, error) - mockVCKickoutVCMeeting func(ctx context.Context, request *KickoutVCMeetingReq, options ...MethodOptionFunc) (*KickoutVCMeetingResp, *Response, error) - mockVCListVCMeetingByNo func(ctx context.Context, request *ListVCMeetingByNoReq, options ...MethodOptionFunc) (*ListVCMeetingByNoResp, *Response, error) - mockVCSearchVCRoom func(ctx context.Context, request *SearchVCRoomReq, options ...MethodOptionFunc) (*SearchVCRoomResp, *Response, error) - mockVCSearchVCRoomLevel func(ctx context.Context, request *SearchVCRoomLevelReq, options ...MethodOptionFunc) (*SearchVCRoomLevelResp, *Response, error) - mockVCSetVCHostMeeting func(ctx context.Context, request *SetVCHostMeetingReq, options ...MethodOptionFunc) (*SetVCHostMeetingResp, *Response, error) - mockVCSetVCPermissionMeetingRecording func(ctx context.Context, request *SetVCPermissionMeetingRecordingReq, options ...MethodOptionFunc) (*SetVCPermissionMeetingRecordingResp, *Response, error) - mockVCSetVCScopeConfig func(ctx context.Context, request *SetVCScopeConfigReq, options ...MethodOptionFunc) (*SetVCScopeConfigResp, *Response, error) - mockVCStartVCMeetingRecording func(ctx context.Context, request *StartVCMeetingRecordingReq, options ...MethodOptionFunc) (*StartVCMeetingRecordingResp, *Response, error) - mockVCStopVCMeetingRecording func(ctx context.Context, request *StopVCMeetingRecordingReq, options ...MethodOptionFunc) (*StopVCMeetingRecordingResp, *Response, error) - mockVCUpdateVCReserve func(ctx context.Context, request *UpdateVCReserveReq, options ...MethodOptionFunc) (*UpdateVCReserveResp, *Response, error) - mockVCUpdateVCReserveConfig func(ctx context.Context, request *UpdateVCReserveConfigReq, options ...MethodOptionFunc) (*UpdateVCReserveConfigResp, *Response, error) - mockVCUpdateVCReserveConfigAdmin func(ctx context.Context, request *UpdateVCReserveConfigAdminReq, options ...MethodOptionFunc) (*UpdateVCReserveConfigAdminResp, *Response, error) - mockVCUpdateVCReserveConfigDisableInform func(ctx context.Context, request *UpdateVCReserveConfigDisableInformReq, options ...MethodOptionFunc) (*UpdateVCReserveConfigDisableInformResp, *Response, error) - mockVCUpdateVCReserveConfigForm func(ctx context.Context, request *UpdateVCReserveConfigFormReq, options ...MethodOptionFunc) (*UpdateVCReserveConfigFormResp, *Response, error) - mockVCUpdateVCRoom func(ctx context.Context, request *UpdateVCRoomReq, options ...MethodOptionFunc) (*UpdateVCRoomResp, *Response, error) - mockVCUpdateVCRoomLevel func(ctx context.Context, request *UpdateVCRoomLevelReq, options ...MethodOptionFunc) (*UpdateVCRoomLevelResp, *Response, error) - mockVerificationGetVerification func(ctx context.Context, request *GetVerificationReq, options ...MethodOptionFunc) (*GetVerificationResp, *Response, error) - + mockRawRequest func(ctx context.Context, req *RawRequestReq, resp interface{}) (response *Response, err error) + mockGetTenantAccessToken func(ctx context.Context) (*TokenExpire, *Response, error) + mockGetAppAccessToken func(ctx context.Context) (*TokenExpire, *Response, error) + mockACSGetACSAccessRecordList func(ctx context.Context, request *GetACSAccessRecordListReq, options ...MethodOptionFunc) (*GetACSAccessRecordListResp, *Response, error) + mockACSGetACSAccessRecordPhoto func(ctx context.Context, request *GetACSAccessRecordPhotoReq, options ...MethodOptionFunc) (*GetACSAccessRecordPhotoResp, *Response, error) + mockACSGetACSDeviceList func(ctx context.Context, request *GetACSDeviceListReq, options ...MethodOptionFunc) (*GetACSDeviceListResp, *Response, error) + mockACSCreateACSRuleExternal func(ctx context.Context, request *CreateACSRuleExternalReq, options ...MethodOptionFunc) (*CreateACSRuleExternalResp, *Response, error) + mockACSDeleteACSRuleExternal func(ctx context.Context, request *DeleteACSRuleExternalReq, options ...MethodOptionFunc) (*DeleteACSRuleExternalResp, *Response, error) + mockACSDeviceBindACSRuleExternal func(ctx context.Context, request *DeviceBindACSRuleExternalReq, options ...MethodOptionFunc) (*DeviceBindACSRuleExternalResp, *Response, error) + mockACSGetACSRuleExternal func(ctx context.Context, request *GetACSRuleExternalReq, options ...MethodOptionFunc) (*GetACSRuleExternalResp, *Response, error) + mockACSGetACSUserFace func(ctx context.Context, request *GetACSUserFaceReq, options ...MethodOptionFunc) (*GetACSUserFaceResp, *Response, error) + mockACSUpdateACSUserFace func(ctx context.Context, request *UpdateACSUserFaceReq, options ...MethodOptionFunc) (*UpdateACSUserFaceResp, *Response, error) + mockACSGetACSUser func(ctx context.Context, request *GetACSUserReq, options ...MethodOptionFunc) (*GetACSUserResp, *Response, error) + mockACSGetACSUserList func(ctx context.Context, request *GetACSUserListReq, options ...MethodOptionFunc) (*GetACSUserListResp, *Response, error) + mockACSUpdateACSUser func(ctx context.Context, request *UpdateACSUserReq, options ...MethodOptionFunc) (*UpdateACSUserResp, *Response, error) + mockACSCreateACSVisitor func(ctx context.Context, request *CreateACSVisitorReq, options ...MethodOptionFunc) (*CreateACSVisitorResp, *Response, error) + mockACSDeleteACSVisitor func(ctx context.Context, request *DeleteACSVisitorReq, options ...MethodOptionFunc) (*DeleteACSVisitorResp, *Response, error) + mockAIRecognizeAIBankCard func(ctx context.Context, request *RecognizeAIBankCardReq, options ...MethodOptionFunc) (*RecognizeAIBankCardResp, *Response, error) + mockAIRecognizeAIBusinessCard func(ctx context.Context, request *RecognizeAIBusinessCardReq, options ...MethodOptionFunc) (*RecognizeAIBusinessCardResp, *Response, error) + mockAIRecognizeAIBusinessLicense func(ctx context.Context, request *RecognizeAIBusinessLicenseReq, options ...MethodOptionFunc) (*RecognizeAIBusinessLicenseResp, *Response, error) + mockAIRecognizeAIChinesePassport func(ctx context.Context, request *RecognizeAIChinesePassportReq, options ...MethodOptionFunc) (*RecognizeAIChinesePassportResp, *Response, error) + mockAIExtractAIContractField func(ctx context.Context, request *ExtractAIContractFieldReq, options ...MethodOptionFunc) (*ExtractAIContractFieldResp, *Response, error) + mockAIDetectFaceAttributes func(ctx context.Context, request *DetectFaceAttributesReq, options ...MethodOptionFunc) (*DetectFaceAttributesResp, *Response, error) + mockAIDetectTextLanguage func(ctx context.Context, request *DetectTextLanguageReq, options ...MethodOptionFunc) (*DetectTextLanguageResp, *Response, error) + mockAIRecognizeAIDrivingLicense func(ctx context.Context, request *RecognizeAIDrivingLicenseReq, options ...MethodOptionFunc) (*RecognizeAIDrivingLicenseResp, *Response, error) + mockAIRecognizeAIFoodManageLicense func(ctx context.Context, request *RecognizeAIFoodManageLicenseReq, options ...MethodOptionFunc) (*RecognizeAIFoodManageLicenseResp, *Response, error) + mockAIRecognizeAIFoodProduceLicense func(ctx context.Context, request *RecognizeAIFoodProduceLicenseReq, options ...MethodOptionFunc) (*RecognizeAIFoodProduceLicenseResp, *Response, error) + mockAIRecognizeAIHealthCertificate func(ctx context.Context, request *RecognizeAIHealthCertificateReq, options ...MethodOptionFunc) (*RecognizeAIHealthCertificateResp, *Response, error) + mockAIRecognizeAIHkmMainlandTravelPermit func(ctx context.Context, request *RecognizeAIHkmMainlandTravelPermitReq, options ...MethodOptionFunc) (*RecognizeAIHkmMainlandTravelPermitResp, *Response, error) + mockAIRecognizeAiidCard func(ctx context.Context, request *RecognizeAiidCardReq, options ...MethodOptionFunc) (*RecognizeAiidCardResp, *Response, error) + mockAIRecognizeBasicImage func(ctx context.Context, request *RecognizeBasicImageReq, options ...MethodOptionFunc) (*RecognizeBasicImageResp, *Response, error) + mockAIRecognizeSpeechFile func(ctx context.Context, request *RecognizeSpeechFileReq, options ...MethodOptionFunc) (*RecognizeSpeechFileResp, *Response, error) + mockAIRecognizeSpeechStream func(ctx context.Context, request *RecognizeSpeechStreamReq, options ...MethodOptionFunc) (*RecognizeSpeechStreamResp, *Response, error) + mockAIParseAIResume func(ctx context.Context, request *ParseAIResumeReq, options ...MethodOptionFunc) (*ParseAIResumeResp, *Response, error) + mockAIRecognizeAITaxiInvoice func(ctx context.Context, request *RecognizeAITaxiInvoiceReq, options ...MethodOptionFunc) (*RecognizeAITaxiInvoiceResp, *Response, error) + mockAIRecognizeAITrainInvoice func(ctx context.Context, request *RecognizeAITrainInvoiceReq, options ...MethodOptionFunc) (*RecognizeAITrainInvoiceResp, *Response, error) + mockAITranslateText func(ctx context.Context, request *TranslateTextReq, options ...MethodOptionFunc) (*TranslateTextResp, *Response, error) + mockAIRecognizeAITwMainlandTravelPermit func(ctx context.Context, request *RecognizeAITwMainlandTravelPermitReq, options ...MethodOptionFunc) (*RecognizeAITwMainlandTravelPermitResp, *Response, error) + mockAIRecognizeAIVatInvoice func(ctx context.Context, request *RecognizeAIVatInvoiceReq, options ...MethodOptionFunc) (*RecognizeAIVatInvoiceResp, *Response, error) + mockAIRecognizeAIVehicleInvoice func(ctx context.Context, request *RecognizeAIVehicleInvoiceReq, options ...MethodOptionFunc) (*RecognizeAIVehicleInvoiceResp, *Response, error) + mockAIRecognizeAIVehicleLicense func(ctx context.Context, request *RecognizeAIVehicleLicenseReq, options ...MethodOptionFunc) (*RecognizeAIVehicleLicenseResp, *Response, error) + mockAPaaSAddAPaaSApprovalTaskAssignee func(ctx context.Context, request *AddAPaaSApprovalTaskAssigneeReq, options ...MethodOptionFunc) (*AddAPaaSApprovalTaskAssigneeResp, *Response, error) + mockAPaaSAgreeAPaaSApprovalTask func(ctx context.Context, request *AgreeAPaaSApprovalTaskReq, options ...MethodOptionFunc) (*AgreeAPaaSApprovalTaskResp, *Response, error) + mockAPaaSRejectAPaaSApprovalTask func(ctx context.Context, request *RejectAPaaSApprovalTaskReq, options ...MethodOptionFunc) (*RejectAPaaSApprovalTaskResp, *Response, error) + mockAPaaSTransferAPaaSApprovalTask func(ctx context.Context, request *TransferAPaaSApprovalTaskReq, options ...MethodOptionFunc) (*TransferAPaaSApprovalTaskResp, *Response, error) + mockAdminGetAdminDeptStats func(ctx context.Context, request *GetAdminDeptStatsReq, options ...MethodOptionFunc) (*GetAdminDeptStatsResp, *Response, error) + mockAdminGetAdminUserStats func(ctx context.Context, request *GetAdminUserStatsReq, options ...MethodOptionFunc) (*GetAdminUserStatsResp, *Response, error) + mockAdminCreateAdminBadge func(ctx context.Context, request *CreateAdminBadgeReq, options ...MethodOptionFunc) (*CreateAdminBadgeResp, *Response, error) + mockAdminGetAdminBadge func(ctx context.Context, request *GetAdminBadgeReq, options ...MethodOptionFunc) (*GetAdminBadgeResp, *Response, error) + mockAdminCreateAdminBadgeGrant func(ctx context.Context, request *CreateAdminBadgeGrantReq, options ...MethodOptionFunc) (*CreateAdminBadgeGrantResp, *Response, error) + mockAdminDeleteAdminBadgeGrant func(ctx context.Context, request *DeleteAdminBadgeGrantReq, options ...MethodOptionFunc) (*DeleteAdminBadgeGrantResp, *Response, error) + mockAdminGetAdminBadgeGrant func(ctx context.Context, request *GetAdminBadgeGrantReq, options ...MethodOptionFunc) (*GetAdminBadgeGrantResp, *Response, error) + mockAdminGetAdminBadgeGrantList func(ctx context.Context, request *GetAdminBadgeGrantListReq, options ...MethodOptionFunc) (*GetAdminBadgeGrantListResp, *Response, error) + mockAdminUpdateAdminBadgeGrant func(ctx context.Context, request *UpdateAdminBadgeGrantReq, options ...MethodOptionFunc) (*UpdateAdminBadgeGrantResp, *Response, error) + mockAdminUploadAdminBadgeImage func(ctx context.Context, request *UploadAdminBadgeImageReq, options ...MethodOptionFunc) (*UploadAdminBadgeImageResp, *Response, error) + mockAdminGetAdminBadgeList func(ctx context.Context, request *GetAdminBadgeListReq, options ...MethodOptionFunc) (*GetAdminBadgeListResp, *Response, error) + mockAdminUpdateAdminBadge func(ctx context.Context, request *UpdateAdminBadgeReq, options ...MethodOptionFunc) (*UpdateAdminBadgeResp, *Response, error) + mockAdminAdminResetPassword func(ctx context.Context, request *AdminResetPasswordReq, options ...MethodOptionFunc) (*AdminResetPasswordResp, *Response, error) + mockApplicationGetApplicationAppAdminUserList func(ctx context.Context, request *GetApplicationAppAdminUserListReq, options ...MethodOptionFunc) (*GetApplicationAppAdminUserListResp, *Response, error) + mockApplicationSetApplicationAppBadge func(ctx context.Context, request *SetApplicationAppBadgeReq, options ...MethodOptionFunc) (*SetApplicationAppBadgeResp, *Response, error) + mockApplicationGetApplicationAppList func(ctx context.Context, request *GetApplicationAppListReq, options ...MethodOptionFunc) (*GetApplicationAppListResp, *Response, error) + mockApplicationUpdateApplicationAppManagement func(ctx context.Context, request *UpdateApplicationAppManagementReq, options ...MethodOptionFunc) (*UpdateApplicationAppManagementResp, *Response, error) + mockApplicationGetApplicationAppVisibility func(ctx context.Context, request *GetApplicationAppVisibilityReq, options ...MethodOptionFunc) (*GetApplicationAppVisibilityResp, *Response, error) + mockApplicationUpdateApplicationAppVisibility func(ctx context.Context, request *UpdateApplicationAppVisibilityReq, options ...MethodOptionFunc) (*UpdateApplicationAppVisibilityResp, *Response, error) + mockApplicationUpdateApplicationAppVisibilityV6 func(ctx context.Context, request *UpdateApplicationAppVisibilityV6Req, options ...MethodOptionFunc) (*UpdateApplicationAppVisibilityV6Resp, *Response, error) + mockApplicationGetApplicationContactsRangeConfiguration func(ctx context.Context, request *GetApplicationContactsRangeConfigurationReq, options ...MethodOptionFunc) (*GetApplicationContactsRangeConfigurationResp, *Response, error) + mockApplicationUpdateApplicationContactsRangeConfiguration func(ctx context.Context, request *UpdateApplicationContactsRangeConfigurationReq, options ...MethodOptionFunc) (*UpdateApplicationContactsRangeConfigurationResp, *Response, error) + mockApplicationSearchApplicationCustomWorkplaceAccessData func(ctx context.Context, request *SearchApplicationCustomWorkplaceAccessDataReq, options ...MethodOptionFunc) (*SearchApplicationCustomWorkplaceAccessDataResp, *Response, error) + mockApplicationGetApplicationFavourite func(ctx context.Context, request *GetApplicationFavouriteReq, options ...MethodOptionFunc) (*GetApplicationFavouriteResp, *Response, error) + mockApplicationGetApplicationFeedbackList func(ctx context.Context, request *GetApplicationFeedbackListReq, options ...MethodOptionFunc) (*GetApplicationFeedbackListResp, *Response, error) + mockApplicationUpdateApplicationFeedback func(ctx context.Context, request *UpdateApplicationFeedbackReq, options ...MethodOptionFunc) (*UpdateApplicationFeedbackResp, *Response, error) + mockApplicationGetApplication func(ctx context.Context, request *GetApplicationReq, options ...MethodOptionFunc) (*GetApplicationResp, *Response, error) + mockApplicationIsApplicationUserAdmin func(ctx context.Context, request *IsApplicationUserAdminReq, options ...MethodOptionFunc) (*IsApplicationUserAdminResp, *Response, error) + mockApplicationGetApplicationOrder func(ctx context.Context, request *GetApplicationOrderReq, options ...MethodOptionFunc) (*GetApplicationOrderResp, *Response, error) + mockApplicationGetApplicationOrderList func(ctx context.Context, request *GetApplicationOrderListReq, options ...MethodOptionFunc) (*GetApplicationOrderListResp, *Response, error) + mockApplicationCheckUserIsInApplicationPaidScope func(ctx context.Context, request *CheckUserIsInApplicationPaidScopeReq, options ...MethodOptionFunc) (*CheckUserIsInApplicationPaidScopeResp, *Response, error) + mockApplicationGetApplicationRecommend func(ctx context.Context, request *GetApplicationRecommendReq, options ...MethodOptionFunc) (*GetApplicationRecommendResp, *Response, error) + mockApplicationGetApplicationRecommendRuleList func(ctx context.Context, request *GetApplicationRecommendRuleListReq, options ...MethodOptionFunc) (*GetApplicationRecommendRuleListResp, *Response, error) + mockApplicationGetApplicationUnderAuditList func(ctx context.Context, request *GetApplicationUnderAuditListReq, options ...MethodOptionFunc) (*GetApplicationUnderAuditListResp, *Response, error) + mockApplicationUpdateApplication func(ctx context.Context, request *UpdateApplicationReq, options ...MethodOptionFunc) (*UpdateApplicationResp, *Response, error) + mockApplicationGetApplicationUsageDepartmentOverview func(ctx context.Context, request *GetApplicationUsageDepartmentOverviewReq, options ...MethodOptionFunc) (*GetApplicationUsageDepartmentOverviewResp, *Response, error) + mockApplicationGetApplicationUsageOverview func(ctx context.Context, request *GetApplicationUsageOverviewReq, options ...MethodOptionFunc) (*GetApplicationUsageOverviewResp, *Response, error) + mockApplicationGetApplicationUsageTrend func(ctx context.Context, request *GetApplicationUsageTrendReq, options ...MethodOptionFunc) (*GetApplicationUsageTrendResp, *Response, error) + mockApplicationGetApplicationUserAdminScope func(ctx context.Context, request *GetApplicationUserAdminScopeReq, options ...MethodOptionFunc) (*GetApplicationUserAdminScopeResp, *Response, error) + mockApplicationGetApplicationUserVisibleApp func(ctx context.Context, request *GetApplicationUserVisibleAppReq, options ...MethodOptionFunc) (*GetApplicationUserVisibleAppResp, *Response, error) + mockApplicationGetApplicationVersionContactsRangeSuggest func(ctx context.Context, request *GetApplicationVersionContactsRangeSuggestReq, options ...MethodOptionFunc) (*GetApplicationVersionContactsRangeSuggestResp, *Response, error) + mockApplicationGetApplicationVersion func(ctx context.Context, request *GetApplicationVersionReq, options ...MethodOptionFunc) (*GetApplicationVersionResp, *Response, error) + mockApplicationGetApplicationVersionList func(ctx context.Context, request *GetApplicationVersionListReq, options ...MethodOptionFunc) (*GetApplicationVersionListResp, *Response, error) + mockApplicationUpdateApplicationVersion func(ctx context.Context, request *UpdateApplicationVersionReq, options ...MethodOptionFunc) (*UpdateApplicationVersionResp, *Response, error) + mockApplicationCheckApplicationVisibleWhiteBlackList func(ctx context.Context, request *CheckApplicationVisibleWhiteBlackListReq, options ...MethodOptionFunc) (*CheckApplicationVisibleWhiteBlackListResp, *Response, error) + mockApplicationSearchApplicationWorkplaceAccessData func(ctx context.Context, request *SearchApplicationWorkplaceAccessDataReq, options ...MethodOptionFunc) (*SearchApplicationWorkplaceAccessDataResp, *Response, error) + mockApplicationSearchApplicationWorkplaceBlockAccessData func(ctx context.Context, request *SearchApplicationWorkplaceBlockAccessDataReq, options ...MethodOptionFunc) (*SearchApplicationWorkplaceBlockAccessDataResp, *Response, error) + mockApprovalCreateApproval func(ctx context.Context, request *CreateApprovalReq, options ...MethodOptionFunc) (*CreateApprovalResp, *Response, error) + mockApprovalGetApproval func(ctx context.Context, request *GetApprovalReq, options ...MethodOptionFunc) (*GetApprovalResp, *Response, error) + mockApprovalGetApprovalList func(ctx context.Context, request *GetApprovalListReq, options ...MethodOptionFunc) (*GetApprovalListResp, *Response, error) + mockApprovalCreateApprovalCarbonCopy func(ctx context.Context, request *CreateApprovalCarbonCopyReq, options ...MethodOptionFunc) (*CreateApprovalCarbonCopyResp, *Response, error) + mockApprovalSearchApprovalCarbonCopy func(ctx context.Context, request *SearchApprovalCarbonCopyReq, options ...MethodOptionFunc) (*SearchApprovalCarbonCopyResp, *Response, error) + mockApprovalCreateApprovalComment func(ctx context.Context, request *CreateApprovalCommentReq, options ...MethodOptionFunc) (*CreateApprovalCommentResp, *Response, error) + mockApprovalDeleteApprovalComment func(ctx context.Context, request *DeleteApprovalCommentReq, options ...MethodOptionFunc) (*DeleteApprovalCommentResp, *Response, error) + mockApprovalGetApprovalComment func(ctx context.Context, request *GetApprovalCommentReq, options ...MethodOptionFunc) (*GetApprovalCommentResp, *Response, error) + mockApprovalRemoveApprovalComment func(ctx context.Context, request *RemoveApprovalCommentReq, options ...MethodOptionFunc) (*RemoveApprovalCommentResp, *Response, error) + mockApprovalCheckApprovalExternalInstance func(ctx context.Context, request *CheckApprovalExternalInstanceReq, options ...MethodOptionFunc) (*CheckApprovalExternalInstanceResp, *Response, error) + mockApprovalCreateApprovalExternalApproval func(ctx context.Context, request *CreateApprovalExternalApprovalReq, options ...MethodOptionFunc) (*CreateApprovalExternalApprovalResp, *Response, error) + mockApprovalGetApprovalExternalApproval func(ctx context.Context, request *GetApprovalExternalApprovalReq, options ...MethodOptionFunc) (*GetApprovalExternalApprovalResp, *Response, error) + mockApprovalCreateApprovalExternalInstance func(ctx context.Context, request *CreateApprovalExternalInstanceReq, options ...MethodOptionFunc) (*CreateApprovalExternalInstanceResp, *Response, error) + mockApprovalGetApprovalExternalList func(ctx context.Context, request *GetApprovalExternalListReq, options ...MethodOptionFunc) (*GetApprovalExternalListResp, *Response, error) + mockApprovalUploadApprovalFile func(ctx context.Context, request *UploadApprovalFileReq, options ...MethodOptionFunc) (*UploadApprovalFileResp, *Response, error) + mockApprovalGetApprovalUserTaskList func(ctx context.Context, request *GetApprovalUserTaskListReq, options ...MethodOptionFunc) (*GetApprovalUserTaskListResp, *Response, error) + mockApprovalAddApprovalInstanceSign func(ctx context.Context, request *AddApprovalInstanceSignReq, options ...MethodOptionFunc) (*AddApprovalInstanceSignResp, *Response, error) + mockApprovalApproveApprovalInstance func(ctx context.Context, request *ApproveApprovalInstanceReq, options ...MethodOptionFunc) (*ApproveApprovalInstanceResp, *Response, error) + mockApprovalCancelApprovalInstance func(ctx context.Context, request *CancelApprovalInstanceReq, options ...MethodOptionFunc) (*CancelApprovalInstanceResp, *Response, error) + mockApprovalCreateApprovalInstance func(ctx context.Context, request *CreateApprovalInstanceReq, options ...MethodOptionFunc) (*CreateApprovalInstanceResp, *Response, error) + mockApprovalGetApprovalInstance func(ctx context.Context, request *GetApprovalInstanceReq, options ...MethodOptionFunc) (*GetApprovalInstanceResp, *Response, error) + mockApprovalGetApprovalInstanceList func(ctx context.Context, request *GetApprovalInstanceListReq, options ...MethodOptionFunc) (*GetApprovalInstanceListResp, *Response, error) + mockApprovalPreviewApprovalInstance func(ctx context.Context, request *PreviewApprovalInstanceReq, options ...MethodOptionFunc) (*PreviewApprovalInstanceResp, *Response, error) + mockApprovalRejectApprovalInstance func(ctx context.Context, request *RejectApprovalInstanceReq, options ...MethodOptionFunc) (*RejectApprovalInstanceResp, *Response, error) + mockApprovalRollbackApprovalInstance func(ctx context.Context, request *RollbackApprovalInstanceReq, options ...MethodOptionFunc) (*RollbackApprovalInstanceResp, *Response, error) + mockApprovalSearchApprovalInstance func(ctx context.Context, request *SearchApprovalInstanceReq, options ...MethodOptionFunc) (*SearchApprovalInstanceResp, *Response, error) + mockApprovalResubmitApprovalInstanceTask func(ctx context.Context, request *ResubmitApprovalInstanceTaskReq, options ...MethodOptionFunc) (*ResubmitApprovalInstanceTaskResp, *Response, error) + mockApprovalTransferApprovalInstance func(ctx context.Context, request *TransferApprovalInstanceReq, options ...MethodOptionFunc) (*TransferApprovalInstanceResp, *Response, error) + mockApprovalSendApprovalMessage func(ctx context.Context, request *SendApprovalMessageReq, options ...MethodOptionFunc) (*SendApprovalMessageResp, *Response, error) + mockApprovalUpdateApprovalMessage func(ctx context.Context, request *UpdateApprovalMessageReq, options ...MethodOptionFunc) (*UpdateApprovalMessageResp, *Response, error) + mockApprovalSubscribeApprovalSubscription func(ctx context.Context, request *SubscribeApprovalSubscriptionReq, options ...MethodOptionFunc) (*SubscribeApprovalSubscriptionResp, *Response, error) + mockApprovalUnsubscribeApprovalSubscription func(ctx context.Context, request *UnsubscribeApprovalSubscriptionReq, options ...MethodOptionFunc) (*UnsubscribeApprovalSubscriptionResp, *Response, error) + mockApprovalSearchApprovalTask func(ctx context.Context, request *SearchApprovalTaskReq, options ...MethodOptionFunc) (*SearchApprovalTaskResp, *Response, error) + mockApprovalTransformApprovalUserID func(ctx context.Context, request *TransformApprovalUserIDReq, options ...MethodOptionFunc) (*TransformApprovalUserIDResp, *Response, error) + mockAttendanceDownloadAttendanceFile func(ctx context.Context, request *DownloadAttendanceFileReq, options ...MethodOptionFunc) (*DownloadAttendanceFileResp, *Response, error) + mockAttendanceUploadAttendanceFile func(ctx context.Context, request *UploadAttendanceFileReq, options ...MethodOptionFunc) (*UploadAttendanceFileResp, *Response, error) + mockAttendanceCreateAttendanceGroup func(ctx context.Context, request *CreateAttendanceGroupReq, options ...MethodOptionFunc) (*CreateAttendanceGroupResp, *Response, error) + mockAttendanceDeleteAttendanceGroup func(ctx context.Context, request *DeleteAttendanceGroupReq, options ...MethodOptionFunc) (*DeleteAttendanceGroupResp, *Response, error) + mockAttendanceGetAttendanceGroup func(ctx context.Context, request *GetAttendanceGroupReq, options ...MethodOptionFunc) (*GetAttendanceGroupResp, *Response, error) + mockAttendanceGetAttendanceGroupList func(ctx context.Context, request *GetAttendanceGroupListReq, options ...MethodOptionFunc) (*GetAttendanceGroupListResp, *Response, error) + mockAttendanceSearchAttendanceGroup func(ctx context.Context, request *SearchAttendanceGroupReq, options ...MethodOptionFunc) (*SearchAttendanceGroupResp, *Response, error) + mockAttendanceUpdateAttendanceLeaveAccrualRecord func(ctx context.Context, request *UpdateAttendanceLeaveAccrualRecordReq, options ...MethodOptionFunc) (*UpdateAttendanceLeaveAccrualRecordResp, *Response, error) + mockAttendanceGetAttendanceLeaveEmployExpireRecord func(ctx context.Context, request *GetAttendanceLeaveEmployExpireRecordReq, options ...MethodOptionFunc) (*GetAttendanceLeaveEmployExpireRecordResp, *Response, error) + mockAttendanceUpdateAttendanceRemedyApproval func(ctx context.Context, request *UpdateAttendanceRemedyApprovalReq, options ...MethodOptionFunc) (*UpdateAttendanceRemedyApprovalResp, *Response, error) + mockAttendanceCreateAttendanceShift func(ctx context.Context, request *CreateAttendanceShiftReq, options ...MethodOptionFunc) (*CreateAttendanceShiftResp, *Response, error) + mockAttendanceDeleteAttendanceShift func(ctx context.Context, request *DeleteAttendanceShiftReq, options ...MethodOptionFunc) (*DeleteAttendanceShiftResp, *Response, error) + mockAttendanceGetAttendanceShift func(ctx context.Context, request *GetAttendanceShiftReq, options ...MethodOptionFunc) (*GetAttendanceShiftResp, *Response, error) + mockAttendanceGetAttendanceShiftDetail func(ctx context.Context, request *GetAttendanceShiftDetailReq, options ...MethodOptionFunc) (*GetAttendanceShiftDetailResp, *Response, error) + mockAttendanceGetAttendanceShiftList func(ctx context.Context, request *GetAttendanceShiftListReq, options ...MethodOptionFunc) (*GetAttendanceShiftListResp, *Response, error) + mockAttendanceCreateAttendanceUserApproval func(ctx context.Context, request *CreateAttendanceUserApprovalReq, options ...MethodOptionFunc) (*CreateAttendanceUserApprovalResp, *Response, error) + mockAttendanceGetAttendanceUserApproval func(ctx context.Context, request *GetAttendanceUserApprovalReq, options ...MethodOptionFunc) (*GetAttendanceUserApprovalResp, *Response, error) + mockAttendanceBatchCreateAttendanceUserDailyShift func(ctx context.Context, request *BatchCreateAttendanceUserDailyShiftReq, options ...MethodOptionFunc) (*BatchCreateAttendanceUserDailyShiftResp, *Response, error) + mockAttendanceGetAttendanceUserDailyShift func(ctx context.Context, request *GetAttendanceUserDailyShiftReq, options ...MethodOptionFunc) (*GetAttendanceUserDailyShiftResp, *Response, error) + mockAttendanceBatchCreateAttendanceUserFlow func(ctx context.Context, request *BatchCreateAttendanceUserFlowReq, options ...MethodOptionFunc) (*BatchCreateAttendanceUserFlowResp, *Response, error) + mockAttendanceBatchGetAttendanceUserFlow func(ctx context.Context, request *BatchGetAttendanceUserFlowReq, options ...MethodOptionFunc) (*BatchGetAttendanceUserFlowResp, *Response, error) + mockAttendanceGetAttendanceUserFlow func(ctx context.Context, request *GetAttendanceUserFlowReq, options ...MethodOptionFunc) (*GetAttendanceUserFlowResp, *Response, error) + mockAttendanceGetAttendanceUserSettingList func(ctx context.Context, request *GetAttendanceUserSettingListReq, options ...MethodOptionFunc) (*GetAttendanceUserSettingListResp, *Response, error) + mockAttendanceUpdateAttendanceUserSetting func(ctx context.Context, request *UpdateAttendanceUserSettingReq, options ...MethodOptionFunc) (*UpdateAttendanceUserSettingResp, *Response, error) + mockAttendanceGetAttendanceUserStatsData func(ctx context.Context, request *GetAttendanceUserStatsDataReq, options ...MethodOptionFunc) (*GetAttendanceUserStatsDataResp, *Response, error) + mockAttendanceGetAttendanceUserStatsField func(ctx context.Context, request *GetAttendanceUserStatsFieldReq, options ...MethodOptionFunc) (*GetAttendanceUserStatsFieldResp, *Response, error) + mockAttendanceGetAttendanceUserStatsView func(ctx context.Context, request *GetAttendanceUserStatsViewReq, options ...MethodOptionFunc) (*GetAttendanceUserStatsViewResp, *Response, error) + mockAttendanceUpdateAttendanceUserStatsView func(ctx context.Context, request *UpdateAttendanceUserStatsViewReq, options ...MethodOptionFunc) (*UpdateAttendanceUserStatsViewResp, *Response, error) + mockAttendanceGetAttendanceUserTask func(ctx context.Context, request *GetAttendanceUserTaskReq, options ...MethodOptionFunc) (*GetAttendanceUserTaskResp, *Response, error) + mockAttendanceGetAttendanceUserTaskRemedyAllowedRemedyList func(ctx context.Context, request *GetAttendanceUserTaskRemedyAllowedRemedyListReq, options ...MethodOptionFunc) (*GetAttendanceUserTaskRemedyAllowedRemedyListResp, *Response, error) + mockAttendanceCreateAttendanceUserTaskRemedy func(ctx context.Context, request *CreateAttendanceUserTaskRemedyReq, options ...MethodOptionFunc) (*CreateAttendanceUserTaskRemedyResp, *Response, error) + mockAttendanceGetAttendanceUserTaskRemedy func(ctx context.Context, request *GetAttendanceUserTaskRemedyReq, options ...MethodOptionFunc) (*GetAttendanceUserTaskRemedyResp, *Response, error) + mockAuthGetAccessToken func(ctx context.Context, request *GetAccessTokenReq, options ...MethodOptionFunc) (*GetAccessTokenResp, *Response, error) + mockAuthRefreshAccessToken func(ctx context.Context, request *RefreshAccessTokenReq, options ...MethodOptionFunc) (*RefreshAccessTokenResp, *Response, error) + mockAuthResendAppTicket func(ctx context.Context, request *ResendAppTicketReq, options ...MethodOptionFunc) (*ResendAppTicketResp, *Response, error) + mockAuthGetUserInfo func(ctx context.Context, request *GetUserInfoReq, options ...MethodOptionFunc) (*GetUserInfoResp, *Response, error) + mockBaikeGetBaikeClassificationList func(ctx context.Context, request *GetBaikeClassificationListReq, options ...MethodOptionFunc) (*GetBaikeClassificationListResp, *Response, error) + mockBaikeCreateBaikeDraft func(ctx context.Context, request *CreateBaikeDraftReq, options ...MethodOptionFunc) (*CreateBaikeDraftResp, *Response, error) + mockBaikeCreateBaikeUpdate func(ctx context.Context, request *CreateBaikeUpdateReq, options ...MethodOptionFunc) (*CreateBaikeUpdateResp, *Response, error) + mockBaikeCreateBaikeEntity func(ctx context.Context, request *CreateBaikeEntityReq, options ...MethodOptionFunc) (*CreateBaikeEntityResp, *Response, error) + mockBaikeExtractBaikeEntity func(ctx context.Context, request *ExtractBaikeEntityReq, options ...MethodOptionFunc) (*ExtractBaikeEntityResp, *Response, error) + mockBaikeGetBaikeEntity func(ctx context.Context, request *GetBaikeEntityReq, options ...MethodOptionFunc) (*GetBaikeEntityResp, *Response, error) + mockBaikeHighlightBaikeEntity func(ctx context.Context, request *HighlightBaikeEntityReq, options ...MethodOptionFunc) (*HighlightBaikeEntityResp, *Response, error) + mockBaikeGetBaikeEntityList func(ctx context.Context, request *GetBaikeEntityListReq, options ...MethodOptionFunc) (*GetBaikeEntityListResp, *Response, error) + mockBaikeMatchBaikeEntity func(ctx context.Context, request *MatchBaikeEntityReq, options ...MethodOptionFunc) (*MatchBaikeEntityResp, *Response, error) + mockBaikeSearchBaikeEntity func(ctx context.Context, request *SearchBaikeEntityReq, options ...MethodOptionFunc) (*SearchBaikeEntityResp, *Response, error) + mockBaikeUpdateBaikeEntity func(ctx context.Context, request *UpdateBaikeEntityReq, options ...MethodOptionFunc) (*UpdateBaikeEntityResp, *Response, error) + mockBaikeDownloadBaikeImage func(ctx context.Context, request *DownloadBaikeImageReq, options ...MethodOptionFunc) (*DownloadBaikeImageResp, *Response, error) + mockBaikeUploadBaikeImage func(ctx context.Context, request *UploadBaikeImageReq, options ...MethodOptionFunc) (*UploadBaikeImageResp, *Response, error) + mockBitableCopyBitableApp func(ctx context.Context, request *CopyBitableAppReq, options ...MethodOptionFunc) (*CopyBitableAppResp, *Response, error) + mockBitableCreateBitableApp func(ctx context.Context, request *CreateBitableAppReq, options ...MethodOptionFunc) (*CreateBitableAppResp, *Response, error) + mockBitableCreateBitableAppRole func(ctx context.Context, request *CreateBitableAppRoleReq, options ...MethodOptionFunc) (*CreateBitableAppRoleResp, *Response, error) + mockBitableDeleteBitableAppRole func(ctx context.Context, request *DeleteBitableAppRoleReq, options ...MethodOptionFunc) (*DeleteBitableAppRoleResp, *Response, error) + mockBitableGetBitableAppRoleList func(ctx context.Context, request *GetBitableAppRoleListReq, options ...MethodOptionFunc) (*GetBitableAppRoleListResp, *Response, error) + mockBitableCreateBitableAppRoleMember func(ctx context.Context, request *CreateBitableAppRoleMemberReq, options ...MethodOptionFunc) (*CreateBitableAppRoleMemberResp, *Response, error) + mockBitableBatchCreateBitableAppRoleMember func(ctx context.Context, request *BatchCreateBitableAppRoleMemberReq, options ...MethodOptionFunc) (*BatchCreateBitableAppRoleMemberResp, *Response, error) + mockBitableDeleteBitableAppRoleMember func(ctx context.Context, request *DeleteBitableAppRoleMemberReq, options ...MethodOptionFunc) (*DeleteBitableAppRoleMemberResp, *Response, error) + mockBitableBatchDeleteBitableAppRoleMember func(ctx context.Context, request *BatchDeleteBitableAppRoleMemberReq, options ...MethodOptionFunc) (*BatchDeleteBitableAppRoleMemberResp, *Response, error) + mockBitableGetBitableAppRoleMemberList func(ctx context.Context, request *GetBitableAppRoleMemberListReq, options ...MethodOptionFunc) (*GetBitableAppRoleMemberListResp, *Response, error) + mockBitableUpdateBitableAppRole func(ctx context.Context, request *UpdateBitableAppRoleReq, options ...MethodOptionFunc) (*UpdateBitableAppRoleResp, *Response, error) + mockBitableCopyBitableDashboard func(ctx context.Context, request *CopyBitableDashboardReq, options ...MethodOptionFunc) (*CopyBitableDashboardResp, *Response, error) + mockBitableGetBitableDashboardList func(ctx context.Context, request *GetBitableDashboardListReq, options ...MethodOptionFunc) (*GetBitableDashboardListResp, *Response, error) + mockBitableCreateBitableField func(ctx context.Context, request *CreateBitableFieldReq, options ...MethodOptionFunc) (*CreateBitableFieldResp, *Response, error) + mockBitableDeleteBitableField func(ctx context.Context, request *DeleteBitableFieldReq, options ...MethodOptionFunc) (*DeleteBitableFieldResp, *Response, error) + mockBitableGetBitableFieldList func(ctx context.Context, request *GetBitableFieldListReq, options ...MethodOptionFunc) (*GetBitableFieldListResp, *Response, error) + mockBitableUpdateBitableField func(ctx context.Context, request *UpdateBitableFieldReq, options ...MethodOptionFunc) (*UpdateBitableFieldResp, *Response, error) + mockBitableGetBitableMeta func(ctx context.Context, request *GetBitableMetaReq, options ...MethodOptionFunc) (*GetBitableMetaResp, *Response, error) + mockBitableUpdateBitableMeta func(ctx context.Context, request *UpdateBitableMetaReq, options ...MethodOptionFunc) (*UpdateBitableMetaResp, *Response, error) + mockBitableBatchCreateBitableRecord func(ctx context.Context, request *BatchCreateBitableRecordReq, options ...MethodOptionFunc) (*BatchCreateBitableRecordResp, *Response, error) + mockBitableBatchDeleteBitableRecord func(ctx context.Context, request *BatchDeleteBitableRecordReq, options ...MethodOptionFunc) (*BatchDeleteBitableRecordResp, *Response, error) + mockBitableBatchUpdateBitableRecord func(ctx context.Context, request *BatchUpdateBitableRecordReq, options ...MethodOptionFunc) (*BatchUpdateBitableRecordResp, *Response, error) + mockBitableCreateBitableRecord func(ctx context.Context, request *CreateBitableRecordReq, options ...MethodOptionFunc) (*CreateBitableRecordResp, *Response, error) + mockBitableDeleteBitableRecord func(ctx context.Context, request *DeleteBitableRecordReq, options ...MethodOptionFunc) (*DeleteBitableRecordResp, *Response, error) + mockBitableGetBitableRecord func(ctx context.Context, request *GetBitableRecordReq, options ...MethodOptionFunc) (*GetBitableRecordResp, *Response, error) + mockBitableGetBitableRecordList func(ctx context.Context, request *GetBitableRecordListReq, options ...MethodOptionFunc) (*GetBitableRecordListResp, *Response, error) + mockBitableSearchBitableRecord func(ctx context.Context, request *SearchBitableRecordReq, options ...MethodOptionFunc) (*SearchBitableRecordResp, *Response, error) + mockBitableUpdateBitableRecord func(ctx context.Context, request *UpdateBitableRecordReq, options ...MethodOptionFunc) (*UpdateBitableRecordResp, *Response, error) + mockBitableBatchCreateBitableTable func(ctx context.Context, request *BatchCreateBitableTableReq, options ...MethodOptionFunc) (*BatchCreateBitableTableResp, *Response, error) + mockBitableBatchDeleteBitableTable func(ctx context.Context, request *BatchDeleteBitableTableReq, options ...MethodOptionFunc) (*BatchDeleteBitableTableResp, *Response, error) + mockBitableCreateBitableTable func(ctx context.Context, request *CreateBitableTableReq, options ...MethodOptionFunc) (*CreateBitableTableResp, *Response, error) + mockBitableDeleteBitableTable func(ctx context.Context, request *DeleteBitableTableReq, options ...MethodOptionFunc) (*DeleteBitableTableResp, *Response, error) + mockBitableGetBitableTableFormFieldList func(ctx context.Context, request *GetBitableTableFormFieldListReq, options ...MethodOptionFunc) (*GetBitableTableFormFieldListResp, *Response, error) + mockBitableUpdateBitableTableFormField func(ctx context.Context, request *UpdateBitableTableFormFieldReq, options ...MethodOptionFunc) (*UpdateBitableTableFormFieldResp, *Response, error) + mockBitableGetBitableTableForm func(ctx context.Context, request *GetBitableTableFormReq, options ...MethodOptionFunc) (*GetBitableTableFormResp, *Response, error) + mockBitableUpdateBitableTableForm func(ctx context.Context, request *UpdateBitableTableFormReq, options ...MethodOptionFunc) (*UpdateBitableTableFormResp, *Response, error) + mockBitableGetBitableTableList func(ctx context.Context, request *GetBitableTableListReq, options ...MethodOptionFunc) (*GetBitableTableListResp, *Response, error) + mockBitableUpdateBitableTable func(ctx context.Context, request *UpdateBitableTableReq, options ...MethodOptionFunc) (*UpdateBitableTableResp, *Response, error) + mockBitableCreateBitableView func(ctx context.Context, request *CreateBitableViewReq, options ...MethodOptionFunc) (*CreateBitableViewResp, *Response, error) + mockBitableDeleteBitableView func(ctx context.Context, request *DeleteBitableViewReq, options ...MethodOptionFunc) (*DeleteBitableViewResp, *Response, error) + mockBitableGetBitableView func(ctx context.Context, request *GetBitableViewReq, options ...MethodOptionFunc) (*GetBitableViewResp, *Response, error) + mockBitableGetBitableViewList func(ctx context.Context, request *GetBitableViewListReq, options ...MethodOptionFunc) (*GetBitableViewListResp, *Response, error) + mockBitableUpdateBitableView func(ctx context.Context, request *UpdateBitableViewReq, options ...MethodOptionFunc) (*UpdateBitableViewResp, *Response, error) + mockBotAddBotToChat func(ctx context.Context, request *AddBotToChatReq, options ...MethodOptionFunc) (*AddBotToChatResp, *Response, error) + mockBotGetBotInfo func(ctx context.Context, request *GetBotInfoReq, options ...MethodOptionFunc) (*GetBotInfoResp, *Response, error) + mockCalendarCreateCalendarACL func(ctx context.Context, request *CreateCalendarACLReq, options ...MethodOptionFunc) (*CreateCalendarACLResp, *Response, error) + mockCalendarDeleteCalendarACL func(ctx context.Context, request *DeleteCalendarACLReq, options ...MethodOptionFunc) (*DeleteCalendarACLResp, *Response, error) + mockCalendarGetCalendarACLList func(ctx context.Context, request *GetCalendarACLListReq, options ...MethodOptionFunc) (*GetCalendarACLListResp, *Response, error) + mockCalendarSubscribeCalendarACL func(ctx context.Context, request *SubscribeCalendarACLReq, options ...MethodOptionFunc) (*SubscribeCalendarACLResp, *Response, error) + mockCalendarUnsubscribeCalendarACL func(ctx context.Context, request *UnsubscribeCalendarACLReq, options ...MethodOptionFunc) (*UnsubscribeCalendarACLResp, *Response, error) + mockCalendarCreateCalendar func(ctx context.Context, request *CreateCalendarReq, options ...MethodOptionFunc) (*CreateCalendarResp, *Response, error) + mockCalendarDeleteCalendar func(ctx context.Context, request *DeleteCalendarReq, options ...MethodOptionFunc) (*DeleteCalendarResp, *Response, error) + mockCalendarGetCalendarEventAttendeeChatMemberList func(ctx context.Context, request *GetCalendarEventAttendeeChatMemberListReq, options ...MethodOptionFunc) (*GetCalendarEventAttendeeChatMemberListResp, *Response, error) + mockCalendarCreateCalendarEventAttendee func(ctx context.Context, request *CreateCalendarEventAttendeeReq, options ...MethodOptionFunc) (*CreateCalendarEventAttendeeResp, *Response, error) + mockCalendarDeleteCalendarEventAttendee func(ctx context.Context, request *DeleteCalendarEventAttendeeReq, options ...MethodOptionFunc) (*DeleteCalendarEventAttendeeResp, *Response, error) + mockCalendarGetCalendarEventAttendeeList func(ctx context.Context, request *GetCalendarEventAttendeeListReq, options ...MethodOptionFunc) (*GetCalendarEventAttendeeListResp, *Response, error) + mockCalendarCreateCalendarEvent func(ctx context.Context, request *CreateCalendarEventReq, options ...MethodOptionFunc) (*CreateCalendarEventResp, *Response, error) + mockCalendarDeleteCalendarEvent func(ctx context.Context, request *DeleteCalendarEventReq, options ...MethodOptionFunc) (*DeleteCalendarEventResp, *Response, error) + mockCalendarGetCalendarEvent func(ctx context.Context, request *GetCalendarEventReq, options ...MethodOptionFunc) (*GetCalendarEventResp, *Response, error) + mockCalendarGetCalendarEventList func(ctx context.Context, request *GetCalendarEventListReq, options ...MethodOptionFunc) (*GetCalendarEventListResp, *Response, error) + mockCalendarGetCalendarEventInstanceList func(ctx context.Context, request *GetCalendarEventInstanceListReq, options ...MethodOptionFunc) (*GetCalendarEventInstanceListResp, *Response, error) + mockCalendarGetCalendarEventInstanceViewList func(ctx context.Context, request *GetCalendarEventInstanceViewListReq, options ...MethodOptionFunc) (*GetCalendarEventInstanceViewListResp, *Response, error) + mockCalendarCreateCalendarEventMeetingChat func(ctx context.Context, request *CreateCalendarEventMeetingChatReq, options ...MethodOptionFunc) (*CreateCalendarEventMeetingChatResp, *Response, error) + mockCalendarDeleteCalendarEventMeetingChat func(ctx context.Context, request *DeleteCalendarEventMeetingChatReq, options ...MethodOptionFunc) (*DeleteCalendarEventMeetingChatResp, *Response, error) + mockCalendarUpdateCalendarEvent func(ctx context.Context, request *UpdateCalendarEventReq, options ...MethodOptionFunc) (*UpdateCalendarEventResp, *Response, error) + mockCalendarReplyCalendarEvent func(ctx context.Context, request *ReplyCalendarEventReq, options ...MethodOptionFunc) (*ReplyCalendarEventResp, *Response, error) + mockCalendarSearchCalendarEvent func(ctx context.Context, request *SearchCalendarEventReq, options ...MethodOptionFunc) (*SearchCalendarEventResp, *Response, error) + mockCalendarSubscribeCalendarEvent func(ctx context.Context, request *SubscribeCalendarEventReq, options ...MethodOptionFunc) (*SubscribeCalendarEventResp, *Response, error) + mockCalendarUnsubscribeCalendarEvent func(ctx context.Context, request *UnsubscribeCalendarEventReq, options ...MethodOptionFunc) (*UnsubscribeCalendarEventResp, *Response, error) + mockCalendarGetCalendarFreeBusyList func(ctx context.Context, request *GetCalendarFreeBusyListReq, options ...MethodOptionFunc) (*GetCalendarFreeBusyListResp, *Response, error) + mockCalendarGetCalendar func(ctx context.Context, request *GetCalendarReq, options ...MethodOptionFunc) (*GetCalendarResp, *Response, error) + mockCalendarGetCalendarList func(ctx context.Context, request *GetCalendarListReq, options ...MethodOptionFunc) (*GetCalendarListResp, *Response, error) + mockCalendarUpdateCalendar func(ctx context.Context, request *UpdateCalendarReq, options ...MethodOptionFunc) (*UpdateCalendarResp, *Response, error) + mockCalendarGetPrimaryCalendar func(ctx context.Context, request *GetPrimaryCalendarReq, options ...MethodOptionFunc) (*GetPrimaryCalendarResp, *Response, error) + mockCalendarCreateCalendarPrimarys func(ctx context.Context, request *CreateCalendarPrimarysReq, options ...MethodOptionFunc) (*CreateCalendarPrimarysResp, *Response, error) + mockCalendarSearchCalendar func(ctx context.Context, request *SearchCalendarReq, options ...MethodOptionFunc) (*SearchCalendarResp, *Response, error) + mockCalendarSubscribeCalendar func(ctx context.Context, request *SubscribeCalendarReq, options ...MethodOptionFunc) (*SubscribeCalendarResp, *Response, error) + mockCalendarSubscribeCalendarChangeEvent func(ctx context.Context, request *SubscribeCalendarChangeEventReq, options ...MethodOptionFunc) (*SubscribeCalendarChangeEventResp, *Response, error) + mockCalendarCreateCalendarTimeoffEvent func(ctx context.Context, request *CreateCalendarTimeoffEventReq, options ...MethodOptionFunc) (*CreateCalendarTimeoffEventResp, *Response, error) + mockCalendarDeleteCalendarTimeoffEvent func(ctx context.Context, request *DeleteCalendarTimeoffEventReq, options ...MethodOptionFunc) (*DeleteCalendarTimeoffEventResp, *Response, error) + mockCalendarUnsubscribeCalendar func(ctx context.Context, request *UnsubscribeCalendarReq, options ...MethodOptionFunc) (*UnsubscribeCalendarResp, *Response, error) + mockCalendarUnsubscribeCalendarChangeEvent func(ctx context.Context, request *UnsubscribeCalendarChangeEventReq, options ...MethodOptionFunc) (*UnsubscribeCalendarChangeEventResp, *Response, error) + mockCalendarCreateCalendarExchangeBinding func(ctx context.Context, request *CreateCalendarExchangeBindingReq, options ...MethodOptionFunc) (*CreateCalendarExchangeBindingResp, *Response, error) + mockCalendarDeleteCalendarExchangeBinding func(ctx context.Context, request *DeleteCalendarExchangeBindingReq, options ...MethodOptionFunc) (*DeleteCalendarExchangeBindingResp, *Response, error) + mockCalendarGetCalendarExchangeBinding func(ctx context.Context, request *GetCalendarExchangeBindingReq, options ...MethodOptionFunc) (*GetCalendarExchangeBindingResp, *Response, error) + mockCalendarGenerateCaldavConf func(ctx context.Context, request *GenerateCaldavConfReq, options ...MethodOptionFunc) (*GenerateCaldavConfResp, *Response, error) + mockCalendarBatchGetCalendarMeetingRoomFreebusy func(ctx context.Context, request *BatchGetCalendarMeetingRoomFreebusyReq, options ...MethodOptionFunc) (*BatchGetCalendarMeetingRoomFreebusyResp, *Response, error) + mockCalendarReplyCalendarMeetingRoomInstance func(ctx context.Context, request *ReplyCalendarMeetingRoomInstanceReq, options ...MethodOptionFunc) (*ReplyCalendarMeetingRoomInstanceResp, *Response, error) + mockCalendarBatchGetCalendarMeetingRoomSummary func(ctx context.Context, request *BatchGetCalendarMeetingRoomSummaryReq, options ...MethodOptionFunc) (*BatchGetCalendarMeetingRoomSummaryResp, *Response, error) + mockCcmSheetGetCcmSheetDefaultImportResult func(ctx context.Context, request *GetCcmSheetDefaultImportResultReq, options ...MethodOptionFunc) (*GetCcmSheetDefaultImportResultResp, *Response, error) + mockChatGetChatAnnouncement func(ctx context.Context, request *GetChatAnnouncementReq, options ...MethodOptionFunc) (*GetChatAnnouncementResp, *Response, error) + mockChatUpdateChatAnnouncement func(ctx context.Context, request *UpdateChatAnnouncementReq, options ...MethodOptionFunc) (*UpdateChatAnnouncementResp, *Response, error) + mockChatCreateChat func(ctx context.Context, request *CreateChatReq, options ...MethodOptionFunc) (*CreateChatResp, *Response, error) + mockChatDeleteChat func(ctx context.Context, request *DeleteChatReq, options ...MethodOptionFunc) (*DeleteChatResp, *Response, error) + mockChatGetChat func(ctx context.Context, request *GetChatReq, options ...MethodOptionFunc) (*GetChatResp, *Response, error) + mockChatGetChatListOfSelf func(ctx context.Context, request *GetChatListOfSelfReq, options ...MethodOptionFunc) (*GetChatListOfSelfResp, *Response, error) + mockChatGetChatOld func(ctx context.Context, request *GetChatOldReq, options ...MethodOptionFunc) (*GetChatOldResp, *Response, error) + mockChatJoinChat func(ctx context.Context, request *JoinChatReq, options ...MethodOptionFunc) (*JoinChatResp, *Response, error) + mockChatCreateChatManager func(ctx context.Context, request *CreateChatManagerReq, options ...MethodOptionFunc) (*CreateChatManagerResp, *Response, error) + mockChatDeleteChatManager func(ctx context.Context, request *DeleteChatManagerReq, options ...MethodOptionFunc) (*DeleteChatManagerResp, *Response, error) + mockChatAddChatMember func(ctx context.Context, request *AddChatMemberReq, options ...MethodOptionFunc) (*AddChatMemberResp, *Response, error) + mockChatDeleteChatMember func(ctx context.Context, request *DeleteChatMemberReq, options ...MethodOptionFunc) (*DeleteChatMemberResp, *Response, error) + mockChatGetChatMemberList func(ctx context.Context, request *GetChatMemberListReq, options ...MethodOptionFunc) (*GetChatMemberListResp, *Response, error) + mockChatIsInChat func(ctx context.Context, request *IsInChatReq, options ...MethodOptionFunc) (*IsInChatResp, *Response, error) + mockChatCreateChatMenuTree func(ctx context.Context, request *CreateChatMenuTreeReq, options ...MethodOptionFunc) (*CreateChatMenuTreeResp, *Response, error) + mockChatDeleteChatMenuTree func(ctx context.Context, request *DeleteChatMenuTreeReq, options ...MethodOptionFunc) (*DeleteChatMenuTreeResp, *Response, error) + mockChatGetChatMenuTree func(ctx context.Context, request *GetChatMenuTreeReq, options ...MethodOptionFunc) (*GetChatMenuTreeResp, *Response, error) + mockChatSortChatMenuTree func(ctx context.Context, request *SortChatMenuTreeReq, options ...MethodOptionFunc) (*SortChatMenuTreeResp, *Response, error) + mockChatUpdateChatMenuTree func(ctx context.Context, request *UpdateChatMenuTreeReq, options ...MethodOptionFunc) (*UpdateChatMenuTreeResp, *Response, error) + mockChatGetChatModeration func(ctx context.Context, request *GetChatModerationReq, options ...MethodOptionFunc) (*GetChatModerationResp, *Response, error) + mockChatUpdateChatModeration func(ctx context.Context, request *UpdateChatModerationReq, options ...MethodOptionFunc) (*UpdateChatModerationResp, *Response, error) + mockChatSearchChat func(ctx context.Context, request *SearchChatReq, options ...MethodOptionFunc) (*SearchChatResp, *Response, error) + mockChatGenChatShareLink func(ctx context.Context, request *GenChatShareLinkReq, options ...MethodOptionFunc) (*GenChatShareLinkResp, *Response, error) + mockChatCreateChatTab func(ctx context.Context, request *CreateChatTabReq, options ...MethodOptionFunc) (*CreateChatTabResp, *Response, error) + mockChatDeleteChatTab func(ctx context.Context, request *DeleteChatTabReq, options ...MethodOptionFunc) (*DeleteChatTabResp, *Response, error) + mockChatGetChatTabList func(ctx context.Context, request *GetChatTabListReq, options ...MethodOptionFunc) (*GetChatTabListResp, *Response, error) + mockChatSortChatTab func(ctx context.Context, request *SortChatTabReq, options ...MethodOptionFunc) (*SortChatTabResp, *Response, error) + mockChatUpdateChatTab func(ctx context.Context, request *UpdateChatTabReq, options ...MethodOptionFunc) (*UpdateChatTabResp, *Response, error) + mockChatDeleteChatTopNotice func(ctx context.Context, request *DeleteChatTopNoticeReq, options ...MethodOptionFunc) (*DeleteChatTopNoticeResp, *Response, error) + mockChatUpdateChatTopNotice func(ctx context.Context, request *UpdateChatTopNoticeReq, options ...MethodOptionFunc) (*UpdateChatTopNoticeResp, *Response, error) + mockChatUpdateChat func(ctx context.Context, request *UpdateChatReq, options ...MethodOptionFunc) (*UpdateChatResp, *Response, error) + mockContactGetContactCustomAttrList func(ctx context.Context, request *GetContactCustomAttrListReq, options ...MethodOptionFunc) (*GetContactCustomAttrListResp, *Response, error) + mockContactCreateDepartment func(ctx context.Context, request *CreateDepartmentReq, options ...MethodOptionFunc) (*CreateDepartmentResp, *Response, error) + mockContactDeleteDepartment func(ctx context.Context, request *DeleteDepartmentReq, options ...MethodOptionFunc) (*DeleteDepartmentResp, *Response, error) + mockContactUpdateDepartmentID func(ctx context.Context, request *UpdateDepartmentIDReq, options ...MethodOptionFunc) (*UpdateDepartmentIDResp, *Response, error) + mockContactGetDepartment func(ctx context.Context, request *GetDepartmentReq, options ...MethodOptionFunc) (*GetDepartmentResp, *Response, error) + mockContactBatchGetDepartment func(ctx context.Context, request *BatchGetDepartmentReq, options ...MethodOptionFunc) (*BatchGetDepartmentResp, *Response, error) + mockContactGetDepartmentList func(ctx context.Context, request *GetDepartmentListReq, options ...MethodOptionFunc) (*GetDepartmentListResp, *Response, error) + mockContactGetDepartmentListOld func(ctx context.Context, request *GetDepartmentListOldReq, options ...MethodOptionFunc) (*GetDepartmentListOldResp, *Response, error) + mockContactGetParentDepartment func(ctx context.Context, request *GetParentDepartmentReq, options ...MethodOptionFunc) (*GetParentDepartmentResp, *Response, error) + mockContactSearchDepartment func(ctx context.Context, request *SearchDepartmentReq, options ...MethodOptionFunc) (*SearchDepartmentResp, *Response, error) + mockContactUnbindDepartmentChat func(ctx context.Context, request *UnbindDepartmentChatReq, options ...MethodOptionFunc) (*UnbindDepartmentChatResp, *Response, error) + mockContactUpdateDepartment func(ctx context.Context, request *UpdateDepartmentReq, options ...MethodOptionFunc) (*UpdateDepartmentResp, *Response, error) + mockContactUpdateDepartmentPatch func(ctx context.Context, request *UpdateDepartmentPatchReq, options ...MethodOptionFunc) (*UpdateDepartmentPatchResp, *Response, error) + mockContactCreateEmployeeTypeEnum func(ctx context.Context, request *CreateEmployeeTypeEnumReq, options ...MethodOptionFunc) (*CreateEmployeeTypeEnumResp, *Response, error) + mockContactDeleteEmployeeTypeEnum func(ctx context.Context, request *DeleteEmployeeTypeEnumReq, options ...MethodOptionFunc) (*DeleteEmployeeTypeEnumResp, *Response, error) + mockContactGetEmployeeTypeEnumList func(ctx context.Context, request *GetEmployeeTypeEnumListReq, options ...MethodOptionFunc) (*GetEmployeeTypeEnumListResp, *Response, error) + mockContactUpdateEmployeeTypeEnumPatch func(ctx context.Context, request *UpdateEmployeeTypeEnumPatchReq, options ...MethodOptionFunc) (*UpdateEmployeeTypeEnumPatchResp, *Response, error) + mockContactCreateContactFunctionalRole func(ctx context.Context, request *CreateContactFunctionalRoleReq, options ...MethodOptionFunc) (*CreateContactFunctionalRoleResp, *Response, error) + mockContactDeleteContactFunctionalRole func(ctx context.Context, request *DeleteContactFunctionalRoleReq, options ...MethodOptionFunc) (*DeleteContactFunctionalRoleResp, *Response, error) + mockContactBatchCreateContactFunctionalRoleMember func(ctx context.Context, request *BatchCreateContactFunctionalRoleMemberReq, options ...MethodOptionFunc) (*BatchCreateContactFunctionalRoleMemberResp, *Response, error) + mockContactBatchDeleteContactFunctionalRoleMember func(ctx context.Context, request *BatchDeleteContactFunctionalRoleMemberReq, options ...MethodOptionFunc) (*BatchDeleteContactFunctionalRoleMemberResp, *Response, error) + mockContactGetContactFunctionalRoleMember func(ctx context.Context, request *GetContactFunctionalRoleMemberReq, options ...MethodOptionFunc) (*GetContactFunctionalRoleMemberResp, *Response, error) + mockContactGetContactFunctionalRoleMemberScope func(ctx context.Context, request *GetContactFunctionalRoleMemberScopeReq, options ...MethodOptionFunc) (*GetContactFunctionalRoleMemberScopeResp, *Response, error) + mockContactUpdateContactFunctionalRoleMemberScope func(ctx context.Context, request *UpdateContactFunctionalRoleMemberScopeReq, options ...MethodOptionFunc) (*UpdateContactFunctionalRoleMemberScopeResp, *Response, error) + mockContactUpdateContactFunctionalRole func(ctx context.Context, request *UpdateContactFunctionalRoleReq, options ...MethodOptionFunc) (*UpdateContactFunctionalRoleResp, *Response, error) + mockContactDeleteContactGroup func(ctx context.Context, request *DeleteContactGroupReq, options ...MethodOptionFunc) (*DeleteContactGroupResp, *Response, error) + mockContactGetContactGroup func(ctx context.Context, request *GetContactGroupReq, options ...MethodOptionFunc) (*GetContactGroupResp, *Response, error) + mockContactCreateContactGroup func(ctx context.Context, request *CreateContactGroupReq, options ...MethodOptionFunc) (*CreateContactGroupResp, *Response, error) + mockContactGetContactGroupList func(ctx context.Context, request *GetContactGroupListReq, options ...MethodOptionFunc) (*GetContactGroupListResp, *Response, error) + mockContactAddContactGroupMember func(ctx context.Context, request *AddContactGroupMemberReq, options ...MethodOptionFunc) (*AddContactGroupMemberResp, *Response, error) + mockContactBatchAddContactGroupMember func(ctx context.Context, request *BatchAddContactGroupMemberReq, options ...MethodOptionFunc) (*BatchAddContactGroupMemberResp, *Response, error) + mockContactGetContactMemberGroupList func(ctx context.Context, request *GetContactMemberGroupListReq, options ...MethodOptionFunc) (*GetContactMemberGroupListResp, *Response, error) + mockContactDeleteContactGroupMember func(ctx context.Context, request *DeleteContactGroupMemberReq, options ...MethodOptionFunc) (*DeleteContactGroupMemberResp, *Response, error) + mockContactBatchDeleteContactGroupMember func(ctx context.Context, request *BatchDeleteContactGroupMemberReq, options ...MethodOptionFunc) (*BatchDeleteContactGroupMemberResp, *Response, error) + mockContactGetContactGroupMember func(ctx context.Context, request *GetContactGroupMemberReq, options ...MethodOptionFunc) (*GetContactGroupMemberResp, *Response, error) + mockContactUpdateContactGroup func(ctx context.Context, request *UpdateContactGroupReq, options ...MethodOptionFunc) (*UpdateContactGroupResp, *Response, error) + mockContactCreateContactJobFamily func(ctx context.Context, request *CreateContactJobFamilyReq, options ...MethodOptionFunc) (*CreateContactJobFamilyResp, *Response, error) + mockContactDeleteContactJobFamily func(ctx context.Context, request *DeleteContactJobFamilyReq, options ...MethodOptionFunc) (*DeleteContactJobFamilyResp, *Response, error) + mockContactGetContactJobFamily func(ctx context.Context, request *GetContactJobFamilyReq, options ...MethodOptionFunc) (*GetContactJobFamilyResp, *Response, error) + mockContactGetContactJobFamilyList func(ctx context.Context, request *GetContactJobFamilyListReq, options ...MethodOptionFunc) (*GetContactJobFamilyListResp, *Response, error) + mockContactUpdateContactJobFamily func(ctx context.Context, request *UpdateContactJobFamilyReq, options ...MethodOptionFunc) (*UpdateContactJobFamilyResp, *Response, error) + mockContactCreateContactJobLevel func(ctx context.Context, request *CreateContactJobLevelReq, options ...MethodOptionFunc) (*CreateContactJobLevelResp, *Response, error) + mockContactDeleteContactJobLevel func(ctx context.Context, request *DeleteContactJobLevelReq, options ...MethodOptionFunc) (*DeleteContactJobLevelResp, *Response, error) + mockContactGetContactJobLevel func(ctx context.Context, request *GetContactJobLevelReq, options ...MethodOptionFunc) (*GetContactJobLevelResp, *Response, error) + mockContactGetContactJobLevelList func(ctx context.Context, request *GetContactJobLevelListReq, options ...MethodOptionFunc) (*GetContactJobLevelListResp, *Response, error) + mockContactUpdateContactJobLevel func(ctx context.Context, request *UpdateContactJobLevelReq, options ...MethodOptionFunc) (*UpdateContactJobLevelResp, *Response, error) + mockContactGetContactJobTitle func(ctx context.Context, request *GetContactJobTitleReq, options ...MethodOptionFunc) (*GetContactJobTitleResp, *Response, error) + mockContactGetContactJobTitleList func(ctx context.Context, request *GetContactJobTitleListReq, options ...MethodOptionFunc) (*GetContactJobTitleListResp, *Response, error) + mockContactGetContactScopeList func(ctx context.Context, request *GetContactScopeListReq, options ...MethodOptionFunc) (*GetContactScopeListResp, *Response, error) + mockContactBindContactUnitDepartment func(ctx context.Context, request *BindContactUnitDepartmentReq, options ...MethodOptionFunc) (*BindContactUnitDepartmentResp, *Response, error) + mockContactCreateContactUnit func(ctx context.Context, request *CreateContactUnitReq, options ...MethodOptionFunc) (*CreateContactUnitResp, *Response, error) + mockContactDeleteContactUnit func(ctx context.Context, request *DeleteContactUnitReq, options ...MethodOptionFunc) (*DeleteContactUnitResp, *Response, error) + mockContactGetContactUnit func(ctx context.Context, request *GetContactUnitReq, options ...MethodOptionFunc) (*GetContactUnitResp, *Response, error) + mockContactGetContactUnitList func(ctx context.Context, request *GetContactUnitListReq, options ...MethodOptionFunc) (*GetContactUnitListResp, *Response, error) + mockContactGetContactUnitDepartmentList func(ctx context.Context, request *GetContactUnitDepartmentListReq, options ...MethodOptionFunc) (*GetContactUnitDepartmentListResp, *Response, error) + mockContactUnbindContactUnitDepartment func(ctx context.Context, request *UnbindContactUnitDepartmentReq, options ...MethodOptionFunc) (*UnbindContactUnitDepartmentResp, *Response, error) + mockContactUpdateContactUnit func(ctx context.Context, request *UpdateContactUnitReq, options ...MethodOptionFunc) (*UpdateContactUnitResp, *Response, error) + mockContactBatchGetUserByID func(ctx context.Context, request *BatchGetUserByIDReq, options ...MethodOptionFunc) (*BatchGetUserByIDResp, *Response, error) + mockContactCreateUser func(ctx context.Context, request *CreateUserReq, options ...MethodOptionFunc) (*CreateUserResp, *Response, error) + mockContactDeleteUser func(ctx context.Context, request *DeleteUserReq, options ...MethodOptionFunc) (*DeleteUserResp, *Response, error) + mockContactGetUser func(ctx context.Context, request *GetUserReq, options ...MethodOptionFunc) (*GetUserResp, *Response, error) + mockContactBatchGetUser func(ctx context.Context, request *BatchGetUserReq, options ...MethodOptionFunc) (*BatchGetUserResp, *Response, error) + mockContactBatchGetUserByIDOld func(ctx context.Context, request *BatchGetUserByIDOldReq, options ...MethodOptionFunc) (*BatchGetUserByIDOldResp, *Response, error) + mockContactGetUserList func(ctx context.Context, request *GetUserListReq, options ...MethodOptionFunc) (*GetUserListResp, *Response, error) + mockContactGetUserListOld func(ctx context.Context, request *GetUserListOldReq, options ...MethodOptionFunc) (*GetUserListOldResp, *Response, error) + mockContactUpdateUserID func(ctx context.Context, request *UpdateUserIDReq, options ...MethodOptionFunc) (*UpdateUserIDResp, *Response, error) + mockContactResurrectUser func(ctx context.Context, request *ResurrectUserReq, options ...MethodOptionFunc) (*ResurrectUserResp, *Response, error) + mockContactSearchUserOld func(ctx context.Context, request *SearchUserOldReq, options ...MethodOptionFunc) (*SearchUserOldResp, *Response, error) + mockContactUpdateUser func(ctx context.Context, request *UpdateUserReq, options ...MethodOptionFunc) (*UpdateUserResp, *Response, error) + mockContactUpdateUserPatch func(ctx context.Context, request *UpdateUserPatchReq, options ...MethodOptionFunc) (*UpdateUserPatchResp, *Response, error) + mockContactBatchAddContactV2Department func(ctx context.Context, request *BatchAddContactV2DepartmentReq, options ...MethodOptionFunc) (*BatchAddContactV2DepartmentResp, *Response, error) + mockContactGetContactV2Task func(ctx context.Context, request *GetContactV2TaskReq, options ...MethodOptionFunc) (*GetContactV2TaskResp, *Response, error) + mockContactBatchAddContactV2User func(ctx context.Context, request *BatchAddContactV2UserReq, options ...MethodOptionFunc) (*BatchAddContactV2UserResp, *Response, error) + mockContactGetContactWorkCity func(ctx context.Context, request *GetContactWorkCityReq, options ...MethodOptionFunc) (*GetContactWorkCityResp, *Response, error) + mockContactGetContactWorkCityList func(ctx context.Context, request *GetContactWorkCityListReq, options ...MethodOptionFunc) (*GetContactWorkCityListResp, *Response, error) + mockCoreHRSearchCoreHRAssignedUser func(ctx context.Context, request *SearchCoreHRAssignedUserReq, options ...MethodOptionFunc) (*SearchCoreHRAssignedUserResp, *Response, error) + mockCoreHRGetCoreHRAuthorization func(ctx context.Context, request *GetCoreHRAuthorizationReq, options ...MethodOptionFunc) (*GetCoreHRAuthorizationResp, *Response, error) + mockCoreHRGetCoreHRAuthorizationList func(ctx context.Context, request *GetCoreHRAuthorizationListReq, options ...MethodOptionFunc) (*GetCoreHRAuthorizationListResp, *Response, error) + mockCoreHRSearchCoreHRBankBranch func(ctx context.Context, request *SearchCoreHRBankBranchReq, options ...MethodOptionFunc) (*SearchCoreHRBankBranchResp, *Response, error) + mockCoreHRSearchCoreHRBank func(ctx context.Context, request *SearchCoreHRBankReq, options ...MethodOptionFunc) (*SearchCoreHRBankResp, *Response, error) + mockCoreHRGetCoreHrbpByDepartment func(ctx context.Context, request *GetCoreHrbpByDepartmentReq, options ...MethodOptionFunc) (*GetCoreHrbpByDepartmentResp, *Response, error) + mockCoreHRBatchGetCoreHrbpByEmployee func(ctx context.Context, request *BatchGetCoreHrbpByEmployeeReq, options ...MethodOptionFunc) (*BatchGetCoreHrbpByEmployeeResp, *Response, error) + mockCoreHRGetCoreHrbpList func(ctx context.Context, request *GetCoreHrbpListReq, options ...MethodOptionFunc) (*GetCoreHrbpListResp, *Response, error) + mockCoreHRSearchCoreHRCity func(ctx context.Context, request *SearchCoreHRCityReq, options ...MethodOptionFunc) (*SearchCoreHRCityResp, *Response, error) + mockCoreHRCreateCoreHRCompany func(ctx context.Context, request *CreateCoreHRCompanyReq, options ...MethodOptionFunc) (*CreateCoreHRCompanyResp, *Response, error) + mockCoreHRDeleteCoreHRCompany func(ctx context.Context, request *DeleteCoreHRCompanyReq, options ...MethodOptionFunc) (*DeleteCoreHRCompanyResp, *Response, error) + mockCoreHRGetCoreHRCompany func(ctx context.Context, request *GetCoreHRCompanyReq, options ...MethodOptionFunc) (*GetCoreHRCompanyResp, *Response, error) + mockCoreHRBatchGetCoreHRCompany func(ctx context.Context, request *BatchGetCoreHRCompanyReq, options ...MethodOptionFunc) (*BatchGetCoreHRCompanyResp, *Response, error) + mockCoreHRGetCoreHRCompanyList func(ctx context.Context, request *GetCoreHRCompanyListReq, options ...MethodOptionFunc) (*GetCoreHRCompanyListResp, *Response, error) + mockCoreHRUpdateCoreHRCompany func(ctx context.Context, request *UpdateCoreHRCompanyReq, options ...MethodOptionFunc) (*UpdateCoreHRCompanyResp, *Response, error) + mockCoreHRQueryCoreHRCompensationArchive func(ctx context.Context, request *QueryCoreHRCompensationArchiveReq, options ...MethodOptionFunc) (*QueryCoreHRCompensationArchiveResp, *Response, error) + mockCoreHRGetCoreHRCompensationChangeReasonList func(ctx context.Context, request *GetCoreHRCompensationChangeReasonListReq, options ...MethodOptionFunc) (*GetCoreHRCompensationChangeReasonListResp, *Response, error) + mockCoreHRGetCoreHRCompensationIndicatorList func(ctx context.Context, request *GetCoreHRCompensationIndicatorListReq, options ...MethodOptionFunc) (*GetCoreHRCompensationIndicatorListResp, *Response, error) + mockCoreHRGetCoreHRCompensationItemCategoryList func(ctx context.Context, request *GetCoreHRCompensationItemCategoryListReq, options ...MethodOptionFunc) (*GetCoreHRCompensationItemCategoryListResp, *Response, error) + mockCoreHRGetCoreHRCompensationItemList func(ctx context.Context, request *GetCoreHRCompensationItemListReq, options ...MethodOptionFunc) (*GetCoreHRCompensationItemListResp, *Response, error) + mockCoreHRGetCoreHRCompensationPlanList func(ctx context.Context, request *GetCoreHRCompensationPlanListReq, options ...MethodOptionFunc) (*GetCoreHRCompensationPlanListResp, *Response, error) + mockCoreHRMatchCoreHRCompensationStandard func(ctx context.Context, request *MatchCoreHRCompensationStandardReq, options ...MethodOptionFunc) (*MatchCoreHRCompensationStandardResp, *Response, error) + mockCoreHRCreateCoreHRContract func(ctx context.Context, request *CreateCoreHRContractReq, options ...MethodOptionFunc) (*CreateCoreHRContractResp, *Response, error) + mockCoreHRDeleteCoreHRContract func(ctx context.Context, request *DeleteCoreHRContractReq, options ...MethodOptionFunc) (*DeleteCoreHRContractResp, *Response, error) + mockCoreHRGetCoreHRContract func(ctx context.Context, request *GetCoreHRContractReq, options ...MethodOptionFunc) (*GetCoreHRContractResp, *Response, error) + mockCoreHRGetCoreHRContractList func(ctx context.Context, request *GetCoreHRContractListReq, options ...MethodOptionFunc) (*GetCoreHRContractListResp, *Response, error) + mockCoreHRSearchCoreHRContract func(ctx context.Context, request *SearchCoreHRContractReq, options ...MethodOptionFunc) (*SearchCoreHRContractResp, *Response, error) + mockCoreHRUpdateCoreHRContract func(ctx context.Context, request *UpdateCoreHRContractReq, options ...MethodOptionFunc) (*UpdateCoreHRContractResp, *Response, error) + mockCoreHRActiveCoreHRCostCenter func(ctx context.Context, request *ActiveCoreHRCostCenterReq, options ...MethodOptionFunc) (*ActiveCoreHRCostCenterResp, *Response, error) + mockCoreHRCreateCoreHRCostCenter func(ctx context.Context, request *CreateCoreHRCostCenterReq, options ...MethodOptionFunc) (*CreateCoreHRCostCenterResp, *Response, error) + mockCoreHRDeleteCoreHRCostCenter func(ctx context.Context, request *DeleteCoreHRCostCenterReq, options ...MethodOptionFunc) (*DeleteCoreHRCostCenterResp, *Response, error) + mockCoreHRSearchCoreHRCostCenter func(ctx context.Context, request *SearchCoreHRCostCenterReq, options ...MethodOptionFunc) (*SearchCoreHRCostCenterResp, *Response, error) + mockCoreHRCreateCoreHRCostCenterVersion func(ctx context.Context, request *CreateCoreHRCostCenterVersionReq, options ...MethodOptionFunc) (*CreateCoreHRCostCenterVersionResp, *Response, error) + mockCoreHRDeleteCoreHRCostCenterVersion func(ctx context.Context, request *DeleteCoreHRCostCenterVersionReq, options ...MethodOptionFunc) (*DeleteCoreHRCostCenterVersionResp, *Response, error) + mockCoreHRUpdateCoreHRCostCenterVersion func(ctx context.Context, request *UpdateCoreHRCostCenterVersionReq, options ...MethodOptionFunc) (*UpdateCoreHRCostCenterVersionResp, *Response, error) + mockCoreHRGetCoreHRCountryRegion func(ctx context.Context, request *GetCoreHRCountryRegionReq, options ...MethodOptionFunc) (*GetCoreHRCountryRegionResp, *Response, error) + mockCoreHRGetCoreHRCountryRegionList func(ctx context.Context, request *GetCoreHRCountryRegionListReq, options ...MethodOptionFunc) (*GetCoreHRCountryRegionListResp, *Response, error) + mockCoreHRSearchCoreHRCountryRegion func(ctx context.Context, request *SearchCoreHRCountryRegionReq, options ...MethodOptionFunc) (*SearchCoreHRCountryRegionResp, *Response, error) + mockCoreHRSearchCoreHRCountryRegionSubdivision func(ctx context.Context, request *SearchCoreHRCountryRegionSubdivisionReq, options ...MethodOptionFunc) (*SearchCoreHRCountryRegionSubdivisionResp, *Response, error) + mockCoreHRGetCoreHRCurrency func(ctx context.Context, request *GetCoreHRCurrencyReq, options ...MethodOptionFunc) (*GetCoreHRCurrencyResp, *Response, error) + mockCoreHRGetCoreHRCurrencyList func(ctx context.Context, request *GetCoreHRCurrencyListReq, options ...MethodOptionFunc) (*GetCoreHRCurrencyListResp, *Response, error) + mockCoreHRSearchCoreHRCurrency func(ctx context.Context, request *SearchCoreHRCurrencyReq, options ...MethodOptionFunc) (*SearchCoreHRCurrencyResp, *Response, error) + mockCoreHRGetCoreHRCustomField func(ctx context.Context, request *GetCoreHRCustomFieldReq, options ...MethodOptionFunc) (*GetCoreHRCustomFieldResp, *Response, error) + mockCoreHRGetCoreHRCustomFieldList func(ctx context.Context, request *GetCoreHRCustomFieldListReq, options ...MethodOptionFunc) (*GetCoreHRCustomFieldListResp, *Response, error) + mockCoreHRGetCoreHRCustomFieldObjectApiNameList func(ctx context.Context, request *GetCoreHRCustomFieldObjectApiNameListReq, options ...MethodOptionFunc) (*GetCoreHRCustomFieldObjectApiNameListResp, *Response, error) + mockCoreHRCreateCoreHRDepartment func(ctx context.Context, request *CreateCoreHRDepartmentReq, options ...MethodOptionFunc) (*CreateCoreHRDepartmentResp, *Response, error) + mockCoreHRDeleteCoreHRDepartment func(ctx context.Context, request *DeleteCoreHRDepartmentReq, options ...MethodOptionFunc) (*DeleteCoreHRDepartmentResp, *Response, error) + mockCoreHRGetCoreHRDepartment func(ctx context.Context, request *GetCoreHRDepartmentReq, options ...MethodOptionFunc) (*GetCoreHRDepartmentResp, *Response, error) + mockCoreHRBatchGetCoreHRDepartment func(ctx context.Context, request *BatchGetCoreHRDepartmentReq, options ...MethodOptionFunc) (*BatchGetCoreHRDepartmentResp, *Response, error) + mockCoreHRGetCoreHRDepartmentList func(ctx context.Context, request *GetCoreHRDepartmentListReq, options ...MethodOptionFunc) (*GetCoreHRDepartmentListResp, *Response, error) + mockCoreHRGetCoreHRDepartmentParentList func(ctx context.Context, request *GetCoreHRDepartmentParentListReq, options ...MethodOptionFunc) (*GetCoreHRDepartmentParentListResp, *Response, error) + mockCoreHRSearchCoreHRDepartment func(ctx context.Context, request *SearchCoreHRDepartmentReq, options ...MethodOptionFunc) (*SearchCoreHRDepartmentResp, *Response, error) + mockCoreHRBatchQueryCoreHRDepartmentTimeline func(ctx context.Context, request *BatchQueryCoreHRDepartmentTimelineReq, options ...MethodOptionFunc) (*BatchQueryCoreHRDepartmentTimelineResp, *Response, error) + mockCoreHRQueryCoreHRDepartmentTimeline func(ctx context.Context, request *QueryCoreHRDepartmentTimelineReq, options ...MethodOptionFunc) (*QueryCoreHRDepartmentTimelineResp, *Response, error) + mockCoreHRUpdateCoreHRDepartment func(ctx context.Context, request *UpdateCoreHRDepartmentReq, options ...MethodOptionFunc) (*UpdateCoreHRDepartmentResp, *Response, error) + mockCoreHRSearchCoreHRDistrict func(ctx context.Context, request *SearchCoreHRDistrictReq, options ...MethodOptionFunc) (*SearchCoreHRDistrictResp, *Response, error) + mockCoreHRBatchGetCoreHREmployee func(ctx context.Context, request *BatchGetCoreHREmployeeReq, options ...MethodOptionFunc) (*BatchGetCoreHREmployeeResp, *Response, error) + mockCoreHRSearchCoreHREmployee func(ctx context.Context, request *SearchCoreHREmployeeReq, options ...MethodOptionFunc) (*SearchCoreHREmployeeResp, *Response, error) + mockCoreHRCreateCoreHREmployeeType func(ctx context.Context, request *CreateCoreHREmployeeTypeReq, options ...MethodOptionFunc) (*CreateCoreHREmployeeTypeResp, *Response, error) + mockCoreHRDeleteCoreHREmployeeType func(ctx context.Context, request *DeleteCoreHREmployeeTypeReq, options ...MethodOptionFunc) (*DeleteCoreHREmployeeTypeResp, *Response, error) + mockCoreHRGetCoreHREmployeeType func(ctx context.Context, request *GetCoreHREmployeeTypeReq, options ...MethodOptionFunc) (*GetCoreHREmployeeTypeResp, *Response, error) + mockCoreHRGetCoreHREmployeeTypeList func(ctx context.Context, request *GetCoreHREmployeeTypeListReq, options ...MethodOptionFunc) (*GetCoreHREmployeeTypeListResp, *Response, error) + mockCoreHRUpdateCoreHREmployeeType func(ctx context.Context, request *UpdateCoreHREmployeeTypeReq, options ...MethodOptionFunc) (*UpdateCoreHREmployeeTypeResp, *Response, error) + mockCoreHRCreateCoreHREmployment func(ctx context.Context, request *CreateCoreHREmploymentReq, options ...MethodOptionFunc) (*CreateCoreHREmploymentResp, *Response, error) + mockCoreHRDeleteCoreHREmployment func(ctx context.Context, request *DeleteCoreHREmploymentReq, options ...MethodOptionFunc) (*DeleteCoreHREmploymentResp, *Response, error) + mockCoreHRUpdateCoreHREmployment func(ctx context.Context, request *UpdateCoreHREmploymentReq, options ...MethodOptionFunc) (*UpdateCoreHREmploymentResp, *Response, error) + mockCoreHRCreateCoreHRJobChange func(ctx context.Context, request *CreateCoreHRJobChangeReq, options ...MethodOptionFunc) (*CreateCoreHRJobChangeResp, *Response, error) + mockCoreHRSearchCoreHRJobChange func(ctx context.Context, request *SearchCoreHRJobChangeReq, options ...MethodOptionFunc) (*SearchCoreHRJobChangeResp, *Response, error) + mockCoreHRCreateCoreHRJob func(ctx context.Context, request *CreateCoreHRJobReq, options ...MethodOptionFunc) (*CreateCoreHRJobResp, *Response, error) + mockCoreHRBatchGetCoreHRJobData func(ctx context.Context, request *BatchGetCoreHRJobDataReq, options ...MethodOptionFunc) (*BatchGetCoreHRJobDataResp, *Response, error) + mockCoreHRCreateCoreHRJobData func(ctx context.Context, request *CreateCoreHRJobDataReq, options ...MethodOptionFunc) (*CreateCoreHRJobDataResp, *Response, error) + mockCoreHRDeleteCoreHRJobData func(ctx context.Context, request *DeleteCoreHRJobDataReq, options ...MethodOptionFunc) (*DeleteCoreHRJobDataResp, *Response, error) + mockCoreHRGetCoreHRJobData func(ctx context.Context, request *GetCoreHRJobDataReq, options ...MethodOptionFunc) (*GetCoreHRJobDataResp, *Response, error) + mockCoreHRGetCoreHRJobDataList func(ctx context.Context, request *GetCoreHRJobDataListReq, options ...MethodOptionFunc) (*GetCoreHRJobDataListResp, *Response, error) + mockCoreHRQueryCoreHRJobData func(ctx context.Context, request *QueryCoreHRJobDataReq, options ...MethodOptionFunc) (*QueryCoreHRJobDataResp, *Response, error) + mockCoreHRUpdateCoreHRJobData func(ctx context.Context, request *UpdateCoreHRJobDataReq, options ...MethodOptionFunc) (*UpdateCoreHRJobDataResp, *Response, error) + mockCoreHRDeleteCoreHRJob func(ctx context.Context, request *DeleteCoreHRJobReq, options ...MethodOptionFunc) (*DeleteCoreHRJobResp, *Response, error) + mockCoreHRCreateCoreHRJobFamily func(ctx context.Context, request *CreateCoreHRJobFamilyReq, options ...MethodOptionFunc) (*CreateCoreHRJobFamilyResp, *Response, error) + mockCoreHRDeleteCoreHRJobFamily func(ctx context.Context, request *DeleteCoreHRJobFamilyReq, options ...MethodOptionFunc) (*DeleteCoreHRJobFamilyResp, *Response, error) + mockCoreHRGetCoreHRJobFamily func(ctx context.Context, request *GetCoreHRJobFamilyReq, options ...MethodOptionFunc) (*GetCoreHRJobFamilyResp, *Response, error) + mockCoreHRBatchGetCoreHRJobFamily func(ctx context.Context, request *BatchGetCoreHRJobFamilyReq, options ...MethodOptionFunc) (*BatchGetCoreHRJobFamilyResp, *Response, error) + mockCoreHRGetCoreHRJobFamilyList func(ctx context.Context, request *GetCoreHRJobFamilyListReq, options ...MethodOptionFunc) (*GetCoreHRJobFamilyListResp, *Response, error) + mockCoreHRUpdateCoreHRJobFamily func(ctx context.Context, request *UpdateCoreHRJobFamilyReq, options ...MethodOptionFunc) (*UpdateCoreHRJobFamilyResp, *Response, error) + mockCoreHRGetCoreHRJob func(ctx context.Context, request *GetCoreHRJobReq, options ...MethodOptionFunc) (*GetCoreHRJobResp, *Response, error) + mockCoreHRGetCoreHRJobV2 func(ctx context.Context, request *GetCoreHRJobV2Req, options ...MethodOptionFunc) (*GetCoreHRJobV2Resp, *Response, error) + mockCoreHRQueryCoreHRJobGrade func(ctx context.Context, request *QueryCoreHRJobGradeReq, options ...MethodOptionFunc) (*QueryCoreHRJobGradeResp, *Response, error) + mockCoreHRCreateCoreHRJobLevel func(ctx context.Context, request *CreateCoreHRJobLevelReq, options ...MethodOptionFunc) (*CreateCoreHRJobLevelResp, *Response, error) + mockCoreHRDeleteCoreHRJobLevel func(ctx context.Context, request *DeleteCoreHRJobLevelReq, options ...MethodOptionFunc) (*DeleteCoreHRJobLevelResp, *Response, error) + mockCoreHRGetCoreHRJobLevel func(ctx context.Context, request *GetCoreHRJobLevelReq, options ...MethodOptionFunc) (*GetCoreHRJobLevelResp, *Response, error) + mockCoreHRBatchGetCoreHRJobLevel func(ctx context.Context, request *BatchGetCoreHRJobLevelReq, options ...MethodOptionFunc) (*BatchGetCoreHRJobLevelResp, *Response, error) + mockCoreHRGetCoreHRJobLevelList func(ctx context.Context, request *GetCoreHRJobLevelListReq, options ...MethodOptionFunc) (*GetCoreHRJobLevelListResp, *Response, error) + mockCoreHRUpdateCoreHRJobLevel func(ctx context.Context, request *UpdateCoreHRJobLevelReq, options ...MethodOptionFunc) (*UpdateCoreHRJobLevelResp, *Response, error) + mockCoreHRGetCoreHRJobList func(ctx context.Context, request *GetCoreHRJobListReq, options ...MethodOptionFunc) (*GetCoreHRJobListResp, *Response, error) + mockCoreHRGetCoreHRJobListV2 func(ctx context.Context, request *GetCoreHRJobListV2Req, options ...MethodOptionFunc) (*GetCoreHRJobListV2Resp, *Response, error) + mockCoreHRUpdateCoreHRJob func(ctx context.Context, request *UpdateCoreHRJobReq, options ...MethodOptionFunc) (*UpdateCoreHRJobResp, *Response, error) + mockCoreHRCreateCoreHRLeaveGrantingRecord func(ctx context.Context, request *CreateCoreHRLeaveGrantingRecordReq, options ...MethodOptionFunc) (*CreateCoreHRLeaveGrantingRecordResp, *Response, error) + mockCoreHRDeleteCoreHRLeaveGrantingRecord func(ctx context.Context, request *DeleteCoreHRLeaveGrantingRecordReq, options ...MethodOptionFunc) (*DeleteCoreHRLeaveGrantingRecordResp, *Response, error) + mockCoreHRGetCoreHRLeaveBalanceList func(ctx context.Context, request *GetCoreHRLeaveBalanceListReq, options ...MethodOptionFunc) (*GetCoreHRLeaveBalanceListResp, *Response, error) + mockCoreHRGetCoreHRLeaveRequestHistoryList func(ctx context.Context, request *GetCoreHRLeaveRequestHistoryListReq, options ...MethodOptionFunc) (*GetCoreHRLeaveRequestHistoryListResp, *Response, error) + mockCoreHRGetCoreHRLeaveTypeList func(ctx context.Context, request *GetCoreHRLeaveTypeListReq, options ...MethodOptionFunc) (*GetCoreHRLeaveTypeListResp, *Response, error) + mockCoreHRCreateCoreHRLocation func(ctx context.Context, request *CreateCoreHRLocationReq, options ...MethodOptionFunc) (*CreateCoreHRLocationResp, *Response, error) + mockCoreHRDeleteCoreHRLocation func(ctx context.Context, request *DeleteCoreHRLocationReq, options ...MethodOptionFunc) (*DeleteCoreHRLocationResp, *Response, error) + mockCoreHRGetCoreHRLocation func(ctx context.Context, request *GetCoreHRLocationReq, options ...MethodOptionFunc) (*GetCoreHRLocationResp, *Response, error) + mockCoreHRBatchGetCoreHRLocation func(ctx context.Context, request *BatchGetCoreHRLocationReq, options ...MethodOptionFunc) (*BatchGetCoreHRLocationResp, *Response, error) + mockCoreHRGetCoreHRLocationList func(ctx context.Context, request *GetCoreHRLocationListReq, options ...MethodOptionFunc) (*GetCoreHRLocationListResp, *Response, error) + mockCoreHRCreateCoreHRNationalIDType func(ctx context.Context, request *CreateCoreHRNationalIDTypeReq, options ...MethodOptionFunc) (*CreateCoreHRNationalIDTypeResp, *Response, error) + mockCoreHRDeleteCoreHRNationalIDType func(ctx context.Context, request *DeleteCoreHRNationalIDTypeReq, options ...MethodOptionFunc) (*DeleteCoreHRNationalIDTypeResp, *Response, error) + mockCoreHRGetCoreHRNationalIDType func(ctx context.Context, request *GetCoreHRNationalIDTypeReq, options ...MethodOptionFunc) (*GetCoreHRNationalIDTypeResp, *Response, error) + mockCoreHRGetCoreHRNationalIDTypeList func(ctx context.Context, request *GetCoreHRNationalIDTypeListReq, options ...MethodOptionFunc) (*GetCoreHRNationalIDTypeListResp, *Response, error) + mockCoreHRUpdateCoreHRNationalIDType func(ctx context.Context, request *UpdateCoreHRNationalIDTypeReq, options ...MethodOptionFunc) (*UpdateCoreHRNationalIDTypeResp, *Response, error) + mockCoreHRSearchCoreHRNationality func(ctx context.Context, request *SearchCoreHRNationalityReq, options ...MethodOptionFunc) (*SearchCoreHRNationalityResp, *Response, error) + mockCoreHRCreateCoreHROffboarding func(ctx context.Context, request *CreateCoreHROffboardingReq, options ...MethodOptionFunc) (*CreateCoreHROffboardingResp, *Response, error) + mockCoreHRGetCoreHROffboardingList func(ctx context.Context, request *GetCoreHROffboardingListReq, options ...MethodOptionFunc) (*GetCoreHROffboardingListResp, *Response, error) + mockCoreHRSearchCoreHROffboarding func(ctx context.Context, request *SearchCoreHROffboardingReq, options ...MethodOptionFunc) (*SearchCoreHROffboardingResp, *Response, error) + mockCoreHRCreateCoreHRPerson func(ctx context.Context, request *CreateCoreHRPersonReq, options ...MethodOptionFunc) (*CreateCoreHRPersonResp, *Response, error) + mockCoreHRDeleteCoreHRPerson func(ctx context.Context, request *DeleteCoreHRPersonReq, options ...MethodOptionFunc) (*DeleteCoreHRPersonResp, *Response, error) + mockCoreHRDownloadCoreHRPersonFile func(ctx context.Context, request *DownloadCoreHRPersonFileReq, options ...MethodOptionFunc) (*DownloadCoreHRPersonFileResp, *Response, error) + mockCoreHRUploadCoreHRPersonFile func(ctx context.Context, request *UploadCoreHRPersonFileReq, options ...MethodOptionFunc) (*UploadCoreHRPersonFileResp, *Response, error) + mockCoreHRGetCoreHRPerson func(ctx context.Context, request *GetCoreHRPersonReq, options ...MethodOptionFunc) (*GetCoreHRPersonResp, *Response, error) + mockCoreHRUpdateCoreHRPerson func(ctx context.Context, request *UpdateCoreHRPersonReq, options ...MethodOptionFunc) (*UpdateCoreHRPersonResp, *Response, error) + mockCoreHRCreateCoreHRPreHire func(ctx context.Context, request *CreateCoreHRPreHireReq, options ...MethodOptionFunc) (*CreateCoreHRPreHireResp, *Response, error) + mockCoreHRDeleteCoreHRPreHire func(ctx context.Context, request *DeleteCoreHRPreHireReq, options ...MethodOptionFunc) (*DeleteCoreHRPreHireResp, *Response, error) + mockCoreHRGetCoreHRPreHire func(ctx context.Context, request *GetCoreHRPreHireReq, options ...MethodOptionFunc) (*GetCoreHRPreHireResp, *Response, error) + mockCoreHRGetCoreHRPreHireList func(ctx context.Context, request *GetCoreHRPreHireListReq, options ...MethodOptionFunc) (*GetCoreHRPreHireListResp, *Response, error) + mockCoreHRSearchCoreHRPreHire func(ctx context.Context, request *SearchCoreHRPreHireReq, options ...MethodOptionFunc) (*SearchCoreHRPreHireResp, *Response, error) + mockCoreHRUpdateCoreHRPreHire func(ctx context.Context, request *UpdateCoreHRPreHireReq, options ...MethodOptionFunc) (*UpdateCoreHRPreHireResp, *Response, error) + mockCoreHRCreateCoreHRProbationAssessment func(ctx context.Context, request *CreateCoreHRProbationAssessmentReq, options ...MethodOptionFunc) (*CreateCoreHRProbationAssessmentResp, *Response, error) + mockCoreHRDeleteCoreHRProbationAssessment func(ctx context.Context, request *DeleteCoreHRProbationAssessmentReq, options ...MethodOptionFunc) (*DeleteCoreHRProbationAssessmentResp, *Response, error) + mockCoreHREnableDisableCoreHRProbationAssessment func(ctx context.Context, request *EnableDisableCoreHRProbationAssessmentReq, options ...MethodOptionFunc) (*EnableDisableCoreHRProbationAssessmentResp, *Response, error) + mockCoreHRUpdateCoreHRProbationAssessment func(ctx context.Context, request *UpdateCoreHRProbationAssessmentReq, options ...MethodOptionFunc) (*UpdateCoreHRProbationAssessmentResp, *Response, error) + mockCoreHRSearchCoreHRProbation func(ctx context.Context, request *SearchCoreHRProbationReq, options ...MethodOptionFunc) (*SearchCoreHRProbationResp, *Response, error) + mockCoreHRGetCoreHRProcessFormVariableData func(ctx context.Context, request *GetCoreHRProcessFormVariableDataReq, options ...MethodOptionFunc) (*GetCoreHRProcessFormVariableDataResp, *Response, error) + mockCoreHRGetCoreHRProcess func(ctx context.Context, request *GetCoreHRProcessReq, options ...MethodOptionFunc) (*GetCoreHRProcessResp, *Response, error) + mockCoreHRGetCoreHRProcessList func(ctx context.Context, request *GetCoreHRProcessListReq, options ...MethodOptionFunc) (*GetCoreHRProcessListResp, *Response, error) + mockCoreHRGetCoreHRSecurityGroupBp func(ctx context.Context, request *GetCoreHRSecurityGroupBpReq, options ...MethodOptionFunc) (*GetCoreHRSecurityGroupBpResp, *Response, error) + mockCoreHRGetCoreHRSecurityGroupList func(ctx context.Context, request *GetCoreHRSecurityGroupListReq, options ...MethodOptionFunc) (*GetCoreHRSecurityGroupListResp, *Response, error) + mockCoreHRGetCoreHRSubdivision func(ctx context.Context, request *GetCoreHRSubdivisionReq, options ...MethodOptionFunc) (*GetCoreHRSubdivisionResp, *Response, error) + mockCoreHRGetCoreHRSubdivisionList func(ctx context.Context, request *GetCoreHRSubdivisionListReq, options ...MethodOptionFunc) (*GetCoreHRSubdivisionListResp, *Response, error) + mockCoreHRGetCoreHRSubregion func(ctx context.Context, request *GetCoreHRSubregionReq, options ...MethodOptionFunc) (*GetCoreHRSubregionResp, *Response, error) + mockCoreHRGetCoreHRSubregionList func(ctx context.Context, request *GetCoreHRSubregionListReq, options ...MethodOptionFunc) (*GetCoreHRSubregionListResp, *Response, error) + mockCoreHRGetCoreHRTransferReasonList func(ctx context.Context, request *GetCoreHRTransferReasonListReq, options ...MethodOptionFunc) (*GetCoreHRTransferReasonListResp, *Response, error) + mockCoreHRGetCoreHRTransferTypeList func(ctx context.Context, request *GetCoreHRTransferTypeListReq, options ...MethodOptionFunc) (*GetCoreHRTransferTypeListResp, *Response, error) + mockCoreHRCreateCoreHRWorkingHoursType func(ctx context.Context, request *CreateCoreHRWorkingHoursTypeReq, options ...MethodOptionFunc) (*CreateCoreHRWorkingHoursTypeResp, *Response, error) + mockCoreHRDeleteCoreHRWorkingHoursType func(ctx context.Context, request *DeleteCoreHRWorkingHoursTypeReq, options ...MethodOptionFunc) (*DeleteCoreHRWorkingHoursTypeResp, *Response, error) + mockCoreHRGetCoreHRWorkingHoursType func(ctx context.Context, request *GetCoreHRWorkingHoursTypeReq, options ...MethodOptionFunc) (*GetCoreHRWorkingHoursTypeResp, *Response, error) + mockCoreHRGetCoreHRWorkingHoursTypeList func(ctx context.Context, request *GetCoreHRWorkingHoursTypeListReq, options ...MethodOptionFunc) (*GetCoreHRWorkingHoursTypeListResp, *Response, error) + mockCoreHRUpdateCoreHRWorkingHoursType func(ctx context.Context, request *UpdateCoreHRWorkingHoursTypeReq, options ...MethodOptionFunc) (*UpdateCoreHRWorkingHoursTypeResp, *Response, error) + mockDriveCreateDriveComment func(ctx context.Context, request *CreateDriveCommentReq, options ...MethodOptionFunc) (*CreateDriveCommentResp, *Response, error) + mockDriveDeleteDriveComment func(ctx context.Context, request *DeleteDriveCommentReq, options ...MethodOptionFunc) (*DeleteDriveCommentResp, *Response, error) + mockDriveGetDriveComment func(ctx context.Context, request *GetDriveCommentReq, options ...MethodOptionFunc) (*GetDriveCommentResp, *Response, error) + mockDriveBatchGetDriveComment func(ctx context.Context, request *BatchGetDriveCommentReq, options ...MethodOptionFunc) (*BatchGetDriveCommentResp, *Response, error) + mockDriveGetDriveCommentList func(ctx context.Context, request *GetDriveCommentListReq, options ...MethodOptionFunc) (*GetDriveCommentListResp, *Response, error) + mockDriveUpdateDriveCommentPatch func(ctx context.Context, request *UpdateDriveCommentPatchReq, options ...MethodOptionFunc) (*UpdateDriveCommentPatchResp, *Response, error) + mockDriveGetDriveCommentReplyList func(ctx context.Context, request *GetDriveCommentReplyListReq, options ...MethodOptionFunc) (*GetDriveCommentReplyListResp, *Response, error) + mockDriveUpdateDriveComment func(ctx context.Context, request *UpdateDriveCommentReq, options ...MethodOptionFunc) (*UpdateDriveCommentResp, *Response, error) + mockDriveGetDriveDocContent func(ctx context.Context, request *GetDriveDocContentReq, options ...MethodOptionFunc) (*GetDriveDocContentResp, *Response, error) + mockDriveUpdateDriveDocContent func(ctx context.Context, request *UpdateDriveDocContentReq, options ...MethodOptionFunc) (*UpdateDriveDocContentResp, *Response, error) + mockDriveCreateDriveDoc func(ctx context.Context, request *CreateDriveDocReq, options ...MethodOptionFunc) (*CreateDriveDocResp, *Response, error) + mockDriveGetDriveDocMeta func(ctx context.Context, request *GetDriveDocMetaReq, options ...MethodOptionFunc) (*GetDriveDocMetaResp, *Response, error) + mockDriveGetDriveDocRawContent func(ctx context.Context, request *GetDriveDocRawContentReq, options ...MethodOptionFunc) (*GetDriveDocRawContentResp, *Response, error) + mockDriveBatchDeleteDocxBlock func(ctx context.Context, request *BatchDeleteDocxBlockReq, options ...MethodOptionFunc) (*BatchDeleteDocxBlockResp, *Response, error) + mockDriveCreateDocxBlock func(ctx context.Context, request *CreateDocxBlockReq, options ...MethodOptionFunc) (*CreateDocxBlockResp, *Response, error) + mockDriveGetDocxBlock func(ctx context.Context, request *GetDocxBlockReq, options ...MethodOptionFunc) (*GetDocxBlockResp, *Response, error) + mockDriveGetDocxBlockListOfBlock func(ctx context.Context, request *GetDocxBlockListOfBlockReq, options ...MethodOptionFunc) (*GetDocxBlockListOfBlockResp, *Response, error) + mockDriveGetDocxBlockListOfDocument func(ctx context.Context, request *GetDocxBlockListOfDocumentReq, options ...MethodOptionFunc) (*GetDocxBlockListOfDocumentResp, *Response, error) + mockDriveUpdateDocxBlock func(ctx context.Context, request *UpdateDocxBlockReq, options ...MethodOptionFunc) (*UpdateDocxBlockResp, *Response, error) + mockDriveCreateDocx func(ctx context.Context, request *CreateDocxReq, options ...MethodOptionFunc) (*CreateDocxResp, *Response, error) + mockDriveGetDocxDocument func(ctx context.Context, request *GetDocxDocumentReq, options ...MethodOptionFunc) (*GetDocxDocumentResp, *Response, error) + mockDriveGetDocxDocumentRawContent func(ctx context.Context, request *GetDocxDocumentRawContentReq, options ...MethodOptionFunc) (*GetDocxDocumentRawContentResp, *Response, error) + mockDriveCreateDriveExportTask func(ctx context.Context, request *CreateDriveExportTaskReq, options ...MethodOptionFunc) (*CreateDriveExportTaskResp, *Response, error) + mockDriveDownloadDriveExportTask func(ctx context.Context, request *DownloadDriveExportTaskReq, options ...MethodOptionFunc) (*DownloadDriveExportTaskResp, *Response, error) + mockDriveGetDriveExportTask func(ctx context.Context, request *GetDriveExportTaskReq, options ...MethodOptionFunc) (*GetDriveExportTaskResp, *Response, error) + mockDriveCopyDriveFile func(ctx context.Context, request *CopyDriveFileReq, options ...MethodOptionFunc) (*CopyDriveFileResp, *Response, error) + mockDriveCreateDriveFile func(ctx context.Context, request *CreateDriveFileReq, options ...MethodOptionFunc) (*CreateDriveFileResp, *Response, error) + mockDriveDownloadDriveFile func(ctx context.Context, request *DownloadDriveFileReq, options ...MethodOptionFunc) (*DownloadDriveFileResp, *Response, error) + mockDriveDeleteDriveFile func(ctx context.Context, request *DeleteDriveFileReq, options ...MethodOptionFunc) (*DeleteDriveFileResp, *Response, error) + mockDriveGetDriveFileList func(ctx context.Context, request *GetDriveFileListReq, options ...MethodOptionFunc) (*GetDriveFileListResp, *Response, error) + mockDriveGetDriveFileMeta func(ctx context.Context, request *GetDriveFileMetaReq, options ...MethodOptionFunc) (*GetDriveFileMetaResp, *Response, error) + mockDriveMoveDriveFile func(ctx context.Context, request *MoveDriveFileReq, options ...MethodOptionFunc) (*MoveDriveFileResp, *Response, error) + mockDriveSearchDriveFile func(ctx context.Context, request *SearchDriveFileReq, options ...MethodOptionFunc) (*SearchDriveFileResp, *Response, error) + mockDriveDeleteDriveSheetFile func(ctx context.Context, request *DeleteDriveSheetFileReq, options ...MethodOptionFunc) (*DeleteDriveSheetFileResp, *Response, error) + mockDriveCreateDriveFileShortcut func(ctx context.Context, request *CreateDriveFileShortcutReq, options ...MethodOptionFunc) (*CreateDriveFileShortcutResp, *Response, error) + mockDriveGetDriveFileStatistics func(ctx context.Context, request *GetDriveFileStatisticsReq, options ...MethodOptionFunc) (*GetDriveFileStatisticsResp, *Response, error) + mockDriveSubscribeDriveFile func(ctx context.Context, request *SubscribeDriveFileReq, options ...MethodOptionFunc) (*SubscribeDriveFileResp, *Response, error) + mockDriveGetSubscribeDriveFile func(ctx context.Context, request *GetSubscribeDriveFileReq, options ...MethodOptionFunc) (*GetSubscribeDriveFileResp, *Response, error) + mockDriveCreateDriveFileSubscription func(ctx context.Context, request *CreateDriveFileSubscriptionReq, options ...MethodOptionFunc) (*CreateDriveFileSubscriptionResp, *Response, error) + mockDriveGetDriveFileSubscription func(ctx context.Context, request *GetDriveFileSubscriptionReq, options ...MethodOptionFunc) (*GetDriveFileSubscriptionResp, *Response, error) + mockDriveUpdateDriveFileSubscription func(ctx context.Context, request *UpdateDriveFileSubscriptionReq, options ...MethodOptionFunc) (*UpdateDriveFileSubscriptionResp, *Response, error) + mockDriveGetDriveFileTask func(ctx context.Context, request *GetDriveFileTaskReq, options ...MethodOptionFunc) (*GetDriveFileTaskResp, *Response, error) + mockDriveUnsubscribeDriveFile func(ctx context.Context, request *UnsubscribeDriveFileReq, options ...MethodOptionFunc) (*UnsubscribeDriveFileResp, *Response, error) + mockDriveUploadDriveFile func(ctx context.Context, request *UploadDriveFileReq, options ...MethodOptionFunc) (*UploadDriveFileResp, *Response, error) + mockDriveFinishUploadDriveFile func(ctx context.Context, request *FinishUploadDriveFileReq, options ...MethodOptionFunc) (*FinishUploadDriveFileResp, *Response, error) + mockDrivePartUploadDriveFile func(ctx context.Context, request *PartUploadDriveFileReq, options ...MethodOptionFunc) (*PartUploadDriveFileResp, *Response, error) + mockDrivePrepareUploadDriveFile func(ctx context.Context, request *PrepareUploadDriveFileReq, options ...MethodOptionFunc) (*PrepareUploadDriveFileResp, *Response, error) + mockDriveCreateDriveFileVersion func(ctx context.Context, request *CreateDriveFileVersionReq, options ...MethodOptionFunc) (*CreateDriveFileVersionResp, *Response, error) + mockDriveDeleteDriveFileVersion func(ctx context.Context, request *DeleteDriveFileVersionReq, options ...MethodOptionFunc) (*DeleteDriveFileVersionResp, *Response, error) + mockDriveGetDriveFileVersion func(ctx context.Context, request *GetDriveFileVersionReq, options ...MethodOptionFunc) (*GetDriveFileVersionResp, *Response, error) + mockDriveGetDriveFileVersionList func(ctx context.Context, request *GetDriveFileVersionListReq, options ...MethodOptionFunc) (*GetDriveFileVersionListResp, *Response, error) + mockDriveGetDriveFileViewRecordList func(ctx context.Context, request *GetDriveFileViewRecordListReq, options ...MethodOptionFunc) (*GetDriveFileViewRecordListResp, *Response, error) + mockDriveGetDriveFolderChildren func(ctx context.Context, request *GetDriveFolderChildrenReq, options ...MethodOptionFunc) (*GetDriveFolderChildrenResp, *Response, error) + mockDriveCreateDriveFolder func(ctx context.Context, request *CreateDriveFolderReq, options ...MethodOptionFunc) (*CreateDriveFolderResp, *Response, error) + mockDriveGetDriveFolderMeta func(ctx context.Context, request *GetDriveFolderMetaReq, options ...MethodOptionFunc) (*GetDriveFolderMetaResp, *Response, error) + mockDriveGetDriveRootFolderMeta func(ctx context.Context, request *GetDriveRootFolderMetaReq, options ...MethodOptionFunc) (*GetDriveRootFolderMetaResp, *Response, error) + mockDriveCreateDriveImportTask func(ctx context.Context, request *CreateDriveImportTaskReq, options ...MethodOptionFunc) (*CreateDriveImportTaskResp, *Response, error) + mockDriveGetDriveImportTask func(ctx context.Context, request *GetDriveImportTaskReq, options ...MethodOptionFunc) (*GetDriveImportTaskResp, *Response, error) + mockDriveBatchGetDriveMediaTmpDownloadURL func(ctx context.Context, request *BatchGetDriveMediaTmpDownloadURLReq, options ...MethodOptionFunc) (*BatchGetDriveMediaTmpDownloadURLResp, *Response, error) + mockDriveDownloadDriveMedia func(ctx context.Context, request *DownloadDriveMediaReq, options ...MethodOptionFunc) (*DownloadDriveMediaResp, *Response, error) + mockDriveUploadDriveMedia func(ctx context.Context, request *UploadDriveMediaReq, options ...MethodOptionFunc) (*UploadDriveMediaResp, *Response, error) + mockDriveFinishUploadDriveMedia func(ctx context.Context, request *FinishUploadDriveMediaReq, options ...MethodOptionFunc) (*FinishUploadDriveMediaResp, *Response, error) + mockDrivePartUploadDriveMedia func(ctx context.Context, request *PartUploadDriveMediaReq, options ...MethodOptionFunc) (*PartUploadDriveMediaResp, *Response, error) + mockDrivePrepareUploadDriveMedia func(ctx context.Context, request *PrepareUploadDriveMediaReq, options ...MethodOptionFunc) (*PrepareUploadDriveMediaResp, *Response, error) + mockDriveCheckDriveMemberPermission func(ctx context.Context, request *CheckDriveMemberPermissionReq, options ...MethodOptionFunc) (*CheckDriveMemberPermissionResp, *Response, error) + mockDriveCheckDriveMemberPermissionOld func(ctx context.Context, request *CheckDriveMemberPermissionOldReq, options ...MethodOptionFunc) (*CheckDriveMemberPermissionOldResp, *Response, error) + mockDriveCreateDriveMemberPermission func(ctx context.Context, request *CreateDriveMemberPermissionReq, options ...MethodOptionFunc) (*CreateDriveMemberPermissionResp, *Response, error) + mockDriveCreateDriveMemberPermissionOld func(ctx context.Context, request *CreateDriveMemberPermissionOldReq, options ...MethodOptionFunc) (*CreateDriveMemberPermissionOldResp, *Response, error) + mockDriveDeleteDriveMemberPermission func(ctx context.Context, request *DeleteDriveMemberPermissionReq, options ...MethodOptionFunc) (*DeleteDriveMemberPermissionResp, *Response, error) + mockDriveDeleteDriveMemberPermissionOld func(ctx context.Context, request *DeleteDriveMemberPermissionOldReq, options ...MethodOptionFunc) (*DeleteDriveMemberPermissionOldResp, *Response, error) + mockDriveGetDriveMemberPermissionList func(ctx context.Context, request *GetDriveMemberPermissionListReq, options ...MethodOptionFunc) (*GetDriveMemberPermissionListResp, *Response, error) + mockDriveGetDriveMemberPermissionListOld func(ctx context.Context, request *GetDriveMemberPermissionListOldReq, options ...MethodOptionFunc) (*GetDriveMemberPermissionListOldResp, *Response, error) + mockDriveTransferDriveMemberPermission func(ctx context.Context, request *TransferDriveMemberPermissionReq, options ...MethodOptionFunc) (*TransferDriveMemberPermissionResp, *Response, error) + mockDriveUpdateDriveMemberPermission func(ctx context.Context, request *UpdateDriveMemberPermissionReq, options ...MethodOptionFunc) (*UpdateDriveMemberPermissionResp, *Response, error) + mockDriveUpdateDriveMemberPermissionOld func(ctx context.Context, request *UpdateDriveMemberPermissionOldReq, options ...MethodOptionFunc) (*UpdateDriveMemberPermissionOldResp, *Response, error) + mockDriveTransferDriveOwnerPermission func(ctx context.Context, request *TransferDriveOwnerPermissionReq, options ...MethodOptionFunc) (*TransferDriveOwnerPermissionResp, *Response, error) + mockDriveGetDrivePublicPermission func(ctx context.Context, request *GetDrivePublicPermissionReq, options ...MethodOptionFunc) (*GetDrivePublicPermissionResp, *Response, error) + mockDriveGetDrivePublicPermissionOld func(ctx context.Context, request *GetDrivePublicPermissionOldReq, options ...MethodOptionFunc) (*GetDrivePublicPermissionOldResp, *Response, error) + mockDriveGetDrivePublicPermissionV2 func(ctx context.Context, request *GetDrivePublicPermissionV2Req, options ...MethodOptionFunc) (*GetDrivePublicPermissionV2Resp, *Response, error) + mockDriveCreateDrivePermissionPublicPassword func(ctx context.Context, request *CreateDrivePermissionPublicPasswordReq, options ...MethodOptionFunc) (*CreateDrivePermissionPublicPasswordResp, *Response, error) + mockDriveDeleteDrivePermissionPublicPassword func(ctx context.Context, request *DeleteDrivePermissionPublicPasswordReq, options ...MethodOptionFunc) (*DeleteDrivePermissionPublicPasswordResp, *Response, error) + mockDriveUpdateDrivePermissionPublicPassword func(ctx context.Context, request *UpdateDrivePermissionPublicPasswordReq, options ...MethodOptionFunc) (*UpdateDrivePermissionPublicPasswordResp, *Response, error) + mockDriveUpdateDrivePublicPermission func(ctx context.Context, request *UpdateDrivePublicPermissionReq, options ...MethodOptionFunc) (*UpdateDrivePublicPermissionResp, *Response, error) + mockDriveUpdateDrivePublicPermissionV2 func(ctx context.Context, request *UpdateDrivePublicPermissionV2Req, options ...MethodOptionFunc) (*UpdateDrivePublicPermissionV2Resp, *Response, error) + mockDriveBatchUpdateSheet func(ctx context.Context, request *BatchUpdateSheetReq, options ...MethodOptionFunc) (*BatchUpdateSheetResp, *Response, error) + mockDriveMergeSheetCell func(ctx context.Context, request *MergeSheetCellReq, options ...MethodOptionFunc) (*MergeSheetCellResp, *Response, error) + mockDriveUnmergeSheetCell func(ctx context.Context, request *UnmergeSheetCellReq, options ...MethodOptionFunc) (*UnmergeSheetCellResp, *Response, error) + mockDriveCreateSheetConditionFormat func(ctx context.Context, request *CreateSheetConditionFormatReq, options ...MethodOptionFunc) (*CreateSheetConditionFormatResp, *Response, error) + mockDriveDeleteSheetConditionFormat func(ctx context.Context, request *DeleteSheetConditionFormatReq, options ...MethodOptionFunc) (*DeleteSheetConditionFormatResp, *Response, error) + mockDriveGetSheetConditionFormat func(ctx context.Context, request *GetSheetConditionFormatReq, options ...MethodOptionFunc) (*GetSheetConditionFormatResp, *Response, error) + mockDriveUpdateSheetConditionFormat func(ctx context.Context, request *UpdateSheetConditionFormatReq, options ...MethodOptionFunc) (*UpdateSheetConditionFormatResp, *Response, error) + mockDriveCreateSheetDataValidationDropdown func(ctx context.Context, request *CreateSheetDataValidationDropdownReq, options ...MethodOptionFunc) (*CreateSheetDataValidationDropdownResp, *Response, error) + mockDriveDeleteSheetDataValidationDropdown func(ctx context.Context, request *DeleteSheetDataValidationDropdownReq, options ...MethodOptionFunc) (*DeleteSheetDataValidationDropdownResp, *Response, error) + mockDriveGetSheetDataValidationDropdown func(ctx context.Context, request *GetSheetDataValidationDropdownReq, options ...MethodOptionFunc) (*GetSheetDataValidationDropdownResp, *Response, error) + mockDriveUpdateSheetDataValidationDropdown func(ctx context.Context, request *UpdateSheetDataValidationDropdownReq, options ...MethodOptionFunc) (*UpdateSheetDataValidationDropdownResp, *Response, error) + mockDriveMoveSheetDimension func(ctx context.Context, request *MoveSheetDimensionReq, options ...MethodOptionFunc) (*MoveSheetDimensionResp, *Response, error) + mockDriveAddSheetDimensionRange func(ctx context.Context, request *AddSheetDimensionRangeReq, options ...MethodOptionFunc) (*AddSheetDimensionRangeResp, *Response, error) + mockDriveDeleteSheetDimensionRange func(ctx context.Context, request *DeleteSheetDimensionRangeReq, options ...MethodOptionFunc) (*DeleteSheetDimensionRangeResp, *Response, error) + mockDriveInsertSheetDimensionRange func(ctx context.Context, request *InsertSheetDimensionRangeReq, options ...MethodOptionFunc) (*InsertSheetDimensionRangeResp, *Response, error) + mockDriveUpdateSheetDimensionRange func(ctx context.Context, request *UpdateSheetDimensionRangeReq, options ...MethodOptionFunc) (*UpdateSheetDimensionRangeResp, *Response, error) + mockDriveCreateSheetFilter func(ctx context.Context, request *CreateSheetFilterReq, options ...MethodOptionFunc) (*CreateSheetFilterResp, *Response, error) + mockDriveDeleteSheetFilter func(ctx context.Context, request *DeleteSheetFilterReq, options ...MethodOptionFunc) (*DeleteSheetFilterResp, *Response, error) + mockDriveGetSheetFilter func(ctx context.Context, request *GetSheetFilterReq, options ...MethodOptionFunc) (*GetSheetFilterResp, *Response, error) + mockDriveUpdateSheetFilter func(ctx context.Context, request *UpdateSheetFilterReq, options ...MethodOptionFunc) (*UpdateSheetFilterResp, *Response, error) + mockDriveCreateSheetFilterViewCondition func(ctx context.Context, request *CreateSheetFilterViewConditionReq, options ...MethodOptionFunc) (*CreateSheetFilterViewConditionResp, *Response, error) + mockDriveDeleteSheetFilterViewCondition func(ctx context.Context, request *DeleteSheetFilterViewConditionReq, options ...MethodOptionFunc) (*DeleteSheetFilterViewConditionResp, *Response, error) + mockDriveGetSheetFilterViewCondition func(ctx context.Context, request *GetSheetFilterViewConditionReq, options ...MethodOptionFunc) (*GetSheetFilterViewConditionResp, *Response, error) + mockDriveQuerySheetFilterViewCondition func(ctx context.Context, request *QuerySheetFilterViewConditionReq, options ...MethodOptionFunc) (*QuerySheetFilterViewConditionResp, *Response, error) + mockDriveUpdateSheetFilterViewCondition func(ctx context.Context, request *UpdateSheetFilterViewConditionReq, options ...MethodOptionFunc) (*UpdateSheetFilterViewConditionResp, *Response, error) + mockDriveCreateSheetFilterView func(ctx context.Context, request *CreateSheetFilterViewReq, options ...MethodOptionFunc) (*CreateSheetFilterViewResp, *Response, error) + mockDriveDeleteSheetFilterView func(ctx context.Context, request *DeleteSheetFilterViewReq, options ...MethodOptionFunc) (*DeleteSheetFilterViewResp, *Response, error) + mockDriveGetSheetFilterView func(ctx context.Context, request *GetSheetFilterViewReq, options ...MethodOptionFunc) (*GetSheetFilterViewResp, *Response, error) + mockDriveQuerySheetFilterView func(ctx context.Context, request *QuerySheetFilterViewReq, options ...MethodOptionFunc) (*QuerySheetFilterViewResp, *Response, error) + mockDriveUpdateSheetFilterView func(ctx context.Context, request *UpdateSheetFilterViewReq, options ...MethodOptionFunc) (*UpdateSheetFilterViewResp, *Response, error) + mockDriveFindSheet func(ctx context.Context, request *FindSheetReq, options ...MethodOptionFunc) (*FindSheetResp, *Response, error) + mockDriveCreateSheetFloatImage func(ctx context.Context, request *CreateSheetFloatImageReq, options ...MethodOptionFunc) (*CreateSheetFloatImageResp, *Response, error) + mockDriveDeleteSheetFloatImage func(ctx context.Context, request *DeleteSheetFloatImageReq, options ...MethodOptionFunc) (*DeleteSheetFloatImageResp, *Response, error) + mockDriveGetSheetFloatImage func(ctx context.Context, request *GetSheetFloatImageReq, options ...MethodOptionFunc) (*GetSheetFloatImageResp, *Response, error) + mockDriveQuerySheetFloatImage func(ctx context.Context, request *QuerySheetFloatImageReq, options ...MethodOptionFunc) (*QuerySheetFloatImageResp, *Response, error) + mockDriveUpdateSheetFloatImage func(ctx context.Context, request *UpdateSheetFloatImageReq, options ...MethodOptionFunc) (*UpdateSheetFloatImageResp, *Response, error) + mockDriveGetSheet func(ctx context.Context, request *GetSheetReq, options ...MethodOptionFunc) (*GetSheetResp, *Response, error) + mockDriveSetSheetValueImage func(ctx context.Context, request *SetSheetValueImageReq, options ...MethodOptionFunc) (*SetSheetValueImageResp, *Response, error) + mockDriveImportSheet func(ctx context.Context, request *ImportSheetReq, options ...MethodOptionFunc) (*ImportSheetResp, *Response, error) + mockDriveGetSheetList func(ctx context.Context, request *GetSheetListReq, options ...MethodOptionFunc) (*GetSheetListResp, *Response, error) + mockDriveGetSheetMeta func(ctx context.Context, request *GetSheetMetaReq, options ...MethodOptionFunc) (*GetSheetMetaResp, *Response, error) + mockDriveUpdateSheetProperty func(ctx context.Context, request *UpdateSheetPropertyReq, options ...MethodOptionFunc) (*UpdateSheetPropertyResp, *Response, error) + mockDriveCreateSheetProtectedDimension func(ctx context.Context, request *CreateSheetProtectedDimensionReq, options ...MethodOptionFunc) (*CreateSheetProtectedDimensionResp, *Response, error) + mockDriveDeleteSheetProtectedDimension func(ctx context.Context, request *DeleteSheetProtectedDimensionReq, options ...MethodOptionFunc) (*DeleteSheetProtectedDimensionResp, *Response, error) + mockDriveGetSheetProtectedDimension func(ctx context.Context, request *GetSheetProtectedDimensionReq, options ...MethodOptionFunc) (*GetSheetProtectedDimensionResp, *Response, error) + mockDriveUpdateSheetProtectedDimension func(ctx context.Context, request *UpdateSheetProtectedDimensionReq, options ...MethodOptionFunc) (*UpdateSheetProtectedDimensionResp, *Response, error) + mockDriveReplaceSheet func(ctx context.Context, request *ReplaceSheetReq, options ...MethodOptionFunc) (*ReplaceSheetResp, *Response, error) + mockDriveBatchSetSheetStyle func(ctx context.Context, request *BatchSetSheetStyleReq, options ...MethodOptionFunc) (*BatchSetSheetStyleResp, *Response, error) + mockDriveSetSheetStyle func(ctx context.Context, request *SetSheetStyleReq, options ...MethodOptionFunc) (*SetSheetStyleResp, *Response, error) + mockDriveAppendSheetValue func(ctx context.Context, request *AppendSheetValueReq, options ...MethodOptionFunc) (*AppendSheetValueResp, *Response, error) + mockDriveBatchGetSheetValue func(ctx context.Context, request *BatchGetSheetValueReq, options ...MethodOptionFunc) (*BatchGetSheetValueResp, *Response, error) + mockDriveBatchSetSheetValue func(ctx context.Context, request *BatchSetSheetValueReq, options ...MethodOptionFunc) (*BatchSetSheetValueResp, *Response, error) + mockDriveGetSheetValue func(ctx context.Context, request *GetSheetValueReq, options ...MethodOptionFunc) (*GetSheetValueResp, *Response, error) + mockDrivePrependSheetValue func(ctx context.Context, request *PrependSheetValueReq, options ...MethodOptionFunc) (*PrependSheetValueResp, *Response, error) + mockDriveSetSheetValue func(ctx context.Context, request *SetSheetValueReq, options ...MethodOptionFunc) (*SetSheetValueResp, *Response, error) + mockDriveCreateSpreadsheet func(ctx context.Context, request *CreateSpreadsheetReq, options ...MethodOptionFunc) (*CreateSpreadsheetResp, *Response, error) + mockDriveGetSpreadsheet func(ctx context.Context, request *GetSpreadsheetReq, options ...MethodOptionFunc) (*GetSpreadsheetResp, *Response, error) + mockDriveUpdateSpreadsheet func(ctx context.Context, request *UpdateSpreadsheetReq, options ...MethodOptionFunc) (*UpdateSpreadsheetResp, *Response, error) + mockDriveGetWhiteboardNodeList func(ctx context.Context, request *GetWhiteboardNodeListReq, options ...MethodOptionFunc) (*GetWhiteboardNodeListResp, *Response, error) + mockDriveMoveDocsToWiki func(ctx context.Context, request *MoveDocsToWikiReq, options ...MethodOptionFunc) (*MoveDocsToWikiResp, *Response, error) + mockDriveCopyWikiNode func(ctx context.Context, request *CopyWikiNodeReq, options ...MethodOptionFunc) (*CopyWikiNodeResp, *Response, error) + mockDriveCreateWikiNode func(ctx context.Context, request *CreateWikiNodeReq, options ...MethodOptionFunc) (*CreateWikiNodeResp, *Response, error) + mockDriveGetWikiNode func(ctx context.Context, request *GetWikiNodeReq, options ...MethodOptionFunc) (*GetWikiNodeResp, *Response, error) + mockDriveGetWikiNodeList func(ctx context.Context, request *GetWikiNodeListReq, options ...MethodOptionFunc) (*GetWikiNodeListResp, *Response, error) + mockDriveMoveWikiNode func(ctx context.Context, request *MoveWikiNodeReq, options ...MethodOptionFunc) (*MoveWikiNodeResp, *Response, error) + mockDriveUpdateWikiNodeTitle func(ctx context.Context, request *UpdateWikiNodeTitleReq, options ...MethodOptionFunc) (*UpdateWikiNodeTitleResp, *Response, error) + mockDriveCreateWikiSpace func(ctx context.Context, request *CreateWikiSpaceReq, options ...MethodOptionFunc) (*CreateWikiSpaceResp, *Response, error) + mockDriveGetWikiSpace func(ctx context.Context, request *GetWikiSpaceReq, options ...MethodOptionFunc) (*GetWikiSpaceResp, *Response, error) + mockDriveGetWikiSpaceList func(ctx context.Context, request *GetWikiSpaceListReq, options ...MethodOptionFunc) (*GetWikiSpaceListResp, *Response, error) + mockDriveAddWikiSpaceMember func(ctx context.Context, request *AddWikiSpaceMemberReq, options ...MethodOptionFunc) (*AddWikiSpaceMemberResp, *Response, error) + mockDriveDeleteWikiSpaceMember func(ctx context.Context, request *DeleteWikiSpaceMemberReq, options ...MethodOptionFunc) (*DeleteWikiSpaceMemberResp, *Response, error) + mockDriveUpdateWikiSpaceSetting func(ctx context.Context, request *UpdateWikiSpaceSettingReq, options ...MethodOptionFunc) (*UpdateWikiSpaceSettingResp, *Response, error) + mockDriveGetWikiTask func(ctx context.Context, request *GetWikiTaskReq, options ...MethodOptionFunc) (*GetWikiTaskResp, *Response, error) + mockEHRDownloadEHRAttachments func(ctx context.Context, request *DownloadEHRAttachmentsReq, options ...MethodOptionFunc) (*DownloadEHRAttachmentsResp, *Response, error) + mockEHRGetEHREmployeeList func(ctx context.Context, request *GetEHREmployeeListReq, options ...MethodOptionFunc) (*GetEHREmployeeListResp, *Response, error) + mockEventGetEventOutboundIpList func(ctx context.Context, request *GetEventOutboundIpListReq, options ...MethodOptionFunc) (*GetEventOutboundIpListResp, *Response, error) + mockFileDownloadFile func(ctx context.Context, request *DownloadFileReq, options ...MethodOptionFunc) (*DownloadFileResp, *Response, error) + mockFileDownloadImage func(ctx context.Context, request *DownloadImageReq, options ...MethodOptionFunc) (*DownloadImageResp, *Response, error) + mockFileUploadFile func(ctx context.Context, request *UploadFileReq, options ...MethodOptionFunc) (*UploadFileResp, *Response, error) + mockFileUploadImage func(ctx context.Context, request *UploadImageReq, options ...MethodOptionFunc) (*UploadImageResp, *Response, error) + mockHelpdeskGetHelpdeskAgentEmail func(ctx context.Context, request *GetHelpdeskAgentEmailReq, options ...MethodOptionFunc) (*GetHelpdeskAgentEmailResp, *Response, error) + mockHelpdeskUpdateHelpdeskAgent func(ctx context.Context, request *UpdateHelpdeskAgentReq, options ...MethodOptionFunc) (*UpdateHelpdeskAgentResp, *Response, error) + mockHelpdeskCreateHelpdeskAgentSchedule func(ctx context.Context, request *CreateHelpdeskAgentScheduleReq, options ...MethodOptionFunc) (*CreateHelpdeskAgentScheduleResp, *Response, error) + mockHelpdeskDeleteHelpdeskAgentSchedule func(ctx context.Context, request *DeleteHelpdeskAgentScheduleReq, options ...MethodOptionFunc) (*DeleteHelpdeskAgentScheduleResp, *Response, error) + mockHelpdeskGetHelpdeskAgentSchedule func(ctx context.Context, request *GetHelpdeskAgentScheduleReq, options ...MethodOptionFunc) (*GetHelpdeskAgentScheduleResp, *Response, error) + mockHelpdeskGetHelpdeskAgentScheduleList func(ctx context.Context, request *GetHelpdeskAgentScheduleListReq, options ...MethodOptionFunc) (*GetHelpdeskAgentScheduleListResp, *Response, error) + mockHelpdeskUpdateHelpdeskAgentSchedule func(ctx context.Context, request *UpdateHelpdeskAgentScheduleReq, options ...MethodOptionFunc) (*UpdateHelpdeskAgentScheduleResp, *Response, error) + mockHelpdeskCreateHelpdeskAgentSkill func(ctx context.Context, request *CreateHelpdeskAgentSkillReq, options ...MethodOptionFunc) (*CreateHelpdeskAgentSkillResp, *Response, error) + mockHelpdeskDeleteHelpdeskAgentSkill func(ctx context.Context, request *DeleteHelpdeskAgentSkillReq, options ...MethodOptionFunc) (*DeleteHelpdeskAgentSkillResp, *Response, error) + mockHelpdeskGetHelpdeskAgentSkill func(ctx context.Context, request *GetHelpdeskAgentSkillReq, options ...MethodOptionFunc) (*GetHelpdeskAgentSkillResp, *Response, error) + mockHelpdeskGetHelpdeskAgentSkillList func(ctx context.Context, request *GetHelpdeskAgentSkillListReq, options ...MethodOptionFunc) (*GetHelpdeskAgentSkillListResp, *Response, error) + mockHelpdeskGetHelpdeskAgentSkillRuleList func(ctx context.Context, request *GetHelpdeskAgentSkillRuleListReq, options ...MethodOptionFunc) (*GetHelpdeskAgentSkillRuleListResp, *Response, error) + mockHelpdeskUpdateHelpdeskAgentSkill func(ctx context.Context, request *UpdateHelpdeskAgentSkillReq, options ...MethodOptionFunc) (*UpdateHelpdeskAgentSkillResp, *Response, error) + mockHelpdeskCreateHelpdeskCategory func(ctx context.Context, request *CreateHelpdeskCategoryReq, options ...MethodOptionFunc) (*CreateHelpdeskCategoryResp, *Response, error) + mockHelpdeskDeleteHelpdeskCategory func(ctx context.Context, request *DeleteHelpdeskCategoryReq, options ...MethodOptionFunc) (*DeleteHelpdeskCategoryResp, *Response, error) + mockHelpdeskGetHelpdeskCategory func(ctx context.Context, request *GetHelpdeskCategoryReq, options ...MethodOptionFunc) (*GetHelpdeskCategoryResp, *Response, error) + mockHelpdeskGetHelpdeskCategoryList func(ctx context.Context, request *GetHelpdeskCategoryListReq, options ...MethodOptionFunc) (*GetHelpdeskCategoryListResp, *Response, error) + mockHelpdeskUpdateHelpdeskCategory func(ctx context.Context, request *UpdateHelpdeskCategoryReq, options ...MethodOptionFunc) (*UpdateHelpdeskCategoryResp, *Response, error) + mockHelpdeskSubscribeHelpdeskEvent func(ctx context.Context, request *SubscribeHelpdeskEventReq, options ...MethodOptionFunc) (*SubscribeHelpdeskEventResp, *Response, error) + mockHelpdeskUnsubscribeHelpdeskEvent func(ctx context.Context, request *UnsubscribeHelpdeskEventReq, options ...MethodOptionFunc) (*UnsubscribeHelpdeskEventResp, *Response, error) + mockHelpdeskCreateHelpdeskFAQ func(ctx context.Context, request *CreateHelpdeskFAQReq, options ...MethodOptionFunc) (*CreateHelpdeskFAQResp, *Response, error) + mockHelpdeskDeleteHelpdeskFAQ func(ctx context.Context, request *DeleteHelpdeskFAQReq, options ...MethodOptionFunc) (*DeleteHelpdeskFAQResp, *Response, error) + mockHelpdeskGetHelpdeskFAQ func(ctx context.Context, request *GetHelpdeskFAQReq, options ...MethodOptionFunc) (*GetHelpdeskFAQResp, *Response, error) + mockHelpdeskGetHelpdeskFAQImage func(ctx context.Context, request *GetHelpdeskFAQImageReq, options ...MethodOptionFunc) (*GetHelpdeskFAQImageResp, *Response, error) + mockHelpdeskGetHelpdeskFAQList func(ctx context.Context, request *GetHelpdeskFAQListReq, options ...MethodOptionFunc) (*GetHelpdeskFAQListResp, *Response, error) + mockHelpdeskSearchHelpdeskFAQ func(ctx context.Context, request *SearchHelpdeskFAQReq, options ...MethodOptionFunc) (*SearchHelpdeskFAQResp, *Response, error) + mockHelpdeskUpdateHelpdeskFAQ func(ctx context.Context, request *UpdateHelpdeskFAQReq, options ...MethodOptionFunc) (*UpdateHelpdeskFAQResp, *Response, error) + mockHelpdeskSendHelpdeskMessage func(ctx context.Context, request *SendHelpdeskMessageReq, options ...MethodOptionFunc) (*SendHelpdeskMessageResp, *Response, error) + mockHelpdeskCancelApproveHelpdeskNotification func(ctx context.Context, request *CancelApproveHelpdeskNotificationReq, options ...MethodOptionFunc) (*CancelApproveHelpdeskNotificationResp, *Response, error) + mockHelpdeskCancelSendHelpdeskNotification func(ctx context.Context, request *CancelSendHelpdeskNotificationReq, options ...MethodOptionFunc) (*CancelSendHelpdeskNotificationResp, *Response, error) + mockHelpdeskCreateHelpdeskNotification func(ctx context.Context, request *CreateHelpdeskNotificationReq, options ...MethodOptionFunc) (*CreateHelpdeskNotificationResp, *Response, error) + mockHelpdeskExecuteSendHelpdeskNotification func(ctx context.Context, request *ExecuteSendHelpdeskNotificationReq, options ...MethodOptionFunc) (*ExecuteSendHelpdeskNotificationResp, *Response, error) + mockHelpdeskGetHelpdeskNotification func(ctx context.Context, request *GetHelpdeskNotificationReq, options ...MethodOptionFunc) (*GetHelpdeskNotificationResp, *Response, error) + mockHelpdeskPreviewHelpdeskNotification func(ctx context.Context, request *PreviewHelpdeskNotificationReq, options ...MethodOptionFunc) (*PreviewHelpdeskNotificationResp, *Response, error) + mockHelpdeskSubmitApproveHelpdeskNotification func(ctx context.Context, request *SubmitApproveHelpdeskNotificationReq, options ...MethodOptionFunc) (*SubmitApproveHelpdeskNotificationResp, *Response, error) + mockHelpdeskUpdateHelpdeskNotification func(ctx context.Context, request *UpdateHelpdeskNotificationReq, options ...MethodOptionFunc) (*UpdateHelpdeskNotificationResp, *Response, error) + mockHelpdeskStartHelpdeskService func(ctx context.Context, request *StartHelpdeskServiceReq, options ...MethodOptionFunc) (*StartHelpdeskServiceResp, *Response, error) + mockHelpdeskAnswerHelpdeskTicketUserQuery func(ctx context.Context, request *AnswerHelpdeskTicketUserQueryReq, options ...MethodOptionFunc) (*AnswerHelpdeskTicketUserQueryResp, *Response, error) + mockHelpdeskCreateHelpdeskTicketCustomizedField func(ctx context.Context, request *CreateHelpdeskTicketCustomizedFieldReq, options ...MethodOptionFunc) (*CreateHelpdeskTicketCustomizedFieldResp, *Response, error) + mockHelpdeskDeleteHelpdeskTicketCustomizedField func(ctx context.Context, request *DeleteHelpdeskTicketCustomizedFieldReq, options ...MethodOptionFunc) (*DeleteHelpdeskTicketCustomizedFieldResp, *Response, error) + mockHelpdeskGetHelpdeskTicketCustomizedField func(ctx context.Context, request *GetHelpdeskTicketCustomizedFieldReq, options ...MethodOptionFunc) (*GetHelpdeskTicketCustomizedFieldResp, *Response, error) + mockHelpdeskGetHelpdeskTicketCustomizedFieldList func(ctx context.Context, request *GetHelpdeskTicketCustomizedFieldListReq, options ...MethodOptionFunc) (*GetHelpdeskTicketCustomizedFieldListResp, *Response, error) + mockHelpdeskUpdateHelpdeskTicketCustomizedField func(ctx context.Context, request *UpdateHelpdeskTicketCustomizedFieldReq, options ...MethodOptionFunc) (*UpdateHelpdeskTicketCustomizedFieldResp, *Response, error) + mockHelpdeskGetHelpdeskTicketCustomizedFields func(ctx context.Context, request *GetHelpdeskTicketCustomizedFieldsReq, options ...MethodOptionFunc) (*GetHelpdeskTicketCustomizedFieldsResp, *Response, error) + mockHelpdeskGetHelpdeskTicket func(ctx context.Context, request *GetHelpdeskTicketReq, options ...MethodOptionFunc) (*GetHelpdeskTicketResp, *Response, error) + mockHelpdeskGetHelpdeskTicketList func(ctx context.Context, request *GetHelpdeskTicketListReq, options ...MethodOptionFunc) (*GetHelpdeskTicketListResp, *Response, error) + mockHelpdeskDownloadHelpdeskTicketImage func(ctx context.Context, request *DownloadHelpdeskTicketImageReq, options ...MethodOptionFunc) (*DownloadHelpdeskTicketImageResp, *Response, error) + mockHelpdeskGetHelpdeskTicketMessageList func(ctx context.Context, request *GetHelpdeskTicketMessageListReq, options ...MethodOptionFunc) (*GetHelpdeskTicketMessageListResp, *Response, error) + mockHelpdeskSendHelpdeskTicketMessage func(ctx context.Context, request *SendHelpdeskTicketMessageReq, options ...MethodOptionFunc) (*SendHelpdeskTicketMessageResp, *Response, error) + mockHelpdeskUpdateHelpdeskTicket func(ctx context.Context, request *UpdateHelpdeskTicketReq, options ...MethodOptionFunc) (*UpdateHelpdeskTicketResp, *Response, error) + mockHireCreateHireApplication func(ctx context.Context, request *CreateHireApplicationReq, options ...MethodOptionFunc) (*CreateHireApplicationResp, *Response, error) + mockHireGetHireApplication func(ctx context.Context, request *GetHireApplicationReq, options ...MethodOptionFunc) (*GetHireApplicationResp, *Response, error) + mockHireGetHireApplicationInterviewList func(ctx context.Context, request *GetHireApplicationInterviewListReq, options ...MethodOptionFunc) (*GetHireApplicationInterviewListResp, *Response, error) + mockHireGetHireApplicationList func(ctx context.Context, request *GetHireApplicationListReq, options ...MethodOptionFunc) (*GetHireApplicationListResp, *Response, error) + mockHireTerminateHireApplication func(ctx context.Context, request *TerminateHireApplicationReq, options ...MethodOptionFunc) (*TerminateHireApplicationResp, *Response, error) + mockHireGetHireAttachment func(ctx context.Context, request *GetHireAttachmentReq, options ...MethodOptionFunc) (*GetHireAttachmentResp, *Response, error) + mockHireGetHireAttachmentPreview func(ctx context.Context, request *GetHireAttachmentPreviewReq, options ...MethodOptionFunc) (*GetHireAttachmentPreviewResp, *Response, error) + mockHireCreateHireEcoAccountCustomField func(ctx context.Context, request *CreateHireEcoAccountCustomFieldReq, options ...MethodOptionFunc) (*CreateHireEcoAccountCustomFieldResp, *Response, error) + mockHireBatchDeleteHireEcoAccountCustomField func(ctx context.Context, request *BatchDeleteHireEcoAccountCustomFieldReq, options ...MethodOptionFunc) (*BatchDeleteHireEcoAccountCustomFieldResp, *Response, error) + mockHireBatchUpdateHireEcoAccountCustomField func(ctx context.Context, request *BatchUpdateHireEcoAccountCustomFieldReq, options ...MethodOptionFunc) (*BatchUpdateHireEcoAccountCustomFieldResp, *Response, error) + mockHireCreateHireEcoBackgroundCheckCustomField func(ctx context.Context, request *CreateHireEcoBackgroundCheckCustomFieldReq, options ...MethodOptionFunc) (*CreateHireEcoBackgroundCheckCustomFieldResp, *Response, error) + mockHireBatchDeleteHireEcoBackgroundCheckCustomField func(ctx context.Context, request *BatchDeleteHireEcoBackgroundCheckCustomFieldReq, options ...MethodOptionFunc) (*BatchDeleteHireEcoBackgroundCheckCustomFieldResp, *Response, error) + mockHireBatchUpdateHireEcoBackgroundCheckCustomField func(ctx context.Context, request *BatchUpdateHireEcoBackgroundCheckCustomFieldReq, options ...MethodOptionFunc) (*BatchUpdateHireEcoBackgroundCheckCustomFieldResp, *Response, error) + mockHireBatchDeleteHireEcoBackgroundCheckPackage func(ctx context.Context, request *BatchDeleteHireEcoBackgroundCheckPackageReq, options ...MethodOptionFunc) (*BatchDeleteHireEcoBackgroundCheckPackageResp, *Response, error) + mockHireBatchUpdateHireEcoBackgroundCheckPackage func(ctx context.Context, request *BatchUpdateHireEcoBackgroundCheckPackageReq, options ...MethodOptionFunc) (*BatchUpdateHireEcoBackgroundCheckPackageResp, *Response, error) + mockHireCreateHireEcoBackgroundCheckPackage func(ctx context.Context, request *CreateHireEcoBackgroundCheckPackageReq, options ...MethodOptionFunc) (*CreateHireEcoBackgroundCheckPackageResp, *Response, error) + mockHireUpdateHireEcoBackgroundCheckProgress func(ctx context.Context, request *UpdateHireEcoBackgroundCheckProgressReq, options ...MethodOptionFunc) (*UpdateHireEcoBackgroundCheckProgressResp, *Response, error) + mockHireCancelHireEcoBackgroundCheck func(ctx context.Context, request *CancelHireEcoBackgroundCheckReq, options ...MethodOptionFunc) (*CancelHireEcoBackgroundCheckResp, *Response, error) + mockHireUpdateHireEcoBackgroundCheckResult func(ctx context.Context, request *UpdateHireEcoBackgroundCheckResultReq, options ...MethodOptionFunc) (*UpdateHireEcoBackgroundCheckResultResp, *Response, error) + mockHireCreateHireEcoExamLoginInfo func(ctx context.Context, request *CreateHireEcoExamLoginInfoReq, options ...MethodOptionFunc) (*CreateHireEcoExamLoginInfoResp, *Response, error) + mockHireBatchDeleteHireEcoExamPaper func(ctx context.Context, request *BatchDeleteHireEcoExamPaperReq, options ...MethodOptionFunc) (*BatchDeleteHireEcoExamPaperResp, *Response, error) + mockHireBatchUpdateHireEcoExamPaper func(ctx context.Context, request *BatchUpdateHireEcoExamPaperReq, options ...MethodOptionFunc) (*BatchUpdateHireEcoExamPaperResp, *Response, error) + mockHireCreateHireEcoExamPaper func(ctx context.Context, request *CreateHireEcoExamPaperReq, options ...MethodOptionFunc) (*CreateHireEcoExamPaperResp, *Response, error) + mockHireUpdateHiredEcoExamResult func(ctx context.Context, request *UpdateHiredEcoExamResultReq, options ...MethodOptionFunc) (*UpdateHiredEcoExamResultResp, *Response, error) + mockHireUpdateHireEHRImportTask func(ctx context.Context, request *UpdateHireEHRImportTaskReq, options ...MethodOptionFunc) (*UpdateHireEHRImportTaskResp, *Response, error) + mockHireGetHireEmployee func(ctx context.Context, request *GetHireEmployeeReq, options ...MethodOptionFunc) (*GetHireEmployeeResp, *Response, error) + mockHireGetHireEmployeeByApplication func(ctx context.Context, request *GetHireEmployeeByApplicationReq, options ...MethodOptionFunc) (*GetHireEmployeeByApplicationResp, *Response, error) + mockHireUpdateHireEmployee func(ctx context.Context, request *UpdateHireEmployeeReq, options ...MethodOptionFunc) (*UpdateHireEmployeeResp, *Response, error) + mockHireGetHireEvaluationList func(ctx context.Context, request *GetHireEvaluationListReq, options ...MethodOptionFunc) (*GetHireEvaluationListResp, *Response, error) + mockHireCreateHireExternalApplication func(ctx context.Context, request *CreateHireExternalApplicationReq, options ...MethodOptionFunc) (*CreateHireExternalApplicationResp, *Response, error) + mockHireDeleteHireExternalApplication func(ctx context.Context, request *DeleteHireExternalApplicationReq, options ...MethodOptionFunc) (*DeleteHireExternalApplicationResp, *Response, error) + mockHireUpdateHireExternalApplication func(ctx context.Context, request *UpdateHireExternalApplicationReq, options ...MethodOptionFunc) (*UpdateHireExternalApplicationResp, *Response, error) + mockHireCreateHireExternalBackgroundCheck func(ctx context.Context, request *CreateHireExternalBackgroundCheckReq, options ...MethodOptionFunc) (*CreateHireExternalBackgroundCheckResp, *Response, error) + mockHireCreateHireExternalInterviewAssessment func(ctx context.Context, request *CreateHireExternalInterviewAssessmentReq, options ...MethodOptionFunc) (*CreateHireExternalInterviewAssessmentResp, *Response, error) + mockHireCreateHireExternalInterview func(ctx context.Context, request *CreateHireExternalInterviewReq, options ...MethodOptionFunc) (*CreateHireExternalInterviewResp, *Response, error) + mockHireUpdateHireOfferInternStatus func(ctx context.Context, request *UpdateHireOfferInternStatusReq, options ...MethodOptionFunc) (*UpdateHireOfferInternStatusResp, *Response, error) + mockHireGetHireInterviewList func(ctx context.Context, request *GetHireInterviewListReq, options ...MethodOptionFunc) (*GetHireInterviewListResp, *Response, error) + mockHireGetHireJobConfig func(ctx context.Context, request *GetHireJobConfigReq, options ...MethodOptionFunc) (*GetHireJobConfigResp, *Response, error) + mockHireUpdateHireJobConfig func(ctx context.Context, request *UpdateHireJobConfigReq, options ...MethodOptionFunc) (*UpdateHireJobConfigResp, *Response, error) + mockHireCreateHireJob func(ctx context.Context, request *CreateHireJobReq, options ...MethodOptionFunc) (*CreateHireJobResp, *Response, error) + mockHireGetHireJob func(ctx context.Context, request *GetHireJobReq, options ...MethodOptionFunc) (*GetHireJobResp, *Response, error) + mockHireGetHireJobManager func(ctx context.Context, request *GetHireJobManagerReq, options ...MethodOptionFunc) (*GetHireJobManagerResp, *Response, error) + mockHireGetHireJobProcessList func(ctx context.Context, request *GetHireJobProcessListReq, options ...MethodOptionFunc) (*GetHireJobProcessListResp, *Response, error) + mockHireUpdateHireJob func(ctx context.Context, request *UpdateHireJobReq, options ...MethodOptionFunc) (*UpdateHireJobResp, *Response, error) + mockHireCreateHireNote func(ctx context.Context, request *CreateHireNoteReq, options ...MethodOptionFunc) (*CreateHireNoteResp, *Response, error) + mockHireGetHireNote func(ctx context.Context, request *GetHireNoteReq, options ...MethodOptionFunc) (*GetHireNoteResp, *Response, error) + mockHireGetHireNoteList func(ctx context.Context, request *GetHireNoteListReq, options ...MethodOptionFunc) (*GetHireNoteListResp, *Response, error) + mockHireUpdateHireNote func(ctx context.Context, request *UpdateHireNoteReq, options ...MethodOptionFunc) (*UpdateHireNoteResp, *Response, error) + mockHireGetHireOffer func(ctx context.Context, request *GetHireOfferReq, options ...MethodOptionFunc) (*GetHireOfferResp, *Response, error) + mockHireGetHireOfferByApplication func(ctx context.Context, request *GetHireOfferByApplicationReq, options ...MethodOptionFunc) (*GetHireOfferByApplicationResp, *Response, error) + mockHireGetHireOfferList func(ctx context.Context, request *GetHireOfferListReq, options ...MethodOptionFunc) (*GetHireOfferListResp, *Response, error) + mockHireGetHireOfferSchema func(ctx context.Context, request *GetHireOfferSchemaReq, options ...MethodOptionFunc) (*GetHireOfferSchemaResp, *Response, error) + mockHireCreateHireOffer func(ctx context.Context, request *CreateHireOfferReq, options ...MethodOptionFunc) (*CreateHireOfferResp, *Response, error) + mockHireUpdateHireOfferStatus func(ctx context.Context, request *UpdateHireOfferStatusReq, options ...MethodOptionFunc) (*UpdateHireOfferStatusResp, *Response, error) + mockHireUpdateHireOffer func(ctx context.Context, request *UpdateHireOfferReq, options ...MethodOptionFunc) (*UpdateHireOfferResp, *Response, error) + mockHireGetHireQuestionnaireList func(ctx context.Context, request *GetHireQuestionnaireListReq, options ...MethodOptionFunc) (*GetHireQuestionnaireListResp, *Response, error) + mockHireCreateHireReferralAccount func(ctx context.Context, request *CreateHireReferralAccountReq, options ...MethodOptionFunc) (*CreateHireReferralAccountResp, *Response, error) + mockHireDeactivateHireReferralAccount func(ctx context.Context, request *DeactivateHireReferralAccountReq, options ...MethodOptionFunc) (*DeactivateHireReferralAccountResp, *Response, error) + mockHireReconcileHireReferralAccount func(ctx context.Context, request *ReconcileHireReferralAccountReq, options ...MethodOptionFunc) (*ReconcileHireReferralAccountResp, *Response, error) + mockHireWithdrawHireReferralAccount func(ctx context.Context, request *WithdrawHireReferralAccountReq, options ...MethodOptionFunc) (*WithdrawHireReferralAccountResp, *Response, error) + mockHireGetHireReferralByApplication func(ctx context.Context, request *GetHireReferralByApplicationReq, options ...MethodOptionFunc) (*GetHireReferralByApplicationResp, *Response, error) + mockHireGetHireReferralWebsiteJobPost func(ctx context.Context, request *GetHireReferralWebsiteJobPostReq, options ...MethodOptionFunc) (*GetHireReferralWebsiteJobPostResp, *Response, error) + mockHireGetHireReferralWebsiteJobPostList func(ctx context.Context, request *GetHireReferralWebsiteJobPostListReq, options ...MethodOptionFunc) (*GetHireReferralWebsiteJobPostListResp, *Response, error) + mockHireGetHireResumeSource func(ctx context.Context, request *GetHireResumeSourceReq, options ...MethodOptionFunc) (*GetHireResumeSourceResp, *Response, error) + mockHireAddHireTalentToFolder func(ctx context.Context, request *AddHireTalentToFolderReq, options ...MethodOptionFunc) (*AddHireTalentToFolderResp, *Response, error) + mockHireBatchGetHireTalent func(ctx context.Context, request *BatchGetHireTalentReq, options ...MethodOptionFunc) (*BatchGetHireTalentResp, *Response, error) + mockHireGetHireTalentFolderList func(ctx context.Context, request *GetHireTalentFolderListReq, options ...MethodOptionFunc) (*GetHireTalentFolderListResp, *Response, error) + mockHireGetHireTalent func(ctx context.Context, request *GetHireTalentReq, options ...MethodOptionFunc) (*GetHireTalentResp, *Response, error) + mockHireGetHireTalentList func(ctx context.Context, request *GetHireTalentListReq, options ...MethodOptionFunc) (*GetHireTalentListResp, *Response, error) + mockHireQueryHireTalentObject func(ctx context.Context, request *QueryHireTalentObjectReq, options ...MethodOptionFunc) (*QueryHireTalentObjectResp, *Response, error) + mockHireMakeHireTransferOnboardByApplication func(ctx context.Context, request *MakeHireTransferOnboardByApplicationReq, options ...MethodOptionFunc) (*MakeHireTransferOnboardByApplicationResp, *Response, error) + mockHumanAuthCropFaceVerifyImage func(ctx context.Context, request *CropFaceVerifyImageReq, options ...MethodOptionFunc) (*CropFaceVerifyImageResp, *Response, error) + mockHumanAuthGetFaceVerifyAuthResult func(ctx context.Context, request *GetFaceVerifyAuthResultReq, options ...MethodOptionFunc) (*GetFaceVerifyAuthResultResp, *Response, error) + mockHumanAuthUploadFaceVerifyImage func(ctx context.Context, request *UploadFaceVerifyImageReq, options ...MethodOptionFunc) (*UploadFaceVerifyImageResp, *Response, error) + mockHumanAuthCreateIdentity func(ctx context.Context, request *CreateIdentityReq, options ...MethodOptionFunc) (*CreateIdentityResp, *Response, error) + mockIMBatchUpdateImurlPreview func(ctx context.Context, request *BatchUpdateImurlPreviewReq, options ...MethodOptionFunc) (*BatchUpdateImurlPreviewResp, *Response, error) + mockJssdkGetJssdkTicket func(ctx context.Context, request *GetJssdkTicketReq, options ...MethodOptionFunc) (*GetJssdkTicketResp, *Response, error) + mockLingoGetLingoClassificationList func(ctx context.Context, request *GetLingoClassificationListReq, options ...MethodOptionFunc) (*GetLingoClassificationListResp, *Response, error) + mockLingoCreateLingoDraft func(ctx context.Context, request *CreateLingoDraftReq, options ...MethodOptionFunc) (*CreateLingoDraftResp, *Response, error) + mockLingoUpdateLingoDraft func(ctx context.Context, request *UpdateLingoDraftReq, options ...MethodOptionFunc) (*UpdateLingoDraftResp, *Response, error) + mockLingoCreateLingoEntity func(ctx context.Context, request *CreateLingoEntityReq, options ...MethodOptionFunc) (*CreateLingoEntityResp, *Response, error) + mockLingoDeleteLingoEntity func(ctx context.Context, request *DeleteLingoEntityReq, options ...MethodOptionFunc) (*DeleteLingoEntityResp, *Response, error) + mockLingoExtractLingoEntity func(ctx context.Context, request *ExtractLingoEntityReq, options ...MethodOptionFunc) (*ExtractLingoEntityResp, *Response, error) + mockLingoGetLingoEntity func(ctx context.Context, request *GetLingoEntityReq, options ...MethodOptionFunc) (*GetLingoEntityResp, *Response, error) + mockLingoHighlightLingoEntity func(ctx context.Context, request *HighlightLingoEntityReq, options ...MethodOptionFunc) (*HighlightLingoEntityResp, *Response, error) + mockLingoGetLingoEntityList func(ctx context.Context, request *GetLingoEntityListReq, options ...MethodOptionFunc) (*GetLingoEntityListResp, *Response, error) + mockLingoMatchLingoEntity func(ctx context.Context, request *MatchLingoEntityReq, options ...MethodOptionFunc) (*MatchLingoEntityResp, *Response, error) + mockLingoSearchLingoEntity func(ctx context.Context, request *SearchLingoEntityReq, options ...MethodOptionFunc) (*SearchLingoEntityResp, *Response, error) + mockLingoUpdateLingoEntity func(ctx context.Context, request *UpdateLingoEntityReq, options ...MethodOptionFunc) (*UpdateLingoEntityResp, *Response, error) + mockLingoDownloadLingoFile func(ctx context.Context, request *DownloadLingoFileReq, options ...MethodOptionFunc) (*DownloadLingoFileResp, *Response, error) + mockLingoUploadLingoFile func(ctx context.Context, request *UploadLingoFileReq, options ...MethodOptionFunc) (*UploadLingoFileResp, *Response, error) + mockLingoGetLingoRepoList func(ctx context.Context, request *GetLingoRepoListReq, options ...MethodOptionFunc) (*GetLingoRepoListResp, *Response, error) + mockMDMCreateMDMUserAuthDataRelationBind func(ctx context.Context, request *CreateMDMUserAuthDataRelationBindReq, options ...MethodOptionFunc) (*CreateMDMUserAuthDataRelationBindResp, *Response, error) + mockMDMCreateMDMUserAuthDataRelationUnbind func(ctx context.Context, request *CreateMDMUserAuthDataRelationUnbindReq, options ...MethodOptionFunc) (*CreateMDMUserAuthDataRelationUnbindResp, *Response, error) + mockMailCreateMailGroupAlias func(ctx context.Context, request *CreateMailGroupAliasReq, options ...MethodOptionFunc) (*CreateMailGroupAliasResp, *Response, error) + mockMailDeleteMailGroupAlias func(ctx context.Context, request *DeleteMailGroupAliasReq, options ...MethodOptionFunc) (*DeleteMailGroupAliasResp, *Response, error) + mockMailGetMailGroupAliasList func(ctx context.Context, request *GetMailGroupAliasListReq, options ...MethodOptionFunc) (*GetMailGroupAliasListResp, *Response, error) + mockMailCreateMailGroup func(ctx context.Context, request *CreateMailGroupReq, options ...MethodOptionFunc) (*CreateMailGroupResp, *Response, error) + mockMailDeleteMailGroup func(ctx context.Context, request *DeleteMailGroupReq, options ...MethodOptionFunc) (*DeleteMailGroupResp, *Response, error) + mockMailGetMailGroup func(ctx context.Context, request *GetMailGroupReq, options ...MethodOptionFunc) (*GetMailGroupResp, *Response, error) + mockMailGetMailGroupList func(ctx context.Context, request *GetMailGroupListReq, options ...MethodOptionFunc) (*GetMailGroupListResp, *Response, error) + mockMailBatchCreateMailGroupManager func(ctx context.Context, request *BatchCreateMailGroupManagerReq, options ...MethodOptionFunc) (*BatchCreateMailGroupManagerResp, *Response, error) + mockMailBatchDeleteMailGroupManager func(ctx context.Context, request *BatchDeleteMailGroupManagerReq, options ...MethodOptionFunc) (*BatchDeleteMailGroupManagerResp, *Response, error) + mockMailGetMailGroupManagerList func(ctx context.Context, request *GetMailGroupManagerListReq, options ...MethodOptionFunc) (*GetMailGroupManagerListResp, *Response, error) + mockMailBatchCreateMailGroupMember func(ctx context.Context, request *BatchCreateMailGroupMemberReq, options ...MethodOptionFunc) (*BatchCreateMailGroupMemberResp, *Response, error) + mockMailBatchDeleteMailGroupMember func(ctx context.Context, request *BatchDeleteMailGroupMemberReq, options ...MethodOptionFunc) (*BatchDeleteMailGroupMemberResp, *Response, error) + mockMailCreateMailGroupMember func(ctx context.Context, request *CreateMailGroupMemberReq, options ...MethodOptionFunc) (*CreateMailGroupMemberResp, *Response, error) + mockMailDeleteMailGroupMember func(ctx context.Context, request *DeleteMailGroupMemberReq, options ...MethodOptionFunc) (*DeleteMailGroupMemberResp, *Response, error) + mockMailGetMailGroupMember func(ctx context.Context, request *GetMailGroupMemberReq, options ...MethodOptionFunc) (*GetMailGroupMemberResp, *Response, error) + mockMailGetMailGroupMemberList func(ctx context.Context, request *GetMailGroupMemberListReq, options ...MethodOptionFunc) (*GetMailGroupMemberListResp, *Response, error) + mockMailUpdateMailGroupPatch func(ctx context.Context, request *UpdateMailGroupPatchReq, options ...MethodOptionFunc) (*UpdateMailGroupPatchResp, *Response, error) + mockMailBatchCreateMailGroupPermissionMember func(ctx context.Context, request *BatchCreateMailGroupPermissionMemberReq, options ...MethodOptionFunc) (*BatchCreateMailGroupPermissionMemberResp, *Response, error) + mockMailBatchDeleteMailGroupPermissionMember func(ctx context.Context, request *BatchDeleteMailGroupPermissionMemberReq, options ...MethodOptionFunc) (*BatchDeleteMailGroupPermissionMemberResp, *Response, error) + mockMailCreateMailGroupPermissionMember func(ctx context.Context, request *CreateMailGroupPermissionMemberReq, options ...MethodOptionFunc) (*CreateMailGroupPermissionMemberResp, *Response, error) + mockMailDeleteMailGroupPermissionMember func(ctx context.Context, request *DeleteMailGroupPermissionMemberReq, options ...MethodOptionFunc) (*DeleteMailGroupPermissionMemberResp, *Response, error) + mockMailGetMailGroupPermissionMember func(ctx context.Context, request *GetMailGroupPermissionMemberReq, options ...MethodOptionFunc) (*GetMailGroupPermissionMemberResp, *Response, error) + mockMailGetMailGroupPermissionMemberList func(ctx context.Context, request *GetMailGroupPermissionMemberListReq, options ...MethodOptionFunc) (*GetMailGroupPermissionMemberListResp, *Response, error) + mockMailUpdateMailGroup func(ctx context.Context, request *UpdateMailGroupReq, options ...MethodOptionFunc) (*UpdateMailGroupResp, *Response, error) + mockMailCreateMailPublicMailboxAlias func(ctx context.Context, request *CreateMailPublicMailboxAliasReq, options ...MethodOptionFunc) (*CreateMailPublicMailboxAliasResp, *Response, error) + mockMailDeleteMailPublicMailboxAlias func(ctx context.Context, request *DeleteMailPublicMailboxAliasReq, options ...MethodOptionFunc) (*DeleteMailPublicMailboxAliasResp, *Response, error) + mockMailGetMailPublicMailboxAliasList func(ctx context.Context, request *GetMailPublicMailboxAliasListReq, options ...MethodOptionFunc) (*GetMailPublicMailboxAliasListResp, *Response, error) + mockMailCreatePublicMailbox func(ctx context.Context, request *CreatePublicMailboxReq, options ...MethodOptionFunc) (*CreatePublicMailboxResp, *Response, error) + mockMailDeletePublicMailbox func(ctx context.Context, request *DeletePublicMailboxReq, options ...MethodOptionFunc) (*DeletePublicMailboxResp, *Response, error) + mockMailGetPublicMailbox func(ctx context.Context, request *GetPublicMailboxReq, options ...MethodOptionFunc) (*GetPublicMailboxResp, *Response, error) + mockMailGetPublicMailboxList func(ctx context.Context, request *GetPublicMailboxListReq, options ...MethodOptionFunc) (*GetPublicMailboxListResp, *Response, error) + mockMailBatchCreatePublicMailboxMember func(ctx context.Context, request *BatchCreatePublicMailboxMemberReq, options ...MethodOptionFunc) (*BatchCreatePublicMailboxMemberResp, *Response, error) + mockMailBatchDeletePublicMailboxMember func(ctx context.Context, request *BatchDeletePublicMailboxMemberReq, options ...MethodOptionFunc) (*BatchDeletePublicMailboxMemberResp, *Response, error) + mockMailClearPublicMailboxMember func(ctx context.Context, request *ClearPublicMailboxMemberReq, options ...MethodOptionFunc) (*ClearPublicMailboxMemberResp, *Response, error) + mockMailCreatePublicMailboxMember func(ctx context.Context, request *CreatePublicMailboxMemberReq, options ...MethodOptionFunc) (*CreatePublicMailboxMemberResp, *Response, error) + mockMailDeletePublicMailboxMember func(ctx context.Context, request *DeletePublicMailboxMemberReq, options ...MethodOptionFunc) (*DeletePublicMailboxMemberResp, *Response, error) + mockMailGetPublicMailboxMember func(ctx context.Context, request *GetPublicMailboxMemberReq, options ...MethodOptionFunc) (*GetPublicMailboxMemberResp, *Response, error) + mockMailGetPublicMailboxMemberList func(ctx context.Context, request *GetPublicMailboxMemberListReq, options ...MethodOptionFunc) (*GetPublicMailboxMemberListResp, *Response, error) + mockMailUpdatePublicMailboxPatch func(ctx context.Context, request *UpdatePublicMailboxPatchReq, options ...MethodOptionFunc) (*UpdatePublicMailboxPatchResp, *Response, error) + mockMailUpdatePublicMailbox func(ctx context.Context, request *UpdatePublicMailboxReq, options ...MethodOptionFunc) (*UpdatePublicMailboxResp, *Response, error) + mockMailGetMailUser func(ctx context.Context, request *GetMailUserReq, options ...MethodOptionFunc) (*GetMailUserResp, *Response, error) + mockMailCreateMailUserMailboxAlias func(ctx context.Context, request *CreateMailUserMailboxAliasReq, options ...MethodOptionFunc) (*CreateMailUserMailboxAliasResp, *Response, error) + mockMailDeleteMailUserMailboxAlias func(ctx context.Context, request *DeleteMailUserMailboxAliasReq, options ...MethodOptionFunc) (*DeleteMailUserMailboxAliasResp, *Response, error) + mockMailGetMailUserMailboxAliasList func(ctx context.Context, request *GetMailUserMailboxAliasListReq, options ...MethodOptionFunc) (*GetMailUserMailboxAliasListResp, *Response, error) + mockMailDeleteMailUserMailbox func(ctx context.Context, request *DeleteMailUserMailboxReq, options ...MethodOptionFunc) (*DeleteMailUserMailboxResp, *Response, error) + mockMessageUpdateAppFeedCardButton func(ctx context.Context, request *UpdateAppFeedCardButtonReq, options ...MethodOptionFunc) (*UpdateAppFeedCardButtonResp, *Response, error) + mockMessageCreateAppFeedCard func(ctx context.Context, request *CreateAppFeedCardReq, options ...MethodOptionFunc) (*CreateAppFeedCardResp, *Response, error) + mockMessageDeleteAppFeedCard func(ctx context.Context, request *DeleteAppFeedCardReq, options ...MethodOptionFunc) (*DeleteAppFeedCardResp, *Response, error) + mockMessageInstantReminderAppFeedCard func(ctx context.Context, request *InstantReminderAppFeedCardReq, options ...MethodOptionFunc) (*InstantReminderAppFeedCardResp, *Response, error) + mockMessageUpdateAppFeedCard func(ctx context.Context, request *UpdateAppFeedCardReq, options ...MethodOptionFunc) (*UpdateAppFeedCardResp, *Response, error) + mockMessageCreateIMTag func(ctx context.Context, request *CreateIMTagReq, options ...MethodOptionFunc) (*CreateIMTagResp, *Response, error) + mockMessageMGetIMTag func(ctx context.Context, request *MGetIMTagReq, options ...MethodOptionFunc) (*MGetIMTagResp, *Response, error) + mockMessageCreateIMTagRelation func(ctx context.Context, request *CreateIMTagRelationReq, options ...MethodOptionFunc) (*CreateIMTagRelationResp, *Response, error) + mockMessageDeleteIMTagRelation func(ctx context.Context, request *DeleteIMTagRelationReq, options ...MethodOptionFunc) (*DeleteIMTagRelationResp, *Response, error) + mockMessageListIMTagRelation func(ctx context.Context, request *ListIMTagRelationReq, options ...MethodOptionFunc) (*ListIMTagRelationResp, *Response, error) + mockMessageUpdateIMTag func(ctx context.Context, request *UpdateIMTagReq, options ...MethodOptionFunc) (*UpdateIMTagResp, *Response, error) + mockMessageBatchDeleteMessage func(ctx context.Context, request *BatchDeleteMessageReq, options ...MethodOptionFunc) (*BatchDeleteMessageResp, *Response, error) + mockMessageBatchSendOldRawMessage func(ctx context.Context, request *BatchSendOldRawMessageReq, options ...MethodOptionFunc) (*BatchSendOldRawMessageResp, *Response, error) + mockMessageDeleteMessage func(ctx context.Context, request *DeleteMessageReq, options ...MethodOptionFunc) (*DeleteMessageResp, *Response, error) + mockMessageDeleteEphemeralMessage func(ctx context.Context, request *DeleteEphemeralMessageReq, options ...MethodOptionFunc) (*DeleteEphemeralMessageResp, *Response, error) + mockMessageForwardMessage func(ctx context.Context, request *ForwardMessageReq, options ...MethodOptionFunc) (*ForwardMessageResp, *Response, error) + mockMessageGetMessage func(ctx context.Context, request *GetMessageReq, options ...MethodOptionFunc) (*GetMessageResp, *Response, error) + mockMessageGetBatchSentMessageProgress func(ctx context.Context, request *GetBatchSentMessageProgressReq, options ...MethodOptionFunc) (*GetBatchSentMessageProgressResp, *Response, error) + mockMessageGetBatchSentMessageReadUser func(ctx context.Context, request *GetBatchSentMessageReadUserReq, options ...MethodOptionFunc) (*GetBatchSentMessageReadUserResp, *Response, error) + mockMessageGetMessageFile func(ctx context.Context, request *GetMessageFileReq, options ...MethodOptionFunc) (*GetMessageFileResp, *Response, error) + mockMessageGetMessageReadUserList func(ctx context.Context, request *GetMessageReadUserListReq, options ...MethodOptionFunc) (*GetMessageReadUserListResp, *Response, error) + mockMessageGetMessageList func(ctx context.Context, request *GetMessageListReq, options ...MethodOptionFunc) (*GetMessageListResp, *Response, error) + mockMessageMergeForwardMessage func(ctx context.Context, request *MergeForwardMessageReq, options ...MethodOptionFunc) (*MergeForwardMessageResp, *Response, error) + mockMessageCreateMessagePin func(ctx context.Context, request *CreateMessagePinReq, options ...MethodOptionFunc) (*CreateMessagePinResp, *Response, error) + mockMessageDeleteMessagePin func(ctx context.Context, request *DeleteMessagePinReq, options ...MethodOptionFunc) (*DeleteMessagePinResp, *Response, error) + mockMessageGetMessagePinList func(ctx context.Context, request *GetMessagePinListReq, options ...MethodOptionFunc) (*GetMessagePinListResp, *Response, error) + mockMessageCreateMessageReaction func(ctx context.Context, request *CreateMessageReactionReq, options ...MethodOptionFunc) (*CreateMessageReactionResp, *Response, error) + mockMessageDeleteMessageReaction func(ctx context.Context, request *DeleteMessageReactionReq, options ...MethodOptionFunc) (*DeleteMessageReactionResp, *Response, error) + mockMessageGetMessageReactionList func(ctx context.Context, request *GetMessageReactionListReq, options ...MethodOptionFunc) (*GetMessageReactionListResp, *Response, error) + mockMessageReplyRawMessage func(ctx context.Context, request *ReplyRawMessageReq, options ...MethodOptionFunc) (*ReplyRawMessageResp, *Response, error) + mockMessageSendRawMessage func(ctx context.Context, request *SendRawMessageReq, options ...MethodOptionFunc) (*SendRawMessageResp, *Response, error) + mockMessageSendEphemeralMessage func(ctx context.Context, request *SendEphemeralMessageReq, options ...MethodOptionFunc) (*SendEphemeralMessageResp, *Response, error) + mockMessageSendRawMessageOld func(ctx context.Context, request *SendRawMessageOldReq, options ...MethodOptionFunc) (*SendRawMessageOldResp, *Response, error) + mockMessageSendUrgentAppMessage func(ctx context.Context, request *SendUrgentAppMessageReq, options ...MethodOptionFunc) (*SendUrgentAppMessageResp, *Response, error) + mockMessageSendUrgentPhoneMessage func(ctx context.Context, request *SendUrgentPhoneMessageReq, options ...MethodOptionFunc) (*SendUrgentPhoneMessageResp, *Response, error) + mockMessageSendUrgentSmsMessage func(ctx context.Context, request *SendUrgentSmsMessageReq, options ...MethodOptionFunc) (*SendUrgentSmsMessageResp, *Response, error) + mockMessageGetMessageSpecialFocusList func(ctx context.Context, request *GetMessageSpecialFocusListReq, options ...MethodOptionFunc) (*GetMessageSpecialFocusListResp, *Response, error) + mockMessageGetMessageSpecialFocusUnread func(ctx context.Context, request *GetMessageSpecialFocusUnreadReq, options ...MethodOptionFunc) (*GetMessageSpecialFocusUnreadResp, *Response, error) + mockMessageForwardThreadMessage func(ctx context.Context, request *ForwardThreadMessageReq, options ...MethodOptionFunc) (*ForwardThreadMessageResp, *Response, error) + mockMessageUpdateMessage func(ctx context.Context, request *UpdateMessageReq, options ...MethodOptionFunc) (*UpdateMessageResp, *Response, error) + mockMessageUpdateMessageDelay func(ctx context.Context, request *UpdateMessageDelayReq, options ...MethodOptionFunc) (*UpdateMessageDelayResp, *Response, error) + mockMessageUpdateMessageEdit func(ctx context.Context, request *UpdateMessageEditReq, options ...MethodOptionFunc) (*UpdateMessageEditResp, *Response, error) + mockMessageBatchUpdateURLPreview func(ctx context.Context, request *BatchUpdateURLPreviewReq, options ...MethodOptionFunc) (*BatchUpdateURLPreviewResp, *Response, error) + mockMinaMinaCodeToSession func(ctx context.Context, request *MinaCodeToSessionReq, options ...MethodOptionFunc) (*MinaCodeToSessionResp, *Response, error) + mockMinutesGetMinutesMinute func(ctx context.Context, request *GetMinutesMinuteReq, options ...MethodOptionFunc) (*GetMinutesMinuteResp, *Response, error) + mockMinutesGetMinutesStatistics func(ctx context.Context, request *GetMinutesStatisticsReq, options ...MethodOptionFunc) (*GetMinutesStatisticsResp, *Response, error) + mockOKRUploadOKRImage func(ctx context.Context, request *UploadOKRImageReq, options ...MethodOptionFunc) (*UploadOKRImageResp, *Response, error) + mockOKRGetOKRMetricSourceList func(ctx context.Context, request *GetOKRMetricSourceListReq, options ...MethodOptionFunc) (*GetOKRMetricSourceListResp, *Response, error) + mockOKRBatchUpdateOKRMetricSourceTableItem func(ctx context.Context, request *BatchUpdateOKRMetricSourceTableItemReq, options ...MethodOptionFunc) (*BatchUpdateOKRMetricSourceTableItemResp, *Response, error) + mockOKRGetOKRMetricSourceTableItem func(ctx context.Context, request *GetOKRMetricSourceTableItemReq, options ...MethodOptionFunc) (*GetOKRMetricSourceTableItemResp, *Response, error) + mockOKRGetOKRMetricSourceTableItemList func(ctx context.Context, request *GetOKRMetricSourceTableItemListReq, options ...MethodOptionFunc) (*GetOKRMetricSourceTableItemListResp, *Response, error) + mockOKRUpdateOKRMetricSourceTableItem func(ctx context.Context, request *UpdateOKRMetricSourceTableItemReq, options ...MethodOptionFunc) (*UpdateOKRMetricSourceTableItemResp, *Response, error) + mockOKRGetOKRMetricSourceTableList func(ctx context.Context, request *GetOKRMetricSourceTableListReq, options ...MethodOptionFunc) (*GetOKRMetricSourceTableListResp, *Response, error) + mockOKRBatchGetOKR func(ctx context.Context, request *BatchGetOKRReq, options ...MethodOptionFunc) (*BatchGetOKRResp, *Response, error) + mockOKRCreateOKRPeriod func(ctx context.Context, request *CreateOKRPeriodReq, options ...MethodOptionFunc) (*CreateOKRPeriodResp, *Response, error) + mockOKRGetOKRPeriodList func(ctx context.Context, request *GetOKRPeriodListReq, options ...MethodOptionFunc) (*GetOKRPeriodListResp, *Response, error) + mockOKRGetOKRPeriodRuleList func(ctx context.Context, request *GetOKRPeriodRuleListReq, options ...MethodOptionFunc) (*GetOKRPeriodRuleListResp, *Response, error) + mockOKRUpdateOKRPeriod func(ctx context.Context, request *UpdateOKRPeriodReq, options ...MethodOptionFunc) (*UpdateOKRPeriodResp, *Response, error) + mockOKRCreateOKRProgressRecord func(ctx context.Context, request *CreateOKRProgressRecordReq, options ...MethodOptionFunc) (*CreateOKRProgressRecordResp, *Response, error) + mockOKRDeleteOKRProgressRecord func(ctx context.Context, request *DeleteOKRProgressRecordReq, options ...MethodOptionFunc) (*DeleteOKRProgressRecordResp, *Response, error) + mockOKRGetOKRProgressRecord func(ctx context.Context, request *GetOKRProgressRecordReq, options ...MethodOptionFunc) (*GetOKRProgressRecordResp, *Response, error) + mockOKRUpdateOKRProgressRecord func(ctx context.Context, request *UpdateOKRProgressRecordReq, options ...MethodOptionFunc) (*UpdateOKRProgressRecordResp, *Response, error) + mockOKRGetOKRReview func(ctx context.Context, request *GetOKRReviewReq, options ...MethodOptionFunc) (*GetOKRReviewResp, *Response, error) + mockOKRGetUserOKRList func(ctx context.Context, request *GetUserOKRListReq, options ...MethodOptionFunc) (*GetUserOKRListResp, *Response, error) + mockPassportGetPassportSession func(ctx context.Context, request *GetPassportSessionReq, options ...MethodOptionFunc) (*GetPassportSessionResp, *Response, error) + mockPerformanceGetPerformanceReviewData func(ctx context.Context, request *GetPerformanceReviewDataReq, options ...MethodOptionFunc) (*GetPerformanceReviewDataResp, *Response, error) + mockPerformanceGetPerformanceSemesterList func(ctx context.Context, request *GetPerformanceSemesterListReq, options ...MethodOptionFunc) (*GetPerformanceSemesterListResp, *Response, error) + mockPerformanceGetPerformanceStageTaskByPage func(ctx context.Context, request *GetPerformanceStageTaskByPageReq, options ...MethodOptionFunc) (*GetPerformanceStageTaskByPageResp, *Response, error) + mockPerformanceGetPerformanceStageTaskByUser func(ctx context.Context, request *GetPerformanceStageTaskByUserReq, options ...MethodOptionFunc) (*GetPerformanceStageTaskByUserResp, *Response, error) + mockPersonalSettingsBatchClosePersonalSettingsSystemStatus func(ctx context.Context, request *BatchClosePersonalSettingsSystemStatusReq, options ...MethodOptionFunc) (*BatchClosePersonalSettingsSystemStatusResp, *Response, error) + mockPersonalSettingsBatchOpenPersonalSettingsSystemStatus func(ctx context.Context, request *BatchOpenPersonalSettingsSystemStatusReq, options ...MethodOptionFunc) (*BatchOpenPersonalSettingsSystemStatusResp, *Response, error) + mockPersonalSettingsCreatePersonalSettingsSystemStatus func(ctx context.Context, request *CreatePersonalSettingsSystemStatusReq, options ...MethodOptionFunc) (*CreatePersonalSettingsSystemStatusResp, *Response, error) + mockPersonalSettingsDeletePersonalSettingsSystemStatus func(ctx context.Context, request *DeletePersonalSettingsSystemStatusReq, options ...MethodOptionFunc) (*DeletePersonalSettingsSystemStatusResp, *Response, error) + mockPersonalSettingsGetPersonalSettingsSystemStatusList func(ctx context.Context, request *GetPersonalSettingsSystemStatusListReq, options ...MethodOptionFunc) (*GetPersonalSettingsSystemStatusListResp, *Response, error) + mockPersonalSettingsUpdatePersonalSettingsSystemStatus func(ctx context.Context, request *UpdatePersonalSettingsSystemStatusReq, options ...MethodOptionFunc) (*UpdatePersonalSettingsSystemStatusResp, *Response, error) + mockReportQueryReportRule func(ctx context.Context, request *QueryReportRuleReq, options ...MethodOptionFunc) (*QueryReportRuleResp, *Response, error) + mockReportQueryReportTask func(ctx context.Context, request *QueryReportTaskReq, options ...MethodOptionFunc) (*QueryReportTaskResp, *Response, error) + mockReportRemoveReportView func(ctx context.Context, request *RemoveReportViewReq, options ...MethodOptionFunc) (*RemoveReportViewResp, *Response, error) + mockSearchSearchApp func(ctx context.Context, request *SearchAppReq, options ...MethodOptionFunc) (*SearchAppResp, *Response, error) + mockSearchCreateSearchDataSource func(ctx context.Context, request *CreateSearchDataSourceReq, options ...MethodOptionFunc) (*CreateSearchDataSourceResp, *Response, error) + mockSearchDeleteSearchDataSource func(ctx context.Context, request *DeleteSearchDataSourceReq, options ...MethodOptionFunc) (*DeleteSearchDataSourceResp, *Response, error) + mockSearchGetSearchDataSource func(ctx context.Context, request *GetSearchDataSourceReq, options ...MethodOptionFunc) (*GetSearchDataSourceResp, *Response, error) + mockSearchCreateSearchDataSourceItem func(ctx context.Context, request *CreateSearchDataSourceItemReq, options ...MethodOptionFunc) (*CreateSearchDataSourceItemResp, *Response, error) + mockSearchBatchCreateSearchDataSourceItem func(ctx context.Context, request *BatchCreateSearchDataSourceItemReq, options ...MethodOptionFunc) (*BatchCreateSearchDataSourceItemResp, *Response, error) + mockSearchDeleteSearchDataSourceItem func(ctx context.Context, request *DeleteSearchDataSourceItemReq, options ...MethodOptionFunc) (*DeleteSearchDataSourceItemResp, *Response, error) + mockSearchGetSearchDataSourceItem func(ctx context.Context, request *GetSearchDataSourceItemReq, options ...MethodOptionFunc) (*GetSearchDataSourceItemResp, *Response, error) + mockSearchGetSearchDataSourceList func(ctx context.Context, request *GetSearchDataSourceListReq, options ...MethodOptionFunc) (*GetSearchDataSourceListResp, *Response, error) + mockSearchUpdateSearchDataSource func(ctx context.Context, request *UpdateSearchDataSourceReq, options ...MethodOptionFunc) (*UpdateSearchDataSourceResp, *Response, error) + mockSearchSearchMessage func(ctx context.Context, request *SearchMessageReq, options ...MethodOptionFunc) (*SearchMessageResp, *Response, error) + mockSearchCreateSearchSchema func(ctx context.Context, request *CreateSearchSchemaReq, options ...MethodOptionFunc) (*CreateSearchSchemaResp, *Response, error) + mockSearchDeleteSearchSchema func(ctx context.Context, request *DeleteSearchSchemaReq, options ...MethodOptionFunc) (*DeleteSearchSchemaResp, *Response, error) + mockSearchGetSearchSchema func(ctx context.Context, request *GetSearchSchemaReq, options ...MethodOptionFunc) (*GetSearchSchemaResp, *Response, error) + mockSearchUpdateSearchSchema func(ctx context.Context, request *UpdateSearchSchemaReq, options ...MethodOptionFunc) (*UpdateSearchSchemaResp, *Response, error) + mockTaskAddTaskDependency func(ctx context.Context, request *AddTaskDependencyReq, options ...MethodOptionFunc) (*AddTaskDependencyResp, *Response, error) + mockTaskDeleteTaskAttachment func(ctx context.Context, request *DeleteTaskAttachmentReq, options ...MethodOptionFunc) (*DeleteTaskAttachmentResp, *Response, error) + mockTaskGetTaskAttachment func(ctx context.Context, request *GetTaskAttachmentReq, options ...MethodOptionFunc) (*GetTaskAttachmentResp, *Response, error) + mockTaskGetTaskAttachmentList func(ctx context.Context, request *GetTaskAttachmentListReq, options ...MethodOptionFunc) (*GetTaskAttachmentListResp, *Response, error) + mockTaskUploadTaskAttachment func(ctx context.Context, request *UploadTaskAttachmentReq, options ...MethodOptionFunc) (*UploadTaskAttachmentResp, *Response, error) + mockTaskCreateTaskCollaborator func(ctx context.Context, request *CreateTaskCollaboratorReq, options ...MethodOptionFunc) (*CreateTaskCollaboratorResp, *Response, error) + mockTaskDeleteTaskCollaborator func(ctx context.Context, request *DeleteTaskCollaboratorReq, options ...MethodOptionFunc) (*DeleteTaskCollaboratorResp, *Response, error) + mockTaskBatchDeleteTaskCollaborator func(ctx context.Context, request *BatchDeleteTaskCollaboratorReq, options ...MethodOptionFunc) (*BatchDeleteTaskCollaboratorResp, *Response, error) + mockTaskGetTaskCollaboratorList func(ctx context.Context, request *GetTaskCollaboratorListReq, options ...MethodOptionFunc) (*GetTaskCollaboratorListResp, *Response, error) + mockTaskCreateTaskComment func(ctx context.Context, request *CreateTaskCommentReq, options ...MethodOptionFunc) (*CreateTaskCommentResp, *Response, error) + mockTaskDeleteTaskComment func(ctx context.Context, request *DeleteTaskCommentReq, options ...MethodOptionFunc) (*DeleteTaskCommentResp, *Response, error) + mockTaskGetTaskComment func(ctx context.Context, request *GetTaskCommentReq, options ...MethodOptionFunc) (*GetTaskCommentResp, *Response, error) + mockTaskGetTaskCommentList func(ctx context.Context, request *GetTaskCommentListReq, options ...MethodOptionFunc) (*GetTaskCommentListResp, *Response, error) + mockTaskUpdateTaskComment func(ctx context.Context, request *UpdateTaskCommentReq, options ...MethodOptionFunc) (*UpdateTaskCommentResp, *Response, error) + mockTaskAddTaskCustomField func(ctx context.Context, request *AddTaskCustomFieldReq, options ...MethodOptionFunc) (*AddTaskCustomFieldResp, *Response, error) + mockTaskCreateTaskCustomFieldOption func(ctx context.Context, request *CreateTaskCustomFieldOptionReq, options ...MethodOptionFunc) (*CreateTaskCustomFieldOptionResp, *Response, error) + mockTaskUpdateTaskCustomFieldOption func(ctx context.Context, request *UpdateTaskCustomFieldOptionReq, options ...MethodOptionFunc) (*UpdateTaskCustomFieldOptionResp, *Response, error) + mockTaskRemoveTaskCustomField func(ctx context.Context, request *RemoveTaskCustomFieldReq, options ...MethodOptionFunc) (*RemoveTaskCustomFieldResp, *Response, error) + mockTaskRemoveTaskDependency func(ctx context.Context, request *RemoveTaskDependencyReq, options ...MethodOptionFunc) (*RemoveTaskDependencyResp, *Response, error) + mockTaskCreateTaskFollower func(ctx context.Context, request *CreateTaskFollowerReq, options ...MethodOptionFunc) (*CreateTaskFollowerResp, *Response, error) + mockTaskDeleteTaskFollower func(ctx context.Context, request *DeleteTaskFollowerReq, options ...MethodOptionFunc) (*DeleteTaskFollowerResp, *Response, error) + mockTaskBatchDeleteTaskFollower func(ctx context.Context, request *BatchDeleteTaskFollowerReq, options ...MethodOptionFunc) (*BatchDeleteTaskFollowerResp, *Response, error) + mockTaskGetTaskFollowerList func(ctx context.Context, request *GetTaskFollowerListReq, options ...MethodOptionFunc) (*GetTaskFollowerListResp, *Response, error) + mockTaskAddTaskMember func(ctx context.Context, request *AddTaskMemberReq, options ...MethodOptionFunc) (*AddTaskMemberResp, *Response, error) + mockTaskRemoveTaskMember func(ctx context.Context, request *RemoveTaskMemberReq, options ...MethodOptionFunc) (*RemoveTaskMemberResp, *Response, error) + mockTaskAddTaskReminder func(ctx context.Context, request *AddTaskReminderReq, options ...MethodOptionFunc) (*AddTaskReminderResp, *Response, error) + mockTaskCreateTaskReminder func(ctx context.Context, request *CreateTaskReminderReq, options ...MethodOptionFunc) (*CreateTaskReminderResp, *Response, error) + mockTaskDeleteTaskReminder func(ctx context.Context, request *DeleteTaskReminderReq, options ...MethodOptionFunc) (*DeleteTaskReminderResp, *Response, error) + mockTaskGetTaskReminderList func(ctx context.Context, request *GetTaskReminderListReq, options ...MethodOptionFunc) (*GetTaskReminderListResp, *Response, error) + mockTaskRemoveTaskReminder func(ctx context.Context, request *RemoveTaskReminderReq, options ...MethodOptionFunc) (*RemoveTaskReminderResp, *Response, error) + mockTaskCreateTaskSection func(ctx context.Context, request *CreateTaskSectionReq, options ...MethodOptionFunc) (*CreateTaskSectionResp, *Response, error) + mockTaskDeleteTaskSection func(ctx context.Context, request *DeleteTaskSectionReq, options ...MethodOptionFunc) (*DeleteTaskSectionResp, *Response, error) + mockTaskGetTaskSection func(ctx context.Context, request *GetTaskSectionReq, options ...MethodOptionFunc) (*GetTaskSectionResp, *Response, error) + mockTaskGetTaskSectionList func(ctx context.Context, request *GetTaskSectionListReq, options ...MethodOptionFunc) (*GetTaskSectionListResp, *Response, error) + mockTaskGetTaskTaskListOfSection func(ctx context.Context, request *GetTaskTaskListOfSectionReq, options ...MethodOptionFunc) (*GetTaskTaskListOfSectionResp, *Response, error) + mockTaskUpdateTaskSection func(ctx context.Context, request *UpdateTaskSectionReq, options ...MethodOptionFunc) (*UpdateTaskSectionResp, *Response, error) + mockTaskCreateTaskSubtask func(ctx context.Context, request *CreateTaskSubtaskReq, options ...MethodOptionFunc) (*CreateTaskSubtaskResp, *Response, error) + mockTaskGetTaskSubtaskList func(ctx context.Context, request *GetTaskSubtaskListReq, options ...MethodOptionFunc) (*GetTaskSubtaskListResp, *Response, error) + mockTaskCompleteTask func(ctx context.Context, request *CompleteTaskReq, options ...MethodOptionFunc) (*CompleteTaskResp, *Response, error) + mockTaskCreateTask func(ctx context.Context, request *CreateTaskReq, options ...MethodOptionFunc) (*CreateTaskResp, *Response, error) + mockTaskDeleteTask func(ctx context.Context, request *DeleteTaskReq, options ...MethodOptionFunc) (*DeleteTaskResp, *Response, error) + mockTaskGetTask func(ctx context.Context, request *GetTaskReq, options ...MethodOptionFunc) (*GetTaskResp, *Response, error) + mockTaskGetTaskList func(ctx context.Context, request *GetTaskListReq, options ...MethodOptionFunc) (*GetTaskListResp, *Response, error) + mockTaskUncompleteTask func(ctx context.Context, request *UncompleteTaskReq, options ...MethodOptionFunc) (*UncompleteTaskResp, *Response, error) + mockTaskUpdateTask func(ctx context.Context, request *UpdateTaskReq, options ...MethodOptionFunc) (*UpdateTaskResp, *Response, error) + mockTaskCreateTaskTasklistActivitySubscription func(ctx context.Context, request *CreateTaskTasklistActivitySubscriptionReq, options ...MethodOptionFunc) (*CreateTaskTasklistActivitySubscriptionResp, *Response, error) + mockTaskDeleteTaskTasklistActivitySubscription func(ctx context.Context, request *DeleteTaskTasklistActivitySubscriptionReq, options ...MethodOptionFunc) (*DeleteTaskTasklistActivitySubscriptionResp, *Response, error) + mockTaskGetTaskTasklistActivitySubscription func(ctx context.Context, request *GetTaskTasklistActivitySubscriptionReq, options ...MethodOptionFunc) (*GetTaskTasklistActivitySubscriptionResp, *Response, error) + mockTaskGetTaskTasklistActivitySubscriptionList func(ctx context.Context, request *GetTaskTasklistActivitySubscriptionListReq, options ...MethodOptionFunc) (*GetTaskTasklistActivitySubscriptionListResp, *Response, error) + mockTaskUpdateTaskTasklistActivitySubscription func(ctx context.Context, request *UpdateTaskTasklistActivitySubscriptionReq, options ...MethodOptionFunc) (*UpdateTaskTasklistActivitySubscriptionResp, *Response, error) + mockTaskAddTaskTasklist func(ctx context.Context, request *AddTaskTasklistReq, options ...MethodOptionFunc) (*AddTaskTasklistResp, *Response, error) + mockTaskCreateTaskTasklist func(ctx context.Context, request *CreateTaskTasklistReq, options ...MethodOptionFunc) (*CreateTaskTasklistResp, *Response, error) + mockTaskDeleteTaskTasklist func(ctx context.Context, request *DeleteTaskTasklistReq, options ...MethodOptionFunc) (*DeleteTaskTasklistResp, *Response, error) + mockTaskGetTaskTasklist func(ctx context.Context, request *GetTaskTasklistReq, options ...MethodOptionFunc) (*GetTaskTasklistResp, *Response, error) + mockTaskGetTaskTasklistList func(ctx context.Context, request *GetTaskTasklistListReq, options ...MethodOptionFunc) (*GetTaskTasklistListResp, *Response, error) + mockTaskAddTaskTasklistMember func(ctx context.Context, request *AddTaskTasklistMemberReq, options ...MethodOptionFunc) (*AddTaskTasklistMemberResp, *Response, error) + mockTaskRemoveTaskTasklistMember func(ctx context.Context, request *RemoveTaskTasklistMemberReq, options ...MethodOptionFunc) (*RemoveTaskTasklistMemberResp, *Response, error) + mockTaskRemoveTaskTasklist func(ctx context.Context, request *RemoveTaskTasklistReq, options ...MethodOptionFunc) (*RemoveTaskTasklistResp, *Response, error) + mockTaskGetTaskTaskListOfTasklist func(ctx context.Context, request *GetTaskTaskListOfTasklistReq, options ...MethodOptionFunc) (*GetTaskTaskListOfTasklistResp, *Response, error) + mockTaskUpdateTaskTasklist func(ctx context.Context, request *UpdateTaskTasklistReq, options ...MethodOptionFunc) (*UpdateTaskTasklistResp, *Response, error) + mockTaskV1CreateTaskV1Collaborator func(ctx context.Context, request *CreateTaskV1CollaboratorReq, options ...MethodOptionFunc) (*CreateTaskV1CollaboratorResp, *Response, error) + mockTaskV1DeleteTaskV1Collaborator func(ctx context.Context, request *DeleteTaskV1CollaboratorReq, options ...MethodOptionFunc) (*DeleteTaskV1CollaboratorResp, *Response, error) + mockTaskV1BatchDeleteTaskV1Collaborator func(ctx context.Context, request *BatchDeleteTaskV1CollaboratorReq, options ...MethodOptionFunc) (*BatchDeleteTaskV1CollaboratorResp, *Response, error) + mockTaskV1GetTaskV1CollaboratorList func(ctx context.Context, request *GetTaskV1CollaboratorListReq, options ...MethodOptionFunc) (*GetTaskV1CollaboratorListResp, *Response, error) + mockTaskV1CreateTaskV1Comment func(ctx context.Context, request *CreateTaskV1CommentReq, options ...MethodOptionFunc) (*CreateTaskV1CommentResp, *Response, error) + mockTaskV1DeleteTaskV1Comment func(ctx context.Context, request *DeleteTaskV1CommentReq, options ...MethodOptionFunc) (*DeleteTaskV1CommentResp, *Response, error) + mockTaskV1GetTaskV1Comment func(ctx context.Context, request *GetTaskV1CommentReq, options ...MethodOptionFunc) (*GetTaskV1CommentResp, *Response, error) + mockTaskV1GetTaskV1CommentList func(ctx context.Context, request *GetTaskV1CommentListReq, options ...MethodOptionFunc) (*GetTaskV1CommentListResp, *Response, error) + mockTaskV1UpdateTaskV1Comment func(ctx context.Context, request *UpdateTaskV1CommentReq, options ...MethodOptionFunc) (*UpdateTaskV1CommentResp, *Response, error) + mockTaskV1CreateTaskV1Follower func(ctx context.Context, request *CreateTaskV1FollowerReq, options ...MethodOptionFunc) (*CreateTaskV1FollowerResp, *Response, error) + mockTaskV1DeleteTaskV1Follower func(ctx context.Context, request *DeleteTaskV1FollowerReq, options ...MethodOptionFunc) (*DeleteTaskV1FollowerResp, *Response, error) + mockTaskV1BatchDeleteTaskV1Follower func(ctx context.Context, request *BatchDeleteTaskV1FollowerReq, options ...MethodOptionFunc) (*BatchDeleteTaskV1FollowerResp, *Response, error) + mockTaskV1GetTaskFollowerV1List func(ctx context.Context, request *GetTaskFollowerV1ListReq, options ...MethodOptionFunc) (*GetTaskFollowerV1ListResp, *Response, error) + mockTaskV1CreateTaskV1Reminder func(ctx context.Context, request *CreateTaskV1ReminderReq, options ...MethodOptionFunc) (*CreateTaskV1ReminderResp, *Response, error) + mockTaskV1DeleteTaskV1Reminder func(ctx context.Context, request *DeleteTaskV1ReminderReq, options ...MethodOptionFunc) (*DeleteTaskV1ReminderResp, *Response, error) + mockTaskV1GetTaskV1ReminderList func(ctx context.Context, request *GetTaskV1ReminderListReq, options ...MethodOptionFunc) (*GetTaskV1ReminderListResp, *Response, error) + mockTaskV1CompleteTaskV1 func(ctx context.Context, request *CompleteTaskV1Req, options ...MethodOptionFunc) (*CompleteTaskV1Resp, *Response, error) + mockTaskV1CreateTaskV1 func(ctx context.Context, request *CreateTaskV1Req, options ...MethodOptionFunc) (*CreateTaskV1Resp, *Response, error) + mockTaskV1DeleteTaskV1 func(ctx context.Context, request *DeleteTaskV1Req, options ...MethodOptionFunc) (*DeleteTaskV1Resp, *Response, error) + mockTaskV1GetTaskV1 func(ctx context.Context, request *GetTaskV1Req, options ...MethodOptionFunc) (*GetTaskV1Resp, *Response, error) + mockTaskV1GetTaskV1List func(ctx context.Context, request *GetTaskV1ListReq, options ...MethodOptionFunc) (*GetTaskV1ListResp, *Response, error) + mockTaskV1UncompleteTaskV1 func(ctx context.Context, request *UncompleteTaskV1Req, options ...MethodOptionFunc) (*UncompleteTaskV1Resp, *Response, error) + mockTaskV1UpdateTaskV1 func(ctx context.Context, request *UpdateTaskV1Req, options ...MethodOptionFunc) (*UpdateTaskV1Resp, *Response, error) + mockTenantGetTenantProductAssignInfo func(ctx context.Context, request *GetTenantProductAssignInfoReq, options ...MethodOptionFunc) (*GetTenantProductAssignInfoResp, *Response, error) + mockTenantGetTenant func(ctx context.Context, request *GetTenantReq, options ...MethodOptionFunc) (*GetTenantResp, *Response, error) + mockVCGetVCAlertList func(ctx context.Context, request *GetVCAlertListReq, options ...MethodOptionFunc) (*GetVCAlertListResp, *Response, error) + mockVCExportVCMeetingList func(ctx context.Context, request *ExportVCMeetingListReq, options ...MethodOptionFunc) (*ExportVCMeetingListResp, *Response, error) + mockVCExportVCParticipantList func(ctx context.Context, request *ExportVCParticipantListReq, options ...MethodOptionFunc) (*ExportVCParticipantListResp, *Response, error) + mockVCExportVCParticipantQualityList func(ctx context.Context, request *ExportVCParticipantQualityListReq, options ...MethodOptionFunc) (*ExportVCParticipantQualityListResp, *Response, error) + mockVCExportVCResourceReservationList func(ctx context.Context, request *ExportVCResourceReservationListReq, options ...MethodOptionFunc) (*ExportVCResourceReservationListResp, *Response, error) + mockVCDownloadVCExportFile func(ctx context.Context, request *DownloadVCExportFileReq, options ...MethodOptionFunc) (*DownloadVCExportFileResp, *Response, error) + mockVCGetVCExportTask func(ctx context.Context, request *GetVCExportTaskReq, options ...MethodOptionFunc) (*GetVCExportTaskResp, *Response, error) + mockVCEndVCMeeting func(ctx context.Context, request *EndVCMeetingReq, options ...MethodOptionFunc) (*EndVCMeetingResp, *Response, error) + mockVCGetVCMeeting func(ctx context.Context, request *GetVCMeetingReq, options ...MethodOptionFunc) (*GetVCMeetingResp, *Response, error) + mockVCInviteVCMeeting func(ctx context.Context, request *InviteVCMeetingReq, options ...MethodOptionFunc) (*InviteVCMeetingResp, *Response, error) + mockVCKickoutVCMeeting func(ctx context.Context, request *KickoutVCMeetingReq, options ...MethodOptionFunc) (*KickoutVCMeetingResp, *Response, error) + mockVCGetVCMeetingList func(ctx context.Context, request *GetVCMeetingListReq, options ...MethodOptionFunc) (*GetVCMeetingListResp, *Response, error) + mockVCListVCMeetingByNo func(ctx context.Context, request *ListVCMeetingByNoReq, options ...MethodOptionFunc) (*ListVCMeetingByNoResp, *Response, error) + mockVCGetVCMeetingRecording func(ctx context.Context, request *GetVCMeetingRecordingReq, options ...MethodOptionFunc) (*GetVCMeetingRecordingResp, *Response, error) + mockVCSetVCPermissionMeetingRecording func(ctx context.Context, request *SetVCPermissionMeetingRecordingReq, options ...MethodOptionFunc) (*SetVCPermissionMeetingRecordingResp, *Response, error) + mockVCStartVCMeetingRecording func(ctx context.Context, request *StartVCMeetingRecordingReq, options ...MethodOptionFunc) (*StartVCMeetingRecordingResp, *Response, error) + mockVCStopVCMeetingRecording func(ctx context.Context, request *StopVCMeetingRecordingReq, options ...MethodOptionFunc) (*StopVCMeetingRecordingResp, *Response, error) + mockVCSetVCHostMeeting func(ctx context.Context, request *SetVCHostMeetingReq, options ...MethodOptionFunc) (*SetVCHostMeetingResp, *Response, error) + mockVCGetVCParticipantList func(ctx context.Context, request *GetVCParticipantListReq, options ...MethodOptionFunc) (*GetVCParticipantListResp, *Response, error) + mockVCGetVCParticipantQualityList func(ctx context.Context, request *GetVCParticipantQualityListReq, options ...MethodOptionFunc) (*GetVCParticipantQualityListResp, *Response, error) + mockVCGetVCDailyReport func(ctx context.Context, request *GetVCDailyReportReq, options ...MethodOptionFunc) (*GetVCDailyReportResp, *Response, error) + mockVCGetVCTopUserReport func(ctx context.Context, request *GetVCTopUserReportReq, options ...MethodOptionFunc) (*GetVCTopUserReportResp, *Response, error) + mockVCApplyVCReserve func(ctx context.Context, request *ApplyVCReserveReq, options ...MethodOptionFunc) (*ApplyVCReserveResp, *Response, error) + mockVCGetVCReserveConfigAdmin func(ctx context.Context, request *GetVCReserveConfigAdminReq, options ...MethodOptionFunc) (*GetVCReserveConfigAdminResp, *Response, error) + mockVCUpdateVCReserveConfigAdmin func(ctx context.Context, request *UpdateVCReserveConfigAdminReq, options ...MethodOptionFunc) (*UpdateVCReserveConfigAdminResp, *Response, error) + mockVCGetVCReserveConfigDisableInform func(ctx context.Context, request *GetVCReserveConfigDisableInformReq, options ...MethodOptionFunc) (*GetVCReserveConfigDisableInformResp, *Response, error) + mockVCUpdateVCReserveConfigDisableInform func(ctx context.Context, request *UpdateVCReserveConfigDisableInformReq, options ...MethodOptionFunc) (*UpdateVCReserveConfigDisableInformResp, *Response, error) + mockVCGetVCReserveConfigForm func(ctx context.Context, request *GetVCReserveConfigFormReq, options ...MethodOptionFunc) (*GetVCReserveConfigFormResp, *Response, error) + mockVCUpdateVCReserveConfigForm func(ctx context.Context, request *UpdateVCReserveConfigFormReq, options ...MethodOptionFunc) (*UpdateVCReserveConfigFormResp, *Response, error) + mockVCGetVCReserveConfig func(ctx context.Context, request *GetVCReserveConfigReq, options ...MethodOptionFunc) (*GetVCReserveConfigResp, *Response, error) + mockVCUpdateVCReserveConfig func(ctx context.Context, request *UpdateVCReserveConfigReq, options ...MethodOptionFunc) (*UpdateVCReserveConfigResp, *Response, error) + mockVCDeleteVCReserve func(ctx context.Context, request *DeleteVCReserveReq, options ...MethodOptionFunc) (*DeleteVCReserveResp, *Response, error) + mockVCGetVCReserve func(ctx context.Context, request *GetVCReserveReq, options ...MethodOptionFunc) (*GetVCReserveResp, *Response, error) + mockVCGetVCReserveActiveMeeting func(ctx context.Context, request *GetVCReserveActiveMeetingReq, options ...MethodOptionFunc) (*GetVCReserveActiveMeetingResp, *Response, error) + mockVCUpdateVCReserve func(ctx context.Context, request *UpdateVCReserveReq, options ...MethodOptionFunc) (*UpdateVCReserveResp, *Response, error) + mockVCGetVCResourceReservationList func(ctx context.Context, request *GetVCResourceReservationListReq, options ...MethodOptionFunc) (*GetVCResourceReservationListResp, *Response, error) + mockVCBatchGetVCRoom func(ctx context.Context, request *BatchGetVCRoomReq, options ...MethodOptionFunc) (*BatchGetVCRoomResp, *Response, error) + mockVCCreateVCRoom func(ctx context.Context, request *CreateVCRoomReq, options ...MethodOptionFunc) (*CreateVCRoomResp, *Response, error) + mockVCDeleteVCRoom func(ctx context.Context, request *DeleteVCRoomReq, options ...MethodOptionFunc) (*DeleteVCRoomResp, *Response, error) + mockVCGetVCRoom func(ctx context.Context, request *GetVCRoomReq, options ...MethodOptionFunc) (*GetVCRoomResp, *Response, error) + mockVCGetVCRoomList func(ctx context.Context, request *GetVCRoomListReq, options ...MethodOptionFunc) (*GetVCRoomListResp, *Response, error) + mockVCCreateVCRoomLevel func(ctx context.Context, request *CreateVCRoomLevelReq, options ...MethodOptionFunc) (*CreateVCRoomLevelResp, *Response, error) + mockVCDeleteVCRoomLevel func(ctx context.Context, request *DeleteVCRoomLevelReq, options ...MethodOptionFunc) (*DeleteVCRoomLevelResp, *Response, error) + mockVCGetVCRoomLevel func(ctx context.Context, request *GetVCRoomLevelReq, options ...MethodOptionFunc) (*GetVCRoomLevelResp, *Response, error) + mockVCGetVCRoomLevelList func(ctx context.Context, request *GetVCRoomLevelListReq, options ...MethodOptionFunc) (*GetVCRoomLevelListResp, *Response, error) + mockVCBatchGetVCRoomLevel func(ctx context.Context, request *BatchGetVCRoomLevelReq, options ...MethodOptionFunc) (*BatchGetVCRoomLevelResp, *Response, error) + mockVCSearchVCRoomLevel func(ctx context.Context, request *SearchVCRoomLevelReq, options ...MethodOptionFunc) (*SearchVCRoomLevelResp, *Response, error) + mockVCUpdateVCRoomLevel func(ctx context.Context, request *UpdateVCRoomLevelReq, options ...MethodOptionFunc) (*UpdateVCRoomLevelResp, *Response, error) + mockVCSearchVCRoom func(ctx context.Context, request *SearchVCRoomReq, options ...MethodOptionFunc) (*SearchVCRoomResp, *Response, error) + mockVCUpdateVCRoom func(ctx context.Context, request *UpdateVCRoomReq, options ...MethodOptionFunc) (*UpdateVCRoomResp, *Response, error) + mockVCGetVCScopeConfig func(ctx context.Context, request *GetVCScopeConfigReq, options ...MethodOptionFunc) (*GetVCScopeConfigResp, *Response, error) + mockVCSetVCScopeConfig func(ctx context.Context, request *SetVCScopeConfigReq, options ...MethodOptionFunc) (*SetVCScopeConfigResp, *Response, error) + mockVerificationGetVerification func(ctx context.Context, request *GetVerificationReq, options ...MethodOptionFunc) (*GetVerificationResp, *Response, error) } // Mock return mock client From f7c5fb99342ede62379335c6be266dbf0a892752 Mon Sep 17 00:00:00 2001 From: chyroc Date: Sun, 1 Mar 2026 09:08:19 +0800 Subject: [PATCH 02/12] fix: restore IMURL casing for batch update api --- api_im_url_preview_batch_update.go | 41 +++++++++++++++--------------- mock.go | 2 +- 2 files changed, 22 insertions(+), 21 deletions(-) diff --git a/api_im_url_preview_batch_update.go b/api_im_url_preview_batch_update.go index 022d1297..46bd7a08 100644 --- a/api_im_url_preview_batch_update.go +++ b/api_im_url_preview_batch_update.go @@ -21,56 +21,57 @@ import ( "context" ) -// BatchUpdateImurlPreview 该接口用于主动更新 [URL 预览](https://open.feishu.cn/document/uAjLw4CM/ukzMukzMukzM/development-link-preview/link-preview-development-guide), 调用后会重新触发一次客户端拉取, 需要回调服务返回更新后的数据。 +// BatchUpdateIMURLPreview 该接口用于主动更新 [URL 预览](https://open.feishu.cn/document/uAjLw4CM/ukzMukzMukzM/development-link-preview/link-preview-development-guide), 调用后会重新触发一次客户端拉取, 需要回调服务返回更新后的数据。 // // 注意: 更新链接预览时需要注意更新频率, 如果更新时不指定用户, 则可能会造成链接预览请求放大。例如, 群聊中的链接预览, 所有群成员均会尝试重新拉取预览请求。 // // doc: https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/group/im-v2/url_preview/batch_update // new doc: https://open.feishu.cn/document/im-v1/url_preview/batch_update -func (r *IMService) BatchUpdateImurlPreview(ctx context.Context, request *BatchUpdateImurlPreviewReq, options ...MethodOptionFunc) (*BatchUpdateImurlPreviewResp, *Response, error) { - if r.cli.mock.mockIMBatchUpdateImurlPreview != nil { - r.cli.Log(ctx, LogLevelDebug, "[lark] IM#BatchUpdateImurlPreview mock enable") - return r.cli.mock.mockIMBatchUpdateImurlPreview(ctx, request, options...) +func (r *IMService) BatchUpdateIMURLPreview(ctx context.Context, request *BatchUpdateIMURLPreviewReq, options ...MethodOptionFunc) (*BatchUpdateIMURLPreviewResp, *Response, error) { + if r.cli.mock.mockIMBatchUpdateIMURLPreview != nil { + r.cli.Log(ctx, LogLevelDebug, "[lark] IM#BatchUpdateIMURLPreview mock enable") + return r.cli.mock.mockIMBatchUpdateIMURLPreview(ctx, request, options...) } req := &RawRequestReq{ Scope: "IM", - API: "BatchUpdateImurlPreview", + API: "BatchUpdateIMURLPreview", Method: "POST", URL: r.cli.openBaseURL + "/open-apis/im/v2/url_previews/batch_update", Body: request, MethodOption: newMethodOption(options), NeedTenantAccessToken: true, } - resp := new(batchUpdateImurlPreviewResp) + resp := new(batchUpdateIMURLPreviewResp) response, err := r.cli.RawRequest(ctx, req, resp) return resp.Data, response, err } -// MockIMBatchUpdateImurlPreview mock IMBatchUpdateImurlPreview method -func (r *Mock) MockIMBatchUpdateImurlPreview(f func(ctx context.Context, request *BatchUpdateImurlPreviewReq, options ...MethodOptionFunc) (*BatchUpdateImurlPreviewResp, *Response, error)) { - r.mockIMBatchUpdateImurlPreview = f +// MockIMBatchUpdateIMURLPreview mock IMBatchUpdateIMURLPreview method +func (r *Mock) MockIMBatchUpdateIMURLPreview(f func(ctx context.Context, request *BatchUpdateIMURLPreviewReq, options ...MethodOptionFunc) (*BatchUpdateIMURLPreviewResp, *Response, error)) { + r.mockIMBatchUpdateIMURLPreview = f } -// UnMockIMBatchUpdateImurlPreview un-mock IMBatchUpdateImurlPreview method -func (r *Mock) UnMockIMBatchUpdateImurlPreview() { - r.mockIMBatchUpdateImurlPreview = nil +// UnMockIMBatchUpdateIMURLPreview un-mock IMBatchUpdateIMURLPreview method +func (r *Mock) UnMockIMBatchUpdateIMURLPreview() { + r.mockIMBatchUpdateIMURLPreview = nil } -// BatchUpdateImurlPreviewReq ... -type BatchUpdateImurlPreviewReq struct { +// BatchUpdateIMURLPreviewReq ... +type BatchUpdateIMURLPreviewReq struct { PreviewTokens []string `json:"preview_tokens,omitempty"` // URL 预览的 preview_tokens 列表。需要通过[拉取链接预览数据](https://open.feishu.cn/document/uAjLw4CM/ukzMukzMukzM/development-link-preview/pull-link-preview-data-callback-structure)回调获取 preview_tokens。注意: 单个 token 限制更新频率为 1次/5秒。示例值: ["952te0c8-9ccf-463d-ad73-593f8f768a5c"] 长度范围: `1` ~ `10` OpenIDs *string `json:"open_ids,omitempty"` // 需要更新 URL 预览的用户 open_id。若不传, 则默认更新 URL 预览所在会话的所有成员;若用户不在 URL 所在会话, 则无法触发更新该用户对应的 URL 预览结果。获取方式参见[如何获取 Open ID](https://open.feishu.cn/document/uAjLw4CM/ugTN1YjL4UTN24CO1UjN/trouble-shooting/how-to-obtain-openid)。示例值: ["ou_xxx"] 长度范围: `0` ~ `100` } -// BatchUpdateImurlPreviewResp ... -type BatchUpdateImurlPreviewResp struct{} +// BatchUpdateIMURLPreviewResp ... +type BatchUpdateIMURLPreviewResp struct { +} -// batchUpdateImurlPreviewResp ... -type batchUpdateImurlPreviewResp struct { +// batchUpdateIMURLPreviewResp ... +type batchUpdateIMURLPreviewResp struct { Code int64 `json:"code,omitempty"` // 错误码, 非 0 表示失败 Msg string `json:"msg,omitempty"` // 错误描述 - Data *BatchUpdateImurlPreviewResp `json:"data,omitempty"` + Data *BatchUpdateIMURLPreviewResp `json:"data,omitempty"` Error *ErrorDetail `json:"error,omitempty"` } diff --git a/mock.go b/mock.go index 81dd3dbc..d165ecf1 100644 --- a/mock.go +++ b/mock.go @@ -830,7 +830,7 @@ type Mock struct { mockHumanAuthGetFaceVerifyAuthResult func(ctx context.Context, request *GetFaceVerifyAuthResultReq, options ...MethodOptionFunc) (*GetFaceVerifyAuthResultResp, *Response, error) mockHumanAuthUploadFaceVerifyImage func(ctx context.Context, request *UploadFaceVerifyImageReq, options ...MethodOptionFunc) (*UploadFaceVerifyImageResp, *Response, error) mockHumanAuthCreateIdentity func(ctx context.Context, request *CreateIdentityReq, options ...MethodOptionFunc) (*CreateIdentityResp, *Response, error) - mockIMBatchUpdateImurlPreview func(ctx context.Context, request *BatchUpdateImurlPreviewReq, options ...MethodOptionFunc) (*BatchUpdateImurlPreviewResp, *Response, error) + mockIMBatchUpdateIMURLPreview func(ctx context.Context, request *BatchUpdateIMURLPreviewReq, options ...MethodOptionFunc) (*BatchUpdateIMURLPreviewResp, *Response, error) mockJssdkGetJssdkTicket func(ctx context.Context, request *GetJssdkTicketReq, options ...MethodOptionFunc) (*GetJssdkTicketResp, *Response, error) mockLingoGetLingoClassificationList func(ctx context.Context, request *GetLingoClassificationListReq, options ...MethodOptionFunc) (*GetLingoClassificationListResp, *Response, error) mockLingoCreateLingoDraft func(ctx context.Context, request *CreateLingoDraftReq, options ...MethodOptionFunc) (*CreateLingoDraftResp, *Response, error) From 375795a771c2c31a0e061b910e50d50aa3ae9911 Mon Sep 17 00:00:00 2001 From: chyroc Date: Sun, 1 Mar 2026 09:19:36 +0800 Subject: [PATCH 03/12] fix: remove duplicate BatchUpdateIMURLPreview API file --- api_im_url_preview_batch_update.go | 77 ------------------------------ mock.go | 1 - 2 files changed, 78 deletions(-) delete mode 100644 api_im_url_preview_batch_update.go diff --git a/api_im_url_preview_batch_update.go b/api_im_url_preview_batch_update.go deleted file mode 100644 index 46bd7a08..00000000 --- a/api_im_url_preview_batch_update.go +++ /dev/null @@ -1,77 +0,0 @@ -// Code generated by lark_sdk_gen. DO NOT EDIT. -/** - * Copyright 2022 chyroc - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package lark - -import ( - "context" -) - -// BatchUpdateIMURLPreview 该接口用于主动更新 [URL 预览](https://open.feishu.cn/document/uAjLw4CM/ukzMukzMukzM/development-link-preview/link-preview-development-guide), 调用后会重新触发一次客户端拉取, 需要回调服务返回更新后的数据。 -// -// 注意: 更新链接预览时需要注意更新频率, 如果更新时不指定用户, 则可能会造成链接预览请求放大。例如, 群聊中的链接预览, 所有群成员均会尝试重新拉取预览请求。 -// -// doc: https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/group/im-v2/url_preview/batch_update -// new doc: https://open.feishu.cn/document/im-v1/url_preview/batch_update -func (r *IMService) BatchUpdateIMURLPreview(ctx context.Context, request *BatchUpdateIMURLPreviewReq, options ...MethodOptionFunc) (*BatchUpdateIMURLPreviewResp, *Response, error) { - if r.cli.mock.mockIMBatchUpdateIMURLPreview != nil { - r.cli.Log(ctx, LogLevelDebug, "[lark] IM#BatchUpdateIMURLPreview mock enable") - return r.cli.mock.mockIMBatchUpdateIMURLPreview(ctx, request, options...) - } - - req := &RawRequestReq{ - Scope: "IM", - API: "BatchUpdateIMURLPreview", - Method: "POST", - URL: r.cli.openBaseURL + "/open-apis/im/v2/url_previews/batch_update", - Body: request, - MethodOption: newMethodOption(options), - NeedTenantAccessToken: true, - } - resp := new(batchUpdateIMURLPreviewResp) - - response, err := r.cli.RawRequest(ctx, req, resp) - return resp.Data, response, err -} - -// MockIMBatchUpdateIMURLPreview mock IMBatchUpdateIMURLPreview method -func (r *Mock) MockIMBatchUpdateIMURLPreview(f func(ctx context.Context, request *BatchUpdateIMURLPreviewReq, options ...MethodOptionFunc) (*BatchUpdateIMURLPreviewResp, *Response, error)) { - r.mockIMBatchUpdateIMURLPreview = f -} - -// UnMockIMBatchUpdateIMURLPreview un-mock IMBatchUpdateIMURLPreview method -func (r *Mock) UnMockIMBatchUpdateIMURLPreview() { - r.mockIMBatchUpdateIMURLPreview = nil -} - -// BatchUpdateIMURLPreviewReq ... -type BatchUpdateIMURLPreviewReq struct { - PreviewTokens []string `json:"preview_tokens,omitempty"` // URL 预览的 preview_tokens 列表。需要通过[拉取链接预览数据](https://open.feishu.cn/document/uAjLw4CM/ukzMukzMukzM/development-link-preview/pull-link-preview-data-callback-structure)回调获取 preview_tokens。注意: 单个 token 限制更新频率为 1次/5秒。示例值: ["952te0c8-9ccf-463d-ad73-593f8f768a5c"] 长度范围: `1` ~ `10` - OpenIDs *string `json:"open_ids,omitempty"` // 需要更新 URL 预览的用户 open_id。若不传, 则默认更新 URL 预览所在会话的所有成员;若用户不在 URL 所在会话, 则无法触发更新该用户对应的 URL 预览结果。获取方式参见[如何获取 Open ID](https://open.feishu.cn/document/uAjLw4CM/ugTN1YjL4UTN24CO1UjN/trouble-shooting/how-to-obtain-openid)。示例值: ["ou_xxx"] 长度范围: `0` ~ `100` -} - -// BatchUpdateIMURLPreviewResp ... -type BatchUpdateIMURLPreviewResp struct { -} - -// batchUpdateIMURLPreviewResp ... -type batchUpdateIMURLPreviewResp struct { - Code int64 `json:"code,omitempty"` // 错误码, 非 0 表示失败 - Msg string `json:"msg,omitempty"` // 错误描述 - Data *BatchUpdateIMURLPreviewResp `json:"data,omitempty"` - Error *ErrorDetail `json:"error,omitempty"` -} diff --git a/mock.go b/mock.go index d165ecf1..b96f1c3d 100644 --- a/mock.go +++ b/mock.go @@ -830,7 +830,6 @@ type Mock struct { mockHumanAuthGetFaceVerifyAuthResult func(ctx context.Context, request *GetFaceVerifyAuthResultReq, options ...MethodOptionFunc) (*GetFaceVerifyAuthResultResp, *Response, error) mockHumanAuthUploadFaceVerifyImage func(ctx context.Context, request *UploadFaceVerifyImageReq, options ...MethodOptionFunc) (*UploadFaceVerifyImageResp, *Response, error) mockHumanAuthCreateIdentity func(ctx context.Context, request *CreateIdentityReq, options ...MethodOptionFunc) (*CreateIdentityResp, *Response, error) - mockIMBatchUpdateIMURLPreview func(ctx context.Context, request *BatchUpdateIMURLPreviewReq, options ...MethodOptionFunc) (*BatchUpdateIMURLPreviewResp, *Response, error) mockJssdkGetJssdkTicket func(ctx context.Context, request *GetJssdkTicketReq, options ...MethodOptionFunc) (*GetJssdkTicketResp, *Response, error) mockLingoGetLingoClassificationList func(ctx context.Context, request *GetLingoClassificationListReq, options ...MethodOptionFunc) (*GetLingoClassificationListResp, *Response, error) mockLingoCreateLingoDraft func(ctx context.Context, request *CreateLingoDraftReq, options ...MethodOptionFunc) (*CreateLingoDraftResp, *Response, error) From 14c3a6c7fb001ffcc74ef02d98161f191e889bf1 Mon Sep 17 00:00:00 2001 From: chyroc Date: Sun, 1 Mar 2026 10:30:37 +0800 Subject: [PATCH 04/12] feat: align GetCcmSheetDefaultImportResult scope to Drive --- api_ccm_sheet_default_import_result.go | 35 ++++++++++++++++++++------ mock.go | 2 +- 2 files changed, 29 insertions(+), 8 deletions(-) diff --git a/api_ccm_sheet_default_import_result.go b/api_ccm_sheet_default_import_result.go index 93de63e6..9f4704a5 100644 --- a/api_ccm_sheet_default_import_result.go +++ b/api_ccm_sheet_default_import_result.go @@ -27,14 +27,14 @@ import ( // new doc: https://open.feishu.cn/document/server-docs/historic-version/docs/sheets/sheet-operation/query-import-results // // Deprecated -func (r *CcmSheetService) GetCcmSheetDefaultImportResult(ctx context.Context, request *GetCcmSheetDefaultImportResultReq, options ...MethodOptionFunc) (*GetCcmSheetDefaultImportResultResp, *Response, error) { - if r.cli.mock.mockCcmSheetGetCcmSheetDefaultImportResult != nil { - r.cli.Log(ctx, LogLevelDebug, "[lark] CcmSheet#GetCcmSheetDefaultImportResult mock enable") - return r.cli.mock.mockCcmSheetGetCcmSheetDefaultImportResult(ctx, request, options...) +func (r *DriveService) GetCcmSheetDefaultImportResult(ctx context.Context, request *GetCcmSheetDefaultImportResultReq, options ...MethodOptionFunc) (*GetCcmSheetDefaultImportResultResp, *Response, error) { + if r.cli.mock.mockDriveGetCcmSheetDefaultImportResult != nil { + r.cli.Log(ctx, LogLevelDebug, "[lark] Drive#GetCcmSheetDefaultImportResult mock enable") + return r.cli.mock.mockDriveGetCcmSheetDefaultImportResult(ctx, request, options...) } req := &RawRequestReq{ - Scope: "CcmSheet", + Scope: "Drive", API: "GetCcmSheetDefaultImportResult", Method: "GET", URL: r.cli.openBaseURL + "/open-apis/sheets/v2/import/result", @@ -49,14 +49,35 @@ func (r *CcmSheetService) GetCcmSheetDefaultImportResult(ctx context.Context, re return resp.Data, response, err } +// MockDriveGetCcmSheetDefaultImportResult mock DriveGetCcmSheetDefaultImportResult method +func (r *Mock) MockDriveGetCcmSheetDefaultImportResult(f func(ctx context.Context, request *GetCcmSheetDefaultImportResultReq, options ...MethodOptionFunc) (*GetCcmSheetDefaultImportResultResp, *Response, error)) { + r.mockDriveGetCcmSheetDefaultImportResult = f +} + +// UnMockDriveGetCcmSheetDefaultImportResult un-mock DriveGetCcmSheetDefaultImportResult method +func (r *Mock) UnMockDriveGetCcmSheetDefaultImportResult() { + r.mockDriveGetCcmSheetDefaultImportResult = nil +} + +// GetCcmSheetDefaultImportResult 该接口用于查询文件导入结果。查询30分钟无结果为导入失败。 +// +// Deprecated: use DriveService.GetCcmSheetDefaultImportResult. +func (r *CcmSheetService) GetCcmSheetDefaultImportResult(ctx context.Context, request *GetCcmSheetDefaultImportResultReq, options ...MethodOptionFunc) (*GetCcmSheetDefaultImportResultResp, *Response, error) { + return r.cli.Drive.GetCcmSheetDefaultImportResult(ctx, request, options...) +} + // MockCcmSheetGetCcmSheetDefaultImportResult mock CcmSheetGetCcmSheetDefaultImportResult method +// +// Deprecated: use MockDriveGetCcmSheetDefaultImportResult. func (r *Mock) MockCcmSheetGetCcmSheetDefaultImportResult(f func(ctx context.Context, request *GetCcmSheetDefaultImportResultReq, options ...MethodOptionFunc) (*GetCcmSheetDefaultImportResultResp, *Response, error)) { - r.mockCcmSheetGetCcmSheetDefaultImportResult = f + r.MockDriveGetCcmSheetDefaultImportResult(f) } // UnMockCcmSheetGetCcmSheetDefaultImportResult un-mock CcmSheetGetCcmSheetDefaultImportResult method +// +// Deprecated: use UnMockDriveGetCcmSheetDefaultImportResult. func (r *Mock) UnMockCcmSheetGetCcmSheetDefaultImportResult() { - r.mockCcmSheetGetCcmSheetDefaultImportResult = nil + r.UnMockDriveGetCcmSheetDefaultImportResult() } // GetCcmSheetDefaultImportResultReq ... diff --git a/mock.go b/mock.go index b96f1c3d..9d41e511 100644 --- a/mock.go +++ b/mock.go @@ -287,7 +287,7 @@ type Mock struct { mockCalendarBatchGetCalendarMeetingRoomFreebusy func(ctx context.Context, request *BatchGetCalendarMeetingRoomFreebusyReq, options ...MethodOptionFunc) (*BatchGetCalendarMeetingRoomFreebusyResp, *Response, error) mockCalendarReplyCalendarMeetingRoomInstance func(ctx context.Context, request *ReplyCalendarMeetingRoomInstanceReq, options ...MethodOptionFunc) (*ReplyCalendarMeetingRoomInstanceResp, *Response, error) mockCalendarBatchGetCalendarMeetingRoomSummary func(ctx context.Context, request *BatchGetCalendarMeetingRoomSummaryReq, options ...MethodOptionFunc) (*BatchGetCalendarMeetingRoomSummaryResp, *Response, error) - mockCcmSheetGetCcmSheetDefaultImportResult func(ctx context.Context, request *GetCcmSheetDefaultImportResultReq, options ...MethodOptionFunc) (*GetCcmSheetDefaultImportResultResp, *Response, error) + mockDriveGetCcmSheetDefaultImportResult func(ctx context.Context, request *GetCcmSheetDefaultImportResultReq, options ...MethodOptionFunc) (*GetCcmSheetDefaultImportResultResp, *Response, error) mockChatGetChatAnnouncement func(ctx context.Context, request *GetChatAnnouncementReq, options ...MethodOptionFunc) (*GetChatAnnouncementResp, *Response, error) mockChatUpdateChatAnnouncement func(ctx context.Context, request *UpdateChatAnnouncementReq, options ...MethodOptionFunc) (*UpdateChatAnnouncementResp, *Response, error) mockChatCreateChat func(ctx context.Context, request *CreateChatReq, options ...MethodOptionFunc) (*CreateChatResp, *Response, error) From df6b48b4d6585c8394bacae36751f8bd0a8a8aad Mon Sep 17 00:00:00 2001 From: chyroc Date: Sun, 1 Mar 2026 10:32:44 +0800 Subject: [PATCH 05/12] refactor: remove CcmSheet service after scope migration to Drive --- api_ccm_sheet_default_import_result.go | 21 --------------------- impl.go | 3 --- 2 files changed, 24 deletions(-) diff --git a/api_ccm_sheet_default_import_result.go b/api_ccm_sheet_default_import_result.go index 9f4704a5..439fc804 100644 --- a/api_ccm_sheet_default_import_result.go +++ b/api_ccm_sheet_default_import_result.go @@ -59,27 +59,6 @@ func (r *Mock) UnMockDriveGetCcmSheetDefaultImportResult() { r.mockDriveGetCcmSheetDefaultImportResult = nil } -// GetCcmSheetDefaultImportResult 该接口用于查询文件导入结果。查询30分钟无结果为导入失败。 -// -// Deprecated: use DriveService.GetCcmSheetDefaultImportResult. -func (r *CcmSheetService) GetCcmSheetDefaultImportResult(ctx context.Context, request *GetCcmSheetDefaultImportResultReq, options ...MethodOptionFunc) (*GetCcmSheetDefaultImportResultResp, *Response, error) { - return r.cli.Drive.GetCcmSheetDefaultImportResult(ctx, request, options...) -} - -// MockCcmSheetGetCcmSheetDefaultImportResult mock CcmSheetGetCcmSheetDefaultImportResult method -// -// Deprecated: use MockDriveGetCcmSheetDefaultImportResult. -func (r *Mock) MockCcmSheetGetCcmSheetDefaultImportResult(f func(ctx context.Context, request *GetCcmSheetDefaultImportResultReq, options ...MethodOptionFunc) (*GetCcmSheetDefaultImportResultResp, *Response, error)) { - r.MockDriveGetCcmSheetDefaultImportResult(f) -} - -// UnMockCcmSheetGetCcmSheetDefaultImportResult un-mock CcmSheetGetCcmSheetDefaultImportResult method -// -// Deprecated: use UnMockDriveGetCcmSheetDefaultImportResult. -func (r *Mock) UnMockCcmSheetGetCcmSheetDefaultImportResult() { - r.UnMockDriveGetCcmSheetDefaultImportResult() -} - // GetCcmSheetDefaultImportResultReq ... type GetCcmSheetDefaultImportResultReq struct { Ticket string `query:"ticket" json:"-"` // 导入时获取的凭证 diff --git a/impl.go b/impl.go index 0b9154d5..e8a403f0 100644 --- a/impl.go +++ b/impl.go @@ -65,7 +65,6 @@ type Lark struct { Bitable *BitableService Bot *BotService Calendar *CalendarService - CcmSheet *CcmSheetService Chat *ChatService Contact *ContactService CoreHR *CoreHRService @@ -126,7 +125,6 @@ func (r *Lark) init() { r.Bitable = &BitableService{cli: r} r.Bot = &BotService{cli: r} r.Calendar = &CalendarService{cli: r} - r.CcmSheet = &CcmSheetService{cli: r} r.Chat = &ChatService{cli: r} r.Contact = &ContactService{cli: r} r.CoreHR = &CoreHRService{cli: r} @@ -205,7 +203,6 @@ type ( BitableService struct{ cli *Lark } BotService struct{ cli *Lark } CalendarService struct{ cli *Lark } - CcmSheetService struct{ cli *Lark } ChatService struct{ cli *Lark } ContactService struct{ cli *Lark } CoreHRService struct{ cli *Lark } From 792386fbd3090775893e23e99d06bf269b7609fa Mon Sep 17 00:00:00 2001 From: chyroc Date: Sun, 1 Mar 2026 10:44:42 +0800 Subject: [PATCH 06/12] feat: rename import-result api to GetDriveSheetDefaultImportResult --- api_ccm_sheet_default_import_result.go | 79 ------------------------ api_drive_sheet_default_import_result.go | 79 ++++++++++++++++++++++++ mock.go | 2 +- 3 files changed, 80 insertions(+), 80 deletions(-) delete mode 100644 api_ccm_sheet_default_import_result.go create mode 100644 api_drive_sheet_default_import_result.go diff --git a/api_ccm_sheet_default_import_result.go b/api_ccm_sheet_default_import_result.go deleted file mode 100644 index 439fc804..00000000 --- a/api_ccm_sheet_default_import_result.go +++ /dev/null @@ -1,79 +0,0 @@ -// Code generated by lark_sdk_gen. DO NOT EDIT. -/** - * Copyright 2022 chyroc - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package lark - -import ( - "context" -) - -// GetCcmSheetDefaultImportResult 该接口用于查询文件导入结果。查询30分钟无结果为导入失败。 -// -// doc: https://open.feishu.cn/document/ukTMukTMukTM/uETO2YjLxkjN24SM5YjN -// new doc: https://open.feishu.cn/document/server-docs/historic-version/docs/sheets/sheet-operation/query-import-results -// -// Deprecated -func (r *DriveService) GetCcmSheetDefaultImportResult(ctx context.Context, request *GetCcmSheetDefaultImportResultReq, options ...MethodOptionFunc) (*GetCcmSheetDefaultImportResultResp, *Response, error) { - if r.cli.mock.mockDriveGetCcmSheetDefaultImportResult != nil { - r.cli.Log(ctx, LogLevelDebug, "[lark] Drive#GetCcmSheetDefaultImportResult mock enable") - return r.cli.mock.mockDriveGetCcmSheetDefaultImportResult(ctx, request, options...) - } - - req := &RawRequestReq{ - Scope: "Drive", - API: "GetCcmSheetDefaultImportResult", - Method: "GET", - URL: r.cli.openBaseURL + "/open-apis/sheets/v2/import/result", - Body: request, - MethodOption: newMethodOption(options), - NeedTenantAccessToken: true, - NeedUserAccessToken: true, - } - resp := new(getCcmSheetDefaultImportResultResp) - - response, err := r.cli.RawRequest(ctx, req, resp) - return resp.Data, response, err -} - -// MockDriveGetCcmSheetDefaultImportResult mock DriveGetCcmSheetDefaultImportResult method -func (r *Mock) MockDriveGetCcmSheetDefaultImportResult(f func(ctx context.Context, request *GetCcmSheetDefaultImportResultReq, options ...MethodOptionFunc) (*GetCcmSheetDefaultImportResultResp, *Response, error)) { - r.mockDriveGetCcmSheetDefaultImportResult = f -} - -// UnMockDriveGetCcmSheetDefaultImportResult un-mock DriveGetCcmSheetDefaultImportResult method -func (r *Mock) UnMockDriveGetCcmSheetDefaultImportResult() { - r.mockDriveGetCcmSheetDefaultImportResult = nil -} - -// GetCcmSheetDefaultImportResultReq ... -type GetCcmSheetDefaultImportResultReq struct { - Ticket string `query:"ticket" json:"-"` // 导入时获取的凭证 -} - -// GetCcmSheetDefaultImportResultResp ... -type GetCcmSheetDefaultImportResultResp struct { - Ticket string `json:"ticket,omitempty"` // 导入时获取的凭证 - URL string `json:"url,omitempty"` // 导入文档的链接 - WarningCode int64 `json:"warningCode,omitempty"` // 导入的文档的状态码 -} - -// getCcmSheetDefaultImportResultResp ... -type getCcmSheetDefaultImportResultResp struct { - Code int64 `json:"code,omitempty"` - Msg string `json:"msg,omitempty"` - Data *GetCcmSheetDefaultImportResultResp `json:"data,omitempty"` -} diff --git a/api_drive_sheet_default_import_result.go b/api_drive_sheet_default_import_result.go new file mode 100644 index 00000000..a7254f65 --- /dev/null +++ b/api_drive_sheet_default_import_result.go @@ -0,0 +1,79 @@ +// Code generated by lark_sdk_gen. DO NOT EDIT. +/** + * Copyright 2022 chyroc + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package lark + +import ( + "context" +) + +// GetDriveSheetDefaultImportResult 该接口用于查询文件导入结果。查询30分钟无结果为导入失败。 +// +// doc: https://open.feishu.cn/document/ukTMukTMukTM/uETO2YjLxkjN24SM5YjN +// new doc: https://open.feishu.cn/document/server-docs/historic-version/docs/sheets/sheet-operation/query-import-results +// +// Deprecated +func (r *DriveService) GetDriveSheetDefaultImportResult(ctx context.Context, request *GetDriveSheetDefaultImportResultReq, options ...MethodOptionFunc) (*GetDriveSheetDefaultImportResultResp, *Response, error) { + if r.cli.mock.mockDriveGetDriveSheetDefaultImportResult != nil { + r.cli.Log(ctx, LogLevelDebug, "[lark] Drive#GetDriveSheetDefaultImportResult mock enable") + return r.cli.mock.mockDriveGetDriveSheetDefaultImportResult(ctx, request, options...) + } + + req := &RawRequestReq{ + Scope: "Drive", + API: "GetDriveSheetDefaultImportResult", + Method: "GET", + URL: r.cli.openBaseURL + "/open-apis/sheets/v2/import/result", + Body: request, + MethodOption: newMethodOption(options), + NeedTenantAccessToken: true, + NeedUserAccessToken: true, + } + resp := new(getDriveSheetDefaultImportResultResp) + + response, err := r.cli.RawRequest(ctx, req, resp) + return resp.Data, response, err +} + +// MockDriveGetDriveSheetDefaultImportResult mock DriveGetDriveSheetDefaultImportResult method +func (r *Mock) MockDriveGetDriveSheetDefaultImportResult(f func(ctx context.Context, request *GetDriveSheetDefaultImportResultReq, options ...MethodOptionFunc) (*GetDriveSheetDefaultImportResultResp, *Response, error)) { + r.mockDriveGetDriveSheetDefaultImportResult = f +} + +// UnMockDriveGetDriveSheetDefaultImportResult un-mock DriveGetDriveSheetDefaultImportResult method +func (r *Mock) UnMockDriveGetDriveSheetDefaultImportResult() { + r.mockDriveGetDriveSheetDefaultImportResult = nil +} + +// GetDriveSheetDefaultImportResultReq ... +type GetDriveSheetDefaultImportResultReq struct { + Ticket string `query:"ticket" json:"-"` // 导入时获取的凭证 +} + +// GetDriveSheetDefaultImportResultResp ... +type GetDriveSheetDefaultImportResultResp struct { + Ticket string `json:"ticket,omitempty"` // 导入时获取的凭证 + URL string `json:"url,omitempty"` // 导入文档的链接 + WarningCode int64 `json:"warningCode,omitempty"` // 导入的文档的状态码 +} + +// getDriveSheetDefaultImportResultResp ... +type getDriveSheetDefaultImportResultResp struct { + Code int64 `json:"code,omitempty"` + Msg string `json:"msg,omitempty"` + Data *GetDriveSheetDefaultImportResultResp `json:"data,omitempty"` +} diff --git a/mock.go b/mock.go index 9d41e511..60dfad96 100644 --- a/mock.go +++ b/mock.go @@ -287,7 +287,7 @@ type Mock struct { mockCalendarBatchGetCalendarMeetingRoomFreebusy func(ctx context.Context, request *BatchGetCalendarMeetingRoomFreebusyReq, options ...MethodOptionFunc) (*BatchGetCalendarMeetingRoomFreebusyResp, *Response, error) mockCalendarReplyCalendarMeetingRoomInstance func(ctx context.Context, request *ReplyCalendarMeetingRoomInstanceReq, options ...MethodOptionFunc) (*ReplyCalendarMeetingRoomInstanceResp, *Response, error) mockCalendarBatchGetCalendarMeetingRoomSummary func(ctx context.Context, request *BatchGetCalendarMeetingRoomSummaryReq, options ...MethodOptionFunc) (*BatchGetCalendarMeetingRoomSummaryResp, *Response, error) - mockDriveGetCcmSheetDefaultImportResult func(ctx context.Context, request *GetCcmSheetDefaultImportResultReq, options ...MethodOptionFunc) (*GetCcmSheetDefaultImportResultResp, *Response, error) + mockDriveGetDriveSheetDefaultImportResult func(ctx context.Context, request *GetDriveSheetDefaultImportResultReq, options ...MethodOptionFunc) (*GetDriveSheetDefaultImportResultResp, *Response, error) mockChatGetChatAnnouncement func(ctx context.Context, request *GetChatAnnouncementReq, options ...MethodOptionFunc) (*GetChatAnnouncementResp, *Response, error) mockChatUpdateChatAnnouncement func(ctx context.Context, request *UpdateChatAnnouncementReq, options ...MethodOptionFunc) (*UpdateChatAnnouncementResp, *Response, error) mockChatCreateChat func(ctx context.Context, request *CreateChatReq, options ...MethodOptionFunc) (*CreateChatResp, *Response, error) From 9aaf5c31f7d5d5f351af858734ae5f5dd41a1b23 Mon Sep 17 00:00:00 2001 From: chyroc Date: Sun, 1 Mar 2026 10:58:36 +0800 Subject: [PATCH 07/12] chore: refresh message url preview api from latest schema --- api_url_preview_batch_update.go | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/api_url_preview_batch_update.go b/api_url_preview_batch_update.go index fca1f822..19b3c7a8 100644 --- a/api_url_preview_batch_update.go +++ b/api_url_preview_batch_update.go @@ -21,9 +21,12 @@ import ( "context" ) -// BatchUpdateURLPreview 主动更新 URL 预览, 调用后会重新触发一次客户端拉取, 需要回调服务返回更新后的数据。 +// BatchUpdateURLPreview 该接口用于主动更新 [URL 预览](https://open.feishu.cn/document/uAjLw4CM/ukzMukzMukzM/development-link-preview/link-preview-development-guide), 调用后会重新触发一次客户端拉取, 需要回调服务返回更新后的数据。 // -// doc: https://open.larkoffice.com/document/uAjLw4CM/ukTMukTMukTM/group/im-v2/url_preview/batch_update +// 注意: 更新链接预览时需要注意更新频率, 如果更新时不指定用户, 则可能会造成链接预览请求放大。例如, 群聊中的链接预览, 所有群成员均会尝试重新拉取预览请求。 +// +// doc: https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/group/im-v2/url_preview/batch_update +// new doc: https://open.feishu.cn/document/im-v1/url_preview/batch_update func (r *MessageService) BatchUpdateURLPreview(ctx context.Context, request *BatchUpdateURLPreviewReq, options ...MethodOptionFunc) (*BatchUpdateURLPreviewResp, *Response, error) { if r.cli.mock.mockMessageBatchUpdateURLPreview != nil { r.cli.Log(ctx, LogLevelDebug, "[lark] Message#BatchUpdateURLPreview mock enable") @@ -57,12 +60,13 @@ func (r *Mock) UnMockMessageBatchUpdateURLPreview() { // BatchUpdateURLPreviewReq ... type BatchUpdateURLPreviewReq struct { - PreviewTokens []string `json:"preview_tokens,omitempty"` // URL 预览的 token 列表。单个 token 限制更新频率为 1次/5秒, 示例值: ["952te0c8-9ccf-463d-ad73-593f8f768a5c"], 长度范围: `1` ~ `10` - OpenIDs *string `json:"open_ids,omitempty"` // 需要更新 URL 预览的用户 open_id。若不传, 则默认更新 URL 预览所在会话的所有成员;若用户不在 URL 所在会话, 则无法触发更新该用户对应的 URL 预览结果, 示例值: ["ou_xxx"], 长度范围: `0` ~ `100` + PreviewTokens []string `json:"preview_tokens,omitempty"` // URL 预览的 preview_tokens 列表。需要通过[拉取链接预览数据](https://open.feishu.cn/document/uAjLw4CM/ukzMukzMukzM/development-link-preview/pull-link-preview-data-callback-structure)回调获取 preview_tokens。注意: 单个 token 限制更新频率为 1次/5秒。示例值: ["952te0c8-9ccf-463d-ad73-593f8f768a5c"] 长度范围: `1` ~ `10` + OpenIDs *string `json:"open_ids,omitempty"` // 需要更新 URL 预览的用户 open_id。若不传, 则默认更新 URL 预览所在会话的所有成员;若用户不在 URL 所在会话, 则无法触发更新该用户对应的 URL 预览结果。获取方式参见[如何获取 Open ID](https://open.feishu.cn/document/uAjLw4CM/ugTN1YjL4UTN24CO1UjN/trouble-shooting/how-to-obtain-openid)。示例值: ["ou_xxx"] 长度范围: `0` ~ `100` } // BatchUpdateURLPreviewResp ... -type BatchUpdateURLPreviewResp struct{} +type BatchUpdateURLPreviewResp struct { +} // batchUpdateURLPreviewResp ... type batchUpdateURLPreviewResp struct { From 7cd6d727a318ac26e73a4b4afb2e4d9eacee5e05 Mon Sep 17 00:00:00 2001 From: chyroc Date: Sun, 1 Mar 2026 11:22:51 +0800 Subject: [PATCH 08/12] fix: remove IM service from impl for Message compatibility --- impl.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/impl.go b/impl.go index e8a403f0..b151a1d7 100644 --- a/impl.go +++ b/impl.go @@ -76,7 +76,6 @@ type Lark struct { Helpdesk *HelpdeskService Hire *HireService HumanAuth *HumanAuthService - IM *IMService Jssdk *JssdkService Lingo *LingoService MDM *MDMService @@ -136,7 +135,6 @@ func (r *Lark) init() { r.Helpdesk = &HelpdeskService{cli: r} r.Hire = &HireService{cli: r} r.HumanAuth = &HumanAuthService{cli: r} - r.IM = &IMService{cli: r} r.Jssdk = &JssdkService{cli: r} r.Lingo = &LingoService{cli: r} r.MDM = &MDMService{cli: r} @@ -214,7 +212,6 @@ type ( HelpdeskService struct{ cli *Lark } HireService struct{ cli *Lark } HumanAuthService struct{ cli *Lark } - IMService struct{ cli *Lark } JssdkService struct{ cli *Lark } LingoService struct{ cli *Lark } MDMService struct{ cli *Lark } From aa08f7ff2053ca9f87edeb4a7bbffd756fc4be9c Mon Sep 17 00:00:00 2001 From: chyroc Date: Sun, 1 Mar 2026 11:49:31 +0800 Subject: [PATCH 09/12] feat: regenerate mdm bind/unbind api naming --- api_mdm_user_auth_data_relation_bind.go | 75 +++++++---------------- api_mdm_user_auth_data_relation_unbind.go | 75 +++++++---------------- mock.go | 4 +- 3 files changed, 48 insertions(+), 106 deletions(-) diff --git a/api_mdm_user_auth_data_relation_bind.go b/api_mdm_user_auth_data_relation_bind.go index 4a5bc420..40e7df44 100644 --- a/api_mdm_user_auth_data_relation_bind.go +++ b/api_mdm_user_auth_data_relation_bind.go @@ -21,43 +21,43 @@ import ( "context" ) -// CreateMDMUserAuthDataRelationBind 通过该接口, 可为指定应用下的用户绑定一类数据维度, 支持批量给多个用户同时增量授权。 +// BindMDMUserAuthDataRelation 通过该接口, 可为指定应用下的用户绑定一类数据维度, 支持批量给多个用户同时增量授权。 // // doc: https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/mdm-v1/user_auth_data_relation/bind // new doc: https://open.feishu.cn/document/server-docs/mdm-v1/user_auth_data_relation/bind -func (r *MDMService) CreateMDMUserAuthDataRelationBind(ctx context.Context, request *CreateMDMUserAuthDataRelationBindReq, options ...MethodOptionFunc) (*CreateMDMUserAuthDataRelationBindResp, *Response, error) { - if r.cli.mock.mockMDMCreateMDMUserAuthDataRelationBind != nil { - r.cli.Log(ctx, LogLevelDebug, "[lark] MDM#CreateMDMUserAuthDataRelationBind mock enable") - return r.cli.mock.mockMDMCreateMDMUserAuthDataRelationBind(ctx, request, options...) +func (r *MDMService) BindMDMUserAuthDataRelation(ctx context.Context, request *BindMDMUserAuthDataRelationReq, options ...MethodOptionFunc) (*BindMDMUserAuthDataRelationResp, *Response, error) { + if r.cli.mock.mockMDMBindMDMUserAuthDataRelation != nil { + r.cli.Log(ctx, LogLevelDebug, "[lark] MDM#BindMDMUserAuthDataRelation mock enable") + return r.cli.mock.mockMDMBindMDMUserAuthDataRelation(ctx, request, options...) } req := &RawRequestReq{ Scope: "MDM", - API: "CreateMDMUserAuthDataRelationBind", + API: "BindMDMUserAuthDataRelation", Method: "POST", URL: r.cli.openBaseURL + "/open-apis/mdm/v1/user_auth_data_relations/bind", Body: request, MethodOption: newMethodOption(options), NeedTenantAccessToken: true, } - resp := new(createMDMUserAuthDataRelationBindResp) + resp := new(bindMDMUserAuthDataRelationResp) response, err := r.cli.RawRequest(ctx, req, resp) return resp.Data, response, err } -// MockMDMCreateMDMUserAuthDataRelationBind mock MDMCreateMDMUserAuthDataRelationBind method -func (r *Mock) MockMDMCreateMDMUserAuthDataRelationBind(f func(ctx context.Context, request *CreateMDMUserAuthDataRelationBindReq, options ...MethodOptionFunc) (*CreateMDMUserAuthDataRelationBindResp, *Response, error)) { - r.mockMDMCreateMDMUserAuthDataRelationBind = f +// MockMDMBindMDMUserAuthDataRelation mock MDMBindMDMUserAuthDataRelation method +func (r *Mock) MockMDMBindMDMUserAuthDataRelation(f func(ctx context.Context, request *BindMDMUserAuthDataRelationReq, options ...MethodOptionFunc) (*BindMDMUserAuthDataRelationResp, *Response, error)) { + r.mockMDMBindMDMUserAuthDataRelation = f } -// UnMockMDMCreateMDMUserAuthDataRelationBind un-mock MDMCreateMDMUserAuthDataRelationBind method -func (r *Mock) UnMockMDMCreateMDMUserAuthDataRelationBind() { - r.mockMDMCreateMDMUserAuthDataRelationBind = nil +// UnMockMDMBindMDMUserAuthDataRelation un-mock MDMBindMDMUserAuthDataRelation method +func (r *Mock) UnMockMDMBindMDMUserAuthDataRelation() { + r.mockMDMBindMDMUserAuthDataRelation = nil } -// CreateMDMUserAuthDataRelationBindReq ... -type CreateMDMUserAuthDataRelationBindReq struct { +// BindMDMUserAuthDataRelationReq ... +type BindMDMUserAuthDataRelationReq struct { UserIDType *IDType `query:"user_id_type" json:"-"` // 用户 ID 类型示例值: open_id可选值有: 标识一个用户在某个应用中的身份。同一个用户在不同应用中的 Open ID 不同。[了解更多: 如何获取 Open ID](https://open.feishu.cn/document/uAjLw4CM/ugTN1YjL4UTN24CO1UjN/trouble-shooting/how-to-obtain-openid)标识一个用户在某个应用开发商下的身份。同一用户在同一开发商下的应用中的 Union ID 是相同的, 在不同开发商下的应用中的 Union ID 是不同的。通过 Union ID, 应用开发商可以把同个用户在多个应用中的身份关联起来。[了解更多: 如何获取 Union ID?](https://open.feishu.cn/document/uAjLw4CM/ugTN1YjL4UTN24CO1UjN/trouble-shooting/how-to-obtain-union-id)标识一个用户在某个租户内的身份。同一个用户在租户 A 和租户 B 内的 User ID 是不同的。在同一个租户内, 一个用户的 User ID 在所有应用(包括商店应用)中都保持一致。User ID 主要用于在不同的应用间打通用户数据。[了解更多: 如何获取 User ID?](https://open.feishu.cn/document/uAjLw4CM/ugTN1YjL4UTN24CO1UjN/trouble-shooting/how-to-obtain-user-id)默认值: `open_id`当值为 `user_id`, 字段权限要求: 获取用户 user ID RootDimensionType string `json:"root_dimension_type,omitempty"` // 数据类型编码示例值: "gongsi" 长度范围: `1` ~ `200` 字符 SubDimensionTypes []string `json:"sub_dimension_types,omitempty"` // 数据编码列表示例值: ["code_dimension"] 长度范围: `1` ~ `200` @@ -65,42 +65,13 @@ type CreateMDMUserAuthDataRelationBindReq struct { UamsAppID string `json:"uams_app_id,omitempty"` // uams系统中应用id示例值: "uams-tenant-test" 长度范围: `1` ~ `200` 字符 } -// CreateMDMUserAuthDataRelationBindResp ... -type CreateMDMUserAuthDataRelationBindResp struct{} +// BindMDMUserAuthDataRelationResp ... +type BindMDMUserAuthDataRelationResp struct{} -// createMDMUserAuthDataRelationBindResp ... -type createMDMUserAuthDataRelationBindResp struct { - Code int64 `json:"code,omitempty"` // 错误码, 非 0 表示失败 - Msg string `json:"msg,omitempty"` // 错误描述 - Data *CreateMDMUserAuthDataRelationBindResp `json:"data,omitempty"` - Error *ErrorDetail `json:"error,omitempty"` -} - -// Deprecated: use BindMDMUserAuthDataRelation. -type BindMDMUserAuthDataRelationReq = CreateMDMUserAuthDataRelationBindReq - -// Deprecated: use CreateMDMUserAuthDataRelationBindResp. -type BindMDMUserAuthDataRelationResp = CreateMDMUserAuthDataRelationBindResp - -// BindMDMUserAuthDataRelation 通过该接口, 可为指定应用下的用户绑定一类数据维度, 支持批量给多个用户同时增量授权。 -// -// Deprecated: use CreateMDMUserAuthDataRelationBind. -func (r *MDMService) BindMDMUserAuthDataRelation(ctx context.Context, request *BindMDMUserAuthDataRelationReq, options ...MethodOptionFunc) (*BindMDMUserAuthDataRelationResp, *Response, error) { - return r.CreateMDMUserAuthDataRelationBind(ctx, request, options...) -} - -// MockMDMBindMDMUserAuthDataRelation mock MDMBindMDMUserAuthDataRelation method -// -// Deprecated: use MockMDMCreateMDMUserAuthDataRelationBind. -func (r *Mock) MockMDMBindMDMUserAuthDataRelation(f func(ctx context.Context, request *BindMDMUserAuthDataRelationReq, options ...MethodOptionFunc) (*BindMDMUserAuthDataRelationResp, *Response, error)) { - r.MockMDMCreateMDMUserAuthDataRelationBind(func(ctx context.Context, request *CreateMDMUserAuthDataRelationBindReq, options ...MethodOptionFunc) (*CreateMDMUserAuthDataRelationBindResp, *Response, error) { - return f(ctx, request, options...) - }) -} - -// UnMockMDMBindMDMUserAuthDataRelation un-mock MDMBindMDMUserAuthDataRelation method -// -// Deprecated: use UnMockMDMCreateMDMUserAuthDataRelationBind. -func (r *Mock) UnMockMDMBindMDMUserAuthDataRelation() { - r.UnMockMDMCreateMDMUserAuthDataRelationBind() +// bindMDMUserAuthDataRelationResp ... +type bindMDMUserAuthDataRelationResp struct { + Code int64 `json:"code,omitempty"` // 错误码, 非 0 表示失败 + Msg string `json:"msg,omitempty"` // 错误描述 + Data *BindMDMUserAuthDataRelationResp `json:"data,omitempty"` + Error *ErrorDetail `json:"error,omitempty"` } diff --git a/api_mdm_user_auth_data_relation_unbind.go b/api_mdm_user_auth_data_relation_unbind.go index 1658c3c8..ccfc3487 100644 --- a/api_mdm_user_auth_data_relation_unbind.go +++ b/api_mdm_user_auth_data_relation_unbind.go @@ -21,43 +21,43 @@ import ( "context" ) -// CreateMDMUserAuthDataRelationUnbind 通过该接口, 可为指定应用下的指定用户解除一类数据维度。 +// UnbindMDMUserAuthDataRelation 通过该接口, 可为指定应用下的指定用户解除一类数据维度。 // // doc: https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/mdm-v1/user_auth_data_relation/unbind // new doc: https://open.feishu.cn/document/server-docs/mdm-v1/user_auth_data_relation/unbind -func (r *MDMService) CreateMDMUserAuthDataRelationUnbind(ctx context.Context, request *CreateMDMUserAuthDataRelationUnbindReq, options ...MethodOptionFunc) (*CreateMDMUserAuthDataRelationUnbindResp, *Response, error) { - if r.cli.mock.mockMDMCreateMDMUserAuthDataRelationUnbind != nil { - r.cli.Log(ctx, LogLevelDebug, "[lark] MDM#CreateMDMUserAuthDataRelationUnbind mock enable") - return r.cli.mock.mockMDMCreateMDMUserAuthDataRelationUnbind(ctx, request, options...) +func (r *MDMService) UnbindMDMUserAuthDataRelation(ctx context.Context, request *UnbindMDMUserAuthDataRelationReq, options ...MethodOptionFunc) (*UnbindMDMUserAuthDataRelationResp, *Response, error) { + if r.cli.mock.mockMDMUnbindMDMUserAuthDataRelation != nil { + r.cli.Log(ctx, LogLevelDebug, "[lark] MDM#UnbindMDMUserAuthDataRelation mock enable") + return r.cli.mock.mockMDMUnbindMDMUserAuthDataRelation(ctx, request, options...) } req := &RawRequestReq{ Scope: "MDM", - API: "CreateMDMUserAuthDataRelationUnbind", + API: "UnbindMDMUserAuthDataRelation", Method: "POST", URL: r.cli.openBaseURL + "/open-apis/mdm/v1/user_auth_data_relations/unbind", Body: request, MethodOption: newMethodOption(options), NeedTenantAccessToken: true, } - resp := new(createMDMUserAuthDataRelationUnbindResp) + resp := new(unbindMDMUserAuthDataRelationResp) response, err := r.cli.RawRequest(ctx, req, resp) return resp.Data, response, err } -// MockMDMCreateMDMUserAuthDataRelationUnbind mock MDMCreateMDMUserAuthDataRelationUnbind method -func (r *Mock) MockMDMCreateMDMUserAuthDataRelationUnbind(f func(ctx context.Context, request *CreateMDMUserAuthDataRelationUnbindReq, options ...MethodOptionFunc) (*CreateMDMUserAuthDataRelationUnbindResp, *Response, error)) { - r.mockMDMCreateMDMUserAuthDataRelationUnbind = f +// MockMDMUnbindMDMUserAuthDataRelation mock MDMUnbindMDMUserAuthDataRelation method +func (r *Mock) MockMDMUnbindMDMUserAuthDataRelation(f func(ctx context.Context, request *UnbindMDMUserAuthDataRelationReq, options ...MethodOptionFunc) (*UnbindMDMUserAuthDataRelationResp, *Response, error)) { + r.mockMDMUnbindMDMUserAuthDataRelation = f } -// UnMockMDMCreateMDMUserAuthDataRelationUnbind un-mock MDMCreateMDMUserAuthDataRelationUnbind method -func (r *Mock) UnMockMDMCreateMDMUserAuthDataRelationUnbind() { - r.mockMDMCreateMDMUserAuthDataRelationUnbind = nil +// UnMockMDMUnbindMDMUserAuthDataRelation un-mock MDMUnbindMDMUserAuthDataRelation method +func (r *Mock) UnMockMDMUnbindMDMUserAuthDataRelation() { + r.mockMDMUnbindMDMUserAuthDataRelation = nil } -// CreateMDMUserAuthDataRelationUnbindReq ... -type CreateMDMUserAuthDataRelationUnbindReq struct { +// UnbindMDMUserAuthDataRelationReq ... +type UnbindMDMUserAuthDataRelationReq struct { UserIDType *IDType `query:"user_id_type" json:"-"` // 用户 ID 类型示例值: open_id可选值有: 标识一个用户在某个应用中的身份。同一个用户在不同应用中的 Open ID 不同。[了解更多: 如何获取 Open ID](https://open.feishu.cn/document/uAjLw4CM/ugTN1YjL4UTN24CO1UjN/trouble-shooting/how-to-obtain-openid)标识一个用户在某个应用开发商下的身份。同一用户在同一开发商下的应用中的 Union ID 是相同的, 在不同开发商下的应用中的 Union ID 是不同的。通过 Union ID, 应用开发商可以把同个用户在多个应用中的身份关联起来。[了解更多: 如何获取 Union ID?](https://open.feishu.cn/document/uAjLw4CM/ugTN1YjL4UTN24CO1UjN/trouble-shooting/how-to-obtain-union-id)标识一个用户在某个租户内的身份。同一个用户在租户 A 和租户 B 内的 User ID 是不同的。在同一个租户内, 一个用户的 User ID 在所有应用(包括商店应用)中都保持一致。User ID 主要用于在不同的应用间打通用户数据。[了解更多: 如何获取 User ID?](https://open.feishu.cn/document/uAjLw4CM/ugTN1YjL4UTN24CO1UjN/trouble-shooting/how-to-obtain-user-id)默认值: `open_id`当值为 `user_id`, 字段权限要求: 获取用户 user ID RootDimensionType string `json:"root_dimension_type,omitempty"` // 数据类型编码示例值: "gongsi" 长度范围: `1` ~ `200` 字符 SubDimensionTypes []string `json:"sub_dimension_types,omitempty"` // 数据编码列表示例值: ["zijie"] 长度范围: `1` ~ `200` @@ -65,42 +65,13 @@ type CreateMDMUserAuthDataRelationUnbindReq struct { UamsAppID string `json:"uams_app_id,omitempty"` // uams系统中应用id示例值: "uams-tenant-test" 长度范围: `1` ~ `200` 字符 } -// CreateMDMUserAuthDataRelationUnbindResp ... -type CreateMDMUserAuthDataRelationUnbindResp struct{} +// UnbindMDMUserAuthDataRelationResp ... +type UnbindMDMUserAuthDataRelationResp struct{} -// createMDMUserAuthDataRelationUnbindResp ... -type createMDMUserAuthDataRelationUnbindResp struct { - Code int64 `json:"code,omitempty"` // 错误码, 非 0 表示失败 - Msg string `json:"msg,omitempty"` // 错误描述 - Data *CreateMDMUserAuthDataRelationUnbindResp `json:"data,omitempty"` - Error *ErrorDetail `json:"error,omitempty"` -} - -// Deprecated: use UnbindMDMUserAuthDataRelation. -type UnbindMDMUserAuthDataRelationReq = CreateMDMUserAuthDataRelationUnbindReq - -// Deprecated: use CreateMDMUserAuthDataRelationUnbindResp. -type UnbindMDMUserAuthDataRelationResp = CreateMDMUserAuthDataRelationUnbindResp - -// UnbindMDMUserAuthDataRelation 通过该接口, 可为指定应用下的指定用户解除一类数据维度。 -// -// Deprecated: use CreateMDMUserAuthDataRelationUnbind. -func (r *MDMService) UnbindMDMUserAuthDataRelation(ctx context.Context, request *UnbindMDMUserAuthDataRelationReq, options ...MethodOptionFunc) (*UnbindMDMUserAuthDataRelationResp, *Response, error) { - return r.CreateMDMUserAuthDataRelationUnbind(ctx, request, options...) -} - -// MockMDMUnbindMDMUserAuthDataRelation mock MDMUnbindMDMUserAuthDataRelation method -// -// Deprecated: use MockMDMCreateMDMUserAuthDataRelationUnbind. -func (r *Mock) MockMDMUnbindMDMUserAuthDataRelation(f func(ctx context.Context, request *UnbindMDMUserAuthDataRelationReq, options ...MethodOptionFunc) (*UnbindMDMUserAuthDataRelationResp, *Response, error)) { - r.MockMDMCreateMDMUserAuthDataRelationUnbind(func(ctx context.Context, request *CreateMDMUserAuthDataRelationUnbindReq, options ...MethodOptionFunc) (*CreateMDMUserAuthDataRelationUnbindResp, *Response, error) { - return f(ctx, request, options...) - }) -} - -// UnMockMDMUnbindMDMUserAuthDataRelation un-mock MDMUnbindMDMUserAuthDataRelation method -// -// Deprecated: use UnMockMDMCreateMDMUserAuthDataRelationUnbind. -func (r *Mock) UnMockMDMUnbindMDMUserAuthDataRelation() { - r.UnMockMDMCreateMDMUserAuthDataRelationUnbind() +// unbindMDMUserAuthDataRelationResp ... +type unbindMDMUserAuthDataRelationResp struct { + Code int64 `json:"code,omitempty"` // 错误码, 非 0 表示失败 + Msg string `json:"msg,omitempty"` // 错误描述 + Data *UnbindMDMUserAuthDataRelationResp `json:"data,omitempty"` + Error *ErrorDetail `json:"error,omitempty"` } diff --git a/mock.go b/mock.go index 60dfad96..f0a9fca7 100644 --- a/mock.go +++ b/mock.go @@ -846,8 +846,8 @@ type Mock struct { mockLingoDownloadLingoFile func(ctx context.Context, request *DownloadLingoFileReq, options ...MethodOptionFunc) (*DownloadLingoFileResp, *Response, error) mockLingoUploadLingoFile func(ctx context.Context, request *UploadLingoFileReq, options ...MethodOptionFunc) (*UploadLingoFileResp, *Response, error) mockLingoGetLingoRepoList func(ctx context.Context, request *GetLingoRepoListReq, options ...MethodOptionFunc) (*GetLingoRepoListResp, *Response, error) - mockMDMCreateMDMUserAuthDataRelationBind func(ctx context.Context, request *CreateMDMUserAuthDataRelationBindReq, options ...MethodOptionFunc) (*CreateMDMUserAuthDataRelationBindResp, *Response, error) - mockMDMCreateMDMUserAuthDataRelationUnbind func(ctx context.Context, request *CreateMDMUserAuthDataRelationUnbindReq, options ...MethodOptionFunc) (*CreateMDMUserAuthDataRelationUnbindResp, *Response, error) + mockMDMBindMDMUserAuthDataRelation func(ctx context.Context, request *BindMDMUserAuthDataRelationReq, options ...MethodOptionFunc) (*BindMDMUserAuthDataRelationResp, *Response, error) + mockMDMUnbindMDMUserAuthDataRelation func(ctx context.Context, request *UnbindMDMUserAuthDataRelationReq, options ...MethodOptionFunc) (*UnbindMDMUserAuthDataRelationResp, *Response, error) mockMailCreateMailGroupAlias func(ctx context.Context, request *CreateMailGroupAliasReq, options ...MethodOptionFunc) (*CreateMailGroupAliasResp, *Response, error) mockMailDeleteMailGroupAlias func(ctx context.Context, request *DeleteMailGroupAliasReq, options ...MethodOptionFunc) (*DeleteMailGroupAliasResp, *Response, error) mockMailGetMailGroupAliasList func(ctx context.Context, request *GetMailGroupAliasListReq, options ...MethodOptionFunc) (*GetMailGroupAliasListResp, *Response, error) From d68c70eb70c3f2bb97c72fa7c7b1407d8c0bd21b Mon Sep 17 00:00:00 2001 From: chyroc Date: Sun, 1 Mar 2026 11:55:29 +0800 Subject: [PATCH 10/12] chore: minimize mock.go diff noise --- mock.go | 2203 ++++++++++++++++++++++++++++--------------------------- 1 file changed, 1102 insertions(+), 1101 deletions(-) diff --git a/mock.go b/mock.go index f0a9fca7..5a74771c 100644 --- a/mock.go +++ b/mock.go @@ -23,1107 +23,1108 @@ import ( // Mock mock struct type Mock struct { - mockRawRequest func(ctx context.Context, req *RawRequestReq, resp interface{}) (response *Response, err error) - mockGetTenantAccessToken func(ctx context.Context) (*TokenExpire, *Response, error) - mockGetAppAccessToken func(ctx context.Context) (*TokenExpire, *Response, error) - mockACSGetACSAccessRecordList func(ctx context.Context, request *GetACSAccessRecordListReq, options ...MethodOptionFunc) (*GetACSAccessRecordListResp, *Response, error) - mockACSGetACSAccessRecordPhoto func(ctx context.Context, request *GetACSAccessRecordPhotoReq, options ...MethodOptionFunc) (*GetACSAccessRecordPhotoResp, *Response, error) - mockACSGetACSDeviceList func(ctx context.Context, request *GetACSDeviceListReq, options ...MethodOptionFunc) (*GetACSDeviceListResp, *Response, error) - mockACSCreateACSRuleExternal func(ctx context.Context, request *CreateACSRuleExternalReq, options ...MethodOptionFunc) (*CreateACSRuleExternalResp, *Response, error) - mockACSDeleteACSRuleExternal func(ctx context.Context, request *DeleteACSRuleExternalReq, options ...MethodOptionFunc) (*DeleteACSRuleExternalResp, *Response, error) - mockACSDeviceBindACSRuleExternal func(ctx context.Context, request *DeviceBindACSRuleExternalReq, options ...MethodOptionFunc) (*DeviceBindACSRuleExternalResp, *Response, error) - mockACSGetACSRuleExternal func(ctx context.Context, request *GetACSRuleExternalReq, options ...MethodOptionFunc) (*GetACSRuleExternalResp, *Response, error) - mockACSGetACSUserFace func(ctx context.Context, request *GetACSUserFaceReq, options ...MethodOptionFunc) (*GetACSUserFaceResp, *Response, error) - mockACSUpdateACSUserFace func(ctx context.Context, request *UpdateACSUserFaceReq, options ...MethodOptionFunc) (*UpdateACSUserFaceResp, *Response, error) - mockACSGetACSUser func(ctx context.Context, request *GetACSUserReq, options ...MethodOptionFunc) (*GetACSUserResp, *Response, error) - mockACSGetACSUserList func(ctx context.Context, request *GetACSUserListReq, options ...MethodOptionFunc) (*GetACSUserListResp, *Response, error) - mockACSUpdateACSUser func(ctx context.Context, request *UpdateACSUserReq, options ...MethodOptionFunc) (*UpdateACSUserResp, *Response, error) - mockACSCreateACSVisitor func(ctx context.Context, request *CreateACSVisitorReq, options ...MethodOptionFunc) (*CreateACSVisitorResp, *Response, error) - mockACSDeleteACSVisitor func(ctx context.Context, request *DeleteACSVisitorReq, options ...MethodOptionFunc) (*DeleteACSVisitorResp, *Response, error) - mockAIRecognizeAIBankCard func(ctx context.Context, request *RecognizeAIBankCardReq, options ...MethodOptionFunc) (*RecognizeAIBankCardResp, *Response, error) - mockAIRecognizeAIBusinessCard func(ctx context.Context, request *RecognizeAIBusinessCardReq, options ...MethodOptionFunc) (*RecognizeAIBusinessCardResp, *Response, error) - mockAIRecognizeAIBusinessLicense func(ctx context.Context, request *RecognizeAIBusinessLicenseReq, options ...MethodOptionFunc) (*RecognizeAIBusinessLicenseResp, *Response, error) - mockAIRecognizeAIChinesePassport func(ctx context.Context, request *RecognizeAIChinesePassportReq, options ...MethodOptionFunc) (*RecognizeAIChinesePassportResp, *Response, error) - mockAIExtractAIContractField func(ctx context.Context, request *ExtractAIContractFieldReq, options ...MethodOptionFunc) (*ExtractAIContractFieldResp, *Response, error) - mockAIDetectFaceAttributes func(ctx context.Context, request *DetectFaceAttributesReq, options ...MethodOptionFunc) (*DetectFaceAttributesResp, *Response, error) - mockAIDetectTextLanguage func(ctx context.Context, request *DetectTextLanguageReq, options ...MethodOptionFunc) (*DetectTextLanguageResp, *Response, error) - mockAIRecognizeAIDrivingLicense func(ctx context.Context, request *RecognizeAIDrivingLicenseReq, options ...MethodOptionFunc) (*RecognizeAIDrivingLicenseResp, *Response, error) - mockAIRecognizeAIFoodManageLicense func(ctx context.Context, request *RecognizeAIFoodManageLicenseReq, options ...MethodOptionFunc) (*RecognizeAIFoodManageLicenseResp, *Response, error) - mockAIRecognizeAIFoodProduceLicense func(ctx context.Context, request *RecognizeAIFoodProduceLicenseReq, options ...MethodOptionFunc) (*RecognizeAIFoodProduceLicenseResp, *Response, error) - mockAIRecognizeAIHealthCertificate func(ctx context.Context, request *RecognizeAIHealthCertificateReq, options ...MethodOptionFunc) (*RecognizeAIHealthCertificateResp, *Response, error) - mockAIRecognizeAIHkmMainlandTravelPermit func(ctx context.Context, request *RecognizeAIHkmMainlandTravelPermitReq, options ...MethodOptionFunc) (*RecognizeAIHkmMainlandTravelPermitResp, *Response, error) - mockAIRecognizeAiidCard func(ctx context.Context, request *RecognizeAiidCardReq, options ...MethodOptionFunc) (*RecognizeAiidCardResp, *Response, error) - mockAIRecognizeBasicImage func(ctx context.Context, request *RecognizeBasicImageReq, options ...MethodOptionFunc) (*RecognizeBasicImageResp, *Response, error) - mockAIRecognizeSpeechFile func(ctx context.Context, request *RecognizeSpeechFileReq, options ...MethodOptionFunc) (*RecognizeSpeechFileResp, *Response, error) - mockAIRecognizeSpeechStream func(ctx context.Context, request *RecognizeSpeechStreamReq, options ...MethodOptionFunc) (*RecognizeSpeechStreamResp, *Response, error) - mockAIParseAIResume func(ctx context.Context, request *ParseAIResumeReq, options ...MethodOptionFunc) (*ParseAIResumeResp, *Response, error) - mockAIRecognizeAITaxiInvoice func(ctx context.Context, request *RecognizeAITaxiInvoiceReq, options ...MethodOptionFunc) (*RecognizeAITaxiInvoiceResp, *Response, error) - mockAIRecognizeAITrainInvoice func(ctx context.Context, request *RecognizeAITrainInvoiceReq, options ...MethodOptionFunc) (*RecognizeAITrainInvoiceResp, *Response, error) - mockAITranslateText func(ctx context.Context, request *TranslateTextReq, options ...MethodOptionFunc) (*TranslateTextResp, *Response, error) - mockAIRecognizeAITwMainlandTravelPermit func(ctx context.Context, request *RecognizeAITwMainlandTravelPermitReq, options ...MethodOptionFunc) (*RecognizeAITwMainlandTravelPermitResp, *Response, error) - mockAIRecognizeAIVatInvoice func(ctx context.Context, request *RecognizeAIVatInvoiceReq, options ...MethodOptionFunc) (*RecognizeAIVatInvoiceResp, *Response, error) - mockAIRecognizeAIVehicleInvoice func(ctx context.Context, request *RecognizeAIVehicleInvoiceReq, options ...MethodOptionFunc) (*RecognizeAIVehicleInvoiceResp, *Response, error) - mockAIRecognizeAIVehicleLicense func(ctx context.Context, request *RecognizeAIVehicleLicenseReq, options ...MethodOptionFunc) (*RecognizeAIVehicleLicenseResp, *Response, error) - mockAPaaSAddAPaaSApprovalTaskAssignee func(ctx context.Context, request *AddAPaaSApprovalTaskAssigneeReq, options ...MethodOptionFunc) (*AddAPaaSApprovalTaskAssigneeResp, *Response, error) - mockAPaaSAgreeAPaaSApprovalTask func(ctx context.Context, request *AgreeAPaaSApprovalTaskReq, options ...MethodOptionFunc) (*AgreeAPaaSApprovalTaskResp, *Response, error) - mockAPaaSRejectAPaaSApprovalTask func(ctx context.Context, request *RejectAPaaSApprovalTaskReq, options ...MethodOptionFunc) (*RejectAPaaSApprovalTaskResp, *Response, error) - mockAPaaSTransferAPaaSApprovalTask func(ctx context.Context, request *TransferAPaaSApprovalTaskReq, options ...MethodOptionFunc) (*TransferAPaaSApprovalTaskResp, *Response, error) - mockAdminGetAdminDeptStats func(ctx context.Context, request *GetAdminDeptStatsReq, options ...MethodOptionFunc) (*GetAdminDeptStatsResp, *Response, error) - mockAdminGetAdminUserStats func(ctx context.Context, request *GetAdminUserStatsReq, options ...MethodOptionFunc) (*GetAdminUserStatsResp, *Response, error) - mockAdminCreateAdminBadge func(ctx context.Context, request *CreateAdminBadgeReq, options ...MethodOptionFunc) (*CreateAdminBadgeResp, *Response, error) - mockAdminGetAdminBadge func(ctx context.Context, request *GetAdminBadgeReq, options ...MethodOptionFunc) (*GetAdminBadgeResp, *Response, error) - mockAdminCreateAdminBadgeGrant func(ctx context.Context, request *CreateAdminBadgeGrantReq, options ...MethodOptionFunc) (*CreateAdminBadgeGrantResp, *Response, error) - mockAdminDeleteAdminBadgeGrant func(ctx context.Context, request *DeleteAdminBadgeGrantReq, options ...MethodOptionFunc) (*DeleteAdminBadgeGrantResp, *Response, error) - mockAdminGetAdminBadgeGrant func(ctx context.Context, request *GetAdminBadgeGrantReq, options ...MethodOptionFunc) (*GetAdminBadgeGrantResp, *Response, error) - mockAdminGetAdminBadgeGrantList func(ctx context.Context, request *GetAdminBadgeGrantListReq, options ...MethodOptionFunc) (*GetAdminBadgeGrantListResp, *Response, error) - mockAdminUpdateAdminBadgeGrant func(ctx context.Context, request *UpdateAdminBadgeGrantReq, options ...MethodOptionFunc) (*UpdateAdminBadgeGrantResp, *Response, error) - mockAdminUploadAdminBadgeImage func(ctx context.Context, request *UploadAdminBadgeImageReq, options ...MethodOptionFunc) (*UploadAdminBadgeImageResp, *Response, error) - mockAdminGetAdminBadgeList func(ctx context.Context, request *GetAdminBadgeListReq, options ...MethodOptionFunc) (*GetAdminBadgeListResp, *Response, error) - mockAdminUpdateAdminBadge func(ctx context.Context, request *UpdateAdminBadgeReq, options ...MethodOptionFunc) (*UpdateAdminBadgeResp, *Response, error) - mockAdminAdminResetPassword func(ctx context.Context, request *AdminResetPasswordReq, options ...MethodOptionFunc) (*AdminResetPasswordResp, *Response, error) - mockApplicationGetApplicationAppAdminUserList func(ctx context.Context, request *GetApplicationAppAdminUserListReq, options ...MethodOptionFunc) (*GetApplicationAppAdminUserListResp, *Response, error) - mockApplicationSetApplicationAppBadge func(ctx context.Context, request *SetApplicationAppBadgeReq, options ...MethodOptionFunc) (*SetApplicationAppBadgeResp, *Response, error) - mockApplicationGetApplicationAppList func(ctx context.Context, request *GetApplicationAppListReq, options ...MethodOptionFunc) (*GetApplicationAppListResp, *Response, error) - mockApplicationUpdateApplicationAppManagement func(ctx context.Context, request *UpdateApplicationAppManagementReq, options ...MethodOptionFunc) (*UpdateApplicationAppManagementResp, *Response, error) - mockApplicationGetApplicationAppVisibility func(ctx context.Context, request *GetApplicationAppVisibilityReq, options ...MethodOptionFunc) (*GetApplicationAppVisibilityResp, *Response, error) - mockApplicationUpdateApplicationAppVisibility func(ctx context.Context, request *UpdateApplicationAppVisibilityReq, options ...MethodOptionFunc) (*UpdateApplicationAppVisibilityResp, *Response, error) - mockApplicationUpdateApplicationAppVisibilityV6 func(ctx context.Context, request *UpdateApplicationAppVisibilityV6Req, options ...MethodOptionFunc) (*UpdateApplicationAppVisibilityV6Resp, *Response, error) - mockApplicationGetApplicationContactsRangeConfiguration func(ctx context.Context, request *GetApplicationContactsRangeConfigurationReq, options ...MethodOptionFunc) (*GetApplicationContactsRangeConfigurationResp, *Response, error) - mockApplicationUpdateApplicationContactsRangeConfiguration func(ctx context.Context, request *UpdateApplicationContactsRangeConfigurationReq, options ...MethodOptionFunc) (*UpdateApplicationContactsRangeConfigurationResp, *Response, error) - mockApplicationSearchApplicationCustomWorkplaceAccessData func(ctx context.Context, request *SearchApplicationCustomWorkplaceAccessDataReq, options ...MethodOptionFunc) (*SearchApplicationCustomWorkplaceAccessDataResp, *Response, error) - mockApplicationGetApplicationFavourite func(ctx context.Context, request *GetApplicationFavouriteReq, options ...MethodOptionFunc) (*GetApplicationFavouriteResp, *Response, error) - mockApplicationGetApplicationFeedbackList func(ctx context.Context, request *GetApplicationFeedbackListReq, options ...MethodOptionFunc) (*GetApplicationFeedbackListResp, *Response, error) - mockApplicationUpdateApplicationFeedback func(ctx context.Context, request *UpdateApplicationFeedbackReq, options ...MethodOptionFunc) (*UpdateApplicationFeedbackResp, *Response, error) - mockApplicationGetApplication func(ctx context.Context, request *GetApplicationReq, options ...MethodOptionFunc) (*GetApplicationResp, *Response, error) - mockApplicationIsApplicationUserAdmin func(ctx context.Context, request *IsApplicationUserAdminReq, options ...MethodOptionFunc) (*IsApplicationUserAdminResp, *Response, error) - mockApplicationGetApplicationOrder func(ctx context.Context, request *GetApplicationOrderReq, options ...MethodOptionFunc) (*GetApplicationOrderResp, *Response, error) - mockApplicationGetApplicationOrderList func(ctx context.Context, request *GetApplicationOrderListReq, options ...MethodOptionFunc) (*GetApplicationOrderListResp, *Response, error) - mockApplicationCheckUserIsInApplicationPaidScope func(ctx context.Context, request *CheckUserIsInApplicationPaidScopeReq, options ...MethodOptionFunc) (*CheckUserIsInApplicationPaidScopeResp, *Response, error) - mockApplicationGetApplicationRecommend func(ctx context.Context, request *GetApplicationRecommendReq, options ...MethodOptionFunc) (*GetApplicationRecommendResp, *Response, error) - mockApplicationGetApplicationRecommendRuleList func(ctx context.Context, request *GetApplicationRecommendRuleListReq, options ...MethodOptionFunc) (*GetApplicationRecommendRuleListResp, *Response, error) - mockApplicationGetApplicationUnderAuditList func(ctx context.Context, request *GetApplicationUnderAuditListReq, options ...MethodOptionFunc) (*GetApplicationUnderAuditListResp, *Response, error) - mockApplicationUpdateApplication func(ctx context.Context, request *UpdateApplicationReq, options ...MethodOptionFunc) (*UpdateApplicationResp, *Response, error) - mockApplicationGetApplicationUsageDepartmentOverview func(ctx context.Context, request *GetApplicationUsageDepartmentOverviewReq, options ...MethodOptionFunc) (*GetApplicationUsageDepartmentOverviewResp, *Response, error) - mockApplicationGetApplicationUsageOverview func(ctx context.Context, request *GetApplicationUsageOverviewReq, options ...MethodOptionFunc) (*GetApplicationUsageOverviewResp, *Response, error) - mockApplicationGetApplicationUsageTrend func(ctx context.Context, request *GetApplicationUsageTrendReq, options ...MethodOptionFunc) (*GetApplicationUsageTrendResp, *Response, error) - mockApplicationGetApplicationUserAdminScope func(ctx context.Context, request *GetApplicationUserAdminScopeReq, options ...MethodOptionFunc) (*GetApplicationUserAdminScopeResp, *Response, error) - mockApplicationGetApplicationUserVisibleApp func(ctx context.Context, request *GetApplicationUserVisibleAppReq, options ...MethodOptionFunc) (*GetApplicationUserVisibleAppResp, *Response, error) - mockApplicationGetApplicationVersionContactsRangeSuggest func(ctx context.Context, request *GetApplicationVersionContactsRangeSuggestReq, options ...MethodOptionFunc) (*GetApplicationVersionContactsRangeSuggestResp, *Response, error) - mockApplicationGetApplicationVersion func(ctx context.Context, request *GetApplicationVersionReq, options ...MethodOptionFunc) (*GetApplicationVersionResp, *Response, error) - mockApplicationGetApplicationVersionList func(ctx context.Context, request *GetApplicationVersionListReq, options ...MethodOptionFunc) (*GetApplicationVersionListResp, *Response, error) - mockApplicationUpdateApplicationVersion func(ctx context.Context, request *UpdateApplicationVersionReq, options ...MethodOptionFunc) (*UpdateApplicationVersionResp, *Response, error) - mockApplicationCheckApplicationVisibleWhiteBlackList func(ctx context.Context, request *CheckApplicationVisibleWhiteBlackListReq, options ...MethodOptionFunc) (*CheckApplicationVisibleWhiteBlackListResp, *Response, error) - mockApplicationSearchApplicationWorkplaceAccessData func(ctx context.Context, request *SearchApplicationWorkplaceAccessDataReq, options ...MethodOptionFunc) (*SearchApplicationWorkplaceAccessDataResp, *Response, error) - mockApplicationSearchApplicationWorkplaceBlockAccessData func(ctx context.Context, request *SearchApplicationWorkplaceBlockAccessDataReq, options ...MethodOptionFunc) (*SearchApplicationWorkplaceBlockAccessDataResp, *Response, error) - mockApprovalCreateApproval func(ctx context.Context, request *CreateApprovalReq, options ...MethodOptionFunc) (*CreateApprovalResp, *Response, error) - mockApprovalGetApproval func(ctx context.Context, request *GetApprovalReq, options ...MethodOptionFunc) (*GetApprovalResp, *Response, error) - mockApprovalGetApprovalList func(ctx context.Context, request *GetApprovalListReq, options ...MethodOptionFunc) (*GetApprovalListResp, *Response, error) - mockApprovalCreateApprovalCarbonCopy func(ctx context.Context, request *CreateApprovalCarbonCopyReq, options ...MethodOptionFunc) (*CreateApprovalCarbonCopyResp, *Response, error) - mockApprovalSearchApprovalCarbonCopy func(ctx context.Context, request *SearchApprovalCarbonCopyReq, options ...MethodOptionFunc) (*SearchApprovalCarbonCopyResp, *Response, error) - mockApprovalCreateApprovalComment func(ctx context.Context, request *CreateApprovalCommentReq, options ...MethodOptionFunc) (*CreateApprovalCommentResp, *Response, error) - mockApprovalDeleteApprovalComment func(ctx context.Context, request *DeleteApprovalCommentReq, options ...MethodOptionFunc) (*DeleteApprovalCommentResp, *Response, error) - mockApprovalGetApprovalComment func(ctx context.Context, request *GetApprovalCommentReq, options ...MethodOptionFunc) (*GetApprovalCommentResp, *Response, error) - mockApprovalRemoveApprovalComment func(ctx context.Context, request *RemoveApprovalCommentReq, options ...MethodOptionFunc) (*RemoveApprovalCommentResp, *Response, error) - mockApprovalCheckApprovalExternalInstance func(ctx context.Context, request *CheckApprovalExternalInstanceReq, options ...MethodOptionFunc) (*CheckApprovalExternalInstanceResp, *Response, error) - mockApprovalCreateApprovalExternalApproval func(ctx context.Context, request *CreateApprovalExternalApprovalReq, options ...MethodOptionFunc) (*CreateApprovalExternalApprovalResp, *Response, error) - mockApprovalGetApprovalExternalApproval func(ctx context.Context, request *GetApprovalExternalApprovalReq, options ...MethodOptionFunc) (*GetApprovalExternalApprovalResp, *Response, error) - mockApprovalCreateApprovalExternalInstance func(ctx context.Context, request *CreateApprovalExternalInstanceReq, options ...MethodOptionFunc) (*CreateApprovalExternalInstanceResp, *Response, error) - mockApprovalGetApprovalExternalList func(ctx context.Context, request *GetApprovalExternalListReq, options ...MethodOptionFunc) (*GetApprovalExternalListResp, *Response, error) - mockApprovalUploadApprovalFile func(ctx context.Context, request *UploadApprovalFileReq, options ...MethodOptionFunc) (*UploadApprovalFileResp, *Response, error) - mockApprovalGetApprovalUserTaskList func(ctx context.Context, request *GetApprovalUserTaskListReq, options ...MethodOptionFunc) (*GetApprovalUserTaskListResp, *Response, error) - mockApprovalAddApprovalInstanceSign func(ctx context.Context, request *AddApprovalInstanceSignReq, options ...MethodOptionFunc) (*AddApprovalInstanceSignResp, *Response, error) - mockApprovalApproveApprovalInstance func(ctx context.Context, request *ApproveApprovalInstanceReq, options ...MethodOptionFunc) (*ApproveApprovalInstanceResp, *Response, error) - mockApprovalCancelApprovalInstance func(ctx context.Context, request *CancelApprovalInstanceReq, options ...MethodOptionFunc) (*CancelApprovalInstanceResp, *Response, error) - mockApprovalCreateApprovalInstance func(ctx context.Context, request *CreateApprovalInstanceReq, options ...MethodOptionFunc) (*CreateApprovalInstanceResp, *Response, error) - mockApprovalGetApprovalInstance func(ctx context.Context, request *GetApprovalInstanceReq, options ...MethodOptionFunc) (*GetApprovalInstanceResp, *Response, error) - mockApprovalGetApprovalInstanceList func(ctx context.Context, request *GetApprovalInstanceListReq, options ...MethodOptionFunc) (*GetApprovalInstanceListResp, *Response, error) - mockApprovalPreviewApprovalInstance func(ctx context.Context, request *PreviewApprovalInstanceReq, options ...MethodOptionFunc) (*PreviewApprovalInstanceResp, *Response, error) - mockApprovalRejectApprovalInstance func(ctx context.Context, request *RejectApprovalInstanceReq, options ...MethodOptionFunc) (*RejectApprovalInstanceResp, *Response, error) - mockApprovalRollbackApprovalInstance func(ctx context.Context, request *RollbackApprovalInstanceReq, options ...MethodOptionFunc) (*RollbackApprovalInstanceResp, *Response, error) - mockApprovalSearchApprovalInstance func(ctx context.Context, request *SearchApprovalInstanceReq, options ...MethodOptionFunc) (*SearchApprovalInstanceResp, *Response, error) - mockApprovalResubmitApprovalInstanceTask func(ctx context.Context, request *ResubmitApprovalInstanceTaskReq, options ...MethodOptionFunc) (*ResubmitApprovalInstanceTaskResp, *Response, error) - mockApprovalTransferApprovalInstance func(ctx context.Context, request *TransferApprovalInstanceReq, options ...MethodOptionFunc) (*TransferApprovalInstanceResp, *Response, error) - mockApprovalSendApprovalMessage func(ctx context.Context, request *SendApprovalMessageReq, options ...MethodOptionFunc) (*SendApprovalMessageResp, *Response, error) - mockApprovalUpdateApprovalMessage func(ctx context.Context, request *UpdateApprovalMessageReq, options ...MethodOptionFunc) (*UpdateApprovalMessageResp, *Response, error) - mockApprovalSubscribeApprovalSubscription func(ctx context.Context, request *SubscribeApprovalSubscriptionReq, options ...MethodOptionFunc) (*SubscribeApprovalSubscriptionResp, *Response, error) - mockApprovalUnsubscribeApprovalSubscription func(ctx context.Context, request *UnsubscribeApprovalSubscriptionReq, options ...MethodOptionFunc) (*UnsubscribeApprovalSubscriptionResp, *Response, error) - mockApprovalSearchApprovalTask func(ctx context.Context, request *SearchApprovalTaskReq, options ...MethodOptionFunc) (*SearchApprovalTaskResp, *Response, error) - mockApprovalTransformApprovalUserID func(ctx context.Context, request *TransformApprovalUserIDReq, options ...MethodOptionFunc) (*TransformApprovalUserIDResp, *Response, error) - mockAttendanceDownloadAttendanceFile func(ctx context.Context, request *DownloadAttendanceFileReq, options ...MethodOptionFunc) (*DownloadAttendanceFileResp, *Response, error) - mockAttendanceUploadAttendanceFile func(ctx context.Context, request *UploadAttendanceFileReq, options ...MethodOptionFunc) (*UploadAttendanceFileResp, *Response, error) - mockAttendanceCreateAttendanceGroup func(ctx context.Context, request *CreateAttendanceGroupReq, options ...MethodOptionFunc) (*CreateAttendanceGroupResp, *Response, error) - mockAttendanceDeleteAttendanceGroup func(ctx context.Context, request *DeleteAttendanceGroupReq, options ...MethodOptionFunc) (*DeleteAttendanceGroupResp, *Response, error) - mockAttendanceGetAttendanceGroup func(ctx context.Context, request *GetAttendanceGroupReq, options ...MethodOptionFunc) (*GetAttendanceGroupResp, *Response, error) - mockAttendanceGetAttendanceGroupList func(ctx context.Context, request *GetAttendanceGroupListReq, options ...MethodOptionFunc) (*GetAttendanceGroupListResp, *Response, error) - mockAttendanceSearchAttendanceGroup func(ctx context.Context, request *SearchAttendanceGroupReq, options ...MethodOptionFunc) (*SearchAttendanceGroupResp, *Response, error) - mockAttendanceUpdateAttendanceLeaveAccrualRecord func(ctx context.Context, request *UpdateAttendanceLeaveAccrualRecordReq, options ...MethodOptionFunc) (*UpdateAttendanceLeaveAccrualRecordResp, *Response, error) - mockAttendanceGetAttendanceLeaveEmployExpireRecord func(ctx context.Context, request *GetAttendanceLeaveEmployExpireRecordReq, options ...MethodOptionFunc) (*GetAttendanceLeaveEmployExpireRecordResp, *Response, error) - mockAttendanceUpdateAttendanceRemedyApproval func(ctx context.Context, request *UpdateAttendanceRemedyApprovalReq, options ...MethodOptionFunc) (*UpdateAttendanceRemedyApprovalResp, *Response, error) - mockAttendanceCreateAttendanceShift func(ctx context.Context, request *CreateAttendanceShiftReq, options ...MethodOptionFunc) (*CreateAttendanceShiftResp, *Response, error) - mockAttendanceDeleteAttendanceShift func(ctx context.Context, request *DeleteAttendanceShiftReq, options ...MethodOptionFunc) (*DeleteAttendanceShiftResp, *Response, error) - mockAttendanceGetAttendanceShift func(ctx context.Context, request *GetAttendanceShiftReq, options ...MethodOptionFunc) (*GetAttendanceShiftResp, *Response, error) - mockAttendanceGetAttendanceShiftDetail func(ctx context.Context, request *GetAttendanceShiftDetailReq, options ...MethodOptionFunc) (*GetAttendanceShiftDetailResp, *Response, error) - mockAttendanceGetAttendanceShiftList func(ctx context.Context, request *GetAttendanceShiftListReq, options ...MethodOptionFunc) (*GetAttendanceShiftListResp, *Response, error) - mockAttendanceCreateAttendanceUserApproval func(ctx context.Context, request *CreateAttendanceUserApprovalReq, options ...MethodOptionFunc) (*CreateAttendanceUserApprovalResp, *Response, error) - mockAttendanceGetAttendanceUserApproval func(ctx context.Context, request *GetAttendanceUserApprovalReq, options ...MethodOptionFunc) (*GetAttendanceUserApprovalResp, *Response, error) - mockAttendanceBatchCreateAttendanceUserDailyShift func(ctx context.Context, request *BatchCreateAttendanceUserDailyShiftReq, options ...MethodOptionFunc) (*BatchCreateAttendanceUserDailyShiftResp, *Response, error) - mockAttendanceGetAttendanceUserDailyShift func(ctx context.Context, request *GetAttendanceUserDailyShiftReq, options ...MethodOptionFunc) (*GetAttendanceUserDailyShiftResp, *Response, error) - mockAttendanceBatchCreateAttendanceUserFlow func(ctx context.Context, request *BatchCreateAttendanceUserFlowReq, options ...MethodOptionFunc) (*BatchCreateAttendanceUserFlowResp, *Response, error) - mockAttendanceBatchGetAttendanceUserFlow func(ctx context.Context, request *BatchGetAttendanceUserFlowReq, options ...MethodOptionFunc) (*BatchGetAttendanceUserFlowResp, *Response, error) - mockAttendanceGetAttendanceUserFlow func(ctx context.Context, request *GetAttendanceUserFlowReq, options ...MethodOptionFunc) (*GetAttendanceUserFlowResp, *Response, error) - mockAttendanceGetAttendanceUserSettingList func(ctx context.Context, request *GetAttendanceUserSettingListReq, options ...MethodOptionFunc) (*GetAttendanceUserSettingListResp, *Response, error) - mockAttendanceUpdateAttendanceUserSetting func(ctx context.Context, request *UpdateAttendanceUserSettingReq, options ...MethodOptionFunc) (*UpdateAttendanceUserSettingResp, *Response, error) - mockAttendanceGetAttendanceUserStatsData func(ctx context.Context, request *GetAttendanceUserStatsDataReq, options ...MethodOptionFunc) (*GetAttendanceUserStatsDataResp, *Response, error) - mockAttendanceGetAttendanceUserStatsField func(ctx context.Context, request *GetAttendanceUserStatsFieldReq, options ...MethodOptionFunc) (*GetAttendanceUserStatsFieldResp, *Response, error) - mockAttendanceGetAttendanceUserStatsView func(ctx context.Context, request *GetAttendanceUserStatsViewReq, options ...MethodOptionFunc) (*GetAttendanceUserStatsViewResp, *Response, error) - mockAttendanceUpdateAttendanceUserStatsView func(ctx context.Context, request *UpdateAttendanceUserStatsViewReq, options ...MethodOptionFunc) (*UpdateAttendanceUserStatsViewResp, *Response, error) - mockAttendanceGetAttendanceUserTask func(ctx context.Context, request *GetAttendanceUserTaskReq, options ...MethodOptionFunc) (*GetAttendanceUserTaskResp, *Response, error) - mockAttendanceGetAttendanceUserTaskRemedyAllowedRemedyList func(ctx context.Context, request *GetAttendanceUserTaskRemedyAllowedRemedyListReq, options ...MethodOptionFunc) (*GetAttendanceUserTaskRemedyAllowedRemedyListResp, *Response, error) - mockAttendanceCreateAttendanceUserTaskRemedy func(ctx context.Context, request *CreateAttendanceUserTaskRemedyReq, options ...MethodOptionFunc) (*CreateAttendanceUserTaskRemedyResp, *Response, error) - mockAttendanceGetAttendanceUserTaskRemedy func(ctx context.Context, request *GetAttendanceUserTaskRemedyReq, options ...MethodOptionFunc) (*GetAttendanceUserTaskRemedyResp, *Response, error) - mockAuthGetAccessToken func(ctx context.Context, request *GetAccessTokenReq, options ...MethodOptionFunc) (*GetAccessTokenResp, *Response, error) - mockAuthRefreshAccessToken func(ctx context.Context, request *RefreshAccessTokenReq, options ...MethodOptionFunc) (*RefreshAccessTokenResp, *Response, error) - mockAuthResendAppTicket func(ctx context.Context, request *ResendAppTicketReq, options ...MethodOptionFunc) (*ResendAppTicketResp, *Response, error) - mockAuthGetUserInfo func(ctx context.Context, request *GetUserInfoReq, options ...MethodOptionFunc) (*GetUserInfoResp, *Response, error) - mockBaikeGetBaikeClassificationList func(ctx context.Context, request *GetBaikeClassificationListReq, options ...MethodOptionFunc) (*GetBaikeClassificationListResp, *Response, error) - mockBaikeCreateBaikeDraft func(ctx context.Context, request *CreateBaikeDraftReq, options ...MethodOptionFunc) (*CreateBaikeDraftResp, *Response, error) - mockBaikeCreateBaikeUpdate func(ctx context.Context, request *CreateBaikeUpdateReq, options ...MethodOptionFunc) (*CreateBaikeUpdateResp, *Response, error) - mockBaikeCreateBaikeEntity func(ctx context.Context, request *CreateBaikeEntityReq, options ...MethodOptionFunc) (*CreateBaikeEntityResp, *Response, error) - mockBaikeExtractBaikeEntity func(ctx context.Context, request *ExtractBaikeEntityReq, options ...MethodOptionFunc) (*ExtractBaikeEntityResp, *Response, error) - mockBaikeGetBaikeEntity func(ctx context.Context, request *GetBaikeEntityReq, options ...MethodOptionFunc) (*GetBaikeEntityResp, *Response, error) - mockBaikeHighlightBaikeEntity func(ctx context.Context, request *HighlightBaikeEntityReq, options ...MethodOptionFunc) (*HighlightBaikeEntityResp, *Response, error) - mockBaikeGetBaikeEntityList func(ctx context.Context, request *GetBaikeEntityListReq, options ...MethodOptionFunc) (*GetBaikeEntityListResp, *Response, error) - mockBaikeMatchBaikeEntity func(ctx context.Context, request *MatchBaikeEntityReq, options ...MethodOptionFunc) (*MatchBaikeEntityResp, *Response, error) - mockBaikeSearchBaikeEntity func(ctx context.Context, request *SearchBaikeEntityReq, options ...MethodOptionFunc) (*SearchBaikeEntityResp, *Response, error) - mockBaikeUpdateBaikeEntity func(ctx context.Context, request *UpdateBaikeEntityReq, options ...MethodOptionFunc) (*UpdateBaikeEntityResp, *Response, error) - mockBaikeDownloadBaikeImage func(ctx context.Context, request *DownloadBaikeImageReq, options ...MethodOptionFunc) (*DownloadBaikeImageResp, *Response, error) - mockBaikeUploadBaikeImage func(ctx context.Context, request *UploadBaikeImageReq, options ...MethodOptionFunc) (*UploadBaikeImageResp, *Response, error) - mockBitableCopyBitableApp func(ctx context.Context, request *CopyBitableAppReq, options ...MethodOptionFunc) (*CopyBitableAppResp, *Response, error) - mockBitableCreateBitableApp func(ctx context.Context, request *CreateBitableAppReq, options ...MethodOptionFunc) (*CreateBitableAppResp, *Response, error) - mockBitableCreateBitableAppRole func(ctx context.Context, request *CreateBitableAppRoleReq, options ...MethodOptionFunc) (*CreateBitableAppRoleResp, *Response, error) - mockBitableDeleteBitableAppRole func(ctx context.Context, request *DeleteBitableAppRoleReq, options ...MethodOptionFunc) (*DeleteBitableAppRoleResp, *Response, error) - mockBitableGetBitableAppRoleList func(ctx context.Context, request *GetBitableAppRoleListReq, options ...MethodOptionFunc) (*GetBitableAppRoleListResp, *Response, error) - mockBitableCreateBitableAppRoleMember func(ctx context.Context, request *CreateBitableAppRoleMemberReq, options ...MethodOptionFunc) (*CreateBitableAppRoleMemberResp, *Response, error) - mockBitableBatchCreateBitableAppRoleMember func(ctx context.Context, request *BatchCreateBitableAppRoleMemberReq, options ...MethodOptionFunc) (*BatchCreateBitableAppRoleMemberResp, *Response, error) - mockBitableDeleteBitableAppRoleMember func(ctx context.Context, request *DeleteBitableAppRoleMemberReq, options ...MethodOptionFunc) (*DeleteBitableAppRoleMemberResp, *Response, error) - mockBitableBatchDeleteBitableAppRoleMember func(ctx context.Context, request *BatchDeleteBitableAppRoleMemberReq, options ...MethodOptionFunc) (*BatchDeleteBitableAppRoleMemberResp, *Response, error) - mockBitableGetBitableAppRoleMemberList func(ctx context.Context, request *GetBitableAppRoleMemberListReq, options ...MethodOptionFunc) (*GetBitableAppRoleMemberListResp, *Response, error) - mockBitableUpdateBitableAppRole func(ctx context.Context, request *UpdateBitableAppRoleReq, options ...MethodOptionFunc) (*UpdateBitableAppRoleResp, *Response, error) - mockBitableCopyBitableDashboard func(ctx context.Context, request *CopyBitableDashboardReq, options ...MethodOptionFunc) (*CopyBitableDashboardResp, *Response, error) - mockBitableGetBitableDashboardList func(ctx context.Context, request *GetBitableDashboardListReq, options ...MethodOptionFunc) (*GetBitableDashboardListResp, *Response, error) - mockBitableCreateBitableField func(ctx context.Context, request *CreateBitableFieldReq, options ...MethodOptionFunc) (*CreateBitableFieldResp, *Response, error) - mockBitableDeleteBitableField func(ctx context.Context, request *DeleteBitableFieldReq, options ...MethodOptionFunc) (*DeleteBitableFieldResp, *Response, error) - mockBitableGetBitableFieldList func(ctx context.Context, request *GetBitableFieldListReq, options ...MethodOptionFunc) (*GetBitableFieldListResp, *Response, error) - mockBitableUpdateBitableField func(ctx context.Context, request *UpdateBitableFieldReq, options ...MethodOptionFunc) (*UpdateBitableFieldResp, *Response, error) - mockBitableGetBitableMeta func(ctx context.Context, request *GetBitableMetaReq, options ...MethodOptionFunc) (*GetBitableMetaResp, *Response, error) - mockBitableUpdateBitableMeta func(ctx context.Context, request *UpdateBitableMetaReq, options ...MethodOptionFunc) (*UpdateBitableMetaResp, *Response, error) - mockBitableBatchCreateBitableRecord func(ctx context.Context, request *BatchCreateBitableRecordReq, options ...MethodOptionFunc) (*BatchCreateBitableRecordResp, *Response, error) - mockBitableBatchDeleteBitableRecord func(ctx context.Context, request *BatchDeleteBitableRecordReq, options ...MethodOptionFunc) (*BatchDeleteBitableRecordResp, *Response, error) - mockBitableBatchUpdateBitableRecord func(ctx context.Context, request *BatchUpdateBitableRecordReq, options ...MethodOptionFunc) (*BatchUpdateBitableRecordResp, *Response, error) - mockBitableCreateBitableRecord func(ctx context.Context, request *CreateBitableRecordReq, options ...MethodOptionFunc) (*CreateBitableRecordResp, *Response, error) - mockBitableDeleteBitableRecord func(ctx context.Context, request *DeleteBitableRecordReq, options ...MethodOptionFunc) (*DeleteBitableRecordResp, *Response, error) - mockBitableGetBitableRecord func(ctx context.Context, request *GetBitableRecordReq, options ...MethodOptionFunc) (*GetBitableRecordResp, *Response, error) - mockBitableGetBitableRecordList func(ctx context.Context, request *GetBitableRecordListReq, options ...MethodOptionFunc) (*GetBitableRecordListResp, *Response, error) - mockBitableSearchBitableRecord func(ctx context.Context, request *SearchBitableRecordReq, options ...MethodOptionFunc) (*SearchBitableRecordResp, *Response, error) - mockBitableUpdateBitableRecord func(ctx context.Context, request *UpdateBitableRecordReq, options ...MethodOptionFunc) (*UpdateBitableRecordResp, *Response, error) - mockBitableBatchCreateBitableTable func(ctx context.Context, request *BatchCreateBitableTableReq, options ...MethodOptionFunc) (*BatchCreateBitableTableResp, *Response, error) - mockBitableBatchDeleteBitableTable func(ctx context.Context, request *BatchDeleteBitableTableReq, options ...MethodOptionFunc) (*BatchDeleteBitableTableResp, *Response, error) - mockBitableCreateBitableTable func(ctx context.Context, request *CreateBitableTableReq, options ...MethodOptionFunc) (*CreateBitableTableResp, *Response, error) - mockBitableDeleteBitableTable func(ctx context.Context, request *DeleteBitableTableReq, options ...MethodOptionFunc) (*DeleteBitableTableResp, *Response, error) - mockBitableGetBitableTableFormFieldList func(ctx context.Context, request *GetBitableTableFormFieldListReq, options ...MethodOptionFunc) (*GetBitableTableFormFieldListResp, *Response, error) - mockBitableUpdateBitableTableFormField func(ctx context.Context, request *UpdateBitableTableFormFieldReq, options ...MethodOptionFunc) (*UpdateBitableTableFormFieldResp, *Response, error) - mockBitableGetBitableTableForm func(ctx context.Context, request *GetBitableTableFormReq, options ...MethodOptionFunc) (*GetBitableTableFormResp, *Response, error) - mockBitableUpdateBitableTableForm func(ctx context.Context, request *UpdateBitableTableFormReq, options ...MethodOptionFunc) (*UpdateBitableTableFormResp, *Response, error) - mockBitableGetBitableTableList func(ctx context.Context, request *GetBitableTableListReq, options ...MethodOptionFunc) (*GetBitableTableListResp, *Response, error) - mockBitableUpdateBitableTable func(ctx context.Context, request *UpdateBitableTableReq, options ...MethodOptionFunc) (*UpdateBitableTableResp, *Response, error) - mockBitableCreateBitableView func(ctx context.Context, request *CreateBitableViewReq, options ...MethodOptionFunc) (*CreateBitableViewResp, *Response, error) - mockBitableDeleteBitableView func(ctx context.Context, request *DeleteBitableViewReq, options ...MethodOptionFunc) (*DeleteBitableViewResp, *Response, error) - mockBitableGetBitableView func(ctx context.Context, request *GetBitableViewReq, options ...MethodOptionFunc) (*GetBitableViewResp, *Response, error) - mockBitableGetBitableViewList func(ctx context.Context, request *GetBitableViewListReq, options ...MethodOptionFunc) (*GetBitableViewListResp, *Response, error) - mockBitableUpdateBitableView func(ctx context.Context, request *UpdateBitableViewReq, options ...MethodOptionFunc) (*UpdateBitableViewResp, *Response, error) - mockBotAddBotToChat func(ctx context.Context, request *AddBotToChatReq, options ...MethodOptionFunc) (*AddBotToChatResp, *Response, error) - mockBotGetBotInfo func(ctx context.Context, request *GetBotInfoReq, options ...MethodOptionFunc) (*GetBotInfoResp, *Response, error) - mockCalendarCreateCalendarACL func(ctx context.Context, request *CreateCalendarACLReq, options ...MethodOptionFunc) (*CreateCalendarACLResp, *Response, error) - mockCalendarDeleteCalendarACL func(ctx context.Context, request *DeleteCalendarACLReq, options ...MethodOptionFunc) (*DeleteCalendarACLResp, *Response, error) - mockCalendarGetCalendarACLList func(ctx context.Context, request *GetCalendarACLListReq, options ...MethodOptionFunc) (*GetCalendarACLListResp, *Response, error) - mockCalendarSubscribeCalendarACL func(ctx context.Context, request *SubscribeCalendarACLReq, options ...MethodOptionFunc) (*SubscribeCalendarACLResp, *Response, error) - mockCalendarUnsubscribeCalendarACL func(ctx context.Context, request *UnsubscribeCalendarACLReq, options ...MethodOptionFunc) (*UnsubscribeCalendarACLResp, *Response, error) - mockCalendarCreateCalendar func(ctx context.Context, request *CreateCalendarReq, options ...MethodOptionFunc) (*CreateCalendarResp, *Response, error) - mockCalendarDeleteCalendar func(ctx context.Context, request *DeleteCalendarReq, options ...MethodOptionFunc) (*DeleteCalendarResp, *Response, error) - mockCalendarGetCalendarEventAttendeeChatMemberList func(ctx context.Context, request *GetCalendarEventAttendeeChatMemberListReq, options ...MethodOptionFunc) (*GetCalendarEventAttendeeChatMemberListResp, *Response, error) - mockCalendarCreateCalendarEventAttendee func(ctx context.Context, request *CreateCalendarEventAttendeeReq, options ...MethodOptionFunc) (*CreateCalendarEventAttendeeResp, *Response, error) - mockCalendarDeleteCalendarEventAttendee func(ctx context.Context, request *DeleteCalendarEventAttendeeReq, options ...MethodOptionFunc) (*DeleteCalendarEventAttendeeResp, *Response, error) - mockCalendarGetCalendarEventAttendeeList func(ctx context.Context, request *GetCalendarEventAttendeeListReq, options ...MethodOptionFunc) (*GetCalendarEventAttendeeListResp, *Response, error) - mockCalendarCreateCalendarEvent func(ctx context.Context, request *CreateCalendarEventReq, options ...MethodOptionFunc) (*CreateCalendarEventResp, *Response, error) - mockCalendarDeleteCalendarEvent func(ctx context.Context, request *DeleteCalendarEventReq, options ...MethodOptionFunc) (*DeleteCalendarEventResp, *Response, error) - mockCalendarGetCalendarEvent func(ctx context.Context, request *GetCalendarEventReq, options ...MethodOptionFunc) (*GetCalendarEventResp, *Response, error) - mockCalendarGetCalendarEventList func(ctx context.Context, request *GetCalendarEventListReq, options ...MethodOptionFunc) (*GetCalendarEventListResp, *Response, error) - mockCalendarGetCalendarEventInstanceList func(ctx context.Context, request *GetCalendarEventInstanceListReq, options ...MethodOptionFunc) (*GetCalendarEventInstanceListResp, *Response, error) - mockCalendarGetCalendarEventInstanceViewList func(ctx context.Context, request *GetCalendarEventInstanceViewListReq, options ...MethodOptionFunc) (*GetCalendarEventInstanceViewListResp, *Response, error) - mockCalendarCreateCalendarEventMeetingChat func(ctx context.Context, request *CreateCalendarEventMeetingChatReq, options ...MethodOptionFunc) (*CreateCalendarEventMeetingChatResp, *Response, error) - mockCalendarDeleteCalendarEventMeetingChat func(ctx context.Context, request *DeleteCalendarEventMeetingChatReq, options ...MethodOptionFunc) (*DeleteCalendarEventMeetingChatResp, *Response, error) - mockCalendarUpdateCalendarEvent func(ctx context.Context, request *UpdateCalendarEventReq, options ...MethodOptionFunc) (*UpdateCalendarEventResp, *Response, error) - mockCalendarReplyCalendarEvent func(ctx context.Context, request *ReplyCalendarEventReq, options ...MethodOptionFunc) (*ReplyCalendarEventResp, *Response, error) - mockCalendarSearchCalendarEvent func(ctx context.Context, request *SearchCalendarEventReq, options ...MethodOptionFunc) (*SearchCalendarEventResp, *Response, error) - mockCalendarSubscribeCalendarEvent func(ctx context.Context, request *SubscribeCalendarEventReq, options ...MethodOptionFunc) (*SubscribeCalendarEventResp, *Response, error) - mockCalendarUnsubscribeCalendarEvent func(ctx context.Context, request *UnsubscribeCalendarEventReq, options ...MethodOptionFunc) (*UnsubscribeCalendarEventResp, *Response, error) - mockCalendarGetCalendarFreeBusyList func(ctx context.Context, request *GetCalendarFreeBusyListReq, options ...MethodOptionFunc) (*GetCalendarFreeBusyListResp, *Response, error) - mockCalendarGetCalendar func(ctx context.Context, request *GetCalendarReq, options ...MethodOptionFunc) (*GetCalendarResp, *Response, error) - mockCalendarGetCalendarList func(ctx context.Context, request *GetCalendarListReq, options ...MethodOptionFunc) (*GetCalendarListResp, *Response, error) - mockCalendarUpdateCalendar func(ctx context.Context, request *UpdateCalendarReq, options ...MethodOptionFunc) (*UpdateCalendarResp, *Response, error) - mockCalendarGetPrimaryCalendar func(ctx context.Context, request *GetPrimaryCalendarReq, options ...MethodOptionFunc) (*GetPrimaryCalendarResp, *Response, error) - mockCalendarCreateCalendarPrimarys func(ctx context.Context, request *CreateCalendarPrimarysReq, options ...MethodOptionFunc) (*CreateCalendarPrimarysResp, *Response, error) - mockCalendarSearchCalendar func(ctx context.Context, request *SearchCalendarReq, options ...MethodOptionFunc) (*SearchCalendarResp, *Response, error) - mockCalendarSubscribeCalendar func(ctx context.Context, request *SubscribeCalendarReq, options ...MethodOptionFunc) (*SubscribeCalendarResp, *Response, error) - mockCalendarSubscribeCalendarChangeEvent func(ctx context.Context, request *SubscribeCalendarChangeEventReq, options ...MethodOptionFunc) (*SubscribeCalendarChangeEventResp, *Response, error) - mockCalendarCreateCalendarTimeoffEvent func(ctx context.Context, request *CreateCalendarTimeoffEventReq, options ...MethodOptionFunc) (*CreateCalendarTimeoffEventResp, *Response, error) - mockCalendarDeleteCalendarTimeoffEvent func(ctx context.Context, request *DeleteCalendarTimeoffEventReq, options ...MethodOptionFunc) (*DeleteCalendarTimeoffEventResp, *Response, error) - mockCalendarUnsubscribeCalendar func(ctx context.Context, request *UnsubscribeCalendarReq, options ...MethodOptionFunc) (*UnsubscribeCalendarResp, *Response, error) - mockCalendarUnsubscribeCalendarChangeEvent func(ctx context.Context, request *UnsubscribeCalendarChangeEventReq, options ...MethodOptionFunc) (*UnsubscribeCalendarChangeEventResp, *Response, error) - mockCalendarCreateCalendarExchangeBinding func(ctx context.Context, request *CreateCalendarExchangeBindingReq, options ...MethodOptionFunc) (*CreateCalendarExchangeBindingResp, *Response, error) - mockCalendarDeleteCalendarExchangeBinding func(ctx context.Context, request *DeleteCalendarExchangeBindingReq, options ...MethodOptionFunc) (*DeleteCalendarExchangeBindingResp, *Response, error) - mockCalendarGetCalendarExchangeBinding func(ctx context.Context, request *GetCalendarExchangeBindingReq, options ...MethodOptionFunc) (*GetCalendarExchangeBindingResp, *Response, error) - mockCalendarGenerateCaldavConf func(ctx context.Context, request *GenerateCaldavConfReq, options ...MethodOptionFunc) (*GenerateCaldavConfResp, *Response, error) - mockCalendarBatchGetCalendarMeetingRoomFreebusy func(ctx context.Context, request *BatchGetCalendarMeetingRoomFreebusyReq, options ...MethodOptionFunc) (*BatchGetCalendarMeetingRoomFreebusyResp, *Response, error) - mockCalendarReplyCalendarMeetingRoomInstance func(ctx context.Context, request *ReplyCalendarMeetingRoomInstanceReq, options ...MethodOptionFunc) (*ReplyCalendarMeetingRoomInstanceResp, *Response, error) - mockCalendarBatchGetCalendarMeetingRoomSummary func(ctx context.Context, request *BatchGetCalendarMeetingRoomSummaryReq, options ...MethodOptionFunc) (*BatchGetCalendarMeetingRoomSummaryResp, *Response, error) - mockDriveGetDriveSheetDefaultImportResult func(ctx context.Context, request *GetDriveSheetDefaultImportResultReq, options ...MethodOptionFunc) (*GetDriveSheetDefaultImportResultResp, *Response, error) - mockChatGetChatAnnouncement func(ctx context.Context, request *GetChatAnnouncementReq, options ...MethodOptionFunc) (*GetChatAnnouncementResp, *Response, error) - mockChatUpdateChatAnnouncement func(ctx context.Context, request *UpdateChatAnnouncementReq, options ...MethodOptionFunc) (*UpdateChatAnnouncementResp, *Response, error) - mockChatCreateChat func(ctx context.Context, request *CreateChatReq, options ...MethodOptionFunc) (*CreateChatResp, *Response, error) - mockChatDeleteChat func(ctx context.Context, request *DeleteChatReq, options ...MethodOptionFunc) (*DeleteChatResp, *Response, error) - mockChatGetChat func(ctx context.Context, request *GetChatReq, options ...MethodOptionFunc) (*GetChatResp, *Response, error) - mockChatGetChatListOfSelf func(ctx context.Context, request *GetChatListOfSelfReq, options ...MethodOptionFunc) (*GetChatListOfSelfResp, *Response, error) - mockChatGetChatOld func(ctx context.Context, request *GetChatOldReq, options ...MethodOptionFunc) (*GetChatOldResp, *Response, error) - mockChatJoinChat func(ctx context.Context, request *JoinChatReq, options ...MethodOptionFunc) (*JoinChatResp, *Response, error) - mockChatCreateChatManager func(ctx context.Context, request *CreateChatManagerReq, options ...MethodOptionFunc) (*CreateChatManagerResp, *Response, error) - mockChatDeleteChatManager func(ctx context.Context, request *DeleteChatManagerReq, options ...MethodOptionFunc) (*DeleteChatManagerResp, *Response, error) - mockChatAddChatMember func(ctx context.Context, request *AddChatMemberReq, options ...MethodOptionFunc) (*AddChatMemberResp, *Response, error) - mockChatDeleteChatMember func(ctx context.Context, request *DeleteChatMemberReq, options ...MethodOptionFunc) (*DeleteChatMemberResp, *Response, error) - mockChatGetChatMemberList func(ctx context.Context, request *GetChatMemberListReq, options ...MethodOptionFunc) (*GetChatMemberListResp, *Response, error) - mockChatIsInChat func(ctx context.Context, request *IsInChatReq, options ...MethodOptionFunc) (*IsInChatResp, *Response, error) - mockChatCreateChatMenuTree func(ctx context.Context, request *CreateChatMenuTreeReq, options ...MethodOptionFunc) (*CreateChatMenuTreeResp, *Response, error) - mockChatDeleteChatMenuTree func(ctx context.Context, request *DeleteChatMenuTreeReq, options ...MethodOptionFunc) (*DeleteChatMenuTreeResp, *Response, error) - mockChatGetChatMenuTree func(ctx context.Context, request *GetChatMenuTreeReq, options ...MethodOptionFunc) (*GetChatMenuTreeResp, *Response, error) - mockChatSortChatMenuTree func(ctx context.Context, request *SortChatMenuTreeReq, options ...MethodOptionFunc) (*SortChatMenuTreeResp, *Response, error) - mockChatUpdateChatMenuTree func(ctx context.Context, request *UpdateChatMenuTreeReq, options ...MethodOptionFunc) (*UpdateChatMenuTreeResp, *Response, error) - mockChatGetChatModeration func(ctx context.Context, request *GetChatModerationReq, options ...MethodOptionFunc) (*GetChatModerationResp, *Response, error) - mockChatUpdateChatModeration func(ctx context.Context, request *UpdateChatModerationReq, options ...MethodOptionFunc) (*UpdateChatModerationResp, *Response, error) - mockChatSearchChat func(ctx context.Context, request *SearchChatReq, options ...MethodOptionFunc) (*SearchChatResp, *Response, error) - mockChatGenChatShareLink func(ctx context.Context, request *GenChatShareLinkReq, options ...MethodOptionFunc) (*GenChatShareLinkResp, *Response, error) - mockChatCreateChatTab func(ctx context.Context, request *CreateChatTabReq, options ...MethodOptionFunc) (*CreateChatTabResp, *Response, error) - mockChatDeleteChatTab func(ctx context.Context, request *DeleteChatTabReq, options ...MethodOptionFunc) (*DeleteChatTabResp, *Response, error) - mockChatGetChatTabList func(ctx context.Context, request *GetChatTabListReq, options ...MethodOptionFunc) (*GetChatTabListResp, *Response, error) - mockChatSortChatTab func(ctx context.Context, request *SortChatTabReq, options ...MethodOptionFunc) (*SortChatTabResp, *Response, error) - mockChatUpdateChatTab func(ctx context.Context, request *UpdateChatTabReq, options ...MethodOptionFunc) (*UpdateChatTabResp, *Response, error) - mockChatDeleteChatTopNotice func(ctx context.Context, request *DeleteChatTopNoticeReq, options ...MethodOptionFunc) (*DeleteChatTopNoticeResp, *Response, error) - mockChatUpdateChatTopNotice func(ctx context.Context, request *UpdateChatTopNoticeReq, options ...MethodOptionFunc) (*UpdateChatTopNoticeResp, *Response, error) - mockChatUpdateChat func(ctx context.Context, request *UpdateChatReq, options ...MethodOptionFunc) (*UpdateChatResp, *Response, error) - mockContactGetContactCustomAttrList func(ctx context.Context, request *GetContactCustomAttrListReq, options ...MethodOptionFunc) (*GetContactCustomAttrListResp, *Response, error) - mockContactCreateDepartment func(ctx context.Context, request *CreateDepartmentReq, options ...MethodOptionFunc) (*CreateDepartmentResp, *Response, error) - mockContactDeleteDepartment func(ctx context.Context, request *DeleteDepartmentReq, options ...MethodOptionFunc) (*DeleteDepartmentResp, *Response, error) - mockContactUpdateDepartmentID func(ctx context.Context, request *UpdateDepartmentIDReq, options ...MethodOptionFunc) (*UpdateDepartmentIDResp, *Response, error) - mockContactGetDepartment func(ctx context.Context, request *GetDepartmentReq, options ...MethodOptionFunc) (*GetDepartmentResp, *Response, error) - mockContactBatchGetDepartment func(ctx context.Context, request *BatchGetDepartmentReq, options ...MethodOptionFunc) (*BatchGetDepartmentResp, *Response, error) - mockContactGetDepartmentList func(ctx context.Context, request *GetDepartmentListReq, options ...MethodOptionFunc) (*GetDepartmentListResp, *Response, error) - mockContactGetDepartmentListOld func(ctx context.Context, request *GetDepartmentListOldReq, options ...MethodOptionFunc) (*GetDepartmentListOldResp, *Response, error) - mockContactGetParentDepartment func(ctx context.Context, request *GetParentDepartmentReq, options ...MethodOptionFunc) (*GetParentDepartmentResp, *Response, error) - mockContactSearchDepartment func(ctx context.Context, request *SearchDepartmentReq, options ...MethodOptionFunc) (*SearchDepartmentResp, *Response, error) - mockContactUnbindDepartmentChat func(ctx context.Context, request *UnbindDepartmentChatReq, options ...MethodOptionFunc) (*UnbindDepartmentChatResp, *Response, error) - mockContactUpdateDepartment func(ctx context.Context, request *UpdateDepartmentReq, options ...MethodOptionFunc) (*UpdateDepartmentResp, *Response, error) - mockContactUpdateDepartmentPatch func(ctx context.Context, request *UpdateDepartmentPatchReq, options ...MethodOptionFunc) (*UpdateDepartmentPatchResp, *Response, error) - mockContactCreateEmployeeTypeEnum func(ctx context.Context, request *CreateEmployeeTypeEnumReq, options ...MethodOptionFunc) (*CreateEmployeeTypeEnumResp, *Response, error) - mockContactDeleteEmployeeTypeEnum func(ctx context.Context, request *DeleteEmployeeTypeEnumReq, options ...MethodOptionFunc) (*DeleteEmployeeTypeEnumResp, *Response, error) - mockContactGetEmployeeTypeEnumList func(ctx context.Context, request *GetEmployeeTypeEnumListReq, options ...MethodOptionFunc) (*GetEmployeeTypeEnumListResp, *Response, error) - mockContactUpdateEmployeeTypeEnumPatch func(ctx context.Context, request *UpdateEmployeeTypeEnumPatchReq, options ...MethodOptionFunc) (*UpdateEmployeeTypeEnumPatchResp, *Response, error) - mockContactCreateContactFunctionalRole func(ctx context.Context, request *CreateContactFunctionalRoleReq, options ...MethodOptionFunc) (*CreateContactFunctionalRoleResp, *Response, error) - mockContactDeleteContactFunctionalRole func(ctx context.Context, request *DeleteContactFunctionalRoleReq, options ...MethodOptionFunc) (*DeleteContactFunctionalRoleResp, *Response, error) - mockContactBatchCreateContactFunctionalRoleMember func(ctx context.Context, request *BatchCreateContactFunctionalRoleMemberReq, options ...MethodOptionFunc) (*BatchCreateContactFunctionalRoleMemberResp, *Response, error) - mockContactBatchDeleteContactFunctionalRoleMember func(ctx context.Context, request *BatchDeleteContactFunctionalRoleMemberReq, options ...MethodOptionFunc) (*BatchDeleteContactFunctionalRoleMemberResp, *Response, error) - mockContactGetContactFunctionalRoleMember func(ctx context.Context, request *GetContactFunctionalRoleMemberReq, options ...MethodOptionFunc) (*GetContactFunctionalRoleMemberResp, *Response, error) - mockContactGetContactFunctionalRoleMemberScope func(ctx context.Context, request *GetContactFunctionalRoleMemberScopeReq, options ...MethodOptionFunc) (*GetContactFunctionalRoleMemberScopeResp, *Response, error) - mockContactUpdateContactFunctionalRoleMemberScope func(ctx context.Context, request *UpdateContactFunctionalRoleMemberScopeReq, options ...MethodOptionFunc) (*UpdateContactFunctionalRoleMemberScopeResp, *Response, error) - mockContactUpdateContactFunctionalRole func(ctx context.Context, request *UpdateContactFunctionalRoleReq, options ...MethodOptionFunc) (*UpdateContactFunctionalRoleResp, *Response, error) - mockContactDeleteContactGroup func(ctx context.Context, request *DeleteContactGroupReq, options ...MethodOptionFunc) (*DeleteContactGroupResp, *Response, error) - mockContactGetContactGroup func(ctx context.Context, request *GetContactGroupReq, options ...MethodOptionFunc) (*GetContactGroupResp, *Response, error) - mockContactCreateContactGroup func(ctx context.Context, request *CreateContactGroupReq, options ...MethodOptionFunc) (*CreateContactGroupResp, *Response, error) - mockContactGetContactGroupList func(ctx context.Context, request *GetContactGroupListReq, options ...MethodOptionFunc) (*GetContactGroupListResp, *Response, error) - mockContactAddContactGroupMember func(ctx context.Context, request *AddContactGroupMemberReq, options ...MethodOptionFunc) (*AddContactGroupMemberResp, *Response, error) - mockContactBatchAddContactGroupMember func(ctx context.Context, request *BatchAddContactGroupMemberReq, options ...MethodOptionFunc) (*BatchAddContactGroupMemberResp, *Response, error) - mockContactGetContactMemberGroupList func(ctx context.Context, request *GetContactMemberGroupListReq, options ...MethodOptionFunc) (*GetContactMemberGroupListResp, *Response, error) - mockContactDeleteContactGroupMember func(ctx context.Context, request *DeleteContactGroupMemberReq, options ...MethodOptionFunc) (*DeleteContactGroupMemberResp, *Response, error) - mockContactBatchDeleteContactGroupMember func(ctx context.Context, request *BatchDeleteContactGroupMemberReq, options ...MethodOptionFunc) (*BatchDeleteContactGroupMemberResp, *Response, error) - mockContactGetContactGroupMember func(ctx context.Context, request *GetContactGroupMemberReq, options ...MethodOptionFunc) (*GetContactGroupMemberResp, *Response, error) - mockContactUpdateContactGroup func(ctx context.Context, request *UpdateContactGroupReq, options ...MethodOptionFunc) (*UpdateContactGroupResp, *Response, error) - mockContactCreateContactJobFamily func(ctx context.Context, request *CreateContactJobFamilyReq, options ...MethodOptionFunc) (*CreateContactJobFamilyResp, *Response, error) - mockContactDeleteContactJobFamily func(ctx context.Context, request *DeleteContactJobFamilyReq, options ...MethodOptionFunc) (*DeleteContactJobFamilyResp, *Response, error) - mockContactGetContactJobFamily func(ctx context.Context, request *GetContactJobFamilyReq, options ...MethodOptionFunc) (*GetContactJobFamilyResp, *Response, error) - mockContactGetContactJobFamilyList func(ctx context.Context, request *GetContactJobFamilyListReq, options ...MethodOptionFunc) (*GetContactJobFamilyListResp, *Response, error) - mockContactUpdateContactJobFamily func(ctx context.Context, request *UpdateContactJobFamilyReq, options ...MethodOptionFunc) (*UpdateContactJobFamilyResp, *Response, error) - mockContactCreateContactJobLevel func(ctx context.Context, request *CreateContactJobLevelReq, options ...MethodOptionFunc) (*CreateContactJobLevelResp, *Response, error) - mockContactDeleteContactJobLevel func(ctx context.Context, request *DeleteContactJobLevelReq, options ...MethodOptionFunc) (*DeleteContactJobLevelResp, *Response, error) - mockContactGetContactJobLevel func(ctx context.Context, request *GetContactJobLevelReq, options ...MethodOptionFunc) (*GetContactJobLevelResp, *Response, error) - mockContactGetContactJobLevelList func(ctx context.Context, request *GetContactJobLevelListReq, options ...MethodOptionFunc) (*GetContactJobLevelListResp, *Response, error) - mockContactUpdateContactJobLevel func(ctx context.Context, request *UpdateContactJobLevelReq, options ...MethodOptionFunc) (*UpdateContactJobLevelResp, *Response, error) - mockContactGetContactJobTitle func(ctx context.Context, request *GetContactJobTitleReq, options ...MethodOptionFunc) (*GetContactJobTitleResp, *Response, error) - mockContactGetContactJobTitleList func(ctx context.Context, request *GetContactJobTitleListReq, options ...MethodOptionFunc) (*GetContactJobTitleListResp, *Response, error) - mockContactGetContactScopeList func(ctx context.Context, request *GetContactScopeListReq, options ...MethodOptionFunc) (*GetContactScopeListResp, *Response, error) - mockContactBindContactUnitDepartment func(ctx context.Context, request *BindContactUnitDepartmentReq, options ...MethodOptionFunc) (*BindContactUnitDepartmentResp, *Response, error) - mockContactCreateContactUnit func(ctx context.Context, request *CreateContactUnitReq, options ...MethodOptionFunc) (*CreateContactUnitResp, *Response, error) - mockContactDeleteContactUnit func(ctx context.Context, request *DeleteContactUnitReq, options ...MethodOptionFunc) (*DeleteContactUnitResp, *Response, error) - mockContactGetContactUnit func(ctx context.Context, request *GetContactUnitReq, options ...MethodOptionFunc) (*GetContactUnitResp, *Response, error) - mockContactGetContactUnitList func(ctx context.Context, request *GetContactUnitListReq, options ...MethodOptionFunc) (*GetContactUnitListResp, *Response, error) - mockContactGetContactUnitDepartmentList func(ctx context.Context, request *GetContactUnitDepartmentListReq, options ...MethodOptionFunc) (*GetContactUnitDepartmentListResp, *Response, error) - mockContactUnbindContactUnitDepartment func(ctx context.Context, request *UnbindContactUnitDepartmentReq, options ...MethodOptionFunc) (*UnbindContactUnitDepartmentResp, *Response, error) - mockContactUpdateContactUnit func(ctx context.Context, request *UpdateContactUnitReq, options ...MethodOptionFunc) (*UpdateContactUnitResp, *Response, error) - mockContactBatchGetUserByID func(ctx context.Context, request *BatchGetUserByIDReq, options ...MethodOptionFunc) (*BatchGetUserByIDResp, *Response, error) - mockContactCreateUser func(ctx context.Context, request *CreateUserReq, options ...MethodOptionFunc) (*CreateUserResp, *Response, error) - mockContactDeleteUser func(ctx context.Context, request *DeleteUserReq, options ...MethodOptionFunc) (*DeleteUserResp, *Response, error) - mockContactGetUser func(ctx context.Context, request *GetUserReq, options ...MethodOptionFunc) (*GetUserResp, *Response, error) - mockContactBatchGetUser func(ctx context.Context, request *BatchGetUserReq, options ...MethodOptionFunc) (*BatchGetUserResp, *Response, error) - mockContactBatchGetUserByIDOld func(ctx context.Context, request *BatchGetUserByIDOldReq, options ...MethodOptionFunc) (*BatchGetUserByIDOldResp, *Response, error) - mockContactGetUserList func(ctx context.Context, request *GetUserListReq, options ...MethodOptionFunc) (*GetUserListResp, *Response, error) - mockContactGetUserListOld func(ctx context.Context, request *GetUserListOldReq, options ...MethodOptionFunc) (*GetUserListOldResp, *Response, error) - mockContactUpdateUserID func(ctx context.Context, request *UpdateUserIDReq, options ...MethodOptionFunc) (*UpdateUserIDResp, *Response, error) - mockContactResurrectUser func(ctx context.Context, request *ResurrectUserReq, options ...MethodOptionFunc) (*ResurrectUserResp, *Response, error) - mockContactSearchUserOld func(ctx context.Context, request *SearchUserOldReq, options ...MethodOptionFunc) (*SearchUserOldResp, *Response, error) - mockContactUpdateUser func(ctx context.Context, request *UpdateUserReq, options ...MethodOptionFunc) (*UpdateUserResp, *Response, error) - mockContactUpdateUserPatch func(ctx context.Context, request *UpdateUserPatchReq, options ...MethodOptionFunc) (*UpdateUserPatchResp, *Response, error) - mockContactBatchAddContactV2Department func(ctx context.Context, request *BatchAddContactV2DepartmentReq, options ...MethodOptionFunc) (*BatchAddContactV2DepartmentResp, *Response, error) - mockContactGetContactV2Task func(ctx context.Context, request *GetContactV2TaskReq, options ...MethodOptionFunc) (*GetContactV2TaskResp, *Response, error) - mockContactBatchAddContactV2User func(ctx context.Context, request *BatchAddContactV2UserReq, options ...MethodOptionFunc) (*BatchAddContactV2UserResp, *Response, error) - mockContactGetContactWorkCity func(ctx context.Context, request *GetContactWorkCityReq, options ...MethodOptionFunc) (*GetContactWorkCityResp, *Response, error) - mockContactGetContactWorkCityList func(ctx context.Context, request *GetContactWorkCityListReq, options ...MethodOptionFunc) (*GetContactWorkCityListResp, *Response, error) - mockCoreHRSearchCoreHRAssignedUser func(ctx context.Context, request *SearchCoreHRAssignedUserReq, options ...MethodOptionFunc) (*SearchCoreHRAssignedUserResp, *Response, error) - mockCoreHRGetCoreHRAuthorization func(ctx context.Context, request *GetCoreHRAuthorizationReq, options ...MethodOptionFunc) (*GetCoreHRAuthorizationResp, *Response, error) - mockCoreHRGetCoreHRAuthorizationList func(ctx context.Context, request *GetCoreHRAuthorizationListReq, options ...MethodOptionFunc) (*GetCoreHRAuthorizationListResp, *Response, error) - mockCoreHRSearchCoreHRBankBranch func(ctx context.Context, request *SearchCoreHRBankBranchReq, options ...MethodOptionFunc) (*SearchCoreHRBankBranchResp, *Response, error) - mockCoreHRSearchCoreHRBank func(ctx context.Context, request *SearchCoreHRBankReq, options ...MethodOptionFunc) (*SearchCoreHRBankResp, *Response, error) - mockCoreHRGetCoreHrbpByDepartment func(ctx context.Context, request *GetCoreHrbpByDepartmentReq, options ...MethodOptionFunc) (*GetCoreHrbpByDepartmentResp, *Response, error) - mockCoreHRBatchGetCoreHrbpByEmployee func(ctx context.Context, request *BatchGetCoreHrbpByEmployeeReq, options ...MethodOptionFunc) (*BatchGetCoreHrbpByEmployeeResp, *Response, error) - mockCoreHRGetCoreHrbpList func(ctx context.Context, request *GetCoreHrbpListReq, options ...MethodOptionFunc) (*GetCoreHrbpListResp, *Response, error) - mockCoreHRSearchCoreHRCity func(ctx context.Context, request *SearchCoreHRCityReq, options ...MethodOptionFunc) (*SearchCoreHRCityResp, *Response, error) - mockCoreHRCreateCoreHRCompany func(ctx context.Context, request *CreateCoreHRCompanyReq, options ...MethodOptionFunc) (*CreateCoreHRCompanyResp, *Response, error) - mockCoreHRDeleteCoreHRCompany func(ctx context.Context, request *DeleteCoreHRCompanyReq, options ...MethodOptionFunc) (*DeleteCoreHRCompanyResp, *Response, error) - mockCoreHRGetCoreHRCompany func(ctx context.Context, request *GetCoreHRCompanyReq, options ...MethodOptionFunc) (*GetCoreHRCompanyResp, *Response, error) - mockCoreHRBatchGetCoreHRCompany func(ctx context.Context, request *BatchGetCoreHRCompanyReq, options ...MethodOptionFunc) (*BatchGetCoreHRCompanyResp, *Response, error) - mockCoreHRGetCoreHRCompanyList func(ctx context.Context, request *GetCoreHRCompanyListReq, options ...MethodOptionFunc) (*GetCoreHRCompanyListResp, *Response, error) - mockCoreHRUpdateCoreHRCompany func(ctx context.Context, request *UpdateCoreHRCompanyReq, options ...MethodOptionFunc) (*UpdateCoreHRCompanyResp, *Response, error) - mockCoreHRQueryCoreHRCompensationArchive func(ctx context.Context, request *QueryCoreHRCompensationArchiveReq, options ...MethodOptionFunc) (*QueryCoreHRCompensationArchiveResp, *Response, error) - mockCoreHRGetCoreHRCompensationChangeReasonList func(ctx context.Context, request *GetCoreHRCompensationChangeReasonListReq, options ...MethodOptionFunc) (*GetCoreHRCompensationChangeReasonListResp, *Response, error) - mockCoreHRGetCoreHRCompensationIndicatorList func(ctx context.Context, request *GetCoreHRCompensationIndicatorListReq, options ...MethodOptionFunc) (*GetCoreHRCompensationIndicatorListResp, *Response, error) - mockCoreHRGetCoreHRCompensationItemCategoryList func(ctx context.Context, request *GetCoreHRCompensationItemCategoryListReq, options ...MethodOptionFunc) (*GetCoreHRCompensationItemCategoryListResp, *Response, error) - mockCoreHRGetCoreHRCompensationItemList func(ctx context.Context, request *GetCoreHRCompensationItemListReq, options ...MethodOptionFunc) (*GetCoreHRCompensationItemListResp, *Response, error) - mockCoreHRGetCoreHRCompensationPlanList func(ctx context.Context, request *GetCoreHRCompensationPlanListReq, options ...MethodOptionFunc) (*GetCoreHRCompensationPlanListResp, *Response, error) - mockCoreHRMatchCoreHRCompensationStandard func(ctx context.Context, request *MatchCoreHRCompensationStandardReq, options ...MethodOptionFunc) (*MatchCoreHRCompensationStandardResp, *Response, error) - mockCoreHRCreateCoreHRContract func(ctx context.Context, request *CreateCoreHRContractReq, options ...MethodOptionFunc) (*CreateCoreHRContractResp, *Response, error) - mockCoreHRDeleteCoreHRContract func(ctx context.Context, request *DeleteCoreHRContractReq, options ...MethodOptionFunc) (*DeleteCoreHRContractResp, *Response, error) - mockCoreHRGetCoreHRContract func(ctx context.Context, request *GetCoreHRContractReq, options ...MethodOptionFunc) (*GetCoreHRContractResp, *Response, error) - mockCoreHRGetCoreHRContractList func(ctx context.Context, request *GetCoreHRContractListReq, options ...MethodOptionFunc) (*GetCoreHRContractListResp, *Response, error) - mockCoreHRSearchCoreHRContract func(ctx context.Context, request *SearchCoreHRContractReq, options ...MethodOptionFunc) (*SearchCoreHRContractResp, *Response, error) - mockCoreHRUpdateCoreHRContract func(ctx context.Context, request *UpdateCoreHRContractReq, options ...MethodOptionFunc) (*UpdateCoreHRContractResp, *Response, error) - mockCoreHRActiveCoreHRCostCenter func(ctx context.Context, request *ActiveCoreHRCostCenterReq, options ...MethodOptionFunc) (*ActiveCoreHRCostCenterResp, *Response, error) - mockCoreHRCreateCoreHRCostCenter func(ctx context.Context, request *CreateCoreHRCostCenterReq, options ...MethodOptionFunc) (*CreateCoreHRCostCenterResp, *Response, error) - mockCoreHRDeleteCoreHRCostCenter func(ctx context.Context, request *DeleteCoreHRCostCenterReq, options ...MethodOptionFunc) (*DeleteCoreHRCostCenterResp, *Response, error) - mockCoreHRSearchCoreHRCostCenter func(ctx context.Context, request *SearchCoreHRCostCenterReq, options ...MethodOptionFunc) (*SearchCoreHRCostCenterResp, *Response, error) - mockCoreHRCreateCoreHRCostCenterVersion func(ctx context.Context, request *CreateCoreHRCostCenterVersionReq, options ...MethodOptionFunc) (*CreateCoreHRCostCenterVersionResp, *Response, error) - mockCoreHRDeleteCoreHRCostCenterVersion func(ctx context.Context, request *DeleteCoreHRCostCenterVersionReq, options ...MethodOptionFunc) (*DeleteCoreHRCostCenterVersionResp, *Response, error) - mockCoreHRUpdateCoreHRCostCenterVersion func(ctx context.Context, request *UpdateCoreHRCostCenterVersionReq, options ...MethodOptionFunc) (*UpdateCoreHRCostCenterVersionResp, *Response, error) - mockCoreHRGetCoreHRCountryRegion func(ctx context.Context, request *GetCoreHRCountryRegionReq, options ...MethodOptionFunc) (*GetCoreHRCountryRegionResp, *Response, error) - mockCoreHRGetCoreHRCountryRegionList func(ctx context.Context, request *GetCoreHRCountryRegionListReq, options ...MethodOptionFunc) (*GetCoreHRCountryRegionListResp, *Response, error) - mockCoreHRSearchCoreHRCountryRegion func(ctx context.Context, request *SearchCoreHRCountryRegionReq, options ...MethodOptionFunc) (*SearchCoreHRCountryRegionResp, *Response, error) - mockCoreHRSearchCoreHRCountryRegionSubdivision func(ctx context.Context, request *SearchCoreHRCountryRegionSubdivisionReq, options ...MethodOptionFunc) (*SearchCoreHRCountryRegionSubdivisionResp, *Response, error) - mockCoreHRGetCoreHRCurrency func(ctx context.Context, request *GetCoreHRCurrencyReq, options ...MethodOptionFunc) (*GetCoreHRCurrencyResp, *Response, error) - mockCoreHRGetCoreHRCurrencyList func(ctx context.Context, request *GetCoreHRCurrencyListReq, options ...MethodOptionFunc) (*GetCoreHRCurrencyListResp, *Response, error) - mockCoreHRSearchCoreHRCurrency func(ctx context.Context, request *SearchCoreHRCurrencyReq, options ...MethodOptionFunc) (*SearchCoreHRCurrencyResp, *Response, error) - mockCoreHRGetCoreHRCustomField func(ctx context.Context, request *GetCoreHRCustomFieldReq, options ...MethodOptionFunc) (*GetCoreHRCustomFieldResp, *Response, error) - mockCoreHRGetCoreHRCustomFieldList func(ctx context.Context, request *GetCoreHRCustomFieldListReq, options ...MethodOptionFunc) (*GetCoreHRCustomFieldListResp, *Response, error) - mockCoreHRGetCoreHRCustomFieldObjectApiNameList func(ctx context.Context, request *GetCoreHRCustomFieldObjectApiNameListReq, options ...MethodOptionFunc) (*GetCoreHRCustomFieldObjectApiNameListResp, *Response, error) - mockCoreHRCreateCoreHRDepartment func(ctx context.Context, request *CreateCoreHRDepartmentReq, options ...MethodOptionFunc) (*CreateCoreHRDepartmentResp, *Response, error) - mockCoreHRDeleteCoreHRDepartment func(ctx context.Context, request *DeleteCoreHRDepartmentReq, options ...MethodOptionFunc) (*DeleteCoreHRDepartmentResp, *Response, error) - mockCoreHRGetCoreHRDepartment func(ctx context.Context, request *GetCoreHRDepartmentReq, options ...MethodOptionFunc) (*GetCoreHRDepartmentResp, *Response, error) - mockCoreHRBatchGetCoreHRDepartment func(ctx context.Context, request *BatchGetCoreHRDepartmentReq, options ...MethodOptionFunc) (*BatchGetCoreHRDepartmentResp, *Response, error) - mockCoreHRGetCoreHRDepartmentList func(ctx context.Context, request *GetCoreHRDepartmentListReq, options ...MethodOptionFunc) (*GetCoreHRDepartmentListResp, *Response, error) - mockCoreHRGetCoreHRDepartmentParentList func(ctx context.Context, request *GetCoreHRDepartmentParentListReq, options ...MethodOptionFunc) (*GetCoreHRDepartmentParentListResp, *Response, error) - mockCoreHRSearchCoreHRDepartment func(ctx context.Context, request *SearchCoreHRDepartmentReq, options ...MethodOptionFunc) (*SearchCoreHRDepartmentResp, *Response, error) - mockCoreHRBatchQueryCoreHRDepartmentTimeline func(ctx context.Context, request *BatchQueryCoreHRDepartmentTimelineReq, options ...MethodOptionFunc) (*BatchQueryCoreHRDepartmentTimelineResp, *Response, error) - mockCoreHRQueryCoreHRDepartmentTimeline func(ctx context.Context, request *QueryCoreHRDepartmentTimelineReq, options ...MethodOptionFunc) (*QueryCoreHRDepartmentTimelineResp, *Response, error) - mockCoreHRUpdateCoreHRDepartment func(ctx context.Context, request *UpdateCoreHRDepartmentReq, options ...MethodOptionFunc) (*UpdateCoreHRDepartmentResp, *Response, error) - mockCoreHRSearchCoreHRDistrict func(ctx context.Context, request *SearchCoreHRDistrictReq, options ...MethodOptionFunc) (*SearchCoreHRDistrictResp, *Response, error) - mockCoreHRBatchGetCoreHREmployee func(ctx context.Context, request *BatchGetCoreHREmployeeReq, options ...MethodOptionFunc) (*BatchGetCoreHREmployeeResp, *Response, error) - mockCoreHRSearchCoreHREmployee func(ctx context.Context, request *SearchCoreHREmployeeReq, options ...MethodOptionFunc) (*SearchCoreHREmployeeResp, *Response, error) - mockCoreHRCreateCoreHREmployeeType func(ctx context.Context, request *CreateCoreHREmployeeTypeReq, options ...MethodOptionFunc) (*CreateCoreHREmployeeTypeResp, *Response, error) - mockCoreHRDeleteCoreHREmployeeType func(ctx context.Context, request *DeleteCoreHREmployeeTypeReq, options ...MethodOptionFunc) (*DeleteCoreHREmployeeTypeResp, *Response, error) - mockCoreHRGetCoreHREmployeeType func(ctx context.Context, request *GetCoreHREmployeeTypeReq, options ...MethodOptionFunc) (*GetCoreHREmployeeTypeResp, *Response, error) - mockCoreHRGetCoreHREmployeeTypeList func(ctx context.Context, request *GetCoreHREmployeeTypeListReq, options ...MethodOptionFunc) (*GetCoreHREmployeeTypeListResp, *Response, error) - mockCoreHRUpdateCoreHREmployeeType func(ctx context.Context, request *UpdateCoreHREmployeeTypeReq, options ...MethodOptionFunc) (*UpdateCoreHREmployeeTypeResp, *Response, error) - mockCoreHRCreateCoreHREmployment func(ctx context.Context, request *CreateCoreHREmploymentReq, options ...MethodOptionFunc) (*CreateCoreHREmploymentResp, *Response, error) - mockCoreHRDeleteCoreHREmployment func(ctx context.Context, request *DeleteCoreHREmploymentReq, options ...MethodOptionFunc) (*DeleteCoreHREmploymentResp, *Response, error) - mockCoreHRUpdateCoreHREmployment func(ctx context.Context, request *UpdateCoreHREmploymentReq, options ...MethodOptionFunc) (*UpdateCoreHREmploymentResp, *Response, error) - mockCoreHRCreateCoreHRJobChange func(ctx context.Context, request *CreateCoreHRJobChangeReq, options ...MethodOptionFunc) (*CreateCoreHRJobChangeResp, *Response, error) - mockCoreHRSearchCoreHRJobChange func(ctx context.Context, request *SearchCoreHRJobChangeReq, options ...MethodOptionFunc) (*SearchCoreHRJobChangeResp, *Response, error) - mockCoreHRCreateCoreHRJob func(ctx context.Context, request *CreateCoreHRJobReq, options ...MethodOptionFunc) (*CreateCoreHRJobResp, *Response, error) - mockCoreHRBatchGetCoreHRJobData func(ctx context.Context, request *BatchGetCoreHRJobDataReq, options ...MethodOptionFunc) (*BatchGetCoreHRJobDataResp, *Response, error) - mockCoreHRCreateCoreHRJobData func(ctx context.Context, request *CreateCoreHRJobDataReq, options ...MethodOptionFunc) (*CreateCoreHRJobDataResp, *Response, error) - mockCoreHRDeleteCoreHRJobData func(ctx context.Context, request *DeleteCoreHRJobDataReq, options ...MethodOptionFunc) (*DeleteCoreHRJobDataResp, *Response, error) - mockCoreHRGetCoreHRJobData func(ctx context.Context, request *GetCoreHRJobDataReq, options ...MethodOptionFunc) (*GetCoreHRJobDataResp, *Response, error) - mockCoreHRGetCoreHRJobDataList func(ctx context.Context, request *GetCoreHRJobDataListReq, options ...MethodOptionFunc) (*GetCoreHRJobDataListResp, *Response, error) - mockCoreHRQueryCoreHRJobData func(ctx context.Context, request *QueryCoreHRJobDataReq, options ...MethodOptionFunc) (*QueryCoreHRJobDataResp, *Response, error) - mockCoreHRUpdateCoreHRJobData func(ctx context.Context, request *UpdateCoreHRJobDataReq, options ...MethodOptionFunc) (*UpdateCoreHRJobDataResp, *Response, error) - mockCoreHRDeleteCoreHRJob func(ctx context.Context, request *DeleteCoreHRJobReq, options ...MethodOptionFunc) (*DeleteCoreHRJobResp, *Response, error) - mockCoreHRCreateCoreHRJobFamily func(ctx context.Context, request *CreateCoreHRJobFamilyReq, options ...MethodOptionFunc) (*CreateCoreHRJobFamilyResp, *Response, error) - mockCoreHRDeleteCoreHRJobFamily func(ctx context.Context, request *DeleteCoreHRJobFamilyReq, options ...MethodOptionFunc) (*DeleteCoreHRJobFamilyResp, *Response, error) - mockCoreHRGetCoreHRJobFamily func(ctx context.Context, request *GetCoreHRJobFamilyReq, options ...MethodOptionFunc) (*GetCoreHRJobFamilyResp, *Response, error) - mockCoreHRBatchGetCoreHRJobFamily func(ctx context.Context, request *BatchGetCoreHRJobFamilyReq, options ...MethodOptionFunc) (*BatchGetCoreHRJobFamilyResp, *Response, error) - mockCoreHRGetCoreHRJobFamilyList func(ctx context.Context, request *GetCoreHRJobFamilyListReq, options ...MethodOptionFunc) (*GetCoreHRJobFamilyListResp, *Response, error) - mockCoreHRUpdateCoreHRJobFamily func(ctx context.Context, request *UpdateCoreHRJobFamilyReq, options ...MethodOptionFunc) (*UpdateCoreHRJobFamilyResp, *Response, error) - mockCoreHRGetCoreHRJob func(ctx context.Context, request *GetCoreHRJobReq, options ...MethodOptionFunc) (*GetCoreHRJobResp, *Response, error) - mockCoreHRGetCoreHRJobV2 func(ctx context.Context, request *GetCoreHRJobV2Req, options ...MethodOptionFunc) (*GetCoreHRJobV2Resp, *Response, error) - mockCoreHRQueryCoreHRJobGrade func(ctx context.Context, request *QueryCoreHRJobGradeReq, options ...MethodOptionFunc) (*QueryCoreHRJobGradeResp, *Response, error) - mockCoreHRCreateCoreHRJobLevel func(ctx context.Context, request *CreateCoreHRJobLevelReq, options ...MethodOptionFunc) (*CreateCoreHRJobLevelResp, *Response, error) - mockCoreHRDeleteCoreHRJobLevel func(ctx context.Context, request *DeleteCoreHRJobLevelReq, options ...MethodOptionFunc) (*DeleteCoreHRJobLevelResp, *Response, error) - mockCoreHRGetCoreHRJobLevel func(ctx context.Context, request *GetCoreHRJobLevelReq, options ...MethodOptionFunc) (*GetCoreHRJobLevelResp, *Response, error) - mockCoreHRBatchGetCoreHRJobLevel func(ctx context.Context, request *BatchGetCoreHRJobLevelReq, options ...MethodOptionFunc) (*BatchGetCoreHRJobLevelResp, *Response, error) - mockCoreHRGetCoreHRJobLevelList func(ctx context.Context, request *GetCoreHRJobLevelListReq, options ...MethodOptionFunc) (*GetCoreHRJobLevelListResp, *Response, error) - mockCoreHRUpdateCoreHRJobLevel func(ctx context.Context, request *UpdateCoreHRJobLevelReq, options ...MethodOptionFunc) (*UpdateCoreHRJobLevelResp, *Response, error) - mockCoreHRGetCoreHRJobList func(ctx context.Context, request *GetCoreHRJobListReq, options ...MethodOptionFunc) (*GetCoreHRJobListResp, *Response, error) - mockCoreHRGetCoreHRJobListV2 func(ctx context.Context, request *GetCoreHRJobListV2Req, options ...MethodOptionFunc) (*GetCoreHRJobListV2Resp, *Response, error) - mockCoreHRUpdateCoreHRJob func(ctx context.Context, request *UpdateCoreHRJobReq, options ...MethodOptionFunc) (*UpdateCoreHRJobResp, *Response, error) - mockCoreHRCreateCoreHRLeaveGrantingRecord func(ctx context.Context, request *CreateCoreHRLeaveGrantingRecordReq, options ...MethodOptionFunc) (*CreateCoreHRLeaveGrantingRecordResp, *Response, error) - mockCoreHRDeleteCoreHRLeaveGrantingRecord func(ctx context.Context, request *DeleteCoreHRLeaveGrantingRecordReq, options ...MethodOptionFunc) (*DeleteCoreHRLeaveGrantingRecordResp, *Response, error) - mockCoreHRGetCoreHRLeaveBalanceList func(ctx context.Context, request *GetCoreHRLeaveBalanceListReq, options ...MethodOptionFunc) (*GetCoreHRLeaveBalanceListResp, *Response, error) - mockCoreHRGetCoreHRLeaveRequestHistoryList func(ctx context.Context, request *GetCoreHRLeaveRequestHistoryListReq, options ...MethodOptionFunc) (*GetCoreHRLeaveRequestHistoryListResp, *Response, error) - mockCoreHRGetCoreHRLeaveTypeList func(ctx context.Context, request *GetCoreHRLeaveTypeListReq, options ...MethodOptionFunc) (*GetCoreHRLeaveTypeListResp, *Response, error) - mockCoreHRCreateCoreHRLocation func(ctx context.Context, request *CreateCoreHRLocationReq, options ...MethodOptionFunc) (*CreateCoreHRLocationResp, *Response, error) - mockCoreHRDeleteCoreHRLocation func(ctx context.Context, request *DeleteCoreHRLocationReq, options ...MethodOptionFunc) (*DeleteCoreHRLocationResp, *Response, error) - mockCoreHRGetCoreHRLocation func(ctx context.Context, request *GetCoreHRLocationReq, options ...MethodOptionFunc) (*GetCoreHRLocationResp, *Response, error) - mockCoreHRBatchGetCoreHRLocation func(ctx context.Context, request *BatchGetCoreHRLocationReq, options ...MethodOptionFunc) (*BatchGetCoreHRLocationResp, *Response, error) - mockCoreHRGetCoreHRLocationList func(ctx context.Context, request *GetCoreHRLocationListReq, options ...MethodOptionFunc) (*GetCoreHRLocationListResp, *Response, error) - mockCoreHRCreateCoreHRNationalIDType func(ctx context.Context, request *CreateCoreHRNationalIDTypeReq, options ...MethodOptionFunc) (*CreateCoreHRNationalIDTypeResp, *Response, error) - mockCoreHRDeleteCoreHRNationalIDType func(ctx context.Context, request *DeleteCoreHRNationalIDTypeReq, options ...MethodOptionFunc) (*DeleteCoreHRNationalIDTypeResp, *Response, error) - mockCoreHRGetCoreHRNationalIDType func(ctx context.Context, request *GetCoreHRNationalIDTypeReq, options ...MethodOptionFunc) (*GetCoreHRNationalIDTypeResp, *Response, error) - mockCoreHRGetCoreHRNationalIDTypeList func(ctx context.Context, request *GetCoreHRNationalIDTypeListReq, options ...MethodOptionFunc) (*GetCoreHRNationalIDTypeListResp, *Response, error) - mockCoreHRUpdateCoreHRNationalIDType func(ctx context.Context, request *UpdateCoreHRNationalIDTypeReq, options ...MethodOptionFunc) (*UpdateCoreHRNationalIDTypeResp, *Response, error) - mockCoreHRSearchCoreHRNationality func(ctx context.Context, request *SearchCoreHRNationalityReq, options ...MethodOptionFunc) (*SearchCoreHRNationalityResp, *Response, error) - mockCoreHRCreateCoreHROffboarding func(ctx context.Context, request *CreateCoreHROffboardingReq, options ...MethodOptionFunc) (*CreateCoreHROffboardingResp, *Response, error) - mockCoreHRGetCoreHROffboardingList func(ctx context.Context, request *GetCoreHROffboardingListReq, options ...MethodOptionFunc) (*GetCoreHROffboardingListResp, *Response, error) - mockCoreHRSearchCoreHROffboarding func(ctx context.Context, request *SearchCoreHROffboardingReq, options ...MethodOptionFunc) (*SearchCoreHROffboardingResp, *Response, error) - mockCoreHRCreateCoreHRPerson func(ctx context.Context, request *CreateCoreHRPersonReq, options ...MethodOptionFunc) (*CreateCoreHRPersonResp, *Response, error) - mockCoreHRDeleteCoreHRPerson func(ctx context.Context, request *DeleteCoreHRPersonReq, options ...MethodOptionFunc) (*DeleteCoreHRPersonResp, *Response, error) - mockCoreHRDownloadCoreHRPersonFile func(ctx context.Context, request *DownloadCoreHRPersonFileReq, options ...MethodOptionFunc) (*DownloadCoreHRPersonFileResp, *Response, error) - mockCoreHRUploadCoreHRPersonFile func(ctx context.Context, request *UploadCoreHRPersonFileReq, options ...MethodOptionFunc) (*UploadCoreHRPersonFileResp, *Response, error) - mockCoreHRGetCoreHRPerson func(ctx context.Context, request *GetCoreHRPersonReq, options ...MethodOptionFunc) (*GetCoreHRPersonResp, *Response, error) - mockCoreHRUpdateCoreHRPerson func(ctx context.Context, request *UpdateCoreHRPersonReq, options ...MethodOptionFunc) (*UpdateCoreHRPersonResp, *Response, error) - mockCoreHRCreateCoreHRPreHire func(ctx context.Context, request *CreateCoreHRPreHireReq, options ...MethodOptionFunc) (*CreateCoreHRPreHireResp, *Response, error) - mockCoreHRDeleteCoreHRPreHire func(ctx context.Context, request *DeleteCoreHRPreHireReq, options ...MethodOptionFunc) (*DeleteCoreHRPreHireResp, *Response, error) - mockCoreHRGetCoreHRPreHire func(ctx context.Context, request *GetCoreHRPreHireReq, options ...MethodOptionFunc) (*GetCoreHRPreHireResp, *Response, error) - mockCoreHRGetCoreHRPreHireList func(ctx context.Context, request *GetCoreHRPreHireListReq, options ...MethodOptionFunc) (*GetCoreHRPreHireListResp, *Response, error) - mockCoreHRSearchCoreHRPreHire func(ctx context.Context, request *SearchCoreHRPreHireReq, options ...MethodOptionFunc) (*SearchCoreHRPreHireResp, *Response, error) - mockCoreHRUpdateCoreHRPreHire func(ctx context.Context, request *UpdateCoreHRPreHireReq, options ...MethodOptionFunc) (*UpdateCoreHRPreHireResp, *Response, error) - mockCoreHRCreateCoreHRProbationAssessment func(ctx context.Context, request *CreateCoreHRProbationAssessmentReq, options ...MethodOptionFunc) (*CreateCoreHRProbationAssessmentResp, *Response, error) - mockCoreHRDeleteCoreHRProbationAssessment func(ctx context.Context, request *DeleteCoreHRProbationAssessmentReq, options ...MethodOptionFunc) (*DeleteCoreHRProbationAssessmentResp, *Response, error) - mockCoreHREnableDisableCoreHRProbationAssessment func(ctx context.Context, request *EnableDisableCoreHRProbationAssessmentReq, options ...MethodOptionFunc) (*EnableDisableCoreHRProbationAssessmentResp, *Response, error) - mockCoreHRUpdateCoreHRProbationAssessment func(ctx context.Context, request *UpdateCoreHRProbationAssessmentReq, options ...MethodOptionFunc) (*UpdateCoreHRProbationAssessmentResp, *Response, error) - mockCoreHRSearchCoreHRProbation func(ctx context.Context, request *SearchCoreHRProbationReq, options ...MethodOptionFunc) (*SearchCoreHRProbationResp, *Response, error) - mockCoreHRGetCoreHRProcessFormVariableData func(ctx context.Context, request *GetCoreHRProcessFormVariableDataReq, options ...MethodOptionFunc) (*GetCoreHRProcessFormVariableDataResp, *Response, error) - mockCoreHRGetCoreHRProcess func(ctx context.Context, request *GetCoreHRProcessReq, options ...MethodOptionFunc) (*GetCoreHRProcessResp, *Response, error) - mockCoreHRGetCoreHRProcessList func(ctx context.Context, request *GetCoreHRProcessListReq, options ...MethodOptionFunc) (*GetCoreHRProcessListResp, *Response, error) - mockCoreHRGetCoreHRSecurityGroupBp func(ctx context.Context, request *GetCoreHRSecurityGroupBpReq, options ...MethodOptionFunc) (*GetCoreHRSecurityGroupBpResp, *Response, error) - mockCoreHRGetCoreHRSecurityGroupList func(ctx context.Context, request *GetCoreHRSecurityGroupListReq, options ...MethodOptionFunc) (*GetCoreHRSecurityGroupListResp, *Response, error) - mockCoreHRGetCoreHRSubdivision func(ctx context.Context, request *GetCoreHRSubdivisionReq, options ...MethodOptionFunc) (*GetCoreHRSubdivisionResp, *Response, error) - mockCoreHRGetCoreHRSubdivisionList func(ctx context.Context, request *GetCoreHRSubdivisionListReq, options ...MethodOptionFunc) (*GetCoreHRSubdivisionListResp, *Response, error) - mockCoreHRGetCoreHRSubregion func(ctx context.Context, request *GetCoreHRSubregionReq, options ...MethodOptionFunc) (*GetCoreHRSubregionResp, *Response, error) - mockCoreHRGetCoreHRSubregionList func(ctx context.Context, request *GetCoreHRSubregionListReq, options ...MethodOptionFunc) (*GetCoreHRSubregionListResp, *Response, error) - mockCoreHRGetCoreHRTransferReasonList func(ctx context.Context, request *GetCoreHRTransferReasonListReq, options ...MethodOptionFunc) (*GetCoreHRTransferReasonListResp, *Response, error) - mockCoreHRGetCoreHRTransferTypeList func(ctx context.Context, request *GetCoreHRTransferTypeListReq, options ...MethodOptionFunc) (*GetCoreHRTransferTypeListResp, *Response, error) - mockCoreHRCreateCoreHRWorkingHoursType func(ctx context.Context, request *CreateCoreHRWorkingHoursTypeReq, options ...MethodOptionFunc) (*CreateCoreHRWorkingHoursTypeResp, *Response, error) - mockCoreHRDeleteCoreHRWorkingHoursType func(ctx context.Context, request *DeleteCoreHRWorkingHoursTypeReq, options ...MethodOptionFunc) (*DeleteCoreHRWorkingHoursTypeResp, *Response, error) - mockCoreHRGetCoreHRWorkingHoursType func(ctx context.Context, request *GetCoreHRWorkingHoursTypeReq, options ...MethodOptionFunc) (*GetCoreHRWorkingHoursTypeResp, *Response, error) - mockCoreHRGetCoreHRWorkingHoursTypeList func(ctx context.Context, request *GetCoreHRWorkingHoursTypeListReq, options ...MethodOptionFunc) (*GetCoreHRWorkingHoursTypeListResp, *Response, error) - mockCoreHRUpdateCoreHRWorkingHoursType func(ctx context.Context, request *UpdateCoreHRWorkingHoursTypeReq, options ...MethodOptionFunc) (*UpdateCoreHRWorkingHoursTypeResp, *Response, error) - mockDriveCreateDriveComment func(ctx context.Context, request *CreateDriveCommentReq, options ...MethodOptionFunc) (*CreateDriveCommentResp, *Response, error) - mockDriveDeleteDriveComment func(ctx context.Context, request *DeleteDriveCommentReq, options ...MethodOptionFunc) (*DeleteDriveCommentResp, *Response, error) - mockDriveGetDriveComment func(ctx context.Context, request *GetDriveCommentReq, options ...MethodOptionFunc) (*GetDriveCommentResp, *Response, error) - mockDriveBatchGetDriveComment func(ctx context.Context, request *BatchGetDriveCommentReq, options ...MethodOptionFunc) (*BatchGetDriveCommentResp, *Response, error) - mockDriveGetDriveCommentList func(ctx context.Context, request *GetDriveCommentListReq, options ...MethodOptionFunc) (*GetDriveCommentListResp, *Response, error) - mockDriveUpdateDriveCommentPatch func(ctx context.Context, request *UpdateDriveCommentPatchReq, options ...MethodOptionFunc) (*UpdateDriveCommentPatchResp, *Response, error) - mockDriveGetDriveCommentReplyList func(ctx context.Context, request *GetDriveCommentReplyListReq, options ...MethodOptionFunc) (*GetDriveCommentReplyListResp, *Response, error) - mockDriveUpdateDriveComment func(ctx context.Context, request *UpdateDriveCommentReq, options ...MethodOptionFunc) (*UpdateDriveCommentResp, *Response, error) - mockDriveGetDriveDocContent func(ctx context.Context, request *GetDriveDocContentReq, options ...MethodOptionFunc) (*GetDriveDocContentResp, *Response, error) - mockDriveUpdateDriveDocContent func(ctx context.Context, request *UpdateDriveDocContentReq, options ...MethodOptionFunc) (*UpdateDriveDocContentResp, *Response, error) - mockDriveCreateDriveDoc func(ctx context.Context, request *CreateDriveDocReq, options ...MethodOptionFunc) (*CreateDriveDocResp, *Response, error) - mockDriveGetDriveDocMeta func(ctx context.Context, request *GetDriveDocMetaReq, options ...MethodOptionFunc) (*GetDriveDocMetaResp, *Response, error) - mockDriveGetDriveDocRawContent func(ctx context.Context, request *GetDriveDocRawContentReq, options ...MethodOptionFunc) (*GetDriveDocRawContentResp, *Response, error) - mockDriveBatchDeleteDocxBlock func(ctx context.Context, request *BatchDeleteDocxBlockReq, options ...MethodOptionFunc) (*BatchDeleteDocxBlockResp, *Response, error) - mockDriveCreateDocxBlock func(ctx context.Context, request *CreateDocxBlockReq, options ...MethodOptionFunc) (*CreateDocxBlockResp, *Response, error) - mockDriveGetDocxBlock func(ctx context.Context, request *GetDocxBlockReq, options ...MethodOptionFunc) (*GetDocxBlockResp, *Response, error) - mockDriveGetDocxBlockListOfBlock func(ctx context.Context, request *GetDocxBlockListOfBlockReq, options ...MethodOptionFunc) (*GetDocxBlockListOfBlockResp, *Response, error) - mockDriveGetDocxBlockListOfDocument func(ctx context.Context, request *GetDocxBlockListOfDocumentReq, options ...MethodOptionFunc) (*GetDocxBlockListOfDocumentResp, *Response, error) - mockDriveUpdateDocxBlock func(ctx context.Context, request *UpdateDocxBlockReq, options ...MethodOptionFunc) (*UpdateDocxBlockResp, *Response, error) - mockDriveCreateDocx func(ctx context.Context, request *CreateDocxReq, options ...MethodOptionFunc) (*CreateDocxResp, *Response, error) - mockDriveGetDocxDocument func(ctx context.Context, request *GetDocxDocumentReq, options ...MethodOptionFunc) (*GetDocxDocumentResp, *Response, error) - mockDriveGetDocxDocumentRawContent func(ctx context.Context, request *GetDocxDocumentRawContentReq, options ...MethodOptionFunc) (*GetDocxDocumentRawContentResp, *Response, error) - mockDriveCreateDriveExportTask func(ctx context.Context, request *CreateDriveExportTaskReq, options ...MethodOptionFunc) (*CreateDriveExportTaskResp, *Response, error) - mockDriveDownloadDriveExportTask func(ctx context.Context, request *DownloadDriveExportTaskReq, options ...MethodOptionFunc) (*DownloadDriveExportTaskResp, *Response, error) - mockDriveGetDriveExportTask func(ctx context.Context, request *GetDriveExportTaskReq, options ...MethodOptionFunc) (*GetDriveExportTaskResp, *Response, error) - mockDriveCopyDriveFile func(ctx context.Context, request *CopyDriveFileReq, options ...MethodOptionFunc) (*CopyDriveFileResp, *Response, error) - mockDriveCreateDriveFile func(ctx context.Context, request *CreateDriveFileReq, options ...MethodOptionFunc) (*CreateDriveFileResp, *Response, error) - mockDriveDownloadDriveFile func(ctx context.Context, request *DownloadDriveFileReq, options ...MethodOptionFunc) (*DownloadDriveFileResp, *Response, error) - mockDriveDeleteDriveFile func(ctx context.Context, request *DeleteDriveFileReq, options ...MethodOptionFunc) (*DeleteDriveFileResp, *Response, error) - mockDriveGetDriveFileList func(ctx context.Context, request *GetDriveFileListReq, options ...MethodOptionFunc) (*GetDriveFileListResp, *Response, error) - mockDriveGetDriveFileMeta func(ctx context.Context, request *GetDriveFileMetaReq, options ...MethodOptionFunc) (*GetDriveFileMetaResp, *Response, error) - mockDriveMoveDriveFile func(ctx context.Context, request *MoveDriveFileReq, options ...MethodOptionFunc) (*MoveDriveFileResp, *Response, error) - mockDriveSearchDriveFile func(ctx context.Context, request *SearchDriveFileReq, options ...MethodOptionFunc) (*SearchDriveFileResp, *Response, error) - mockDriveDeleteDriveSheetFile func(ctx context.Context, request *DeleteDriveSheetFileReq, options ...MethodOptionFunc) (*DeleteDriveSheetFileResp, *Response, error) - mockDriveCreateDriveFileShortcut func(ctx context.Context, request *CreateDriveFileShortcutReq, options ...MethodOptionFunc) (*CreateDriveFileShortcutResp, *Response, error) - mockDriveGetDriveFileStatistics func(ctx context.Context, request *GetDriveFileStatisticsReq, options ...MethodOptionFunc) (*GetDriveFileStatisticsResp, *Response, error) - mockDriveSubscribeDriveFile func(ctx context.Context, request *SubscribeDriveFileReq, options ...MethodOptionFunc) (*SubscribeDriveFileResp, *Response, error) - mockDriveGetSubscribeDriveFile func(ctx context.Context, request *GetSubscribeDriveFileReq, options ...MethodOptionFunc) (*GetSubscribeDriveFileResp, *Response, error) - mockDriveCreateDriveFileSubscription func(ctx context.Context, request *CreateDriveFileSubscriptionReq, options ...MethodOptionFunc) (*CreateDriveFileSubscriptionResp, *Response, error) - mockDriveGetDriveFileSubscription func(ctx context.Context, request *GetDriveFileSubscriptionReq, options ...MethodOptionFunc) (*GetDriveFileSubscriptionResp, *Response, error) - mockDriveUpdateDriveFileSubscription func(ctx context.Context, request *UpdateDriveFileSubscriptionReq, options ...MethodOptionFunc) (*UpdateDriveFileSubscriptionResp, *Response, error) - mockDriveGetDriveFileTask func(ctx context.Context, request *GetDriveFileTaskReq, options ...MethodOptionFunc) (*GetDriveFileTaskResp, *Response, error) - mockDriveUnsubscribeDriveFile func(ctx context.Context, request *UnsubscribeDriveFileReq, options ...MethodOptionFunc) (*UnsubscribeDriveFileResp, *Response, error) - mockDriveUploadDriveFile func(ctx context.Context, request *UploadDriveFileReq, options ...MethodOptionFunc) (*UploadDriveFileResp, *Response, error) - mockDriveFinishUploadDriveFile func(ctx context.Context, request *FinishUploadDriveFileReq, options ...MethodOptionFunc) (*FinishUploadDriveFileResp, *Response, error) - mockDrivePartUploadDriveFile func(ctx context.Context, request *PartUploadDriveFileReq, options ...MethodOptionFunc) (*PartUploadDriveFileResp, *Response, error) - mockDrivePrepareUploadDriveFile func(ctx context.Context, request *PrepareUploadDriveFileReq, options ...MethodOptionFunc) (*PrepareUploadDriveFileResp, *Response, error) - mockDriveCreateDriveFileVersion func(ctx context.Context, request *CreateDriveFileVersionReq, options ...MethodOptionFunc) (*CreateDriveFileVersionResp, *Response, error) - mockDriveDeleteDriveFileVersion func(ctx context.Context, request *DeleteDriveFileVersionReq, options ...MethodOptionFunc) (*DeleteDriveFileVersionResp, *Response, error) - mockDriveGetDriveFileVersion func(ctx context.Context, request *GetDriveFileVersionReq, options ...MethodOptionFunc) (*GetDriveFileVersionResp, *Response, error) - mockDriveGetDriveFileVersionList func(ctx context.Context, request *GetDriveFileVersionListReq, options ...MethodOptionFunc) (*GetDriveFileVersionListResp, *Response, error) - mockDriveGetDriveFileViewRecordList func(ctx context.Context, request *GetDriveFileViewRecordListReq, options ...MethodOptionFunc) (*GetDriveFileViewRecordListResp, *Response, error) - mockDriveGetDriveFolderChildren func(ctx context.Context, request *GetDriveFolderChildrenReq, options ...MethodOptionFunc) (*GetDriveFolderChildrenResp, *Response, error) - mockDriveCreateDriveFolder func(ctx context.Context, request *CreateDriveFolderReq, options ...MethodOptionFunc) (*CreateDriveFolderResp, *Response, error) - mockDriveGetDriveFolderMeta func(ctx context.Context, request *GetDriveFolderMetaReq, options ...MethodOptionFunc) (*GetDriveFolderMetaResp, *Response, error) - mockDriveGetDriveRootFolderMeta func(ctx context.Context, request *GetDriveRootFolderMetaReq, options ...MethodOptionFunc) (*GetDriveRootFolderMetaResp, *Response, error) - mockDriveCreateDriveImportTask func(ctx context.Context, request *CreateDriveImportTaskReq, options ...MethodOptionFunc) (*CreateDriveImportTaskResp, *Response, error) - mockDriveGetDriveImportTask func(ctx context.Context, request *GetDriveImportTaskReq, options ...MethodOptionFunc) (*GetDriveImportTaskResp, *Response, error) - mockDriveBatchGetDriveMediaTmpDownloadURL func(ctx context.Context, request *BatchGetDriveMediaTmpDownloadURLReq, options ...MethodOptionFunc) (*BatchGetDriveMediaTmpDownloadURLResp, *Response, error) - mockDriveDownloadDriveMedia func(ctx context.Context, request *DownloadDriveMediaReq, options ...MethodOptionFunc) (*DownloadDriveMediaResp, *Response, error) - mockDriveUploadDriveMedia func(ctx context.Context, request *UploadDriveMediaReq, options ...MethodOptionFunc) (*UploadDriveMediaResp, *Response, error) - mockDriveFinishUploadDriveMedia func(ctx context.Context, request *FinishUploadDriveMediaReq, options ...MethodOptionFunc) (*FinishUploadDriveMediaResp, *Response, error) - mockDrivePartUploadDriveMedia func(ctx context.Context, request *PartUploadDriveMediaReq, options ...MethodOptionFunc) (*PartUploadDriveMediaResp, *Response, error) - mockDrivePrepareUploadDriveMedia func(ctx context.Context, request *PrepareUploadDriveMediaReq, options ...MethodOptionFunc) (*PrepareUploadDriveMediaResp, *Response, error) - mockDriveCheckDriveMemberPermission func(ctx context.Context, request *CheckDriveMemberPermissionReq, options ...MethodOptionFunc) (*CheckDriveMemberPermissionResp, *Response, error) - mockDriveCheckDriveMemberPermissionOld func(ctx context.Context, request *CheckDriveMemberPermissionOldReq, options ...MethodOptionFunc) (*CheckDriveMemberPermissionOldResp, *Response, error) - mockDriveCreateDriveMemberPermission func(ctx context.Context, request *CreateDriveMemberPermissionReq, options ...MethodOptionFunc) (*CreateDriveMemberPermissionResp, *Response, error) - mockDriveCreateDriveMemberPermissionOld func(ctx context.Context, request *CreateDriveMemberPermissionOldReq, options ...MethodOptionFunc) (*CreateDriveMemberPermissionOldResp, *Response, error) - mockDriveDeleteDriveMemberPermission func(ctx context.Context, request *DeleteDriveMemberPermissionReq, options ...MethodOptionFunc) (*DeleteDriveMemberPermissionResp, *Response, error) - mockDriveDeleteDriveMemberPermissionOld func(ctx context.Context, request *DeleteDriveMemberPermissionOldReq, options ...MethodOptionFunc) (*DeleteDriveMemberPermissionOldResp, *Response, error) - mockDriveGetDriveMemberPermissionList func(ctx context.Context, request *GetDriveMemberPermissionListReq, options ...MethodOptionFunc) (*GetDriveMemberPermissionListResp, *Response, error) - mockDriveGetDriveMemberPermissionListOld func(ctx context.Context, request *GetDriveMemberPermissionListOldReq, options ...MethodOptionFunc) (*GetDriveMemberPermissionListOldResp, *Response, error) - mockDriveTransferDriveMemberPermission func(ctx context.Context, request *TransferDriveMemberPermissionReq, options ...MethodOptionFunc) (*TransferDriveMemberPermissionResp, *Response, error) - mockDriveUpdateDriveMemberPermission func(ctx context.Context, request *UpdateDriveMemberPermissionReq, options ...MethodOptionFunc) (*UpdateDriveMemberPermissionResp, *Response, error) - mockDriveUpdateDriveMemberPermissionOld func(ctx context.Context, request *UpdateDriveMemberPermissionOldReq, options ...MethodOptionFunc) (*UpdateDriveMemberPermissionOldResp, *Response, error) - mockDriveTransferDriveOwnerPermission func(ctx context.Context, request *TransferDriveOwnerPermissionReq, options ...MethodOptionFunc) (*TransferDriveOwnerPermissionResp, *Response, error) - mockDriveGetDrivePublicPermission func(ctx context.Context, request *GetDrivePublicPermissionReq, options ...MethodOptionFunc) (*GetDrivePublicPermissionResp, *Response, error) - mockDriveGetDrivePublicPermissionOld func(ctx context.Context, request *GetDrivePublicPermissionOldReq, options ...MethodOptionFunc) (*GetDrivePublicPermissionOldResp, *Response, error) - mockDriveGetDrivePublicPermissionV2 func(ctx context.Context, request *GetDrivePublicPermissionV2Req, options ...MethodOptionFunc) (*GetDrivePublicPermissionV2Resp, *Response, error) - mockDriveCreateDrivePermissionPublicPassword func(ctx context.Context, request *CreateDrivePermissionPublicPasswordReq, options ...MethodOptionFunc) (*CreateDrivePermissionPublicPasswordResp, *Response, error) - mockDriveDeleteDrivePermissionPublicPassword func(ctx context.Context, request *DeleteDrivePermissionPublicPasswordReq, options ...MethodOptionFunc) (*DeleteDrivePermissionPublicPasswordResp, *Response, error) - mockDriveUpdateDrivePermissionPublicPassword func(ctx context.Context, request *UpdateDrivePermissionPublicPasswordReq, options ...MethodOptionFunc) (*UpdateDrivePermissionPublicPasswordResp, *Response, error) - mockDriveUpdateDrivePublicPermission func(ctx context.Context, request *UpdateDrivePublicPermissionReq, options ...MethodOptionFunc) (*UpdateDrivePublicPermissionResp, *Response, error) - mockDriveUpdateDrivePublicPermissionV2 func(ctx context.Context, request *UpdateDrivePublicPermissionV2Req, options ...MethodOptionFunc) (*UpdateDrivePublicPermissionV2Resp, *Response, error) - mockDriveBatchUpdateSheet func(ctx context.Context, request *BatchUpdateSheetReq, options ...MethodOptionFunc) (*BatchUpdateSheetResp, *Response, error) - mockDriveMergeSheetCell func(ctx context.Context, request *MergeSheetCellReq, options ...MethodOptionFunc) (*MergeSheetCellResp, *Response, error) - mockDriveUnmergeSheetCell func(ctx context.Context, request *UnmergeSheetCellReq, options ...MethodOptionFunc) (*UnmergeSheetCellResp, *Response, error) - mockDriveCreateSheetConditionFormat func(ctx context.Context, request *CreateSheetConditionFormatReq, options ...MethodOptionFunc) (*CreateSheetConditionFormatResp, *Response, error) - mockDriveDeleteSheetConditionFormat func(ctx context.Context, request *DeleteSheetConditionFormatReq, options ...MethodOptionFunc) (*DeleteSheetConditionFormatResp, *Response, error) - mockDriveGetSheetConditionFormat func(ctx context.Context, request *GetSheetConditionFormatReq, options ...MethodOptionFunc) (*GetSheetConditionFormatResp, *Response, error) - mockDriveUpdateSheetConditionFormat func(ctx context.Context, request *UpdateSheetConditionFormatReq, options ...MethodOptionFunc) (*UpdateSheetConditionFormatResp, *Response, error) - mockDriveCreateSheetDataValidationDropdown func(ctx context.Context, request *CreateSheetDataValidationDropdownReq, options ...MethodOptionFunc) (*CreateSheetDataValidationDropdownResp, *Response, error) - mockDriveDeleteSheetDataValidationDropdown func(ctx context.Context, request *DeleteSheetDataValidationDropdownReq, options ...MethodOptionFunc) (*DeleteSheetDataValidationDropdownResp, *Response, error) - mockDriveGetSheetDataValidationDropdown func(ctx context.Context, request *GetSheetDataValidationDropdownReq, options ...MethodOptionFunc) (*GetSheetDataValidationDropdownResp, *Response, error) - mockDriveUpdateSheetDataValidationDropdown func(ctx context.Context, request *UpdateSheetDataValidationDropdownReq, options ...MethodOptionFunc) (*UpdateSheetDataValidationDropdownResp, *Response, error) - mockDriveMoveSheetDimension func(ctx context.Context, request *MoveSheetDimensionReq, options ...MethodOptionFunc) (*MoveSheetDimensionResp, *Response, error) - mockDriveAddSheetDimensionRange func(ctx context.Context, request *AddSheetDimensionRangeReq, options ...MethodOptionFunc) (*AddSheetDimensionRangeResp, *Response, error) - mockDriveDeleteSheetDimensionRange func(ctx context.Context, request *DeleteSheetDimensionRangeReq, options ...MethodOptionFunc) (*DeleteSheetDimensionRangeResp, *Response, error) - mockDriveInsertSheetDimensionRange func(ctx context.Context, request *InsertSheetDimensionRangeReq, options ...MethodOptionFunc) (*InsertSheetDimensionRangeResp, *Response, error) - mockDriveUpdateSheetDimensionRange func(ctx context.Context, request *UpdateSheetDimensionRangeReq, options ...MethodOptionFunc) (*UpdateSheetDimensionRangeResp, *Response, error) - mockDriveCreateSheetFilter func(ctx context.Context, request *CreateSheetFilterReq, options ...MethodOptionFunc) (*CreateSheetFilterResp, *Response, error) - mockDriveDeleteSheetFilter func(ctx context.Context, request *DeleteSheetFilterReq, options ...MethodOptionFunc) (*DeleteSheetFilterResp, *Response, error) - mockDriveGetSheetFilter func(ctx context.Context, request *GetSheetFilterReq, options ...MethodOptionFunc) (*GetSheetFilterResp, *Response, error) - mockDriveUpdateSheetFilter func(ctx context.Context, request *UpdateSheetFilterReq, options ...MethodOptionFunc) (*UpdateSheetFilterResp, *Response, error) - mockDriveCreateSheetFilterViewCondition func(ctx context.Context, request *CreateSheetFilterViewConditionReq, options ...MethodOptionFunc) (*CreateSheetFilterViewConditionResp, *Response, error) - mockDriveDeleteSheetFilterViewCondition func(ctx context.Context, request *DeleteSheetFilterViewConditionReq, options ...MethodOptionFunc) (*DeleteSheetFilterViewConditionResp, *Response, error) - mockDriveGetSheetFilterViewCondition func(ctx context.Context, request *GetSheetFilterViewConditionReq, options ...MethodOptionFunc) (*GetSheetFilterViewConditionResp, *Response, error) - mockDriveQuerySheetFilterViewCondition func(ctx context.Context, request *QuerySheetFilterViewConditionReq, options ...MethodOptionFunc) (*QuerySheetFilterViewConditionResp, *Response, error) - mockDriveUpdateSheetFilterViewCondition func(ctx context.Context, request *UpdateSheetFilterViewConditionReq, options ...MethodOptionFunc) (*UpdateSheetFilterViewConditionResp, *Response, error) - mockDriveCreateSheetFilterView func(ctx context.Context, request *CreateSheetFilterViewReq, options ...MethodOptionFunc) (*CreateSheetFilterViewResp, *Response, error) - mockDriveDeleteSheetFilterView func(ctx context.Context, request *DeleteSheetFilterViewReq, options ...MethodOptionFunc) (*DeleteSheetFilterViewResp, *Response, error) - mockDriveGetSheetFilterView func(ctx context.Context, request *GetSheetFilterViewReq, options ...MethodOptionFunc) (*GetSheetFilterViewResp, *Response, error) - mockDriveQuerySheetFilterView func(ctx context.Context, request *QuerySheetFilterViewReq, options ...MethodOptionFunc) (*QuerySheetFilterViewResp, *Response, error) - mockDriveUpdateSheetFilterView func(ctx context.Context, request *UpdateSheetFilterViewReq, options ...MethodOptionFunc) (*UpdateSheetFilterViewResp, *Response, error) - mockDriveFindSheet func(ctx context.Context, request *FindSheetReq, options ...MethodOptionFunc) (*FindSheetResp, *Response, error) - mockDriveCreateSheetFloatImage func(ctx context.Context, request *CreateSheetFloatImageReq, options ...MethodOptionFunc) (*CreateSheetFloatImageResp, *Response, error) - mockDriveDeleteSheetFloatImage func(ctx context.Context, request *DeleteSheetFloatImageReq, options ...MethodOptionFunc) (*DeleteSheetFloatImageResp, *Response, error) - mockDriveGetSheetFloatImage func(ctx context.Context, request *GetSheetFloatImageReq, options ...MethodOptionFunc) (*GetSheetFloatImageResp, *Response, error) - mockDriveQuerySheetFloatImage func(ctx context.Context, request *QuerySheetFloatImageReq, options ...MethodOptionFunc) (*QuerySheetFloatImageResp, *Response, error) - mockDriveUpdateSheetFloatImage func(ctx context.Context, request *UpdateSheetFloatImageReq, options ...MethodOptionFunc) (*UpdateSheetFloatImageResp, *Response, error) - mockDriveGetSheet func(ctx context.Context, request *GetSheetReq, options ...MethodOptionFunc) (*GetSheetResp, *Response, error) - mockDriveSetSheetValueImage func(ctx context.Context, request *SetSheetValueImageReq, options ...MethodOptionFunc) (*SetSheetValueImageResp, *Response, error) - mockDriveImportSheet func(ctx context.Context, request *ImportSheetReq, options ...MethodOptionFunc) (*ImportSheetResp, *Response, error) - mockDriveGetSheetList func(ctx context.Context, request *GetSheetListReq, options ...MethodOptionFunc) (*GetSheetListResp, *Response, error) - mockDriveGetSheetMeta func(ctx context.Context, request *GetSheetMetaReq, options ...MethodOptionFunc) (*GetSheetMetaResp, *Response, error) - mockDriveUpdateSheetProperty func(ctx context.Context, request *UpdateSheetPropertyReq, options ...MethodOptionFunc) (*UpdateSheetPropertyResp, *Response, error) - mockDriveCreateSheetProtectedDimension func(ctx context.Context, request *CreateSheetProtectedDimensionReq, options ...MethodOptionFunc) (*CreateSheetProtectedDimensionResp, *Response, error) - mockDriveDeleteSheetProtectedDimension func(ctx context.Context, request *DeleteSheetProtectedDimensionReq, options ...MethodOptionFunc) (*DeleteSheetProtectedDimensionResp, *Response, error) - mockDriveGetSheetProtectedDimension func(ctx context.Context, request *GetSheetProtectedDimensionReq, options ...MethodOptionFunc) (*GetSheetProtectedDimensionResp, *Response, error) - mockDriveUpdateSheetProtectedDimension func(ctx context.Context, request *UpdateSheetProtectedDimensionReq, options ...MethodOptionFunc) (*UpdateSheetProtectedDimensionResp, *Response, error) - mockDriveReplaceSheet func(ctx context.Context, request *ReplaceSheetReq, options ...MethodOptionFunc) (*ReplaceSheetResp, *Response, error) - mockDriveBatchSetSheetStyle func(ctx context.Context, request *BatchSetSheetStyleReq, options ...MethodOptionFunc) (*BatchSetSheetStyleResp, *Response, error) - mockDriveSetSheetStyle func(ctx context.Context, request *SetSheetStyleReq, options ...MethodOptionFunc) (*SetSheetStyleResp, *Response, error) - mockDriveAppendSheetValue func(ctx context.Context, request *AppendSheetValueReq, options ...MethodOptionFunc) (*AppendSheetValueResp, *Response, error) - mockDriveBatchGetSheetValue func(ctx context.Context, request *BatchGetSheetValueReq, options ...MethodOptionFunc) (*BatchGetSheetValueResp, *Response, error) - mockDriveBatchSetSheetValue func(ctx context.Context, request *BatchSetSheetValueReq, options ...MethodOptionFunc) (*BatchSetSheetValueResp, *Response, error) - mockDriveGetSheetValue func(ctx context.Context, request *GetSheetValueReq, options ...MethodOptionFunc) (*GetSheetValueResp, *Response, error) - mockDrivePrependSheetValue func(ctx context.Context, request *PrependSheetValueReq, options ...MethodOptionFunc) (*PrependSheetValueResp, *Response, error) - mockDriveSetSheetValue func(ctx context.Context, request *SetSheetValueReq, options ...MethodOptionFunc) (*SetSheetValueResp, *Response, error) - mockDriveCreateSpreadsheet func(ctx context.Context, request *CreateSpreadsheetReq, options ...MethodOptionFunc) (*CreateSpreadsheetResp, *Response, error) - mockDriveGetSpreadsheet func(ctx context.Context, request *GetSpreadsheetReq, options ...MethodOptionFunc) (*GetSpreadsheetResp, *Response, error) - mockDriveUpdateSpreadsheet func(ctx context.Context, request *UpdateSpreadsheetReq, options ...MethodOptionFunc) (*UpdateSpreadsheetResp, *Response, error) - mockDriveGetWhiteboardNodeList func(ctx context.Context, request *GetWhiteboardNodeListReq, options ...MethodOptionFunc) (*GetWhiteboardNodeListResp, *Response, error) - mockDriveMoveDocsToWiki func(ctx context.Context, request *MoveDocsToWikiReq, options ...MethodOptionFunc) (*MoveDocsToWikiResp, *Response, error) - mockDriveCopyWikiNode func(ctx context.Context, request *CopyWikiNodeReq, options ...MethodOptionFunc) (*CopyWikiNodeResp, *Response, error) - mockDriveCreateWikiNode func(ctx context.Context, request *CreateWikiNodeReq, options ...MethodOptionFunc) (*CreateWikiNodeResp, *Response, error) - mockDriveGetWikiNode func(ctx context.Context, request *GetWikiNodeReq, options ...MethodOptionFunc) (*GetWikiNodeResp, *Response, error) - mockDriveGetWikiNodeList func(ctx context.Context, request *GetWikiNodeListReq, options ...MethodOptionFunc) (*GetWikiNodeListResp, *Response, error) - mockDriveMoveWikiNode func(ctx context.Context, request *MoveWikiNodeReq, options ...MethodOptionFunc) (*MoveWikiNodeResp, *Response, error) - mockDriveUpdateWikiNodeTitle func(ctx context.Context, request *UpdateWikiNodeTitleReq, options ...MethodOptionFunc) (*UpdateWikiNodeTitleResp, *Response, error) - mockDriveCreateWikiSpace func(ctx context.Context, request *CreateWikiSpaceReq, options ...MethodOptionFunc) (*CreateWikiSpaceResp, *Response, error) - mockDriveGetWikiSpace func(ctx context.Context, request *GetWikiSpaceReq, options ...MethodOptionFunc) (*GetWikiSpaceResp, *Response, error) - mockDriveGetWikiSpaceList func(ctx context.Context, request *GetWikiSpaceListReq, options ...MethodOptionFunc) (*GetWikiSpaceListResp, *Response, error) - mockDriveAddWikiSpaceMember func(ctx context.Context, request *AddWikiSpaceMemberReq, options ...MethodOptionFunc) (*AddWikiSpaceMemberResp, *Response, error) - mockDriveDeleteWikiSpaceMember func(ctx context.Context, request *DeleteWikiSpaceMemberReq, options ...MethodOptionFunc) (*DeleteWikiSpaceMemberResp, *Response, error) - mockDriveUpdateWikiSpaceSetting func(ctx context.Context, request *UpdateWikiSpaceSettingReq, options ...MethodOptionFunc) (*UpdateWikiSpaceSettingResp, *Response, error) - mockDriveGetWikiTask func(ctx context.Context, request *GetWikiTaskReq, options ...MethodOptionFunc) (*GetWikiTaskResp, *Response, error) - mockEHRDownloadEHRAttachments func(ctx context.Context, request *DownloadEHRAttachmentsReq, options ...MethodOptionFunc) (*DownloadEHRAttachmentsResp, *Response, error) - mockEHRGetEHREmployeeList func(ctx context.Context, request *GetEHREmployeeListReq, options ...MethodOptionFunc) (*GetEHREmployeeListResp, *Response, error) - mockEventGetEventOutboundIpList func(ctx context.Context, request *GetEventOutboundIpListReq, options ...MethodOptionFunc) (*GetEventOutboundIpListResp, *Response, error) - mockFileDownloadFile func(ctx context.Context, request *DownloadFileReq, options ...MethodOptionFunc) (*DownloadFileResp, *Response, error) - mockFileDownloadImage func(ctx context.Context, request *DownloadImageReq, options ...MethodOptionFunc) (*DownloadImageResp, *Response, error) - mockFileUploadFile func(ctx context.Context, request *UploadFileReq, options ...MethodOptionFunc) (*UploadFileResp, *Response, error) - mockFileUploadImage func(ctx context.Context, request *UploadImageReq, options ...MethodOptionFunc) (*UploadImageResp, *Response, error) - mockHelpdeskGetHelpdeskAgentEmail func(ctx context.Context, request *GetHelpdeskAgentEmailReq, options ...MethodOptionFunc) (*GetHelpdeskAgentEmailResp, *Response, error) - mockHelpdeskUpdateHelpdeskAgent func(ctx context.Context, request *UpdateHelpdeskAgentReq, options ...MethodOptionFunc) (*UpdateHelpdeskAgentResp, *Response, error) - mockHelpdeskCreateHelpdeskAgentSchedule func(ctx context.Context, request *CreateHelpdeskAgentScheduleReq, options ...MethodOptionFunc) (*CreateHelpdeskAgentScheduleResp, *Response, error) - mockHelpdeskDeleteHelpdeskAgentSchedule func(ctx context.Context, request *DeleteHelpdeskAgentScheduleReq, options ...MethodOptionFunc) (*DeleteHelpdeskAgentScheduleResp, *Response, error) - mockHelpdeskGetHelpdeskAgentSchedule func(ctx context.Context, request *GetHelpdeskAgentScheduleReq, options ...MethodOptionFunc) (*GetHelpdeskAgentScheduleResp, *Response, error) - mockHelpdeskGetHelpdeskAgentScheduleList func(ctx context.Context, request *GetHelpdeskAgentScheduleListReq, options ...MethodOptionFunc) (*GetHelpdeskAgentScheduleListResp, *Response, error) - mockHelpdeskUpdateHelpdeskAgentSchedule func(ctx context.Context, request *UpdateHelpdeskAgentScheduleReq, options ...MethodOptionFunc) (*UpdateHelpdeskAgentScheduleResp, *Response, error) - mockHelpdeskCreateHelpdeskAgentSkill func(ctx context.Context, request *CreateHelpdeskAgentSkillReq, options ...MethodOptionFunc) (*CreateHelpdeskAgentSkillResp, *Response, error) - mockHelpdeskDeleteHelpdeskAgentSkill func(ctx context.Context, request *DeleteHelpdeskAgentSkillReq, options ...MethodOptionFunc) (*DeleteHelpdeskAgentSkillResp, *Response, error) - mockHelpdeskGetHelpdeskAgentSkill func(ctx context.Context, request *GetHelpdeskAgentSkillReq, options ...MethodOptionFunc) (*GetHelpdeskAgentSkillResp, *Response, error) - mockHelpdeskGetHelpdeskAgentSkillList func(ctx context.Context, request *GetHelpdeskAgentSkillListReq, options ...MethodOptionFunc) (*GetHelpdeskAgentSkillListResp, *Response, error) - mockHelpdeskGetHelpdeskAgentSkillRuleList func(ctx context.Context, request *GetHelpdeskAgentSkillRuleListReq, options ...MethodOptionFunc) (*GetHelpdeskAgentSkillRuleListResp, *Response, error) - mockHelpdeskUpdateHelpdeskAgentSkill func(ctx context.Context, request *UpdateHelpdeskAgentSkillReq, options ...MethodOptionFunc) (*UpdateHelpdeskAgentSkillResp, *Response, error) - mockHelpdeskCreateHelpdeskCategory func(ctx context.Context, request *CreateHelpdeskCategoryReq, options ...MethodOptionFunc) (*CreateHelpdeskCategoryResp, *Response, error) - mockHelpdeskDeleteHelpdeskCategory func(ctx context.Context, request *DeleteHelpdeskCategoryReq, options ...MethodOptionFunc) (*DeleteHelpdeskCategoryResp, *Response, error) - mockHelpdeskGetHelpdeskCategory func(ctx context.Context, request *GetHelpdeskCategoryReq, options ...MethodOptionFunc) (*GetHelpdeskCategoryResp, *Response, error) - mockHelpdeskGetHelpdeskCategoryList func(ctx context.Context, request *GetHelpdeskCategoryListReq, options ...MethodOptionFunc) (*GetHelpdeskCategoryListResp, *Response, error) - mockHelpdeskUpdateHelpdeskCategory func(ctx context.Context, request *UpdateHelpdeskCategoryReq, options ...MethodOptionFunc) (*UpdateHelpdeskCategoryResp, *Response, error) - mockHelpdeskSubscribeHelpdeskEvent func(ctx context.Context, request *SubscribeHelpdeskEventReq, options ...MethodOptionFunc) (*SubscribeHelpdeskEventResp, *Response, error) - mockHelpdeskUnsubscribeHelpdeskEvent func(ctx context.Context, request *UnsubscribeHelpdeskEventReq, options ...MethodOptionFunc) (*UnsubscribeHelpdeskEventResp, *Response, error) - mockHelpdeskCreateHelpdeskFAQ func(ctx context.Context, request *CreateHelpdeskFAQReq, options ...MethodOptionFunc) (*CreateHelpdeskFAQResp, *Response, error) - mockHelpdeskDeleteHelpdeskFAQ func(ctx context.Context, request *DeleteHelpdeskFAQReq, options ...MethodOptionFunc) (*DeleteHelpdeskFAQResp, *Response, error) - mockHelpdeskGetHelpdeskFAQ func(ctx context.Context, request *GetHelpdeskFAQReq, options ...MethodOptionFunc) (*GetHelpdeskFAQResp, *Response, error) - mockHelpdeskGetHelpdeskFAQImage func(ctx context.Context, request *GetHelpdeskFAQImageReq, options ...MethodOptionFunc) (*GetHelpdeskFAQImageResp, *Response, error) - mockHelpdeskGetHelpdeskFAQList func(ctx context.Context, request *GetHelpdeskFAQListReq, options ...MethodOptionFunc) (*GetHelpdeskFAQListResp, *Response, error) - mockHelpdeskSearchHelpdeskFAQ func(ctx context.Context, request *SearchHelpdeskFAQReq, options ...MethodOptionFunc) (*SearchHelpdeskFAQResp, *Response, error) - mockHelpdeskUpdateHelpdeskFAQ func(ctx context.Context, request *UpdateHelpdeskFAQReq, options ...MethodOptionFunc) (*UpdateHelpdeskFAQResp, *Response, error) - mockHelpdeskSendHelpdeskMessage func(ctx context.Context, request *SendHelpdeskMessageReq, options ...MethodOptionFunc) (*SendHelpdeskMessageResp, *Response, error) - mockHelpdeskCancelApproveHelpdeskNotification func(ctx context.Context, request *CancelApproveHelpdeskNotificationReq, options ...MethodOptionFunc) (*CancelApproveHelpdeskNotificationResp, *Response, error) - mockHelpdeskCancelSendHelpdeskNotification func(ctx context.Context, request *CancelSendHelpdeskNotificationReq, options ...MethodOptionFunc) (*CancelSendHelpdeskNotificationResp, *Response, error) - mockHelpdeskCreateHelpdeskNotification func(ctx context.Context, request *CreateHelpdeskNotificationReq, options ...MethodOptionFunc) (*CreateHelpdeskNotificationResp, *Response, error) - mockHelpdeskExecuteSendHelpdeskNotification func(ctx context.Context, request *ExecuteSendHelpdeskNotificationReq, options ...MethodOptionFunc) (*ExecuteSendHelpdeskNotificationResp, *Response, error) - mockHelpdeskGetHelpdeskNotification func(ctx context.Context, request *GetHelpdeskNotificationReq, options ...MethodOptionFunc) (*GetHelpdeskNotificationResp, *Response, error) - mockHelpdeskPreviewHelpdeskNotification func(ctx context.Context, request *PreviewHelpdeskNotificationReq, options ...MethodOptionFunc) (*PreviewHelpdeskNotificationResp, *Response, error) - mockHelpdeskSubmitApproveHelpdeskNotification func(ctx context.Context, request *SubmitApproveHelpdeskNotificationReq, options ...MethodOptionFunc) (*SubmitApproveHelpdeskNotificationResp, *Response, error) - mockHelpdeskUpdateHelpdeskNotification func(ctx context.Context, request *UpdateHelpdeskNotificationReq, options ...MethodOptionFunc) (*UpdateHelpdeskNotificationResp, *Response, error) - mockHelpdeskStartHelpdeskService func(ctx context.Context, request *StartHelpdeskServiceReq, options ...MethodOptionFunc) (*StartHelpdeskServiceResp, *Response, error) - mockHelpdeskAnswerHelpdeskTicketUserQuery func(ctx context.Context, request *AnswerHelpdeskTicketUserQueryReq, options ...MethodOptionFunc) (*AnswerHelpdeskTicketUserQueryResp, *Response, error) - mockHelpdeskCreateHelpdeskTicketCustomizedField func(ctx context.Context, request *CreateHelpdeskTicketCustomizedFieldReq, options ...MethodOptionFunc) (*CreateHelpdeskTicketCustomizedFieldResp, *Response, error) - mockHelpdeskDeleteHelpdeskTicketCustomizedField func(ctx context.Context, request *DeleteHelpdeskTicketCustomizedFieldReq, options ...MethodOptionFunc) (*DeleteHelpdeskTicketCustomizedFieldResp, *Response, error) - mockHelpdeskGetHelpdeskTicketCustomizedField func(ctx context.Context, request *GetHelpdeskTicketCustomizedFieldReq, options ...MethodOptionFunc) (*GetHelpdeskTicketCustomizedFieldResp, *Response, error) - mockHelpdeskGetHelpdeskTicketCustomizedFieldList func(ctx context.Context, request *GetHelpdeskTicketCustomizedFieldListReq, options ...MethodOptionFunc) (*GetHelpdeskTicketCustomizedFieldListResp, *Response, error) - mockHelpdeskUpdateHelpdeskTicketCustomizedField func(ctx context.Context, request *UpdateHelpdeskTicketCustomizedFieldReq, options ...MethodOptionFunc) (*UpdateHelpdeskTicketCustomizedFieldResp, *Response, error) - mockHelpdeskGetHelpdeskTicketCustomizedFields func(ctx context.Context, request *GetHelpdeskTicketCustomizedFieldsReq, options ...MethodOptionFunc) (*GetHelpdeskTicketCustomizedFieldsResp, *Response, error) - mockHelpdeskGetHelpdeskTicket func(ctx context.Context, request *GetHelpdeskTicketReq, options ...MethodOptionFunc) (*GetHelpdeskTicketResp, *Response, error) - mockHelpdeskGetHelpdeskTicketList func(ctx context.Context, request *GetHelpdeskTicketListReq, options ...MethodOptionFunc) (*GetHelpdeskTicketListResp, *Response, error) - mockHelpdeskDownloadHelpdeskTicketImage func(ctx context.Context, request *DownloadHelpdeskTicketImageReq, options ...MethodOptionFunc) (*DownloadHelpdeskTicketImageResp, *Response, error) - mockHelpdeskGetHelpdeskTicketMessageList func(ctx context.Context, request *GetHelpdeskTicketMessageListReq, options ...MethodOptionFunc) (*GetHelpdeskTicketMessageListResp, *Response, error) - mockHelpdeskSendHelpdeskTicketMessage func(ctx context.Context, request *SendHelpdeskTicketMessageReq, options ...MethodOptionFunc) (*SendHelpdeskTicketMessageResp, *Response, error) - mockHelpdeskUpdateHelpdeskTicket func(ctx context.Context, request *UpdateHelpdeskTicketReq, options ...MethodOptionFunc) (*UpdateHelpdeskTicketResp, *Response, error) - mockHireCreateHireApplication func(ctx context.Context, request *CreateHireApplicationReq, options ...MethodOptionFunc) (*CreateHireApplicationResp, *Response, error) - mockHireGetHireApplication func(ctx context.Context, request *GetHireApplicationReq, options ...MethodOptionFunc) (*GetHireApplicationResp, *Response, error) - mockHireGetHireApplicationInterviewList func(ctx context.Context, request *GetHireApplicationInterviewListReq, options ...MethodOptionFunc) (*GetHireApplicationInterviewListResp, *Response, error) - mockHireGetHireApplicationList func(ctx context.Context, request *GetHireApplicationListReq, options ...MethodOptionFunc) (*GetHireApplicationListResp, *Response, error) - mockHireTerminateHireApplication func(ctx context.Context, request *TerminateHireApplicationReq, options ...MethodOptionFunc) (*TerminateHireApplicationResp, *Response, error) - mockHireGetHireAttachment func(ctx context.Context, request *GetHireAttachmentReq, options ...MethodOptionFunc) (*GetHireAttachmentResp, *Response, error) - mockHireGetHireAttachmentPreview func(ctx context.Context, request *GetHireAttachmentPreviewReq, options ...MethodOptionFunc) (*GetHireAttachmentPreviewResp, *Response, error) - mockHireCreateHireEcoAccountCustomField func(ctx context.Context, request *CreateHireEcoAccountCustomFieldReq, options ...MethodOptionFunc) (*CreateHireEcoAccountCustomFieldResp, *Response, error) - mockHireBatchDeleteHireEcoAccountCustomField func(ctx context.Context, request *BatchDeleteHireEcoAccountCustomFieldReq, options ...MethodOptionFunc) (*BatchDeleteHireEcoAccountCustomFieldResp, *Response, error) - mockHireBatchUpdateHireEcoAccountCustomField func(ctx context.Context, request *BatchUpdateHireEcoAccountCustomFieldReq, options ...MethodOptionFunc) (*BatchUpdateHireEcoAccountCustomFieldResp, *Response, error) - mockHireCreateHireEcoBackgroundCheckCustomField func(ctx context.Context, request *CreateHireEcoBackgroundCheckCustomFieldReq, options ...MethodOptionFunc) (*CreateHireEcoBackgroundCheckCustomFieldResp, *Response, error) - mockHireBatchDeleteHireEcoBackgroundCheckCustomField func(ctx context.Context, request *BatchDeleteHireEcoBackgroundCheckCustomFieldReq, options ...MethodOptionFunc) (*BatchDeleteHireEcoBackgroundCheckCustomFieldResp, *Response, error) - mockHireBatchUpdateHireEcoBackgroundCheckCustomField func(ctx context.Context, request *BatchUpdateHireEcoBackgroundCheckCustomFieldReq, options ...MethodOptionFunc) (*BatchUpdateHireEcoBackgroundCheckCustomFieldResp, *Response, error) - mockHireBatchDeleteHireEcoBackgroundCheckPackage func(ctx context.Context, request *BatchDeleteHireEcoBackgroundCheckPackageReq, options ...MethodOptionFunc) (*BatchDeleteHireEcoBackgroundCheckPackageResp, *Response, error) - mockHireBatchUpdateHireEcoBackgroundCheckPackage func(ctx context.Context, request *BatchUpdateHireEcoBackgroundCheckPackageReq, options ...MethodOptionFunc) (*BatchUpdateHireEcoBackgroundCheckPackageResp, *Response, error) - mockHireCreateHireEcoBackgroundCheckPackage func(ctx context.Context, request *CreateHireEcoBackgroundCheckPackageReq, options ...MethodOptionFunc) (*CreateHireEcoBackgroundCheckPackageResp, *Response, error) - mockHireUpdateHireEcoBackgroundCheckProgress func(ctx context.Context, request *UpdateHireEcoBackgroundCheckProgressReq, options ...MethodOptionFunc) (*UpdateHireEcoBackgroundCheckProgressResp, *Response, error) - mockHireCancelHireEcoBackgroundCheck func(ctx context.Context, request *CancelHireEcoBackgroundCheckReq, options ...MethodOptionFunc) (*CancelHireEcoBackgroundCheckResp, *Response, error) - mockHireUpdateHireEcoBackgroundCheckResult func(ctx context.Context, request *UpdateHireEcoBackgroundCheckResultReq, options ...MethodOptionFunc) (*UpdateHireEcoBackgroundCheckResultResp, *Response, error) - mockHireCreateHireEcoExamLoginInfo func(ctx context.Context, request *CreateHireEcoExamLoginInfoReq, options ...MethodOptionFunc) (*CreateHireEcoExamLoginInfoResp, *Response, error) - mockHireBatchDeleteHireEcoExamPaper func(ctx context.Context, request *BatchDeleteHireEcoExamPaperReq, options ...MethodOptionFunc) (*BatchDeleteHireEcoExamPaperResp, *Response, error) - mockHireBatchUpdateHireEcoExamPaper func(ctx context.Context, request *BatchUpdateHireEcoExamPaperReq, options ...MethodOptionFunc) (*BatchUpdateHireEcoExamPaperResp, *Response, error) - mockHireCreateHireEcoExamPaper func(ctx context.Context, request *CreateHireEcoExamPaperReq, options ...MethodOptionFunc) (*CreateHireEcoExamPaperResp, *Response, error) - mockHireUpdateHiredEcoExamResult func(ctx context.Context, request *UpdateHiredEcoExamResultReq, options ...MethodOptionFunc) (*UpdateHiredEcoExamResultResp, *Response, error) - mockHireUpdateHireEHRImportTask func(ctx context.Context, request *UpdateHireEHRImportTaskReq, options ...MethodOptionFunc) (*UpdateHireEHRImportTaskResp, *Response, error) - mockHireGetHireEmployee func(ctx context.Context, request *GetHireEmployeeReq, options ...MethodOptionFunc) (*GetHireEmployeeResp, *Response, error) - mockHireGetHireEmployeeByApplication func(ctx context.Context, request *GetHireEmployeeByApplicationReq, options ...MethodOptionFunc) (*GetHireEmployeeByApplicationResp, *Response, error) - mockHireUpdateHireEmployee func(ctx context.Context, request *UpdateHireEmployeeReq, options ...MethodOptionFunc) (*UpdateHireEmployeeResp, *Response, error) - mockHireGetHireEvaluationList func(ctx context.Context, request *GetHireEvaluationListReq, options ...MethodOptionFunc) (*GetHireEvaluationListResp, *Response, error) - mockHireCreateHireExternalApplication func(ctx context.Context, request *CreateHireExternalApplicationReq, options ...MethodOptionFunc) (*CreateHireExternalApplicationResp, *Response, error) - mockHireDeleteHireExternalApplication func(ctx context.Context, request *DeleteHireExternalApplicationReq, options ...MethodOptionFunc) (*DeleteHireExternalApplicationResp, *Response, error) - mockHireUpdateHireExternalApplication func(ctx context.Context, request *UpdateHireExternalApplicationReq, options ...MethodOptionFunc) (*UpdateHireExternalApplicationResp, *Response, error) - mockHireCreateHireExternalBackgroundCheck func(ctx context.Context, request *CreateHireExternalBackgroundCheckReq, options ...MethodOptionFunc) (*CreateHireExternalBackgroundCheckResp, *Response, error) - mockHireCreateHireExternalInterviewAssessment func(ctx context.Context, request *CreateHireExternalInterviewAssessmentReq, options ...MethodOptionFunc) (*CreateHireExternalInterviewAssessmentResp, *Response, error) - mockHireCreateHireExternalInterview func(ctx context.Context, request *CreateHireExternalInterviewReq, options ...MethodOptionFunc) (*CreateHireExternalInterviewResp, *Response, error) - mockHireUpdateHireOfferInternStatus func(ctx context.Context, request *UpdateHireOfferInternStatusReq, options ...MethodOptionFunc) (*UpdateHireOfferInternStatusResp, *Response, error) - mockHireGetHireInterviewList func(ctx context.Context, request *GetHireInterviewListReq, options ...MethodOptionFunc) (*GetHireInterviewListResp, *Response, error) - mockHireGetHireJobConfig func(ctx context.Context, request *GetHireJobConfigReq, options ...MethodOptionFunc) (*GetHireJobConfigResp, *Response, error) - mockHireUpdateHireJobConfig func(ctx context.Context, request *UpdateHireJobConfigReq, options ...MethodOptionFunc) (*UpdateHireJobConfigResp, *Response, error) - mockHireCreateHireJob func(ctx context.Context, request *CreateHireJobReq, options ...MethodOptionFunc) (*CreateHireJobResp, *Response, error) - mockHireGetHireJob func(ctx context.Context, request *GetHireJobReq, options ...MethodOptionFunc) (*GetHireJobResp, *Response, error) - mockHireGetHireJobManager func(ctx context.Context, request *GetHireJobManagerReq, options ...MethodOptionFunc) (*GetHireJobManagerResp, *Response, error) - mockHireGetHireJobProcessList func(ctx context.Context, request *GetHireJobProcessListReq, options ...MethodOptionFunc) (*GetHireJobProcessListResp, *Response, error) - mockHireUpdateHireJob func(ctx context.Context, request *UpdateHireJobReq, options ...MethodOptionFunc) (*UpdateHireJobResp, *Response, error) - mockHireCreateHireNote func(ctx context.Context, request *CreateHireNoteReq, options ...MethodOptionFunc) (*CreateHireNoteResp, *Response, error) - mockHireGetHireNote func(ctx context.Context, request *GetHireNoteReq, options ...MethodOptionFunc) (*GetHireNoteResp, *Response, error) - mockHireGetHireNoteList func(ctx context.Context, request *GetHireNoteListReq, options ...MethodOptionFunc) (*GetHireNoteListResp, *Response, error) - mockHireUpdateHireNote func(ctx context.Context, request *UpdateHireNoteReq, options ...MethodOptionFunc) (*UpdateHireNoteResp, *Response, error) - mockHireGetHireOffer func(ctx context.Context, request *GetHireOfferReq, options ...MethodOptionFunc) (*GetHireOfferResp, *Response, error) - mockHireGetHireOfferByApplication func(ctx context.Context, request *GetHireOfferByApplicationReq, options ...MethodOptionFunc) (*GetHireOfferByApplicationResp, *Response, error) - mockHireGetHireOfferList func(ctx context.Context, request *GetHireOfferListReq, options ...MethodOptionFunc) (*GetHireOfferListResp, *Response, error) - mockHireGetHireOfferSchema func(ctx context.Context, request *GetHireOfferSchemaReq, options ...MethodOptionFunc) (*GetHireOfferSchemaResp, *Response, error) - mockHireCreateHireOffer func(ctx context.Context, request *CreateHireOfferReq, options ...MethodOptionFunc) (*CreateHireOfferResp, *Response, error) - mockHireUpdateHireOfferStatus func(ctx context.Context, request *UpdateHireOfferStatusReq, options ...MethodOptionFunc) (*UpdateHireOfferStatusResp, *Response, error) - mockHireUpdateHireOffer func(ctx context.Context, request *UpdateHireOfferReq, options ...MethodOptionFunc) (*UpdateHireOfferResp, *Response, error) - mockHireGetHireQuestionnaireList func(ctx context.Context, request *GetHireQuestionnaireListReq, options ...MethodOptionFunc) (*GetHireQuestionnaireListResp, *Response, error) - mockHireCreateHireReferralAccount func(ctx context.Context, request *CreateHireReferralAccountReq, options ...MethodOptionFunc) (*CreateHireReferralAccountResp, *Response, error) - mockHireDeactivateHireReferralAccount func(ctx context.Context, request *DeactivateHireReferralAccountReq, options ...MethodOptionFunc) (*DeactivateHireReferralAccountResp, *Response, error) - mockHireReconcileHireReferralAccount func(ctx context.Context, request *ReconcileHireReferralAccountReq, options ...MethodOptionFunc) (*ReconcileHireReferralAccountResp, *Response, error) - mockHireWithdrawHireReferralAccount func(ctx context.Context, request *WithdrawHireReferralAccountReq, options ...MethodOptionFunc) (*WithdrawHireReferralAccountResp, *Response, error) - mockHireGetHireReferralByApplication func(ctx context.Context, request *GetHireReferralByApplicationReq, options ...MethodOptionFunc) (*GetHireReferralByApplicationResp, *Response, error) - mockHireGetHireReferralWebsiteJobPost func(ctx context.Context, request *GetHireReferralWebsiteJobPostReq, options ...MethodOptionFunc) (*GetHireReferralWebsiteJobPostResp, *Response, error) - mockHireGetHireReferralWebsiteJobPostList func(ctx context.Context, request *GetHireReferralWebsiteJobPostListReq, options ...MethodOptionFunc) (*GetHireReferralWebsiteJobPostListResp, *Response, error) - mockHireGetHireResumeSource func(ctx context.Context, request *GetHireResumeSourceReq, options ...MethodOptionFunc) (*GetHireResumeSourceResp, *Response, error) - mockHireAddHireTalentToFolder func(ctx context.Context, request *AddHireTalentToFolderReq, options ...MethodOptionFunc) (*AddHireTalentToFolderResp, *Response, error) - mockHireBatchGetHireTalent func(ctx context.Context, request *BatchGetHireTalentReq, options ...MethodOptionFunc) (*BatchGetHireTalentResp, *Response, error) - mockHireGetHireTalentFolderList func(ctx context.Context, request *GetHireTalentFolderListReq, options ...MethodOptionFunc) (*GetHireTalentFolderListResp, *Response, error) - mockHireGetHireTalent func(ctx context.Context, request *GetHireTalentReq, options ...MethodOptionFunc) (*GetHireTalentResp, *Response, error) - mockHireGetHireTalentList func(ctx context.Context, request *GetHireTalentListReq, options ...MethodOptionFunc) (*GetHireTalentListResp, *Response, error) - mockHireQueryHireTalentObject func(ctx context.Context, request *QueryHireTalentObjectReq, options ...MethodOptionFunc) (*QueryHireTalentObjectResp, *Response, error) - mockHireMakeHireTransferOnboardByApplication func(ctx context.Context, request *MakeHireTransferOnboardByApplicationReq, options ...MethodOptionFunc) (*MakeHireTransferOnboardByApplicationResp, *Response, error) - mockHumanAuthCropFaceVerifyImage func(ctx context.Context, request *CropFaceVerifyImageReq, options ...MethodOptionFunc) (*CropFaceVerifyImageResp, *Response, error) - mockHumanAuthGetFaceVerifyAuthResult func(ctx context.Context, request *GetFaceVerifyAuthResultReq, options ...MethodOptionFunc) (*GetFaceVerifyAuthResultResp, *Response, error) - mockHumanAuthUploadFaceVerifyImage func(ctx context.Context, request *UploadFaceVerifyImageReq, options ...MethodOptionFunc) (*UploadFaceVerifyImageResp, *Response, error) - mockHumanAuthCreateIdentity func(ctx context.Context, request *CreateIdentityReq, options ...MethodOptionFunc) (*CreateIdentityResp, *Response, error) - mockJssdkGetJssdkTicket func(ctx context.Context, request *GetJssdkTicketReq, options ...MethodOptionFunc) (*GetJssdkTicketResp, *Response, error) - mockLingoGetLingoClassificationList func(ctx context.Context, request *GetLingoClassificationListReq, options ...MethodOptionFunc) (*GetLingoClassificationListResp, *Response, error) - mockLingoCreateLingoDraft func(ctx context.Context, request *CreateLingoDraftReq, options ...MethodOptionFunc) (*CreateLingoDraftResp, *Response, error) - mockLingoUpdateLingoDraft func(ctx context.Context, request *UpdateLingoDraftReq, options ...MethodOptionFunc) (*UpdateLingoDraftResp, *Response, error) - mockLingoCreateLingoEntity func(ctx context.Context, request *CreateLingoEntityReq, options ...MethodOptionFunc) (*CreateLingoEntityResp, *Response, error) - mockLingoDeleteLingoEntity func(ctx context.Context, request *DeleteLingoEntityReq, options ...MethodOptionFunc) (*DeleteLingoEntityResp, *Response, error) - mockLingoExtractLingoEntity func(ctx context.Context, request *ExtractLingoEntityReq, options ...MethodOptionFunc) (*ExtractLingoEntityResp, *Response, error) - mockLingoGetLingoEntity func(ctx context.Context, request *GetLingoEntityReq, options ...MethodOptionFunc) (*GetLingoEntityResp, *Response, error) - mockLingoHighlightLingoEntity func(ctx context.Context, request *HighlightLingoEntityReq, options ...MethodOptionFunc) (*HighlightLingoEntityResp, *Response, error) - mockLingoGetLingoEntityList func(ctx context.Context, request *GetLingoEntityListReq, options ...MethodOptionFunc) (*GetLingoEntityListResp, *Response, error) - mockLingoMatchLingoEntity func(ctx context.Context, request *MatchLingoEntityReq, options ...MethodOptionFunc) (*MatchLingoEntityResp, *Response, error) - mockLingoSearchLingoEntity func(ctx context.Context, request *SearchLingoEntityReq, options ...MethodOptionFunc) (*SearchLingoEntityResp, *Response, error) - mockLingoUpdateLingoEntity func(ctx context.Context, request *UpdateLingoEntityReq, options ...MethodOptionFunc) (*UpdateLingoEntityResp, *Response, error) - mockLingoDownloadLingoFile func(ctx context.Context, request *DownloadLingoFileReq, options ...MethodOptionFunc) (*DownloadLingoFileResp, *Response, error) - mockLingoUploadLingoFile func(ctx context.Context, request *UploadLingoFileReq, options ...MethodOptionFunc) (*UploadLingoFileResp, *Response, error) - mockLingoGetLingoRepoList func(ctx context.Context, request *GetLingoRepoListReq, options ...MethodOptionFunc) (*GetLingoRepoListResp, *Response, error) - mockMDMBindMDMUserAuthDataRelation func(ctx context.Context, request *BindMDMUserAuthDataRelationReq, options ...MethodOptionFunc) (*BindMDMUserAuthDataRelationResp, *Response, error) - mockMDMUnbindMDMUserAuthDataRelation func(ctx context.Context, request *UnbindMDMUserAuthDataRelationReq, options ...MethodOptionFunc) (*UnbindMDMUserAuthDataRelationResp, *Response, error) - mockMailCreateMailGroupAlias func(ctx context.Context, request *CreateMailGroupAliasReq, options ...MethodOptionFunc) (*CreateMailGroupAliasResp, *Response, error) - mockMailDeleteMailGroupAlias func(ctx context.Context, request *DeleteMailGroupAliasReq, options ...MethodOptionFunc) (*DeleteMailGroupAliasResp, *Response, error) - mockMailGetMailGroupAliasList func(ctx context.Context, request *GetMailGroupAliasListReq, options ...MethodOptionFunc) (*GetMailGroupAliasListResp, *Response, error) - mockMailCreateMailGroup func(ctx context.Context, request *CreateMailGroupReq, options ...MethodOptionFunc) (*CreateMailGroupResp, *Response, error) - mockMailDeleteMailGroup func(ctx context.Context, request *DeleteMailGroupReq, options ...MethodOptionFunc) (*DeleteMailGroupResp, *Response, error) - mockMailGetMailGroup func(ctx context.Context, request *GetMailGroupReq, options ...MethodOptionFunc) (*GetMailGroupResp, *Response, error) - mockMailGetMailGroupList func(ctx context.Context, request *GetMailGroupListReq, options ...MethodOptionFunc) (*GetMailGroupListResp, *Response, error) - mockMailBatchCreateMailGroupManager func(ctx context.Context, request *BatchCreateMailGroupManagerReq, options ...MethodOptionFunc) (*BatchCreateMailGroupManagerResp, *Response, error) - mockMailBatchDeleteMailGroupManager func(ctx context.Context, request *BatchDeleteMailGroupManagerReq, options ...MethodOptionFunc) (*BatchDeleteMailGroupManagerResp, *Response, error) - mockMailGetMailGroupManagerList func(ctx context.Context, request *GetMailGroupManagerListReq, options ...MethodOptionFunc) (*GetMailGroupManagerListResp, *Response, error) - mockMailBatchCreateMailGroupMember func(ctx context.Context, request *BatchCreateMailGroupMemberReq, options ...MethodOptionFunc) (*BatchCreateMailGroupMemberResp, *Response, error) - mockMailBatchDeleteMailGroupMember func(ctx context.Context, request *BatchDeleteMailGroupMemberReq, options ...MethodOptionFunc) (*BatchDeleteMailGroupMemberResp, *Response, error) - mockMailCreateMailGroupMember func(ctx context.Context, request *CreateMailGroupMemberReq, options ...MethodOptionFunc) (*CreateMailGroupMemberResp, *Response, error) - mockMailDeleteMailGroupMember func(ctx context.Context, request *DeleteMailGroupMemberReq, options ...MethodOptionFunc) (*DeleteMailGroupMemberResp, *Response, error) - mockMailGetMailGroupMember func(ctx context.Context, request *GetMailGroupMemberReq, options ...MethodOptionFunc) (*GetMailGroupMemberResp, *Response, error) - mockMailGetMailGroupMemberList func(ctx context.Context, request *GetMailGroupMemberListReq, options ...MethodOptionFunc) (*GetMailGroupMemberListResp, *Response, error) - mockMailUpdateMailGroupPatch func(ctx context.Context, request *UpdateMailGroupPatchReq, options ...MethodOptionFunc) (*UpdateMailGroupPatchResp, *Response, error) - mockMailBatchCreateMailGroupPermissionMember func(ctx context.Context, request *BatchCreateMailGroupPermissionMemberReq, options ...MethodOptionFunc) (*BatchCreateMailGroupPermissionMemberResp, *Response, error) - mockMailBatchDeleteMailGroupPermissionMember func(ctx context.Context, request *BatchDeleteMailGroupPermissionMemberReq, options ...MethodOptionFunc) (*BatchDeleteMailGroupPermissionMemberResp, *Response, error) - mockMailCreateMailGroupPermissionMember func(ctx context.Context, request *CreateMailGroupPermissionMemberReq, options ...MethodOptionFunc) (*CreateMailGroupPermissionMemberResp, *Response, error) - mockMailDeleteMailGroupPermissionMember func(ctx context.Context, request *DeleteMailGroupPermissionMemberReq, options ...MethodOptionFunc) (*DeleteMailGroupPermissionMemberResp, *Response, error) - mockMailGetMailGroupPermissionMember func(ctx context.Context, request *GetMailGroupPermissionMemberReq, options ...MethodOptionFunc) (*GetMailGroupPermissionMemberResp, *Response, error) - mockMailGetMailGroupPermissionMemberList func(ctx context.Context, request *GetMailGroupPermissionMemberListReq, options ...MethodOptionFunc) (*GetMailGroupPermissionMemberListResp, *Response, error) - mockMailUpdateMailGroup func(ctx context.Context, request *UpdateMailGroupReq, options ...MethodOptionFunc) (*UpdateMailGroupResp, *Response, error) - mockMailCreateMailPublicMailboxAlias func(ctx context.Context, request *CreateMailPublicMailboxAliasReq, options ...MethodOptionFunc) (*CreateMailPublicMailboxAliasResp, *Response, error) - mockMailDeleteMailPublicMailboxAlias func(ctx context.Context, request *DeleteMailPublicMailboxAliasReq, options ...MethodOptionFunc) (*DeleteMailPublicMailboxAliasResp, *Response, error) - mockMailGetMailPublicMailboxAliasList func(ctx context.Context, request *GetMailPublicMailboxAliasListReq, options ...MethodOptionFunc) (*GetMailPublicMailboxAliasListResp, *Response, error) - mockMailCreatePublicMailbox func(ctx context.Context, request *CreatePublicMailboxReq, options ...MethodOptionFunc) (*CreatePublicMailboxResp, *Response, error) - mockMailDeletePublicMailbox func(ctx context.Context, request *DeletePublicMailboxReq, options ...MethodOptionFunc) (*DeletePublicMailboxResp, *Response, error) - mockMailGetPublicMailbox func(ctx context.Context, request *GetPublicMailboxReq, options ...MethodOptionFunc) (*GetPublicMailboxResp, *Response, error) - mockMailGetPublicMailboxList func(ctx context.Context, request *GetPublicMailboxListReq, options ...MethodOptionFunc) (*GetPublicMailboxListResp, *Response, error) - mockMailBatchCreatePublicMailboxMember func(ctx context.Context, request *BatchCreatePublicMailboxMemberReq, options ...MethodOptionFunc) (*BatchCreatePublicMailboxMemberResp, *Response, error) - mockMailBatchDeletePublicMailboxMember func(ctx context.Context, request *BatchDeletePublicMailboxMemberReq, options ...MethodOptionFunc) (*BatchDeletePublicMailboxMemberResp, *Response, error) - mockMailClearPublicMailboxMember func(ctx context.Context, request *ClearPublicMailboxMemberReq, options ...MethodOptionFunc) (*ClearPublicMailboxMemberResp, *Response, error) - mockMailCreatePublicMailboxMember func(ctx context.Context, request *CreatePublicMailboxMemberReq, options ...MethodOptionFunc) (*CreatePublicMailboxMemberResp, *Response, error) - mockMailDeletePublicMailboxMember func(ctx context.Context, request *DeletePublicMailboxMemberReq, options ...MethodOptionFunc) (*DeletePublicMailboxMemberResp, *Response, error) - mockMailGetPublicMailboxMember func(ctx context.Context, request *GetPublicMailboxMemberReq, options ...MethodOptionFunc) (*GetPublicMailboxMemberResp, *Response, error) - mockMailGetPublicMailboxMemberList func(ctx context.Context, request *GetPublicMailboxMemberListReq, options ...MethodOptionFunc) (*GetPublicMailboxMemberListResp, *Response, error) - mockMailUpdatePublicMailboxPatch func(ctx context.Context, request *UpdatePublicMailboxPatchReq, options ...MethodOptionFunc) (*UpdatePublicMailboxPatchResp, *Response, error) - mockMailUpdatePublicMailbox func(ctx context.Context, request *UpdatePublicMailboxReq, options ...MethodOptionFunc) (*UpdatePublicMailboxResp, *Response, error) - mockMailGetMailUser func(ctx context.Context, request *GetMailUserReq, options ...MethodOptionFunc) (*GetMailUserResp, *Response, error) - mockMailCreateMailUserMailboxAlias func(ctx context.Context, request *CreateMailUserMailboxAliasReq, options ...MethodOptionFunc) (*CreateMailUserMailboxAliasResp, *Response, error) - mockMailDeleteMailUserMailboxAlias func(ctx context.Context, request *DeleteMailUserMailboxAliasReq, options ...MethodOptionFunc) (*DeleteMailUserMailboxAliasResp, *Response, error) - mockMailGetMailUserMailboxAliasList func(ctx context.Context, request *GetMailUserMailboxAliasListReq, options ...MethodOptionFunc) (*GetMailUserMailboxAliasListResp, *Response, error) - mockMailDeleteMailUserMailbox func(ctx context.Context, request *DeleteMailUserMailboxReq, options ...MethodOptionFunc) (*DeleteMailUserMailboxResp, *Response, error) - mockMessageUpdateAppFeedCardButton func(ctx context.Context, request *UpdateAppFeedCardButtonReq, options ...MethodOptionFunc) (*UpdateAppFeedCardButtonResp, *Response, error) - mockMessageCreateAppFeedCard func(ctx context.Context, request *CreateAppFeedCardReq, options ...MethodOptionFunc) (*CreateAppFeedCardResp, *Response, error) - mockMessageDeleteAppFeedCard func(ctx context.Context, request *DeleteAppFeedCardReq, options ...MethodOptionFunc) (*DeleteAppFeedCardResp, *Response, error) - mockMessageInstantReminderAppFeedCard func(ctx context.Context, request *InstantReminderAppFeedCardReq, options ...MethodOptionFunc) (*InstantReminderAppFeedCardResp, *Response, error) - mockMessageUpdateAppFeedCard func(ctx context.Context, request *UpdateAppFeedCardReq, options ...MethodOptionFunc) (*UpdateAppFeedCardResp, *Response, error) - mockMessageCreateIMTag func(ctx context.Context, request *CreateIMTagReq, options ...MethodOptionFunc) (*CreateIMTagResp, *Response, error) - mockMessageMGetIMTag func(ctx context.Context, request *MGetIMTagReq, options ...MethodOptionFunc) (*MGetIMTagResp, *Response, error) - mockMessageCreateIMTagRelation func(ctx context.Context, request *CreateIMTagRelationReq, options ...MethodOptionFunc) (*CreateIMTagRelationResp, *Response, error) - mockMessageDeleteIMTagRelation func(ctx context.Context, request *DeleteIMTagRelationReq, options ...MethodOptionFunc) (*DeleteIMTagRelationResp, *Response, error) - mockMessageListIMTagRelation func(ctx context.Context, request *ListIMTagRelationReq, options ...MethodOptionFunc) (*ListIMTagRelationResp, *Response, error) - mockMessageUpdateIMTag func(ctx context.Context, request *UpdateIMTagReq, options ...MethodOptionFunc) (*UpdateIMTagResp, *Response, error) - mockMessageBatchDeleteMessage func(ctx context.Context, request *BatchDeleteMessageReq, options ...MethodOptionFunc) (*BatchDeleteMessageResp, *Response, error) - mockMessageBatchSendOldRawMessage func(ctx context.Context, request *BatchSendOldRawMessageReq, options ...MethodOptionFunc) (*BatchSendOldRawMessageResp, *Response, error) - mockMessageDeleteMessage func(ctx context.Context, request *DeleteMessageReq, options ...MethodOptionFunc) (*DeleteMessageResp, *Response, error) - mockMessageDeleteEphemeralMessage func(ctx context.Context, request *DeleteEphemeralMessageReq, options ...MethodOptionFunc) (*DeleteEphemeralMessageResp, *Response, error) - mockMessageForwardMessage func(ctx context.Context, request *ForwardMessageReq, options ...MethodOptionFunc) (*ForwardMessageResp, *Response, error) - mockMessageGetMessage func(ctx context.Context, request *GetMessageReq, options ...MethodOptionFunc) (*GetMessageResp, *Response, error) - mockMessageGetBatchSentMessageProgress func(ctx context.Context, request *GetBatchSentMessageProgressReq, options ...MethodOptionFunc) (*GetBatchSentMessageProgressResp, *Response, error) - mockMessageGetBatchSentMessageReadUser func(ctx context.Context, request *GetBatchSentMessageReadUserReq, options ...MethodOptionFunc) (*GetBatchSentMessageReadUserResp, *Response, error) - mockMessageGetMessageFile func(ctx context.Context, request *GetMessageFileReq, options ...MethodOptionFunc) (*GetMessageFileResp, *Response, error) - mockMessageGetMessageReadUserList func(ctx context.Context, request *GetMessageReadUserListReq, options ...MethodOptionFunc) (*GetMessageReadUserListResp, *Response, error) - mockMessageGetMessageList func(ctx context.Context, request *GetMessageListReq, options ...MethodOptionFunc) (*GetMessageListResp, *Response, error) - mockMessageMergeForwardMessage func(ctx context.Context, request *MergeForwardMessageReq, options ...MethodOptionFunc) (*MergeForwardMessageResp, *Response, error) - mockMessageCreateMessagePin func(ctx context.Context, request *CreateMessagePinReq, options ...MethodOptionFunc) (*CreateMessagePinResp, *Response, error) - mockMessageDeleteMessagePin func(ctx context.Context, request *DeleteMessagePinReq, options ...MethodOptionFunc) (*DeleteMessagePinResp, *Response, error) - mockMessageGetMessagePinList func(ctx context.Context, request *GetMessagePinListReq, options ...MethodOptionFunc) (*GetMessagePinListResp, *Response, error) - mockMessageCreateMessageReaction func(ctx context.Context, request *CreateMessageReactionReq, options ...MethodOptionFunc) (*CreateMessageReactionResp, *Response, error) - mockMessageDeleteMessageReaction func(ctx context.Context, request *DeleteMessageReactionReq, options ...MethodOptionFunc) (*DeleteMessageReactionResp, *Response, error) - mockMessageGetMessageReactionList func(ctx context.Context, request *GetMessageReactionListReq, options ...MethodOptionFunc) (*GetMessageReactionListResp, *Response, error) - mockMessageReplyRawMessage func(ctx context.Context, request *ReplyRawMessageReq, options ...MethodOptionFunc) (*ReplyRawMessageResp, *Response, error) - mockMessageSendRawMessage func(ctx context.Context, request *SendRawMessageReq, options ...MethodOptionFunc) (*SendRawMessageResp, *Response, error) - mockMessageSendEphemeralMessage func(ctx context.Context, request *SendEphemeralMessageReq, options ...MethodOptionFunc) (*SendEphemeralMessageResp, *Response, error) - mockMessageSendRawMessageOld func(ctx context.Context, request *SendRawMessageOldReq, options ...MethodOptionFunc) (*SendRawMessageOldResp, *Response, error) - mockMessageSendUrgentAppMessage func(ctx context.Context, request *SendUrgentAppMessageReq, options ...MethodOptionFunc) (*SendUrgentAppMessageResp, *Response, error) - mockMessageSendUrgentPhoneMessage func(ctx context.Context, request *SendUrgentPhoneMessageReq, options ...MethodOptionFunc) (*SendUrgentPhoneMessageResp, *Response, error) - mockMessageSendUrgentSmsMessage func(ctx context.Context, request *SendUrgentSmsMessageReq, options ...MethodOptionFunc) (*SendUrgentSmsMessageResp, *Response, error) - mockMessageGetMessageSpecialFocusList func(ctx context.Context, request *GetMessageSpecialFocusListReq, options ...MethodOptionFunc) (*GetMessageSpecialFocusListResp, *Response, error) - mockMessageGetMessageSpecialFocusUnread func(ctx context.Context, request *GetMessageSpecialFocusUnreadReq, options ...MethodOptionFunc) (*GetMessageSpecialFocusUnreadResp, *Response, error) - mockMessageForwardThreadMessage func(ctx context.Context, request *ForwardThreadMessageReq, options ...MethodOptionFunc) (*ForwardThreadMessageResp, *Response, error) - mockMessageUpdateMessage func(ctx context.Context, request *UpdateMessageReq, options ...MethodOptionFunc) (*UpdateMessageResp, *Response, error) - mockMessageUpdateMessageDelay func(ctx context.Context, request *UpdateMessageDelayReq, options ...MethodOptionFunc) (*UpdateMessageDelayResp, *Response, error) - mockMessageUpdateMessageEdit func(ctx context.Context, request *UpdateMessageEditReq, options ...MethodOptionFunc) (*UpdateMessageEditResp, *Response, error) - mockMessageBatchUpdateURLPreview func(ctx context.Context, request *BatchUpdateURLPreviewReq, options ...MethodOptionFunc) (*BatchUpdateURLPreviewResp, *Response, error) - mockMinaMinaCodeToSession func(ctx context.Context, request *MinaCodeToSessionReq, options ...MethodOptionFunc) (*MinaCodeToSessionResp, *Response, error) - mockMinutesGetMinutesMinute func(ctx context.Context, request *GetMinutesMinuteReq, options ...MethodOptionFunc) (*GetMinutesMinuteResp, *Response, error) - mockMinutesGetMinutesStatistics func(ctx context.Context, request *GetMinutesStatisticsReq, options ...MethodOptionFunc) (*GetMinutesStatisticsResp, *Response, error) - mockOKRUploadOKRImage func(ctx context.Context, request *UploadOKRImageReq, options ...MethodOptionFunc) (*UploadOKRImageResp, *Response, error) - mockOKRGetOKRMetricSourceList func(ctx context.Context, request *GetOKRMetricSourceListReq, options ...MethodOptionFunc) (*GetOKRMetricSourceListResp, *Response, error) - mockOKRBatchUpdateOKRMetricSourceTableItem func(ctx context.Context, request *BatchUpdateOKRMetricSourceTableItemReq, options ...MethodOptionFunc) (*BatchUpdateOKRMetricSourceTableItemResp, *Response, error) - mockOKRGetOKRMetricSourceTableItem func(ctx context.Context, request *GetOKRMetricSourceTableItemReq, options ...MethodOptionFunc) (*GetOKRMetricSourceTableItemResp, *Response, error) - mockOKRGetOKRMetricSourceTableItemList func(ctx context.Context, request *GetOKRMetricSourceTableItemListReq, options ...MethodOptionFunc) (*GetOKRMetricSourceTableItemListResp, *Response, error) - mockOKRUpdateOKRMetricSourceTableItem func(ctx context.Context, request *UpdateOKRMetricSourceTableItemReq, options ...MethodOptionFunc) (*UpdateOKRMetricSourceTableItemResp, *Response, error) - mockOKRGetOKRMetricSourceTableList func(ctx context.Context, request *GetOKRMetricSourceTableListReq, options ...MethodOptionFunc) (*GetOKRMetricSourceTableListResp, *Response, error) - mockOKRBatchGetOKR func(ctx context.Context, request *BatchGetOKRReq, options ...MethodOptionFunc) (*BatchGetOKRResp, *Response, error) - mockOKRCreateOKRPeriod func(ctx context.Context, request *CreateOKRPeriodReq, options ...MethodOptionFunc) (*CreateOKRPeriodResp, *Response, error) - mockOKRGetOKRPeriodList func(ctx context.Context, request *GetOKRPeriodListReq, options ...MethodOptionFunc) (*GetOKRPeriodListResp, *Response, error) - mockOKRGetOKRPeriodRuleList func(ctx context.Context, request *GetOKRPeriodRuleListReq, options ...MethodOptionFunc) (*GetOKRPeriodRuleListResp, *Response, error) - mockOKRUpdateOKRPeriod func(ctx context.Context, request *UpdateOKRPeriodReq, options ...MethodOptionFunc) (*UpdateOKRPeriodResp, *Response, error) - mockOKRCreateOKRProgressRecord func(ctx context.Context, request *CreateOKRProgressRecordReq, options ...MethodOptionFunc) (*CreateOKRProgressRecordResp, *Response, error) - mockOKRDeleteOKRProgressRecord func(ctx context.Context, request *DeleteOKRProgressRecordReq, options ...MethodOptionFunc) (*DeleteOKRProgressRecordResp, *Response, error) - mockOKRGetOKRProgressRecord func(ctx context.Context, request *GetOKRProgressRecordReq, options ...MethodOptionFunc) (*GetOKRProgressRecordResp, *Response, error) - mockOKRUpdateOKRProgressRecord func(ctx context.Context, request *UpdateOKRProgressRecordReq, options ...MethodOptionFunc) (*UpdateOKRProgressRecordResp, *Response, error) - mockOKRGetOKRReview func(ctx context.Context, request *GetOKRReviewReq, options ...MethodOptionFunc) (*GetOKRReviewResp, *Response, error) - mockOKRGetUserOKRList func(ctx context.Context, request *GetUserOKRListReq, options ...MethodOptionFunc) (*GetUserOKRListResp, *Response, error) - mockPassportGetPassportSession func(ctx context.Context, request *GetPassportSessionReq, options ...MethodOptionFunc) (*GetPassportSessionResp, *Response, error) - mockPerformanceGetPerformanceReviewData func(ctx context.Context, request *GetPerformanceReviewDataReq, options ...MethodOptionFunc) (*GetPerformanceReviewDataResp, *Response, error) - mockPerformanceGetPerformanceSemesterList func(ctx context.Context, request *GetPerformanceSemesterListReq, options ...MethodOptionFunc) (*GetPerformanceSemesterListResp, *Response, error) - mockPerformanceGetPerformanceStageTaskByPage func(ctx context.Context, request *GetPerformanceStageTaskByPageReq, options ...MethodOptionFunc) (*GetPerformanceStageTaskByPageResp, *Response, error) - mockPerformanceGetPerformanceStageTaskByUser func(ctx context.Context, request *GetPerformanceStageTaskByUserReq, options ...MethodOptionFunc) (*GetPerformanceStageTaskByUserResp, *Response, error) - mockPersonalSettingsBatchClosePersonalSettingsSystemStatus func(ctx context.Context, request *BatchClosePersonalSettingsSystemStatusReq, options ...MethodOptionFunc) (*BatchClosePersonalSettingsSystemStatusResp, *Response, error) - mockPersonalSettingsBatchOpenPersonalSettingsSystemStatus func(ctx context.Context, request *BatchOpenPersonalSettingsSystemStatusReq, options ...MethodOptionFunc) (*BatchOpenPersonalSettingsSystemStatusResp, *Response, error) - mockPersonalSettingsCreatePersonalSettingsSystemStatus func(ctx context.Context, request *CreatePersonalSettingsSystemStatusReq, options ...MethodOptionFunc) (*CreatePersonalSettingsSystemStatusResp, *Response, error) - mockPersonalSettingsDeletePersonalSettingsSystemStatus func(ctx context.Context, request *DeletePersonalSettingsSystemStatusReq, options ...MethodOptionFunc) (*DeletePersonalSettingsSystemStatusResp, *Response, error) - mockPersonalSettingsGetPersonalSettingsSystemStatusList func(ctx context.Context, request *GetPersonalSettingsSystemStatusListReq, options ...MethodOptionFunc) (*GetPersonalSettingsSystemStatusListResp, *Response, error) - mockPersonalSettingsUpdatePersonalSettingsSystemStatus func(ctx context.Context, request *UpdatePersonalSettingsSystemStatusReq, options ...MethodOptionFunc) (*UpdatePersonalSettingsSystemStatusResp, *Response, error) - mockReportQueryReportRule func(ctx context.Context, request *QueryReportRuleReq, options ...MethodOptionFunc) (*QueryReportRuleResp, *Response, error) - mockReportQueryReportTask func(ctx context.Context, request *QueryReportTaskReq, options ...MethodOptionFunc) (*QueryReportTaskResp, *Response, error) - mockReportRemoveReportView func(ctx context.Context, request *RemoveReportViewReq, options ...MethodOptionFunc) (*RemoveReportViewResp, *Response, error) - mockSearchSearchApp func(ctx context.Context, request *SearchAppReq, options ...MethodOptionFunc) (*SearchAppResp, *Response, error) - mockSearchCreateSearchDataSource func(ctx context.Context, request *CreateSearchDataSourceReq, options ...MethodOptionFunc) (*CreateSearchDataSourceResp, *Response, error) - mockSearchDeleteSearchDataSource func(ctx context.Context, request *DeleteSearchDataSourceReq, options ...MethodOptionFunc) (*DeleteSearchDataSourceResp, *Response, error) - mockSearchGetSearchDataSource func(ctx context.Context, request *GetSearchDataSourceReq, options ...MethodOptionFunc) (*GetSearchDataSourceResp, *Response, error) - mockSearchCreateSearchDataSourceItem func(ctx context.Context, request *CreateSearchDataSourceItemReq, options ...MethodOptionFunc) (*CreateSearchDataSourceItemResp, *Response, error) - mockSearchBatchCreateSearchDataSourceItem func(ctx context.Context, request *BatchCreateSearchDataSourceItemReq, options ...MethodOptionFunc) (*BatchCreateSearchDataSourceItemResp, *Response, error) - mockSearchDeleteSearchDataSourceItem func(ctx context.Context, request *DeleteSearchDataSourceItemReq, options ...MethodOptionFunc) (*DeleteSearchDataSourceItemResp, *Response, error) - mockSearchGetSearchDataSourceItem func(ctx context.Context, request *GetSearchDataSourceItemReq, options ...MethodOptionFunc) (*GetSearchDataSourceItemResp, *Response, error) - mockSearchGetSearchDataSourceList func(ctx context.Context, request *GetSearchDataSourceListReq, options ...MethodOptionFunc) (*GetSearchDataSourceListResp, *Response, error) - mockSearchUpdateSearchDataSource func(ctx context.Context, request *UpdateSearchDataSourceReq, options ...MethodOptionFunc) (*UpdateSearchDataSourceResp, *Response, error) - mockSearchSearchMessage func(ctx context.Context, request *SearchMessageReq, options ...MethodOptionFunc) (*SearchMessageResp, *Response, error) - mockSearchCreateSearchSchema func(ctx context.Context, request *CreateSearchSchemaReq, options ...MethodOptionFunc) (*CreateSearchSchemaResp, *Response, error) - mockSearchDeleteSearchSchema func(ctx context.Context, request *DeleteSearchSchemaReq, options ...MethodOptionFunc) (*DeleteSearchSchemaResp, *Response, error) - mockSearchGetSearchSchema func(ctx context.Context, request *GetSearchSchemaReq, options ...MethodOptionFunc) (*GetSearchSchemaResp, *Response, error) - mockSearchUpdateSearchSchema func(ctx context.Context, request *UpdateSearchSchemaReq, options ...MethodOptionFunc) (*UpdateSearchSchemaResp, *Response, error) - mockTaskAddTaskDependency func(ctx context.Context, request *AddTaskDependencyReq, options ...MethodOptionFunc) (*AddTaskDependencyResp, *Response, error) - mockTaskDeleteTaskAttachment func(ctx context.Context, request *DeleteTaskAttachmentReq, options ...MethodOptionFunc) (*DeleteTaskAttachmentResp, *Response, error) - mockTaskGetTaskAttachment func(ctx context.Context, request *GetTaskAttachmentReq, options ...MethodOptionFunc) (*GetTaskAttachmentResp, *Response, error) - mockTaskGetTaskAttachmentList func(ctx context.Context, request *GetTaskAttachmentListReq, options ...MethodOptionFunc) (*GetTaskAttachmentListResp, *Response, error) - mockTaskUploadTaskAttachment func(ctx context.Context, request *UploadTaskAttachmentReq, options ...MethodOptionFunc) (*UploadTaskAttachmentResp, *Response, error) - mockTaskCreateTaskCollaborator func(ctx context.Context, request *CreateTaskCollaboratorReq, options ...MethodOptionFunc) (*CreateTaskCollaboratorResp, *Response, error) - mockTaskDeleteTaskCollaborator func(ctx context.Context, request *DeleteTaskCollaboratorReq, options ...MethodOptionFunc) (*DeleteTaskCollaboratorResp, *Response, error) - mockTaskBatchDeleteTaskCollaborator func(ctx context.Context, request *BatchDeleteTaskCollaboratorReq, options ...MethodOptionFunc) (*BatchDeleteTaskCollaboratorResp, *Response, error) - mockTaskGetTaskCollaboratorList func(ctx context.Context, request *GetTaskCollaboratorListReq, options ...MethodOptionFunc) (*GetTaskCollaboratorListResp, *Response, error) - mockTaskCreateTaskComment func(ctx context.Context, request *CreateTaskCommentReq, options ...MethodOptionFunc) (*CreateTaskCommentResp, *Response, error) - mockTaskDeleteTaskComment func(ctx context.Context, request *DeleteTaskCommentReq, options ...MethodOptionFunc) (*DeleteTaskCommentResp, *Response, error) - mockTaskGetTaskComment func(ctx context.Context, request *GetTaskCommentReq, options ...MethodOptionFunc) (*GetTaskCommentResp, *Response, error) - mockTaskGetTaskCommentList func(ctx context.Context, request *GetTaskCommentListReq, options ...MethodOptionFunc) (*GetTaskCommentListResp, *Response, error) - mockTaskUpdateTaskComment func(ctx context.Context, request *UpdateTaskCommentReq, options ...MethodOptionFunc) (*UpdateTaskCommentResp, *Response, error) - mockTaskAddTaskCustomField func(ctx context.Context, request *AddTaskCustomFieldReq, options ...MethodOptionFunc) (*AddTaskCustomFieldResp, *Response, error) - mockTaskCreateTaskCustomFieldOption func(ctx context.Context, request *CreateTaskCustomFieldOptionReq, options ...MethodOptionFunc) (*CreateTaskCustomFieldOptionResp, *Response, error) - mockTaskUpdateTaskCustomFieldOption func(ctx context.Context, request *UpdateTaskCustomFieldOptionReq, options ...MethodOptionFunc) (*UpdateTaskCustomFieldOptionResp, *Response, error) - mockTaskRemoveTaskCustomField func(ctx context.Context, request *RemoveTaskCustomFieldReq, options ...MethodOptionFunc) (*RemoveTaskCustomFieldResp, *Response, error) - mockTaskRemoveTaskDependency func(ctx context.Context, request *RemoveTaskDependencyReq, options ...MethodOptionFunc) (*RemoveTaskDependencyResp, *Response, error) - mockTaskCreateTaskFollower func(ctx context.Context, request *CreateTaskFollowerReq, options ...MethodOptionFunc) (*CreateTaskFollowerResp, *Response, error) - mockTaskDeleteTaskFollower func(ctx context.Context, request *DeleteTaskFollowerReq, options ...MethodOptionFunc) (*DeleteTaskFollowerResp, *Response, error) - mockTaskBatchDeleteTaskFollower func(ctx context.Context, request *BatchDeleteTaskFollowerReq, options ...MethodOptionFunc) (*BatchDeleteTaskFollowerResp, *Response, error) - mockTaskGetTaskFollowerList func(ctx context.Context, request *GetTaskFollowerListReq, options ...MethodOptionFunc) (*GetTaskFollowerListResp, *Response, error) - mockTaskAddTaskMember func(ctx context.Context, request *AddTaskMemberReq, options ...MethodOptionFunc) (*AddTaskMemberResp, *Response, error) - mockTaskRemoveTaskMember func(ctx context.Context, request *RemoveTaskMemberReq, options ...MethodOptionFunc) (*RemoveTaskMemberResp, *Response, error) - mockTaskAddTaskReminder func(ctx context.Context, request *AddTaskReminderReq, options ...MethodOptionFunc) (*AddTaskReminderResp, *Response, error) - mockTaskCreateTaskReminder func(ctx context.Context, request *CreateTaskReminderReq, options ...MethodOptionFunc) (*CreateTaskReminderResp, *Response, error) - mockTaskDeleteTaskReminder func(ctx context.Context, request *DeleteTaskReminderReq, options ...MethodOptionFunc) (*DeleteTaskReminderResp, *Response, error) - mockTaskGetTaskReminderList func(ctx context.Context, request *GetTaskReminderListReq, options ...MethodOptionFunc) (*GetTaskReminderListResp, *Response, error) - mockTaskRemoveTaskReminder func(ctx context.Context, request *RemoveTaskReminderReq, options ...MethodOptionFunc) (*RemoveTaskReminderResp, *Response, error) - mockTaskCreateTaskSection func(ctx context.Context, request *CreateTaskSectionReq, options ...MethodOptionFunc) (*CreateTaskSectionResp, *Response, error) - mockTaskDeleteTaskSection func(ctx context.Context, request *DeleteTaskSectionReq, options ...MethodOptionFunc) (*DeleteTaskSectionResp, *Response, error) - mockTaskGetTaskSection func(ctx context.Context, request *GetTaskSectionReq, options ...MethodOptionFunc) (*GetTaskSectionResp, *Response, error) - mockTaskGetTaskSectionList func(ctx context.Context, request *GetTaskSectionListReq, options ...MethodOptionFunc) (*GetTaskSectionListResp, *Response, error) - mockTaskGetTaskTaskListOfSection func(ctx context.Context, request *GetTaskTaskListOfSectionReq, options ...MethodOptionFunc) (*GetTaskTaskListOfSectionResp, *Response, error) - mockTaskUpdateTaskSection func(ctx context.Context, request *UpdateTaskSectionReq, options ...MethodOptionFunc) (*UpdateTaskSectionResp, *Response, error) - mockTaskCreateTaskSubtask func(ctx context.Context, request *CreateTaskSubtaskReq, options ...MethodOptionFunc) (*CreateTaskSubtaskResp, *Response, error) - mockTaskGetTaskSubtaskList func(ctx context.Context, request *GetTaskSubtaskListReq, options ...MethodOptionFunc) (*GetTaskSubtaskListResp, *Response, error) - mockTaskCompleteTask func(ctx context.Context, request *CompleteTaskReq, options ...MethodOptionFunc) (*CompleteTaskResp, *Response, error) - mockTaskCreateTask func(ctx context.Context, request *CreateTaskReq, options ...MethodOptionFunc) (*CreateTaskResp, *Response, error) - mockTaskDeleteTask func(ctx context.Context, request *DeleteTaskReq, options ...MethodOptionFunc) (*DeleteTaskResp, *Response, error) - mockTaskGetTask func(ctx context.Context, request *GetTaskReq, options ...MethodOptionFunc) (*GetTaskResp, *Response, error) - mockTaskGetTaskList func(ctx context.Context, request *GetTaskListReq, options ...MethodOptionFunc) (*GetTaskListResp, *Response, error) - mockTaskUncompleteTask func(ctx context.Context, request *UncompleteTaskReq, options ...MethodOptionFunc) (*UncompleteTaskResp, *Response, error) - mockTaskUpdateTask func(ctx context.Context, request *UpdateTaskReq, options ...MethodOptionFunc) (*UpdateTaskResp, *Response, error) - mockTaskCreateTaskTasklistActivitySubscription func(ctx context.Context, request *CreateTaskTasklistActivitySubscriptionReq, options ...MethodOptionFunc) (*CreateTaskTasklistActivitySubscriptionResp, *Response, error) - mockTaskDeleteTaskTasklistActivitySubscription func(ctx context.Context, request *DeleteTaskTasklistActivitySubscriptionReq, options ...MethodOptionFunc) (*DeleteTaskTasklistActivitySubscriptionResp, *Response, error) - mockTaskGetTaskTasklistActivitySubscription func(ctx context.Context, request *GetTaskTasklistActivitySubscriptionReq, options ...MethodOptionFunc) (*GetTaskTasklistActivitySubscriptionResp, *Response, error) - mockTaskGetTaskTasklistActivitySubscriptionList func(ctx context.Context, request *GetTaskTasklistActivitySubscriptionListReq, options ...MethodOptionFunc) (*GetTaskTasklistActivitySubscriptionListResp, *Response, error) - mockTaskUpdateTaskTasklistActivitySubscription func(ctx context.Context, request *UpdateTaskTasklistActivitySubscriptionReq, options ...MethodOptionFunc) (*UpdateTaskTasklistActivitySubscriptionResp, *Response, error) - mockTaskAddTaskTasklist func(ctx context.Context, request *AddTaskTasklistReq, options ...MethodOptionFunc) (*AddTaskTasklistResp, *Response, error) - mockTaskCreateTaskTasklist func(ctx context.Context, request *CreateTaskTasklistReq, options ...MethodOptionFunc) (*CreateTaskTasklistResp, *Response, error) - mockTaskDeleteTaskTasklist func(ctx context.Context, request *DeleteTaskTasklistReq, options ...MethodOptionFunc) (*DeleteTaskTasklistResp, *Response, error) - mockTaskGetTaskTasklist func(ctx context.Context, request *GetTaskTasklistReq, options ...MethodOptionFunc) (*GetTaskTasklistResp, *Response, error) - mockTaskGetTaskTasklistList func(ctx context.Context, request *GetTaskTasklistListReq, options ...MethodOptionFunc) (*GetTaskTasklistListResp, *Response, error) - mockTaskAddTaskTasklistMember func(ctx context.Context, request *AddTaskTasklistMemberReq, options ...MethodOptionFunc) (*AddTaskTasklistMemberResp, *Response, error) - mockTaskRemoveTaskTasklistMember func(ctx context.Context, request *RemoveTaskTasklistMemberReq, options ...MethodOptionFunc) (*RemoveTaskTasklistMemberResp, *Response, error) - mockTaskRemoveTaskTasklist func(ctx context.Context, request *RemoveTaskTasklistReq, options ...MethodOptionFunc) (*RemoveTaskTasklistResp, *Response, error) - mockTaskGetTaskTaskListOfTasklist func(ctx context.Context, request *GetTaskTaskListOfTasklistReq, options ...MethodOptionFunc) (*GetTaskTaskListOfTasklistResp, *Response, error) - mockTaskUpdateTaskTasklist func(ctx context.Context, request *UpdateTaskTasklistReq, options ...MethodOptionFunc) (*UpdateTaskTasklistResp, *Response, error) - mockTaskV1CreateTaskV1Collaborator func(ctx context.Context, request *CreateTaskV1CollaboratorReq, options ...MethodOptionFunc) (*CreateTaskV1CollaboratorResp, *Response, error) - mockTaskV1DeleteTaskV1Collaborator func(ctx context.Context, request *DeleteTaskV1CollaboratorReq, options ...MethodOptionFunc) (*DeleteTaskV1CollaboratorResp, *Response, error) - mockTaskV1BatchDeleteTaskV1Collaborator func(ctx context.Context, request *BatchDeleteTaskV1CollaboratorReq, options ...MethodOptionFunc) (*BatchDeleteTaskV1CollaboratorResp, *Response, error) - mockTaskV1GetTaskV1CollaboratorList func(ctx context.Context, request *GetTaskV1CollaboratorListReq, options ...MethodOptionFunc) (*GetTaskV1CollaboratorListResp, *Response, error) - mockTaskV1CreateTaskV1Comment func(ctx context.Context, request *CreateTaskV1CommentReq, options ...MethodOptionFunc) (*CreateTaskV1CommentResp, *Response, error) - mockTaskV1DeleteTaskV1Comment func(ctx context.Context, request *DeleteTaskV1CommentReq, options ...MethodOptionFunc) (*DeleteTaskV1CommentResp, *Response, error) - mockTaskV1GetTaskV1Comment func(ctx context.Context, request *GetTaskV1CommentReq, options ...MethodOptionFunc) (*GetTaskV1CommentResp, *Response, error) - mockTaskV1GetTaskV1CommentList func(ctx context.Context, request *GetTaskV1CommentListReq, options ...MethodOptionFunc) (*GetTaskV1CommentListResp, *Response, error) - mockTaskV1UpdateTaskV1Comment func(ctx context.Context, request *UpdateTaskV1CommentReq, options ...MethodOptionFunc) (*UpdateTaskV1CommentResp, *Response, error) - mockTaskV1CreateTaskV1Follower func(ctx context.Context, request *CreateTaskV1FollowerReq, options ...MethodOptionFunc) (*CreateTaskV1FollowerResp, *Response, error) - mockTaskV1DeleteTaskV1Follower func(ctx context.Context, request *DeleteTaskV1FollowerReq, options ...MethodOptionFunc) (*DeleteTaskV1FollowerResp, *Response, error) - mockTaskV1BatchDeleteTaskV1Follower func(ctx context.Context, request *BatchDeleteTaskV1FollowerReq, options ...MethodOptionFunc) (*BatchDeleteTaskV1FollowerResp, *Response, error) - mockTaskV1GetTaskFollowerV1List func(ctx context.Context, request *GetTaskFollowerV1ListReq, options ...MethodOptionFunc) (*GetTaskFollowerV1ListResp, *Response, error) - mockTaskV1CreateTaskV1Reminder func(ctx context.Context, request *CreateTaskV1ReminderReq, options ...MethodOptionFunc) (*CreateTaskV1ReminderResp, *Response, error) - mockTaskV1DeleteTaskV1Reminder func(ctx context.Context, request *DeleteTaskV1ReminderReq, options ...MethodOptionFunc) (*DeleteTaskV1ReminderResp, *Response, error) - mockTaskV1GetTaskV1ReminderList func(ctx context.Context, request *GetTaskV1ReminderListReq, options ...MethodOptionFunc) (*GetTaskV1ReminderListResp, *Response, error) - mockTaskV1CompleteTaskV1 func(ctx context.Context, request *CompleteTaskV1Req, options ...MethodOptionFunc) (*CompleteTaskV1Resp, *Response, error) - mockTaskV1CreateTaskV1 func(ctx context.Context, request *CreateTaskV1Req, options ...MethodOptionFunc) (*CreateTaskV1Resp, *Response, error) - mockTaskV1DeleteTaskV1 func(ctx context.Context, request *DeleteTaskV1Req, options ...MethodOptionFunc) (*DeleteTaskV1Resp, *Response, error) - mockTaskV1GetTaskV1 func(ctx context.Context, request *GetTaskV1Req, options ...MethodOptionFunc) (*GetTaskV1Resp, *Response, error) - mockTaskV1GetTaskV1List func(ctx context.Context, request *GetTaskV1ListReq, options ...MethodOptionFunc) (*GetTaskV1ListResp, *Response, error) - mockTaskV1UncompleteTaskV1 func(ctx context.Context, request *UncompleteTaskV1Req, options ...MethodOptionFunc) (*UncompleteTaskV1Resp, *Response, error) - mockTaskV1UpdateTaskV1 func(ctx context.Context, request *UpdateTaskV1Req, options ...MethodOptionFunc) (*UpdateTaskV1Resp, *Response, error) - mockTenantGetTenantProductAssignInfo func(ctx context.Context, request *GetTenantProductAssignInfoReq, options ...MethodOptionFunc) (*GetTenantProductAssignInfoResp, *Response, error) - mockTenantGetTenant func(ctx context.Context, request *GetTenantReq, options ...MethodOptionFunc) (*GetTenantResp, *Response, error) - mockVCGetVCAlertList func(ctx context.Context, request *GetVCAlertListReq, options ...MethodOptionFunc) (*GetVCAlertListResp, *Response, error) - mockVCExportVCMeetingList func(ctx context.Context, request *ExportVCMeetingListReq, options ...MethodOptionFunc) (*ExportVCMeetingListResp, *Response, error) - mockVCExportVCParticipantList func(ctx context.Context, request *ExportVCParticipantListReq, options ...MethodOptionFunc) (*ExportVCParticipantListResp, *Response, error) - mockVCExportVCParticipantQualityList func(ctx context.Context, request *ExportVCParticipantQualityListReq, options ...MethodOptionFunc) (*ExportVCParticipantQualityListResp, *Response, error) - mockVCExportVCResourceReservationList func(ctx context.Context, request *ExportVCResourceReservationListReq, options ...MethodOptionFunc) (*ExportVCResourceReservationListResp, *Response, error) - mockVCDownloadVCExportFile func(ctx context.Context, request *DownloadVCExportFileReq, options ...MethodOptionFunc) (*DownloadVCExportFileResp, *Response, error) - mockVCGetVCExportTask func(ctx context.Context, request *GetVCExportTaskReq, options ...MethodOptionFunc) (*GetVCExportTaskResp, *Response, error) - mockVCEndVCMeeting func(ctx context.Context, request *EndVCMeetingReq, options ...MethodOptionFunc) (*EndVCMeetingResp, *Response, error) - mockVCGetVCMeeting func(ctx context.Context, request *GetVCMeetingReq, options ...MethodOptionFunc) (*GetVCMeetingResp, *Response, error) - mockVCInviteVCMeeting func(ctx context.Context, request *InviteVCMeetingReq, options ...MethodOptionFunc) (*InviteVCMeetingResp, *Response, error) - mockVCKickoutVCMeeting func(ctx context.Context, request *KickoutVCMeetingReq, options ...MethodOptionFunc) (*KickoutVCMeetingResp, *Response, error) - mockVCGetVCMeetingList func(ctx context.Context, request *GetVCMeetingListReq, options ...MethodOptionFunc) (*GetVCMeetingListResp, *Response, error) - mockVCListVCMeetingByNo func(ctx context.Context, request *ListVCMeetingByNoReq, options ...MethodOptionFunc) (*ListVCMeetingByNoResp, *Response, error) - mockVCGetVCMeetingRecording func(ctx context.Context, request *GetVCMeetingRecordingReq, options ...MethodOptionFunc) (*GetVCMeetingRecordingResp, *Response, error) - mockVCSetVCPermissionMeetingRecording func(ctx context.Context, request *SetVCPermissionMeetingRecordingReq, options ...MethodOptionFunc) (*SetVCPermissionMeetingRecordingResp, *Response, error) - mockVCStartVCMeetingRecording func(ctx context.Context, request *StartVCMeetingRecordingReq, options ...MethodOptionFunc) (*StartVCMeetingRecordingResp, *Response, error) - mockVCStopVCMeetingRecording func(ctx context.Context, request *StopVCMeetingRecordingReq, options ...MethodOptionFunc) (*StopVCMeetingRecordingResp, *Response, error) - mockVCSetVCHostMeeting func(ctx context.Context, request *SetVCHostMeetingReq, options ...MethodOptionFunc) (*SetVCHostMeetingResp, *Response, error) - mockVCGetVCParticipantList func(ctx context.Context, request *GetVCParticipantListReq, options ...MethodOptionFunc) (*GetVCParticipantListResp, *Response, error) - mockVCGetVCParticipantQualityList func(ctx context.Context, request *GetVCParticipantQualityListReq, options ...MethodOptionFunc) (*GetVCParticipantQualityListResp, *Response, error) - mockVCGetVCDailyReport func(ctx context.Context, request *GetVCDailyReportReq, options ...MethodOptionFunc) (*GetVCDailyReportResp, *Response, error) - mockVCGetVCTopUserReport func(ctx context.Context, request *GetVCTopUserReportReq, options ...MethodOptionFunc) (*GetVCTopUserReportResp, *Response, error) - mockVCApplyVCReserve func(ctx context.Context, request *ApplyVCReserveReq, options ...MethodOptionFunc) (*ApplyVCReserveResp, *Response, error) - mockVCGetVCReserveConfigAdmin func(ctx context.Context, request *GetVCReserveConfigAdminReq, options ...MethodOptionFunc) (*GetVCReserveConfigAdminResp, *Response, error) - mockVCUpdateVCReserveConfigAdmin func(ctx context.Context, request *UpdateVCReserveConfigAdminReq, options ...MethodOptionFunc) (*UpdateVCReserveConfigAdminResp, *Response, error) - mockVCGetVCReserveConfigDisableInform func(ctx context.Context, request *GetVCReserveConfigDisableInformReq, options ...MethodOptionFunc) (*GetVCReserveConfigDisableInformResp, *Response, error) - mockVCUpdateVCReserveConfigDisableInform func(ctx context.Context, request *UpdateVCReserveConfigDisableInformReq, options ...MethodOptionFunc) (*UpdateVCReserveConfigDisableInformResp, *Response, error) - mockVCGetVCReserveConfigForm func(ctx context.Context, request *GetVCReserveConfigFormReq, options ...MethodOptionFunc) (*GetVCReserveConfigFormResp, *Response, error) - mockVCUpdateVCReserveConfigForm func(ctx context.Context, request *UpdateVCReserveConfigFormReq, options ...MethodOptionFunc) (*UpdateVCReserveConfigFormResp, *Response, error) - mockVCGetVCReserveConfig func(ctx context.Context, request *GetVCReserveConfigReq, options ...MethodOptionFunc) (*GetVCReserveConfigResp, *Response, error) - mockVCUpdateVCReserveConfig func(ctx context.Context, request *UpdateVCReserveConfigReq, options ...MethodOptionFunc) (*UpdateVCReserveConfigResp, *Response, error) - mockVCDeleteVCReserve func(ctx context.Context, request *DeleteVCReserveReq, options ...MethodOptionFunc) (*DeleteVCReserveResp, *Response, error) - mockVCGetVCReserve func(ctx context.Context, request *GetVCReserveReq, options ...MethodOptionFunc) (*GetVCReserveResp, *Response, error) - mockVCGetVCReserveActiveMeeting func(ctx context.Context, request *GetVCReserveActiveMeetingReq, options ...MethodOptionFunc) (*GetVCReserveActiveMeetingResp, *Response, error) - mockVCUpdateVCReserve func(ctx context.Context, request *UpdateVCReserveReq, options ...MethodOptionFunc) (*UpdateVCReserveResp, *Response, error) - mockVCGetVCResourceReservationList func(ctx context.Context, request *GetVCResourceReservationListReq, options ...MethodOptionFunc) (*GetVCResourceReservationListResp, *Response, error) - mockVCBatchGetVCRoom func(ctx context.Context, request *BatchGetVCRoomReq, options ...MethodOptionFunc) (*BatchGetVCRoomResp, *Response, error) - mockVCCreateVCRoom func(ctx context.Context, request *CreateVCRoomReq, options ...MethodOptionFunc) (*CreateVCRoomResp, *Response, error) - mockVCDeleteVCRoom func(ctx context.Context, request *DeleteVCRoomReq, options ...MethodOptionFunc) (*DeleteVCRoomResp, *Response, error) - mockVCGetVCRoom func(ctx context.Context, request *GetVCRoomReq, options ...MethodOptionFunc) (*GetVCRoomResp, *Response, error) - mockVCGetVCRoomList func(ctx context.Context, request *GetVCRoomListReq, options ...MethodOptionFunc) (*GetVCRoomListResp, *Response, error) - mockVCCreateVCRoomLevel func(ctx context.Context, request *CreateVCRoomLevelReq, options ...MethodOptionFunc) (*CreateVCRoomLevelResp, *Response, error) - mockVCDeleteVCRoomLevel func(ctx context.Context, request *DeleteVCRoomLevelReq, options ...MethodOptionFunc) (*DeleteVCRoomLevelResp, *Response, error) - mockVCGetVCRoomLevel func(ctx context.Context, request *GetVCRoomLevelReq, options ...MethodOptionFunc) (*GetVCRoomLevelResp, *Response, error) - mockVCGetVCRoomLevelList func(ctx context.Context, request *GetVCRoomLevelListReq, options ...MethodOptionFunc) (*GetVCRoomLevelListResp, *Response, error) - mockVCBatchGetVCRoomLevel func(ctx context.Context, request *BatchGetVCRoomLevelReq, options ...MethodOptionFunc) (*BatchGetVCRoomLevelResp, *Response, error) - mockVCSearchVCRoomLevel func(ctx context.Context, request *SearchVCRoomLevelReq, options ...MethodOptionFunc) (*SearchVCRoomLevelResp, *Response, error) - mockVCUpdateVCRoomLevel func(ctx context.Context, request *UpdateVCRoomLevelReq, options ...MethodOptionFunc) (*UpdateVCRoomLevelResp, *Response, error) - mockVCSearchVCRoom func(ctx context.Context, request *SearchVCRoomReq, options ...MethodOptionFunc) (*SearchVCRoomResp, *Response, error) - mockVCUpdateVCRoom func(ctx context.Context, request *UpdateVCRoomReq, options ...MethodOptionFunc) (*UpdateVCRoomResp, *Response, error) - mockVCGetVCScopeConfig func(ctx context.Context, request *GetVCScopeConfigReq, options ...MethodOptionFunc) (*GetVCScopeConfigResp, *Response, error) - mockVCSetVCScopeConfig func(ctx context.Context, request *SetVCScopeConfigReq, options ...MethodOptionFunc) (*SetVCScopeConfigResp, *Response, error) - mockVerificationGetVerification func(ctx context.Context, request *GetVerificationReq, options ...MethodOptionFunc) (*GetVerificationResp, *Response, error) + mockRawRequest func(ctx context.Context, req *RawRequestReq, resp interface{}) (response *Response, err error) + mockGetTenantAccessToken func(ctx context.Context) (*TokenExpire, *Response, error) + mockGetAppAccessToken func(ctx context.Context) (*TokenExpire, *Response, error) + mockACSCreateACSRuleExternal func(ctx context.Context, request *CreateACSRuleExternalReq, options ...MethodOptionFunc) (*CreateACSRuleExternalResp, *Response, error) + mockACSCreateACSVisitor func(ctx context.Context, request *CreateACSVisitorReq, options ...MethodOptionFunc) (*CreateACSVisitorResp, *Response, error) + mockACSDeleteACSRuleExternal func(ctx context.Context, request *DeleteACSRuleExternalReq, options ...MethodOptionFunc) (*DeleteACSRuleExternalResp, *Response, error) + mockACSDeleteACSVisitor func(ctx context.Context, request *DeleteACSVisitorReq, options ...MethodOptionFunc) (*DeleteACSVisitorResp, *Response, error) + mockACSDeviceBindACSRuleExternal func(ctx context.Context, request *DeviceBindACSRuleExternalReq, options ...MethodOptionFunc) (*DeviceBindACSRuleExternalResp, *Response, error) + mockACSGetACSAccessRecordList func(ctx context.Context, request *GetACSAccessRecordListReq, options ...MethodOptionFunc) (*GetACSAccessRecordListResp, *Response, error) + mockACSGetACSAccessRecordPhoto func(ctx context.Context, request *GetACSAccessRecordPhotoReq, options ...MethodOptionFunc) (*GetACSAccessRecordPhotoResp, *Response, error) + mockACSGetACSDeviceList func(ctx context.Context, request *GetACSDeviceListReq, options ...MethodOptionFunc) (*GetACSDeviceListResp, *Response, error) + mockACSGetACSRuleExternal func(ctx context.Context, request *GetACSRuleExternalReq, options ...MethodOptionFunc) (*GetACSRuleExternalResp, *Response, error) + mockACSGetACSUser func(ctx context.Context, request *GetACSUserReq, options ...MethodOptionFunc) (*GetACSUserResp, *Response, error) + mockACSGetACSUserFace func(ctx context.Context, request *GetACSUserFaceReq, options ...MethodOptionFunc) (*GetACSUserFaceResp, *Response, error) + mockACSGetACSUserList func(ctx context.Context, request *GetACSUserListReq, options ...MethodOptionFunc) (*GetACSUserListResp, *Response, error) + mockACSUpdateACSUser func(ctx context.Context, request *UpdateACSUserReq, options ...MethodOptionFunc) (*UpdateACSUserResp, *Response, error) + mockACSUpdateACSUserFace func(ctx context.Context, request *UpdateACSUserFaceReq, options ...MethodOptionFunc) (*UpdateACSUserFaceResp, *Response, error) + mockAIDetectFaceAttributes func(ctx context.Context, request *DetectFaceAttributesReq, options ...MethodOptionFunc) (*DetectFaceAttributesResp, *Response, error) + mockAIDetectTextLanguage func(ctx context.Context, request *DetectTextLanguageReq, options ...MethodOptionFunc) (*DetectTextLanguageResp, *Response, error) + mockAIExtractAIContractField func(ctx context.Context, request *ExtractAIContractFieldReq, options ...MethodOptionFunc) (*ExtractAIContractFieldResp, *Response, error) + mockAIParseAIResume func(ctx context.Context, request *ParseAIResumeReq, options ...MethodOptionFunc) (*ParseAIResumeResp, *Response, error) + mockAIRecognizeAIBankCard func(ctx context.Context, request *RecognizeAIBankCardReq, options ...MethodOptionFunc) (*RecognizeAIBankCardResp, *Response, error) + mockAIRecognizeAIBusinessCard func(ctx context.Context, request *RecognizeAIBusinessCardReq, options ...MethodOptionFunc) (*RecognizeAIBusinessCardResp, *Response, error) + mockAIRecognizeAIBusinessLicense func(ctx context.Context, request *RecognizeAIBusinessLicenseReq, options ...MethodOptionFunc) (*RecognizeAIBusinessLicenseResp, *Response, error) + mockAIRecognizeAIChinesePassport func(ctx context.Context, request *RecognizeAIChinesePassportReq, options ...MethodOptionFunc) (*RecognizeAIChinesePassportResp, *Response, error) + mockAIRecognizeAIDrivingLicense func(ctx context.Context, request *RecognizeAIDrivingLicenseReq, options ...MethodOptionFunc) (*RecognizeAIDrivingLicenseResp, *Response, error) + mockAIRecognizeAIFoodManageLicense func(ctx context.Context, request *RecognizeAIFoodManageLicenseReq, options ...MethodOptionFunc) (*RecognizeAIFoodManageLicenseResp, *Response, error) + mockAIRecognizeAIFoodProduceLicense func(ctx context.Context, request *RecognizeAIFoodProduceLicenseReq, options ...MethodOptionFunc) (*RecognizeAIFoodProduceLicenseResp, *Response, error) + mockAIRecognizeAIHealthCertificate func(ctx context.Context, request *RecognizeAIHealthCertificateReq, options ...MethodOptionFunc) (*RecognizeAIHealthCertificateResp, *Response, error) + mockAIRecognizeAIHkmMainlandTravelPermit func(ctx context.Context, request *RecognizeAIHkmMainlandTravelPermitReq, options ...MethodOptionFunc) (*RecognizeAIHkmMainlandTravelPermitResp, *Response, error) + mockAIRecognizeAITaxiInvoice func(ctx context.Context, request *RecognizeAITaxiInvoiceReq, options ...MethodOptionFunc) (*RecognizeAITaxiInvoiceResp, *Response, error) + mockAIRecognizeAITrainInvoice func(ctx context.Context, request *RecognizeAITrainInvoiceReq, options ...MethodOptionFunc) (*RecognizeAITrainInvoiceResp, *Response, error) + mockAIRecognizeAITwMainlandTravelPermit func(ctx context.Context, request *RecognizeAITwMainlandTravelPermitReq, options ...MethodOptionFunc) (*RecognizeAITwMainlandTravelPermitResp, *Response, error) + mockAIRecognizeAIVatInvoice func(ctx context.Context, request *RecognizeAIVatInvoiceReq, options ...MethodOptionFunc) (*RecognizeAIVatInvoiceResp, *Response, error) + mockAIRecognizeAIVehicleInvoice func(ctx context.Context, request *RecognizeAIVehicleInvoiceReq, options ...MethodOptionFunc) (*RecognizeAIVehicleInvoiceResp, *Response, error) + mockAIRecognizeAIVehicleLicense func(ctx context.Context, request *RecognizeAIVehicleLicenseReq, options ...MethodOptionFunc) (*RecognizeAIVehicleLicenseResp, *Response, error) + mockAIRecognizeAiidCard func(ctx context.Context, request *RecognizeAiidCardReq, options ...MethodOptionFunc) (*RecognizeAiidCardResp, *Response, error) + mockAIRecognizeBasicImage func(ctx context.Context, request *RecognizeBasicImageReq, options ...MethodOptionFunc) (*RecognizeBasicImageResp, *Response, error) + mockAIRecognizeSpeechFile func(ctx context.Context, request *RecognizeSpeechFileReq, options ...MethodOptionFunc) (*RecognizeSpeechFileResp, *Response, error) + mockAIRecognizeSpeechStream func(ctx context.Context, request *RecognizeSpeechStreamReq, options ...MethodOptionFunc) (*RecognizeSpeechStreamResp, *Response, error) + mockAITranslateText func(ctx context.Context, request *TranslateTextReq, options ...MethodOptionFunc) (*TranslateTextResp, *Response, error) + mockAPaaSAddAPaaSApprovalTaskAssignee func(ctx context.Context, request *AddAPaaSApprovalTaskAssigneeReq, options ...MethodOptionFunc) (*AddAPaaSApprovalTaskAssigneeResp, *Response, error) + mockAPaaSAgreeAPaaSApprovalTask func(ctx context.Context, request *AgreeAPaaSApprovalTaskReq, options ...MethodOptionFunc) (*AgreeAPaaSApprovalTaskResp, *Response, error) + mockAPaaSRejectAPaaSApprovalTask func(ctx context.Context, request *RejectAPaaSApprovalTaskReq, options ...MethodOptionFunc) (*RejectAPaaSApprovalTaskResp, *Response, error) + mockAPaaSTransferAPaaSApprovalTask func(ctx context.Context, request *TransferAPaaSApprovalTaskReq, options ...MethodOptionFunc) (*TransferAPaaSApprovalTaskResp, *Response, error) + mockAdminAdminResetPassword func(ctx context.Context, request *AdminResetPasswordReq, options ...MethodOptionFunc) (*AdminResetPasswordResp, *Response, error) + mockAdminCreateAdminBadge func(ctx context.Context, request *CreateAdminBadgeReq, options ...MethodOptionFunc) (*CreateAdminBadgeResp, *Response, error) + mockAdminCreateAdminBadgeGrant func(ctx context.Context, request *CreateAdminBadgeGrantReq, options ...MethodOptionFunc) (*CreateAdminBadgeGrantResp, *Response, error) + mockAdminDeleteAdminBadgeGrant func(ctx context.Context, request *DeleteAdminBadgeGrantReq, options ...MethodOptionFunc) (*DeleteAdminBadgeGrantResp, *Response, error) + mockAdminGetAdminBadge func(ctx context.Context, request *GetAdminBadgeReq, options ...MethodOptionFunc) (*GetAdminBadgeResp, *Response, error) + mockAdminGetAdminBadgeGrant func(ctx context.Context, request *GetAdminBadgeGrantReq, options ...MethodOptionFunc) (*GetAdminBadgeGrantResp, *Response, error) + mockAdminGetAdminBadgeGrantList func(ctx context.Context, request *GetAdminBadgeGrantListReq, options ...MethodOptionFunc) (*GetAdminBadgeGrantListResp, *Response, error) + mockAdminGetAdminBadgeList func(ctx context.Context, request *GetAdminBadgeListReq, options ...MethodOptionFunc) (*GetAdminBadgeListResp, *Response, error) + mockAdminGetAdminDeptStats func(ctx context.Context, request *GetAdminDeptStatsReq, options ...MethodOptionFunc) (*GetAdminDeptStatsResp, *Response, error) + mockAdminGetAdminUserStats func(ctx context.Context, request *GetAdminUserStatsReq, options ...MethodOptionFunc) (*GetAdminUserStatsResp, *Response, error) + mockAdminUpdateAdminBadge func(ctx context.Context, request *UpdateAdminBadgeReq, options ...MethodOptionFunc) (*UpdateAdminBadgeResp, *Response, error) + mockAdminUpdateAdminBadgeGrant func(ctx context.Context, request *UpdateAdminBadgeGrantReq, options ...MethodOptionFunc) (*UpdateAdminBadgeGrantResp, *Response, error) + mockAdminUploadAdminBadgeImage func(ctx context.Context, request *UploadAdminBadgeImageReq, options ...MethodOptionFunc) (*UploadAdminBadgeImageResp, *Response, error) + mockApplicationCheckApplicationVisibleWhiteBlackList func(ctx context.Context, request *CheckApplicationVisibleWhiteBlackListReq, options ...MethodOptionFunc) (*CheckApplicationVisibleWhiteBlackListResp, *Response, error) + mockApplicationCheckUserIsInApplicationPaidScope func(ctx context.Context, request *CheckUserIsInApplicationPaidScopeReq, options ...MethodOptionFunc) (*CheckUserIsInApplicationPaidScopeResp, *Response, error) + mockApplicationGetApplication func(ctx context.Context, request *GetApplicationReq, options ...MethodOptionFunc) (*GetApplicationResp, *Response, error) + mockApplicationGetApplicationAppAdminUserList func(ctx context.Context, request *GetApplicationAppAdminUserListReq, options ...MethodOptionFunc) (*GetApplicationAppAdminUserListResp, *Response, error) + mockApplicationGetApplicationAppList func(ctx context.Context, request *GetApplicationAppListReq, options ...MethodOptionFunc) (*GetApplicationAppListResp, *Response, error) + mockApplicationGetApplicationAppVisibility func(ctx context.Context, request *GetApplicationAppVisibilityReq, options ...MethodOptionFunc) (*GetApplicationAppVisibilityResp, *Response, error) + mockApplicationGetApplicationContactsRangeConfiguration func(ctx context.Context, request *GetApplicationContactsRangeConfigurationReq, options ...MethodOptionFunc) (*GetApplicationContactsRangeConfigurationResp, *Response, error) + mockApplicationGetApplicationFavourite func(ctx context.Context, request *GetApplicationFavouriteReq, options ...MethodOptionFunc) (*GetApplicationFavouriteResp, *Response, error) + mockApplicationGetApplicationFeedbackList func(ctx context.Context, request *GetApplicationFeedbackListReq, options ...MethodOptionFunc) (*GetApplicationFeedbackListResp, *Response, error) + mockApplicationGetApplicationOrder func(ctx context.Context, request *GetApplicationOrderReq, options ...MethodOptionFunc) (*GetApplicationOrderResp, *Response, error) + mockApplicationGetApplicationOrderList func(ctx context.Context, request *GetApplicationOrderListReq, options ...MethodOptionFunc) (*GetApplicationOrderListResp, *Response, error) + mockApplicationGetApplicationRecommend func(ctx context.Context, request *GetApplicationRecommendReq, options ...MethodOptionFunc) (*GetApplicationRecommendResp, *Response, error) + mockApplicationGetApplicationRecommendRuleList func(ctx context.Context, request *GetApplicationRecommendRuleListReq, options ...MethodOptionFunc) (*GetApplicationRecommendRuleListResp, *Response, error) + mockApplicationGetApplicationUnderAuditList func(ctx context.Context, request *GetApplicationUnderAuditListReq, options ...MethodOptionFunc) (*GetApplicationUnderAuditListResp, *Response, error) + mockApplicationGetApplicationUsageDepartmentOverview func(ctx context.Context, request *GetApplicationUsageDepartmentOverviewReq, options ...MethodOptionFunc) (*GetApplicationUsageDepartmentOverviewResp, *Response, error) + mockApplicationGetApplicationUsageOverview func(ctx context.Context, request *GetApplicationUsageOverviewReq, options ...MethodOptionFunc) (*GetApplicationUsageOverviewResp, *Response, error) + mockApplicationGetApplicationUsageTrend func(ctx context.Context, request *GetApplicationUsageTrendReq, options ...MethodOptionFunc) (*GetApplicationUsageTrendResp, *Response, error) + mockApplicationGetApplicationUserAdminScope func(ctx context.Context, request *GetApplicationUserAdminScopeReq, options ...MethodOptionFunc) (*GetApplicationUserAdminScopeResp, *Response, error) + mockApplicationGetApplicationUserVisibleApp func(ctx context.Context, request *GetApplicationUserVisibleAppReq, options ...MethodOptionFunc) (*GetApplicationUserVisibleAppResp, *Response, error) + mockApplicationGetApplicationVersion func(ctx context.Context, request *GetApplicationVersionReq, options ...MethodOptionFunc) (*GetApplicationVersionResp, *Response, error) + mockApplicationGetApplicationVersionContactsRangeSuggest func(ctx context.Context, request *GetApplicationVersionContactsRangeSuggestReq, options ...MethodOptionFunc) (*GetApplicationVersionContactsRangeSuggestResp, *Response, error) + mockApplicationGetApplicationVersionList func(ctx context.Context, request *GetApplicationVersionListReq, options ...MethodOptionFunc) (*GetApplicationVersionListResp, *Response, error) + mockApplicationIsApplicationUserAdmin func(ctx context.Context, request *IsApplicationUserAdminReq, options ...MethodOptionFunc) (*IsApplicationUserAdminResp, *Response, error) + mockApplicationSearchApplicationCustomWorkplaceAccessData func(ctx context.Context, request *SearchApplicationCustomWorkplaceAccessDataReq, options ...MethodOptionFunc) (*SearchApplicationCustomWorkplaceAccessDataResp, *Response, error) + mockApplicationSearchApplicationWorkplaceAccessData func(ctx context.Context, request *SearchApplicationWorkplaceAccessDataReq, options ...MethodOptionFunc) (*SearchApplicationWorkplaceAccessDataResp, *Response, error) + mockApplicationSearchApplicationWorkplaceBlockAccessData func(ctx context.Context, request *SearchApplicationWorkplaceBlockAccessDataReq, options ...MethodOptionFunc) (*SearchApplicationWorkplaceBlockAccessDataResp, *Response, error) + mockApplicationSetApplicationAppBadge func(ctx context.Context, request *SetApplicationAppBadgeReq, options ...MethodOptionFunc) (*SetApplicationAppBadgeResp, *Response, error) + mockApplicationUpdateApplication func(ctx context.Context, request *UpdateApplicationReq, options ...MethodOptionFunc) (*UpdateApplicationResp, *Response, error) + mockApplicationUpdateApplicationAppManagement func(ctx context.Context, request *UpdateApplicationAppManagementReq, options ...MethodOptionFunc) (*UpdateApplicationAppManagementResp, *Response, error) + mockApplicationUpdateApplicationAppVisibility func(ctx context.Context, request *UpdateApplicationAppVisibilityReq, options ...MethodOptionFunc) (*UpdateApplicationAppVisibilityResp, *Response, error) + mockApplicationUpdateApplicationAppVisibilityV6 func(ctx context.Context, request *UpdateApplicationAppVisibilityV6Req, options ...MethodOptionFunc) (*UpdateApplicationAppVisibilityV6Resp, *Response, error) + mockApplicationUpdateApplicationContactsRangeConfiguration func(ctx context.Context, request *UpdateApplicationContactsRangeConfigurationReq, options ...MethodOptionFunc) (*UpdateApplicationContactsRangeConfigurationResp, *Response, error) + mockApplicationUpdateApplicationFeedback func(ctx context.Context, request *UpdateApplicationFeedbackReq, options ...MethodOptionFunc) (*UpdateApplicationFeedbackResp, *Response, error) + mockApplicationUpdateApplicationVersion func(ctx context.Context, request *UpdateApplicationVersionReq, options ...MethodOptionFunc) (*UpdateApplicationVersionResp, *Response, error) + mockApprovalAddApprovalInstanceSign func(ctx context.Context, request *AddApprovalInstanceSignReq, options ...MethodOptionFunc) (*AddApprovalInstanceSignResp, *Response, error) + mockApprovalApproveApprovalInstance func(ctx context.Context, request *ApproveApprovalInstanceReq, options ...MethodOptionFunc) (*ApproveApprovalInstanceResp, *Response, error) + mockApprovalCancelApprovalInstance func(ctx context.Context, request *CancelApprovalInstanceReq, options ...MethodOptionFunc) (*CancelApprovalInstanceResp, *Response, error) + mockApprovalCheckApprovalExternalInstance func(ctx context.Context, request *CheckApprovalExternalInstanceReq, options ...MethodOptionFunc) (*CheckApprovalExternalInstanceResp, *Response, error) + mockApprovalCreateApproval func(ctx context.Context, request *CreateApprovalReq, options ...MethodOptionFunc) (*CreateApprovalResp, *Response, error) + mockApprovalCreateApprovalCarbonCopy func(ctx context.Context, request *CreateApprovalCarbonCopyReq, options ...MethodOptionFunc) (*CreateApprovalCarbonCopyResp, *Response, error) + mockApprovalCreateApprovalComment func(ctx context.Context, request *CreateApprovalCommentReq, options ...MethodOptionFunc) (*CreateApprovalCommentResp, *Response, error) + mockApprovalCreateApprovalExternalApproval func(ctx context.Context, request *CreateApprovalExternalApprovalReq, options ...MethodOptionFunc) (*CreateApprovalExternalApprovalResp, *Response, error) + mockApprovalCreateApprovalExternalInstance func(ctx context.Context, request *CreateApprovalExternalInstanceReq, options ...MethodOptionFunc) (*CreateApprovalExternalInstanceResp, *Response, error) + mockApprovalCreateApprovalInstance func(ctx context.Context, request *CreateApprovalInstanceReq, options ...MethodOptionFunc) (*CreateApprovalInstanceResp, *Response, error) + mockApprovalDeleteApprovalComment func(ctx context.Context, request *DeleteApprovalCommentReq, options ...MethodOptionFunc) (*DeleteApprovalCommentResp, *Response, error) + mockApprovalGetApproval func(ctx context.Context, request *GetApprovalReq, options ...MethodOptionFunc) (*GetApprovalResp, *Response, error) + mockApprovalGetApprovalComment func(ctx context.Context, request *GetApprovalCommentReq, options ...MethodOptionFunc) (*GetApprovalCommentResp, *Response, error) + mockApprovalGetApprovalExternalApproval func(ctx context.Context, request *GetApprovalExternalApprovalReq, options ...MethodOptionFunc) (*GetApprovalExternalApprovalResp, *Response, error) + mockApprovalGetApprovalExternalList func(ctx context.Context, request *GetApprovalExternalListReq, options ...MethodOptionFunc) (*GetApprovalExternalListResp, *Response, error) + mockApprovalGetApprovalInstance func(ctx context.Context, request *GetApprovalInstanceReq, options ...MethodOptionFunc) (*GetApprovalInstanceResp, *Response, error) + mockApprovalGetApprovalInstanceList func(ctx context.Context, request *GetApprovalInstanceListReq, options ...MethodOptionFunc) (*GetApprovalInstanceListResp, *Response, error) + mockApprovalGetApprovalList func(ctx context.Context, request *GetApprovalListReq, options ...MethodOptionFunc) (*GetApprovalListResp, *Response, error) + mockApprovalGetApprovalUserTaskList func(ctx context.Context, request *GetApprovalUserTaskListReq, options ...MethodOptionFunc) (*GetApprovalUserTaskListResp, *Response, error) + mockApprovalPreviewApprovalInstance func(ctx context.Context, request *PreviewApprovalInstanceReq, options ...MethodOptionFunc) (*PreviewApprovalInstanceResp, *Response, error) + mockApprovalRejectApprovalInstance func(ctx context.Context, request *RejectApprovalInstanceReq, options ...MethodOptionFunc) (*RejectApprovalInstanceResp, *Response, error) + mockApprovalRemoveApprovalComment func(ctx context.Context, request *RemoveApprovalCommentReq, options ...MethodOptionFunc) (*RemoveApprovalCommentResp, *Response, error) + mockApprovalResubmitApprovalInstanceTask func(ctx context.Context, request *ResubmitApprovalInstanceTaskReq, options ...MethodOptionFunc) (*ResubmitApprovalInstanceTaskResp, *Response, error) + mockApprovalRollbackApprovalInstance func(ctx context.Context, request *RollbackApprovalInstanceReq, options ...MethodOptionFunc) (*RollbackApprovalInstanceResp, *Response, error) + mockApprovalSearchApprovalCarbonCopy func(ctx context.Context, request *SearchApprovalCarbonCopyReq, options ...MethodOptionFunc) (*SearchApprovalCarbonCopyResp, *Response, error) + mockApprovalSearchApprovalInstance func(ctx context.Context, request *SearchApprovalInstanceReq, options ...MethodOptionFunc) (*SearchApprovalInstanceResp, *Response, error) + mockApprovalSearchApprovalTask func(ctx context.Context, request *SearchApprovalTaskReq, options ...MethodOptionFunc) (*SearchApprovalTaskResp, *Response, error) + mockApprovalSendApprovalMessage func(ctx context.Context, request *SendApprovalMessageReq, options ...MethodOptionFunc) (*SendApprovalMessageResp, *Response, error) + mockApprovalSubscribeApprovalSubscription func(ctx context.Context, request *SubscribeApprovalSubscriptionReq, options ...MethodOptionFunc) (*SubscribeApprovalSubscriptionResp, *Response, error) + mockApprovalTransferApprovalInstance func(ctx context.Context, request *TransferApprovalInstanceReq, options ...MethodOptionFunc) (*TransferApprovalInstanceResp, *Response, error) + mockApprovalTransformApprovalUserID func(ctx context.Context, request *TransformApprovalUserIDReq, options ...MethodOptionFunc) (*TransformApprovalUserIDResp, *Response, error) + mockApprovalUnsubscribeApprovalSubscription func(ctx context.Context, request *UnsubscribeApprovalSubscriptionReq, options ...MethodOptionFunc) (*UnsubscribeApprovalSubscriptionResp, *Response, error) + mockApprovalUpdateApprovalMessage func(ctx context.Context, request *UpdateApprovalMessageReq, options ...MethodOptionFunc) (*UpdateApprovalMessageResp, *Response, error) + mockApprovalUploadApprovalFile func(ctx context.Context, request *UploadApprovalFileReq, options ...MethodOptionFunc) (*UploadApprovalFileResp, *Response, error) + mockAttendanceBatchCreateAttendanceUserDailyShift func(ctx context.Context, request *BatchCreateAttendanceUserDailyShiftReq, options ...MethodOptionFunc) (*BatchCreateAttendanceUserDailyShiftResp, *Response, error) + mockAttendanceBatchCreateAttendanceUserFlow func(ctx context.Context, request *BatchCreateAttendanceUserFlowReq, options ...MethodOptionFunc) (*BatchCreateAttendanceUserFlowResp, *Response, error) + mockAttendanceBatchGetAttendanceUserFlow func(ctx context.Context, request *BatchGetAttendanceUserFlowReq, options ...MethodOptionFunc) (*BatchGetAttendanceUserFlowResp, *Response, error) + mockAttendanceCreateAttendanceGroup func(ctx context.Context, request *CreateAttendanceGroupReq, options ...MethodOptionFunc) (*CreateAttendanceGroupResp, *Response, error) + mockAttendanceCreateAttendanceShift func(ctx context.Context, request *CreateAttendanceShiftReq, options ...MethodOptionFunc) (*CreateAttendanceShiftResp, *Response, error) + mockAttendanceCreateAttendanceUserApproval func(ctx context.Context, request *CreateAttendanceUserApprovalReq, options ...MethodOptionFunc) (*CreateAttendanceUserApprovalResp, *Response, error) + mockAttendanceCreateAttendanceUserTaskRemedy func(ctx context.Context, request *CreateAttendanceUserTaskRemedyReq, options ...MethodOptionFunc) (*CreateAttendanceUserTaskRemedyResp, *Response, error) + mockAttendanceDeleteAttendanceGroup func(ctx context.Context, request *DeleteAttendanceGroupReq, options ...MethodOptionFunc) (*DeleteAttendanceGroupResp, *Response, error) + mockAttendanceDeleteAttendanceShift func(ctx context.Context, request *DeleteAttendanceShiftReq, options ...MethodOptionFunc) (*DeleteAttendanceShiftResp, *Response, error) + mockAttendanceDownloadAttendanceFile func(ctx context.Context, request *DownloadAttendanceFileReq, options ...MethodOptionFunc) (*DownloadAttendanceFileResp, *Response, error) + mockAttendanceGetAttendanceGroup func(ctx context.Context, request *GetAttendanceGroupReq, options ...MethodOptionFunc) (*GetAttendanceGroupResp, *Response, error) + mockAttendanceGetAttendanceGroupList func(ctx context.Context, request *GetAttendanceGroupListReq, options ...MethodOptionFunc) (*GetAttendanceGroupListResp, *Response, error) + mockAttendanceGetAttendanceLeaveEmployExpireRecord func(ctx context.Context, request *GetAttendanceLeaveEmployExpireRecordReq, options ...MethodOptionFunc) (*GetAttendanceLeaveEmployExpireRecordResp, *Response, error) + mockAttendanceGetAttendanceShift func(ctx context.Context, request *GetAttendanceShiftReq, options ...MethodOptionFunc) (*GetAttendanceShiftResp, *Response, error) + mockAttendanceGetAttendanceShiftDetail func(ctx context.Context, request *GetAttendanceShiftDetailReq, options ...MethodOptionFunc) (*GetAttendanceShiftDetailResp, *Response, error) + mockAttendanceGetAttendanceShiftList func(ctx context.Context, request *GetAttendanceShiftListReq, options ...MethodOptionFunc) (*GetAttendanceShiftListResp, *Response, error) + mockAttendanceGetAttendanceUserApproval func(ctx context.Context, request *GetAttendanceUserApprovalReq, options ...MethodOptionFunc) (*GetAttendanceUserApprovalResp, *Response, error) + mockAttendanceGetAttendanceUserDailyShift func(ctx context.Context, request *GetAttendanceUserDailyShiftReq, options ...MethodOptionFunc) (*GetAttendanceUserDailyShiftResp, *Response, error) + mockAttendanceGetAttendanceUserFlow func(ctx context.Context, request *GetAttendanceUserFlowReq, options ...MethodOptionFunc) (*GetAttendanceUserFlowResp, *Response, error) + mockAttendanceGetAttendanceUserSettingList func(ctx context.Context, request *GetAttendanceUserSettingListReq, options ...MethodOptionFunc) (*GetAttendanceUserSettingListResp, *Response, error) + mockAttendanceGetAttendanceUserStatsData func(ctx context.Context, request *GetAttendanceUserStatsDataReq, options ...MethodOptionFunc) (*GetAttendanceUserStatsDataResp, *Response, error) + mockAttendanceGetAttendanceUserStatsField func(ctx context.Context, request *GetAttendanceUserStatsFieldReq, options ...MethodOptionFunc) (*GetAttendanceUserStatsFieldResp, *Response, error) + mockAttendanceGetAttendanceUserStatsView func(ctx context.Context, request *GetAttendanceUserStatsViewReq, options ...MethodOptionFunc) (*GetAttendanceUserStatsViewResp, *Response, error) + mockAttendanceGetAttendanceUserTask func(ctx context.Context, request *GetAttendanceUserTaskReq, options ...MethodOptionFunc) (*GetAttendanceUserTaskResp, *Response, error) + mockAttendanceGetAttendanceUserTaskRemedy func(ctx context.Context, request *GetAttendanceUserTaskRemedyReq, options ...MethodOptionFunc) (*GetAttendanceUserTaskRemedyResp, *Response, error) + mockAttendanceGetAttendanceUserTaskRemedyAllowedRemedyList func(ctx context.Context, request *GetAttendanceUserTaskRemedyAllowedRemedyListReq, options ...MethodOptionFunc) (*GetAttendanceUserTaskRemedyAllowedRemedyListResp, *Response, error) + mockAttendanceSearchAttendanceGroup func(ctx context.Context, request *SearchAttendanceGroupReq, options ...MethodOptionFunc) (*SearchAttendanceGroupResp, *Response, error) + mockAttendanceUpdateAttendanceLeaveAccrualRecord func(ctx context.Context, request *UpdateAttendanceLeaveAccrualRecordReq, options ...MethodOptionFunc) (*UpdateAttendanceLeaveAccrualRecordResp, *Response, error) + mockAttendanceUpdateAttendanceRemedyApproval func(ctx context.Context, request *UpdateAttendanceRemedyApprovalReq, options ...MethodOptionFunc) (*UpdateAttendanceRemedyApprovalResp, *Response, error) + mockAttendanceUpdateAttendanceUserSetting func(ctx context.Context, request *UpdateAttendanceUserSettingReq, options ...MethodOptionFunc) (*UpdateAttendanceUserSettingResp, *Response, error) + mockAttendanceUpdateAttendanceUserStatsView func(ctx context.Context, request *UpdateAttendanceUserStatsViewReq, options ...MethodOptionFunc) (*UpdateAttendanceUserStatsViewResp, *Response, error) + mockAttendanceUploadAttendanceFile func(ctx context.Context, request *UploadAttendanceFileReq, options ...MethodOptionFunc) (*UploadAttendanceFileResp, *Response, error) + mockAuthGetAccessToken func(ctx context.Context, request *GetAccessTokenReq, options ...MethodOptionFunc) (*GetAccessTokenResp, *Response, error) + mockAuthGetUserInfo func(ctx context.Context, request *GetUserInfoReq, options ...MethodOptionFunc) (*GetUserInfoResp, *Response, error) + mockAuthRefreshAccessToken func(ctx context.Context, request *RefreshAccessTokenReq, options ...MethodOptionFunc) (*RefreshAccessTokenResp, *Response, error) + mockAuthResendAppTicket func(ctx context.Context, request *ResendAppTicketReq, options ...MethodOptionFunc) (*ResendAppTicketResp, *Response, error) + mockBaikeCreateBaikeDraft func(ctx context.Context, request *CreateBaikeDraftReq, options ...MethodOptionFunc) (*CreateBaikeDraftResp, *Response, error) + mockBaikeCreateBaikeEntity func(ctx context.Context, request *CreateBaikeEntityReq, options ...MethodOptionFunc) (*CreateBaikeEntityResp, *Response, error) + mockBaikeCreateBaikeUpdate func(ctx context.Context, request *CreateBaikeUpdateReq, options ...MethodOptionFunc) (*CreateBaikeUpdateResp, *Response, error) + mockBaikeDownloadBaikeImage func(ctx context.Context, request *DownloadBaikeImageReq, options ...MethodOptionFunc) (*DownloadBaikeImageResp, *Response, error) + mockBaikeExtractBaikeEntity func(ctx context.Context, request *ExtractBaikeEntityReq, options ...MethodOptionFunc) (*ExtractBaikeEntityResp, *Response, error) + mockBaikeGetBaikeClassificationList func(ctx context.Context, request *GetBaikeClassificationListReq, options ...MethodOptionFunc) (*GetBaikeClassificationListResp, *Response, error) + mockBaikeGetBaikeEntity func(ctx context.Context, request *GetBaikeEntityReq, options ...MethodOptionFunc) (*GetBaikeEntityResp, *Response, error) + mockBaikeGetBaikeEntityList func(ctx context.Context, request *GetBaikeEntityListReq, options ...MethodOptionFunc) (*GetBaikeEntityListResp, *Response, error) + mockBaikeHighlightBaikeEntity func(ctx context.Context, request *HighlightBaikeEntityReq, options ...MethodOptionFunc) (*HighlightBaikeEntityResp, *Response, error) + mockBaikeMatchBaikeEntity func(ctx context.Context, request *MatchBaikeEntityReq, options ...MethodOptionFunc) (*MatchBaikeEntityResp, *Response, error) + mockBaikeSearchBaikeEntity func(ctx context.Context, request *SearchBaikeEntityReq, options ...MethodOptionFunc) (*SearchBaikeEntityResp, *Response, error) + mockBaikeUpdateBaikeEntity func(ctx context.Context, request *UpdateBaikeEntityReq, options ...MethodOptionFunc) (*UpdateBaikeEntityResp, *Response, error) + mockBaikeUploadBaikeImage func(ctx context.Context, request *UploadBaikeImageReq, options ...MethodOptionFunc) (*UploadBaikeImageResp, *Response, error) + mockBitableBatchCreateBitableAppRoleMember func(ctx context.Context, request *BatchCreateBitableAppRoleMemberReq, options ...MethodOptionFunc) (*BatchCreateBitableAppRoleMemberResp, *Response, error) + mockBitableBatchCreateBitableRecord func(ctx context.Context, request *BatchCreateBitableRecordReq, options ...MethodOptionFunc) (*BatchCreateBitableRecordResp, *Response, error) + mockBitableBatchCreateBitableTable func(ctx context.Context, request *BatchCreateBitableTableReq, options ...MethodOptionFunc) (*BatchCreateBitableTableResp, *Response, error) + mockBitableBatchDeleteBitableAppRoleMember func(ctx context.Context, request *BatchDeleteBitableAppRoleMemberReq, options ...MethodOptionFunc) (*BatchDeleteBitableAppRoleMemberResp, *Response, error) + mockBitableBatchDeleteBitableRecord func(ctx context.Context, request *BatchDeleteBitableRecordReq, options ...MethodOptionFunc) (*BatchDeleteBitableRecordResp, *Response, error) + mockBitableBatchDeleteBitableTable func(ctx context.Context, request *BatchDeleteBitableTableReq, options ...MethodOptionFunc) (*BatchDeleteBitableTableResp, *Response, error) + mockBitableBatchUpdateBitableRecord func(ctx context.Context, request *BatchUpdateBitableRecordReq, options ...MethodOptionFunc) (*BatchUpdateBitableRecordResp, *Response, error) + mockBitableCopyBitableApp func(ctx context.Context, request *CopyBitableAppReq, options ...MethodOptionFunc) (*CopyBitableAppResp, *Response, error) + mockBitableCopyBitableDashboard func(ctx context.Context, request *CopyBitableDashboardReq, options ...MethodOptionFunc) (*CopyBitableDashboardResp, *Response, error) + mockBitableCreateBitableApp func(ctx context.Context, request *CreateBitableAppReq, options ...MethodOptionFunc) (*CreateBitableAppResp, *Response, error) + mockBitableCreateBitableAppRole func(ctx context.Context, request *CreateBitableAppRoleReq, options ...MethodOptionFunc) (*CreateBitableAppRoleResp, *Response, error) + mockBitableCreateBitableAppRoleMember func(ctx context.Context, request *CreateBitableAppRoleMemberReq, options ...MethodOptionFunc) (*CreateBitableAppRoleMemberResp, *Response, error) + mockBitableCreateBitableField func(ctx context.Context, request *CreateBitableFieldReq, options ...MethodOptionFunc) (*CreateBitableFieldResp, *Response, error) + mockBitableCreateBitableRecord func(ctx context.Context, request *CreateBitableRecordReq, options ...MethodOptionFunc) (*CreateBitableRecordResp, *Response, error) + mockBitableCreateBitableTable func(ctx context.Context, request *CreateBitableTableReq, options ...MethodOptionFunc) (*CreateBitableTableResp, *Response, error) + mockBitableCreateBitableView func(ctx context.Context, request *CreateBitableViewReq, options ...MethodOptionFunc) (*CreateBitableViewResp, *Response, error) + mockBitableDeleteBitableAppRole func(ctx context.Context, request *DeleteBitableAppRoleReq, options ...MethodOptionFunc) (*DeleteBitableAppRoleResp, *Response, error) + mockBitableDeleteBitableAppRoleMember func(ctx context.Context, request *DeleteBitableAppRoleMemberReq, options ...MethodOptionFunc) (*DeleteBitableAppRoleMemberResp, *Response, error) + mockBitableDeleteBitableField func(ctx context.Context, request *DeleteBitableFieldReq, options ...MethodOptionFunc) (*DeleteBitableFieldResp, *Response, error) + mockBitableDeleteBitableRecord func(ctx context.Context, request *DeleteBitableRecordReq, options ...MethodOptionFunc) (*DeleteBitableRecordResp, *Response, error) + mockBitableDeleteBitableTable func(ctx context.Context, request *DeleteBitableTableReq, options ...MethodOptionFunc) (*DeleteBitableTableResp, *Response, error) + mockBitableDeleteBitableView func(ctx context.Context, request *DeleteBitableViewReq, options ...MethodOptionFunc) (*DeleteBitableViewResp, *Response, error) + mockBitableGetBitableAppRoleList func(ctx context.Context, request *GetBitableAppRoleListReq, options ...MethodOptionFunc) (*GetBitableAppRoleListResp, *Response, error) + mockBitableGetBitableAppRoleMemberList func(ctx context.Context, request *GetBitableAppRoleMemberListReq, options ...MethodOptionFunc) (*GetBitableAppRoleMemberListResp, *Response, error) + mockBitableGetBitableDashboardList func(ctx context.Context, request *GetBitableDashboardListReq, options ...MethodOptionFunc) (*GetBitableDashboardListResp, *Response, error) + mockBitableGetBitableFieldList func(ctx context.Context, request *GetBitableFieldListReq, options ...MethodOptionFunc) (*GetBitableFieldListResp, *Response, error) + mockBitableGetBitableMeta func(ctx context.Context, request *GetBitableMetaReq, options ...MethodOptionFunc) (*GetBitableMetaResp, *Response, error) + mockBitableGetBitableRecord func(ctx context.Context, request *GetBitableRecordReq, options ...MethodOptionFunc) (*GetBitableRecordResp, *Response, error) + mockBitableGetBitableRecordList func(ctx context.Context, request *GetBitableRecordListReq, options ...MethodOptionFunc) (*GetBitableRecordListResp, *Response, error) + mockBitableGetBitableTableForm func(ctx context.Context, request *GetBitableTableFormReq, options ...MethodOptionFunc) (*GetBitableTableFormResp, *Response, error) + mockBitableGetBitableTableFormFieldList func(ctx context.Context, request *GetBitableTableFormFieldListReq, options ...MethodOptionFunc) (*GetBitableTableFormFieldListResp, *Response, error) + mockBitableGetBitableTableList func(ctx context.Context, request *GetBitableTableListReq, options ...MethodOptionFunc) (*GetBitableTableListResp, *Response, error) + mockBitableGetBitableView func(ctx context.Context, request *GetBitableViewReq, options ...MethodOptionFunc) (*GetBitableViewResp, *Response, error) + mockBitableGetBitableViewList func(ctx context.Context, request *GetBitableViewListReq, options ...MethodOptionFunc) (*GetBitableViewListResp, *Response, error) + mockBitableSearchBitableRecord func(ctx context.Context, request *SearchBitableRecordReq, options ...MethodOptionFunc) (*SearchBitableRecordResp, *Response, error) + mockBitableUpdateBitableAppRole func(ctx context.Context, request *UpdateBitableAppRoleReq, options ...MethodOptionFunc) (*UpdateBitableAppRoleResp, *Response, error) + mockBitableUpdateBitableField func(ctx context.Context, request *UpdateBitableFieldReq, options ...MethodOptionFunc) (*UpdateBitableFieldResp, *Response, error) + mockBitableUpdateBitableMeta func(ctx context.Context, request *UpdateBitableMetaReq, options ...MethodOptionFunc) (*UpdateBitableMetaResp, *Response, error) + mockBitableUpdateBitableRecord func(ctx context.Context, request *UpdateBitableRecordReq, options ...MethodOptionFunc) (*UpdateBitableRecordResp, *Response, error) + mockBitableUpdateBitableTable func(ctx context.Context, request *UpdateBitableTableReq, options ...MethodOptionFunc) (*UpdateBitableTableResp, *Response, error) + mockBitableUpdateBitableTableForm func(ctx context.Context, request *UpdateBitableTableFormReq, options ...MethodOptionFunc) (*UpdateBitableTableFormResp, *Response, error) + mockBitableUpdateBitableTableFormField func(ctx context.Context, request *UpdateBitableTableFormFieldReq, options ...MethodOptionFunc) (*UpdateBitableTableFormFieldResp, *Response, error) + mockBitableUpdateBitableView func(ctx context.Context, request *UpdateBitableViewReq, options ...MethodOptionFunc) (*UpdateBitableViewResp, *Response, error) + mockBotAddBotToChat func(ctx context.Context, request *AddBotToChatReq, options ...MethodOptionFunc) (*AddBotToChatResp, *Response, error) + mockBotGetBotInfo func(ctx context.Context, request *GetBotInfoReq, options ...MethodOptionFunc) (*GetBotInfoResp, *Response, error) + mockCalendarBatchGetCalendarMeetingRoomFreebusy func(ctx context.Context, request *BatchGetCalendarMeetingRoomFreebusyReq, options ...MethodOptionFunc) (*BatchGetCalendarMeetingRoomFreebusyResp, *Response, error) + mockCalendarBatchGetCalendarMeetingRoomSummary func(ctx context.Context, request *BatchGetCalendarMeetingRoomSummaryReq, options ...MethodOptionFunc) (*BatchGetCalendarMeetingRoomSummaryResp, *Response, error) + mockCalendarCreateCalendar func(ctx context.Context, request *CreateCalendarReq, options ...MethodOptionFunc) (*CreateCalendarResp, *Response, error) + mockCalendarCreateCalendarPrimarys func(ctx context.Context, request *CreateCalendarPrimarysReq, options ...MethodOptionFunc) (*CreateCalendarPrimarysResp, *Response, error) + mockCalendarCreateCalendarACL func(ctx context.Context, request *CreateCalendarACLReq, options ...MethodOptionFunc) (*CreateCalendarACLResp, *Response, error) + mockCalendarCreateCalendarEvent func(ctx context.Context, request *CreateCalendarEventReq, options ...MethodOptionFunc) (*CreateCalendarEventResp, *Response, error) + mockCalendarCreateCalendarEventAttendee func(ctx context.Context, request *CreateCalendarEventAttendeeReq, options ...MethodOptionFunc) (*CreateCalendarEventAttendeeResp, *Response, error) + mockCalendarCreateCalendarEventMeetingChat func(ctx context.Context, request *CreateCalendarEventMeetingChatReq, options ...MethodOptionFunc) (*CreateCalendarEventMeetingChatResp, *Response, error) + mockCalendarCreateCalendarExchangeBinding func(ctx context.Context, request *CreateCalendarExchangeBindingReq, options ...MethodOptionFunc) (*CreateCalendarExchangeBindingResp, *Response, error) + mockCalendarCreateCalendarTimeoffEvent func(ctx context.Context, request *CreateCalendarTimeoffEventReq, options ...MethodOptionFunc) (*CreateCalendarTimeoffEventResp, *Response, error) + mockCalendarDeleteCalendar func(ctx context.Context, request *DeleteCalendarReq, options ...MethodOptionFunc) (*DeleteCalendarResp, *Response, error) + mockCalendarDeleteCalendarACL func(ctx context.Context, request *DeleteCalendarACLReq, options ...MethodOptionFunc) (*DeleteCalendarACLResp, *Response, error) + mockCalendarDeleteCalendarEvent func(ctx context.Context, request *DeleteCalendarEventReq, options ...MethodOptionFunc) (*DeleteCalendarEventResp, *Response, error) + mockCalendarDeleteCalendarEventAttendee func(ctx context.Context, request *DeleteCalendarEventAttendeeReq, options ...MethodOptionFunc) (*DeleteCalendarEventAttendeeResp, *Response, error) + mockCalendarDeleteCalendarEventMeetingChat func(ctx context.Context, request *DeleteCalendarEventMeetingChatReq, options ...MethodOptionFunc) (*DeleteCalendarEventMeetingChatResp, *Response, error) + mockCalendarDeleteCalendarExchangeBinding func(ctx context.Context, request *DeleteCalendarExchangeBindingReq, options ...MethodOptionFunc) (*DeleteCalendarExchangeBindingResp, *Response, error) + mockCalendarDeleteCalendarTimeoffEvent func(ctx context.Context, request *DeleteCalendarTimeoffEventReq, options ...MethodOptionFunc) (*DeleteCalendarTimeoffEventResp, *Response, error) + mockCalendarGenerateCaldavConf func(ctx context.Context, request *GenerateCaldavConfReq, options ...MethodOptionFunc) (*GenerateCaldavConfResp, *Response, error) + mockCalendarGetCalendar func(ctx context.Context, request *GetCalendarReq, options ...MethodOptionFunc) (*GetCalendarResp, *Response, error) + mockCalendarGetCalendarACLList func(ctx context.Context, request *GetCalendarACLListReq, options ...MethodOptionFunc) (*GetCalendarACLListResp, *Response, error) + mockCalendarGetCalendarEvent func(ctx context.Context, request *GetCalendarEventReq, options ...MethodOptionFunc) (*GetCalendarEventResp, *Response, error) + mockCalendarGetCalendarEventAttendeeChatMemberList func(ctx context.Context, request *GetCalendarEventAttendeeChatMemberListReq, options ...MethodOptionFunc) (*GetCalendarEventAttendeeChatMemberListResp, *Response, error) + mockCalendarGetCalendarEventAttendeeList func(ctx context.Context, request *GetCalendarEventAttendeeListReq, options ...MethodOptionFunc) (*GetCalendarEventAttendeeListResp, *Response, error) + mockCalendarGetCalendarEventInstanceList func(ctx context.Context, request *GetCalendarEventInstanceListReq, options ...MethodOptionFunc) (*GetCalendarEventInstanceListResp, *Response, error) + mockCalendarGetCalendarEventInstanceViewList func(ctx context.Context, request *GetCalendarEventInstanceViewListReq, options ...MethodOptionFunc) (*GetCalendarEventInstanceViewListResp, *Response, error) + mockCalendarGetCalendarEventList func(ctx context.Context, request *GetCalendarEventListReq, options ...MethodOptionFunc) (*GetCalendarEventListResp, *Response, error) + mockCalendarGetCalendarExchangeBinding func(ctx context.Context, request *GetCalendarExchangeBindingReq, options ...MethodOptionFunc) (*GetCalendarExchangeBindingResp, *Response, error) + mockCalendarGetCalendarFreeBusyList func(ctx context.Context, request *GetCalendarFreeBusyListReq, options ...MethodOptionFunc) (*GetCalendarFreeBusyListResp, *Response, error) + mockCalendarGetCalendarList func(ctx context.Context, request *GetCalendarListReq, options ...MethodOptionFunc) (*GetCalendarListResp, *Response, error) + mockCalendarGetPrimaryCalendar func(ctx context.Context, request *GetPrimaryCalendarReq, options ...MethodOptionFunc) (*GetPrimaryCalendarResp, *Response, error) + mockCalendarReplyCalendarEvent func(ctx context.Context, request *ReplyCalendarEventReq, options ...MethodOptionFunc) (*ReplyCalendarEventResp, *Response, error) + mockCalendarReplyCalendarMeetingRoomInstance func(ctx context.Context, request *ReplyCalendarMeetingRoomInstanceReq, options ...MethodOptionFunc) (*ReplyCalendarMeetingRoomInstanceResp, *Response, error) + mockCalendarSearchCalendar func(ctx context.Context, request *SearchCalendarReq, options ...MethodOptionFunc) (*SearchCalendarResp, *Response, error) + mockCalendarSearchCalendarEvent func(ctx context.Context, request *SearchCalendarEventReq, options ...MethodOptionFunc) (*SearchCalendarEventResp, *Response, error) + mockCalendarSubscribeCalendar func(ctx context.Context, request *SubscribeCalendarReq, options ...MethodOptionFunc) (*SubscribeCalendarResp, *Response, error) + mockCalendarSubscribeCalendarACL func(ctx context.Context, request *SubscribeCalendarACLReq, options ...MethodOptionFunc) (*SubscribeCalendarACLResp, *Response, error) + mockCalendarSubscribeCalendarChangeEvent func(ctx context.Context, request *SubscribeCalendarChangeEventReq, options ...MethodOptionFunc) (*SubscribeCalendarChangeEventResp, *Response, error) + mockCalendarSubscribeCalendarEvent func(ctx context.Context, request *SubscribeCalendarEventReq, options ...MethodOptionFunc) (*SubscribeCalendarEventResp, *Response, error) + mockCalendarUnsubscribeCalendar func(ctx context.Context, request *UnsubscribeCalendarReq, options ...MethodOptionFunc) (*UnsubscribeCalendarResp, *Response, error) + mockCalendarUnsubscribeCalendarACL func(ctx context.Context, request *UnsubscribeCalendarACLReq, options ...MethodOptionFunc) (*UnsubscribeCalendarACLResp, *Response, error) + mockCalendarUnsubscribeCalendarChangeEvent func(ctx context.Context, request *UnsubscribeCalendarChangeEventReq, options ...MethodOptionFunc) (*UnsubscribeCalendarChangeEventResp, *Response, error) + mockCalendarUnsubscribeCalendarEvent func(ctx context.Context, request *UnsubscribeCalendarEventReq, options ...MethodOptionFunc) (*UnsubscribeCalendarEventResp, *Response, error) + mockCalendarUpdateCalendar func(ctx context.Context, request *UpdateCalendarReq, options ...MethodOptionFunc) (*UpdateCalendarResp, *Response, error) + mockCalendarUpdateCalendarEvent func(ctx context.Context, request *UpdateCalendarEventReq, options ...MethodOptionFunc) (*UpdateCalendarEventResp, *Response, error) + mockChatAddChatMember func(ctx context.Context, request *AddChatMemberReq, options ...MethodOptionFunc) (*AddChatMemberResp, *Response, error) + mockChatCreateChat func(ctx context.Context, request *CreateChatReq, options ...MethodOptionFunc) (*CreateChatResp, *Response, error) + mockChatCreateChatManager func(ctx context.Context, request *CreateChatManagerReq, options ...MethodOptionFunc) (*CreateChatManagerResp, *Response, error) + mockChatCreateChatMenuTree func(ctx context.Context, request *CreateChatMenuTreeReq, options ...MethodOptionFunc) (*CreateChatMenuTreeResp, *Response, error) + mockChatCreateChatTab func(ctx context.Context, request *CreateChatTabReq, options ...MethodOptionFunc) (*CreateChatTabResp, *Response, error) + mockChatDeleteChat func(ctx context.Context, request *DeleteChatReq, options ...MethodOptionFunc) (*DeleteChatResp, *Response, error) + mockChatDeleteChatManager func(ctx context.Context, request *DeleteChatManagerReq, options ...MethodOptionFunc) (*DeleteChatManagerResp, *Response, error) + mockChatDeleteChatMember func(ctx context.Context, request *DeleteChatMemberReq, options ...MethodOptionFunc) (*DeleteChatMemberResp, *Response, error) + mockChatDeleteChatMenuTree func(ctx context.Context, request *DeleteChatMenuTreeReq, options ...MethodOptionFunc) (*DeleteChatMenuTreeResp, *Response, error) + mockChatDeleteChatTab func(ctx context.Context, request *DeleteChatTabReq, options ...MethodOptionFunc) (*DeleteChatTabResp, *Response, error) + mockChatDeleteChatTopNotice func(ctx context.Context, request *DeleteChatTopNoticeReq, options ...MethodOptionFunc) (*DeleteChatTopNoticeResp, *Response, error) + mockChatGenChatShareLink func(ctx context.Context, request *GenChatShareLinkReq, options ...MethodOptionFunc) (*GenChatShareLinkResp, *Response, error) + mockChatGetChat func(ctx context.Context, request *GetChatReq, options ...MethodOptionFunc) (*GetChatResp, *Response, error) + mockChatGetChatAnnouncement func(ctx context.Context, request *GetChatAnnouncementReq, options ...MethodOptionFunc) (*GetChatAnnouncementResp, *Response, error) + mockChatGetChatListOfSelf func(ctx context.Context, request *GetChatListOfSelfReq, options ...MethodOptionFunc) (*GetChatListOfSelfResp, *Response, error) + mockChatGetChatMemberList func(ctx context.Context, request *GetChatMemberListReq, options ...MethodOptionFunc) (*GetChatMemberListResp, *Response, error) + mockChatGetChatMenuTree func(ctx context.Context, request *GetChatMenuTreeReq, options ...MethodOptionFunc) (*GetChatMenuTreeResp, *Response, error) + mockChatGetChatModeration func(ctx context.Context, request *GetChatModerationReq, options ...MethodOptionFunc) (*GetChatModerationResp, *Response, error) + mockChatGetChatOld func(ctx context.Context, request *GetChatOldReq, options ...MethodOptionFunc) (*GetChatOldResp, *Response, error) + mockChatGetChatTabList func(ctx context.Context, request *GetChatTabListReq, options ...MethodOptionFunc) (*GetChatTabListResp, *Response, error) + mockChatIsInChat func(ctx context.Context, request *IsInChatReq, options ...MethodOptionFunc) (*IsInChatResp, *Response, error) + mockChatJoinChat func(ctx context.Context, request *JoinChatReq, options ...MethodOptionFunc) (*JoinChatResp, *Response, error) + mockChatSearchChat func(ctx context.Context, request *SearchChatReq, options ...MethodOptionFunc) (*SearchChatResp, *Response, error) + mockChatSortChatMenuTree func(ctx context.Context, request *SortChatMenuTreeReq, options ...MethodOptionFunc) (*SortChatMenuTreeResp, *Response, error) + mockChatSortChatTab func(ctx context.Context, request *SortChatTabReq, options ...MethodOptionFunc) (*SortChatTabResp, *Response, error) + mockChatUpdateChat func(ctx context.Context, request *UpdateChatReq, options ...MethodOptionFunc) (*UpdateChatResp, *Response, error) + mockChatUpdateChatAnnouncement func(ctx context.Context, request *UpdateChatAnnouncementReq, options ...MethodOptionFunc) (*UpdateChatAnnouncementResp, *Response, error) + mockChatUpdateChatMenuTree func(ctx context.Context, request *UpdateChatMenuTreeReq, options ...MethodOptionFunc) (*UpdateChatMenuTreeResp, *Response, error) + mockChatUpdateChatModeration func(ctx context.Context, request *UpdateChatModerationReq, options ...MethodOptionFunc) (*UpdateChatModerationResp, *Response, error) + mockChatUpdateChatTab func(ctx context.Context, request *UpdateChatTabReq, options ...MethodOptionFunc) (*UpdateChatTabResp, *Response, error) + mockChatUpdateChatTopNotice func(ctx context.Context, request *UpdateChatTopNoticeReq, options ...MethodOptionFunc) (*UpdateChatTopNoticeResp, *Response, error) + mockContactAddContactGroupMember func(ctx context.Context, request *AddContactGroupMemberReq, options ...MethodOptionFunc) (*AddContactGroupMemberResp, *Response, error) + mockContactBatchAddContactGroupMember func(ctx context.Context, request *BatchAddContactGroupMemberReq, options ...MethodOptionFunc) (*BatchAddContactGroupMemberResp, *Response, error) + mockContactBatchAddContactV2User func(ctx context.Context, request *BatchAddContactV2UserReq, options ...MethodOptionFunc) (*BatchAddContactV2UserResp, *Response, error) + mockContactBatchAddContactV2Department func(ctx context.Context, request *BatchAddContactV2DepartmentReq, options ...MethodOptionFunc) (*BatchAddContactV2DepartmentResp, *Response, error) + mockContactBatchCreateContactFunctionalRoleMember func(ctx context.Context, request *BatchCreateContactFunctionalRoleMemberReq, options ...MethodOptionFunc) (*BatchCreateContactFunctionalRoleMemberResp, *Response, error) + mockContactBatchDeleteContactFunctionalRoleMember func(ctx context.Context, request *BatchDeleteContactFunctionalRoleMemberReq, options ...MethodOptionFunc) (*BatchDeleteContactFunctionalRoleMemberResp, *Response, error) + mockContactBatchDeleteContactGroupMember func(ctx context.Context, request *BatchDeleteContactGroupMemberReq, options ...MethodOptionFunc) (*BatchDeleteContactGroupMemberResp, *Response, error) + mockContactBatchGetDepartment func(ctx context.Context, request *BatchGetDepartmentReq, options ...MethodOptionFunc) (*BatchGetDepartmentResp, *Response, error) + mockContactBatchGetUser func(ctx context.Context, request *BatchGetUserReq, options ...MethodOptionFunc) (*BatchGetUserResp, *Response, error) + mockContactBatchGetUserByID func(ctx context.Context, request *BatchGetUserByIDReq, options ...MethodOptionFunc) (*BatchGetUserByIDResp, *Response, error) + mockContactBatchGetUserByIDOld func(ctx context.Context, request *BatchGetUserByIDOldReq, options ...MethodOptionFunc) (*BatchGetUserByIDOldResp, *Response, error) + mockContactBindContactUnitDepartment func(ctx context.Context, request *BindContactUnitDepartmentReq, options ...MethodOptionFunc) (*BindContactUnitDepartmentResp, *Response, error) + mockContactCreateContactFunctionalRole func(ctx context.Context, request *CreateContactFunctionalRoleReq, options ...MethodOptionFunc) (*CreateContactFunctionalRoleResp, *Response, error) + mockContactCreateContactGroup func(ctx context.Context, request *CreateContactGroupReq, options ...MethodOptionFunc) (*CreateContactGroupResp, *Response, error) + mockContactCreateContactJobFamily func(ctx context.Context, request *CreateContactJobFamilyReq, options ...MethodOptionFunc) (*CreateContactJobFamilyResp, *Response, error) + mockContactCreateContactJobLevel func(ctx context.Context, request *CreateContactJobLevelReq, options ...MethodOptionFunc) (*CreateContactJobLevelResp, *Response, error) + mockContactCreateContactUnit func(ctx context.Context, request *CreateContactUnitReq, options ...MethodOptionFunc) (*CreateContactUnitResp, *Response, error) + mockContactCreateDepartment func(ctx context.Context, request *CreateDepartmentReq, options ...MethodOptionFunc) (*CreateDepartmentResp, *Response, error) + mockContactCreateEmployeeTypeEnum func(ctx context.Context, request *CreateEmployeeTypeEnumReq, options ...MethodOptionFunc) (*CreateEmployeeTypeEnumResp, *Response, error) + mockContactCreateUser func(ctx context.Context, request *CreateUserReq, options ...MethodOptionFunc) (*CreateUserResp, *Response, error) + mockContactDeleteContactFunctionalRole func(ctx context.Context, request *DeleteContactFunctionalRoleReq, options ...MethodOptionFunc) (*DeleteContactFunctionalRoleResp, *Response, error) + mockContactDeleteContactGroup func(ctx context.Context, request *DeleteContactGroupReq, options ...MethodOptionFunc) (*DeleteContactGroupResp, *Response, error) + mockContactDeleteContactGroupMember func(ctx context.Context, request *DeleteContactGroupMemberReq, options ...MethodOptionFunc) (*DeleteContactGroupMemberResp, *Response, error) + mockContactDeleteContactJobFamily func(ctx context.Context, request *DeleteContactJobFamilyReq, options ...MethodOptionFunc) (*DeleteContactJobFamilyResp, *Response, error) + mockContactDeleteContactJobLevel func(ctx context.Context, request *DeleteContactJobLevelReq, options ...MethodOptionFunc) (*DeleteContactJobLevelResp, *Response, error) + mockContactDeleteContactUnit func(ctx context.Context, request *DeleteContactUnitReq, options ...MethodOptionFunc) (*DeleteContactUnitResp, *Response, error) + mockContactDeleteDepartment func(ctx context.Context, request *DeleteDepartmentReq, options ...MethodOptionFunc) (*DeleteDepartmentResp, *Response, error) + mockContactDeleteEmployeeTypeEnum func(ctx context.Context, request *DeleteEmployeeTypeEnumReq, options ...MethodOptionFunc) (*DeleteEmployeeTypeEnumResp, *Response, error) + mockContactDeleteUser func(ctx context.Context, request *DeleteUserReq, options ...MethodOptionFunc) (*DeleteUserResp, *Response, error) + mockContactGetContactCustomAttrList func(ctx context.Context, request *GetContactCustomAttrListReq, options ...MethodOptionFunc) (*GetContactCustomAttrListResp, *Response, error) + mockContactGetContactFunctionalRoleMember func(ctx context.Context, request *GetContactFunctionalRoleMemberReq, options ...MethodOptionFunc) (*GetContactFunctionalRoleMemberResp, *Response, error) + mockContactGetContactFunctionalRoleMemberScope func(ctx context.Context, request *GetContactFunctionalRoleMemberScopeReq, options ...MethodOptionFunc) (*GetContactFunctionalRoleMemberScopeResp, *Response, error) + mockContactGetContactGroup func(ctx context.Context, request *GetContactGroupReq, options ...MethodOptionFunc) (*GetContactGroupResp, *Response, error) + mockContactGetContactGroupList func(ctx context.Context, request *GetContactGroupListReq, options ...MethodOptionFunc) (*GetContactGroupListResp, *Response, error) + mockContactGetContactGroupMember func(ctx context.Context, request *GetContactGroupMemberReq, options ...MethodOptionFunc) (*GetContactGroupMemberResp, *Response, error) + mockContactGetContactJobFamily func(ctx context.Context, request *GetContactJobFamilyReq, options ...MethodOptionFunc) (*GetContactJobFamilyResp, *Response, error) + mockContactGetContactJobFamilyList func(ctx context.Context, request *GetContactJobFamilyListReq, options ...MethodOptionFunc) (*GetContactJobFamilyListResp, *Response, error) + mockContactGetContactJobLevel func(ctx context.Context, request *GetContactJobLevelReq, options ...MethodOptionFunc) (*GetContactJobLevelResp, *Response, error) + mockContactGetContactJobLevelList func(ctx context.Context, request *GetContactJobLevelListReq, options ...MethodOptionFunc) (*GetContactJobLevelListResp, *Response, error) + mockContactGetContactJobTitle func(ctx context.Context, request *GetContactJobTitleReq, options ...MethodOptionFunc) (*GetContactJobTitleResp, *Response, error) + mockContactGetContactJobTitleList func(ctx context.Context, request *GetContactJobTitleListReq, options ...MethodOptionFunc) (*GetContactJobTitleListResp, *Response, error) + mockContactGetContactMemberGroupList func(ctx context.Context, request *GetContactMemberGroupListReq, options ...MethodOptionFunc) (*GetContactMemberGroupListResp, *Response, error) + mockContactGetContactScopeList func(ctx context.Context, request *GetContactScopeListReq, options ...MethodOptionFunc) (*GetContactScopeListResp, *Response, error) + mockContactGetContactUnit func(ctx context.Context, request *GetContactUnitReq, options ...MethodOptionFunc) (*GetContactUnitResp, *Response, error) + mockContactGetContactUnitDepartmentList func(ctx context.Context, request *GetContactUnitDepartmentListReq, options ...MethodOptionFunc) (*GetContactUnitDepartmentListResp, *Response, error) + mockContactGetContactUnitList func(ctx context.Context, request *GetContactUnitListReq, options ...MethodOptionFunc) (*GetContactUnitListResp, *Response, error) + mockContactGetContactV2Task func(ctx context.Context, request *GetContactV2TaskReq, options ...MethodOptionFunc) (*GetContactV2TaskResp, *Response, error) + mockContactGetContactWorkCity func(ctx context.Context, request *GetContactWorkCityReq, options ...MethodOptionFunc) (*GetContactWorkCityResp, *Response, error) + mockContactGetContactWorkCityList func(ctx context.Context, request *GetContactWorkCityListReq, options ...MethodOptionFunc) (*GetContactWorkCityListResp, *Response, error) + mockContactGetDepartment func(ctx context.Context, request *GetDepartmentReq, options ...MethodOptionFunc) (*GetDepartmentResp, *Response, error) + mockContactGetDepartmentList func(ctx context.Context, request *GetDepartmentListReq, options ...MethodOptionFunc) (*GetDepartmentListResp, *Response, error) + mockContactGetDepartmentListOld func(ctx context.Context, request *GetDepartmentListOldReq, options ...MethodOptionFunc) (*GetDepartmentListOldResp, *Response, error) + mockContactGetEmployeeTypeEnumList func(ctx context.Context, request *GetEmployeeTypeEnumListReq, options ...MethodOptionFunc) (*GetEmployeeTypeEnumListResp, *Response, error) + mockContactGetParentDepartment func(ctx context.Context, request *GetParentDepartmentReq, options ...MethodOptionFunc) (*GetParentDepartmentResp, *Response, error) + mockContactGetUser func(ctx context.Context, request *GetUserReq, options ...MethodOptionFunc) (*GetUserResp, *Response, error) + mockContactGetUserList func(ctx context.Context, request *GetUserListReq, options ...MethodOptionFunc) (*GetUserListResp, *Response, error) + mockContactGetUserListOld func(ctx context.Context, request *GetUserListOldReq, options ...MethodOptionFunc) (*GetUserListOldResp, *Response, error) + mockContactResurrectUser func(ctx context.Context, request *ResurrectUserReq, options ...MethodOptionFunc) (*ResurrectUserResp, *Response, error) + mockContactSearchDepartment func(ctx context.Context, request *SearchDepartmentReq, options ...MethodOptionFunc) (*SearchDepartmentResp, *Response, error) + mockContactSearchUserOld func(ctx context.Context, request *SearchUserOldReq, options ...MethodOptionFunc) (*SearchUserOldResp, *Response, error) + mockContactUnbindContactUnitDepartment func(ctx context.Context, request *UnbindContactUnitDepartmentReq, options ...MethodOptionFunc) (*UnbindContactUnitDepartmentResp, *Response, error) + mockContactUnbindDepartmentChat func(ctx context.Context, request *UnbindDepartmentChatReq, options ...MethodOptionFunc) (*UnbindDepartmentChatResp, *Response, error) + mockContactUpdateContactFunctionalRole func(ctx context.Context, request *UpdateContactFunctionalRoleReq, options ...MethodOptionFunc) (*UpdateContactFunctionalRoleResp, *Response, error) + mockContactUpdateContactFunctionalRoleMemberScope func(ctx context.Context, request *UpdateContactFunctionalRoleMemberScopeReq, options ...MethodOptionFunc) (*UpdateContactFunctionalRoleMemberScopeResp, *Response, error) + mockContactUpdateContactGroup func(ctx context.Context, request *UpdateContactGroupReq, options ...MethodOptionFunc) (*UpdateContactGroupResp, *Response, error) + mockContactUpdateContactJobFamily func(ctx context.Context, request *UpdateContactJobFamilyReq, options ...MethodOptionFunc) (*UpdateContactJobFamilyResp, *Response, error) + mockContactUpdateContactJobLevel func(ctx context.Context, request *UpdateContactJobLevelReq, options ...MethodOptionFunc) (*UpdateContactJobLevelResp, *Response, error) + mockContactUpdateContactUnit func(ctx context.Context, request *UpdateContactUnitReq, options ...MethodOptionFunc) (*UpdateContactUnitResp, *Response, error) + mockContactUpdateDepartment func(ctx context.Context, request *UpdateDepartmentReq, options ...MethodOptionFunc) (*UpdateDepartmentResp, *Response, error) + mockContactUpdateDepartmentID func(ctx context.Context, request *UpdateDepartmentIDReq, options ...MethodOptionFunc) (*UpdateDepartmentIDResp, *Response, error) + mockContactUpdateDepartmentPatch func(ctx context.Context, request *UpdateDepartmentPatchReq, options ...MethodOptionFunc) (*UpdateDepartmentPatchResp, *Response, error) + mockContactUpdateEmployeeTypeEnumPatch func(ctx context.Context, request *UpdateEmployeeTypeEnumPatchReq, options ...MethodOptionFunc) (*UpdateEmployeeTypeEnumPatchResp, *Response, error) + mockContactUpdateUser func(ctx context.Context, request *UpdateUserReq, options ...MethodOptionFunc) (*UpdateUserResp, *Response, error) + mockContactUpdateUserID func(ctx context.Context, request *UpdateUserIDReq, options ...MethodOptionFunc) (*UpdateUserIDResp, *Response, error) + mockContactUpdateUserPatch func(ctx context.Context, request *UpdateUserPatchReq, options ...MethodOptionFunc) (*UpdateUserPatchResp, *Response, error) + mockCoreHRActiveCoreHRCostCenter func(ctx context.Context, request *ActiveCoreHRCostCenterReq, options ...MethodOptionFunc) (*ActiveCoreHRCostCenterResp, *Response, error) + mockCoreHRBatchGetCoreHRCompany func(ctx context.Context, request *BatchGetCoreHRCompanyReq, options ...MethodOptionFunc) (*BatchGetCoreHRCompanyResp, *Response, error) + mockCoreHRBatchGetCoreHRDepartment func(ctx context.Context, request *BatchGetCoreHRDepartmentReq, options ...MethodOptionFunc) (*BatchGetCoreHRDepartmentResp, *Response, error) + mockCoreHRBatchGetCoreHREmployee func(ctx context.Context, request *BatchGetCoreHREmployeeReq, options ...MethodOptionFunc) (*BatchGetCoreHREmployeeResp, *Response, error) + mockCoreHRBatchGetCoreHRJobData func(ctx context.Context, request *BatchGetCoreHRJobDataReq, options ...MethodOptionFunc) (*BatchGetCoreHRJobDataResp, *Response, error) + mockCoreHRBatchGetCoreHRJobFamily func(ctx context.Context, request *BatchGetCoreHRJobFamilyReq, options ...MethodOptionFunc) (*BatchGetCoreHRJobFamilyResp, *Response, error) + mockCoreHRBatchGetCoreHRJobLevel func(ctx context.Context, request *BatchGetCoreHRJobLevelReq, options ...MethodOptionFunc) (*BatchGetCoreHRJobLevelResp, *Response, error) + mockCoreHRBatchGetCoreHRLocation func(ctx context.Context, request *BatchGetCoreHRLocationReq, options ...MethodOptionFunc) (*BatchGetCoreHRLocationResp, *Response, error) + mockCoreHRBatchGetCoreHrbpByEmployee func(ctx context.Context, request *BatchGetCoreHrbpByEmployeeReq, options ...MethodOptionFunc) (*BatchGetCoreHrbpByEmployeeResp, *Response, error) + mockCoreHRBatchQueryCoreHRDepartmentTimeline func(ctx context.Context, request *BatchQueryCoreHRDepartmentTimelineReq, options ...MethodOptionFunc) (*BatchQueryCoreHRDepartmentTimelineResp, *Response, error) + mockCoreHRCreateCoreHRCompany func(ctx context.Context, request *CreateCoreHRCompanyReq, options ...MethodOptionFunc) (*CreateCoreHRCompanyResp, *Response, error) + mockCoreHRCreateCoreHRContract func(ctx context.Context, request *CreateCoreHRContractReq, options ...MethodOptionFunc) (*CreateCoreHRContractResp, *Response, error) + mockCoreHRCreateCoreHRCostCenter func(ctx context.Context, request *CreateCoreHRCostCenterReq, options ...MethodOptionFunc) (*CreateCoreHRCostCenterResp, *Response, error) + mockCoreHRCreateCoreHRCostCenterVersion func(ctx context.Context, request *CreateCoreHRCostCenterVersionReq, options ...MethodOptionFunc) (*CreateCoreHRCostCenterVersionResp, *Response, error) + mockCoreHRCreateCoreHRDepartment func(ctx context.Context, request *CreateCoreHRDepartmentReq, options ...MethodOptionFunc) (*CreateCoreHRDepartmentResp, *Response, error) + mockCoreHRCreateCoreHREmployeeType func(ctx context.Context, request *CreateCoreHREmployeeTypeReq, options ...MethodOptionFunc) (*CreateCoreHREmployeeTypeResp, *Response, error) + mockCoreHRCreateCoreHREmployment func(ctx context.Context, request *CreateCoreHREmploymentReq, options ...MethodOptionFunc) (*CreateCoreHREmploymentResp, *Response, error) + mockCoreHRCreateCoreHRJob func(ctx context.Context, request *CreateCoreHRJobReq, options ...MethodOptionFunc) (*CreateCoreHRJobResp, *Response, error) + mockCoreHRCreateCoreHRJobChange func(ctx context.Context, request *CreateCoreHRJobChangeReq, options ...MethodOptionFunc) (*CreateCoreHRJobChangeResp, *Response, error) + mockCoreHRCreateCoreHRJobData func(ctx context.Context, request *CreateCoreHRJobDataReq, options ...MethodOptionFunc) (*CreateCoreHRJobDataResp, *Response, error) + mockCoreHRCreateCoreHRJobFamily func(ctx context.Context, request *CreateCoreHRJobFamilyReq, options ...MethodOptionFunc) (*CreateCoreHRJobFamilyResp, *Response, error) + mockCoreHRCreateCoreHRJobLevel func(ctx context.Context, request *CreateCoreHRJobLevelReq, options ...MethodOptionFunc) (*CreateCoreHRJobLevelResp, *Response, error) + mockCoreHRCreateCoreHRLeaveGrantingRecord func(ctx context.Context, request *CreateCoreHRLeaveGrantingRecordReq, options ...MethodOptionFunc) (*CreateCoreHRLeaveGrantingRecordResp, *Response, error) + mockCoreHRCreateCoreHRLocation func(ctx context.Context, request *CreateCoreHRLocationReq, options ...MethodOptionFunc) (*CreateCoreHRLocationResp, *Response, error) + mockCoreHRCreateCoreHRNationalIDType func(ctx context.Context, request *CreateCoreHRNationalIDTypeReq, options ...MethodOptionFunc) (*CreateCoreHRNationalIDTypeResp, *Response, error) + mockCoreHRCreateCoreHROffboarding func(ctx context.Context, request *CreateCoreHROffboardingReq, options ...MethodOptionFunc) (*CreateCoreHROffboardingResp, *Response, error) + mockCoreHRCreateCoreHRPerson func(ctx context.Context, request *CreateCoreHRPersonReq, options ...MethodOptionFunc) (*CreateCoreHRPersonResp, *Response, error) + mockCoreHRCreateCoreHRPreHire func(ctx context.Context, request *CreateCoreHRPreHireReq, options ...MethodOptionFunc) (*CreateCoreHRPreHireResp, *Response, error) + mockCoreHRCreateCoreHRProbationAssessment func(ctx context.Context, request *CreateCoreHRProbationAssessmentReq, options ...MethodOptionFunc) (*CreateCoreHRProbationAssessmentResp, *Response, error) + mockCoreHRCreateCoreHRWorkingHoursType func(ctx context.Context, request *CreateCoreHRWorkingHoursTypeReq, options ...MethodOptionFunc) (*CreateCoreHRWorkingHoursTypeResp, *Response, error) + mockCoreHRDeleteCoreHRCompany func(ctx context.Context, request *DeleteCoreHRCompanyReq, options ...MethodOptionFunc) (*DeleteCoreHRCompanyResp, *Response, error) + mockCoreHRDeleteCoreHRContract func(ctx context.Context, request *DeleteCoreHRContractReq, options ...MethodOptionFunc) (*DeleteCoreHRContractResp, *Response, error) + mockCoreHRDeleteCoreHRCostCenter func(ctx context.Context, request *DeleteCoreHRCostCenterReq, options ...MethodOptionFunc) (*DeleteCoreHRCostCenterResp, *Response, error) + mockCoreHRDeleteCoreHRCostCenterVersion func(ctx context.Context, request *DeleteCoreHRCostCenterVersionReq, options ...MethodOptionFunc) (*DeleteCoreHRCostCenterVersionResp, *Response, error) + mockCoreHRDeleteCoreHRDepartment func(ctx context.Context, request *DeleteCoreHRDepartmentReq, options ...MethodOptionFunc) (*DeleteCoreHRDepartmentResp, *Response, error) + mockCoreHRDeleteCoreHREmployeeType func(ctx context.Context, request *DeleteCoreHREmployeeTypeReq, options ...MethodOptionFunc) (*DeleteCoreHREmployeeTypeResp, *Response, error) + mockCoreHRDeleteCoreHREmployment func(ctx context.Context, request *DeleteCoreHREmploymentReq, options ...MethodOptionFunc) (*DeleteCoreHREmploymentResp, *Response, error) + mockCoreHRDeleteCoreHRJob func(ctx context.Context, request *DeleteCoreHRJobReq, options ...MethodOptionFunc) (*DeleteCoreHRJobResp, *Response, error) + mockCoreHRDeleteCoreHRJobData func(ctx context.Context, request *DeleteCoreHRJobDataReq, options ...MethodOptionFunc) (*DeleteCoreHRJobDataResp, *Response, error) + mockCoreHRDeleteCoreHRJobFamily func(ctx context.Context, request *DeleteCoreHRJobFamilyReq, options ...MethodOptionFunc) (*DeleteCoreHRJobFamilyResp, *Response, error) + mockCoreHRDeleteCoreHRJobLevel func(ctx context.Context, request *DeleteCoreHRJobLevelReq, options ...MethodOptionFunc) (*DeleteCoreHRJobLevelResp, *Response, error) + mockCoreHRDeleteCoreHRLeaveGrantingRecord func(ctx context.Context, request *DeleteCoreHRLeaveGrantingRecordReq, options ...MethodOptionFunc) (*DeleteCoreHRLeaveGrantingRecordResp, *Response, error) + mockCoreHRDeleteCoreHRLocation func(ctx context.Context, request *DeleteCoreHRLocationReq, options ...MethodOptionFunc) (*DeleteCoreHRLocationResp, *Response, error) + mockCoreHRDeleteCoreHRNationalIDType func(ctx context.Context, request *DeleteCoreHRNationalIDTypeReq, options ...MethodOptionFunc) (*DeleteCoreHRNationalIDTypeResp, *Response, error) + mockCoreHRDeleteCoreHRPerson func(ctx context.Context, request *DeleteCoreHRPersonReq, options ...MethodOptionFunc) (*DeleteCoreHRPersonResp, *Response, error) + mockCoreHRDeleteCoreHRPreHire func(ctx context.Context, request *DeleteCoreHRPreHireReq, options ...MethodOptionFunc) (*DeleteCoreHRPreHireResp, *Response, error) + mockCoreHRDeleteCoreHRProbationAssessment func(ctx context.Context, request *DeleteCoreHRProbationAssessmentReq, options ...MethodOptionFunc) (*DeleteCoreHRProbationAssessmentResp, *Response, error) + mockCoreHRDeleteCoreHRWorkingHoursType func(ctx context.Context, request *DeleteCoreHRWorkingHoursTypeReq, options ...MethodOptionFunc) (*DeleteCoreHRWorkingHoursTypeResp, *Response, error) + mockCoreHRDownloadCoreHRPersonFile func(ctx context.Context, request *DownloadCoreHRPersonFileReq, options ...MethodOptionFunc) (*DownloadCoreHRPersonFileResp, *Response, error) + mockCoreHREnableDisableCoreHRProbationAssessment func(ctx context.Context, request *EnableDisableCoreHRProbationAssessmentReq, options ...MethodOptionFunc) (*EnableDisableCoreHRProbationAssessmentResp, *Response, error) + mockCoreHRGetCoreHRAuthorization func(ctx context.Context, request *GetCoreHRAuthorizationReq, options ...MethodOptionFunc) (*GetCoreHRAuthorizationResp, *Response, error) + mockCoreHRGetCoreHRAuthorizationList func(ctx context.Context, request *GetCoreHRAuthorizationListReq, options ...MethodOptionFunc) (*GetCoreHRAuthorizationListResp, *Response, error) + mockCoreHRGetCoreHRCompany func(ctx context.Context, request *GetCoreHRCompanyReq, options ...MethodOptionFunc) (*GetCoreHRCompanyResp, *Response, error) + mockCoreHRGetCoreHRCompanyList func(ctx context.Context, request *GetCoreHRCompanyListReq, options ...MethodOptionFunc) (*GetCoreHRCompanyListResp, *Response, error) + mockCoreHRGetCoreHRCompensationChangeReasonList func(ctx context.Context, request *GetCoreHRCompensationChangeReasonListReq, options ...MethodOptionFunc) (*GetCoreHRCompensationChangeReasonListResp, *Response, error) + mockCoreHRGetCoreHRCompensationIndicatorList func(ctx context.Context, request *GetCoreHRCompensationIndicatorListReq, options ...MethodOptionFunc) (*GetCoreHRCompensationIndicatorListResp, *Response, error) + mockCoreHRGetCoreHRCompensationItemCategoryList func(ctx context.Context, request *GetCoreHRCompensationItemCategoryListReq, options ...MethodOptionFunc) (*GetCoreHRCompensationItemCategoryListResp, *Response, error) + mockCoreHRGetCoreHRCompensationItemList func(ctx context.Context, request *GetCoreHRCompensationItemListReq, options ...MethodOptionFunc) (*GetCoreHRCompensationItemListResp, *Response, error) + mockCoreHRGetCoreHRCompensationPlanList func(ctx context.Context, request *GetCoreHRCompensationPlanListReq, options ...MethodOptionFunc) (*GetCoreHRCompensationPlanListResp, *Response, error) + mockCoreHRGetCoreHRContract func(ctx context.Context, request *GetCoreHRContractReq, options ...MethodOptionFunc) (*GetCoreHRContractResp, *Response, error) + mockCoreHRGetCoreHRContractList func(ctx context.Context, request *GetCoreHRContractListReq, options ...MethodOptionFunc) (*GetCoreHRContractListResp, *Response, error) + mockCoreHRGetCoreHRCountryRegion func(ctx context.Context, request *GetCoreHRCountryRegionReq, options ...MethodOptionFunc) (*GetCoreHRCountryRegionResp, *Response, error) + mockCoreHRGetCoreHRCountryRegionList func(ctx context.Context, request *GetCoreHRCountryRegionListReq, options ...MethodOptionFunc) (*GetCoreHRCountryRegionListResp, *Response, error) + mockCoreHRGetCoreHRCurrency func(ctx context.Context, request *GetCoreHRCurrencyReq, options ...MethodOptionFunc) (*GetCoreHRCurrencyResp, *Response, error) + mockCoreHRGetCoreHRCurrencyList func(ctx context.Context, request *GetCoreHRCurrencyListReq, options ...MethodOptionFunc) (*GetCoreHRCurrencyListResp, *Response, error) + mockCoreHRGetCoreHRCustomField func(ctx context.Context, request *GetCoreHRCustomFieldReq, options ...MethodOptionFunc) (*GetCoreHRCustomFieldResp, *Response, error) + mockCoreHRGetCoreHRCustomFieldList func(ctx context.Context, request *GetCoreHRCustomFieldListReq, options ...MethodOptionFunc) (*GetCoreHRCustomFieldListResp, *Response, error) + mockCoreHRGetCoreHRCustomFieldObjectApiNameList func(ctx context.Context, request *GetCoreHRCustomFieldObjectApiNameListReq, options ...MethodOptionFunc) (*GetCoreHRCustomFieldObjectApiNameListResp, *Response, error) + mockCoreHRGetCoreHRDepartment func(ctx context.Context, request *GetCoreHRDepartmentReq, options ...MethodOptionFunc) (*GetCoreHRDepartmentResp, *Response, error) + mockCoreHRGetCoreHRDepartmentList func(ctx context.Context, request *GetCoreHRDepartmentListReq, options ...MethodOptionFunc) (*GetCoreHRDepartmentListResp, *Response, error) + mockCoreHRGetCoreHRDepartmentParentList func(ctx context.Context, request *GetCoreHRDepartmentParentListReq, options ...MethodOptionFunc) (*GetCoreHRDepartmentParentListResp, *Response, error) + mockCoreHRGetCoreHREmployeeType func(ctx context.Context, request *GetCoreHREmployeeTypeReq, options ...MethodOptionFunc) (*GetCoreHREmployeeTypeResp, *Response, error) + mockCoreHRGetCoreHREmployeeTypeList func(ctx context.Context, request *GetCoreHREmployeeTypeListReq, options ...MethodOptionFunc) (*GetCoreHREmployeeTypeListResp, *Response, error) + mockCoreHRGetCoreHRJob func(ctx context.Context, request *GetCoreHRJobReq, options ...MethodOptionFunc) (*GetCoreHRJobResp, *Response, error) + mockCoreHRGetCoreHRJobData func(ctx context.Context, request *GetCoreHRJobDataReq, options ...MethodOptionFunc) (*GetCoreHRJobDataResp, *Response, error) + mockCoreHRGetCoreHRJobDataList func(ctx context.Context, request *GetCoreHRJobDataListReq, options ...MethodOptionFunc) (*GetCoreHRJobDataListResp, *Response, error) + mockCoreHRGetCoreHRJobFamily func(ctx context.Context, request *GetCoreHRJobFamilyReq, options ...MethodOptionFunc) (*GetCoreHRJobFamilyResp, *Response, error) + mockCoreHRGetCoreHRJobFamilyList func(ctx context.Context, request *GetCoreHRJobFamilyListReq, options ...MethodOptionFunc) (*GetCoreHRJobFamilyListResp, *Response, error) + mockCoreHRGetCoreHRJobLevel func(ctx context.Context, request *GetCoreHRJobLevelReq, options ...MethodOptionFunc) (*GetCoreHRJobLevelResp, *Response, error) + mockCoreHRGetCoreHRJobLevelList func(ctx context.Context, request *GetCoreHRJobLevelListReq, options ...MethodOptionFunc) (*GetCoreHRJobLevelListResp, *Response, error) + mockCoreHRGetCoreHRJobList func(ctx context.Context, request *GetCoreHRJobListReq, options ...MethodOptionFunc) (*GetCoreHRJobListResp, *Response, error) + mockCoreHRGetCoreHRJobListV2 func(ctx context.Context, request *GetCoreHRJobListV2Req, options ...MethodOptionFunc) (*GetCoreHRJobListV2Resp, *Response, error) + mockCoreHRGetCoreHRJobV2 func(ctx context.Context, request *GetCoreHRJobV2Req, options ...MethodOptionFunc) (*GetCoreHRJobV2Resp, *Response, error) + mockCoreHRGetCoreHRLeaveBalanceList func(ctx context.Context, request *GetCoreHRLeaveBalanceListReq, options ...MethodOptionFunc) (*GetCoreHRLeaveBalanceListResp, *Response, error) + mockCoreHRGetCoreHRLeaveRequestHistoryList func(ctx context.Context, request *GetCoreHRLeaveRequestHistoryListReq, options ...MethodOptionFunc) (*GetCoreHRLeaveRequestHistoryListResp, *Response, error) + mockCoreHRGetCoreHRLeaveTypeList func(ctx context.Context, request *GetCoreHRLeaveTypeListReq, options ...MethodOptionFunc) (*GetCoreHRLeaveTypeListResp, *Response, error) + mockCoreHRGetCoreHRLocation func(ctx context.Context, request *GetCoreHRLocationReq, options ...MethodOptionFunc) (*GetCoreHRLocationResp, *Response, error) + mockCoreHRGetCoreHRLocationList func(ctx context.Context, request *GetCoreHRLocationListReq, options ...MethodOptionFunc) (*GetCoreHRLocationListResp, *Response, error) + mockCoreHRGetCoreHRNationalIDType func(ctx context.Context, request *GetCoreHRNationalIDTypeReq, options ...MethodOptionFunc) (*GetCoreHRNationalIDTypeResp, *Response, error) + mockCoreHRGetCoreHRNationalIDTypeList func(ctx context.Context, request *GetCoreHRNationalIDTypeListReq, options ...MethodOptionFunc) (*GetCoreHRNationalIDTypeListResp, *Response, error) + mockCoreHRGetCoreHROffboardingList func(ctx context.Context, request *GetCoreHROffboardingListReq, options ...MethodOptionFunc) (*GetCoreHROffboardingListResp, *Response, error) + mockCoreHRGetCoreHRPerson func(ctx context.Context, request *GetCoreHRPersonReq, options ...MethodOptionFunc) (*GetCoreHRPersonResp, *Response, error) + mockCoreHRGetCoreHRPreHire func(ctx context.Context, request *GetCoreHRPreHireReq, options ...MethodOptionFunc) (*GetCoreHRPreHireResp, *Response, error) + mockCoreHRGetCoreHRPreHireList func(ctx context.Context, request *GetCoreHRPreHireListReq, options ...MethodOptionFunc) (*GetCoreHRPreHireListResp, *Response, error) + mockCoreHRGetCoreHRProcess func(ctx context.Context, request *GetCoreHRProcessReq, options ...MethodOptionFunc) (*GetCoreHRProcessResp, *Response, error) + mockCoreHRGetCoreHRProcessFormVariableData func(ctx context.Context, request *GetCoreHRProcessFormVariableDataReq, options ...MethodOptionFunc) (*GetCoreHRProcessFormVariableDataResp, *Response, error) + mockCoreHRGetCoreHRProcessList func(ctx context.Context, request *GetCoreHRProcessListReq, options ...MethodOptionFunc) (*GetCoreHRProcessListResp, *Response, error) + mockCoreHRGetCoreHRSecurityGroupBp func(ctx context.Context, request *GetCoreHRSecurityGroupBpReq, options ...MethodOptionFunc) (*GetCoreHRSecurityGroupBpResp, *Response, error) + mockCoreHRGetCoreHRSecurityGroupList func(ctx context.Context, request *GetCoreHRSecurityGroupListReq, options ...MethodOptionFunc) (*GetCoreHRSecurityGroupListResp, *Response, error) + mockCoreHRGetCoreHRSubdivision func(ctx context.Context, request *GetCoreHRSubdivisionReq, options ...MethodOptionFunc) (*GetCoreHRSubdivisionResp, *Response, error) + mockCoreHRGetCoreHRSubdivisionList func(ctx context.Context, request *GetCoreHRSubdivisionListReq, options ...MethodOptionFunc) (*GetCoreHRSubdivisionListResp, *Response, error) + mockCoreHRGetCoreHRSubregion func(ctx context.Context, request *GetCoreHRSubregionReq, options ...MethodOptionFunc) (*GetCoreHRSubregionResp, *Response, error) + mockCoreHRGetCoreHRSubregionList func(ctx context.Context, request *GetCoreHRSubregionListReq, options ...MethodOptionFunc) (*GetCoreHRSubregionListResp, *Response, error) + mockCoreHRGetCoreHRTransferReasonList func(ctx context.Context, request *GetCoreHRTransferReasonListReq, options ...MethodOptionFunc) (*GetCoreHRTransferReasonListResp, *Response, error) + mockCoreHRGetCoreHRTransferTypeList func(ctx context.Context, request *GetCoreHRTransferTypeListReq, options ...MethodOptionFunc) (*GetCoreHRTransferTypeListResp, *Response, error) + mockCoreHRGetCoreHRWorkingHoursType func(ctx context.Context, request *GetCoreHRWorkingHoursTypeReq, options ...MethodOptionFunc) (*GetCoreHRWorkingHoursTypeResp, *Response, error) + mockCoreHRGetCoreHRWorkingHoursTypeList func(ctx context.Context, request *GetCoreHRWorkingHoursTypeListReq, options ...MethodOptionFunc) (*GetCoreHRWorkingHoursTypeListResp, *Response, error) + mockCoreHRGetCoreHrbpByDepartment func(ctx context.Context, request *GetCoreHrbpByDepartmentReq, options ...MethodOptionFunc) (*GetCoreHrbpByDepartmentResp, *Response, error) + mockCoreHRGetCoreHrbpList func(ctx context.Context, request *GetCoreHrbpListReq, options ...MethodOptionFunc) (*GetCoreHrbpListResp, *Response, error) + mockCoreHRMatchCoreHRCompensationStandard func(ctx context.Context, request *MatchCoreHRCompensationStandardReq, options ...MethodOptionFunc) (*MatchCoreHRCompensationStandardResp, *Response, error) + mockCoreHRQueryCoreHRCompensationArchive func(ctx context.Context, request *QueryCoreHRCompensationArchiveReq, options ...MethodOptionFunc) (*QueryCoreHRCompensationArchiveResp, *Response, error) + mockCoreHRQueryCoreHRDepartmentTimeline func(ctx context.Context, request *QueryCoreHRDepartmentTimelineReq, options ...MethodOptionFunc) (*QueryCoreHRDepartmentTimelineResp, *Response, error) + mockCoreHRQueryCoreHRJobData func(ctx context.Context, request *QueryCoreHRJobDataReq, options ...MethodOptionFunc) (*QueryCoreHRJobDataResp, *Response, error) + mockCoreHRQueryCoreHRJobGrade func(ctx context.Context, request *QueryCoreHRJobGradeReq, options ...MethodOptionFunc) (*QueryCoreHRJobGradeResp, *Response, error) + mockCoreHRSearchCoreHRAssignedUser func(ctx context.Context, request *SearchCoreHRAssignedUserReq, options ...MethodOptionFunc) (*SearchCoreHRAssignedUserResp, *Response, error) + mockCoreHRSearchCoreHRBank func(ctx context.Context, request *SearchCoreHRBankReq, options ...MethodOptionFunc) (*SearchCoreHRBankResp, *Response, error) + mockCoreHRSearchCoreHRBankBranch func(ctx context.Context, request *SearchCoreHRBankBranchReq, options ...MethodOptionFunc) (*SearchCoreHRBankBranchResp, *Response, error) + mockCoreHRSearchCoreHRCity func(ctx context.Context, request *SearchCoreHRCityReq, options ...MethodOptionFunc) (*SearchCoreHRCityResp, *Response, error) + mockCoreHRSearchCoreHRContract func(ctx context.Context, request *SearchCoreHRContractReq, options ...MethodOptionFunc) (*SearchCoreHRContractResp, *Response, error) + mockCoreHRSearchCoreHRCostCenter func(ctx context.Context, request *SearchCoreHRCostCenterReq, options ...MethodOptionFunc) (*SearchCoreHRCostCenterResp, *Response, error) + mockCoreHRSearchCoreHRCountryRegion func(ctx context.Context, request *SearchCoreHRCountryRegionReq, options ...MethodOptionFunc) (*SearchCoreHRCountryRegionResp, *Response, error) + mockCoreHRSearchCoreHRCountryRegionSubdivision func(ctx context.Context, request *SearchCoreHRCountryRegionSubdivisionReq, options ...MethodOptionFunc) (*SearchCoreHRCountryRegionSubdivisionResp, *Response, error) + mockCoreHRSearchCoreHRCurrency func(ctx context.Context, request *SearchCoreHRCurrencyReq, options ...MethodOptionFunc) (*SearchCoreHRCurrencyResp, *Response, error) + mockCoreHRSearchCoreHRDepartment func(ctx context.Context, request *SearchCoreHRDepartmentReq, options ...MethodOptionFunc) (*SearchCoreHRDepartmentResp, *Response, error) + mockCoreHRSearchCoreHRDistrict func(ctx context.Context, request *SearchCoreHRDistrictReq, options ...MethodOptionFunc) (*SearchCoreHRDistrictResp, *Response, error) + mockCoreHRSearchCoreHREmployee func(ctx context.Context, request *SearchCoreHREmployeeReq, options ...MethodOptionFunc) (*SearchCoreHREmployeeResp, *Response, error) + mockCoreHRSearchCoreHRJobChange func(ctx context.Context, request *SearchCoreHRJobChangeReq, options ...MethodOptionFunc) (*SearchCoreHRJobChangeResp, *Response, error) + mockCoreHRSearchCoreHRNationality func(ctx context.Context, request *SearchCoreHRNationalityReq, options ...MethodOptionFunc) (*SearchCoreHRNationalityResp, *Response, error) + mockCoreHRSearchCoreHROffboarding func(ctx context.Context, request *SearchCoreHROffboardingReq, options ...MethodOptionFunc) (*SearchCoreHROffboardingResp, *Response, error) + mockCoreHRSearchCoreHRPreHire func(ctx context.Context, request *SearchCoreHRPreHireReq, options ...MethodOptionFunc) (*SearchCoreHRPreHireResp, *Response, error) + mockCoreHRSearchCoreHRProbation func(ctx context.Context, request *SearchCoreHRProbationReq, options ...MethodOptionFunc) (*SearchCoreHRProbationResp, *Response, error) + mockCoreHRUpdateCoreHRCompany func(ctx context.Context, request *UpdateCoreHRCompanyReq, options ...MethodOptionFunc) (*UpdateCoreHRCompanyResp, *Response, error) + mockCoreHRUpdateCoreHRContract func(ctx context.Context, request *UpdateCoreHRContractReq, options ...MethodOptionFunc) (*UpdateCoreHRContractResp, *Response, error) + mockCoreHRUpdateCoreHRCostCenterVersion func(ctx context.Context, request *UpdateCoreHRCostCenterVersionReq, options ...MethodOptionFunc) (*UpdateCoreHRCostCenterVersionResp, *Response, error) + mockCoreHRUpdateCoreHRDepartment func(ctx context.Context, request *UpdateCoreHRDepartmentReq, options ...MethodOptionFunc) (*UpdateCoreHRDepartmentResp, *Response, error) + mockCoreHRUpdateCoreHREmployeeType func(ctx context.Context, request *UpdateCoreHREmployeeTypeReq, options ...MethodOptionFunc) (*UpdateCoreHREmployeeTypeResp, *Response, error) + mockCoreHRUpdateCoreHREmployment func(ctx context.Context, request *UpdateCoreHREmploymentReq, options ...MethodOptionFunc) (*UpdateCoreHREmploymentResp, *Response, error) + mockCoreHRUpdateCoreHRJob func(ctx context.Context, request *UpdateCoreHRJobReq, options ...MethodOptionFunc) (*UpdateCoreHRJobResp, *Response, error) + mockCoreHRUpdateCoreHRJobData func(ctx context.Context, request *UpdateCoreHRJobDataReq, options ...MethodOptionFunc) (*UpdateCoreHRJobDataResp, *Response, error) + mockCoreHRUpdateCoreHRJobFamily func(ctx context.Context, request *UpdateCoreHRJobFamilyReq, options ...MethodOptionFunc) (*UpdateCoreHRJobFamilyResp, *Response, error) + mockCoreHRUpdateCoreHRJobLevel func(ctx context.Context, request *UpdateCoreHRJobLevelReq, options ...MethodOptionFunc) (*UpdateCoreHRJobLevelResp, *Response, error) + mockCoreHRUpdateCoreHRNationalIDType func(ctx context.Context, request *UpdateCoreHRNationalIDTypeReq, options ...MethodOptionFunc) (*UpdateCoreHRNationalIDTypeResp, *Response, error) + mockCoreHRUpdateCoreHRPerson func(ctx context.Context, request *UpdateCoreHRPersonReq, options ...MethodOptionFunc) (*UpdateCoreHRPersonResp, *Response, error) + mockCoreHRUpdateCoreHRPreHire func(ctx context.Context, request *UpdateCoreHRPreHireReq, options ...MethodOptionFunc) (*UpdateCoreHRPreHireResp, *Response, error) + mockCoreHRUpdateCoreHRProbationAssessment func(ctx context.Context, request *UpdateCoreHRProbationAssessmentReq, options ...MethodOptionFunc) (*UpdateCoreHRProbationAssessmentResp, *Response, error) + mockCoreHRUpdateCoreHRWorkingHoursType func(ctx context.Context, request *UpdateCoreHRWorkingHoursTypeReq, options ...MethodOptionFunc) (*UpdateCoreHRWorkingHoursTypeResp, *Response, error) + mockCoreHRUploadCoreHRPersonFile func(ctx context.Context, request *UploadCoreHRPersonFileReq, options ...MethodOptionFunc) (*UploadCoreHRPersonFileResp, *Response, error) + mockDriveAddSheetDimensionRange func(ctx context.Context, request *AddSheetDimensionRangeReq, options ...MethodOptionFunc) (*AddSheetDimensionRangeResp, *Response, error) + mockDriveAddWikiSpaceMember func(ctx context.Context, request *AddWikiSpaceMemberReq, options ...MethodOptionFunc) (*AddWikiSpaceMemberResp, *Response, error) + mockDriveAppendSheetValue func(ctx context.Context, request *AppendSheetValueReq, options ...MethodOptionFunc) (*AppendSheetValueResp, *Response, error) + mockDriveBatchDeleteDocxBlock func(ctx context.Context, request *BatchDeleteDocxBlockReq, options ...MethodOptionFunc) (*BatchDeleteDocxBlockResp, *Response, error) + mockDriveBatchGetDriveComment func(ctx context.Context, request *BatchGetDriveCommentReq, options ...MethodOptionFunc) (*BatchGetDriveCommentResp, *Response, error) + mockDriveBatchGetDriveMediaTmpDownloadURL func(ctx context.Context, request *BatchGetDriveMediaTmpDownloadURLReq, options ...MethodOptionFunc) (*BatchGetDriveMediaTmpDownloadURLResp, *Response, error) + mockDriveBatchGetSheetValue func(ctx context.Context, request *BatchGetSheetValueReq, options ...MethodOptionFunc) (*BatchGetSheetValueResp, *Response, error) + mockDriveBatchSetSheetStyle func(ctx context.Context, request *BatchSetSheetStyleReq, options ...MethodOptionFunc) (*BatchSetSheetStyleResp, *Response, error) + mockDriveBatchSetSheetValue func(ctx context.Context, request *BatchSetSheetValueReq, options ...MethodOptionFunc) (*BatchSetSheetValueResp, *Response, error) + mockDriveBatchUpdateSheet func(ctx context.Context, request *BatchUpdateSheetReq, options ...MethodOptionFunc) (*BatchUpdateSheetResp, *Response, error) + mockDriveCheckDriveMemberPermission func(ctx context.Context, request *CheckDriveMemberPermissionReq, options ...MethodOptionFunc) (*CheckDriveMemberPermissionResp, *Response, error) + mockDriveCheckDriveMemberPermissionOld func(ctx context.Context, request *CheckDriveMemberPermissionOldReq, options ...MethodOptionFunc) (*CheckDriveMemberPermissionOldResp, *Response, error) + mockDriveCopyDriveFile func(ctx context.Context, request *CopyDriveFileReq, options ...MethodOptionFunc) (*CopyDriveFileResp, *Response, error) + mockDriveCopyWikiNode func(ctx context.Context, request *CopyWikiNodeReq, options ...MethodOptionFunc) (*CopyWikiNodeResp, *Response, error) + mockDriveCreateDocx func(ctx context.Context, request *CreateDocxReq, options ...MethodOptionFunc) (*CreateDocxResp, *Response, error) + mockDriveCreateDocxBlock func(ctx context.Context, request *CreateDocxBlockReq, options ...MethodOptionFunc) (*CreateDocxBlockResp, *Response, error) + mockDriveCreateDriveComment func(ctx context.Context, request *CreateDriveCommentReq, options ...MethodOptionFunc) (*CreateDriveCommentResp, *Response, error) + mockDriveCreateDriveDoc func(ctx context.Context, request *CreateDriveDocReq, options ...MethodOptionFunc) (*CreateDriveDocResp, *Response, error) + mockDriveCreateDriveExportTask func(ctx context.Context, request *CreateDriveExportTaskReq, options ...MethodOptionFunc) (*CreateDriveExportTaskResp, *Response, error) + mockDriveCreateDriveFile func(ctx context.Context, request *CreateDriveFileReq, options ...MethodOptionFunc) (*CreateDriveFileResp, *Response, error) + mockDriveCreateDriveFileShortcut func(ctx context.Context, request *CreateDriveFileShortcutReq, options ...MethodOptionFunc) (*CreateDriveFileShortcutResp, *Response, error) + mockDriveCreateDriveFileSubscription func(ctx context.Context, request *CreateDriveFileSubscriptionReq, options ...MethodOptionFunc) (*CreateDriveFileSubscriptionResp, *Response, error) + mockDriveCreateDriveFileVersion func(ctx context.Context, request *CreateDriveFileVersionReq, options ...MethodOptionFunc) (*CreateDriveFileVersionResp, *Response, error) + mockDriveCreateDriveFolder func(ctx context.Context, request *CreateDriveFolderReq, options ...MethodOptionFunc) (*CreateDriveFolderResp, *Response, error) + mockDriveCreateDriveImportTask func(ctx context.Context, request *CreateDriveImportTaskReq, options ...MethodOptionFunc) (*CreateDriveImportTaskResp, *Response, error) + mockDriveCreateDriveMemberPermission func(ctx context.Context, request *CreateDriveMemberPermissionReq, options ...MethodOptionFunc) (*CreateDriveMemberPermissionResp, *Response, error) + mockDriveCreateDriveMemberPermissionOld func(ctx context.Context, request *CreateDriveMemberPermissionOldReq, options ...MethodOptionFunc) (*CreateDriveMemberPermissionOldResp, *Response, error) + mockDriveCreateDrivePermissionPublicPassword func(ctx context.Context, request *CreateDrivePermissionPublicPasswordReq, options ...MethodOptionFunc) (*CreateDrivePermissionPublicPasswordResp, *Response, error) + mockDriveCreateSheetConditionFormat func(ctx context.Context, request *CreateSheetConditionFormatReq, options ...MethodOptionFunc) (*CreateSheetConditionFormatResp, *Response, error) + mockDriveCreateSheetDataValidationDropdown func(ctx context.Context, request *CreateSheetDataValidationDropdownReq, options ...MethodOptionFunc) (*CreateSheetDataValidationDropdownResp, *Response, error) + mockDriveCreateSheetFilter func(ctx context.Context, request *CreateSheetFilterReq, options ...MethodOptionFunc) (*CreateSheetFilterResp, *Response, error) + mockDriveCreateSheetFilterView func(ctx context.Context, request *CreateSheetFilterViewReq, options ...MethodOptionFunc) (*CreateSheetFilterViewResp, *Response, error) + mockDriveCreateSheetFilterViewCondition func(ctx context.Context, request *CreateSheetFilterViewConditionReq, options ...MethodOptionFunc) (*CreateSheetFilterViewConditionResp, *Response, error) + mockDriveCreateSheetFloatImage func(ctx context.Context, request *CreateSheetFloatImageReq, options ...MethodOptionFunc) (*CreateSheetFloatImageResp, *Response, error) + mockDriveCreateSheetProtectedDimension func(ctx context.Context, request *CreateSheetProtectedDimensionReq, options ...MethodOptionFunc) (*CreateSheetProtectedDimensionResp, *Response, error) + mockDriveCreateSpreadsheet func(ctx context.Context, request *CreateSpreadsheetReq, options ...MethodOptionFunc) (*CreateSpreadsheetResp, *Response, error) + mockDriveCreateWikiNode func(ctx context.Context, request *CreateWikiNodeReq, options ...MethodOptionFunc) (*CreateWikiNodeResp, *Response, error) + mockDriveCreateWikiSpace func(ctx context.Context, request *CreateWikiSpaceReq, options ...MethodOptionFunc) (*CreateWikiSpaceResp, *Response, error) + mockDriveDeleteDriveComment func(ctx context.Context, request *DeleteDriveCommentReq, options ...MethodOptionFunc) (*DeleteDriveCommentResp, *Response, error) + mockDriveDeleteDriveFile func(ctx context.Context, request *DeleteDriveFileReq, options ...MethodOptionFunc) (*DeleteDriveFileResp, *Response, error) + mockDriveDeleteDriveFileVersion func(ctx context.Context, request *DeleteDriveFileVersionReq, options ...MethodOptionFunc) (*DeleteDriveFileVersionResp, *Response, error) + mockDriveDeleteDriveMemberPermission func(ctx context.Context, request *DeleteDriveMemberPermissionReq, options ...MethodOptionFunc) (*DeleteDriveMemberPermissionResp, *Response, error) + mockDriveDeleteDriveMemberPermissionOld func(ctx context.Context, request *DeleteDriveMemberPermissionOldReq, options ...MethodOptionFunc) (*DeleteDriveMemberPermissionOldResp, *Response, error) + mockDriveDeleteDrivePermissionPublicPassword func(ctx context.Context, request *DeleteDrivePermissionPublicPasswordReq, options ...MethodOptionFunc) (*DeleteDrivePermissionPublicPasswordResp, *Response, error) + mockDriveDeleteDriveSheetFile func(ctx context.Context, request *DeleteDriveSheetFileReq, options ...MethodOptionFunc) (*DeleteDriveSheetFileResp, *Response, error) + mockDriveDeleteSheetConditionFormat func(ctx context.Context, request *DeleteSheetConditionFormatReq, options ...MethodOptionFunc) (*DeleteSheetConditionFormatResp, *Response, error) + mockDriveDeleteSheetDataValidationDropdown func(ctx context.Context, request *DeleteSheetDataValidationDropdownReq, options ...MethodOptionFunc) (*DeleteSheetDataValidationDropdownResp, *Response, error) + mockDriveDeleteSheetDimensionRange func(ctx context.Context, request *DeleteSheetDimensionRangeReq, options ...MethodOptionFunc) (*DeleteSheetDimensionRangeResp, *Response, error) + mockDriveDeleteSheetFilter func(ctx context.Context, request *DeleteSheetFilterReq, options ...MethodOptionFunc) (*DeleteSheetFilterResp, *Response, error) + mockDriveDeleteSheetFilterView func(ctx context.Context, request *DeleteSheetFilterViewReq, options ...MethodOptionFunc) (*DeleteSheetFilterViewResp, *Response, error) + mockDriveDeleteSheetFilterViewCondition func(ctx context.Context, request *DeleteSheetFilterViewConditionReq, options ...MethodOptionFunc) (*DeleteSheetFilterViewConditionResp, *Response, error) + mockDriveDeleteSheetFloatImage func(ctx context.Context, request *DeleteSheetFloatImageReq, options ...MethodOptionFunc) (*DeleteSheetFloatImageResp, *Response, error) + mockDriveDeleteSheetProtectedDimension func(ctx context.Context, request *DeleteSheetProtectedDimensionReq, options ...MethodOptionFunc) (*DeleteSheetProtectedDimensionResp, *Response, error) + mockDriveDeleteWikiSpaceMember func(ctx context.Context, request *DeleteWikiSpaceMemberReq, options ...MethodOptionFunc) (*DeleteWikiSpaceMemberResp, *Response, error) + mockDriveDownloadDriveExportTask func(ctx context.Context, request *DownloadDriveExportTaskReq, options ...MethodOptionFunc) (*DownloadDriveExportTaskResp, *Response, error) + mockDriveDownloadDriveFile func(ctx context.Context, request *DownloadDriveFileReq, options ...MethodOptionFunc) (*DownloadDriveFileResp, *Response, error) + mockDriveDownloadDriveMedia func(ctx context.Context, request *DownloadDriveMediaReq, options ...MethodOptionFunc) (*DownloadDriveMediaResp, *Response, error) + mockDriveFindSheet func(ctx context.Context, request *FindSheetReq, options ...MethodOptionFunc) (*FindSheetResp, *Response, error) + mockDriveFinishUploadDriveFile func(ctx context.Context, request *FinishUploadDriveFileReq, options ...MethodOptionFunc) (*FinishUploadDriveFileResp, *Response, error) + mockDriveFinishUploadDriveMedia func(ctx context.Context, request *FinishUploadDriveMediaReq, options ...MethodOptionFunc) (*FinishUploadDriveMediaResp, *Response, error) + mockDriveGetDocxBlock func(ctx context.Context, request *GetDocxBlockReq, options ...MethodOptionFunc) (*GetDocxBlockResp, *Response, error) + mockDriveGetDocxBlockListOfBlock func(ctx context.Context, request *GetDocxBlockListOfBlockReq, options ...MethodOptionFunc) (*GetDocxBlockListOfBlockResp, *Response, error) + mockDriveGetDocxBlockListOfDocument func(ctx context.Context, request *GetDocxBlockListOfDocumentReq, options ...MethodOptionFunc) (*GetDocxBlockListOfDocumentResp, *Response, error) + mockDriveGetDocxDocument func(ctx context.Context, request *GetDocxDocumentReq, options ...MethodOptionFunc) (*GetDocxDocumentResp, *Response, error) + mockDriveGetDocxDocumentRawContent func(ctx context.Context, request *GetDocxDocumentRawContentReq, options ...MethodOptionFunc) (*GetDocxDocumentRawContentResp, *Response, error) + mockDriveGetDriveComment func(ctx context.Context, request *GetDriveCommentReq, options ...MethodOptionFunc) (*GetDriveCommentResp, *Response, error) + mockDriveGetDriveCommentList func(ctx context.Context, request *GetDriveCommentListReq, options ...MethodOptionFunc) (*GetDriveCommentListResp, *Response, error) + mockDriveGetDriveCommentReplyList func(ctx context.Context, request *GetDriveCommentReplyListReq, options ...MethodOptionFunc) (*GetDriveCommentReplyListResp, *Response, error) + mockDriveGetDriveDocContent func(ctx context.Context, request *GetDriveDocContentReq, options ...MethodOptionFunc) (*GetDriveDocContentResp, *Response, error) + mockDriveGetDriveDocMeta func(ctx context.Context, request *GetDriveDocMetaReq, options ...MethodOptionFunc) (*GetDriveDocMetaResp, *Response, error) + mockDriveGetDriveDocRawContent func(ctx context.Context, request *GetDriveDocRawContentReq, options ...MethodOptionFunc) (*GetDriveDocRawContentResp, *Response, error) + mockDriveGetDriveExportTask func(ctx context.Context, request *GetDriveExportTaskReq, options ...MethodOptionFunc) (*GetDriveExportTaskResp, *Response, error) + mockDriveGetDriveFileList func(ctx context.Context, request *GetDriveFileListReq, options ...MethodOptionFunc) (*GetDriveFileListResp, *Response, error) + mockDriveGetDriveFileMeta func(ctx context.Context, request *GetDriveFileMetaReq, options ...MethodOptionFunc) (*GetDriveFileMetaResp, *Response, error) + mockDriveGetDriveFileStatistics func(ctx context.Context, request *GetDriveFileStatisticsReq, options ...MethodOptionFunc) (*GetDriveFileStatisticsResp, *Response, error) + mockDriveGetDriveFileSubscription func(ctx context.Context, request *GetDriveFileSubscriptionReq, options ...MethodOptionFunc) (*GetDriveFileSubscriptionResp, *Response, error) + mockDriveGetDriveFileTask func(ctx context.Context, request *GetDriveFileTaskReq, options ...MethodOptionFunc) (*GetDriveFileTaskResp, *Response, error) + mockDriveGetDriveFileVersion func(ctx context.Context, request *GetDriveFileVersionReq, options ...MethodOptionFunc) (*GetDriveFileVersionResp, *Response, error) + mockDriveGetDriveFileVersionList func(ctx context.Context, request *GetDriveFileVersionListReq, options ...MethodOptionFunc) (*GetDriveFileVersionListResp, *Response, error) + mockDriveGetDriveFileViewRecordList func(ctx context.Context, request *GetDriveFileViewRecordListReq, options ...MethodOptionFunc) (*GetDriveFileViewRecordListResp, *Response, error) + mockDriveGetDriveFolderChildren func(ctx context.Context, request *GetDriveFolderChildrenReq, options ...MethodOptionFunc) (*GetDriveFolderChildrenResp, *Response, error) + mockDriveGetDriveFolderMeta func(ctx context.Context, request *GetDriveFolderMetaReq, options ...MethodOptionFunc) (*GetDriveFolderMetaResp, *Response, error) + mockDriveGetDriveImportTask func(ctx context.Context, request *GetDriveImportTaskReq, options ...MethodOptionFunc) (*GetDriveImportTaskResp, *Response, error) + mockDriveGetDriveMemberPermissionList func(ctx context.Context, request *GetDriveMemberPermissionListReq, options ...MethodOptionFunc) (*GetDriveMemberPermissionListResp, *Response, error) + mockDriveGetDriveMemberPermissionListOld func(ctx context.Context, request *GetDriveMemberPermissionListOldReq, options ...MethodOptionFunc) (*GetDriveMemberPermissionListOldResp, *Response, error) + mockDriveGetDrivePublicPermission func(ctx context.Context, request *GetDrivePublicPermissionReq, options ...MethodOptionFunc) (*GetDrivePublicPermissionResp, *Response, error) + mockDriveGetDrivePublicPermissionOld func(ctx context.Context, request *GetDrivePublicPermissionOldReq, options ...MethodOptionFunc) (*GetDrivePublicPermissionOldResp, *Response, error) + mockDriveGetDrivePublicPermissionV2 func(ctx context.Context, request *GetDrivePublicPermissionV2Req, options ...MethodOptionFunc) (*GetDrivePublicPermissionV2Resp, *Response, error) + mockDriveGetDriveRootFolderMeta func(ctx context.Context, request *GetDriveRootFolderMetaReq, options ...MethodOptionFunc) (*GetDriveRootFolderMetaResp, *Response, error) + mockDriveGetSheet func(ctx context.Context, request *GetSheetReq, options ...MethodOptionFunc) (*GetSheetResp, *Response, error) + mockDriveGetSheetConditionFormat func(ctx context.Context, request *GetSheetConditionFormatReq, options ...MethodOptionFunc) (*GetSheetConditionFormatResp, *Response, error) + mockDriveGetSheetDataValidationDropdown func(ctx context.Context, request *GetSheetDataValidationDropdownReq, options ...MethodOptionFunc) (*GetSheetDataValidationDropdownResp, *Response, error) + mockDriveGetDriveSheetDefaultImportResult func(ctx context.Context, request *GetDriveSheetDefaultImportResultReq, options ...MethodOptionFunc) (*GetDriveSheetDefaultImportResultResp, *Response, error) + mockDriveGetSheetFilter func(ctx context.Context, request *GetSheetFilterReq, options ...MethodOptionFunc) (*GetSheetFilterResp, *Response, error) + mockDriveGetSheetFilterView func(ctx context.Context, request *GetSheetFilterViewReq, options ...MethodOptionFunc) (*GetSheetFilterViewResp, *Response, error) + mockDriveGetSheetFilterViewCondition func(ctx context.Context, request *GetSheetFilterViewConditionReq, options ...MethodOptionFunc) (*GetSheetFilterViewConditionResp, *Response, error) + mockDriveGetSheetFloatImage func(ctx context.Context, request *GetSheetFloatImageReq, options ...MethodOptionFunc) (*GetSheetFloatImageResp, *Response, error) + mockDriveGetSheetList func(ctx context.Context, request *GetSheetListReq, options ...MethodOptionFunc) (*GetSheetListResp, *Response, error) + mockDriveGetSheetMeta func(ctx context.Context, request *GetSheetMetaReq, options ...MethodOptionFunc) (*GetSheetMetaResp, *Response, error) + mockDriveGetSheetProtectedDimension func(ctx context.Context, request *GetSheetProtectedDimensionReq, options ...MethodOptionFunc) (*GetSheetProtectedDimensionResp, *Response, error) + mockDriveGetSheetValue func(ctx context.Context, request *GetSheetValueReq, options ...MethodOptionFunc) (*GetSheetValueResp, *Response, error) + mockDriveGetSpreadsheet func(ctx context.Context, request *GetSpreadsheetReq, options ...MethodOptionFunc) (*GetSpreadsheetResp, *Response, error) + mockDriveGetSubscribeDriveFile func(ctx context.Context, request *GetSubscribeDriveFileReq, options ...MethodOptionFunc) (*GetSubscribeDriveFileResp, *Response, error) + mockDriveGetWhiteboardNodeList func(ctx context.Context, request *GetWhiteboardNodeListReq, options ...MethodOptionFunc) (*GetWhiteboardNodeListResp, *Response, error) + mockDriveGetWikiNode func(ctx context.Context, request *GetWikiNodeReq, options ...MethodOptionFunc) (*GetWikiNodeResp, *Response, error) + mockDriveGetWikiNodeList func(ctx context.Context, request *GetWikiNodeListReq, options ...MethodOptionFunc) (*GetWikiNodeListResp, *Response, error) + mockDriveGetWikiSpace func(ctx context.Context, request *GetWikiSpaceReq, options ...MethodOptionFunc) (*GetWikiSpaceResp, *Response, error) + mockDriveGetWikiSpaceList func(ctx context.Context, request *GetWikiSpaceListReq, options ...MethodOptionFunc) (*GetWikiSpaceListResp, *Response, error) + mockDriveGetWikiTask func(ctx context.Context, request *GetWikiTaskReq, options ...MethodOptionFunc) (*GetWikiTaskResp, *Response, error) + mockDriveImportSheet func(ctx context.Context, request *ImportSheetReq, options ...MethodOptionFunc) (*ImportSheetResp, *Response, error) + mockDriveInsertSheetDimensionRange func(ctx context.Context, request *InsertSheetDimensionRangeReq, options ...MethodOptionFunc) (*InsertSheetDimensionRangeResp, *Response, error) + mockDriveMergeSheetCell func(ctx context.Context, request *MergeSheetCellReq, options ...MethodOptionFunc) (*MergeSheetCellResp, *Response, error) + mockDriveMoveDocsToWiki func(ctx context.Context, request *MoveDocsToWikiReq, options ...MethodOptionFunc) (*MoveDocsToWikiResp, *Response, error) + mockDriveMoveDriveFile func(ctx context.Context, request *MoveDriveFileReq, options ...MethodOptionFunc) (*MoveDriveFileResp, *Response, error) + mockDriveMoveSheetDimension func(ctx context.Context, request *MoveSheetDimensionReq, options ...MethodOptionFunc) (*MoveSheetDimensionResp, *Response, error) + mockDriveMoveWikiNode func(ctx context.Context, request *MoveWikiNodeReq, options ...MethodOptionFunc) (*MoveWikiNodeResp, *Response, error) + mockDrivePartUploadDriveFile func(ctx context.Context, request *PartUploadDriveFileReq, options ...MethodOptionFunc) (*PartUploadDriveFileResp, *Response, error) + mockDrivePartUploadDriveMedia func(ctx context.Context, request *PartUploadDriveMediaReq, options ...MethodOptionFunc) (*PartUploadDriveMediaResp, *Response, error) + mockDrivePrepareUploadDriveFile func(ctx context.Context, request *PrepareUploadDriveFileReq, options ...MethodOptionFunc) (*PrepareUploadDriveFileResp, *Response, error) + mockDrivePrepareUploadDriveMedia func(ctx context.Context, request *PrepareUploadDriveMediaReq, options ...MethodOptionFunc) (*PrepareUploadDriveMediaResp, *Response, error) + mockDrivePrependSheetValue func(ctx context.Context, request *PrependSheetValueReq, options ...MethodOptionFunc) (*PrependSheetValueResp, *Response, error) + mockDriveQuerySheetFilterView func(ctx context.Context, request *QuerySheetFilterViewReq, options ...MethodOptionFunc) (*QuerySheetFilterViewResp, *Response, error) + mockDriveQuerySheetFilterViewCondition func(ctx context.Context, request *QuerySheetFilterViewConditionReq, options ...MethodOptionFunc) (*QuerySheetFilterViewConditionResp, *Response, error) + mockDriveQuerySheetFloatImage func(ctx context.Context, request *QuerySheetFloatImageReq, options ...MethodOptionFunc) (*QuerySheetFloatImageResp, *Response, error) + mockDriveReplaceSheet func(ctx context.Context, request *ReplaceSheetReq, options ...MethodOptionFunc) (*ReplaceSheetResp, *Response, error) + mockDriveSearchDriveFile func(ctx context.Context, request *SearchDriveFileReq, options ...MethodOptionFunc) (*SearchDriveFileResp, *Response, error) + mockDriveSetSheetStyle func(ctx context.Context, request *SetSheetStyleReq, options ...MethodOptionFunc) (*SetSheetStyleResp, *Response, error) + mockDriveSetSheetValue func(ctx context.Context, request *SetSheetValueReq, options ...MethodOptionFunc) (*SetSheetValueResp, *Response, error) + mockDriveSetSheetValueImage func(ctx context.Context, request *SetSheetValueImageReq, options ...MethodOptionFunc) (*SetSheetValueImageResp, *Response, error) + mockDriveSubscribeDriveFile func(ctx context.Context, request *SubscribeDriveFileReq, options ...MethodOptionFunc) (*SubscribeDriveFileResp, *Response, error) + mockDriveTransferDriveMemberPermission func(ctx context.Context, request *TransferDriveMemberPermissionReq, options ...MethodOptionFunc) (*TransferDriveMemberPermissionResp, *Response, error) + mockDriveTransferDriveOwnerPermission func(ctx context.Context, request *TransferDriveOwnerPermissionReq, options ...MethodOptionFunc) (*TransferDriveOwnerPermissionResp, *Response, error) + mockDriveUnmergeSheetCell func(ctx context.Context, request *UnmergeSheetCellReq, options ...MethodOptionFunc) (*UnmergeSheetCellResp, *Response, error) + mockDriveUnsubscribeDriveFile func(ctx context.Context, request *UnsubscribeDriveFileReq, options ...MethodOptionFunc) (*UnsubscribeDriveFileResp, *Response, error) + mockDriveUpdateDocxBlock func(ctx context.Context, request *UpdateDocxBlockReq, options ...MethodOptionFunc) (*UpdateDocxBlockResp, *Response, error) + mockDriveUpdateDriveComment func(ctx context.Context, request *UpdateDriveCommentReq, options ...MethodOptionFunc) (*UpdateDriveCommentResp, *Response, error) + mockDriveUpdateDriveCommentPatch func(ctx context.Context, request *UpdateDriveCommentPatchReq, options ...MethodOptionFunc) (*UpdateDriveCommentPatchResp, *Response, error) + mockDriveUpdateDriveDocContent func(ctx context.Context, request *UpdateDriveDocContentReq, options ...MethodOptionFunc) (*UpdateDriveDocContentResp, *Response, error) + mockDriveUpdateDriveFileSubscription func(ctx context.Context, request *UpdateDriveFileSubscriptionReq, options ...MethodOptionFunc) (*UpdateDriveFileSubscriptionResp, *Response, error) + mockDriveUpdateDriveMemberPermission func(ctx context.Context, request *UpdateDriveMemberPermissionReq, options ...MethodOptionFunc) (*UpdateDriveMemberPermissionResp, *Response, error) + mockDriveUpdateDriveMemberPermissionOld func(ctx context.Context, request *UpdateDriveMemberPermissionOldReq, options ...MethodOptionFunc) (*UpdateDriveMemberPermissionOldResp, *Response, error) + mockDriveUpdateDrivePermissionPublicPassword func(ctx context.Context, request *UpdateDrivePermissionPublicPasswordReq, options ...MethodOptionFunc) (*UpdateDrivePermissionPublicPasswordResp, *Response, error) + mockDriveUpdateDrivePublicPermission func(ctx context.Context, request *UpdateDrivePublicPermissionReq, options ...MethodOptionFunc) (*UpdateDrivePublicPermissionResp, *Response, error) + mockDriveUpdateDrivePublicPermissionV2 func(ctx context.Context, request *UpdateDrivePublicPermissionV2Req, options ...MethodOptionFunc) (*UpdateDrivePublicPermissionV2Resp, *Response, error) + mockDriveUpdateSheetConditionFormat func(ctx context.Context, request *UpdateSheetConditionFormatReq, options ...MethodOptionFunc) (*UpdateSheetConditionFormatResp, *Response, error) + mockDriveUpdateSheetDataValidationDropdown func(ctx context.Context, request *UpdateSheetDataValidationDropdownReq, options ...MethodOptionFunc) (*UpdateSheetDataValidationDropdownResp, *Response, error) + mockDriveUpdateSheetDimensionRange func(ctx context.Context, request *UpdateSheetDimensionRangeReq, options ...MethodOptionFunc) (*UpdateSheetDimensionRangeResp, *Response, error) + mockDriveUpdateSheetFilter func(ctx context.Context, request *UpdateSheetFilterReq, options ...MethodOptionFunc) (*UpdateSheetFilterResp, *Response, error) + mockDriveUpdateSheetFilterView func(ctx context.Context, request *UpdateSheetFilterViewReq, options ...MethodOptionFunc) (*UpdateSheetFilterViewResp, *Response, error) + mockDriveUpdateSheetFilterViewCondition func(ctx context.Context, request *UpdateSheetFilterViewConditionReq, options ...MethodOptionFunc) (*UpdateSheetFilterViewConditionResp, *Response, error) + mockDriveUpdateSheetFloatImage func(ctx context.Context, request *UpdateSheetFloatImageReq, options ...MethodOptionFunc) (*UpdateSheetFloatImageResp, *Response, error) + mockDriveUpdateSheetProperty func(ctx context.Context, request *UpdateSheetPropertyReq, options ...MethodOptionFunc) (*UpdateSheetPropertyResp, *Response, error) + mockDriveUpdateSheetProtectedDimension func(ctx context.Context, request *UpdateSheetProtectedDimensionReq, options ...MethodOptionFunc) (*UpdateSheetProtectedDimensionResp, *Response, error) + mockDriveUpdateSpreadsheet func(ctx context.Context, request *UpdateSpreadsheetReq, options ...MethodOptionFunc) (*UpdateSpreadsheetResp, *Response, error) + mockDriveUpdateWikiNodeTitle func(ctx context.Context, request *UpdateWikiNodeTitleReq, options ...MethodOptionFunc) (*UpdateWikiNodeTitleResp, *Response, error) + mockDriveUpdateWikiSpaceSetting func(ctx context.Context, request *UpdateWikiSpaceSettingReq, options ...MethodOptionFunc) (*UpdateWikiSpaceSettingResp, *Response, error) + mockDriveUploadDriveFile func(ctx context.Context, request *UploadDriveFileReq, options ...MethodOptionFunc) (*UploadDriveFileResp, *Response, error) + mockDriveUploadDriveMedia func(ctx context.Context, request *UploadDriveMediaReq, options ...MethodOptionFunc) (*UploadDriveMediaResp, *Response, error) + mockEHRDownloadEHRAttachments func(ctx context.Context, request *DownloadEHRAttachmentsReq, options ...MethodOptionFunc) (*DownloadEHRAttachmentsResp, *Response, error) + mockEHRGetEHREmployeeList func(ctx context.Context, request *GetEHREmployeeListReq, options ...MethodOptionFunc) (*GetEHREmployeeListResp, *Response, error) + mockEventGetEventOutboundIpList func(ctx context.Context, request *GetEventOutboundIpListReq, options ...MethodOptionFunc) (*GetEventOutboundIpListResp, *Response, error) + mockFileDownloadFile func(ctx context.Context, request *DownloadFileReq, options ...MethodOptionFunc) (*DownloadFileResp, *Response, error) + mockFileDownloadImage func(ctx context.Context, request *DownloadImageReq, options ...MethodOptionFunc) (*DownloadImageResp, *Response, error) + mockFileUploadFile func(ctx context.Context, request *UploadFileReq, options ...MethodOptionFunc) (*UploadFileResp, *Response, error) + mockFileUploadImage func(ctx context.Context, request *UploadImageReq, options ...MethodOptionFunc) (*UploadImageResp, *Response, error) + mockHelpdeskAnswerHelpdeskTicketUserQuery func(ctx context.Context, request *AnswerHelpdeskTicketUserQueryReq, options ...MethodOptionFunc) (*AnswerHelpdeskTicketUserQueryResp, *Response, error) + mockHelpdeskCancelApproveHelpdeskNotification func(ctx context.Context, request *CancelApproveHelpdeskNotificationReq, options ...MethodOptionFunc) (*CancelApproveHelpdeskNotificationResp, *Response, error) + mockHelpdeskCancelSendHelpdeskNotification func(ctx context.Context, request *CancelSendHelpdeskNotificationReq, options ...MethodOptionFunc) (*CancelSendHelpdeskNotificationResp, *Response, error) + mockHelpdeskCreateHelpdeskAgentSchedule func(ctx context.Context, request *CreateHelpdeskAgentScheduleReq, options ...MethodOptionFunc) (*CreateHelpdeskAgentScheduleResp, *Response, error) + mockHelpdeskCreateHelpdeskAgentSkill func(ctx context.Context, request *CreateHelpdeskAgentSkillReq, options ...MethodOptionFunc) (*CreateHelpdeskAgentSkillResp, *Response, error) + mockHelpdeskCreateHelpdeskCategory func(ctx context.Context, request *CreateHelpdeskCategoryReq, options ...MethodOptionFunc) (*CreateHelpdeskCategoryResp, *Response, error) + mockHelpdeskCreateHelpdeskFAQ func(ctx context.Context, request *CreateHelpdeskFAQReq, options ...MethodOptionFunc) (*CreateHelpdeskFAQResp, *Response, error) + mockHelpdeskCreateHelpdeskNotification func(ctx context.Context, request *CreateHelpdeskNotificationReq, options ...MethodOptionFunc) (*CreateHelpdeskNotificationResp, *Response, error) + mockHelpdeskCreateHelpdeskTicketCustomizedField func(ctx context.Context, request *CreateHelpdeskTicketCustomizedFieldReq, options ...MethodOptionFunc) (*CreateHelpdeskTicketCustomizedFieldResp, *Response, error) + mockHelpdeskDeleteHelpdeskAgentSchedule func(ctx context.Context, request *DeleteHelpdeskAgentScheduleReq, options ...MethodOptionFunc) (*DeleteHelpdeskAgentScheduleResp, *Response, error) + mockHelpdeskDeleteHelpdeskAgentSkill func(ctx context.Context, request *DeleteHelpdeskAgentSkillReq, options ...MethodOptionFunc) (*DeleteHelpdeskAgentSkillResp, *Response, error) + mockHelpdeskDeleteHelpdeskCategory func(ctx context.Context, request *DeleteHelpdeskCategoryReq, options ...MethodOptionFunc) (*DeleteHelpdeskCategoryResp, *Response, error) + mockHelpdeskDeleteHelpdeskFAQ func(ctx context.Context, request *DeleteHelpdeskFAQReq, options ...MethodOptionFunc) (*DeleteHelpdeskFAQResp, *Response, error) + mockHelpdeskDeleteHelpdeskTicketCustomizedField func(ctx context.Context, request *DeleteHelpdeskTicketCustomizedFieldReq, options ...MethodOptionFunc) (*DeleteHelpdeskTicketCustomizedFieldResp, *Response, error) + mockHelpdeskDownloadHelpdeskTicketImage func(ctx context.Context, request *DownloadHelpdeskTicketImageReq, options ...MethodOptionFunc) (*DownloadHelpdeskTicketImageResp, *Response, error) + mockHelpdeskExecuteSendHelpdeskNotification func(ctx context.Context, request *ExecuteSendHelpdeskNotificationReq, options ...MethodOptionFunc) (*ExecuteSendHelpdeskNotificationResp, *Response, error) + mockHelpdeskGetHelpdeskAgentEmail func(ctx context.Context, request *GetHelpdeskAgentEmailReq, options ...MethodOptionFunc) (*GetHelpdeskAgentEmailResp, *Response, error) + mockHelpdeskGetHelpdeskAgentSchedule func(ctx context.Context, request *GetHelpdeskAgentScheduleReq, options ...MethodOptionFunc) (*GetHelpdeskAgentScheduleResp, *Response, error) + mockHelpdeskGetHelpdeskAgentScheduleList func(ctx context.Context, request *GetHelpdeskAgentScheduleListReq, options ...MethodOptionFunc) (*GetHelpdeskAgentScheduleListResp, *Response, error) + mockHelpdeskGetHelpdeskAgentSkill func(ctx context.Context, request *GetHelpdeskAgentSkillReq, options ...MethodOptionFunc) (*GetHelpdeskAgentSkillResp, *Response, error) + mockHelpdeskGetHelpdeskAgentSkillList func(ctx context.Context, request *GetHelpdeskAgentSkillListReq, options ...MethodOptionFunc) (*GetHelpdeskAgentSkillListResp, *Response, error) + mockHelpdeskGetHelpdeskAgentSkillRuleList func(ctx context.Context, request *GetHelpdeskAgentSkillRuleListReq, options ...MethodOptionFunc) (*GetHelpdeskAgentSkillRuleListResp, *Response, error) + mockHelpdeskGetHelpdeskCategory func(ctx context.Context, request *GetHelpdeskCategoryReq, options ...MethodOptionFunc) (*GetHelpdeskCategoryResp, *Response, error) + mockHelpdeskGetHelpdeskCategoryList func(ctx context.Context, request *GetHelpdeskCategoryListReq, options ...MethodOptionFunc) (*GetHelpdeskCategoryListResp, *Response, error) + mockHelpdeskGetHelpdeskFAQ func(ctx context.Context, request *GetHelpdeskFAQReq, options ...MethodOptionFunc) (*GetHelpdeskFAQResp, *Response, error) + mockHelpdeskGetHelpdeskFAQImage func(ctx context.Context, request *GetHelpdeskFAQImageReq, options ...MethodOptionFunc) (*GetHelpdeskFAQImageResp, *Response, error) + mockHelpdeskGetHelpdeskFAQList func(ctx context.Context, request *GetHelpdeskFAQListReq, options ...MethodOptionFunc) (*GetHelpdeskFAQListResp, *Response, error) + mockHelpdeskGetHelpdeskNotification func(ctx context.Context, request *GetHelpdeskNotificationReq, options ...MethodOptionFunc) (*GetHelpdeskNotificationResp, *Response, error) + mockHelpdeskGetHelpdeskTicket func(ctx context.Context, request *GetHelpdeskTicketReq, options ...MethodOptionFunc) (*GetHelpdeskTicketResp, *Response, error) + mockHelpdeskGetHelpdeskTicketCustomizedField func(ctx context.Context, request *GetHelpdeskTicketCustomizedFieldReq, options ...MethodOptionFunc) (*GetHelpdeskTicketCustomizedFieldResp, *Response, error) + mockHelpdeskGetHelpdeskTicketCustomizedFieldList func(ctx context.Context, request *GetHelpdeskTicketCustomizedFieldListReq, options ...MethodOptionFunc) (*GetHelpdeskTicketCustomizedFieldListResp, *Response, error) + mockHelpdeskGetHelpdeskTicketCustomizedFields func(ctx context.Context, request *GetHelpdeskTicketCustomizedFieldsReq, options ...MethodOptionFunc) (*GetHelpdeskTicketCustomizedFieldsResp, *Response, error) + mockHelpdeskGetHelpdeskTicketList func(ctx context.Context, request *GetHelpdeskTicketListReq, options ...MethodOptionFunc) (*GetHelpdeskTicketListResp, *Response, error) + mockHelpdeskGetHelpdeskTicketMessageList func(ctx context.Context, request *GetHelpdeskTicketMessageListReq, options ...MethodOptionFunc) (*GetHelpdeskTicketMessageListResp, *Response, error) + mockHelpdeskPreviewHelpdeskNotification func(ctx context.Context, request *PreviewHelpdeskNotificationReq, options ...MethodOptionFunc) (*PreviewHelpdeskNotificationResp, *Response, error) + mockHelpdeskSearchHelpdeskFAQ func(ctx context.Context, request *SearchHelpdeskFAQReq, options ...MethodOptionFunc) (*SearchHelpdeskFAQResp, *Response, error) + mockHelpdeskSendHelpdeskMessage func(ctx context.Context, request *SendHelpdeskMessageReq, options ...MethodOptionFunc) (*SendHelpdeskMessageResp, *Response, error) + mockHelpdeskSendHelpdeskTicketMessage func(ctx context.Context, request *SendHelpdeskTicketMessageReq, options ...MethodOptionFunc) (*SendHelpdeskTicketMessageResp, *Response, error) + mockHelpdeskStartHelpdeskService func(ctx context.Context, request *StartHelpdeskServiceReq, options ...MethodOptionFunc) (*StartHelpdeskServiceResp, *Response, error) + mockHelpdeskSubmitApproveHelpdeskNotification func(ctx context.Context, request *SubmitApproveHelpdeskNotificationReq, options ...MethodOptionFunc) (*SubmitApproveHelpdeskNotificationResp, *Response, error) + mockHelpdeskSubscribeHelpdeskEvent func(ctx context.Context, request *SubscribeHelpdeskEventReq, options ...MethodOptionFunc) (*SubscribeHelpdeskEventResp, *Response, error) + mockHelpdeskUnsubscribeHelpdeskEvent func(ctx context.Context, request *UnsubscribeHelpdeskEventReq, options ...MethodOptionFunc) (*UnsubscribeHelpdeskEventResp, *Response, error) + mockHelpdeskUpdateHelpdeskAgent func(ctx context.Context, request *UpdateHelpdeskAgentReq, options ...MethodOptionFunc) (*UpdateHelpdeskAgentResp, *Response, error) + mockHelpdeskUpdateHelpdeskAgentSchedule func(ctx context.Context, request *UpdateHelpdeskAgentScheduleReq, options ...MethodOptionFunc) (*UpdateHelpdeskAgentScheduleResp, *Response, error) + mockHelpdeskUpdateHelpdeskAgentSkill func(ctx context.Context, request *UpdateHelpdeskAgentSkillReq, options ...MethodOptionFunc) (*UpdateHelpdeskAgentSkillResp, *Response, error) + mockHelpdeskUpdateHelpdeskCategory func(ctx context.Context, request *UpdateHelpdeskCategoryReq, options ...MethodOptionFunc) (*UpdateHelpdeskCategoryResp, *Response, error) + mockHelpdeskUpdateHelpdeskFAQ func(ctx context.Context, request *UpdateHelpdeskFAQReq, options ...MethodOptionFunc) (*UpdateHelpdeskFAQResp, *Response, error) + mockHelpdeskUpdateHelpdeskNotification func(ctx context.Context, request *UpdateHelpdeskNotificationReq, options ...MethodOptionFunc) (*UpdateHelpdeskNotificationResp, *Response, error) + mockHelpdeskUpdateHelpdeskTicket func(ctx context.Context, request *UpdateHelpdeskTicketReq, options ...MethodOptionFunc) (*UpdateHelpdeskTicketResp, *Response, error) + mockHelpdeskUpdateHelpdeskTicketCustomizedField func(ctx context.Context, request *UpdateHelpdeskTicketCustomizedFieldReq, options ...MethodOptionFunc) (*UpdateHelpdeskTicketCustomizedFieldResp, *Response, error) + mockHireAddHireTalentToFolder func(ctx context.Context, request *AddHireTalentToFolderReq, options ...MethodOptionFunc) (*AddHireTalentToFolderResp, *Response, error) + mockHireBatchDeleteHireEcoAccountCustomField func(ctx context.Context, request *BatchDeleteHireEcoAccountCustomFieldReq, options ...MethodOptionFunc) (*BatchDeleteHireEcoAccountCustomFieldResp, *Response, error) + mockHireBatchDeleteHireEcoBackgroundCheckCustomField func(ctx context.Context, request *BatchDeleteHireEcoBackgroundCheckCustomFieldReq, options ...MethodOptionFunc) (*BatchDeleteHireEcoBackgroundCheckCustomFieldResp, *Response, error) + mockHireBatchDeleteHireEcoBackgroundCheckPackage func(ctx context.Context, request *BatchDeleteHireEcoBackgroundCheckPackageReq, options ...MethodOptionFunc) (*BatchDeleteHireEcoBackgroundCheckPackageResp, *Response, error) + mockHireBatchDeleteHireEcoExamPaper func(ctx context.Context, request *BatchDeleteHireEcoExamPaperReq, options ...MethodOptionFunc) (*BatchDeleteHireEcoExamPaperResp, *Response, error) + mockHireBatchGetHireTalent func(ctx context.Context, request *BatchGetHireTalentReq, options ...MethodOptionFunc) (*BatchGetHireTalentResp, *Response, error) + mockHireBatchUpdateHireEcoAccountCustomField func(ctx context.Context, request *BatchUpdateHireEcoAccountCustomFieldReq, options ...MethodOptionFunc) (*BatchUpdateHireEcoAccountCustomFieldResp, *Response, error) + mockHireBatchUpdateHireEcoBackgroundCheckCustomField func(ctx context.Context, request *BatchUpdateHireEcoBackgroundCheckCustomFieldReq, options ...MethodOptionFunc) (*BatchUpdateHireEcoBackgroundCheckCustomFieldResp, *Response, error) + mockHireBatchUpdateHireEcoBackgroundCheckPackage func(ctx context.Context, request *BatchUpdateHireEcoBackgroundCheckPackageReq, options ...MethodOptionFunc) (*BatchUpdateHireEcoBackgroundCheckPackageResp, *Response, error) + mockHireBatchUpdateHireEcoExamPaper func(ctx context.Context, request *BatchUpdateHireEcoExamPaperReq, options ...MethodOptionFunc) (*BatchUpdateHireEcoExamPaperResp, *Response, error) + mockHireCancelHireEcoBackgroundCheck func(ctx context.Context, request *CancelHireEcoBackgroundCheckReq, options ...MethodOptionFunc) (*CancelHireEcoBackgroundCheckResp, *Response, error) + mockHireCreateHireApplication func(ctx context.Context, request *CreateHireApplicationReq, options ...MethodOptionFunc) (*CreateHireApplicationResp, *Response, error) + mockHireCreateHireEcoAccountCustomField func(ctx context.Context, request *CreateHireEcoAccountCustomFieldReq, options ...MethodOptionFunc) (*CreateHireEcoAccountCustomFieldResp, *Response, error) + mockHireCreateHireEcoBackgroundCheckCustomField func(ctx context.Context, request *CreateHireEcoBackgroundCheckCustomFieldReq, options ...MethodOptionFunc) (*CreateHireEcoBackgroundCheckCustomFieldResp, *Response, error) + mockHireCreateHireEcoBackgroundCheckPackage func(ctx context.Context, request *CreateHireEcoBackgroundCheckPackageReq, options ...MethodOptionFunc) (*CreateHireEcoBackgroundCheckPackageResp, *Response, error) + mockHireCreateHireEcoExamLoginInfo func(ctx context.Context, request *CreateHireEcoExamLoginInfoReq, options ...MethodOptionFunc) (*CreateHireEcoExamLoginInfoResp, *Response, error) + mockHireCreateHireEcoExamPaper func(ctx context.Context, request *CreateHireEcoExamPaperReq, options ...MethodOptionFunc) (*CreateHireEcoExamPaperResp, *Response, error) + mockHireCreateHireExternalApplication func(ctx context.Context, request *CreateHireExternalApplicationReq, options ...MethodOptionFunc) (*CreateHireExternalApplicationResp, *Response, error) + mockHireCreateHireExternalBackgroundCheck func(ctx context.Context, request *CreateHireExternalBackgroundCheckReq, options ...MethodOptionFunc) (*CreateHireExternalBackgroundCheckResp, *Response, error) + mockHireCreateHireExternalInterview func(ctx context.Context, request *CreateHireExternalInterviewReq, options ...MethodOptionFunc) (*CreateHireExternalInterviewResp, *Response, error) + mockHireCreateHireExternalInterviewAssessment func(ctx context.Context, request *CreateHireExternalInterviewAssessmentReq, options ...MethodOptionFunc) (*CreateHireExternalInterviewAssessmentResp, *Response, error) + mockHireCreateHireJob func(ctx context.Context, request *CreateHireJobReq, options ...MethodOptionFunc) (*CreateHireJobResp, *Response, error) + mockHireCreateHireNote func(ctx context.Context, request *CreateHireNoteReq, options ...MethodOptionFunc) (*CreateHireNoteResp, *Response, error) + mockHireCreateHireOffer func(ctx context.Context, request *CreateHireOfferReq, options ...MethodOptionFunc) (*CreateHireOfferResp, *Response, error) + mockHireCreateHireReferralAccount func(ctx context.Context, request *CreateHireReferralAccountReq, options ...MethodOptionFunc) (*CreateHireReferralAccountResp, *Response, error) + mockHireDeactivateHireReferralAccount func(ctx context.Context, request *DeactivateHireReferralAccountReq, options ...MethodOptionFunc) (*DeactivateHireReferralAccountResp, *Response, error) + mockHireDeleteHireExternalApplication func(ctx context.Context, request *DeleteHireExternalApplicationReq, options ...MethodOptionFunc) (*DeleteHireExternalApplicationResp, *Response, error) + mockHireGetHireApplication func(ctx context.Context, request *GetHireApplicationReq, options ...MethodOptionFunc) (*GetHireApplicationResp, *Response, error) + mockHireGetHireApplicationInterviewList func(ctx context.Context, request *GetHireApplicationInterviewListReq, options ...MethodOptionFunc) (*GetHireApplicationInterviewListResp, *Response, error) + mockHireGetHireApplicationList func(ctx context.Context, request *GetHireApplicationListReq, options ...MethodOptionFunc) (*GetHireApplicationListResp, *Response, error) + mockHireGetHireAttachment func(ctx context.Context, request *GetHireAttachmentReq, options ...MethodOptionFunc) (*GetHireAttachmentResp, *Response, error) + mockHireGetHireAttachmentPreview func(ctx context.Context, request *GetHireAttachmentPreviewReq, options ...MethodOptionFunc) (*GetHireAttachmentPreviewResp, *Response, error) + mockHireGetHireEmployee func(ctx context.Context, request *GetHireEmployeeReq, options ...MethodOptionFunc) (*GetHireEmployeeResp, *Response, error) + mockHireGetHireEmployeeByApplication func(ctx context.Context, request *GetHireEmployeeByApplicationReq, options ...MethodOptionFunc) (*GetHireEmployeeByApplicationResp, *Response, error) + mockHireGetHireEvaluationList func(ctx context.Context, request *GetHireEvaluationListReq, options ...MethodOptionFunc) (*GetHireEvaluationListResp, *Response, error) + mockHireGetHireInterviewList func(ctx context.Context, request *GetHireInterviewListReq, options ...MethodOptionFunc) (*GetHireInterviewListResp, *Response, error) + mockHireGetHireJob func(ctx context.Context, request *GetHireJobReq, options ...MethodOptionFunc) (*GetHireJobResp, *Response, error) + mockHireGetHireJobConfig func(ctx context.Context, request *GetHireJobConfigReq, options ...MethodOptionFunc) (*GetHireJobConfigResp, *Response, error) + mockHireGetHireJobManager func(ctx context.Context, request *GetHireJobManagerReq, options ...MethodOptionFunc) (*GetHireJobManagerResp, *Response, error) + mockHireGetHireJobProcessList func(ctx context.Context, request *GetHireJobProcessListReq, options ...MethodOptionFunc) (*GetHireJobProcessListResp, *Response, error) + mockHireGetHireNote func(ctx context.Context, request *GetHireNoteReq, options ...MethodOptionFunc) (*GetHireNoteResp, *Response, error) + mockHireGetHireNoteList func(ctx context.Context, request *GetHireNoteListReq, options ...MethodOptionFunc) (*GetHireNoteListResp, *Response, error) + mockHireGetHireOffer func(ctx context.Context, request *GetHireOfferReq, options ...MethodOptionFunc) (*GetHireOfferResp, *Response, error) + mockHireGetHireOfferByApplication func(ctx context.Context, request *GetHireOfferByApplicationReq, options ...MethodOptionFunc) (*GetHireOfferByApplicationResp, *Response, error) + mockHireGetHireOfferList func(ctx context.Context, request *GetHireOfferListReq, options ...MethodOptionFunc) (*GetHireOfferListResp, *Response, error) + mockHireGetHireOfferSchema func(ctx context.Context, request *GetHireOfferSchemaReq, options ...MethodOptionFunc) (*GetHireOfferSchemaResp, *Response, error) + mockHireGetHireQuestionnaireList func(ctx context.Context, request *GetHireQuestionnaireListReq, options ...MethodOptionFunc) (*GetHireQuestionnaireListResp, *Response, error) + mockHireGetHireReferralByApplication func(ctx context.Context, request *GetHireReferralByApplicationReq, options ...MethodOptionFunc) (*GetHireReferralByApplicationResp, *Response, error) + mockHireGetHireReferralWebsiteJobPost func(ctx context.Context, request *GetHireReferralWebsiteJobPostReq, options ...MethodOptionFunc) (*GetHireReferralWebsiteJobPostResp, *Response, error) + mockHireGetHireReferralWebsiteJobPostList func(ctx context.Context, request *GetHireReferralWebsiteJobPostListReq, options ...MethodOptionFunc) (*GetHireReferralWebsiteJobPostListResp, *Response, error) + mockHireGetHireResumeSource func(ctx context.Context, request *GetHireResumeSourceReq, options ...MethodOptionFunc) (*GetHireResumeSourceResp, *Response, error) + mockHireGetHireTalent func(ctx context.Context, request *GetHireTalentReq, options ...MethodOptionFunc) (*GetHireTalentResp, *Response, error) + mockHireGetHireTalentFolderList func(ctx context.Context, request *GetHireTalentFolderListReq, options ...MethodOptionFunc) (*GetHireTalentFolderListResp, *Response, error) + mockHireGetHireTalentList func(ctx context.Context, request *GetHireTalentListReq, options ...MethodOptionFunc) (*GetHireTalentListResp, *Response, error) + mockHireMakeHireTransferOnboardByApplication func(ctx context.Context, request *MakeHireTransferOnboardByApplicationReq, options ...MethodOptionFunc) (*MakeHireTransferOnboardByApplicationResp, *Response, error) + mockHireQueryHireTalentObject func(ctx context.Context, request *QueryHireTalentObjectReq, options ...MethodOptionFunc) (*QueryHireTalentObjectResp, *Response, error) + mockHireReconcileHireReferralAccount func(ctx context.Context, request *ReconcileHireReferralAccountReq, options ...MethodOptionFunc) (*ReconcileHireReferralAccountResp, *Response, error) + mockHireTerminateHireApplication func(ctx context.Context, request *TerminateHireApplicationReq, options ...MethodOptionFunc) (*TerminateHireApplicationResp, *Response, error) + mockHireUpdateHireEHRImportTask func(ctx context.Context, request *UpdateHireEHRImportTaskReq, options ...MethodOptionFunc) (*UpdateHireEHRImportTaskResp, *Response, error) + mockHireUpdateHireEcoBackgroundCheckProgress func(ctx context.Context, request *UpdateHireEcoBackgroundCheckProgressReq, options ...MethodOptionFunc) (*UpdateHireEcoBackgroundCheckProgressResp, *Response, error) + mockHireUpdateHireEcoBackgroundCheckResult func(ctx context.Context, request *UpdateHireEcoBackgroundCheckResultReq, options ...MethodOptionFunc) (*UpdateHireEcoBackgroundCheckResultResp, *Response, error) + mockHireUpdateHireEmployee func(ctx context.Context, request *UpdateHireEmployeeReq, options ...MethodOptionFunc) (*UpdateHireEmployeeResp, *Response, error) + mockHireUpdateHireExternalApplication func(ctx context.Context, request *UpdateHireExternalApplicationReq, options ...MethodOptionFunc) (*UpdateHireExternalApplicationResp, *Response, error) + mockHireUpdateHireJob func(ctx context.Context, request *UpdateHireJobReq, options ...MethodOptionFunc) (*UpdateHireJobResp, *Response, error) + mockHireUpdateHireJobConfig func(ctx context.Context, request *UpdateHireJobConfigReq, options ...MethodOptionFunc) (*UpdateHireJobConfigResp, *Response, error) + mockHireUpdateHireNote func(ctx context.Context, request *UpdateHireNoteReq, options ...MethodOptionFunc) (*UpdateHireNoteResp, *Response, error) + mockHireUpdateHireOffer func(ctx context.Context, request *UpdateHireOfferReq, options ...MethodOptionFunc) (*UpdateHireOfferResp, *Response, error) + mockHireUpdateHireOfferInternStatus func(ctx context.Context, request *UpdateHireOfferInternStatusReq, options ...MethodOptionFunc) (*UpdateHireOfferInternStatusResp, *Response, error) + mockHireUpdateHireOfferStatus func(ctx context.Context, request *UpdateHireOfferStatusReq, options ...MethodOptionFunc) (*UpdateHireOfferStatusResp, *Response, error) + mockHireUpdateHiredEcoExamResult func(ctx context.Context, request *UpdateHiredEcoExamResultReq, options ...MethodOptionFunc) (*UpdateHiredEcoExamResultResp, *Response, error) + mockHireWithdrawHireReferralAccount func(ctx context.Context, request *WithdrawHireReferralAccountReq, options ...MethodOptionFunc) (*WithdrawHireReferralAccountResp, *Response, error) + mockHumanAuthCreateIdentity func(ctx context.Context, request *CreateIdentityReq, options ...MethodOptionFunc) (*CreateIdentityResp, *Response, error) + mockHumanAuthCropFaceVerifyImage func(ctx context.Context, request *CropFaceVerifyImageReq, options ...MethodOptionFunc) (*CropFaceVerifyImageResp, *Response, error) + mockHumanAuthGetFaceVerifyAuthResult func(ctx context.Context, request *GetFaceVerifyAuthResultReq, options ...MethodOptionFunc) (*GetFaceVerifyAuthResultResp, *Response, error) + mockHumanAuthUploadFaceVerifyImage func(ctx context.Context, request *UploadFaceVerifyImageReq, options ...MethodOptionFunc) (*UploadFaceVerifyImageResp, *Response, error) + mockJssdkGetJssdkTicket func(ctx context.Context, request *GetJssdkTicketReq, options ...MethodOptionFunc) (*GetJssdkTicketResp, *Response, error) + mockLingoCreateLingoDraft func(ctx context.Context, request *CreateLingoDraftReq, options ...MethodOptionFunc) (*CreateLingoDraftResp, *Response, error) + mockLingoCreateLingoEntity func(ctx context.Context, request *CreateLingoEntityReq, options ...MethodOptionFunc) (*CreateLingoEntityResp, *Response, error) + mockLingoDeleteLingoEntity func(ctx context.Context, request *DeleteLingoEntityReq, options ...MethodOptionFunc) (*DeleteLingoEntityResp, *Response, error) + mockLingoDownloadLingoFile func(ctx context.Context, request *DownloadLingoFileReq, options ...MethodOptionFunc) (*DownloadLingoFileResp, *Response, error) + mockLingoExtractLingoEntity func(ctx context.Context, request *ExtractLingoEntityReq, options ...MethodOptionFunc) (*ExtractLingoEntityResp, *Response, error) + mockLingoGetLingoClassificationList func(ctx context.Context, request *GetLingoClassificationListReq, options ...MethodOptionFunc) (*GetLingoClassificationListResp, *Response, error) + mockLingoGetLingoEntity func(ctx context.Context, request *GetLingoEntityReq, options ...MethodOptionFunc) (*GetLingoEntityResp, *Response, error) + mockLingoGetLingoEntityList func(ctx context.Context, request *GetLingoEntityListReq, options ...MethodOptionFunc) (*GetLingoEntityListResp, *Response, error) + mockLingoGetLingoRepoList func(ctx context.Context, request *GetLingoRepoListReq, options ...MethodOptionFunc) (*GetLingoRepoListResp, *Response, error) + mockLingoHighlightLingoEntity func(ctx context.Context, request *HighlightLingoEntityReq, options ...MethodOptionFunc) (*HighlightLingoEntityResp, *Response, error) + mockLingoMatchLingoEntity func(ctx context.Context, request *MatchLingoEntityReq, options ...MethodOptionFunc) (*MatchLingoEntityResp, *Response, error) + mockLingoSearchLingoEntity func(ctx context.Context, request *SearchLingoEntityReq, options ...MethodOptionFunc) (*SearchLingoEntityResp, *Response, error) + mockLingoUpdateLingoDraft func(ctx context.Context, request *UpdateLingoDraftReq, options ...MethodOptionFunc) (*UpdateLingoDraftResp, *Response, error) + mockLingoUpdateLingoEntity func(ctx context.Context, request *UpdateLingoEntityReq, options ...MethodOptionFunc) (*UpdateLingoEntityResp, *Response, error) + mockLingoUploadLingoFile func(ctx context.Context, request *UploadLingoFileReq, options ...MethodOptionFunc) (*UploadLingoFileResp, *Response, error) + mockMDMBindMDMUserAuthDataRelation func(ctx context.Context, request *BindMDMUserAuthDataRelationReq, options ...MethodOptionFunc) (*BindMDMUserAuthDataRelationResp, *Response, error) + mockMDMUnbindMDMUserAuthDataRelation func(ctx context.Context, request *UnbindMDMUserAuthDataRelationReq, options ...MethodOptionFunc) (*UnbindMDMUserAuthDataRelationResp, *Response, error) + mockMailBatchCreateMailGroupManager func(ctx context.Context, request *BatchCreateMailGroupManagerReq, options ...MethodOptionFunc) (*BatchCreateMailGroupManagerResp, *Response, error) + mockMailBatchCreateMailGroupMember func(ctx context.Context, request *BatchCreateMailGroupMemberReq, options ...MethodOptionFunc) (*BatchCreateMailGroupMemberResp, *Response, error) + mockMailBatchCreateMailGroupPermissionMember func(ctx context.Context, request *BatchCreateMailGroupPermissionMemberReq, options ...MethodOptionFunc) (*BatchCreateMailGroupPermissionMemberResp, *Response, error) + mockMailBatchCreatePublicMailboxMember func(ctx context.Context, request *BatchCreatePublicMailboxMemberReq, options ...MethodOptionFunc) (*BatchCreatePublicMailboxMemberResp, *Response, error) + mockMailBatchDeleteMailGroupManager func(ctx context.Context, request *BatchDeleteMailGroupManagerReq, options ...MethodOptionFunc) (*BatchDeleteMailGroupManagerResp, *Response, error) + mockMailBatchDeleteMailGroupMember func(ctx context.Context, request *BatchDeleteMailGroupMemberReq, options ...MethodOptionFunc) (*BatchDeleteMailGroupMemberResp, *Response, error) + mockMailBatchDeleteMailGroupPermissionMember func(ctx context.Context, request *BatchDeleteMailGroupPermissionMemberReq, options ...MethodOptionFunc) (*BatchDeleteMailGroupPermissionMemberResp, *Response, error) + mockMailBatchDeletePublicMailboxMember func(ctx context.Context, request *BatchDeletePublicMailboxMemberReq, options ...MethodOptionFunc) (*BatchDeletePublicMailboxMemberResp, *Response, error) + mockMailClearPublicMailboxMember func(ctx context.Context, request *ClearPublicMailboxMemberReq, options ...MethodOptionFunc) (*ClearPublicMailboxMemberResp, *Response, error) + mockMailCreateMailGroup func(ctx context.Context, request *CreateMailGroupReq, options ...MethodOptionFunc) (*CreateMailGroupResp, *Response, error) + mockMailCreateMailGroupAlias func(ctx context.Context, request *CreateMailGroupAliasReq, options ...MethodOptionFunc) (*CreateMailGroupAliasResp, *Response, error) + mockMailCreateMailGroupMember func(ctx context.Context, request *CreateMailGroupMemberReq, options ...MethodOptionFunc) (*CreateMailGroupMemberResp, *Response, error) + mockMailCreateMailGroupPermissionMember func(ctx context.Context, request *CreateMailGroupPermissionMemberReq, options ...MethodOptionFunc) (*CreateMailGroupPermissionMemberResp, *Response, error) + mockMailCreateMailPublicMailboxAlias func(ctx context.Context, request *CreateMailPublicMailboxAliasReq, options ...MethodOptionFunc) (*CreateMailPublicMailboxAliasResp, *Response, error) + mockMailCreateMailUserMailboxAlias func(ctx context.Context, request *CreateMailUserMailboxAliasReq, options ...MethodOptionFunc) (*CreateMailUserMailboxAliasResp, *Response, error) + mockMailCreatePublicMailbox func(ctx context.Context, request *CreatePublicMailboxReq, options ...MethodOptionFunc) (*CreatePublicMailboxResp, *Response, error) + mockMailCreatePublicMailboxMember func(ctx context.Context, request *CreatePublicMailboxMemberReq, options ...MethodOptionFunc) (*CreatePublicMailboxMemberResp, *Response, error) + mockMailDeleteMailGroup func(ctx context.Context, request *DeleteMailGroupReq, options ...MethodOptionFunc) (*DeleteMailGroupResp, *Response, error) + mockMailDeleteMailGroupAlias func(ctx context.Context, request *DeleteMailGroupAliasReq, options ...MethodOptionFunc) (*DeleteMailGroupAliasResp, *Response, error) + mockMailDeleteMailGroupMember func(ctx context.Context, request *DeleteMailGroupMemberReq, options ...MethodOptionFunc) (*DeleteMailGroupMemberResp, *Response, error) + mockMailDeleteMailGroupPermissionMember func(ctx context.Context, request *DeleteMailGroupPermissionMemberReq, options ...MethodOptionFunc) (*DeleteMailGroupPermissionMemberResp, *Response, error) + mockMailDeleteMailPublicMailboxAlias func(ctx context.Context, request *DeleteMailPublicMailboxAliasReq, options ...MethodOptionFunc) (*DeleteMailPublicMailboxAliasResp, *Response, error) + mockMailDeleteMailUserMailbox func(ctx context.Context, request *DeleteMailUserMailboxReq, options ...MethodOptionFunc) (*DeleteMailUserMailboxResp, *Response, error) + mockMailDeleteMailUserMailboxAlias func(ctx context.Context, request *DeleteMailUserMailboxAliasReq, options ...MethodOptionFunc) (*DeleteMailUserMailboxAliasResp, *Response, error) + mockMailDeletePublicMailbox func(ctx context.Context, request *DeletePublicMailboxReq, options ...MethodOptionFunc) (*DeletePublicMailboxResp, *Response, error) + mockMailDeletePublicMailboxMember func(ctx context.Context, request *DeletePublicMailboxMemberReq, options ...MethodOptionFunc) (*DeletePublicMailboxMemberResp, *Response, error) + mockMailGetMailGroup func(ctx context.Context, request *GetMailGroupReq, options ...MethodOptionFunc) (*GetMailGroupResp, *Response, error) + mockMailGetMailGroupAliasList func(ctx context.Context, request *GetMailGroupAliasListReq, options ...MethodOptionFunc) (*GetMailGroupAliasListResp, *Response, error) + mockMailGetMailGroupList func(ctx context.Context, request *GetMailGroupListReq, options ...MethodOptionFunc) (*GetMailGroupListResp, *Response, error) + mockMailGetMailGroupManagerList func(ctx context.Context, request *GetMailGroupManagerListReq, options ...MethodOptionFunc) (*GetMailGroupManagerListResp, *Response, error) + mockMailGetMailGroupMember func(ctx context.Context, request *GetMailGroupMemberReq, options ...MethodOptionFunc) (*GetMailGroupMemberResp, *Response, error) + mockMailGetMailGroupMemberList func(ctx context.Context, request *GetMailGroupMemberListReq, options ...MethodOptionFunc) (*GetMailGroupMemberListResp, *Response, error) + mockMailGetMailGroupPermissionMember func(ctx context.Context, request *GetMailGroupPermissionMemberReq, options ...MethodOptionFunc) (*GetMailGroupPermissionMemberResp, *Response, error) + mockMailGetMailGroupPermissionMemberList func(ctx context.Context, request *GetMailGroupPermissionMemberListReq, options ...MethodOptionFunc) (*GetMailGroupPermissionMemberListResp, *Response, error) + mockMailGetMailPublicMailboxAliasList func(ctx context.Context, request *GetMailPublicMailboxAliasListReq, options ...MethodOptionFunc) (*GetMailPublicMailboxAliasListResp, *Response, error) + mockMailGetMailUser func(ctx context.Context, request *GetMailUserReq, options ...MethodOptionFunc) (*GetMailUserResp, *Response, error) + mockMailGetMailUserMailboxAliasList func(ctx context.Context, request *GetMailUserMailboxAliasListReq, options ...MethodOptionFunc) (*GetMailUserMailboxAliasListResp, *Response, error) + mockMailGetPublicMailbox func(ctx context.Context, request *GetPublicMailboxReq, options ...MethodOptionFunc) (*GetPublicMailboxResp, *Response, error) + mockMailGetPublicMailboxList func(ctx context.Context, request *GetPublicMailboxListReq, options ...MethodOptionFunc) (*GetPublicMailboxListResp, *Response, error) + mockMailGetPublicMailboxMember func(ctx context.Context, request *GetPublicMailboxMemberReq, options ...MethodOptionFunc) (*GetPublicMailboxMemberResp, *Response, error) + mockMailGetPublicMailboxMemberList func(ctx context.Context, request *GetPublicMailboxMemberListReq, options ...MethodOptionFunc) (*GetPublicMailboxMemberListResp, *Response, error) + mockMailUpdateMailGroup func(ctx context.Context, request *UpdateMailGroupReq, options ...MethodOptionFunc) (*UpdateMailGroupResp, *Response, error) + mockMailUpdateMailGroupPatch func(ctx context.Context, request *UpdateMailGroupPatchReq, options ...MethodOptionFunc) (*UpdateMailGroupPatchResp, *Response, error) + mockMailUpdatePublicMailbox func(ctx context.Context, request *UpdatePublicMailboxReq, options ...MethodOptionFunc) (*UpdatePublicMailboxResp, *Response, error) + mockMailUpdatePublicMailboxPatch func(ctx context.Context, request *UpdatePublicMailboxPatchReq, options ...MethodOptionFunc) (*UpdatePublicMailboxPatchResp, *Response, error) + mockMessageBatchDeleteMessage func(ctx context.Context, request *BatchDeleteMessageReq, options ...MethodOptionFunc) (*BatchDeleteMessageResp, *Response, error) + mockMessageBatchSendOldRawMessage func(ctx context.Context, request *BatchSendOldRawMessageReq, options ...MethodOptionFunc) (*BatchSendOldRawMessageResp, *Response, error) + mockMessageBatchUpdateURLPreview func(ctx context.Context, request *BatchUpdateURLPreviewReq, options ...MethodOptionFunc) (*BatchUpdateURLPreviewResp, *Response, error) + mockMessageCreateAppFeedCard func(ctx context.Context, request *CreateAppFeedCardReq, options ...MethodOptionFunc) (*CreateAppFeedCardResp, *Response, error) + mockMessageCreateIMTag func(ctx context.Context, request *CreateIMTagReq, options ...MethodOptionFunc) (*CreateIMTagResp, *Response, error) + mockMessageCreateIMTagRelation func(ctx context.Context, request *CreateIMTagRelationReq, options ...MethodOptionFunc) (*CreateIMTagRelationResp, *Response, error) + mockMessageCreateMessagePin func(ctx context.Context, request *CreateMessagePinReq, options ...MethodOptionFunc) (*CreateMessagePinResp, *Response, error) + mockMessageCreateMessageReaction func(ctx context.Context, request *CreateMessageReactionReq, options ...MethodOptionFunc) (*CreateMessageReactionResp, *Response, error) + mockMessageDeleteAppFeedCard func(ctx context.Context, request *DeleteAppFeedCardReq, options ...MethodOptionFunc) (*DeleteAppFeedCardResp, *Response, error) + mockMessageDeleteEphemeralMessage func(ctx context.Context, request *DeleteEphemeralMessageReq, options ...MethodOptionFunc) (*DeleteEphemeralMessageResp, *Response, error) + mockMessageDeleteIMTagRelation func(ctx context.Context, request *DeleteIMTagRelationReq, options ...MethodOptionFunc) (*DeleteIMTagRelationResp, *Response, error) + mockMessageDeleteMessage func(ctx context.Context, request *DeleteMessageReq, options ...MethodOptionFunc) (*DeleteMessageResp, *Response, error) + mockMessageDeleteMessagePin func(ctx context.Context, request *DeleteMessagePinReq, options ...MethodOptionFunc) (*DeleteMessagePinResp, *Response, error) + mockMessageDeleteMessageReaction func(ctx context.Context, request *DeleteMessageReactionReq, options ...MethodOptionFunc) (*DeleteMessageReactionResp, *Response, error) + mockMessageForwardMessage func(ctx context.Context, request *ForwardMessageReq, options ...MethodOptionFunc) (*ForwardMessageResp, *Response, error) + mockMessageForwardThreadMessage func(ctx context.Context, request *ForwardThreadMessageReq, options ...MethodOptionFunc) (*ForwardThreadMessageResp, *Response, error) + mockMessageGetBatchSentMessageProgress func(ctx context.Context, request *GetBatchSentMessageProgressReq, options ...MethodOptionFunc) (*GetBatchSentMessageProgressResp, *Response, error) + mockMessageGetBatchSentMessageReadUser func(ctx context.Context, request *GetBatchSentMessageReadUserReq, options ...MethodOptionFunc) (*GetBatchSentMessageReadUserResp, *Response, error) + mockMessageGetMessage func(ctx context.Context, request *GetMessageReq, options ...MethodOptionFunc) (*GetMessageResp, *Response, error) + mockMessageGetMessageFile func(ctx context.Context, request *GetMessageFileReq, options ...MethodOptionFunc) (*GetMessageFileResp, *Response, error) + mockMessageGetMessageList func(ctx context.Context, request *GetMessageListReq, options ...MethodOptionFunc) (*GetMessageListResp, *Response, error) + mockMessageGetMessagePinList func(ctx context.Context, request *GetMessagePinListReq, options ...MethodOptionFunc) (*GetMessagePinListResp, *Response, error) + mockMessageGetMessageReactionList func(ctx context.Context, request *GetMessageReactionListReq, options ...MethodOptionFunc) (*GetMessageReactionListResp, *Response, error) + mockMessageGetMessageReadUserList func(ctx context.Context, request *GetMessageReadUserListReq, options ...MethodOptionFunc) (*GetMessageReadUserListResp, *Response, error) + mockMessageGetMessageSpecialFocusList func(ctx context.Context, request *GetMessageSpecialFocusListReq, options ...MethodOptionFunc) (*GetMessageSpecialFocusListResp, *Response, error) + mockMessageGetMessageSpecialFocusUnread func(ctx context.Context, request *GetMessageSpecialFocusUnreadReq, options ...MethodOptionFunc) (*GetMessageSpecialFocusUnreadResp, *Response, error) + mockMessageInstantReminderAppFeedCard func(ctx context.Context, request *InstantReminderAppFeedCardReq, options ...MethodOptionFunc) (*InstantReminderAppFeedCardResp, *Response, error) + mockMessageListIMTagRelation func(ctx context.Context, request *ListIMTagRelationReq, options ...MethodOptionFunc) (*ListIMTagRelationResp, *Response, error) + mockMessageMGetIMTag func(ctx context.Context, request *MGetIMTagReq, options ...MethodOptionFunc) (*MGetIMTagResp, *Response, error) + mockMessageMergeForwardMessage func(ctx context.Context, request *MergeForwardMessageReq, options ...MethodOptionFunc) (*MergeForwardMessageResp, *Response, error) + mockMessageReplyRawMessage func(ctx context.Context, request *ReplyRawMessageReq, options ...MethodOptionFunc) (*ReplyRawMessageResp, *Response, error) + mockMessageSendEphemeralMessage func(ctx context.Context, request *SendEphemeralMessageReq, options ...MethodOptionFunc) (*SendEphemeralMessageResp, *Response, error) + mockMessageSendRawMessage func(ctx context.Context, request *SendRawMessageReq, options ...MethodOptionFunc) (*SendRawMessageResp, *Response, error) + mockMessageSendRawMessageOld func(ctx context.Context, request *SendRawMessageOldReq, options ...MethodOptionFunc) (*SendRawMessageOldResp, *Response, error) + mockMessageSendUrgentAppMessage func(ctx context.Context, request *SendUrgentAppMessageReq, options ...MethodOptionFunc) (*SendUrgentAppMessageResp, *Response, error) + mockMessageSendUrgentPhoneMessage func(ctx context.Context, request *SendUrgentPhoneMessageReq, options ...MethodOptionFunc) (*SendUrgentPhoneMessageResp, *Response, error) + mockMessageSendUrgentSmsMessage func(ctx context.Context, request *SendUrgentSmsMessageReq, options ...MethodOptionFunc) (*SendUrgentSmsMessageResp, *Response, error) + mockMessageUpdateAppFeedCard func(ctx context.Context, request *UpdateAppFeedCardReq, options ...MethodOptionFunc) (*UpdateAppFeedCardResp, *Response, error) + mockMessageUpdateAppFeedCardButton func(ctx context.Context, request *UpdateAppFeedCardButtonReq, options ...MethodOptionFunc) (*UpdateAppFeedCardButtonResp, *Response, error) + mockMessageUpdateIMTag func(ctx context.Context, request *UpdateIMTagReq, options ...MethodOptionFunc) (*UpdateIMTagResp, *Response, error) + mockMessageUpdateMessage func(ctx context.Context, request *UpdateMessageReq, options ...MethodOptionFunc) (*UpdateMessageResp, *Response, error) + mockMessageUpdateMessageDelay func(ctx context.Context, request *UpdateMessageDelayReq, options ...MethodOptionFunc) (*UpdateMessageDelayResp, *Response, error) + mockMessageUpdateMessageEdit func(ctx context.Context, request *UpdateMessageEditReq, options ...MethodOptionFunc) (*UpdateMessageEditResp, *Response, error) + mockMinaMinaCodeToSession func(ctx context.Context, request *MinaCodeToSessionReq, options ...MethodOptionFunc) (*MinaCodeToSessionResp, *Response, error) + mockMinutesGetMinutesMinute func(ctx context.Context, request *GetMinutesMinuteReq, options ...MethodOptionFunc) (*GetMinutesMinuteResp, *Response, error) + mockMinutesGetMinutesStatistics func(ctx context.Context, request *GetMinutesStatisticsReq, options ...MethodOptionFunc) (*GetMinutesStatisticsResp, *Response, error) + mockOKRBatchGetOKR func(ctx context.Context, request *BatchGetOKRReq, options ...MethodOptionFunc) (*BatchGetOKRResp, *Response, error) + mockOKRBatchUpdateOKRMetricSourceTableItem func(ctx context.Context, request *BatchUpdateOKRMetricSourceTableItemReq, options ...MethodOptionFunc) (*BatchUpdateOKRMetricSourceTableItemResp, *Response, error) + mockOKRCreateOKRPeriod func(ctx context.Context, request *CreateOKRPeriodReq, options ...MethodOptionFunc) (*CreateOKRPeriodResp, *Response, error) + mockOKRCreateOKRProgressRecord func(ctx context.Context, request *CreateOKRProgressRecordReq, options ...MethodOptionFunc) (*CreateOKRProgressRecordResp, *Response, error) + mockOKRDeleteOKRProgressRecord func(ctx context.Context, request *DeleteOKRProgressRecordReq, options ...MethodOptionFunc) (*DeleteOKRProgressRecordResp, *Response, error) + mockOKRGetOKRMetricSourceList func(ctx context.Context, request *GetOKRMetricSourceListReq, options ...MethodOptionFunc) (*GetOKRMetricSourceListResp, *Response, error) + mockOKRGetOKRMetricSourceTableItem func(ctx context.Context, request *GetOKRMetricSourceTableItemReq, options ...MethodOptionFunc) (*GetOKRMetricSourceTableItemResp, *Response, error) + mockOKRGetOKRMetricSourceTableItemList func(ctx context.Context, request *GetOKRMetricSourceTableItemListReq, options ...MethodOptionFunc) (*GetOKRMetricSourceTableItemListResp, *Response, error) + mockOKRGetOKRMetricSourceTableList func(ctx context.Context, request *GetOKRMetricSourceTableListReq, options ...MethodOptionFunc) (*GetOKRMetricSourceTableListResp, *Response, error) + mockOKRGetOKRPeriodList func(ctx context.Context, request *GetOKRPeriodListReq, options ...MethodOptionFunc) (*GetOKRPeriodListResp, *Response, error) + mockOKRGetOKRPeriodRuleList func(ctx context.Context, request *GetOKRPeriodRuleListReq, options ...MethodOptionFunc) (*GetOKRPeriodRuleListResp, *Response, error) + mockOKRGetOKRProgressRecord func(ctx context.Context, request *GetOKRProgressRecordReq, options ...MethodOptionFunc) (*GetOKRProgressRecordResp, *Response, error) + mockOKRGetOKRReview func(ctx context.Context, request *GetOKRReviewReq, options ...MethodOptionFunc) (*GetOKRReviewResp, *Response, error) + mockOKRGetUserOKRList func(ctx context.Context, request *GetUserOKRListReq, options ...MethodOptionFunc) (*GetUserOKRListResp, *Response, error) + mockOKRUpdateOKRMetricSourceTableItem func(ctx context.Context, request *UpdateOKRMetricSourceTableItemReq, options ...MethodOptionFunc) (*UpdateOKRMetricSourceTableItemResp, *Response, error) + mockOKRUpdateOKRPeriod func(ctx context.Context, request *UpdateOKRPeriodReq, options ...MethodOptionFunc) (*UpdateOKRPeriodResp, *Response, error) + mockOKRUpdateOKRProgressRecord func(ctx context.Context, request *UpdateOKRProgressRecordReq, options ...MethodOptionFunc) (*UpdateOKRProgressRecordResp, *Response, error) + mockOKRUploadOKRImage func(ctx context.Context, request *UploadOKRImageReq, options ...MethodOptionFunc) (*UploadOKRImageResp, *Response, error) + mockPassportGetPassportSession func(ctx context.Context, request *GetPassportSessionReq, options ...MethodOptionFunc) (*GetPassportSessionResp, *Response, error) + mockPerformanceGetPerformanceReviewData func(ctx context.Context, request *GetPerformanceReviewDataReq, options ...MethodOptionFunc) (*GetPerformanceReviewDataResp, *Response, error) + mockPerformanceGetPerformanceSemesterList func(ctx context.Context, request *GetPerformanceSemesterListReq, options ...MethodOptionFunc) (*GetPerformanceSemesterListResp, *Response, error) + mockPerformanceGetPerformanceStageTaskByPage func(ctx context.Context, request *GetPerformanceStageTaskByPageReq, options ...MethodOptionFunc) (*GetPerformanceStageTaskByPageResp, *Response, error) + mockPerformanceGetPerformanceStageTaskByUser func(ctx context.Context, request *GetPerformanceStageTaskByUserReq, options ...MethodOptionFunc) (*GetPerformanceStageTaskByUserResp, *Response, error) + mockPersonalSettingsBatchClosePersonalSettingsSystemStatus func(ctx context.Context, request *BatchClosePersonalSettingsSystemStatusReq, options ...MethodOptionFunc) (*BatchClosePersonalSettingsSystemStatusResp, *Response, error) + mockPersonalSettingsBatchOpenPersonalSettingsSystemStatus func(ctx context.Context, request *BatchOpenPersonalSettingsSystemStatusReq, options ...MethodOptionFunc) (*BatchOpenPersonalSettingsSystemStatusResp, *Response, error) + mockPersonalSettingsCreatePersonalSettingsSystemStatus func(ctx context.Context, request *CreatePersonalSettingsSystemStatusReq, options ...MethodOptionFunc) (*CreatePersonalSettingsSystemStatusResp, *Response, error) + mockPersonalSettingsDeletePersonalSettingsSystemStatus func(ctx context.Context, request *DeletePersonalSettingsSystemStatusReq, options ...MethodOptionFunc) (*DeletePersonalSettingsSystemStatusResp, *Response, error) + mockPersonalSettingsGetPersonalSettingsSystemStatusList func(ctx context.Context, request *GetPersonalSettingsSystemStatusListReq, options ...MethodOptionFunc) (*GetPersonalSettingsSystemStatusListResp, *Response, error) + mockPersonalSettingsUpdatePersonalSettingsSystemStatus func(ctx context.Context, request *UpdatePersonalSettingsSystemStatusReq, options ...MethodOptionFunc) (*UpdatePersonalSettingsSystemStatusResp, *Response, error) + mockReportQueryReportRule func(ctx context.Context, request *QueryReportRuleReq, options ...MethodOptionFunc) (*QueryReportRuleResp, *Response, error) + mockReportQueryReportTask func(ctx context.Context, request *QueryReportTaskReq, options ...MethodOptionFunc) (*QueryReportTaskResp, *Response, error) + mockReportRemoveReportView func(ctx context.Context, request *RemoveReportViewReq, options ...MethodOptionFunc) (*RemoveReportViewResp, *Response, error) + mockSearchBatchCreateSearchDataSourceItem func(ctx context.Context, request *BatchCreateSearchDataSourceItemReq, options ...MethodOptionFunc) (*BatchCreateSearchDataSourceItemResp, *Response, error) + mockSearchCreateSearchDataSource func(ctx context.Context, request *CreateSearchDataSourceReq, options ...MethodOptionFunc) (*CreateSearchDataSourceResp, *Response, error) + mockSearchCreateSearchDataSourceItem func(ctx context.Context, request *CreateSearchDataSourceItemReq, options ...MethodOptionFunc) (*CreateSearchDataSourceItemResp, *Response, error) + mockSearchCreateSearchSchema func(ctx context.Context, request *CreateSearchSchemaReq, options ...MethodOptionFunc) (*CreateSearchSchemaResp, *Response, error) + mockSearchDeleteSearchDataSource func(ctx context.Context, request *DeleteSearchDataSourceReq, options ...MethodOptionFunc) (*DeleteSearchDataSourceResp, *Response, error) + mockSearchDeleteSearchDataSourceItem func(ctx context.Context, request *DeleteSearchDataSourceItemReq, options ...MethodOptionFunc) (*DeleteSearchDataSourceItemResp, *Response, error) + mockSearchDeleteSearchSchema func(ctx context.Context, request *DeleteSearchSchemaReq, options ...MethodOptionFunc) (*DeleteSearchSchemaResp, *Response, error) + mockSearchGetSearchDataSource func(ctx context.Context, request *GetSearchDataSourceReq, options ...MethodOptionFunc) (*GetSearchDataSourceResp, *Response, error) + mockSearchGetSearchDataSourceItem func(ctx context.Context, request *GetSearchDataSourceItemReq, options ...MethodOptionFunc) (*GetSearchDataSourceItemResp, *Response, error) + mockSearchGetSearchDataSourceList func(ctx context.Context, request *GetSearchDataSourceListReq, options ...MethodOptionFunc) (*GetSearchDataSourceListResp, *Response, error) + mockSearchGetSearchSchema func(ctx context.Context, request *GetSearchSchemaReq, options ...MethodOptionFunc) (*GetSearchSchemaResp, *Response, error) + mockSearchSearchApp func(ctx context.Context, request *SearchAppReq, options ...MethodOptionFunc) (*SearchAppResp, *Response, error) + mockSearchSearchMessage func(ctx context.Context, request *SearchMessageReq, options ...MethodOptionFunc) (*SearchMessageResp, *Response, error) + mockSearchUpdateSearchDataSource func(ctx context.Context, request *UpdateSearchDataSourceReq, options ...MethodOptionFunc) (*UpdateSearchDataSourceResp, *Response, error) + mockSearchUpdateSearchSchema func(ctx context.Context, request *UpdateSearchSchemaReq, options ...MethodOptionFunc) (*UpdateSearchSchemaResp, *Response, error) + mockTaskAddTaskCustomField func(ctx context.Context, request *AddTaskCustomFieldReq, options ...MethodOptionFunc) (*AddTaskCustomFieldResp, *Response, error) + mockTaskAddTaskDependency func(ctx context.Context, request *AddTaskDependencyReq, options ...MethodOptionFunc) (*AddTaskDependencyResp, *Response, error) + mockTaskAddTaskMember func(ctx context.Context, request *AddTaskMemberReq, options ...MethodOptionFunc) (*AddTaskMemberResp, *Response, error) + mockTaskAddTaskReminder func(ctx context.Context, request *AddTaskReminderReq, options ...MethodOptionFunc) (*AddTaskReminderResp, *Response, error) + mockTaskAddTaskTasklist func(ctx context.Context, request *AddTaskTasklistReq, options ...MethodOptionFunc) (*AddTaskTasklistResp, *Response, error) + mockTaskAddTaskTasklistMember func(ctx context.Context, request *AddTaskTasklistMemberReq, options ...MethodOptionFunc) (*AddTaskTasklistMemberResp, *Response, error) + mockTaskBatchDeleteTaskCollaborator func(ctx context.Context, request *BatchDeleteTaskCollaboratorReq, options ...MethodOptionFunc) (*BatchDeleteTaskCollaboratorResp, *Response, error) + mockTaskBatchDeleteTaskFollower func(ctx context.Context, request *BatchDeleteTaskFollowerReq, options ...MethodOptionFunc) (*BatchDeleteTaskFollowerResp, *Response, error) + mockTaskCompleteTask func(ctx context.Context, request *CompleteTaskReq, options ...MethodOptionFunc) (*CompleteTaskResp, *Response, error) + mockTaskCreateTask func(ctx context.Context, request *CreateTaskReq, options ...MethodOptionFunc) (*CreateTaskResp, *Response, error) + mockTaskCreateTaskCollaborator func(ctx context.Context, request *CreateTaskCollaboratorReq, options ...MethodOptionFunc) (*CreateTaskCollaboratorResp, *Response, error) + mockTaskCreateTaskComment func(ctx context.Context, request *CreateTaskCommentReq, options ...MethodOptionFunc) (*CreateTaskCommentResp, *Response, error) + mockTaskCreateTaskCustomFieldOption func(ctx context.Context, request *CreateTaskCustomFieldOptionReq, options ...MethodOptionFunc) (*CreateTaskCustomFieldOptionResp, *Response, error) + mockTaskCreateTaskFollower func(ctx context.Context, request *CreateTaskFollowerReq, options ...MethodOptionFunc) (*CreateTaskFollowerResp, *Response, error) + mockTaskCreateTaskReminder func(ctx context.Context, request *CreateTaskReminderReq, options ...MethodOptionFunc) (*CreateTaskReminderResp, *Response, error) + mockTaskCreateTaskSection func(ctx context.Context, request *CreateTaskSectionReq, options ...MethodOptionFunc) (*CreateTaskSectionResp, *Response, error) + mockTaskCreateTaskSubtask func(ctx context.Context, request *CreateTaskSubtaskReq, options ...MethodOptionFunc) (*CreateTaskSubtaskResp, *Response, error) + mockTaskCreateTaskTasklist func(ctx context.Context, request *CreateTaskTasklistReq, options ...MethodOptionFunc) (*CreateTaskTasklistResp, *Response, error) + mockTaskCreateTaskTasklistActivitySubscription func(ctx context.Context, request *CreateTaskTasklistActivitySubscriptionReq, options ...MethodOptionFunc) (*CreateTaskTasklistActivitySubscriptionResp, *Response, error) + mockTaskDeleteTask func(ctx context.Context, request *DeleteTaskReq, options ...MethodOptionFunc) (*DeleteTaskResp, *Response, error) + mockTaskDeleteTaskAttachment func(ctx context.Context, request *DeleteTaskAttachmentReq, options ...MethodOptionFunc) (*DeleteTaskAttachmentResp, *Response, error) + mockTaskDeleteTaskCollaborator func(ctx context.Context, request *DeleteTaskCollaboratorReq, options ...MethodOptionFunc) (*DeleteTaskCollaboratorResp, *Response, error) + mockTaskDeleteTaskComment func(ctx context.Context, request *DeleteTaskCommentReq, options ...MethodOptionFunc) (*DeleteTaskCommentResp, *Response, error) + mockTaskDeleteTaskFollower func(ctx context.Context, request *DeleteTaskFollowerReq, options ...MethodOptionFunc) (*DeleteTaskFollowerResp, *Response, error) + mockTaskDeleteTaskReminder func(ctx context.Context, request *DeleteTaskReminderReq, options ...MethodOptionFunc) (*DeleteTaskReminderResp, *Response, error) + mockTaskDeleteTaskSection func(ctx context.Context, request *DeleteTaskSectionReq, options ...MethodOptionFunc) (*DeleteTaskSectionResp, *Response, error) + mockTaskDeleteTaskTasklist func(ctx context.Context, request *DeleteTaskTasklistReq, options ...MethodOptionFunc) (*DeleteTaskTasklistResp, *Response, error) + mockTaskDeleteTaskTasklistActivitySubscription func(ctx context.Context, request *DeleteTaskTasklistActivitySubscriptionReq, options ...MethodOptionFunc) (*DeleteTaskTasklistActivitySubscriptionResp, *Response, error) + mockTaskGetTask func(ctx context.Context, request *GetTaskReq, options ...MethodOptionFunc) (*GetTaskResp, *Response, error) + mockTaskGetTaskAttachment func(ctx context.Context, request *GetTaskAttachmentReq, options ...MethodOptionFunc) (*GetTaskAttachmentResp, *Response, error) + mockTaskGetTaskAttachmentList func(ctx context.Context, request *GetTaskAttachmentListReq, options ...MethodOptionFunc) (*GetTaskAttachmentListResp, *Response, error) + mockTaskGetTaskCollaboratorList func(ctx context.Context, request *GetTaskCollaboratorListReq, options ...MethodOptionFunc) (*GetTaskCollaboratorListResp, *Response, error) + mockTaskGetTaskComment func(ctx context.Context, request *GetTaskCommentReq, options ...MethodOptionFunc) (*GetTaskCommentResp, *Response, error) + mockTaskGetTaskCommentList func(ctx context.Context, request *GetTaskCommentListReq, options ...MethodOptionFunc) (*GetTaskCommentListResp, *Response, error) + mockTaskGetTaskFollowerList func(ctx context.Context, request *GetTaskFollowerListReq, options ...MethodOptionFunc) (*GetTaskFollowerListResp, *Response, error) + mockTaskGetTaskList func(ctx context.Context, request *GetTaskListReq, options ...MethodOptionFunc) (*GetTaskListResp, *Response, error) + mockTaskGetTaskReminderList func(ctx context.Context, request *GetTaskReminderListReq, options ...MethodOptionFunc) (*GetTaskReminderListResp, *Response, error) + mockTaskGetTaskSection func(ctx context.Context, request *GetTaskSectionReq, options ...MethodOptionFunc) (*GetTaskSectionResp, *Response, error) + mockTaskGetTaskSectionList func(ctx context.Context, request *GetTaskSectionListReq, options ...MethodOptionFunc) (*GetTaskSectionListResp, *Response, error) + mockTaskGetTaskSubtaskList func(ctx context.Context, request *GetTaskSubtaskListReq, options ...MethodOptionFunc) (*GetTaskSubtaskListResp, *Response, error) + mockTaskGetTaskTaskListOfSection func(ctx context.Context, request *GetTaskTaskListOfSectionReq, options ...MethodOptionFunc) (*GetTaskTaskListOfSectionResp, *Response, error) + mockTaskGetTaskTaskListOfTasklist func(ctx context.Context, request *GetTaskTaskListOfTasklistReq, options ...MethodOptionFunc) (*GetTaskTaskListOfTasklistResp, *Response, error) + mockTaskGetTaskTasklist func(ctx context.Context, request *GetTaskTasklistReq, options ...MethodOptionFunc) (*GetTaskTasklistResp, *Response, error) + mockTaskGetTaskTasklistActivitySubscription func(ctx context.Context, request *GetTaskTasklistActivitySubscriptionReq, options ...MethodOptionFunc) (*GetTaskTasklistActivitySubscriptionResp, *Response, error) + mockTaskGetTaskTasklistActivitySubscriptionList func(ctx context.Context, request *GetTaskTasklistActivitySubscriptionListReq, options ...MethodOptionFunc) (*GetTaskTasklistActivitySubscriptionListResp, *Response, error) + mockTaskGetTaskTasklistList func(ctx context.Context, request *GetTaskTasklistListReq, options ...MethodOptionFunc) (*GetTaskTasklistListResp, *Response, error) + mockTaskRemoveTaskCustomField func(ctx context.Context, request *RemoveTaskCustomFieldReq, options ...MethodOptionFunc) (*RemoveTaskCustomFieldResp, *Response, error) + mockTaskRemoveTaskDependency func(ctx context.Context, request *RemoveTaskDependencyReq, options ...MethodOptionFunc) (*RemoveTaskDependencyResp, *Response, error) + mockTaskRemoveTaskMember func(ctx context.Context, request *RemoveTaskMemberReq, options ...MethodOptionFunc) (*RemoveTaskMemberResp, *Response, error) + mockTaskRemoveTaskReminder func(ctx context.Context, request *RemoveTaskReminderReq, options ...MethodOptionFunc) (*RemoveTaskReminderResp, *Response, error) + mockTaskRemoveTaskTasklist func(ctx context.Context, request *RemoveTaskTasklistReq, options ...MethodOptionFunc) (*RemoveTaskTasklistResp, *Response, error) + mockTaskRemoveTaskTasklistMember func(ctx context.Context, request *RemoveTaskTasklistMemberReq, options ...MethodOptionFunc) (*RemoveTaskTasklistMemberResp, *Response, error) + mockTaskUncompleteTask func(ctx context.Context, request *UncompleteTaskReq, options ...MethodOptionFunc) (*UncompleteTaskResp, *Response, error) + mockTaskUpdateTask func(ctx context.Context, request *UpdateTaskReq, options ...MethodOptionFunc) (*UpdateTaskResp, *Response, error) + mockTaskUpdateTaskComment func(ctx context.Context, request *UpdateTaskCommentReq, options ...MethodOptionFunc) (*UpdateTaskCommentResp, *Response, error) + mockTaskUpdateTaskCustomFieldOption func(ctx context.Context, request *UpdateTaskCustomFieldOptionReq, options ...MethodOptionFunc) (*UpdateTaskCustomFieldOptionResp, *Response, error) + mockTaskUpdateTaskSection func(ctx context.Context, request *UpdateTaskSectionReq, options ...MethodOptionFunc) (*UpdateTaskSectionResp, *Response, error) + mockTaskUpdateTaskTasklist func(ctx context.Context, request *UpdateTaskTasklistReq, options ...MethodOptionFunc) (*UpdateTaskTasklistResp, *Response, error) + mockTaskUpdateTaskTasklistActivitySubscription func(ctx context.Context, request *UpdateTaskTasklistActivitySubscriptionReq, options ...MethodOptionFunc) (*UpdateTaskTasklistActivitySubscriptionResp, *Response, error) + mockTaskUploadTaskAttachment func(ctx context.Context, request *UploadTaskAttachmentReq, options ...MethodOptionFunc) (*UploadTaskAttachmentResp, *Response, error) + mockTaskV1BatchDeleteTaskV1Collaborator func(ctx context.Context, request *BatchDeleteTaskV1CollaboratorReq, options ...MethodOptionFunc) (*BatchDeleteTaskV1CollaboratorResp, *Response, error) + mockTaskV1BatchDeleteTaskV1Follower func(ctx context.Context, request *BatchDeleteTaskV1FollowerReq, options ...MethodOptionFunc) (*BatchDeleteTaskV1FollowerResp, *Response, error) + mockTaskV1CompleteTaskV1 func(ctx context.Context, request *CompleteTaskV1Req, options ...MethodOptionFunc) (*CompleteTaskV1Resp, *Response, error) + mockTaskV1CreateTaskV1 func(ctx context.Context, request *CreateTaskV1Req, options ...MethodOptionFunc) (*CreateTaskV1Resp, *Response, error) + mockTaskV1CreateTaskV1Collaborator func(ctx context.Context, request *CreateTaskV1CollaboratorReq, options ...MethodOptionFunc) (*CreateTaskV1CollaboratorResp, *Response, error) + mockTaskV1CreateTaskV1Comment func(ctx context.Context, request *CreateTaskV1CommentReq, options ...MethodOptionFunc) (*CreateTaskV1CommentResp, *Response, error) + mockTaskV1CreateTaskV1Follower func(ctx context.Context, request *CreateTaskV1FollowerReq, options ...MethodOptionFunc) (*CreateTaskV1FollowerResp, *Response, error) + mockTaskV1CreateTaskV1Reminder func(ctx context.Context, request *CreateTaskV1ReminderReq, options ...MethodOptionFunc) (*CreateTaskV1ReminderResp, *Response, error) + mockTaskV1DeleteTaskV1 func(ctx context.Context, request *DeleteTaskV1Req, options ...MethodOptionFunc) (*DeleteTaskV1Resp, *Response, error) + mockTaskV1DeleteTaskV1Collaborator func(ctx context.Context, request *DeleteTaskV1CollaboratorReq, options ...MethodOptionFunc) (*DeleteTaskV1CollaboratorResp, *Response, error) + mockTaskV1DeleteTaskV1Comment func(ctx context.Context, request *DeleteTaskV1CommentReq, options ...MethodOptionFunc) (*DeleteTaskV1CommentResp, *Response, error) + mockTaskV1DeleteTaskV1Follower func(ctx context.Context, request *DeleteTaskV1FollowerReq, options ...MethodOptionFunc) (*DeleteTaskV1FollowerResp, *Response, error) + mockTaskV1DeleteTaskV1Reminder func(ctx context.Context, request *DeleteTaskV1ReminderReq, options ...MethodOptionFunc) (*DeleteTaskV1ReminderResp, *Response, error) + mockTaskV1GetTaskFollowerV1List func(ctx context.Context, request *GetTaskFollowerV1ListReq, options ...MethodOptionFunc) (*GetTaskFollowerV1ListResp, *Response, error) + mockTaskV1GetTaskV1 func(ctx context.Context, request *GetTaskV1Req, options ...MethodOptionFunc) (*GetTaskV1Resp, *Response, error) + mockTaskV1GetTaskV1CollaboratorList func(ctx context.Context, request *GetTaskV1CollaboratorListReq, options ...MethodOptionFunc) (*GetTaskV1CollaboratorListResp, *Response, error) + mockTaskV1GetTaskV1Comment func(ctx context.Context, request *GetTaskV1CommentReq, options ...MethodOptionFunc) (*GetTaskV1CommentResp, *Response, error) + mockTaskV1GetTaskV1CommentList func(ctx context.Context, request *GetTaskV1CommentListReq, options ...MethodOptionFunc) (*GetTaskV1CommentListResp, *Response, error) + mockTaskV1GetTaskV1List func(ctx context.Context, request *GetTaskV1ListReq, options ...MethodOptionFunc) (*GetTaskV1ListResp, *Response, error) + mockTaskV1GetTaskV1ReminderList func(ctx context.Context, request *GetTaskV1ReminderListReq, options ...MethodOptionFunc) (*GetTaskV1ReminderListResp, *Response, error) + mockTaskV1UncompleteTaskV1 func(ctx context.Context, request *UncompleteTaskV1Req, options ...MethodOptionFunc) (*UncompleteTaskV1Resp, *Response, error) + mockTaskV1UpdateTaskV1 func(ctx context.Context, request *UpdateTaskV1Req, options ...MethodOptionFunc) (*UpdateTaskV1Resp, *Response, error) + mockTaskV1UpdateTaskV1Comment func(ctx context.Context, request *UpdateTaskV1CommentReq, options ...MethodOptionFunc) (*UpdateTaskV1CommentResp, *Response, error) + mockTenantGetTenant func(ctx context.Context, request *GetTenantReq, options ...MethodOptionFunc) (*GetTenantResp, *Response, error) + mockTenantGetTenantProductAssignInfo func(ctx context.Context, request *GetTenantProductAssignInfoReq, options ...MethodOptionFunc) (*GetTenantProductAssignInfoResp, *Response, error) + mockVCApplyVCReserve func(ctx context.Context, request *ApplyVCReserveReq, options ...MethodOptionFunc) (*ApplyVCReserveResp, *Response, error) + mockVCBatchGetVCRoom func(ctx context.Context, request *BatchGetVCRoomReq, options ...MethodOptionFunc) (*BatchGetVCRoomResp, *Response, error) + mockVCBatchGetVCRoomLevel func(ctx context.Context, request *BatchGetVCRoomLevelReq, options ...MethodOptionFunc) (*BatchGetVCRoomLevelResp, *Response, error) + mockVCCreateVCRoom func(ctx context.Context, request *CreateVCRoomReq, options ...MethodOptionFunc) (*CreateVCRoomResp, *Response, error) + mockVCCreateVCRoomLevel func(ctx context.Context, request *CreateVCRoomLevelReq, options ...MethodOptionFunc) (*CreateVCRoomLevelResp, *Response, error) + mockVCDeleteVCReserve func(ctx context.Context, request *DeleteVCReserveReq, options ...MethodOptionFunc) (*DeleteVCReserveResp, *Response, error) + mockVCDeleteVCRoom func(ctx context.Context, request *DeleteVCRoomReq, options ...MethodOptionFunc) (*DeleteVCRoomResp, *Response, error) + mockVCDeleteVCRoomLevel func(ctx context.Context, request *DeleteVCRoomLevelReq, options ...MethodOptionFunc) (*DeleteVCRoomLevelResp, *Response, error) + mockVCDownloadVCExportFile func(ctx context.Context, request *DownloadVCExportFileReq, options ...MethodOptionFunc) (*DownloadVCExportFileResp, *Response, error) + mockVCEndVCMeeting func(ctx context.Context, request *EndVCMeetingReq, options ...MethodOptionFunc) (*EndVCMeetingResp, *Response, error) + mockVCExportVCMeetingList func(ctx context.Context, request *ExportVCMeetingListReq, options ...MethodOptionFunc) (*ExportVCMeetingListResp, *Response, error) + mockVCExportVCParticipantList func(ctx context.Context, request *ExportVCParticipantListReq, options ...MethodOptionFunc) (*ExportVCParticipantListResp, *Response, error) + mockVCExportVCParticipantQualityList func(ctx context.Context, request *ExportVCParticipantQualityListReq, options ...MethodOptionFunc) (*ExportVCParticipantQualityListResp, *Response, error) + mockVCExportVCResourceReservationList func(ctx context.Context, request *ExportVCResourceReservationListReq, options ...MethodOptionFunc) (*ExportVCResourceReservationListResp, *Response, error) + mockVCGetVCAlertList func(ctx context.Context, request *GetVCAlertListReq, options ...MethodOptionFunc) (*GetVCAlertListResp, *Response, error) + mockVCGetVCDailyReport func(ctx context.Context, request *GetVCDailyReportReq, options ...MethodOptionFunc) (*GetVCDailyReportResp, *Response, error) + mockVCGetVCExportTask func(ctx context.Context, request *GetVCExportTaskReq, options ...MethodOptionFunc) (*GetVCExportTaskResp, *Response, error) + mockVCGetVCMeeting func(ctx context.Context, request *GetVCMeetingReq, options ...MethodOptionFunc) (*GetVCMeetingResp, *Response, error) + mockVCGetVCMeetingList func(ctx context.Context, request *GetVCMeetingListReq, options ...MethodOptionFunc) (*GetVCMeetingListResp, *Response, error) + mockVCGetVCMeetingRecording func(ctx context.Context, request *GetVCMeetingRecordingReq, options ...MethodOptionFunc) (*GetVCMeetingRecordingResp, *Response, error) + mockVCGetVCParticipantList func(ctx context.Context, request *GetVCParticipantListReq, options ...MethodOptionFunc) (*GetVCParticipantListResp, *Response, error) + mockVCGetVCParticipantQualityList func(ctx context.Context, request *GetVCParticipantQualityListReq, options ...MethodOptionFunc) (*GetVCParticipantQualityListResp, *Response, error) + mockVCGetVCReserve func(ctx context.Context, request *GetVCReserveReq, options ...MethodOptionFunc) (*GetVCReserveResp, *Response, error) + mockVCGetVCReserveActiveMeeting func(ctx context.Context, request *GetVCReserveActiveMeetingReq, options ...MethodOptionFunc) (*GetVCReserveActiveMeetingResp, *Response, error) + mockVCGetVCReserveConfig func(ctx context.Context, request *GetVCReserveConfigReq, options ...MethodOptionFunc) (*GetVCReserveConfigResp, *Response, error) + mockVCGetVCReserveConfigAdmin func(ctx context.Context, request *GetVCReserveConfigAdminReq, options ...MethodOptionFunc) (*GetVCReserveConfigAdminResp, *Response, error) + mockVCGetVCReserveConfigDisableInform func(ctx context.Context, request *GetVCReserveConfigDisableInformReq, options ...MethodOptionFunc) (*GetVCReserveConfigDisableInformResp, *Response, error) + mockVCGetVCReserveConfigForm func(ctx context.Context, request *GetVCReserveConfigFormReq, options ...MethodOptionFunc) (*GetVCReserveConfigFormResp, *Response, error) + mockVCGetVCResourceReservationList func(ctx context.Context, request *GetVCResourceReservationListReq, options ...MethodOptionFunc) (*GetVCResourceReservationListResp, *Response, error) + mockVCGetVCRoom func(ctx context.Context, request *GetVCRoomReq, options ...MethodOptionFunc) (*GetVCRoomResp, *Response, error) + mockVCGetVCRoomLevel func(ctx context.Context, request *GetVCRoomLevelReq, options ...MethodOptionFunc) (*GetVCRoomLevelResp, *Response, error) + mockVCGetVCRoomLevelList func(ctx context.Context, request *GetVCRoomLevelListReq, options ...MethodOptionFunc) (*GetVCRoomLevelListResp, *Response, error) + mockVCGetVCRoomList func(ctx context.Context, request *GetVCRoomListReq, options ...MethodOptionFunc) (*GetVCRoomListResp, *Response, error) + mockVCGetVCScopeConfig func(ctx context.Context, request *GetVCScopeConfigReq, options ...MethodOptionFunc) (*GetVCScopeConfigResp, *Response, error) + mockVCGetVCTopUserReport func(ctx context.Context, request *GetVCTopUserReportReq, options ...MethodOptionFunc) (*GetVCTopUserReportResp, *Response, error) + mockVCInviteVCMeeting func(ctx context.Context, request *InviteVCMeetingReq, options ...MethodOptionFunc) (*InviteVCMeetingResp, *Response, error) + mockVCKickoutVCMeeting func(ctx context.Context, request *KickoutVCMeetingReq, options ...MethodOptionFunc) (*KickoutVCMeetingResp, *Response, error) + mockVCListVCMeetingByNo func(ctx context.Context, request *ListVCMeetingByNoReq, options ...MethodOptionFunc) (*ListVCMeetingByNoResp, *Response, error) + mockVCSearchVCRoom func(ctx context.Context, request *SearchVCRoomReq, options ...MethodOptionFunc) (*SearchVCRoomResp, *Response, error) + mockVCSearchVCRoomLevel func(ctx context.Context, request *SearchVCRoomLevelReq, options ...MethodOptionFunc) (*SearchVCRoomLevelResp, *Response, error) + mockVCSetVCHostMeeting func(ctx context.Context, request *SetVCHostMeetingReq, options ...MethodOptionFunc) (*SetVCHostMeetingResp, *Response, error) + mockVCSetVCPermissionMeetingRecording func(ctx context.Context, request *SetVCPermissionMeetingRecordingReq, options ...MethodOptionFunc) (*SetVCPermissionMeetingRecordingResp, *Response, error) + mockVCSetVCScopeConfig func(ctx context.Context, request *SetVCScopeConfigReq, options ...MethodOptionFunc) (*SetVCScopeConfigResp, *Response, error) + mockVCStartVCMeetingRecording func(ctx context.Context, request *StartVCMeetingRecordingReq, options ...MethodOptionFunc) (*StartVCMeetingRecordingResp, *Response, error) + mockVCStopVCMeetingRecording func(ctx context.Context, request *StopVCMeetingRecordingReq, options ...MethodOptionFunc) (*StopVCMeetingRecordingResp, *Response, error) + mockVCUpdateVCReserve func(ctx context.Context, request *UpdateVCReserveReq, options ...MethodOptionFunc) (*UpdateVCReserveResp, *Response, error) + mockVCUpdateVCReserveConfig func(ctx context.Context, request *UpdateVCReserveConfigReq, options ...MethodOptionFunc) (*UpdateVCReserveConfigResp, *Response, error) + mockVCUpdateVCReserveConfigAdmin func(ctx context.Context, request *UpdateVCReserveConfigAdminReq, options ...MethodOptionFunc) (*UpdateVCReserveConfigAdminResp, *Response, error) + mockVCUpdateVCReserveConfigDisableInform func(ctx context.Context, request *UpdateVCReserveConfigDisableInformReq, options ...MethodOptionFunc) (*UpdateVCReserveConfigDisableInformResp, *Response, error) + mockVCUpdateVCReserveConfigForm func(ctx context.Context, request *UpdateVCReserveConfigFormReq, options ...MethodOptionFunc) (*UpdateVCReserveConfigFormResp, *Response, error) + mockVCUpdateVCRoom func(ctx context.Context, request *UpdateVCRoomReq, options ...MethodOptionFunc) (*UpdateVCRoomResp, *Response, error) + mockVCUpdateVCRoomLevel func(ctx context.Context, request *UpdateVCRoomLevelReq, options ...MethodOptionFunc) (*UpdateVCRoomLevelResp, *Response, error) + mockVerificationGetVerification func(ctx context.Context, request *GetVerificationReq, options ...MethodOptionFunc) (*GetVerificationResp, *Response, error) + } // Mock return mock client From 1c24621c01d4542e0292b46ad3e9b25d067680e8 Mon Sep 17 00:00:00 2001 From: chyroc Date: Sun, 1 Mar 2026 12:38:13 +0800 Subject: [PATCH 11/12] ci: replace legacy codecov bash uploader --- .github/workflows/test.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7e16a11d..0ae4d274 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -30,7 +30,10 @@ jobs: - name: Test (No Real Feishu API Calls) run: | - go test ./... -count=1 + go test ./... -count=1 -covermode=atomic -coverprofile=coverage.out - name: Upload Cov - run: bash <(curl -s https://codecov.io/bash) + uses: codecov/codecov-action@v5 + with: + files: coverage.out + fail_ci_if_error: true From f5b1c1bfd77d0341371a578ab4b2e35692b3ae52 Mon Sep 17 00:00:00 2001 From: chyroc Date: Sun, 1 Mar 2026 12:39:35 +0800 Subject: [PATCH 12/12] ci: make codecov upload non-blocking on protected branches --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0ae4d274..d2d78c3a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -36,4 +36,4 @@ jobs: uses: codecov/codecov-action@v5 with: files: coverage.out - fail_ci_if_error: true + fail_ci_if_error: false