├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── doc ├── client_expr.png ├── console.jpeg ├── event_prot.png └── qrcode.png ├── lark_oapi ├── __init__.py ├── adapter │ ├── __init__.py │ └── flask │ │ ├── __init__.py │ │ └── parser.py ├── api │ ├── __init__.py │ ├── acs │ │ ├── __init__.py │ │ ├── service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── access_record.py │ │ │ ├── create_rule_external_request.py │ │ │ ├── create_rule_external_request_body.py │ │ │ ├── create_rule_external_response.py │ │ │ ├── create_rule_external_response_body.py │ │ │ ├── create_visitor_request.py │ │ │ ├── create_visitor_request_body.py │ │ │ ├── create_visitor_response.py │ │ │ ├── create_visitor_response_body.py │ │ │ ├── delete_rule_external_request.py │ │ │ ├── delete_rule_external_request_body.py │ │ │ ├── delete_rule_external_response.py │ │ │ ├── delete_rule_external_response_body.py │ │ │ ├── delete_visitor_request.py │ │ │ ├── delete_visitor_request_body.py │ │ │ ├── delete_visitor_response.py │ │ │ ├── delete_visitor_response_body.py │ │ │ ├── department_id.py │ │ │ ├── device.py │ │ │ ├── device_bind_rule_external_request.py │ │ │ ├── device_bind_rule_external_request_body.py │ │ │ ├── device_bind_rule_external_response.py │ │ │ ├── device_bind_rule_external_response_body.py │ │ │ ├── device_external.py │ │ │ ├── feature.py │ │ │ ├── file.py │ │ │ ├── get_access_record_access_photo_request.py │ │ │ ├── get_access_record_access_photo_request_body.py │ │ │ ├── get_access_record_access_photo_response.py │ │ │ ├── get_access_record_access_photo_response_body.py │ │ │ ├── get_rule_external_request.py │ │ │ ├── get_rule_external_request_body.py │ │ │ ├── get_rule_external_response.py │ │ │ ├── get_rule_external_response_body.py │ │ │ ├── get_user_face_request.py │ │ │ ├── get_user_face_request_body.py │ │ │ ├── get_user_face_response.py │ │ │ ├── get_user_face_response_body.py │ │ │ ├── get_user_request.py │ │ │ ├── get_user_request_body.py │ │ │ ├── get_user_response.py │ │ │ ├── get_user_response_body.py │ │ │ ├── list_access_record_request.py │ │ │ ├── list_access_record_request_body.py │ │ │ ├── list_access_record_response.py │ │ │ ├── list_access_record_response_body.py │ │ │ ├── list_device_request.py │ │ │ ├── list_device_request_body.py │ │ │ ├── list_device_response.py │ │ │ ├── list_device_response_body.py │ │ │ ├── list_user_request.py │ │ │ ├── list_user_request_body.py │ │ │ ├── list_user_response.py │ │ │ ├── list_user_response_body.py │ │ │ ├── opening_time_external.py │ │ │ ├── opening_time_period_external.py │ │ │ ├── opening_time_valid_day_external.py │ │ │ ├── p2_acs_access_record_created_v1.py │ │ │ ├── p2_acs_user_updated_v1.py │ │ │ ├── patch_user_request.py │ │ │ ├── patch_user_response.py │ │ │ ├── patch_user_response_body.py │ │ │ ├── property.py │ │ │ ├── rule.py │ │ │ ├── update_user_face_request.py │ │ │ ├── update_user_face_response.py │ │ │ ├── update_user_face_response_body.py │ │ │ ├── user.py │ │ │ ├── user_external.py │ │ │ └── user_id.py │ │ │ ├── processor.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ ├── access_record.py │ │ │ ├── access_record_access_photo.py │ │ │ ├── device.py │ │ │ ├── rule_external.py │ │ │ ├── user.py │ │ │ ├── user_face.py │ │ │ └── visitor.py │ │ │ └── version.py │ ├── admin │ │ ├── __init__.py │ │ ├── service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── admin_dept_ext_contact_stat.py │ │ │ ├── admin_dept_stat.py │ │ │ ├── admin_user_ext_contact_stat.py │ │ │ ├── admin_user_stat.py │ │ │ ├── administrator.py │ │ │ ├── annual_report_map_float.py │ │ │ ├── annual_report_map_int.py │ │ │ ├── api_audit_common_drawers.py │ │ │ ├── api_audit_drawer_info.py │ │ │ ├── audit_android_context.py │ │ │ ├── audit_context.py │ │ │ ├── audit_detail.py │ │ │ ├── audit_event_extend.py │ │ │ ├── audit_info.py │ │ │ ├── audit_ios_context.py │ │ │ ├── audit_object_detail.py │ │ │ ├── audit_object_entity.py │ │ │ ├── audit_pc_context.py │ │ │ ├── audit_recipient_detail.py │ │ │ ├── audit_recipient_entity.py │ │ │ ├── audit_web_context.py │ │ │ ├── badge.py │ │ │ ├── create_badge_grant_request.py │ │ │ ├── create_badge_grant_response.py │ │ │ ├── create_badge_grant_response_body.py │ │ │ ├── create_badge_image_request.py │ │ │ ├── create_badge_image_request_body.py │ │ │ ├── create_badge_image_response.py │ │ │ ├── create_badge_image_response_body.py │ │ │ ├── create_badge_request.py │ │ │ ├── create_badge_response.py │ │ │ ├── create_badge_response_body.py │ │ │ ├── delete_badge_grant_request.py │ │ │ ├── delete_badge_grant_request_body.py │ │ │ ├── delete_badge_grant_response.py │ │ │ ├── delete_badge_grant_response_body.py │ │ │ ├── department_id.py │ │ │ ├── file.py │ │ │ ├── file_list.py │ │ │ ├── get_badge_grant_request.py │ │ │ ├── get_badge_grant_request_body.py │ │ │ ├── get_badge_grant_response.py │ │ │ ├── get_badge_grant_response_body.py │ │ │ ├── get_badge_request.py │ │ │ ├── get_badge_request_body.py │ │ │ ├── get_badge_response.py │ │ │ ├── get_badge_response_body.py │ │ │ ├── grant.py │ │ │ ├── i18n.py │ │ │ ├── list_admin_dept_stat_request.py │ │ │ ├── list_admin_dept_stat_request_body.py │ │ │ ├── list_admin_dept_stat_response.py │ │ │ ├── list_admin_dept_stat_response_body.py │ │ │ ├── list_admin_user_stat_request.py │ │ │ ├── list_admin_user_stat_request_body.py │ │ │ ├── list_admin_user_stat_response.py │ │ │ ├── list_admin_user_stat_response_body.py │ │ │ ├── list_audit_info_request.py │ │ │ ├── list_audit_info_request_body.py │ │ │ ├── list_audit_info_response.py │ │ │ ├── list_audit_info_response_body.py │ │ │ ├── list_badge_grant_request.py │ │ │ ├── list_badge_grant_request_body.py │ │ │ ├── list_badge_grant_response.py │ │ │ ├── list_badge_grant_response_body.py │ │ │ ├── list_badge_request.py │ │ │ ├── list_badge_request_body.py │ │ │ ├── list_badge_response.py │ │ │ ├── list_badge_response_body.py │ │ │ ├── operator_detail.py │ │ │ ├── operator_name.py │ │ │ ├── password.py │ │ │ ├── reset_password_request.py │ │ │ ├── reset_password_request_body.py │ │ │ ├── reset_password_response.py │ │ │ ├── reset_password_response_body.py │ │ │ ├── rule_detail.py │ │ │ ├── splash_page_stat.py │ │ │ ├── task.py │ │ │ ├── update_badge_grant_request.py │ │ │ ├── update_badge_grant_response.py │ │ │ ├── update_badge_grant_response_body.py │ │ │ ├── update_badge_request.py │ │ │ ├── update_badge_response.py │ │ │ ├── update_badge_response_body.py │ │ │ ├── user.py │ │ │ ├── user_annual_report.py │ │ │ ├── user_report2021.py │ │ │ ├── user_report2022.py │ │ │ ├── user_report2023.py │ │ │ └── user_report2024.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ ├── admin_dept_stat.py │ │ │ ├── admin_user_stat.py │ │ │ ├── audit_info.py │ │ │ ├── badge.py │ │ │ ├── badge_grant.py │ │ │ ├── badge_image.py │ │ │ └── password.py │ │ │ └── version.py │ ├── aily │ │ ├── __init__.py │ │ ├── service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── aily_knowledge_ask_process_data.py │ │ │ ├── aily_knowledge_dataset.py │ │ │ ├── aily_knowledge_datatable.py │ │ │ ├── aily_knowledge_docs.py │ │ │ ├── aily_knowledge_faq.py │ │ │ ├── aily_knowledge_file.py │ │ │ ├── aily_knowledge_folder.py │ │ │ ├── aily_knowledge_helpdesk.py │ │ │ ├── aily_knowledge_message.py │ │ │ ├── aily_knowledge_web.py │ │ │ ├── aily_knowledge_wiki_space.py │ │ │ ├── aily_mention.py │ │ │ ├── aily_message.py │ │ │ ├── aily_message_file.py │ │ │ ├── aily_message_file_filter.py │ │ │ ├── aily_message_file_preview.py │ │ │ ├── aily_message_filter.py │ │ │ ├── aily_sender.py │ │ │ ├── aily_session.py │ │ │ ├── app.py │ │ │ ├── ask_app_knowledge_request.py │ │ │ ├── ask_app_knowledge_request_body.py │ │ │ ├── ask_app_knowledge_response.py │ │ │ ├── ask_app_knowledge_response_body.py │ │ │ ├── builtin_action.py │ │ │ ├── cancel_aily_session_run_request.py │ │ │ ├── cancel_aily_session_run_request_body.py │ │ │ ├── cancel_aily_session_run_response.py │ │ │ ├── cancel_aily_session_run_response_body.py │ │ │ ├── channel.py │ │ │ ├── create_aily_session_aily_message_request.py │ │ │ ├── create_aily_session_aily_message_request_body.py │ │ │ ├── create_aily_session_aily_message_response.py │ │ │ ├── create_aily_session_aily_message_response_body.py │ │ │ ├── create_aily_session_request.py │ │ │ ├── create_aily_session_request_body.py │ │ │ ├── create_aily_session_response.py │ │ │ ├── create_aily_session_response_body.py │ │ │ ├── create_aily_session_run_request.py │ │ │ ├── create_aily_session_run_request_body.py │ │ │ ├── create_aily_session_run_response.py │ │ │ ├── create_aily_session_run_response_body.py │ │ │ ├── create_app_data_asset_request.py │ │ │ ├── create_app_data_asset_request_body.py │ │ │ ├── create_app_data_asset_response.py │ │ │ ├── create_app_data_asset_response_body.py │ │ │ ├── data_asset.py │ │ │ ├── data_asset_chunk.py │ │ │ ├── data_asset_chunk_source_info.py │ │ │ ├── data_asset_file.py │ │ │ ├── data_asset_import_knowledge_file.py │ │ │ ├── data_asset_import_knowledge_helpdesk.py │ │ │ ├── data_asset_import_knowledge_lark_doc.py │ │ │ ├── data_asset_import_knowledge_setting.py │ │ │ ├── data_asset_import_knowledge_wiki.py │ │ │ ├── data_asset_import_knowledge_wiki_sub_doc.py │ │ │ ├── data_asset_item.py │ │ │ ├── data_asset_knowledge_chunk_setting.py │ │ │ ├── data_asset_resource.py │ │ │ ├── data_asset_tag.py │ │ │ ├── dataset_source.py │ │ │ ├── delete_aily_session_request.py │ │ │ ├── delete_aily_session_request_body.py │ │ │ ├── delete_aily_session_response.py │ │ │ ├── delete_aily_session_response_body.py │ │ │ ├── delete_app_data_asset_request.py │ │ │ ├── delete_app_data_asset_response.py │ │ │ ├── delete_app_data_asset_response_body.py │ │ │ ├── department_id.py │ │ │ ├── field.py │ │ │ ├── field_setting.py │ │ │ ├── get_aily_session_aily_message_request.py │ │ │ ├── get_aily_session_aily_message_request_body.py │ │ │ ├── get_aily_session_aily_message_response.py │ │ │ ├── get_aily_session_aily_message_response_body.py │ │ │ ├── get_aily_session_request.py │ │ │ ├── get_aily_session_request_body.py │ │ │ ├── get_aily_session_response.py │ │ │ ├── get_aily_session_response_body.py │ │ │ ├── get_aily_session_run_request.py │ │ │ ├── get_aily_session_run_request_body.py │ │ │ ├── get_aily_session_run_response.py │ │ │ ├── get_aily_session_run_response_body.py │ │ │ ├── get_app_data_asset_request.py │ │ │ ├── get_app_data_asset_response.py │ │ │ ├── get_app_data_asset_response_body.py │ │ │ ├── get_app_skill_request.py │ │ │ ├── get_app_skill_request_body.py │ │ │ ├── get_app_skill_response.py │ │ │ ├── get_app_skill_response_body.py │ │ │ ├── intent.py │ │ │ ├── kctx.py │ │ │ ├── knowledge.py │ │ │ ├── list_aily_session_aily_message_request.py │ │ │ ├── list_aily_session_aily_message_request_body.py │ │ │ ├── list_aily_session_aily_message_response.py │ │ │ ├── list_aily_session_aily_message_response_body.py │ │ │ ├── list_aily_session_run_request.py │ │ │ ├── list_aily_session_run_request_body.py │ │ │ ├── list_aily_session_run_response.py │ │ │ ├── list_aily_session_run_response_body.py │ │ │ ├── list_app_data_asset_request.py │ │ │ ├── list_app_data_asset_request_body.py │ │ │ ├── list_app_data_asset_response.py │ │ │ ├── list_app_data_asset_response_body.py │ │ │ ├── list_app_data_asset_tag_request.py │ │ │ ├── list_app_data_asset_tag_request_body.py │ │ │ ├── list_app_data_asset_tag_response.py │ │ │ ├── list_app_data_asset_tag_response_body.py │ │ │ ├── list_app_skill_request.py │ │ │ ├── list_app_skill_request_body.py │ │ │ ├── list_app_skill_response.py │ │ │ ├── list_app_skill_response_body.py │ │ │ ├── message.py │ │ │ ├── message_error.py │ │ │ ├── message_progress.py │ │ │ ├── message_with_operation.py │ │ │ ├── object_setting.py │ │ │ ├── order_condition.py │ │ │ ├── progress_item.py │ │ │ ├── record_error.py │ │ │ ├── record_query_option.py │ │ │ ├── record_result.py │ │ │ ├── run.py │ │ │ ├── run_error.py │ │ │ ├── sender.py │ │ │ ├── session.py │ │ │ ├── skill.py │ │ │ ├── skill_base_info.py │ │ │ ├── skill_call.py │ │ │ ├── skill_global_variable.py │ │ │ ├── skill_instance.py │ │ │ ├── source_setting.py │ │ │ ├── start_app_skill_request.py │ │ │ ├── start_app_skill_request_body.py │ │ │ ├── start_app_skill_response.py │ │ │ ├── start_app_skill_response_body.py │ │ │ ├── suggestion.py │ │ │ ├── table.py │ │ │ ├── update_aily_session_request.py │ │ │ ├── update_aily_session_request_body.py │ │ │ ├── update_aily_session_response.py │ │ │ ├── update_aily_session_response_body.py │ │ │ ├── upload_file_app_data_asset_request.py │ │ │ ├── upload_file_app_data_asset_request_body.py │ │ │ ├── upload_file_app_data_asset_response.py │ │ │ └── upload_file_app_data_asset_response_body.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ ├── aily_session.py │ │ │ ├── aily_session_aily_message.py │ │ │ ├── aily_session_run.py │ │ │ ├── app_data_asset.py │ │ │ ├── app_data_asset_tag.py │ │ │ ├── app_knowledge.py │ │ │ └── app_skill.py │ │ │ └── version.py │ ├── apaas │ │ ├── __init__.py │ │ ├── service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── add_assignee_approval_task_request.py │ │ │ ├── add_assignee_approval_task_request_body.py │ │ │ ├── add_assignee_approval_task_response.py │ │ │ ├── agree_approval_task_request.py │ │ │ ├── agree_approval_task_request_body.py │ │ │ ├── agree_approval_task_response.py │ │ │ ├── allowed_rollbaclk_task_item_type.py │ │ │ ├── app.py │ │ │ ├── app_env.py │ │ │ ├── app_roles_info.py │ │ │ ├── approval_comment.py │ │ │ ├── approval_instance.py │ │ │ ├── approval_task.py │ │ │ ├── attachment.py │ │ │ ├── audit_log_detail.py │ │ │ ├── audit_log_device_info.py │ │ │ ├── audit_log_es_field.py │ │ │ ├── audit_log_list_application_audit_log_request.py │ │ │ ├── audit_log_list_application_audit_log_response.py │ │ │ ├── audit_log_list_application_audit_log_response_body.py │ │ │ ├── audit_log_login_info.py │ │ │ ├── audit_log_net_info.py │ │ │ ├── audit_log_op_info.py │ │ │ ├── avatar.py │ │ │ ├── basic_info.py │ │ │ ├── batch_create_application_object_record_request.py │ │ │ ├── batch_create_application_object_record_request_body.py │ │ │ ├── batch_create_application_object_record_response.py │ │ │ ├── batch_create_application_object_record_response_body.py │ │ │ ├── batch_create_authorization_application_record_permission_member_request.py │ │ │ ├── batch_create_authorization_application_record_permission_member_request_body.py │ │ │ ├── batch_create_authorization_application_record_permission_member_response.py │ │ │ ├── batch_create_authorization_application_role_member_request.py │ │ │ ├── batch_create_authorization_application_role_member_request_body.py │ │ │ ├── batch_create_authorization_application_role_member_response.py │ │ │ ├── batch_delete_application_object_record_request.py │ │ │ ├── batch_delete_application_object_record_request_body.py │ │ │ ├── batch_delete_application_object_record_response.py │ │ │ ├── batch_delete_application_object_record_response_body.py │ │ │ ├── batch_query_application_object_record_request.py │ │ │ ├── batch_query_application_object_record_request_body.py │ │ │ ├── batch_query_application_object_record_response.py │ │ │ ├── batch_query_application_object_record_response_body.py │ │ │ ├── batch_remove_authorization_application_record_permission_member_request.py │ │ │ ├── batch_remove_authorization_application_record_permission_member_request_body.py │ │ │ ├── batch_remove_authorization_application_record_permission_member_response.py │ │ │ ├── batch_remove_authorization_application_role_member_request.py │ │ │ ├── batch_remove_authorization_application_role_member_request_body.py │ │ │ ├── batch_remove_authorization_application_role_member_response.py │ │ │ ├── batch_update_application_object_record_request.py │ │ │ ├── batch_update_application_object_record_request_body.py │ │ │ ├── batch_update_application_object_record_response.py │ │ │ ├── batch_update_application_object_record_response_body.py │ │ │ ├── cancel_approval_instance_request.py │ │ │ ├── cancel_approval_instance_request_body.py │ │ │ ├── cancel_approval_instance_response.py │ │ │ ├── cc_user_task_request.py │ │ │ ├── cc_user_task_request_body.py │ │ │ ├── cc_user_task_response.py │ │ │ ├── chat_group_user_task_request.py │ │ │ ├── chat_group_user_task_request_body.py │ │ │ ├── chat_group_user_task_response.py │ │ │ ├── chat_group_user_task_response_body.py │ │ │ ├── client_isv_tenant.py │ │ │ ├── component_lib_basic.py │ │ │ ├── component_lib_ref.py │ │ │ ├── component_lib_version.py │ │ │ ├── condition.py │ │ │ ├── condition_value.py │ │ │ ├── connector_instance.py │ │ │ ├── connector_instance_definition.py │ │ │ ├── connector_instance_ref_info.py │ │ │ ├── create_application_object_record_request.py │ │ │ ├── create_application_object_record_request_body.py │ │ │ ├── create_application_object_record_response.py │ │ │ ├── create_application_object_record_response_body.py │ │ │ ├── criterion.py │ │ │ ├── data.py │ │ │ ├── data_change_log_detail_application_audit_log_request.py │ │ │ ├── data_change_log_detail_application_audit_log_response.py │ │ │ ├── data_change_log_detail_application_audit_log_response_body.py │ │ │ ├── data_change_logs_list_application_audit_log_request.py │ │ │ ├── data_change_logs_list_application_audit_log_response.py │ │ │ ├── data_change_logs_list_application_audit_log_response_body.py │ │ │ ├── data_model_permission_access.py │ │ │ ├── data_model_permission_v2.py │ │ │ ├── dataset.py │ │ │ ├── dataset_field.py │ │ │ ├── dataset_field_type.py │ │ │ ├── dataset_lookup_user.py │ │ │ ├── dataset_source.py │ │ │ ├── dataset_source_setting.py │ │ │ ├── delete_application_object_record_request.py │ │ │ ├── delete_application_object_record_response.py │ │ │ ├── department_id.py │ │ │ ├── environment_variable.py │ │ │ ├── environment_variable_filter.py │ │ │ ├── event.py │ │ │ ├── event_subscribe_rule.py │ │ │ ├── event_subscriber.py │ │ │ ├── execute_application_flow_request.py │ │ │ ├── execute_application_flow_request_body.py │ │ │ ├── execute_application_flow_response.py │ │ │ ├── execute_application_flow_response_body.py │ │ │ ├── expediting_user_task_request.py │ │ │ ├── expediting_user_task_request_body.py │ │ │ ├── expediting_user_task_response.py │ │ │ ├── external_user.py │ │ │ ├── field_api_name_simple_info.py │ │ │ ├── field_permission_access.py │ │ │ ├── field_permission_config_v2.py │ │ │ ├── field_permission_v2.py │ │ │ ├── file.py │ │ │ ├── flow.py │ │ │ ├── function.py │ │ │ ├── get_application_audit_log_request.py │ │ │ ├── get_application_audit_log_response.py │ │ │ ├── get_application_audit_log_response_body.py │ │ │ ├── get_application_environment_variable_request.py │ │ │ ├── get_application_environment_variable_response.py │ │ │ ├── get_application_environment_variable_response_body.py │ │ │ ├── get_application_role_member_request.py │ │ │ ├── get_application_role_member_response.py │ │ │ ├── get_application_role_member_response_body.py │ │ │ ├── global_option.py │ │ │ ├── global_option_element.py │ │ │ ├── global_option_filter.py │ │ │ ├── global_option_label.py │ │ │ ├── i18n.py │ │ │ ├── icon.py │ │ │ ├── invoke_application_function_request.py │ │ │ ├── invoke_application_function_request_body.py │ │ │ ├── invoke_application_function_response.py │ │ │ ├── invoke_application_function_response_body.py │ │ │ ├── kctx.py │ │ │ ├── label.py │ │ │ ├── list_app_request.py │ │ │ ├── list_app_response.py │ │ │ ├── list_app_response_body.py │ │ │ ├── list_seat_activity_request.py │ │ │ ├── list_seat_activity_response.py │ │ │ ├── list_seat_activity_response_body.py │ │ │ ├── list_seat_assignment_request.py │ │ │ ├── list_seat_assignment_response.py │ │ │ ├── list_seat_assignment_response_body.py │ │ │ ├── log.py │ │ │ ├── lookup_with_avatar.py │ │ │ ├── metric.py │ │ │ ├── object.py │ │ │ ├── object_field.py │ │ │ ├── object_field_type_for_query.py │ │ │ ├── object_fields_for_query.py │ │ │ ├── object_filter.py │ │ │ ├── object_for_query.py │ │ │ ├── object_meta.py │ │ │ ├── object_search_layout.py │ │ │ ├── object_settings.py │ │ │ ├── object_settings_for_query.py │ │ │ ├── operation_permission_access.py │ │ │ ├── operation_permission_v2.py │ │ │ ├── oql_query_application_object_request.py │ │ │ ├── oql_query_application_object_request_body.py │ │ │ ├── oql_query_application_object_response.py │ │ │ ├── oql_query_application_object_response_body.py │ │ │ ├── order_condition.py │ │ │ ├── page_permission_access.py │ │ │ ├── page_permission_v2.py │ │ │ ├── patch_application_object_record_request.py │ │ │ ├── patch_application_object_record_request_body.py │ │ │ ├── patch_application_object_record_response.py │ │ │ ├── permission_name_info.py │ │ │ ├── query_application_environment_variable_request.py │ │ │ ├── query_application_environment_variable_request_body.py │ │ │ ├── query_application_environment_variable_response.py │ │ │ ├── query_application_environment_variable_response_body.py │ │ │ ├── query_application_object_record_request.py │ │ │ ├── query_application_object_record_request_body.py │ │ │ ├── query_application_object_record_response.py │ │ │ ├── query_application_object_record_response_body.py │ │ │ ├── query_user_task_request.py │ │ │ ├── query_user_task_request_body.py │ │ │ ├── query_user_task_response.py │ │ │ ├── query_user_task_response_body.py │ │ │ ├── record.py │ │ │ ├── record_group_by_item.py │ │ │ ├── record_permission.py │ │ │ ├── record_permission_v2.py │ │ │ ├── record_result.py │ │ │ ├── record_result_error.py │ │ │ ├── record_scope_v2.py │ │ │ ├── records_batch_update_workspace_table_request.py │ │ │ ├── records_batch_update_workspace_table_request_body.py │ │ │ ├── records_batch_update_workspace_table_response.py │ │ │ ├── records_batch_update_workspace_table_response_body.py │ │ │ ├── records_delete_workspace_table_request.py │ │ │ ├── records_delete_workspace_table_response.py │ │ │ ├── records_get_workspace_table_request.py │ │ │ ├── records_get_workspace_table_response.py │ │ │ ├── records_get_workspace_table_response_body.py │ │ │ ├── records_patch_workspace_table_request.py │ │ │ ├── records_patch_workspace_table_request_body.py │ │ │ ├── records_patch_workspace_table_response.py │ │ │ ├── records_patch_workspace_table_response_body.py │ │ │ ├── records_post_workspace_table_request.py │ │ │ ├── records_post_workspace_table_request_body.py │ │ │ ├── records_post_workspace_table_response.py │ │ │ ├── records_post_workspace_table_response_body.py │ │ │ ├── reject_approval_task_request.py │ │ │ ├── reject_approval_task_request_body.py │ │ │ ├── reject_approval_task_response.py │ │ │ ├── role.py │ │ │ ├── role_api_name_simple_info.py │ │ │ ├── role_basic.py │ │ │ ├── role_basic_mask.py │ │ │ ├── role_member.py │ │ │ ├── rollback_points_user_task_request.py │ │ │ ├── rollback_points_user_task_request_body.py │ │ │ ├── rollback_points_user_task_response.py │ │ │ ├── rollback_points_user_task_response_body.py │ │ │ ├── rollback_user_task_request.py │ │ │ ├── rollback_user_task_request_body.py │ │ │ ├── rollback_user_task_response.py │ │ │ ├── runtime_log.py │ │ │ ├── runtime_log_tag.py │ │ │ ├── sandbox_tenant.py │ │ │ ├── search_application_object_request.py │ │ │ ├── search_application_object_request_body.py │ │ │ ├── search_application_object_response.py │ │ │ ├── search_application_object_response_body.py │ │ │ ├── search_object_param.py │ │ │ ├── seat_activity.py │ │ │ ├── seat_assignment.py │ │ │ ├── sort.py │ │ │ ├── sql_commands_workspace_request.py │ │ │ ├── sql_commands_workspace_request_body.py │ │ │ ├── sql_commands_workspace_response.py │ │ │ ├── sql_commands_workspace_response_body.py │ │ │ ├── sub_page_simple_info.py │ │ │ ├── sub_page_simple_info_v2.py │ │ │ ├── task_info.py │ │ │ ├── tenant.py │ │ │ ├── transfer_approval_task_request.py │ │ │ ├── transfer_approval_task_request_body.py │ │ │ ├── transfer_approval_task_response.py │ │ │ ├── user.py │ │ │ ├── user_scope_v2.py │ │ │ ├── user_simple_info.py │ │ │ ├── user_task.py │ │ │ ├── user_task_opinion.py │ │ │ ├── user_task_summary_type.py │ │ │ ├── user_task_wf_instance_type.py │ │ │ ├── user_with_avatar.py │ │ │ ├── views_get_workspace_view_request.py │ │ │ ├── views_get_workspace_view_response.py │ │ │ ├── views_get_workspace_view_response_body.py │ │ │ └── workflow_instance_log.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ ├── app.py │ │ │ ├── application_audit_log.py │ │ │ ├── application_environment_variable.py │ │ │ ├── application_flow.py │ │ │ ├── application_function.py │ │ │ ├── application_object.py │ │ │ ├── application_object_record.py │ │ │ ├── application_record_permission_member.py │ │ │ ├── application_role_member.py │ │ │ ├── approval_instance.py │ │ │ ├── approval_task.py │ │ │ ├── seat_activity.py │ │ │ ├── seat_assignment.py │ │ │ ├── user_task.py │ │ │ ├── workspace.py │ │ │ ├── workspace_table.py │ │ │ └── workspace_view.py │ │ │ └── version.py │ ├── application │ │ ├── __init__.py │ │ ├── service.py │ │ └── v6 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── accessibility.py │ │ │ ├── app_ability.py │ │ │ ├── app_ability_bot.py │ │ │ ├── app_ability_bot_i18n.py │ │ │ ├── app_ability_web.py │ │ │ ├── app_admin_user.py │ │ │ ├── app_badge.py │ │ │ ├── app_collaborator.py │ │ │ ├── app_common_category.py │ │ │ ├── app_config_callback.py │ │ │ ├── app_config_contacts_range.py │ │ │ ├── app_config_event.py │ │ │ ├── app_config_scope.py │ │ │ ├── app_config_scope_item.py │ │ │ ├── app_config_security.py │ │ │ ├── app_config_security_item.py │ │ │ ├── app_config_visibility.py │ │ │ ├── app_contacts_range_id_list.py │ │ │ ├── app_custom_category.py │ │ │ ├── app_custom_category_i18n_info.py │ │ │ ├── app_i18n_info.py │ │ │ ├── app_message_trend_item.py │ │ │ ├── app_recommend_rule.py │ │ │ ├── app_recommend_rule_item_info.py │ │ │ ├── app_recommend_rule_item_info_i18n_name.py │ │ │ ├── app_recommend_rule_visibility_info.py │ │ │ ├── app_scope.py │ │ │ ├── app_scope_i18n_info.py │ │ │ ├── app_scopes.py │ │ │ ├── app_usage_trend_items.py │ │ │ ├── app_version_id.py │ │ │ ├── app_version_remark.py │ │ │ ├── app_version_remark_event.py │ │ │ ├── app_visibility.py │ │ │ ├── app_visibility_event.py │ │ │ ├── app_visibility_id_list.py │ │ │ ├── app_visibility_item.py │ │ │ ├── app_visible_list.py │ │ │ ├── app_visible_list_event.py │ │ │ ├── application.py │ │ │ ├── application_app_contacts_range.py │ │ │ ├── application_app_usage.py │ │ │ ├── application_app_version.py │ │ │ ├── application_app_version_event.py │ │ │ ├── application_department_app_usage.py │ │ │ ├── application_event_owner.py │ │ │ ├── application_feedback.py │ │ │ ├── application_owner.py │ │ │ ├── application_visibility.py │ │ │ ├── application_visibility_department_white_black_info.py │ │ │ ├── application_visibility_group_white_black_info.py │ │ │ ├── application_visibility_user_white_black_info.py │ │ │ ├── apply_scope_request.py │ │ │ ├── apply_scope_request_body.py │ │ │ ├── apply_scope_response.py │ │ │ ├── apply_scope_response_body.py │ │ │ ├── block.py │ │ │ ├── block_i18n_info.py │ │ │ ├── bot.py │ │ │ ├── bot_display_info.py │ │ │ ├── callback.py │ │ │ ├── check_white_black_list_application_visibility_request.py │ │ │ ├── check_white_black_list_application_visibility_request_body.py │ │ │ ├── check_white_black_list_application_visibility_response.py │ │ │ ├── check_white_black_list_application_visibility_response_body.py │ │ │ ├── client_badge_num.py │ │ │ ├── cloud_doc.py │ │ │ ├── cloud_doc_i18n_info.py │ │ │ ├── contacts_range_configuration_application_request.py │ │ │ ├── contacts_range_configuration_application_request_body.py │ │ │ ├── contacts_range_configuration_application_response.py │ │ │ ├── contacts_range_configuration_application_response_body.py │ │ │ ├── contacts_range_suggest_application_app_version_request.py │ │ │ ├── contacts_range_suggest_application_app_version_request_body.py │ │ │ ├── contacts_range_suggest_application_app_version_response.py │ │ │ ├── contacts_range_suggest_application_app_version_response_body.py │ │ │ ├── department_id.py │ │ │ ├── department_overview_application_app_usage_request.py │ │ │ ├── department_overview_application_app_usage_request_body.py │ │ │ ├── department_overview_application_app_usage_response.py │ │ │ ├── department_overview_application_app_usage_response_body.py │ │ │ ├── docs_block.py │ │ │ ├── event.py │ │ │ ├── event_and_callback_encrypt_strategy.py │ │ │ ├── gadget.py │ │ │ ├── get_application_app_version_request.py │ │ │ ├── get_application_app_version_request_body.py │ │ │ ├── get_application_app_version_response.py │ │ │ ├── get_application_app_version_response_body.py │ │ │ ├── get_application_collaborators_request.py │ │ │ ├── get_application_collaborators_request_body.py │ │ │ ├── get_application_collaborators_response.py │ │ │ ├── get_application_collaborators_response_body.py │ │ │ ├── get_application_request.py │ │ │ ├── get_application_request_body.py │ │ │ ├── get_application_response.py │ │ │ ├── get_application_response_body.py │ │ │ ├── list_app_recommend_rule_request.py │ │ │ ├── list_app_recommend_rule_request_body.py │ │ │ ├── list_app_recommend_rule_response.py │ │ │ ├── list_app_recommend_rule_response_body.py │ │ │ ├── list_application_app_version_request.py │ │ │ ├── list_application_app_version_request_body.py │ │ │ ├── list_application_app_version_response.py │ │ │ ├── list_application_app_version_response_body.py │ │ │ ├── list_application_feedback_request.py │ │ │ ├── list_application_feedback_request_body.py │ │ │ ├── list_application_feedback_response.py │ │ │ ├── list_application_feedback_response_body.py │ │ │ ├── list_application_request.py │ │ │ ├── list_application_request_body.py │ │ │ ├── list_application_response.py │ │ │ ├── list_application_response_body.py │ │ │ ├── list_scope_request.py │ │ │ ├── list_scope_request_body.py │ │ │ ├── list_scope_response.py │ │ │ ├── list_scope_response_body.py │ │ │ ├── message_action.py │ │ │ ├── message_action_i18n_info.py │ │ │ ├── message_overview_item.py │ │ │ ├── message_push_overview_application_app_usage_request.py │ │ │ ├── message_push_overview_application_app_usage_request_body.py │ │ │ ├── message_push_overview_application_app_usage_response.py │ │ │ ├── message_push_overview_application_app_usage_response_body.py │ │ │ ├── miniprogram.py │ │ │ ├── msg_action.py │ │ │ ├── msg_action_i18n_info.py │ │ │ ├── navigate.py │ │ │ ├── navigate_meta.py │ │ │ ├── openapi_option.py │ │ │ ├── operator.py │ │ │ ├── overview_application_app_usage_request.py │ │ │ ├── overview_application_app_usage_request_body.py │ │ │ ├── overview_application_app_usage_response.py │ │ │ ├── overview_application_app_usage_response_body.py │ │ │ ├── p2_application_application_app_version_audit_v6.py │ │ │ ├── p2_application_application_app_version_publish_apply_v6.py │ │ │ ├── p2_application_application_app_version_publish_revoke_v6.py │ │ │ ├── p2_application_application_created_v6.py │ │ │ ├── p2_application_application_feedback_created_v6.py │ │ │ ├── p2_application_application_feedback_updated_v6.py │ │ │ ├── p2_application_application_visibility_added_v6.py │ │ │ ├── p2_application_bot_menu_v6.py │ │ │ ├── patch_application_app_version_request.py │ │ │ ├── patch_application_app_version_response.py │ │ │ ├── patch_application_app_version_response_body.py │ │ │ ├── patch_application_contacts_range_request.py │ │ │ ├── patch_application_contacts_range_request_body.py │ │ │ ├── patch_application_contacts_range_response.py │ │ │ ├── patch_application_contacts_range_response_body.py │ │ │ ├── patch_application_feedback_request.py │ │ │ ├── patch_application_feedback_request_body.py │ │ │ ├── patch_application_feedback_response.py │ │ │ ├── patch_application_feedback_response_body.py │ │ │ ├── patch_application_request.py │ │ │ ├── patch_application_response.py │ │ │ ├── patch_application_response_body.py │ │ │ ├── patch_application_visibility_request.py │ │ │ ├── patch_application_visibility_request_body.py │ │ │ ├── patch_application_visibility_response.py │ │ │ ├── patch_application_visibility_response_body.py │ │ │ ├── plus_menu.py │ │ │ ├── scope.py │ │ │ ├── security.py │ │ │ ├── set_app_badge_request.py │ │ │ ├── set_app_badge_response.py │ │ │ ├── set_app_badge_response_body.py │ │ │ ├── subscribed_event.py │ │ │ ├── underauditlist_application_request.py │ │ │ ├── underauditlist_application_request_body.py │ │ │ ├── underauditlist_application_response.py │ │ │ ├── underauditlist_application_response_body.py │ │ │ ├── update_application_collaborators_request.py │ │ │ ├── update_application_collaborators_request_body.py │ │ │ ├── update_application_collaborators_response.py │ │ │ ├── update_application_collaborators_response_body.py │ │ │ ├── update_application_management_request.py │ │ │ ├── update_application_management_request_body.py │ │ │ ├── update_application_management_response.py │ │ │ ├── update_application_management_response_body.py │ │ │ ├── update_application_owner_request.py │ │ │ ├── update_application_owner_request_body.py │ │ │ ├── update_application_owner_response.py │ │ │ ├── update_application_owner_response_body.py │ │ │ ├── usage_overview_item.py │ │ │ ├── usage_trend_item.py │ │ │ ├── usage_user.py │ │ │ ├── user.py │ │ │ ├── user_id.py │ │ │ ├── web_app.py │ │ │ ├── widget.py │ │ │ └── workplace_widget.py │ │ │ ├── processor.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ ├── app_badge.py │ │ │ ├── app_recommend_rule.py │ │ │ ├── application.py │ │ │ ├── application_app_usage.py │ │ │ ├── application_app_version.py │ │ │ ├── application_collaborators.py │ │ │ ├── application_contacts_range.py │ │ │ ├── application_feedback.py │ │ │ ├── application_management.py │ │ │ ├── application_owner.py │ │ │ ├── application_visibility.py │ │ │ ├── bot.py │ │ │ └── scope.py │ │ │ └── version.py │ ├── approval │ │ ├── __init__.py │ │ ├── service.py │ │ └── v4 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── action_config.py │ │ │ ├── add_sign_instance_request.py │ │ │ ├── add_sign_instance_request_body.py │ │ │ ├── add_sign_instance_response.py │ │ │ ├── add_sign_instance_response_body.py │ │ │ ├── approval.py │ │ │ ├── approval_approver_ccer.py │ │ │ ├── approval_config.py │ │ │ ├── approval_create.py │ │ │ ├── approval_create_external.py │ │ │ ├── approval_create_viewers.py │ │ │ ├── approval_event.py │ │ │ ├── approval_form.py │ │ │ ├── approval_node.py │ │ │ ├── approval_node_info.py │ │ │ ├── approval_setting.py │ │ │ ├── approval_viewer.py │ │ │ ├── approval_viewer_info.py │ │ │ ├── approve_task_request.py │ │ │ ├── approve_task_response.py │ │ │ ├── approve_task_response_body.py │ │ │ ├── approver_chosen_range.py │ │ │ ├── approver_range.py │ │ │ ├── cancel_instance_request.py │ │ │ ├── cancel_instance_response.py │ │ │ ├── cancel_instance_response_body.py │ │ │ ├── cc_instance_request.py │ │ │ ├── cc_instance_response.py │ │ │ ├── cc_instance_response_body.py │ │ │ ├── cc_node.py │ │ │ ├── cc_search.py │ │ │ ├── cc_search_item.py │ │ │ ├── cc_search_node.py │ │ │ ├── check_external_instance_request.py │ │ │ ├── check_external_instance_request_body.py │ │ │ ├── check_external_instance_response.py │ │ │ ├── check_external_instance_response_body.py │ │ │ ├── comment.py │ │ │ ├── comment_at_info.py │ │ │ ├── comment_reply.py │ │ │ ├── comment_request.py │ │ │ ├── connector_log.py │ │ │ ├── connector_log_data.py │ │ │ ├── count.py │ │ │ ├── create_approval_request.py │ │ │ ├── create_approval_response.py │ │ │ ├── create_approval_response_body.py │ │ │ ├── create_external_approval_request.py │ │ │ ├── create_external_approval_response.py │ │ │ ├── create_external_approval_response_body.py │ │ │ ├── create_external_instance_request.py │ │ │ ├── create_external_instance_response.py │ │ │ ├── create_external_instance_response_body.py │ │ │ ├── create_instance_comment_request.py │ │ │ ├── create_instance_comment_response.py │ │ │ ├── create_instance_comment_response_body.py │ │ │ ├── create_instance_request.py │ │ │ ├── create_instance_response.py │ │ │ ├── create_instance_response_body.py │ │ │ ├── definition.py │ │ │ ├── delete_instance_comment_request.py │ │ │ ├── delete_instance_comment_request_body.py │ │ │ ├── delete_instance_comment_response.py │ │ │ ├── delete_instance_comment_response_body.py │ │ │ ├── department_id.py │ │ │ ├── district.py │ │ │ ├── district_base_info.py │ │ │ ├── entity_process_record.py │ │ │ ├── exteranl_instance_check.py │ │ │ ├── exteranl_instance_check_response.py │ │ │ ├── external_approval.py │ │ │ ├── external_approval_item.py │ │ │ ├── external_instance.py │ │ │ ├── external_instance_form.py │ │ │ ├── external_instance_link.py │ │ │ ├── external_instance_task.py │ │ │ ├── external_instance_task_node.py │ │ │ ├── external_task_item.py │ │ │ ├── external_task_list.py │ │ │ ├── field_group.py │ │ │ ├── file.py │ │ │ ├── file_url.py │ │ │ ├── get_approval_request.py │ │ │ ├── get_approval_request_body.py │ │ │ ├── get_approval_response.py │ │ │ ├── get_approval_response_body.py │ │ │ ├── get_external_approval_request.py │ │ │ ├── get_external_approval_request_body.py │ │ │ ├── get_external_approval_response.py │ │ │ ├── get_external_approval_response_body.py │ │ │ ├── get_instance_request.py │ │ │ ├── get_instance_request_body.py │ │ │ ├── get_instance_response.py │ │ │ ├── get_instance_response_body.py │ │ │ ├── i18n_resource.py │ │ │ ├── i18n_resource_text.py │ │ │ ├── instance.py │ │ │ ├── instance_cancel.py │ │ │ ├── instance_cc.py │ │ │ ├── instance_cc_user.py │ │ │ ├── instance_comment.py │ │ │ ├── instance_create.py │ │ │ ├── instance_detail_scenario_context.py │ │ │ ├── instance_draft.py │ │ │ ├── instance_search.py │ │ │ ├── instance_search_approval.py │ │ │ ├── instance_search_approval_external.py │ │ │ ├── instance_search_group.py │ │ │ ├── instance_search_item.py │ │ │ ├── instance_search_link.py │ │ │ ├── instance_search_node.py │ │ │ ├── instance_task.py │ │ │ ├── instance_timeline.py │ │ │ ├── list_external_task_request.py │ │ │ ├── list_external_task_request_body.py │ │ │ ├── list_external_task_response.py │ │ │ ├── list_external_task_response_body.py │ │ │ ├── list_instance_comment_request.py │ │ │ ├── list_instance_comment_request_body.py │ │ │ ├── list_instance_comment_response.py │ │ │ ├── list_instance_comment_response_body.py │ │ │ ├── list_instance_request.py │ │ │ ├── list_instance_request_body.py │ │ │ ├── list_instance_response.py │ │ │ ├── list_instance_response_body.py │ │ │ ├── manageable_definition.py │ │ │ ├── manageable_instance_item.py │ │ │ ├── manageable_instance_node.py │ │ │ ├── message.py │ │ │ ├── my_ai_card_action.py │ │ │ ├── my_ai_card_value.py │ │ │ ├── my_ai_comment.py │ │ │ ├── my_ai_instance.py │ │ │ ├── my_ai_instance_detail_extra.py │ │ │ ├── my_ai_message_callback_request.py │ │ │ ├── my_ai_object_scenario_context.py │ │ │ ├── my_ai_present.py │ │ │ ├── my_ai_present_card_variables.py │ │ │ ├── my_ai_search_definition_scenario_context.py │ │ │ ├── my_ai_simple_command_result.py │ │ │ ├── my_ai_task.py │ │ │ ├── node_approver.py │ │ │ ├── node_auto_approval.py │ │ │ ├── node_cc.py │ │ │ ├── object_context.py │ │ │ ├── open_widget_instance.py │ │ │ ├── p2_approval_approval_updated_v4.py │ │ │ ├── preview_instance_request.py │ │ │ ├── preview_instance_request_body.py │ │ │ ├── preview_instance_response.py │ │ │ ├── preview_instance_response_body.py │ │ │ ├── preview_node.py │ │ │ ├── process_record.py │ │ │ ├── query_instance_request.py │ │ │ ├── query_instance_response.py │ │ │ ├── query_instance_response_body.py │ │ │ ├── query_task_request.py │ │ │ ├── query_task_request_body.py │ │ │ ├── query_task_response.py │ │ │ ├── query_task_response_body.py │ │ │ ├── reason.py │ │ │ ├── reject_task_request.py │ │ │ ├── reject_task_response.py │ │ │ ├── reject_task_response_body.py │ │ │ ├── remedy_group.py │ │ │ ├── remove_instance_comment_request.py │ │ │ ├── remove_instance_comment_request_body.py │ │ │ ├── remove_instance_comment_response.py │ │ │ ├── remove_instance_comment_response_body.py │ │ │ ├── resubmit_task_request.py │ │ │ ├── resubmit_task_response.py │ │ │ ├── resubmit_task_response_body.py │ │ │ ├── revert_event.py │ │ │ ├── rollback_node.py │ │ │ ├── search_cc_instance_request.py │ │ │ ├── search_cc_instance_response.py │ │ │ ├── search_cc_instance_response_body.py │ │ │ ├── search_task_request.py │ │ │ ├── search_task_response.py │ │ │ ├── search_task_response_body.py │ │ │ ├── shift_group.py │ │ │ ├── sign_group.py │ │ │ ├── specified_rollback.py │ │ │ ├── specified_rollback_instance_request.py │ │ │ ├── specified_rollback_instance_response.py │ │ │ ├── specified_rollback_instance_response_body.py │ │ │ ├── subscribe_approval_request.py │ │ │ ├── subscribe_approval_request_body.py │ │ │ ├── subscribe_approval_response.py │ │ │ ├── subscribe_approval_response_body.py │ │ │ ├── swap_shift_detail.py │ │ │ ├── task.py │ │ │ ├── task_approve.py │ │ │ ├── task_resubmit.py │ │ │ ├── task_rollback.py │ │ │ ├── task_search.py │ │ │ ├── task_search_item.py │ │ │ ├── task_search_node.py │ │ │ ├── task_transfer.py │ │ │ ├── task_urls.py │ │ │ ├── transfer_task_request.py │ │ │ ├── transfer_task_response.py │ │ │ ├── transfer_task_response_body.py │ │ │ ├── trip_group.py │ │ │ ├── trip_group_schedule.py │ │ │ ├── trusteeship_instance_cache_config.py │ │ │ ├── trusteeship_urls.py │ │ │ ├── unsubscribe_approval_request.py │ │ │ ├── unsubscribe_approval_request_body.py │ │ │ ├── unsubscribe_approval_response.py │ │ │ ├── unsubscribe_approval_response_body.py │ │ │ ├── url_detail.py │ │ │ ├── user.py │ │ │ ├── user_id.py │ │ │ └── widget_instance.py │ │ │ ├── processor.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ ├── approval.py │ │ │ ├── external_approval.py │ │ │ ├── external_instance.py │ │ │ ├── external_task.py │ │ │ ├── instance.py │ │ │ ├── instance_comment.py │ │ │ └── task.py │ │ │ └── version.py │ ├── attendance │ │ ├── __init__.py │ │ ├── service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── anti_cheat_config.py │ │ │ ├── anti_cheat_punch.py │ │ │ ├── approval_daily_detail.py │ │ │ ├── approval_info.py │ │ │ ├── archive_field.py │ │ │ ├── archive_field_data.py │ │ │ ├── archive_report_data.py │ │ │ ├── archive_report_meta.py │ │ │ ├── area.py │ │ │ ├── arrange_shift_group.py │ │ │ ├── batch_create_temp_user_daily_shift_request.py │ │ │ ├── batch_create_temp_user_daily_shift_request_body.py │ │ │ ├── batch_create_temp_user_daily_shift_response.py │ │ │ ├── batch_create_temp_user_daily_shift_response_body.py │ │ │ ├── batch_create_user_daily_shift_request.py │ │ │ ├── batch_create_user_daily_shift_request_body.py │ │ │ ├── batch_create_user_daily_shift_response.py │ │ │ ├── batch_create_user_daily_shift_response_body.py │ │ │ ├── batch_create_user_flow_request.py │ │ │ ├── batch_create_user_flow_request_body.py │ │ │ ├── batch_create_user_flow_response.py │ │ │ ├── batch_create_user_flow_response_body.py │ │ │ ├── batch_del_user_flow_request.py │ │ │ ├── batch_del_user_flow_request_body.py │ │ │ ├── batch_del_user_flow_response.py │ │ │ ├── batch_del_user_flow_response_body.py │ │ │ ├── child_field.py │ │ │ ├── child_item.py │ │ │ ├── clock_in_abnormal_settings.py │ │ │ ├── coordinate.py │ │ │ ├── create_bpm_out_record.py │ │ │ ├── create_bpm_remedy_records.py │ │ │ ├── create_group_request.py │ │ │ ├── create_group_request_body.py │ │ │ ├── create_group_response.py │ │ │ ├── create_group_response_body.py │ │ │ ├── create_shift_request.py │ │ │ ├── create_shift_response.py │ │ │ ├── create_shift_response_body.py │ │ │ ├── create_user_approval_request.py │ │ │ ├── create_user_approval_request_body.py │ │ │ ├── create_user_approval_response.py │ │ │ ├── create_user_approval_response_body.py │ │ │ ├── create_user_task_remedy_request.py │ │ │ ├── create_user_task_remedy_response.py │ │ │ ├── create_user_task_remedy_response_body.py │ │ │ ├── del_report_archive_rule_request.py │ │ │ ├── del_report_archive_rule_request_body.py │ │ │ ├── del_report_archive_rule_response.py │ │ │ ├── del_report_archive_rule_response_body.py │ │ │ ├── delete_group_request.py │ │ │ ├── delete_group_request_body.py │ │ │ ├── delete_group_response.py │ │ │ ├── delete_group_response_body.py │ │ │ ├── delete_shift_request.py │ │ │ ├── delete_shift_request_body.py │ │ │ ├── delete_shift_response.py │ │ │ ├── delete_shift_response_body.py │ │ │ ├── department_id.py │ │ │ ├── download_file_request.py │ │ │ ├── download_file_request_body.py │ │ │ ├── download_file_response.py │ │ │ ├── download_file_response_body.py │ │ │ ├── duration_item.py │ │ │ ├── export_archive_user_record_req.py │ │ │ ├── field.py │ │ │ ├── file.py │ │ │ ├── filter_item.py │ │ │ ├── flexible_rule.py │ │ │ ├── free_clock_setting.py │ │ │ ├── free_punch_cfg.py │ │ │ ├── get_group_request.py │ │ │ ├── get_group_request_body.py │ │ │ ├── get_group_response.py │ │ │ ├── get_group_response_body.py │ │ │ ├── get_leave_employ_expire_record_request.py │ │ │ ├── get_leave_employ_expire_record_request_body.py │ │ │ ├── get_leave_employ_expire_record_response.py │ │ │ ├── get_leave_employ_expire_record_response_body.py │ │ │ ├── get_shift_request.py │ │ │ ├── get_shift_request_body.py │ │ │ ├── get_shift_response.py │ │ │ ├── get_shift_response_body.py │ │ │ ├── get_user_flow_request.py │ │ │ ├── get_user_flow_request_body.py │ │ │ ├── get_user_flow_response.py │ │ │ ├── get_user_flow_response_body.py │ │ │ ├── group.py │ │ │ ├── group_meta.py │ │ │ ├── i18n_map.py │ │ │ ├── i18n_names.py │ │ │ ├── i18n_resource.py │ │ │ ├── item.py │ │ │ ├── lang_text.py │ │ │ ├── late_off_late_on_rule.py │ │ │ ├── late_off_late_on_setting.py │ │ │ ├── leave_accrual_record.py │ │ │ ├── leave_employ_expire_record.py │ │ │ ├── leave_need_punch_cfg.py │ │ │ ├── list_archive_rule_request.py │ │ │ ├── list_archive_rule_request_body.py │ │ │ ├── list_archive_rule_response.py │ │ │ ├── list_archive_rule_response_body.py │ │ │ ├── list_group_request.py │ │ │ ├── list_group_request_body.py │ │ │ ├── list_group_response.py │ │ │ ├── list_group_response_body.py │ │ │ ├── list_shift_request.py │ │ │ ├── list_shift_request_body.py │ │ │ ├── list_shift_response.py │ │ │ ├── list_shift_response_body.py │ │ │ ├── list_user_group_request.py │ │ │ ├── list_user_group_request_body.py │ │ │ ├── list_user_group_response.py │ │ │ ├── list_user_group_response_body.py │ │ │ ├── location.py │ │ │ ├── location_info.py │ │ │ ├── location_info_event.py │ │ │ ├── location_record.py │ │ │ ├── location_setting.py │ │ │ ├── machine.py │ │ │ ├── member_status_change.py │ │ │ ├── modify_user_setting_request.py │ │ │ ├── modify_user_setting_request_body.py │ │ │ ├── modify_user_setting_response.py │ │ │ ├── modify_user_setting_response_body.py │ │ │ ├── normal_leave_balance.py │ │ │ ├── normal_leave_type.py │ │ │ ├── normal_leave_user_account.py │ │ │ ├── normal_leave_user_first_work_time.py │ │ │ ├── open_apply_time_range.py │ │ │ ├── out_record.py │ │ │ ├── out_time.py │ │ │ ├── overtime_apply_detail.py │ │ │ ├── overtime_approval.py │ │ │ ├── overtime_clock_cfg.py │ │ │ ├── overtime_detail.py │ │ │ ├── overtime_rule.py │ │ │ ├── overtime_time_range.py │ │ │ ├── patch_leave_accrual_record_request.py │ │ │ ├── patch_leave_accrual_record_request_body.py │ │ │ ├── patch_leave_accrual_record_response.py │ │ │ ├── patch_leave_accrual_record_response_body.py │ │ │ ├── process_approval_info_request.py │ │ │ ├── process_approval_info_request_body.py │ │ │ ├── process_approval_info_response.py │ │ │ ├── process_approval_info_response_body.py │ │ │ ├── punch_member.py │ │ │ ├── punch_special_date_shift.py │ │ │ ├── punch_time_rule.py │ │ │ ├── punch_time_simple_rule.py │ │ │ ├── query_shift_request.py │ │ │ ├── query_shift_request_body.py │ │ │ ├── query_shift_response.py │ │ │ ├── query_shift_response_body.py │ │ │ ├── query_user_allowed_remedys_user_task_remedy_request.py │ │ │ ├── query_user_allowed_remedys_user_task_remedy_request_body.py │ │ │ ├── query_user_allowed_remedys_user_task_remedy_response.py │ │ │ ├── query_user_allowed_remedys_user_task_remedy_response_body.py │ │ │ ├── query_user_approval_request.py │ │ │ ├── query_user_approval_request_body.py │ │ │ ├── query_user_approval_response.py │ │ │ ├── query_user_approval_response_body.py │ │ │ ├── query_user_daily_shift_request.py │ │ │ ├── query_user_daily_shift_request_body.py │ │ │ ├── query_user_daily_shift_response.py │ │ │ ├── query_user_daily_shift_response_body.py │ │ │ ├── query_user_flow_request.py │ │ │ ├── query_user_flow_request_body.py │ │ │ ├── query_user_flow_response.py │ │ │ ├── query_user_flow_response_body.py │ │ │ ├── query_user_setting_request.py │ │ │ ├── query_user_setting_request_body.py │ │ │ ├── query_user_setting_response.py │ │ │ ├── query_user_setting_response_body.py │ │ │ ├── query_user_stats_data_request.py │ │ │ ├── query_user_stats_data_request_body.py │ │ │ ├── query_user_stats_data_response.py │ │ │ ├── query_user_stats_data_response_body.py │ │ │ ├── query_user_stats_field_request.py │ │ │ ├── query_user_stats_field_request_body.py │ │ │ ├── query_user_stats_field_response.py │ │ │ ├── query_user_stats_field_response_body.py │ │ │ ├── query_user_stats_view_request.py │ │ │ ├── query_user_stats_view_request_body.py │ │ │ ├── query_user_stats_view_response.py │ │ │ ├── query_user_stats_view_response_body.py │ │ │ ├── query_user_task_remedy_request.py │ │ │ ├── query_user_task_remedy_request_body.py │ │ │ ├── query_user_task_remedy_response.py │ │ │ ├── query_user_task_remedy_response_body.py │ │ │ ├── query_user_task_request.py │ │ │ ├── query_user_task_request_body.py │ │ │ ├── query_user_task_response.py │ │ │ ├── query_user_task_response_body.py │ │ │ ├── region_place.py │ │ │ ├── remedy_record.py │ │ │ ├── report_data.py │ │ │ ├── report_field.py │ │ │ ├── report_row.py │ │ │ ├── report_value.py │ │ │ ├── rest_rule.py │ │ │ ├── rest_time_flexible_config.py │ │ │ ├── scan_wifi_info.py │ │ │ ├── schedule.py │ │ │ ├── scope_group.py │ │ │ ├── scope_value.py │ │ │ ├── search_group_request.py │ │ │ ├── search_group_request_body.py │ │ │ ├── search_group_response.py │ │ │ ├── search_group_response_body.py │ │ │ ├── shift.py │ │ │ ├── shift_attendance_time_config.py │ │ │ ├── shift_group_user.py │ │ │ ├── shift_middle_time_rule.py │ │ │ ├── statistics_field.py │ │ │ ├── status_change.py │ │ │ ├── task_result.py │ │ │ ├── time_range.py │ │ │ ├── time_range_list.py │ │ │ ├── update_user_stats_view_request.py │ │ │ ├── update_user_stats_view_request_body.py │ │ │ ├── update_user_stats_view_response.py │ │ │ ├── update_user_stats_view_response_body.py │ │ │ ├── upload_file_request.py │ │ │ ├── upload_file_request_body.py │ │ │ ├── upload_file_response.py │ │ │ ├── upload_file_response_body.py │ │ │ ├── upload_report_archive_rule_request.py │ │ │ ├── upload_report_archive_rule_request_body.py │ │ │ ├── upload_report_archive_rule_response.py │ │ │ ├── upload_report_archive_rule_response_body.py │ │ │ ├── user_allowed_remedy.py │ │ │ ├── user_approval.py │ │ │ ├── user_arrange_shift_group.py │ │ │ ├── user_base.py │ │ │ ├── user_daily_shift.py │ │ │ ├── user_flow.py │ │ │ ├── user_id.py │ │ │ ├── user_leave.py │ │ │ ├── user_normal_leave_type.py │ │ │ ├── user_out.py │ │ │ ├── user_overtime_work.py │ │ │ ├── user_setting.py │ │ │ ├── user_shift_groups_list.py │ │ │ ├── user_stats_data.py │ │ │ ├── user_stats_data_cell.py │ │ │ ├── user_stats_data_duration.py │ │ │ ├── user_stats_data_feature.py │ │ │ ├── user_stats_field.py │ │ │ ├── user_stats_fields_query_archive_rule_request.py │ │ │ ├── user_stats_fields_query_archive_rule_request_body.py │ │ │ ├── user_stats_fields_query_archive_rule_response.py │ │ │ ├── user_stats_fields_query_archive_rule_response_body.py │ │ │ ├── user_stats_view.py │ │ │ ├── user_sub_type_account.py │ │ │ ├── user_task.py │ │ │ ├── user_task_remedy.py │ │ │ ├── user_tmp_daily_shift.py │ │ │ ├── user_trip.py │ │ │ ├── wifi_info.py │ │ │ ├── wifi_info_event.py │ │ │ ├── work_time.py │ │ │ └── work_time_apply_data.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ ├── approval_info.py │ │ │ ├── archive_rule.py │ │ │ ├── file.py │ │ │ ├── group.py │ │ │ ├── leave_accrual_record.py │ │ │ ├── leave_employ_expire_record.py │ │ │ ├── shift.py │ │ │ ├── user_approval.py │ │ │ ├── user_daily_shift.py │ │ │ ├── user_flow.py │ │ │ ├── user_setting.py │ │ │ ├── user_stats_data.py │ │ │ ├── user_stats_field.py │ │ │ ├── user_stats_view.py │ │ │ ├── user_task.py │ │ │ └── user_task_remedy.py │ │ │ └── version.py │ ├── auth │ │ ├── __init__.py │ │ ├── service.py │ │ └── v3 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── app_access_token.py │ │ │ ├── app_ticket.py │ │ │ ├── create_app_access_token_request.py │ │ │ ├── create_app_access_token_request_body.py │ │ │ ├── create_app_access_token_response.py │ │ │ ├── create_app_access_token_response_body.py │ │ │ ├── create_tenant_access_token_request.py │ │ │ ├── create_tenant_access_token_request_body.py │ │ │ ├── create_tenant_access_token_response.py │ │ │ ├── create_tenant_access_token_response_body.py │ │ │ ├── department_id.py │ │ │ ├── internal_app_access_token_request.py │ │ │ ├── internal_app_access_token_request_body.py │ │ │ ├── internal_app_access_token_response.py │ │ │ ├── internal_app_access_token_response_body.py │ │ │ ├── internal_tenant_access_token_request.py │ │ │ ├── internal_tenant_access_token_request_body.py │ │ │ ├── internal_tenant_access_token_response.py │ │ │ ├── internal_tenant_access_token_response_body.py │ │ │ ├── resend_app_ticket_request.py │ │ │ ├── resend_app_ticket_request_body.py │ │ │ ├── resend_app_ticket_response.py │ │ │ ├── resend_app_ticket_response_body.py │ │ │ ├── revoke_token_event.py │ │ │ └── tenant_access_token.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ ├── app_access_token.py │ │ │ ├── app_ticket.py │ │ │ └── tenant_access_token.py │ │ │ └── version.py │ ├── authen │ │ ├── __init__.py │ │ ├── service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── create_access_token_request.py │ │ │ ├── create_access_token_request_body.py │ │ │ ├── create_access_token_response.py │ │ │ ├── create_access_token_response_body.py │ │ │ ├── create_oidc_access_token_request.py │ │ │ ├── create_oidc_access_token_request_body.py │ │ │ ├── create_oidc_access_token_response.py │ │ │ ├── create_oidc_access_token_response_body.py │ │ │ ├── create_oidc_refresh_access_token_request.py │ │ │ ├── create_oidc_refresh_access_token_request_body.py │ │ │ ├── create_oidc_refresh_access_token_response.py │ │ │ ├── create_oidc_refresh_access_token_response_body.py │ │ │ ├── create_refresh_access_token_request.py │ │ │ ├── create_refresh_access_token_request_body.py │ │ │ ├── create_refresh_access_token_response.py │ │ │ ├── create_refresh_access_token_response_body.py │ │ │ ├── department_id.py │ │ │ ├── get_authorize_request.py │ │ │ ├── get_authorize_response.py │ │ │ ├── get_authorize_response_body.py │ │ │ ├── get_user_info_request.py │ │ │ ├── get_user_info_request_body.py │ │ │ ├── get_user_info_response.py │ │ │ ├── get_user_info_response_body.py │ │ │ ├── token_info.py │ │ │ ├── user_access_token_info.py │ │ │ └── user_info.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ ├── access_token.py │ │ │ ├── authorize.py │ │ │ ├── oidc_access_token.py │ │ │ ├── oidc_refresh_access_token.py │ │ │ ├── refresh_access_token.py │ │ │ └── user_info.py │ │ │ └── version.py │ ├── baike │ │ ├── __init__.py │ │ ├── service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── abbreviation.py │ │ │ ├── baike_image.py │ │ │ ├── classification.py │ │ │ ├── classification_filter.py │ │ │ ├── correct_error.py │ │ │ ├── correct_info.py │ │ │ ├── correct_pair.py │ │ │ ├── create_draft_request.py │ │ │ ├── create_draft_response.py │ │ │ ├── create_draft_response_body.py │ │ │ ├── create_entity_request.py │ │ │ ├── create_entity_response.py │ │ │ ├── create_entity_response_body.py │ │ │ ├── department_id.py │ │ │ ├── display_status.py │ │ │ ├── download_file_request.py │ │ │ ├── download_file_request_body.py │ │ │ ├── download_file_response.py │ │ │ ├── download_file_response_body.py │ │ │ ├── draft.py │ │ │ ├── entity.py │ │ │ ├── entity_word.py │ │ │ ├── extract_entity_request.py │ │ │ ├── extract_entity_request_body.py │ │ │ ├── extract_entity_response.py │ │ │ ├── extract_entity_response_body.py │ │ │ ├── file.py │ │ │ ├── get_entity_request.py │ │ │ ├── get_entity_request_body.py │ │ │ ├── get_entity_response.py │ │ │ ├── get_entity_response_body.py │ │ │ ├── highlight_entity_request.py │ │ │ ├── highlight_entity_request_body.py │ │ │ ├── highlight_entity_response.py │ │ │ ├── highlight_entity_response_body.py │ │ │ ├── list_classification_request.py │ │ │ ├── list_classification_request_body.py │ │ │ ├── list_classification_response.py │ │ │ ├── list_classification_response_body.py │ │ │ ├── list_entity_request.py │ │ │ ├── list_entity_request_body.py │ │ │ ├── list_entity_response.py │ │ │ ├── list_entity_response_body.py │ │ │ ├── match_entity_request.py │ │ │ ├── match_entity_request_body.py │ │ │ ├── match_entity_response.py │ │ │ ├── match_entity_response_body.py │ │ │ ├── match_info.py │ │ │ ├── outer_info.py │ │ │ ├── phrase.py │ │ │ ├── referer.py │ │ │ ├── related_meta.py │ │ │ ├── search_entity_request.py │ │ │ ├── search_entity_request_body.py │ │ │ ├── search_entity_response.py │ │ │ ├── search_entity_response_body.py │ │ │ ├── span.py │ │ │ ├── statistical_report.py │ │ │ ├── statistics.py │ │ │ ├── term.py │ │ │ ├── update_draft_request.py │ │ │ ├── update_draft_response.py │ │ │ ├── update_draft_response_body.py │ │ │ ├── update_entity_request.py │ │ │ ├── update_entity_response.py │ │ │ ├── update_entity_response_body.py │ │ │ ├── upload_file_request.py │ │ │ ├── upload_file_response.py │ │ │ ├── upload_file_response_body.py │ │ │ └── word_info.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ ├── classification.py │ │ │ ├── draft.py │ │ │ ├── entity.py │ │ │ └── file.py │ │ │ └── version.py │ ├── base │ │ ├── __init__.py │ │ ├── service.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── app.py │ │ │ ├── block_role.py │ │ │ ├── condition_group.py │ │ │ ├── create_app_role_request.py │ │ │ ├── create_app_role_response.py │ │ │ ├── create_app_role_response_body.py │ │ │ ├── department_id.py │ │ │ ├── ext_info.py │ │ │ ├── icon.py │ │ │ ├── list_app_role_request.py │ │ │ ├── list_app_role_response.py │ │ │ ├── list_app_role_response_body.py │ │ │ ├── meta.py │ │ │ ├── other_rec_rule.py │ │ │ ├── rec_rule.py │ │ │ ├── rec_rule_condition.py │ │ │ ├── role.py │ │ │ ├── table_role.py │ │ │ ├── template_info.py │ │ │ ├── update_app_role_request.py │ │ │ ├── update_app_role_response.py │ │ │ └── update_app_role_response_body.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ └── app_role.py │ │ │ └── version.py │ ├── bitable │ │ ├── __init__.py │ │ ├── service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── allowed_edit_modes.py │ │ │ ├── app.py │ │ │ ├── app_block_workflow.py │ │ │ ├── app_connector.py │ │ │ ├── app_dashboard.py │ │ │ ├── app_field_property_auto_serial.py │ │ │ ├── app_field_property_auto_serial_options.py │ │ │ ├── app_field_property_location.py │ │ │ ├── app_role.py │ │ │ ├── app_role_block_role.py │ │ │ ├── app_role_member.py │ │ │ ├── app_role_member_id.py │ │ │ ├── app_role_table_role.py │ │ │ ├── app_role_table_role_field_perm.py │ │ │ ├── app_role_table_role_rec_rule.py │ │ │ ├── app_role_table_role_rec_rule_condition.py │ │ │ ├── app_table.py │ │ │ ├── app_table_create_header.py │ │ │ ├── app_table_field.py │ │ │ ├── app_table_field_description.py │ │ │ ├── app_table_field_for_list.py │ │ │ ├── app_table_field_property.py │ │ │ ├── app_table_field_property_filter_info.py │ │ │ ├── app_table_field_property_filter_info_condition.py │ │ │ ├── app_table_field_property_lookup_filter.py │ │ │ ├── app_table_field_property_option.py │ │ │ ├── app_table_field_property_type.py │ │ │ ├── app_table_field_property_type_ui_property.py │ │ │ ├── app_table_form.py │ │ │ ├── app_table_form_field.py │ │ │ ├── app_table_form_patched_field.py │ │ │ ├── app_table_record.py │ │ │ ├── app_table_view.py │ │ │ ├── app_table_view_property.py │ │ │ ├── app_table_view_property_filter_info.py │ │ │ ├── app_table_view_property_filter_info_condition.py │ │ │ ├── app_table_view_property_hierarchy_config.py │ │ │ ├── app_workflow.py │ │ │ ├── attachment.py │ │ │ ├── batch_create_app_role_member_request.py │ │ │ ├── batch_create_app_role_member_request_body.py │ │ │ ├── batch_create_app_role_member_response.py │ │ │ ├── batch_create_app_role_member_response_body.py │ │ │ ├── batch_create_app_table_record_request.py │ │ │ ├── batch_create_app_table_record_request_body.py │ │ │ ├── batch_create_app_table_record_response.py │ │ │ ├── batch_create_app_table_record_response_body.py │ │ │ ├── batch_create_app_table_request.py │ │ │ ├── batch_create_app_table_request_body.py │ │ │ ├── batch_create_app_table_response.py │ │ │ ├── batch_create_app_table_response_body.py │ │ │ ├── batch_delete_app_role_member_request.py │ │ │ ├── batch_delete_app_role_member_request_body.py │ │ │ ├── batch_delete_app_role_member_response.py │ │ │ ├── batch_delete_app_role_member_response_body.py │ │ │ ├── batch_delete_app_table_record_request.py │ │ │ ├── batch_delete_app_table_record_request_body.py │ │ │ ├── batch_delete_app_table_record_response.py │ │ │ ├── batch_delete_app_table_record_response_body.py │ │ │ ├── batch_delete_app_table_request.py │ │ │ ├── batch_delete_app_table_request_body.py │ │ │ ├── batch_delete_app_table_response.py │ │ │ ├── batch_delete_app_table_response_body.py │ │ │ ├── batch_get_app_table_record_request.py │ │ │ ├── batch_get_app_table_record_request_body.py │ │ │ ├── batch_get_app_table_record_response.py │ │ │ ├── batch_get_app_table_record_response_body.py │ │ │ ├── batch_update_app_table_record_request.py │ │ │ ├── batch_update_app_table_record_request_body.py │ │ │ ├── batch_update_app_table_record_response.py │ │ │ ├── batch_update_app_table_record_response_body.py │ │ │ ├── children_filter.py │ │ │ ├── condition.py │ │ │ ├── copy_app_dashboard_request.py │ │ │ ├── copy_app_dashboard_request_body.py │ │ │ ├── copy_app_dashboard_response.py │ │ │ ├── copy_app_dashboard_response_body.py │ │ │ ├── copy_app_request.py │ │ │ ├── copy_app_request_body.py │ │ │ ├── copy_app_response.py │ │ │ ├── copy_app_response_body.py │ │ │ ├── create_app_request.py │ │ │ ├── create_app_response.py │ │ │ ├── create_app_response_body.py │ │ │ ├── create_app_role_member_request.py │ │ │ ├── create_app_role_member_response.py │ │ │ ├── create_app_role_member_response_body.py │ │ │ ├── create_app_role_request.py │ │ │ ├── create_app_role_response.py │ │ │ ├── create_app_role_response_body.py │ │ │ ├── create_app_table_field_request.py │ │ │ ├── create_app_table_field_response.py │ │ │ ├── create_app_table_field_response_body.py │ │ │ ├── create_app_table_record_request.py │ │ │ ├── create_app_table_record_response.py │ │ │ ├── create_app_table_record_response_body.py │ │ │ ├── create_app_table_request.py │ │ │ ├── create_app_table_request_body.py │ │ │ ├── create_app_table_response.py │ │ │ ├── create_app_table_response_body.py │ │ │ ├── create_app_table_view_request.py │ │ │ ├── create_app_table_view_response.py │ │ │ ├── create_app_table_view_response_body.py │ │ │ ├── delete_app_role_member_request.py │ │ │ ├── delete_app_role_member_request_body.py │ │ │ ├── delete_app_role_member_response.py │ │ │ ├── delete_app_role_member_response_body.py │ │ │ ├── delete_app_role_request.py │ │ │ ├── delete_app_role_request_body.py │ │ │ ├── delete_app_role_response.py │ │ │ ├── delete_app_role_response_body.py │ │ │ ├── delete_app_table_field_request.py │ │ │ ├── delete_app_table_field_request_body.py │ │ │ ├── delete_app_table_field_response.py │ │ │ ├── delete_app_table_field_response_body.py │ │ │ ├── delete_app_table_record_request.py │ │ │ ├── delete_app_table_record_request_body.py │ │ │ ├── delete_app_table_record_response.py │ │ │ ├── delete_app_table_record_response_body.py │ │ │ ├── delete_app_table_request.py │ │ │ ├── delete_app_table_request_body.py │ │ │ ├── delete_app_table_response.py │ │ │ ├── delete_app_table_response_body.py │ │ │ ├── delete_app_table_view_request.py │ │ │ ├── delete_app_table_view_request_body.py │ │ │ ├── delete_app_table_view_response.py │ │ │ ├── delete_app_table_view_response_body.py │ │ │ ├── delete_record.py │ │ │ ├── department_id.py │ │ │ ├── display_app.py │ │ │ ├── display_app_v2.py │ │ │ ├── filter_info.py │ │ │ ├── get_app_request.py │ │ │ ├── get_app_request_body.py │ │ │ ├── get_app_response.py │ │ │ ├── get_app_response_body.py │ │ │ ├── get_app_table_form_request.py │ │ │ ├── get_app_table_form_request_body.py │ │ │ ├── get_app_table_form_response.py │ │ │ ├── get_app_table_form_response_body.py │ │ │ ├── get_app_table_record_request.py │ │ │ ├── get_app_table_record_request_body.py │ │ │ ├── get_app_table_record_response.py │ │ │ ├── get_app_table_record_response_body.py │ │ │ ├── get_app_table_view_request.py │ │ │ ├── get_app_table_view_request_body.py │ │ │ ├── get_app_table_view_response.py │ │ │ ├── get_app_table_view_response_body.py │ │ │ ├── group.py │ │ │ ├── list_app_dashboard_request.py │ │ │ ├── list_app_dashboard_request_body.py │ │ │ ├── list_app_dashboard_response.py │ │ │ ├── list_app_dashboard_response_body.py │ │ │ ├── list_app_role_member_request.py │ │ │ ├── list_app_role_member_request_body.py │ │ │ ├── list_app_role_member_response.py │ │ │ ├── list_app_role_member_response_body.py │ │ │ ├── list_app_role_request.py │ │ │ ├── list_app_role_request_body.py │ │ │ ├── list_app_role_response.py │ │ │ ├── list_app_role_response_body.py │ │ │ ├── list_app_table_field_request.py │ │ │ ├── list_app_table_field_request_body.py │ │ │ ├── list_app_table_field_response.py │ │ │ ├── list_app_table_field_response_body.py │ │ │ ├── list_app_table_form_field_request.py │ │ │ ├── list_app_table_form_field_request_body.py │ │ │ ├── list_app_table_form_field_response.py │ │ │ ├── list_app_table_form_field_response_body.py │ │ │ ├── list_app_table_record_request.py │ │ │ ├── list_app_table_record_request_body.py │ │ │ ├── list_app_table_record_response.py │ │ │ ├── list_app_table_record_response_body.py │ │ │ ├── list_app_table_request.py │ │ │ ├── list_app_table_request_body.py │ │ │ ├── list_app_table_response.py │ │ │ ├── list_app_table_response_body.py │ │ │ ├── list_app_table_view_request.py │ │ │ ├── list_app_table_view_request_body.py │ │ │ ├── list_app_table_view_response.py │ │ │ ├── list_app_table_view_response_body.py │ │ │ ├── list_app_workflow_request.py │ │ │ ├── list_app_workflow_request_body.py │ │ │ ├── list_app_workflow_response.py │ │ │ ├── list_app_workflow_response_body.py │ │ │ ├── location.py │ │ │ ├── patch_app_table_form_field_request.py │ │ │ ├── patch_app_table_form_field_response.py │ │ │ ├── patch_app_table_form_field_response_body.py │ │ │ ├── patch_app_table_form_request.py │ │ │ ├── patch_app_table_form_response.py │ │ │ ├── patch_app_table_form_response_body.py │ │ │ ├── patch_app_table_request.py │ │ │ ├── patch_app_table_request_body.py │ │ │ ├── patch_app_table_response.py │ │ │ ├── patch_app_table_response_body.py │ │ │ ├── patch_app_table_view_request.py │ │ │ ├── patch_app_table_view_request_body.py │ │ │ ├── patch_app_table_view_response.py │ │ │ ├── patch_app_table_view_response_body.py │ │ │ ├── person.py │ │ │ ├── rating.py │ │ │ ├── req_app.py │ │ │ ├── req_table.py │ │ │ ├── req_view.py │ │ │ ├── search_app_table_record_request.py │ │ │ ├── search_app_table_record_request_body.py │ │ │ ├── search_app_table_record_response.py │ │ │ ├── search_app_table_record_response_body.py │ │ │ ├── sort.py │ │ │ ├── update_app_request.py │ │ │ ├── update_app_request_body.py │ │ │ ├── update_app_response.py │ │ │ ├── update_app_response_body.py │ │ │ ├── update_app_role_request.py │ │ │ ├── update_app_role_response.py │ │ │ ├── update_app_role_response_body.py │ │ │ ├── update_app_table_field_request.py │ │ │ ├── update_app_table_field_response.py │ │ │ ├── update_app_table_field_response_body.py │ │ │ ├── update_app_table_record_request.py │ │ │ ├── update_app_table_record_response.py │ │ │ ├── update_app_table_record_response_body.py │ │ │ ├── update_app_workflow_request.py │ │ │ ├── update_app_workflow_request_body.py │ │ │ ├── update_app_workflow_response.py │ │ │ ├── update_app_workflow_response_body.py │ │ │ └── url.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ ├── app.py │ │ │ ├── app_dashboard.py │ │ │ ├── app_role.py │ │ │ ├── app_role_member.py │ │ │ ├── app_table.py │ │ │ ├── app_table_field.py │ │ │ ├── app_table_form.py │ │ │ ├── app_table_form_field.py │ │ │ ├── app_table_record.py │ │ │ ├── app_table_view.py │ │ │ └── app_workflow.py │ │ │ └── version.py │ ├── block │ │ ├── __init__.py │ │ ├── service.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── create_entity_request.py │ │ │ ├── create_entity_request_body.py │ │ │ ├── create_entity_response.py │ │ │ ├── create_entity_response_body.py │ │ │ ├── create_message_request.py │ │ │ ├── create_message_response.py │ │ │ ├── create_message_response_body.py │ │ │ ├── department_id.py │ │ │ ├── entity.py │ │ │ ├── message.py │ │ │ ├── update_entity_request.py │ │ │ ├── update_entity_response.py │ │ │ └── update_entity_response_body.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ ├── entity.py │ │ │ └── message.py │ │ │ └── version.py │ ├── board │ │ ├── __init__.py │ │ ├── service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── auth_info.py │ │ │ ├── client_info.py │ │ │ ├── composite_shape.py │ │ │ ├── connector.py │ │ │ ├── connector_attached_object.py │ │ │ ├── connector_caption.py │ │ │ ├── connector_info.py │ │ │ ├── create_plantuml_whiteboard_node_request.py │ │ │ ├── create_plantuml_whiteboard_node_request_body.py │ │ │ ├── create_plantuml_whiteboard_node_response.py │ │ │ ├── create_plantuml_whiteboard_node_response_body.py │ │ │ ├── create_whiteboard_node_request.py │ │ │ ├── create_whiteboard_node_request_body.py │ │ │ ├── create_whiteboard_node_response.py │ │ │ ├── create_whiteboard_node_response_body.py │ │ │ ├── cube.py │ │ │ ├── department_id.py │ │ │ ├── download_as_image_whiteboard_request.py │ │ │ ├── download_as_image_whiteboard_request_body.py │ │ │ ├── download_as_image_whiteboard_response.py │ │ │ ├── download_as_image_whiteboard_response_body.py │ │ │ ├── head.py │ │ │ ├── image.py │ │ │ ├── lifeline.py │ │ │ ├── list_whiteboard_node_request.py │ │ │ ├── list_whiteboard_node_request_body.py │ │ │ ├── list_whiteboard_node_response.py │ │ │ ├── list_whiteboard_node_response_body.py │ │ │ ├── mind_map.py │ │ │ ├── mind_map_node.py │ │ │ ├── mind_map_root.py │ │ │ ├── paint.py │ │ │ ├── pie.py │ │ │ ├── point.py │ │ │ ├── rich_text.py │ │ │ ├── rich_text_element.py │ │ │ ├── rich_text_element_link.py │ │ │ ├── rich_text_element_mention_doc.py │ │ │ ├── rich_text_element_mention_user.py │ │ │ ├── rich_text_element_text.py │ │ │ ├── rich_text_element_text_style.py │ │ │ ├── rich_text_paragraph.py │ │ │ ├── section.py │ │ │ ├── sticky_note.py │ │ │ ├── style.py │ │ │ ├── svg.py │ │ │ ├── table.py │ │ │ ├── table_cell.py │ │ │ ├── table_cell_merge_info.py │ │ │ ├── table_meta.py │ │ │ ├── text.py │ │ │ ├── theme_whiteboard_request.py │ │ │ ├── theme_whiteboard_response.py │ │ │ ├── theme_whiteboard_response_body.py │ │ │ ├── trapezoid.py │ │ │ ├── update_theme_whiteboard_request.py │ │ │ ├── update_theme_whiteboard_request_body.py │ │ │ ├── update_theme_whiteboard_response.py │ │ │ └── whiteboard_node.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ ├── whiteboard.py │ │ │ └── whiteboard_node.py │ │ │ └── version.py │ ├── calendar │ │ ├── __init__.py │ │ ├── service.py │ │ └── v4 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── acl_scope.py │ │ │ ├── acl_scope_event.py │ │ │ ├── attachment.py │ │ │ ├── attendee_chat_member.py │ │ │ ├── batch_delete_calendar_event_attendee_request.py │ │ │ ├── batch_delete_calendar_event_attendee_request_body.py │ │ │ ├── batch_delete_calendar_event_attendee_response.py │ │ │ ├── batch_delete_calendar_event_attendee_response_body.py │ │ │ ├── batch_freebusy_request.py │ │ │ ├── batch_freebusy_request_body.py │ │ │ ├── batch_freebusy_response.py │ │ │ ├── batch_freebusy_response_body.py │ │ │ ├── book_meeting_room_data.py │ │ │ ├── calendar.py │ │ │ ├── calendar_acl.py │ │ │ ├── calendar_acl_event.py │ │ │ ├── calendar_attendee_resource_customization.py │ │ │ ├── calendar_event.py │ │ │ ├── calendar_event_attendee.py │ │ │ ├── calendar_event_attendee_chat_member.py │ │ │ ├── calendar_event_attendee_id.py │ │ │ ├── calendar_event_attendee_resp.py │ │ │ ├── calendar_event_resp.py │ │ │ ├── calendar_freebusy.py │ │ │ ├── calendar_freebusy_error.py │ │ │ ├── calendar_primary_batch_req.py │ │ │ ├── calendar_understand_extra.py │ │ │ ├── calendar_understand_scenario_context.py │ │ │ ├── card_callback.py │ │ │ ├── card_present.py │ │ │ ├── check_in_time.py │ │ │ ├── create_calendar_acl_request.py │ │ │ ├── create_calendar_acl_response.py │ │ │ ├── create_calendar_acl_response_body.py │ │ │ ├── create_calendar_event_attendee_request.py │ │ │ ├── create_calendar_event_attendee_request_body.py │ │ │ ├── create_calendar_event_attendee_response.py │ │ │ ├── create_calendar_event_attendee_response_body.py │ │ │ ├── create_calendar_event_meeting_chat_request.py │ │ │ ├── create_calendar_event_meeting_chat_request_body.py │ │ │ ├── create_calendar_event_meeting_chat_response.py │ │ │ ├── create_calendar_event_meeting_chat_response_body.py │ │ │ ├── create_calendar_event_meeting_minute_request.py │ │ │ ├── create_calendar_event_meeting_minute_request_body.py │ │ │ ├── create_calendar_event_meeting_minute_response.py │ │ │ ├── create_calendar_event_meeting_minute_response_body.py │ │ │ ├── create_calendar_event_request.py │ │ │ ├── create_calendar_event_response.py │ │ │ ├── create_calendar_event_response_body.py │ │ │ ├── create_calendar_request.py │ │ │ ├── create_calendar_response.py │ │ │ ├── create_calendar_response_body.py │ │ │ ├── create_exchange_binding_request.py │ │ │ ├── create_exchange_binding_response.py │ │ │ ├── create_exchange_binding_response_body.py │ │ │ ├── create_timeoff_event_request.py │ │ │ ├── create_timeoff_event_response.py │ │ │ ├── create_timeoff_event_response_body.py │ │ │ ├── customization_option.py │ │ │ ├── delete_calendar_acl_request.py │ │ │ ├── delete_calendar_acl_request_body.py │ │ │ ├── delete_calendar_acl_response.py │ │ │ ├── delete_calendar_acl_response_body.py │ │ │ ├── delete_calendar_event_meeting_chat_request.py │ │ │ ├── delete_calendar_event_meeting_chat_request_body.py │ │ │ ├── delete_calendar_event_meeting_chat_response.py │ │ │ ├── delete_calendar_event_meeting_chat_response_body.py │ │ │ ├── delete_calendar_event_request.py │ │ │ ├── delete_calendar_event_request_body.py │ │ │ ├── delete_calendar_event_response.py │ │ │ ├── delete_calendar_event_response_body.py │ │ │ ├── delete_calendar_request.py │ │ │ ├── delete_calendar_request_body.py │ │ │ ├── delete_calendar_response.py │ │ │ ├── delete_calendar_response_body.py │ │ │ ├── delete_exchange_binding_request.py │ │ │ ├── delete_exchange_binding_request_body.py │ │ │ ├── delete_exchange_binding_response.py │ │ │ ├── delete_exchange_binding_response_body.py │ │ │ ├── delete_timeoff_event_request.py │ │ │ ├── delete_timeoff_event_request_body.py │ │ │ ├── delete_timeoff_event_response.py │ │ │ ├── delete_timeoff_event_response_body.py │ │ │ ├── department_id.py │ │ │ ├── event_brief_info_ai.py │ │ │ ├── event_card.py │ │ │ ├── event_check_in.py │ │ │ ├── event_location.py │ │ │ ├── event_organizer.py │ │ │ ├── event_search_filter.py │ │ │ ├── event_time.py │ │ │ ├── exchange_binding.py │ │ │ ├── file.py │ │ │ ├── free_time.py │ │ │ ├── free_time_ai.py │ │ │ ├── free_time_slot.py │ │ │ ├── freebusy.py │ │ │ ├── generate_caldav_conf_setting_request.py │ │ │ ├── generate_caldav_conf_setting_request_body.py │ │ │ ├── generate_caldav_conf_setting_response.py │ │ │ ├── generate_caldav_conf_setting_response_body.py │ │ │ ├── get_calendar_event_request.py │ │ │ ├── get_calendar_event_request_body.py │ │ │ ├── get_calendar_event_response.py │ │ │ ├── get_calendar_event_response_body.py │ │ │ ├── get_calendar_request.py │ │ │ ├── get_calendar_request_body.py │ │ │ ├── get_calendar_response.py │ │ │ ├── get_calendar_response_body.py │ │ │ ├── get_exchange_binding_request.py │ │ │ ├── get_exchange_binding_request_body.py │ │ │ ├── get_exchange_binding_response.py │ │ │ ├── get_exchange_binding_response_body.py │ │ │ ├── i18n_meeting_description.py │ │ │ ├── instance.py │ │ │ ├── instance_view_calendar_event_request.py │ │ │ ├── instance_view_calendar_event_request_body.py │ │ │ ├── instance_view_calendar_event_response.py │ │ │ ├── instance_view_calendar_event_response_body.py │ │ │ ├── instances_calendar_event_request.py │ │ │ ├── instances_calendar_event_request_body.py │ │ │ ├── instances_calendar_event_response.py │ │ │ ├── instances_calendar_event_response_body.py │ │ │ ├── list_calendar_acl_request.py │ │ │ ├── list_calendar_acl_request_body.py │ │ │ ├── list_calendar_acl_response.py │ │ │ ├── list_calendar_acl_response_body.py │ │ │ ├── list_calendar_event_attendee_chat_member_request.py │ │ │ ├── list_calendar_event_attendee_chat_member_request_body.py │ │ │ ├── list_calendar_event_attendee_chat_member_response.py │ │ │ ├── list_calendar_event_attendee_chat_member_response_body.py │ │ │ ├── list_calendar_event_attendee_request.py │ │ │ ├── list_calendar_event_attendee_request_body.py │ │ │ ├── list_calendar_event_attendee_response.py │ │ │ ├── list_calendar_event_attendee_response_body.py │ │ │ ├── list_calendar_event_request.py │ │ │ ├── list_calendar_event_request_body.py │ │ │ ├── list_calendar_event_response.py │ │ │ ├── list_calendar_event_response_body.py │ │ │ ├── list_calendar_request.py │ │ │ ├── list_calendar_request_body.py │ │ │ ├── list_calendar_response.py │ │ │ ├── list_calendar_response_body.py │ │ │ ├── list_freebusy_request.py │ │ │ ├── list_freebusy_request_body.py │ │ │ ├── list_freebusy_response.py │ │ │ ├── list_freebusy_response_body.py │ │ │ ├── meeting_chat.py │ │ │ ├── meeting_minute.py │ │ │ ├── meeting_settings.py │ │ │ ├── mget_calendar_request.py │ │ │ ├── mget_calendar_request_body.py │ │ │ ├── mget_calendar_response.py │ │ │ ├── mget_calendar_response_body.py │ │ │ ├── my_ai_event_detail.py │ │ │ ├── my_ai_event_info.py │ │ │ ├── myai_card_status.py │ │ │ ├── myai_doc_detail.py │ │ │ ├── myai_reply.py │ │ │ ├── myai_search_doc_result.py │ │ │ ├── open_event_rsvp_info.py │ │ │ ├── operate_card_data.py │ │ │ ├── p2_calendar_calendar_acl_created_v4.py │ │ │ ├── p2_calendar_calendar_acl_deleted_v4.py │ │ │ ├── p2_calendar_calendar_changed_v4.py │ │ │ ├── p2_calendar_calendar_event_changed_v4.py │ │ │ ├── patch_calendar_event_request.py │ │ │ ├── patch_calendar_event_response.py │ │ │ ├── patch_calendar_event_response_body.py │ │ │ ├── patch_calendar_request.py │ │ │ ├── patch_calendar_response.py │ │ │ ├── patch_calendar_response_body.py │ │ │ ├── primary_calendar_request.py │ │ │ ├── primary_calendar_request_body.py │ │ │ ├── primary_calendar_response.py │ │ │ ├── primary_calendar_response_body.py │ │ │ ├── primarys_calendar_request.py │ │ │ ├── primarys_calendar_request_body.py │ │ │ ├── primarys_calendar_response.py │ │ │ ├── primarys_calendar_response_body.py │ │ │ ├── reminder.py │ │ │ ├── reply_calendar_event_request.py │ │ │ ├── reply_calendar_event_request_body.py │ │ │ ├── reply_calendar_event_response.py │ │ │ ├── reply_calendar_event_response_body.py │ │ │ ├── room_meta.py │ │ │ ├── schema.py │ │ │ ├── search_calendar_event_request.py │ │ │ ├── search_calendar_event_request_body.py │ │ │ ├── search_calendar_event_response.py │ │ │ ├── search_calendar_event_response_body.py │ │ │ ├── search_calendar_request.py │ │ │ ├── search_calendar_request_body.py │ │ │ ├── search_calendar_response.py │ │ │ ├── search_calendar_response_body.py │ │ │ ├── search_event_data.py │ │ │ ├── search_user_data_ai.py │ │ │ ├── search_user_result_ai.py │ │ │ ├── setting.py │ │ │ ├── subscribe_calendar_request.py │ │ │ ├── subscribe_calendar_request_body.py │ │ │ ├── subscribe_calendar_response.py │ │ │ ├── subscribe_calendar_response_body.py │ │ │ ├── subscription_calendar_acl_request.py │ │ │ ├── subscription_calendar_acl_request_body.py │ │ │ ├── subscription_calendar_acl_response.py │ │ │ ├── subscription_calendar_acl_response_body.py │ │ │ ├── subscription_calendar_event_request.py │ │ │ ├── subscription_calendar_event_request_body.py │ │ │ ├── subscription_calendar_event_response.py │ │ │ ├── subscription_calendar_event_response_body.py │ │ │ ├── subscription_calendar_request.py │ │ │ ├── subscription_calendar_request_body.py │ │ │ ├── subscription_calendar_response.py │ │ │ ├── subscription_calendar_response_body.py │ │ │ ├── system_info.py │ │ │ ├── third_party_meeting_settings.py │ │ │ ├── time_info.py │ │ │ ├── time_span.py │ │ │ ├── timeoff_event.py │ │ │ ├── unsubscribe_calendar_request.py │ │ │ ├── unsubscribe_calendar_request_body.py │ │ │ ├── unsubscribe_calendar_response.py │ │ │ ├── unsubscribe_calendar_response_body.py │ │ │ ├── unsubscription_calendar_acl_request.py │ │ │ ├── unsubscription_calendar_acl_request_body.py │ │ │ ├── unsubscription_calendar_acl_response.py │ │ │ ├── unsubscription_calendar_acl_response_body.py │ │ │ ├── unsubscription_calendar_event_request.py │ │ │ ├── unsubscription_calendar_event_request_body.py │ │ │ ├── unsubscription_calendar_event_response.py │ │ │ ├── unsubscription_calendar_event_response_body.py │ │ │ ├── unsubscription_calendar_request.py │ │ │ ├── unsubscription_calendar_request_body.py │ │ │ ├── unsubscription_calendar_response.py │ │ │ ├── unsubscription_calendar_response_body.py │ │ │ ├── user_calendar.py │ │ │ ├── user_freebusy.py │ │ │ ├── user_id.py │ │ │ ├── user_meta.py │ │ │ ├── vc_info.py │ │ │ ├── vchat.py │ │ │ ├── workhour.py │ │ │ └── workhour_setting.py │ │ │ ├── processor.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ ├── calendar.py │ │ │ ├── calendar_acl.py │ │ │ ├── calendar_event.py │ │ │ ├── calendar_event_attendee.py │ │ │ ├── calendar_event_attendee_chat_member.py │ │ │ ├── calendar_event_meeting_chat.py │ │ │ ├── calendar_event_meeting_minute.py │ │ │ ├── exchange_binding.py │ │ │ ├── freebusy.py │ │ │ ├── setting.py │ │ │ └── timeoff_event.py │ │ │ └── version.py │ ├── cardkit │ │ ├── __init__.py │ │ ├── service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── action.py │ │ │ ├── batch_update_card_request.py │ │ │ ├── batch_update_card_request_body.py │ │ │ ├── batch_update_card_response.py │ │ │ ├── batch_update_card_response_body.py │ │ │ ├── callback_action.py │ │ │ ├── callback_action_context.py │ │ │ ├── card.py │ │ │ ├── card_link.py │ │ │ ├── card_template.py │ │ │ ├── config.py │ │ │ ├── content_card_element_request.py │ │ │ ├── content_card_element_request_body.py │ │ │ ├── content_card_element_response.py │ │ │ ├── content_card_element_response_body.py │ │ │ ├── create_card_element_request.py │ │ │ ├── create_card_element_request_body.py │ │ │ ├── create_card_element_response.py │ │ │ ├── create_card_element_response_body.py │ │ │ ├── create_card_request.py │ │ │ ├── create_card_request_body.py │ │ │ ├── create_card_response.py │ │ │ ├── create_card_response_body.py │ │ │ ├── data.py │ │ │ ├── delete_card_element_request.py │ │ │ ├── delete_card_element_request_body.py │ │ │ ├── delete_card_element_response.py │ │ │ ├── delete_card_element_response_body.py │ │ │ ├── department_id.py │ │ │ ├── element.py │ │ │ ├── header.py │ │ │ ├── id_convert_card_request.py │ │ │ ├── id_convert_card_request_body.py │ │ │ ├── id_convert_card_response.py │ │ │ ├── id_convert_card_response_body.py │ │ │ ├── ka_card_template.py │ │ │ ├── ka_card_template_old.py │ │ │ ├── ka_card_template_variable.py │ │ │ ├── operator.py │ │ │ ├── params.py │ │ │ ├── patch_card_element_request.py │ │ │ ├── patch_card_element_request_body.py │ │ │ ├── patch_card_element_response.py │ │ │ ├── patch_card_element_response_body.py │ │ │ ├── settings.py │ │ │ ├── settings_card_request.py │ │ │ ├── settings_card_request_body.py │ │ │ ├── settings_card_response.py │ │ │ ├── settings_card_response_body.py │ │ │ ├── summary.py │ │ │ ├── update_card_element_request.py │ │ │ ├── update_card_element_request_body.py │ │ │ ├── update_card_element_response.py │ │ │ ├── update_card_element_response_body.py │ │ │ ├── update_card_request.py │ │ │ ├── update_card_request_body.py │ │ │ ├── update_card_response.py │ │ │ └── update_card_response_body.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ ├── card.py │ │ │ └── card_element.py │ │ │ └── version.py │ ├── compensation │ │ ├── __init__.py │ │ ├── service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── adjustment_logic.py │ │ │ ├── archive.py │ │ │ ├── archive_detail.py │ │ │ ├── archive_indicator.py │ │ │ ├── archive_item.py │ │ │ ├── archive_item_value.py │ │ │ ├── batch_create_lump_sum_payment_request.py │ │ │ ├── batch_create_lump_sum_payment_request_body.py │ │ │ ├── batch_create_lump_sum_payment_response.py │ │ │ ├── batch_create_lump_sum_payment_response_body.py │ │ │ ├── batch_create_recurring_payment_request.py │ │ │ ├── batch_create_recurring_payment_request_body.py │ │ │ ├── batch_create_recurring_payment_response.py │ │ │ ├── batch_create_recurring_payment_response_body.py │ │ │ ├── batch_remove_lump_sum_payment_request.py │ │ │ ├── batch_remove_lump_sum_payment_request_body.py │ │ │ ├── batch_remove_lump_sum_payment_response.py │ │ │ ├── batch_remove_lump_sum_payment_response_body.py │ │ │ ├── batch_remove_recurring_payment_request.py │ │ │ ├── batch_remove_recurring_payment_request_body.py │ │ │ ├── batch_remove_recurring_payment_response.py │ │ │ ├── batch_remove_recurring_payment_response_body.py │ │ │ ├── batch_update_lump_sum_payment_request.py │ │ │ ├── batch_update_lump_sum_payment_request_body.py │ │ │ ├── batch_update_lump_sum_payment_response.py │ │ │ ├── batch_update_lump_sum_payment_response_body.py │ │ │ ├── batch_update_recurring_payment_request.py │ │ │ ├── batch_update_recurring_payment_request_body.py │ │ │ ├── batch_update_recurring_payment_response.py │ │ │ ├── batch_update_recurring_payment_response_body.py │ │ │ ├── change_reason.py │ │ │ ├── create_archive_request.py │ │ │ ├── create_archive_request_body.py │ │ │ ├── create_archive_response.py │ │ │ ├── create_archive_response_body.py │ │ │ ├── currency.py │ │ │ ├── department_id.py │ │ │ ├── formula.py │ │ │ ├── formula_param.py │ │ │ ├── grade.py │ │ │ ├── grade_standard_dimension.py │ │ │ ├── grade_standard_value.py │ │ │ ├── i18n.py │ │ │ ├── i18n_content.py │ │ │ ├── indicator.py │ │ │ ├── item.py │ │ │ ├── item_category.py │ │ │ ├── list_change_reason_request.py │ │ │ ├── list_change_reason_request_body.py │ │ │ ├── list_change_reason_response.py │ │ │ ├── list_change_reason_response_body.py │ │ │ ├── list_indicator_request.py │ │ │ ├── list_indicator_request_body.py │ │ │ ├── list_indicator_response.py │ │ │ ├── list_indicator_response_body.py │ │ │ ├── list_item_category_request.py │ │ │ ├── list_item_category_request_body.py │ │ │ ├── list_item_category_response.py │ │ │ ├── list_item_category_response_body.py │ │ │ ├── list_item_request.py │ │ │ ├── list_item_request_body.py │ │ │ ├── list_item_response.py │ │ │ ├── list_item_response_body.py │ │ │ ├── list_plan_request.py │ │ │ ├── list_plan_request_body.py │ │ │ ├── list_plan_response.py │ │ │ ├── list_plan_response_body.py │ │ │ ├── list_social_insurance_request.py │ │ │ ├── list_social_insurance_response.py │ │ │ ├── list_social_insurance_response_body.py │ │ │ ├── list_social_plan_request.py │ │ │ ├── list_social_plan_response.py │ │ │ ├── list_social_plan_response_body.py │ │ │ ├── lump_sum_payment.py │ │ │ ├── lump_sum_payment_detail.py │ │ │ ├── lump_sum_payment_detail_for_create.py │ │ │ ├── lump_sum_payment_detail_for_update.py │ │ │ ├── lump_sum_payment_for_create.py │ │ │ ├── lump_sum_payment_for_update.py │ │ │ ├── lump_sum_payment_operate_result.py │ │ │ ├── p2_compensation_archive_changed_v1.py │ │ │ ├── plan.py │ │ │ ├── plan_condition.py │ │ │ ├── plan_detail.py │ │ │ ├── plan_indicator.py │ │ │ ├── plan_item.py │ │ │ ├── plan_scope.py │ │ │ ├── query_archive_request.py │ │ │ ├── query_archive_request_body.py │ │ │ ├── query_archive_response.py │ │ │ ├── query_archive_response_body.py │ │ │ ├── query_detail_lump_sum_payment_request.py │ │ │ ├── query_detail_lump_sum_payment_request_body.py │ │ │ ├── query_detail_lump_sum_payment_response.py │ │ │ ├── query_detail_lump_sum_payment_response_body.py │ │ │ ├── query_lump_sum_payment_request.py │ │ │ ├── query_lump_sum_payment_request_body.py │ │ │ ├── query_lump_sum_payment_response.py │ │ │ ├── query_lump_sum_payment_response_body.py │ │ │ ├── query_recurring_payment_request.py │ │ │ ├── query_recurring_payment_request_body.py │ │ │ ├── query_recurring_payment_response.py │ │ │ ├── query_recurring_payment_response_body.py │ │ │ ├── query_social_archive_adjust_record_request.py │ │ │ ├── query_social_archive_adjust_record_request_body.py │ │ │ ├── query_social_archive_adjust_record_response.py │ │ │ ├── query_social_archive_adjust_record_response_body.py │ │ │ ├── query_social_archive_request.py │ │ │ ├── query_social_archive_request_body.py │ │ │ ├── query_social_archive_response.py │ │ │ ├── query_social_archive_response_body.py │ │ │ ├── query_social_plan_request.py │ │ │ ├── query_social_plan_request_body.py │ │ │ ├── query_social_plan_response.py │ │ │ ├── query_social_plan_response_body.py │ │ │ ├── recurring_payment.py │ │ │ ├── recurring_payment_for_create.py │ │ │ ├── recurring_payment_for_update.py │ │ │ ├── recurring_payment_operate_result.py │ │ │ ├── salary_grade.py │ │ │ ├── salary_level.py │ │ │ ├── salary_level_type.py │ │ │ ├── social_archive.py │ │ │ ├── social_archive_adjust_record.py │ │ │ ├── social_archive_adjust_record_event.py │ │ │ ├── social_archive_detail.py │ │ │ ├── social_archive_event_detail.py │ │ │ ├── social_archive_item.py │ │ │ ├── social_insurance.py │ │ │ ├── social_plan.py │ │ │ ├── social_plan_condition.py │ │ │ ├── social_plan_item_detail.py │ │ │ ├── social_plan_item_setting.py │ │ │ ├── social_plan_scope.py │ │ │ ├── standard.py │ │ │ ├── standard_dimension.py │ │ │ ├── standard_reference_object.py │ │ │ ├── standard_scope.py │ │ │ └── standard_scope_expression.py │ │ │ ├── processor.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ ├── archive.py │ │ │ ├── change_reason.py │ │ │ ├── indicator.py │ │ │ ├── item.py │ │ │ ├── item_category.py │ │ │ ├── lump_sum_payment.py │ │ │ ├── plan.py │ │ │ ├── recurring_payment.py │ │ │ ├── social_archive.py │ │ │ ├── social_archive_adjust_record.py │ │ │ ├── social_insurance.py │ │ │ └── social_plan.py │ │ │ └── version.py │ ├── contact │ │ ├── __init__.py │ │ ├── service.py │ │ └── v3 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── add_group_member_request.py │ │ │ ├── add_group_member_request_body.py │ │ │ ├── add_group_member_response.py │ │ │ ├── add_group_member_response_body.py │ │ │ ├── avatar_info.py │ │ │ ├── batch_add_group_member_request.py │ │ │ ├── batch_add_group_member_request_body.py │ │ │ ├── batch_add_group_member_response.py │ │ │ ├── batch_add_group_member_response_body.py │ │ │ ├── batch_create_functional_role_member_request.py │ │ │ ├── batch_create_functional_role_member_request_body.py │ │ │ ├── batch_create_functional_role_member_response.py │ │ │ ├── batch_create_functional_role_member_response_body.py │ │ │ ├── batch_delete_functional_role_member_request.py │ │ │ ├── batch_delete_functional_role_member_request_body.py │ │ │ ├── batch_delete_functional_role_member_response.py │ │ │ ├── batch_delete_functional_role_member_response_body.py │ │ │ ├── batch_department_request.py │ │ │ ├── batch_department_request_body.py │ │ │ ├── batch_department_response.py │ │ │ ├── batch_department_response_body.py │ │ │ ├── batch_get_id_user_request.py │ │ │ ├── batch_get_id_user_request_body.py │ │ │ ├── batch_get_id_user_response.py │ │ │ ├── batch_get_id_user_response_body.py │ │ │ ├── batch_remove_group_member_request.py │ │ │ ├── batch_remove_group_member_request_body.py │ │ │ ├── batch_remove_group_member_response.py │ │ │ ├── batch_remove_group_member_response_body.py │ │ │ ├── batch_user_request.py │ │ │ ├── batch_user_request_body.py │ │ │ ├── batch_user_response.py │ │ │ ├── batch_user_response_body.py │ │ │ ├── bind_department_unit_request.py │ │ │ ├── bind_department_unit_request_body.py │ │ │ ├── bind_department_unit_response.py │ │ │ ├── bind_department_unit_response_body.py │ │ │ ├── children_department_request.py │ │ │ ├── children_department_request_body.py │ │ │ ├── children_department_response.py │ │ │ ├── children_department_response_body.py │ │ │ ├── collaboration_tenant.py │ │ │ ├── confidential_member.py │ │ │ ├── create_department_request.py │ │ │ ├── create_department_response.py │ │ │ ├── create_department_response_body.py │ │ │ ├── create_employee_type_enum_request.py │ │ │ ├── create_employee_type_enum_response.py │ │ │ ├── create_employee_type_enum_response_body.py │ │ │ ├── create_functional_role_request.py │ │ │ ├── create_functional_role_request_body.py │ │ │ ├── create_functional_role_response.py │ │ │ ├── create_functional_role_response_body.py │ │ │ ├── create_group_request.py │ │ │ ├── create_group_response.py │ │ │ ├── create_group_response_body.py │ │ │ ├── create_job_family_request.py │ │ │ ├── create_job_family_response.py │ │ │ ├── create_job_family_response_body.py │ │ │ ├── create_job_level_request.py │ │ │ ├── create_job_level_response.py │ │ │ ├── create_job_level_response_body.py │ │ │ ├── create_unit_request.py │ │ │ ├── create_unit_request_body.py │ │ │ ├── create_unit_response.py │ │ │ ├── create_unit_response_body.py │ │ │ ├── create_user_request.py │ │ │ ├── create_user_response.py │ │ │ ├── create_user_response_body.py │ │ │ ├── custom_attr.py │ │ │ ├── custom_attr_event.py │ │ │ ├── custom_attr_generic_user.py │ │ │ ├── custom_attr_option.py │ │ │ ├── custom_attr_options.py │ │ │ ├── delete_department_request.py │ │ │ ├── delete_department_request_body.py │ │ │ ├── delete_department_response.py │ │ │ ├── delete_department_response_body.py │ │ │ ├── delete_employee_type_enum_request.py │ │ │ ├── delete_employee_type_enum_request_body.py │ │ │ ├── delete_employee_type_enum_response.py │ │ │ ├── delete_employee_type_enum_response_body.py │ │ │ ├── delete_functional_role_request.py │ │ │ ├── delete_functional_role_request_body.py │ │ │ ├── delete_functional_role_response.py │ │ │ ├── delete_functional_role_response_body.py │ │ │ ├── delete_group_request.py │ │ │ ├── delete_group_request_body.py │ │ │ ├── delete_group_response.py │ │ │ ├── delete_group_response_body.py │ │ │ ├── delete_job_family_request.py │ │ │ ├── delete_job_family_request_body.py │ │ │ ├── delete_job_family_response.py │ │ │ ├── delete_job_family_response_body.py │ │ │ ├── delete_job_level_request.py │ │ │ ├── delete_job_level_request_body.py │ │ │ ├── delete_job_level_response.py │ │ │ ├── delete_job_level_response_body.py │ │ │ ├── delete_unit_request.py │ │ │ ├── delete_unit_request_body.py │ │ │ ├── delete_unit_response.py │ │ │ ├── delete_unit_response_body.py │ │ │ ├── delete_user_request.py │ │ │ ├── delete_user_request_body.py │ │ │ ├── delete_user_response.py │ │ │ ├── delete_user_response_body.py │ │ │ ├── deparment_count.py │ │ │ ├── department.py │ │ │ ├── department_count.py │ │ │ ├── department_detail.py │ │ │ ├── department_event.py │ │ │ ├── department_i18n_name.py │ │ │ ├── department_id.py │ │ │ ├── department_leader.py │ │ │ ├── department_parent.py │ │ │ ├── department_path.py │ │ │ ├── department_path_name.py │ │ │ ├── department_status.py │ │ │ ├── department_unit.py │ │ │ ├── dynamic_group_expression.py │ │ │ ├── dynamic_group_rule.py │ │ │ ├── employee_type_enum.py │ │ │ ├── find_by_department_user_request.py │ │ │ ├── find_by_department_user_request_body.py │ │ │ ├── find_by_department_user_response.py │ │ │ ├── find_by_department_user_response_body.py │ │ │ ├── functional_role.py │ │ │ ├── functional_role_member.py │ │ │ ├── functional_role_member_result.py │ │ │ ├── get_department_request.py │ │ │ ├── get_department_request_body.py │ │ │ ├── get_department_response.py │ │ │ ├── get_department_response_body.py │ │ │ ├── get_functional_role_member_request.py │ │ │ ├── get_functional_role_member_request_body.py │ │ │ ├── get_functional_role_member_response.py │ │ │ ├── get_functional_role_member_response_body.py │ │ │ ├── get_group_request.py │ │ │ ├── get_group_request_body.py │ │ │ ├── get_group_response.py │ │ │ ├── get_group_response_body.py │ │ │ ├── get_job_family_request.py │ │ │ ├── get_job_family_request_body.py │ │ │ ├── get_job_family_response.py │ │ │ ├── get_job_family_response_body.py │ │ │ ├── get_job_level_request.py │ │ │ ├── get_job_level_request_body.py │ │ │ ├── get_job_level_response.py │ │ │ ├── get_job_level_response_body.py │ │ │ ├── get_job_title_request.py │ │ │ ├── get_job_title_request_body.py │ │ │ ├── get_job_title_response.py │ │ │ ├── get_job_title_response_body.py │ │ │ ├── get_unit_request.py │ │ │ ├── get_unit_request_body.py │ │ │ ├── get_unit_response.py │ │ │ ├── get_unit_response_body.py │ │ │ ├── get_user_request.py │ │ │ ├── get_user_request_body.py │ │ │ ├── get_user_response.py │ │ │ ├── get_user_response_body.py │ │ │ ├── get_work_city_request.py │ │ │ ├── get_work_city_request_body.py │ │ │ ├── get_work_city_response.py │ │ │ ├── get_work_city_response_body.py │ │ │ ├── group.py │ │ │ ├── group_event.py │ │ │ ├── group_visible_scope.py │ │ │ ├── i18n_content.py │ │ │ ├── job_family.py │ │ │ ├── job_level.py │ │ │ ├── job_title.py │ │ │ ├── list_custom_attr_request.py │ │ │ ├── list_custom_attr_request_body.py │ │ │ ├── list_custom_attr_response.py │ │ │ ├── list_custom_attr_response_body.py │ │ │ ├── list_department_request.py │ │ │ ├── list_department_request_body.py │ │ │ ├── list_department_response.py │ │ │ ├── list_department_response_body.py │ │ │ ├── list_department_unit_request.py │ │ │ ├── list_department_unit_request_body.py │ │ │ ├── list_department_unit_response.py │ │ │ ├── list_department_unit_response_body.py │ │ │ ├── list_employee_type_enum_request.py │ │ │ ├── list_employee_type_enum_request_body.py │ │ │ ├── list_employee_type_enum_response.py │ │ │ ├── list_employee_type_enum_response_body.py │ │ │ ├── list_functional_role_member_request.py │ │ │ ├── list_functional_role_member_request_body.py │ │ │ ├── list_functional_role_member_response.py │ │ │ ├── list_functional_role_member_response_body.py │ │ │ ├── list_job_family_request.py │ │ │ ├── list_job_family_request_body.py │ │ │ ├── list_job_family_response.py │ │ │ ├── list_job_family_response_body.py │ │ │ ├── list_job_level_request.py │ │ │ ├── list_job_level_request_body.py │ │ │ ├── list_job_level_response.py │ │ │ ├── list_job_level_response_body.py │ │ │ ├── list_job_title_request.py │ │ │ ├── list_job_title_request_body.py │ │ │ ├── list_job_title_response.py │ │ │ ├── list_job_title_response_body.py │ │ │ ├── list_scope_request.py │ │ │ ├── list_scope_request_body.py │ │ │ ├── list_scope_response.py │ │ │ ├── list_scope_response_body.py │ │ │ ├── list_unit_request.py │ │ │ ├── list_unit_request_body.py │ │ │ ├── list_unit_response.py │ │ │ ├── list_unit_response_body.py │ │ │ ├── list_user_request.py │ │ │ ├── list_user_request_body.py │ │ │ ├── list_user_response.py │ │ │ ├── list_user_response_body.py │ │ │ ├── list_work_city_request.py │ │ │ ├── list_work_city_request_body.py │ │ │ ├── list_work_city_response.py │ │ │ ├── list_work_city_response_body.py │ │ │ ├── member_belong_group_request.py │ │ │ ├── member_belong_group_request_body.py │ │ │ ├── member_belong_group_response.py │ │ │ ├── member_belong_group_response_body.py │ │ │ ├── member_result.py │ │ │ ├── memberlist.py │ │ │ ├── notification_option.py │ │ │ ├── old_department_object.py │ │ │ ├── old_user_object.py │ │ │ ├── p2_contact_custom_attr_event_updated_v3.py │ │ │ ├── p2_contact_department_created_v3.py │ │ │ ├── p2_contact_department_deleted_v3.py │ │ │ ├── p2_contact_department_updated_v3.py │ │ │ ├── p2_contact_employee_type_enum_actived_v3.py │ │ │ ├── p2_contact_employee_type_enum_created_v3.py │ │ │ ├── p2_contact_employee_type_enum_deactivated_v3.py │ │ │ ├── p2_contact_employee_type_enum_deleted_v3.py │ │ │ ├── p2_contact_employee_type_enum_updated_v3.py │ │ │ ├── p2_contact_scope_updated_v3.py │ │ │ ├── p2_contact_user_created_v3.py │ │ │ ├── p2_contact_user_deleted_v3.py │ │ │ ├── p2_contact_user_updated_v3.py │ │ │ ├── parent_department_request.py │ │ │ ├── parent_department_request_body.py │ │ │ ├── parent_department_response.py │ │ │ ├── parent_department_response_body.py │ │ │ ├── patch_department_request.py │ │ │ ├── patch_department_response.py │ │ │ ├── patch_department_response_body.py │ │ │ ├── patch_group_request.py │ │ │ ├── patch_group_response.py │ │ │ ├── patch_group_response_body.py │ │ │ ├── patch_unit_request.py │ │ │ ├── patch_unit_request_body.py │ │ │ ├── patch_unit_response.py │ │ │ ├── patch_unit_response_body.py │ │ │ ├── patch_user_request.py │ │ │ ├── patch_user_response.py │ │ │ ├── patch_user_response_body.py │ │ │ ├── product_i18n_name.py │ │ │ ├── remove_group_member_request.py │ │ │ ├── remove_group_member_request_body.py │ │ │ ├── remove_group_member_response.py │ │ │ ├── remove_group_member_response_body.py │ │ │ ├── resource_accept.py │ │ │ ├── resource_acceptor.py │ │ │ ├── resurrect_user_request.py │ │ │ ├── resurrect_user_request_body.py │ │ │ ├── resurrect_user_response.py │ │ │ ├── resurrect_user_response_body.py │ │ │ ├── scope.py │ │ │ ├── scopes_functional_role_member_request.py │ │ │ ├── scopes_functional_role_member_request_body.py │ │ │ ├── scopes_functional_role_member_response.py │ │ │ ├── scopes_functional_role_member_response_body.py │ │ │ ├── search_department_request.py │ │ │ ├── search_department_request_body.py │ │ │ ├── search_department_response.py │ │ │ ├── search_department_response_body.py │ │ │ ├── share_department.py │ │ │ ├── share_user.py │ │ │ ├── simplelist_group_member_request.py │ │ │ ├── simplelist_group_member_request_body.py │ │ │ ├── simplelist_group_member_response.py │ │ │ ├── simplelist_group_member_response_body.py │ │ │ ├── simplelist_group_request.py │ │ │ ├── simplelist_group_request_body.py │ │ │ ├── simplelist_group_response.py │ │ │ ├── simplelist_group_response_body.py │ │ │ ├── unbind_department_chat_department_request.py │ │ │ ├── unbind_department_chat_department_request_body.py │ │ │ ├── unbind_department_chat_department_response.py │ │ │ ├── unbind_department_chat_department_response_body.py │ │ │ ├── unbind_department_unit_request.py │ │ │ ├── unbind_department_unit_request_body.py │ │ │ ├── unbind_department_unit_response.py │ │ │ ├── unbind_department_unit_response_body.py │ │ │ ├── unit.py │ │ │ ├── unit_department.py │ │ │ ├── update_department_id_department_request.py │ │ │ ├── update_department_id_department_request_body.py │ │ │ ├── update_department_id_department_response.py │ │ │ ├── update_department_id_department_response_body.py │ │ │ ├── update_department_request.py │ │ │ ├── update_department_response.py │ │ │ ├── update_department_response_body.py │ │ │ ├── update_employee_type_enum_request.py │ │ │ ├── update_employee_type_enum_response.py │ │ │ ├── update_employee_type_enum_response_body.py │ │ │ ├── update_functional_role_request.py │ │ │ ├── update_functional_role_request_body.py │ │ │ ├── update_functional_role_response.py │ │ │ ├── update_functional_role_response_body.py │ │ │ ├── update_job_family_request.py │ │ │ ├── update_job_family_response.py │ │ │ ├── update_job_family_response_body.py │ │ │ ├── update_job_level_request.py │ │ │ ├── update_job_level_response.py │ │ │ ├── update_job_level_response_body.py │ │ │ ├── update_user_id_user_request.py │ │ │ ├── update_user_id_user_request_body.py │ │ │ ├── update_user_id_user_response.py │ │ │ ├── update_user_id_user_response_body.py │ │ │ ├── update_user_request.py │ │ │ ├── update_user_response.py │ │ │ ├── update_user_response_body.py │ │ │ ├── user.py │ │ │ ├── user_assign_info.py │ │ │ ├── user_contact_info.py │ │ │ ├── user_custom_attr.py │ │ │ ├── user_custom_attr_value.py │ │ │ ├── user_department_info.py │ │ │ ├── user_event.py │ │ │ ├── user_group.py │ │ │ ├── user_group_member.py │ │ │ ├── user_i18n_name.py │ │ │ ├── user_id.py │ │ │ ├── user_order.py │ │ │ ├── user_position.py │ │ │ ├── user_status.py │ │ │ └── work_city.py │ │ │ ├── processor.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ ├── custom_attr.py │ │ │ ├── custom_attr_event.py │ │ │ ├── department.py │ │ │ ├── employee_type_enum.py │ │ │ ├── functional_role.py │ │ │ ├── functional_role_member.py │ │ │ ├── group.py │ │ │ ├── group_member.py │ │ │ ├── job_family.py │ │ │ ├── job_level.py │ │ │ ├── job_title.py │ │ │ ├── scope.py │ │ │ ├── unit.py │ │ │ ├── user.py │ │ │ └── work_city.py │ │ │ └── version.py │ ├── corehr │ │ ├── __init__.py │ │ ├── service.py │ │ ├── v1 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ │ ├── __init__.py │ │ │ │ ├── add_enum_option_common_data_meta_data_request.py │ │ │ │ ├── add_enum_option_common_data_meta_data_request_body.py │ │ │ │ ├── add_enum_option_common_data_meta_data_response.py │ │ │ │ ├── add_enum_option_common_data_meta_data_response_body.py │ │ │ │ ├── add_role_assign_authorization_request.py │ │ │ │ ├── add_role_assign_authorization_request_body.py │ │ │ │ ├── add_role_assign_authorization_response.py │ │ │ │ ├── add_role_assign_authorization_response_body.py │ │ │ │ ├── address.py │ │ │ │ ├── application_info.py │ │ │ │ ├── assigned_organization.py │ │ │ │ ├── assigned_organization_with_code.py │ │ │ │ ├── attachment_field_setting.py │ │ │ │ ├── background_check.py │ │ │ │ ├── background_check_city.py │ │ │ │ ├── background_check_country.py │ │ │ │ ├── background_check_report_object.py │ │ │ │ ├── background_check_target.py │ │ │ │ ├── bank_account.py │ │ │ │ ├── batch_check_form_instance_i18n_result.py │ │ │ │ ├── bp_role_organization.py │ │ │ │ ├── bpm_dataengine_i18n.py │ │ │ │ ├── bpm_form_error_message.py │ │ │ │ ├── calculated_field_setting.py │ │ │ │ ├── calendar_by_scope_leave_request.py │ │ │ │ ├── calendar_by_scope_leave_request_body.py │ │ │ │ ├── calendar_by_scope_leave_response.py │ │ │ │ ├── calendar_by_scope_leave_response_body.py │ │ │ │ ├── calendar_date_by_date_filter.py │ │ │ │ ├── common_schema_config.py │ │ │ │ ├── common_schema_option.py │ │ │ │ ├── company.py │ │ │ │ ├── contract.py │ │ │ │ ├── convert_common_data_id_request.py │ │ │ │ ├── convert_common_data_id_request_body.py │ │ │ │ ├── convert_common_data_id_response.py │ │ │ │ ├── convert_common_data_id_response_body.py │ │ │ │ ├── cost_center.py │ │ │ │ ├── cost_center_query.py │ │ │ │ ├── country_region.py │ │ │ │ ├── cpst_band_width.py │ │ │ │ ├── cpst_currency.py │ │ │ │ ├── cpst_grade.py │ │ │ │ ├── cpst_grade_standard_value.py │ │ │ │ ├── cpst_i18n.py │ │ │ │ ├── cpst_match_item.py │ │ │ │ ├── cpst_standard_type.py │ │ │ │ ├── create_company_request.py │ │ │ │ ├── create_company_response.py │ │ │ │ ├── create_company_response_body.py │ │ │ │ ├── create_contract_request.py │ │ │ │ ├── create_contract_response.py │ │ │ │ ├── create_contract_response_body.py │ │ │ │ ├── create_department_request.py │ │ │ │ ├── create_department_response.py │ │ │ │ ├── create_department_response_body.py │ │ │ │ ├── create_employee_type_request.py │ │ │ │ ├── create_employee_type_response.py │ │ │ │ ├── create_employee_type_response_body.py │ │ │ │ ├── create_employment_request.py │ │ │ │ ├── create_employment_response.py │ │ │ │ ├── create_employment_response_body.py │ │ │ │ ├── create_job_change_request.py │ │ │ │ ├── create_job_change_request_body.py │ │ │ │ ├── create_job_change_response.py │ │ │ │ ├── create_job_change_response_body.py │ │ │ │ ├── create_job_data_request.py │ │ │ │ ├── create_job_data_response.py │ │ │ │ ├── create_job_data_response_body.py │ │ │ │ ├── create_job_family_request.py │ │ │ │ ├── create_job_family_response.py │ │ │ │ ├── create_job_family_response_body.py │ │ │ │ ├── create_job_level_request.py │ │ │ │ ├── create_job_level_response.py │ │ │ │ ├── create_job_level_response_body.py │ │ │ │ ├── create_job_request.py │ │ │ │ ├── create_job_response.py │ │ │ │ ├── create_job_response_body.py │ │ │ │ ├── create_leave_granting_record_request.py │ │ │ │ ├── create_leave_granting_record_request_body.py │ │ │ │ ├── create_leave_granting_record_response.py │ │ │ │ ├── create_leave_granting_record_response_body.py │ │ │ │ ├── create_location_request.py │ │ │ │ ├── create_location_response.py │ │ │ │ ├── create_location_response_body.py │ │ │ │ ├── create_national_id_type_request.py │ │ │ │ ├── create_national_id_type_response.py │ │ │ │ ├── create_national_id_type_response_body.py │ │ │ │ ├── create_person_request.py │ │ │ │ ├── create_person_response.py │ │ │ │ ├── create_person_response_body.py │ │ │ │ ├── create_working_hours_type_request.py │ │ │ │ ├── create_working_hours_type_response.py │ │ │ │ ├── create_working_hours_type_response_body.py │ │ │ │ ├── currency.py │ │ │ │ ├── custom_field.py │ │ │ │ ├── custom_field_data.py │ │ │ │ ├── custom_name.py │ │ │ │ ├── date_time_field_setting.py │ │ │ │ ├── delete_company_request.py │ │ │ │ ├── delete_company_request_body.py │ │ │ │ ├── delete_company_response.py │ │ │ │ ├── delete_company_response_body.py │ │ │ │ ├── delete_contract_request.py │ │ │ │ ├── delete_contract_request_body.py │ │ │ │ ├── delete_contract_response.py │ │ │ │ ├── delete_contract_response_body.py │ │ │ │ ├── delete_department_request.py │ │ │ │ ├── delete_department_request_body.py │ │ │ │ ├── delete_department_response.py │ │ │ │ ├── delete_department_response_body.py │ │ │ │ ├── delete_employee_type_request.py │ │ │ │ ├── delete_employee_type_request_body.py │ │ │ │ ├── delete_employee_type_response.py │ │ │ │ ├── delete_employee_type_response_body.py │ │ │ │ ├── delete_employment_request.py │ │ │ │ ├── delete_employment_request_body.py │ │ │ │ ├── delete_employment_response.py │ │ │ │ ├── delete_employment_response_body.py │ │ │ │ ├── delete_job_data_request.py │ │ │ │ ├── delete_job_data_request_body.py │ │ │ │ ├── delete_job_data_response.py │ │ │ │ ├── delete_job_data_response_body.py │ │ │ │ ├── delete_job_family_request.py │ │ │ │ ├── delete_job_family_request_body.py │ │ │ │ ├── delete_job_family_response.py │ │ │ │ ├── delete_job_family_response_body.py │ │ │ │ ├── delete_job_level_request.py │ │ │ │ ├── delete_job_level_request_body.py │ │ │ │ ├── delete_job_level_response.py │ │ │ │ ├── delete_job_level_response_body.py │ │ │ │ ├── delete_job_request.py │ │ │ │ ├── delete_job_request_body.py │ │ │ │ ├── delete_job_response.py │ │ │ │ ├── delete_job_response_body.py │ │ │ │ ├── delete_leave_granting_record_request.py │ │ │ │ ├── delete_leave_granting_record_request_body.py │ │ │ │ ├── delete_leave_granting_record_response.py │ │ │ │ ├── delete_leave_granting_record_response_body.py │ │ │ │ ├── delete_location_request.py │ │ │ │ ├── delete_location_request_body.py │ │ │ │ ├── delete_location_response.py │ │ │ │ ├── delete_location_response_body.py │ │ │ │ ├── delete_national_id_type_request.py │ │ │ │ ├── delete_national_id_type_request_body.py │ │ │ │ ├── delete_national_id_type_response.py │ │ │ │ ├── delete_national_id_type_response_body.py │ │ │ │ ├── delete_person_request.py │ │ │ │ ├── delete_person_request_body.py │ │ │ │ ├── delete_person_response.py │ │ │ │ ├── delete_person_response_body.py │ │ │ │ ├── delete_pre_hire_request.py │ │ │ │ ├── delete_pre_hire_request_body.py │ │ │ │ ├── delete_pre_hire_response.py │ │ │ │ ├── delete_pre_hire_response_body.py │ │ │ │ ├── delete_working_hours_type_request.py │ │ │ │ ├── delete_working_hours_type_request_body.py │ │ │ │ ├── delete_working_hours_type_response.py │ │ │ │ ├── delete_working_hours_type_response_body.py │ │ │ │ ├── department.py │ │ │ │ ├── department_create.py │ │ │ │ ├── department_id.py │ │ │ │ ├── dependent.py │ │ │ │ ├── dimension_value.py │ │ │ │ ├── edit_enum_option_common_data_meta_data_request.py │ │ │ │ ├── edit_enum_option_common_data_meta_data_request_body.py │ │ │ │ ├── edit_enum_option_common_data_meta_data_response.py │ │ │ │ ├── edit_enum_option_common_data_meta_data_response_body.py │ │ │ │ ├── education.py │ │ │ │ ├── email.py │ │ │ │ ├── emergency_contact.py │ │ │ │ ├── employee_date_type.py │ │ │ │ ├── employee_type.py │ │ │ │ ├── employment.py │ │ │ │ ├── employment_cost_center.py │ │ │ │ ├── employment_create.py │ │ │ │ ├── employment_leave_balance.py │ │ │ │ ├── entity_field_req.py │ │ │ │ ├── entity_field_result.py │ │ │ │ ├── enum.py │ │ │ │ ├── enum_field_option.py │ │ │ │ ├── enum_field_setting.py │ │ │ │ ├── file.py │ │ │ │ ├── filter_condition.py │ │ │ │ ├── filter_expression.py │ │ │ │ ├── filter_rule_value.py │ │ │ │ ├── form_field_variable.py │ │ │ │ ├── form_field_variable_bool_value.py │ │ │ │ ├── form_field_variable_date_value.py │ │ │ │ ├── form_field_variable_datetime_value.py │ │ │ │ ├── form_field_variable_department_value.py │ │ │ │ ├── form_field_variable_employment_value.py │ │ │ │ ├── form_field_variable_enum_value.py │ │ │ │ ├── form_field_variable_file_value.py │ │ │ │ ├── form_field_variable_i18n_value.py │ │ │ │ ├── form_field_variable_list_object.py │ │ │ │ ├── form_field_variable_list_value.py │ │ │ │ ├── form_field_variable_null_value.py │ │ │ │ ├── form_field_variable_number_value.py │ │ │ │ ├── form_field_variable_object_value.py │ │ │ │ ├── form_field_variable_record_value.py │ │ │ │ ├── form_field_variable_record_value_example.py │ │ │ │ ├── form_field_variable_text_value.py │ │ │ │ ├── form_variable_data.py │ │ │ │ ├── form_variable_value_info.py │ │ │ │ ├── form_variable_value_info_example.py │ │ │ │ ├── get_by_param_authorization_request.py │ │ │ │ ├── get_by_param_authorization_request_body.py │ │ │ │ ├── get_by_param_authorization_response.py │ │ │ │ ├── get_by_param_authorization_response_body.py │ │ │ │ ├── get_by_param_custom_field_request.py │ │ │ │ ├── get_by_param_custom_field_request_body.py │ │ │ │ ├── get_by_param_custom_field_response.py │ │ │ │ ├── get_by_param_custom_field_response_body.py │ │ │ │ ├── get_company_request.py │ │ │ │ ├── get_company_request_body.py │ │ │ │ ├── get_company_response.py │ │ │ │ ├── get_company_response_body.py │ │ │ │ ├── get_contract_request.py │ │ │ │ ├── get_contract_request_body.py │ │ │ │ ├── get_contract_response.py │ │ │ │ ├── get_contract_response_body.py │ │ │ │ ├── get_country_region_request.py │ │ │ │ ├── get_country_region_request_body.py │ │ │ │ ├── get_country_region_response.py │ │ │ │ ├── get_country_region_response_body.py │ │ │ │ ├── get_currency_request.py │ │ │ │ ├── get_currency_request_body.py │ │ │ │ ├── get_currency_response.py │ │ │ │ ├── get_currency_response_body.py │ │ │ │ ├── get_department_request.py │ │ │ │ ├── get_department_request_body.py │ │ │ │ ├── get_department_response.py │ │ │ │ ├── get_department_response_body.py │ │ │ │ ├── get_employee_type_request.py │ │ │ │ ├── get_employee_type_request_body.py │ │ │ │ ├── get_employee_type_response.py │ │ │ │ ├── get_employee_type_response_body.py │ │ │ │ ├── get_file_request.py │ │ │ │ ├── get_file_request_body.py │ │ │ │ ├── get_file_response.py │ │ │ │ ├── get_file_response_body.py │ │ │ │ ├── get_job_data_request.py │ │ │ │ ├── get_job_data_request_body.py │ │ │ │ ├── get_job_data_response.py │ │ │ │ ├── get_job_data_response_body.py │ │ │ │ ├── get_job_family_request.py │ │ │ │ ├── get_job_family_request_body.py │ │ │ │ ├── get_job_family_response.py │ │ │ │ ├── get_job_family_response_body.py │ │ │ │ ├── get_job_level_request.py │ │ │ │ ├── get_job_level_request_body.py │ │ │ │ ├── get_job_level_response.py │ │ │ │ ├── get_job_level_response_body.py │ │ │ │ ├── get_job_request.py │ │ │ │ ├── get_job_request_body.py │ │ │ │ ├── get_job_response.py │ │ │ │ ├── get_job_response_body.py │ │ │ │ ├── get_location_request.py │ │ │ │ ├── get_location_request_body.py │ │ │ │ ├── get_location_response.py │ │ │ │ ├── get_location_response_body.py │ │ │ │ ├── get_national_id_type_request.py │ │ │ │ ├── get_national_id_type_request_body.py │ │ │ │ ├── get_national_id_type_response.py │ │ │ │ ├── get_national_id_type_response_body.py │ │ │ │ ├── get_person_request.py │ │ │ │ ├── get_person_request_body.py │ │ │ │ ├── get_person_response.py │ │ │ │ ├── get_person_response_body.py │ │ │ │ ├── get_pre_hire_request.py │ │ │ │ ├── get_pre_hire_request_body.py │ │ │ │ ├── get_pre_hire_response.py │ │ │ │ ├── get_pre_hire_response_body.py │ │ │ │ ├── get_process_form_variable_data_request.py │ │ │ │ ├── get_process_form_variable_data_request_body.py │ │ │ │ ├── get_process_form_variable_data_response.py │ │ │ │ ├── get_process_form_variable_data_response_body.py │ │ │ │ ├── get_subdivision_request.py │ │ │ │ ├── get_subdivision_request_body.py │ │ │ │ ├── get_subdivision_response.py │ │ │ │ ├── get_subdivision_response_body.py │ │ │ │ ├── get_subregion_request.py │ │ │ │ ├── get_subregion_request_body.py │ │ │ │ ├── get_subregion_response.py │ │ │ │ ├── get_subregion_response_body.py │ │ │ │ ├── get_working_hours_type_request.py │ │ │ │ ├── get_working_hours_type_request_body.py │ │ │ │ ├── get_working_hours_type_response.py │ │ │ │ ├── get_working_hours_type_response_body.py │ │ │ │ ├── hiberarchy_common.py │ │ │ │ ├── hrbp.py │ │ │ │ ├── i18n.py │ │ │ │ ├── id_info.py │ │ │ │ ├── image_field_setting.py │ │ │ │ ├── job.py │ │ │ │ ├── job_category.py │ │ │ │ ├── job_change.py │ │ │ │ ├── job_data.py │ │ │ │ ├── job_data_cost_center.py │ │ │ │ ├── job_family.py │ │ │ │ ├── job_level.py │ │ │ │ ├── leave_balance.py │ │ │ │ ├── leave_balances_leave_request.py │ │ │ │ ├── leave_balances_leave_request_body.py │ │ │ │ ├── leave_balances_leave_response.py │ │ │ │ ├── leave_balances_leave_response_body.py │ │ │ │ ├── leave_duration.py │ │ │ │ ├── leave_extend_item.py │ │ │ │ ├── leave_granting_record.py │ │ │ │ ├── leave_process_info.py │ │ │ │ ├── leave_request.py │ │ │ │ ├── leave_request_created.py │ │ │ │ ├── leave_request_created_error_message.py │ │ │ │ ├── leave_request_created_result.py │ │ │ │ ├── leave_request_detail.py │ │ │ │ ├── leave_request_history_leave_request.py │ │ │ │ ├── leave_request_history_leave_request_body.py │ │ │ │ ├── leave_request_history_leave_response.py │ │ │ │ ├── leave_request_history_leave_response_body.py │ │ │ │ ├── leave_subtype.py │ │ │ │ ├── leave_time.py │ │ │ │ ├── leave_type.py │ │ │ │ ├── leave_types_leave_request.py │ │ │ │ ├── leave_types_leave_request_body.py │ │ │ │ ├── leave_types_leave_response.py │ │ │ │ ├── leave_types_leave_response_body.py │ │ │ │ ├── list_company_request.py │ │ │ │ ├── list_company_request_body.py │ │ │ │ ├── list_company_response.py │ │ │ │ ├── list_company_response_body.py │ │ │ │ ├── list_contract_request.py │ │ │ │ ├── list_contract_request_body.py │ │ │ │ ├── list_contract_response.py │ │ │ │ ├── list_contract_response_body.py │ │ │ │ ├── list_country_region_request.py │ │ │ │ ├── list_country_region_request_body.py │ │ │ │ ├── list_country_region_response.py │ │ │ │ ├── list_country_region_response_body.py │ │ │ │ ├── list_currency_request.py │ │ │ │ ├── list_currency_request_body.py │ │ │ │ ├── list_currency_response.py │ │ │ │ ├── list_currency_response_body.py │ │ │ │ ├── list_department_request.py │ │ │ │ ├── list_department_request_body.py │ │ │ │ ├── list_department_response.py │ │ │ │ ├── list_department_response_body.py │ │ │ │ ├── list_employee_type_request.py │ │ │ │ ├── list_employee_type_request_body.py │ │ │ │ ├── list_employee_type_response.py │ │ │ │ ├── list_employee_type_response_body.py │ │ │ │ ├── list_job_data_request.py │ │ │ │ ├── list_job_data_request_body.py │ │ │ │ ├── list_job_data_response.py │ │ │ │ ├── list_job_data_response_body.py │ │ │ │ ├── list_job_family_request.py │ │ │ │ ├── list_job_family_request_body.py │ │ │ │ ├── list_job_family_response.py │ │ │ │ ├── list_job_family_response_body.py │ │ │ │ ├── list_job_level_request.py │ │ │ │ ├── list_job_level_request_body.py │ │ │ │ ├── list_job_level_response.py │ │ │ │ ├── list_job_level_response_body.py │ │ │ │ ├── list_job_request.py │ │ │ │ ├── list_job_request_body.py │ │ │ │ ├── list_job_response.py │ │ │ │ ├── list_job_response_body.py │ │ │ │ ├── list_location_request.py │ │ │ │ ├── list_location_request_body.py │ │ │ │ ├── list_location_response.py │ │ │ │ ├── list_location_response_body.py │ │ │ │ ├── list_national_id_type_request.py │ │ │ │ ├── list_national_id_type_request_body.py │ │ │ │ ├── list_national_id_type_response.py │ │ │ │ ├── list_national_id_type_response_body.py │ │ │ │ ├── list_object_api_name_custom_field_request.py │ │ │ │ ├── list_object_api_name_custom_field_request_body.py │ │ │ │ ├── list_object_api_name_custom_field_response.py │ │ │ │ ├── list_object_api_name_custom_field_response_body.py │ │ │ │ ├── list_pre_hire_request.py │ │ │ │ ├── list_pre_hire_request_body.py │ │ │ │ ├── list_pre_hire_response.py │ │ │ │ ├── list_pre_hire_response_body.py │ │ │ │ ├── list_security_group_request.py │ │ │ │ ├── list_security_group_request_body.py │ │ │ │ ├── list_security_group_response.py │ │ │ │ ├── list_security_group_response_body.py │ │ │ │ ├── list_subdivision_request.py │ │ │ │ ├── list_subdivision_request_body.py │ │ │ │ ├── list_subdivision_response.py │ │ │ │ ├── list_subdivision_response_body.py │ │ │ │ ├── list_subregion_request.py │ │ │ │ ├── list_subregion_request_body.py │ │ │ │ ├── list_subregion_response.py │ │ │ │ ├── list_subregion_response_body.py │ │ │ │ ├── list_working_hours_type_request.py │ │ │ │ ├── list_working_hours_type_request_body.py │ │ │ │ ├── list_working_hours_type_response.py │ │ │ │ ├── list_working_hours_type_response_body.py │ │ │ │ ├── location.py │ │ │ │ ├── lookup_field_setting.py │ │ │ │ ├── manage_relation.py │ │ │ │ ├── management_scope.py │ │ │ │ ├── match_compensation_standard_request.py │ │ │ │ ├── match_compensation_standard_request_body.py │ │ │ │ ├── match_compensation_standard_response.py │ │ │ │ ├── match_compensation_standard_response_body.py │ │ │ │ ├── name.py │ │ │ │ ├── national_id.py │ │ │ │ ├── national_id_type.py │ │ │ │ ├── number_field_setting.py │ │ │ │ ├── object.py │ │ │ │ ├── object_data.py │ │ │ │ ├── object_field_data.py │ │ │ │ ├── offboarding.py │ │ │ │ ├── offboarding_checklist.py │ │ │ │ ├── offboarding_data.py │ │ │ │ ├── offboarding_info.py │ │ │ │ ├── offboarding_reason.py │ │ │ │ ├── operation_log_entity.py │ │ │ │ ├── operation_log_entity_field.py │ │ │ │ ├── operation_log_list_req.py │ │ │ │ ├── operation_log_list_resp_item.py │ │ │ │ ├── org_truncation.py │ │ │ │ ├── p2_corehr_common_data_id_user_mapping_changed_v1.py │ │ │ │ ├── p2_corehr_common_data_meta_data_updated_v1.py │ │ │ │ ├── p2_corehr_contract_created_v1.py │ │ │ │ ├── p2_corehr_contract_deleted_v1.py │ │ │ │ ├── p2_corehr_contract_updated_v1.py │ │ │ │ ├── p2_corehr_department_created_v1.py │ │ │ │ ├── p2_corehr_department_deleted_v1.py │ │ │ │ ├── p2_corehr_department_updated_v1.py │ │ │ │ ├── p2_corehr_employment_converted_v1.py │ │ │ │ ├── p2_corehr_employment_created_v1.py │ │ │ │ ├── p2_corehr_employment_deleted_v1.py │ │ │ │ ├── p2_corehr_employment_resigned_v1.py │ │ │ │ ├── p2_corehr_employment_updated_v1.py │ │ │ │ ├── p2_corehr_job_change_updated_v1.py │ │ │ │ ├── p2_corehr_job_created_v1.py │ │ │ │ ├── p2_corehr_job_data_changed_v1.py │ │ │ │ ├── p2_corehr_job_data_created_v1.py │ │ │ │ ├── p2_corehr_job_data_deleted_v1.py │ │ │ │ ├── p2_corehr_job_data_employed_v1.py │ │ │ │ ├── p2_corehr_job_data_updated_v1.py │ │ │ │ ├── p2_corehr_job_deleted_v1.py │ │ │ │ ├── p2_corehr_job_updated_v1.py │ │ │ │ ├── p2_corehr_offboarding_updated_v1.py │ │ │ │ ├── p2_corehr_org_role_authorization_updated_v1.py │ │ │ │ ├── p2_corehr_person_created_v1.py │ │ │ │ ├── p2_corehr_person_deleted_v1.py │ │ │ │ ├── p2_corehr_person_updated_v1.py │ │ │ │ ├── p2_corehr_pre_hire_updated_v1.py │ │ │ │ ├── patch_company_request.py │ │ │ │ ├── patch_company_response.py │ │ │ │ ├── patch_company_response_body.py │ │ │ │ ├── patch_contract_request.py │ │ │ │ ├── patch_contract_response.py │ │ │ │ ├── patch_contract_response_body.py │ │ │ │ ├── patch_department_request.py │ │ │ │ ├── patch_department_response.py │ │ │ │ ├── patch_department_response_body.py │ │ │ │ ├── patch_employee_type_request.py │ │ │ │ ├── patch_employee_type_response.py │ │ │ │ ├── patch_employee_type_response_body.py │ │ │ │ ├── patch_employment_request.py │ │ │ │ ├── patch_employment_response.py │ │ │ │ ├── patch_employment_response_body.py │ │ │ │ ├── patch_job_data_request.py │ │ │ │ ├── patch_job_data_response.py │ │ │ │ ├── patch_job_data_response_body.py │ │ │ │ ├── patch_job_family_request.py │ │ │ │ ├── patch_job_family_response.py │ │ │ │ ├── patch_job_family_response_body.py │ │ │ │ ├── patch_job_level_request.py │ │ │ │ ├── patch_job_level_response.py │ │ │ │ ├── patch_job_level_response_body.py │ │ │ │ ├── patch_job_request.py │ │ │ │ ├── patch_job_response.py │ │ │ │ ├── patch_job_response_body.py │ │ │ │ ├── patch_national_id_type_request.py │ │ │ │ ├── patch_national_id_type_response.py │ │ │ │ ├── patch_national_id_type_response_body.py │ │ │ │ ├── patch_person_request.py │ │ │ │ ├── patch_person_response.py │ │ │ │ ├── patch_person_response_body.py │ │ │ │ ├── patch_pre_hire_request.py │ │ │ │ ├── patch_pre_hire_response.py │ │ │ │ ├── patch_pre_hire_response_body.py │ │ │ │ ├── patch_working_hours_type_request.py │ │ │ │ ├── patch_working_hours_type_response.py │ │ │ │ ├── patch_working_hours_type_response_body.py │ │ │ │ ├── permission_detail.py │ │ │ │ ├── permission_security_group.py │ │ │ │ ├── person.py │ │ │ │ ├── person_info_chn.py │ │ │ │ ├── person_info_mys.py │ │ │ │ ├── person_name.py │ │ │ │ ├── personal_profile.py │ │ │ │ ├── phone.py │ │ │ │ ├── phone_number_and_area_code.py │ │ │ │ ├── pre_hire.py │ │ │ │ ├── pre_hire_query.py │ │ │ │ ├── previous_employer.py │ │ │ │ ├── process.py │ │ │ │ ├── query_authorization_request.py │ │ │ │ ├── query_authorization_request_body.py │ │ │ │ ├── query_authorization_response.py │ │ │ │ ├── query_authorization_response_body.py │ │ │ │ ├── query_custom_field_request.py │ │ │ │ ├── query_custom_field_request_body.py │ │ │ │ ├── query_custom_field_response.py │ │ │ │ ├── query_custom_field_response_body.py │ │ │ │ ├── query_offboarding_request.py │ │ │ │ ├── query_offboarding_request_body.py │ │ │ │ ├── query_offboarding_response.py │ │ │ │ ├── query_offboarding_response_body.py │ │ │ │ ├── query_security_group_request.py │ │ │ │ ├── query_security_group_request_body.py │ │ │ │ ├── query_security_group_response.py │ │ │ │ ├── query_security_group_response_body.py │ │ │ │ ├── query_transfer_reason_request.py │ │ │ │ ├── query_transfer_reason_request_body.py │ │ │ │ ├── query_transfer_reason_response.py │ │ │ │ ├── query_transfer_reason_response_body.py │ │ │ │ ├── query_transfer_type_request.py │ │ │ │ ├── query_transfer_type_request_body.py │ │ │ │ ├── query_transfer_type_response.py │ │ │ │ ├── query_transfer_type_response_body.py │ │ │ │ ├── reference_object.py │ │ │ │ ├── remove_role_assign_authorization_request.py │ │ │ │ ├── remove_role_assign_authorization_request_body.py │ │ │ │ ├── remove_role_assign_authorization_response.py │ │ │ │ ├── remove_role_assign_authorization_response_body.py │ │ │ │ ├── resident_tax.py │ │ │ │ ├── role_authorization.py │ │ │ │ ├── rule_dimension.py │ │ │ │ ├── search_assigned_user_request.py │ │ │ │ ├── search_assigned_user_request_body.py │ │ │ │ ├── search_assigned_user_response.py │ │ │ │ ├── search_assigned_user_response_body.py │ │ │ │ ├── search_offboarding_request.py │ │ │ │ ├── search_offboarding_request_body.py │ │ │ │ ├── search_offboarding_response.py │ │ │ │ ├── search_offboarding_response_body.py │ │ │ │ ├── security_group.py │ │ │ │ ├── sort_option.py │ │ │ │ ├── subdivision.py │ │ │ │ ├── submit_offboarding_request.py │ │ │ │ ├── submit_offboarding_request_body.py │ │ │ │ ├── submit_offboarding_response.py │ │ │ │ ├── submit_offboarding_response_body.py │ │ │ │ ├── subregion.py │ │ │ │ ├── support_cost_center_item.py │ │ │ │ ├── temp.py │ │ │ │ ├── text_field_setting.py │ │ │ │ ├── tranfer_employment_info.py │ │ │ │ ├── transfer_info.py │ │ │ │ ├── transfer_reason.py │ │ │ │ ├── transfer_type.py │ │ │ │ ├── update_role_assign_authorization_request.py │ │ │ │ ├── update_role_assign_authorization_request_body.py │ │ │ │ ├── update_role_assign_authorization_response.py │ │ │ │ ├── update_role_assign_authorization_response_body.py │ │ │ │ ├── upload_person_request.py │ │ │ │ ├── upload_person_request_body.py │ │ │ │ ├── upload_person_response.py │ │ │ │ ├── upload_person_response_body.py │ │ │ │ ├── user_id.py │ │ │ │ ├── wk_calendar_date.py │ │ │ │ ├── wk_calendar_i18n.py │ │ │ │ ├── wk_option.py │ │ │ │ ├── work_calendar_date_leave_request.py │ │ │ │ ├── work_calendar_date_leave_response.py │ │ │ │ ├── work_calendar_date_leave_response_body.py │ │ │ │ ├── work_calendar_detail.py │ │ │ │ ├── work_calendar_filter.py │ │ │ │ ├── work_calendar_leave_request.py │ │ │ │ ├── work_calendar_leave_response.py │ │ │ │ ├── work_calendar_leave_response_body.py │ │ │ │ ├── work_experience.py │ │ │ │ └── working_hours_type.py │ │ │ ├── processor.py │ │ │ ├── resource │ │ │ │ ├── __init__.py │ │ │ │ ├── assigned_user.py │ │ │ │ ├── authorization.py │ │ │ │ ├── common_data_id.py │ │ │ │ ├── common_data_meta_data.py │ │ │ │ ├── company.py │ │ │ │ ├── compensation_standard.py │ │ │ │ ├── contract.py │ │ │ │ ├── country_region.py │ │ │ │ ├── currency.py │ │ │ │ ├── custom_field.py │ │ │ │ ├── department.py │ │ │ │ ├── employee_type.py │ │ │ │ ├── employment.py │ │ │ │ ├── file.py │ │ │ │ ├── job.py │ │ │ │ ├── job_change.py │ │ │ │ ├── job_data.py │ │ │ │ ├── job_family.py │ │ │ │ ├── job_level.py │ │ │ │ ├── leave.py │ │ │ │ ├── leave_granting_record.py │ │ │ │ ├── location.py │ │ │ │ ├── national_id_type.py │ │ │ │ ├── offboarding.py │ │ │ │ ├── org_role_authorization.py │ │ │ │ ├── person.py │ │ │ │ ├── pre_hire.py │ │ │ │ ├── process_form_variable_data.py │ │ │ │ ├── security_group.py │ │ │ │ ├── subdivision.py │ │ │ │ ├── subregion.py │ │ │ │ ├── transfer_reason.py │ │ │ │ ├── transfer_type.py │ │ │ │ └── working_hours_type.py │ │ │ └── version.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── abnormal_reason.py │ │ │ ├── abnormal_reason_element.py │ │ │ ├── abnormal_reason_i18n_element.py │ │ │ ├── active_company_request.py │ │ │ ├── active_company_request_body.py │ │ │ ├── active_company_response.py │ │ │ ├── active_company_response_body.py │ │ │ ├── active_custom_org_request.py │ │ │ ├── active_custom_org_request_body.py │ │ │ ├── active_custom_org_response.py │ │ │ ├── active_location_request.py │ │ │ ├── active_location_request_body.py │ │ │ ├── active_location_response.py │ │ │ ├── active_location_response_body.py │ │ │ ├── active_pathway_request.py │ │ │ ├── active_pathway_request_body.py │ │ │ ├── active_pathway_response.py │ │ │ ├── active_position_request.py │ │ │ ├── active_position_request_body.py │ │ │ ├── active_position_response.py │ │ │ ├── address.py │ │ │ ├── address_for_update.py │ │ │ ├── address_timeline.py │ │ │ ├── approval_group.py │ │ │ ├── approver_info.py │ │ │ ├── assessment.py │ │ │ ├── assessment_for_create.py │ │ │ ├── bank.py │ │ │ ├── bank_account.py │ │ │ ├── bank_account_for_update.py │ │ │ ├── bank_branch.py │ │ │ ├── basic_department.py │ │ │ ├── basic_employee.py │ │ │ ├── basic_info.py │ │ │ ├── basic_info_update.py │ │ │ ├── basic_job_data.py │ │ │ ├── basic_person_info.py │ │ │ ├── batch_delete_report_detail_row_request.py │ │ │ ├── batch_delete_report_detail_row_response.py │ │ │ ├── batch_delete_report_detail_row_response_body.py │ │ │ ├── batch_delete_workforce_plan_detail_row_request.py │ │ │ ├── batch_delete_workforce_plan_detail_row_response.py │ │ │ ├── batch_delete_workforce_plan_detail_row_response_body.py │ │ │ ├── batch_employees_additional_job_request.py │ │ │ ├── batch_employees_additional_job_request_body.py │ │ │ ├── batch_employees_additional_job_response.py │ │ │ ├── batch_employees_additional_job_response_body.py │ │ │ ├── batch_get_company_request.py │ │ │ ├── batch_get_company_request_body.py │ │ │ ├── batch_get_company_response.py │ │ │ ├── batch_get_company_response_body.py │ │ │ ├── batch_get_department_request.py │ │ │ ├── batch_get_department_request_body.py │ │ │ ├── batch_get_department_response.py │ │ │ ├── batch_get_department_response_body.py │ │ │ ├── batch_get_employee_request.py │ │ │ ├── batch_get_employee_request_body.py │ │ │ ├── batch_get_employee_response.py │ │ │ ├── batch_get_employee_response_body.py │ │ │ ├── batch_get_employees_bp_request.py │ │ │ ├── batch_get_employees_bp_request_body.py │ │ │ ├── batch_get_employees_bp_response.py │ │ │ ├── batch_get_employees_bp_response_body.py │ │ │ ├── batch_get_employees_job_data_request.py │ │ │ ├── batch_get_employees_job_data_request_body.py │ │ │ ├── batch_get_employees_job_data_response.py │ │ │ ├── batch_get_employees_job_data_response_body.py │ │ │ ├── batch_get_job_family_request.py │ │ │ ├── batch_get_job_family_request_body.py │ │ │ ├── batch_get_job_family_response.py │ │ │ ├── batch_get_job_family_response_body.py │ │ │ ├── batch_get_job_level_request.py │ │ │ ├── batch_get_job_level_request_body.py │ │ │ ├── batch_get_job_level_response.py │ │ │ ├── batch_get_job_level_response_body.py │ │ │ ├── batch_get_job_request.py │ │ │ ├── batch_get_job_request_body.py │ │ │ ├── batch_get_job_response.py │ │ │ ├── batch_get_job_response_body.py │ │ │ ├── batch_get_location_request.py │ │ │ ├── batch_get_location_request_body.py │ │ │ ├── batch_get_location_response.py │ │ │ ├── batch_get_location_response_body.py │ │ │ ├── batch_get_pathway_request.py │ │ │ ├── batch_get_pathway_request_body.py │ │ │ ├── batch_get_pathway_response.py │ │ │ ├── batch_get_pathway_response_body.py │ │ │ ├── batch_query_cost_allocation_request.py │ │ │ ├── batch_query_cost_allocation_request_body.py │ │ │ ├── batch_query_cost_allocation_response.py │ │ │ ├── batch_query_cost_allocation_response_body.py │ │ │ ├── batch_query_default_cost_center_request.py │ │ │ ├── batch_query_default_cost_center_request_body.py │ │ │ ├── batch_query_default_cost_center_response.py │ │ │ ├── batch_query_default_cost_center_response_body.py │ │ │ ├── batch_save_report_detail_row_request.py │ │ │ ├── batch_save_report_detail_row_response.py │ │ │ ├── batch_save_report_detail_row_response_body.py │ │ │ ├── batch_save_workforce_plan_detail_row_request.py │ │ │ ├── batch_save_workforce_plan_detail_row_response.py │ │ │ ├── batch_save_workforce_plan_detail_row_response_body.py │ │ │ ├── batch_v2_workforce_plan_detail_request.py │ │ │ ├── batch_v2_workforce_plan_detail_request_body.py │ │ │ ├── batch_v2_workforce_plan_detail_response.py │ │ │ ├── batch_v2_workforce_plan_detail_response_body.py │ │ │ ├── batch_workforce_plan_detail_request.py │ │ │ ├── batch_workforce_plan_detail_request_body.py │ │ │ ├── batch_workforce_plan_detail_response.py │ │ │ ├── batch_workforce_plan_detail_response_body.py │ │ │ ├── bp.py │ │ │ ├── bpm_dataengine_i18n.py │ │ │ ├── bpm_flow_info.py │ │ │ ├── calculate_param.py │ │ │ ├── change_field_pair.py │ │ │ ├── citizenship_status.py │ │ │ ├── city.py │ │ │ ├── company.py │ │ │ ├── company_id_and_name.py │ │ │ ├── company_timeline.py │ │ │ ├── company_version_data.py │ │ │ ├── complete_pre_hire_request.py │ │ │ ├── complete_pre_hire_request_body.py │ │ │ ├── complete_pre_hire_response.py │ │ │ ├── complete_pre_hire_response_body.py │ │ │ ├── contract.py │ │ │ ├── cost_allocation.py │ │ │ ├── cost_center.py │ │ │ ├── cost_center_id.py │ │ │ ├── cost_center_version.py │ │ │ ├── country_region.py │ │ │ ├── country_region_subdivision.py │ │ │ ├── create_cost_center_request.py │ │ │ ├── create_cost_center_response.py │ │ │ ├── create_cost_center_response_body.py │ │ │ ├── create_cost_center_version_request.py │ │ │ ├── create_cost_center_version_response.py │ │ │ ├── create_cost_center_version_response_body.py │ │ │ ├── create_custom_org_request.py │ │ │ ├── create_custom_org_response.py │ │ │ ├── create_custom_org_response_body.py │ │ │ ├── create_emp_custom_org.py │ │ │ ├── create_employee_request.py │ │ │ ├── create_employee_request_body.py │ │ │ ├── create_employee_response.py │ │ │ ├── create_employee_response_body.py │ │ │ ├── create_employees_additional_job_request.py │ │ │ ├── create_employees_additional_job_response.py │ │ │ ├── create_employees_additional_job_response_body.py │ │ │ ├── create_employees_international_assignment_request.py │ │ │ ├── create_employees_international_assignment_response.py │ │ │ ├── create_employees_international_assignment_response_body.py │ │ │ ├── create_job_change_request.py │ │ │ ├── create_job_change_request_body.py │ │ │ ├── create_job_change_response.py │ │ │ ├── create_job_change_response_body.py │ │ │ ├── create_job_grade_request.py │ │ │ ├── create_job_grade_response.py │ │ │ ├── create_job_grade_response_body.py │ │ │ ├── create_location_address_request.py │ │ │ ├── create_location_address_response.py │ │ │ ├── create_location_address_response_body.py │ │ │ ├── create_pathway_request.py │ │ │ ├── create_pathway_response.py │ │ │ ├── create_pathway_response_body.py │ │ │ ├── create_person_request.py │ │ │ ├── create_person_response.py │ │ │ ├── create_person_response_body.py │ │ │ ├── create_position_request.py │ │ │ ├── create_position_response.py │ │ │ ├── create_position_response_body.py │ │ │ ├── create_pre_hire_request.py │ │ │ ├── create_pre_hire_response.py │ │ │ ├── create_pre_hire_response_body.py │ │ │ ├── create_probation_assessment_request.py │ │ │ ├── create_probation_assessment_request_body.py │ │ │ ├── create_probation_assessment_response.py │ │ │ ├── create_probation_assessment_response_body.py │ │ │ ├── create_transfer_info.py │ │ │ ├── create_version_cost_allocation_request.py │ │ │ ├── create_version_cost_allocation_request_body.py │ │ │ ├── create_version_cost_allocation_response.py │ │ │ ├── create_version_cost_allocation_response_body.py │ │ │ ├── create_version_default_cost_center_request.py │ │ │ ├── create_version_default_cost_center_request_body.py │ │ │ ├── create_version_default_cost_center_response.py │ │ │ ├── create_version_default_cost_center_response_body.py │ │ │ ├── currency.py │ │ │ ├── custom_field_data.py │ │ │ ├── custom_name.py │ │ │ ├── custom_org.py │ │ │ ├── custom_org_create.py │ │ │ ├── custom_org_filter.py │ │ │ ├── custom_org_list.py │ │ │ ├── custom_org_update.py │ │ │ ├── custom_org_with_rate.py │ │ │ ├── custom_value.py │ │ │ ├── dataengine_i18n.py │ │ │ ├── default_cost_center.py │ │ │ ├── default_cost_center_record.py │ │ │ ├── del_position_position_request.py │ │ │ ├── del_position_position_request_body.py │ │ │ ├── del_position_position_response.py │ │ │ ├── delete_cost_center_request.py │ │ │ ├── delete_cost_center_request_body.py │ │ │ ├── delete_cost_center_response.py │ │ │ ├── delete_cost_center_response_body.py │ │ │ ├── delete_cost_center_version_request.py │ │ │ ├── delete_cost_center_version_request_body.py │ │ │ ├── delete_cost_center_version_response.py │ │ │ ├── delete_cost_center_version_response_body.py │ │ │ ├── delete_department_request.py │ │ │ ├── delete_department_request_body.py │ │ │ ├── delete_department_response.py │ │ │ ├── delete_department_response_body.py │ │ │ ├── delete_employees_additional_job_request.py │ │ │ ├── delete_employees_additional_job_request_body.py │ │ │ ├── delete_employees_additional_job_response.py │ │ │ ├── delete_employees_additional_job_response_body.py │ │ │ ├── delete_employees_international_assignment_request.py │ │ │ ├── delete_employees_international_assignment_response.py │ │ │ ├── delete_job_grade_request.py │ │ │ ├── delete_job_grade_request_body.py │ │ │ ├── delete_job_grade_response.py │ │ │ ├── delete_job_grade_response_body.py │ │ │ ├── delete_location_address_request.py │ │ │ ├── delete_location_address_request_body.py │ │ │ ├── delete_location_address_response.py │ │ │ ├── delete_location_address_response_body.py │ │ │ ├── delete_org_custom_org_request.py │ │ │ ├── delete_org_custom_org_request_body.py │ │ │ ├── delete_org_custom_org_response.py │ │ │ ├── delete_pathway_request.py │ │ │ ├── delete_pathway_response.py │ │ │ ├── delete_pre_hire_request.py │ │ │ ├── delete_pre_hire_request_body.py │ │ │ ├── delete_pre_hire_response.py │ │ │ ├── delete_pre_hire_response_body.py │ │ │ ├── delete_probation_assessment_request.py │ │ │ ├── delete_probation_assessment_request_body.py │ │ │ ├── delete_probation_assessment_response.py │ │ │ ├── delete_probation_assessment_response_body.py │ │ │ ├── department.py │ │ │ ├── department_adjust_record.py │ │ │ ├── department_change.py │ │ │ ├── department_for_patch.py │ │ │ ├── department_hrbp.py │ │ │ ├── department_id.py │ │ │ ├── department_parent_info.py │ │ │ ├── department_parents.py │ │ │ ├── department_timeline.py │ │ │ ├── department_tree.py │ │ │ ├── dependent.py │ │ │ ├── dependent_for_update.py │ │ │ ├── dimension.py │ │ │ ├── dimension_entity.py │ │ │ ├── dimension_id_in_data.py │ │ │ ├── dimension_info.py │ │ │ ├── dimension_info_data.py │ │ │ ├── dimension_value.py │ │ │ ├── district.py │ │ │ ├── download_signature_file_request.py │ │ │ ├── download_signature_file_response.py │ │ │ ├── draft_info.py │ │ │ ├── edit_offboarding_request.py │ │ │ ├── edit_offboarding_request_body.py │ │ │ ├── edit_offboarding_response.py │ │ │ ├── edit_offboarding_response_body.py │ │ │ ├── education.py │ │ │ ├── education_info.py │ │ │ ├── education_info_for_update.py │ │ │ ├── email.py │ │ │ ├── email_for_update.py │ │ │ ├── emergency_contact.py │ │ │ ├── emergency_contact_for_update.py │ │ │ ├── emp_custom_object_info.py │ │ │ ├── emp_custom_org_list.py │ │ │ ├── employee.py │ │ │ ├── employee_bt.py │ │ │ ├── employee_cost_allocation.py │ │ │ ├── employee_default_cost_center.py │ │ │ ├── employee_domain_event_data.py │ │ │ ├── employee_international_assignment.py │ │ │ ├── employee_job_data.py │ │ │ ├── employee_job_family.py │ │ │ ├── employee_job_level.py │ │ │ ├── employee_pathway.py │ │ │ ├── employee_union_city_info.py │ │ │ ├── employees_additional_job.py │ │ │ ├── employees_additional_job_batch_req_date.py │ │ │ ├── employees_additional_job_edit.py │ │ │ ├── employees_additional_job_write_resp.py │ │ │ ├── employees_international_assignment.py │ │ │ ├── employees_international_assignment_req.py │ │ │ ├── employees_international_assignment_resp.py │ │ │ ├── employment.py │ │ │ ├── employment_bp.py │ │ │ ├── employment_cost_allocation.py │ │ │ ├── employment_custom_object_record.py │ │ │ ├── employment_default_cost_center.py │ │ │ ├── employment_leave_balance.py │ │ │ ├── enable_disable_assessment_probation_request.py │ │ │ ├── enable_disable_assessment_probation_request_body.py │ │ │ ├── enable_disable_assessment_probation_response.py │ │ │ ├── enable_disable_assessment_probation_response_body.py │ │ │ ├── enum.py │ │ │ ├── enum_field.py │ │ │ ├── enums.py │ │ │ ├── error_info.py │ │ │ ├── field_variable_sub_vlaue.py │ │ │ ├── field_variable_sub_vlaue_for_review.py │ │ │ ├── field_variable_value.py │ │ │ ├── field_variable_value_i18n.py │ │ │ ├── field_variable_value_to.py │ │ │ ├── field_variable_value_to_enum.py │ │ │ ├── field_variable_value_to_file.py │ │ │ ├── field_variable_value_to_file_for_write.py │ │ │ ├── field_variable_value_to_for_review.py │ │ │ ├── field_variable_value_to_object.py │ │ │ ├── field_variable_value_to_record.py │ │ │ ├── file.py │ │ │ ├── flow_variable_data_process_request.py │ │ │ ├── flow_variable_data_process_response.py │ │ │ ├── flow_variable_data_process_response_body.py │ │ │ ├── form_field_variable_bool_value.py │ │ │ ├── form_field_variable_i18n_value.py │ │ │ ├── form_field_variable_null_value.py │ │ │ ├── form_field_variable_number_value.py │ │ │ ├── form_field_variable_string_value.py │ │ │ ├── form_variable_value_info.py │ │ │ ├── get_approval_groups_request.py │ │ │ ├── get_approval_groups_request_body.py │ │ │ ├── get_approval_groups_response.py │ │ │ ├── get_approval_groups_response_body.py │ │ │ ├── get_by_department_bp_request.py │ │ │ ├── get_by_department_bp_request_body.py │ │ │ ├── get_by_department_bp_response.py │ │ │ ├── get_by_department_bp_response_body.py │ │ │ ├── get_draft_request.py │ │ │ ├── get_draft_response.py │ │ │ ├── get_draft_response_body.py │ │ │ ├── get_job_request.py │ │ │ ├── get_job_request_body.py │ │ │ ├── get_job_response.py │ │ │ ├── get_job_response_body.py │ │ │ ├── get_process_form_variable_data_request.py │ │ │ ├── get_process_form_variable_data_request_body.py │ │ │ ├── get_process_form_variable_data_response.py │ │ │ ├── get_process_form_variable_data_response_body.py │ │ │ ├── get_process_request.py │ │ │ ├── get_process_request_body.py │ │ │ ├── get_process_response.py │ │ │ ├── get_process_response_body.py │ │ │ ├── hiberarchy_common.py │ │ │ ├── hrbp_info.py │ │ │ ├── i18n.py │ │ │ ├── i18n_v2.py │ │ │ ├── international_assignment.py │ │ │ ├── international_assignment_v2.py │ │ │ ├── international_assignment_v2_for_create.py │ │ │ ├── international_assignment_v2_for_patch.py │ │ │ ├── job.py │ │ │ ├── job_change.py │ │ │ ├── job_data.py │ │ │ ├── job_data_cost_center.py │ │ │ ├── job_data_custom_org.py │ │ │ ├── job_data_id.py │ │ │ ├── job_family.py │ │ │ ├── job_family_timeline.py │ │ │ ├── job_family_version_data.py │ │ │ ├── job_grade.py │ │ │ ├── job_grade_create.py │ │ │ ├── job_grade_update.py │ │ │ ├── job_level.py │ │ │ ├── job_timeline.py │ │ │ ├── job_version_data.py │ │ │ ├── lang_text.py │ │ │ ├── language.py │ │ │ ├── leave_accrual_record.py │ │ │ ├── leave_balance.py │ │ │ ├── leave_employ_expire_record.py │ │ │ ├── leave_extend_item.py │ │ │ ├── leave_granting_record.py │ │ │ ├── leave_process_info.py │ │ │ ├── leave_request.py │ │ │ ├── leave_request_detail.py │ │ │ ├── list_approver_request.py │ │ │ ├── list_approver_request_body.py │ │ │ ├── list_approver_response.py │ │ │ ├── list_approver_response_body.py │ │ │ ├── list_bp_request.py │ │ │ ├── list_bp_request_body.py │ │ │ ├── list_bp_response.py │ │ │ ├── list_bp_response_body.py │ │ │ ├── list_by_biz_id_signature_file_request.py │ │ │ ├── list_by_biz_id_signature_file_response.py │ │ │ ├── list_by_biz_id_signature_file_response_body.py │ │ │ ├── list_by_file_id_signature_node_request.py │ │ │ ├── list_by_file_id_signature_node_response.py │ │ │ ├── list_by_file_id_signature_node_response_body.py │ │ │ ├── list_employees_international_assignment_request.py │ │ │ ├── list_employees_international_assignment_response.py │ │ │ ├── list_employees_international_assignment_response_body.py │ │ │ ├── list_job_request.py │ │ │ ├── list_job_request_body.py │ │ │ ├── list_job_response.py │ │ │ ├── list_job_response_body.py │ │ │ ├── list_process_approver_request.py │ │ │ ├── list_process_approver_response.py │ │ │ ├── list_process_approver_response_body.py │ │ │ ├── list_process_request.py │ │ │ ├── list_process_request_body.py │ │ │ ├── list_process_response.py │ │ │ ├── list_process_response_body.py │ │ │ ├── list_signature_file_request.py │ │ │ ├── list_signature_file_response.py │ │ │ ├── list_signature_file_response_body.py │ │ │ ├── list_signature_template_info_with_thumbnail_request.py │ │ │ ├── list_signature_template_info_with_thumbnail_response.py │ │ │ ├── list_signature_template_info_with_thumbnail_response_body.py │ │ │ ├── list_workforce_plan_request.py │ │ │ ├── list_workforce_plan_request_body.py │ │ │ ├── list_workforce_plan_response.py │ │ │ ├── list_workforce_plan_response_body.py │ │ │ ├── location.py │ │ │ ├── location_address_create.py │ │ │ ├── location_address_update.py │ │ │ ├── location_timeline.py │ │ │ ├── location_update.py │ │ │ ├── location_v2.py │ │ │ ├── location_version_data.py │ │ │ ├── match_rule.py │ │ │ ├── match_rules.py │ │ │ ├── matching_rule_dimension_item.py │ │ │ ├── matching_rule_item.py │ │ │ ├── matching_rule_scope_setting.py │ │ │ ├── name.py │ │ │ ├── name_for_update.py │ │ │ ├── national_id.py │ │ │ ├── national_id_for_update.py │ │ │ ├── nationality.py │ │ │ ├── notice_period_detail.py │ │ │ ├── object_field_data.py │ │ │ ├── offer_info.py │ │ │ ├── offer_info_update.py │ │ │ ├── onboarding_flow.py │ │ │ ├── onboarding_flow_change.py │ │ │ ├── onboarding_qr_code.py │ │ │ ├── onboarding_task.py │ │ │ ├── onboarding_task_change.py │ │ │ ├── open_query_department_change_list_by_ids_approval_groups_request.py │ │ │ ├── open_query_department_change_list_by_ids_approval_groups_request_body.py │ │ │ ├── open_query_department_change_list_by_ids_approval_groups_response.py │ │ │ ├── open_query_department_change_list_by_ids_approval_groups_response_body.py │ │ │ ├── open_query_job_change_list_by_ids_approval_groups_request.py │ │ │ ├── open_query_job_change_list_by_ids_approval_groups_request_body.py │ │ │ ├── open_query_job_change_list_by_ids_approval_groups_response.py │ │ │ ├── open_query_job_change_list_by_ids_approval_groups_response_body.py │ │ │ ├── open_query_position_change_list_by_ids_approval_groups_request.py │ │ │ ├── open_query_position_change_list_by_ids_approval_groups_request_body.py │ │ │ ├── open_query_position_change_list_by_ids_approval_groups_response.py │ │ │ ├── open_query_position_change_list_by_ids_approval_groups_response_body.py │ │ │ ├── operation_log_entity.py │ │ │ ├── operation_log_entity_field.py │ │ │ ├── operation_log_entity_field_ext.py │ │ │ ├── operation_log_list_req.py │ │ │ ├── operation_log_list_resp_item.py │ │ │ ├── org_role.py │ │ │ ├── org_role_update.py │ │ │ ├── organization_domain_event_data.py │ │ │ ├── organization_op_log.py │ │ │ ├── orgdraft_department_id.py │ │ │ ├── orgdraft_orgrole_assignment.py │ │ │ ├── orgrole_assignment_org.py │ │ │ ├── orgrole_info.py │ │ │ ├── p2_corehr_approval_groups_updated_v2.py │ │ │ ├── p2_corehr_company_created_v2.py │ │ │ ├── p2_corehr_company_deleted_v2.py │ │ │ ├── p2_corehr_company_updated_v2.py │ │ │ ├── p2_corehr_cost_center_created_v2.py │ │ │ ├── p2_corehr_cost_center_deleted_v2.py │ │ │ ├── p2_corehr_cost_center_updated_v2.py │ │ │ ├── p2_corehr_custom_org_created_v2.py │ │ │ ├── p2_corehr_custom_org_deleted_v2.py │ │ │ ├── p2_corehr_custom_org_updated_v2.py │ │ │ ├── p2_corehr_department_created_v2.py │ │ │ ├── p2_corehr_department_updated_v2.py │ │ │ ├── p2_corehr_employee_domain_event_v2.py │ │ │ ├── p2_corehr_job_change_status_updated_v2.py │ │ │ ├── p2_corehr_job_change_updated_v2.py │ │ │ ├── p2_corehr_job_family_created_v2.py │ │ │ ├── p2_corehr_job_family_deleted_v2.py │ │ │ ├── p2_corehr_job_family_updated_v2.py │ │ │ ├── p2_corehr_job_grade_created_v2.py │ │ │ ├── p2_corehr_job_grade_deleted_v2.py │ │ │ ├── p2_corehr_job_grade_updated_v2.py │ │ │ ├── p2_corehr_job_level_created_v2.py │ │ │ ├── p2_corehr_job_level_deleted_v2.py │ │ │ ├── p2_corehr_job_level_updated_v2.py │ │ │ ├── p2_corehr_location_created_v2.py │ │ │ ├── p2_corehr_location_deleted_v2.py │ │ │ ├── p2_corehr_location_updated_v2.py │ │ │ ├── p2_corehr_offboarding_checklist_updated_v2.py │ │ │ ├── p2_corehr_offboarding_status_updated_v2.py │ │ │ ├── p2_corehr_offboarding_updated_v2.py │ │ │ ├── p2_corehr_pathway_created_v2.py │ │ │ ├── p2_corehr_pathway_deleted_v2.py │ │ │ ├── p2_corehr_pathway_updated_v2.py │ │ │ ├── p2_corehr_position_created_v2.py │ │ │ ├── p2_corehr_position_deleted_v2.py │ │ │ ├── p2_corehr_position_updated_v2.py │ │ │ ├── p2_corehr_pre_hire_onboarding_task_changed_v2.py │ │ │ ├── p2_corehr_probation_updated_v2.py │ │ │ ├── p2_corehr_process_approver_updated_v2.py │ │ │ ├── p2_corehr_process_cc_updated_v2.py │ │ │ ├── p2_corehr_process_comment_info_updated_v2.py │ │ │ ├── p2_corehr_process_node_updated_v2.py │ │ │ ├── p2_corehr_process_status_update_v2.py │ │ │ ├── p2_corehr_process_updated_v2.py │ │ │ ├── p2_corehr_signature_file_status_updated_v2.py │ │ │ ├── parents_department_request.py │ │ │ ├── parents_department_request_body.py │ │ │ ├── parents_department_response.py │ │ │ ├── parents_department_response_body.py │ │ │ ├── patch_cost_center_request.py │ │ │ ├── patch_cost_center_request_body.py │ │ │ ├── patch_cost_center_response.py │ │ │ ├── patch_cost_center_response_body.py │ │ │ ├── patch_cost_center_version_request.py │ │ │ ├── patch_cost_center_version_request_body.py │ │ │ ├── patch_cost_center_version_response.py │ │ │ ├── patch_cost_center_version_response_body.py │ │ │ ├── patch_custom_org_request.py │ │ │ ├── patch_custom_org_response.py │ │ │ ├── patch_department_request.py │ │ │ ├── patch_department_response.py │ │ │ ├── patch_department_response_body.py │ │ │ ├── patch_employees_additional_job_request.py │ │ │ ├── patch_employees_additional_job_response.py │ │ │ ├── patch_employees_additional_job_response_body.py │ │ │ ├── patch_employees_international_assignment_request.py │ │ │ ├── patch_employees_international_assignment_response.py │ │ │ ├── patch_employees_international_assignment_response_body.py │ │ │ ├── patch_job_grade_request.py │ │ │ ├── patch_job_grade_response.py │ │ │ ├── patch_job_grade_response_body.py │ │ │ ├── patch_location_address_request.py │ │ │ ├── patch_location_address_response.py │ │ │ ├── patch_location_address_response_body.py │ │ │ ├── patch_location_request.py │ │ │ ├── patch_location_response.py │ │ │ ├── patch_location_response_body.py │ │ │ ├── patch_pathway_request.py │ │ │ ├── patch_pathway_response.py │ │ │ ├── patch_person_request.py │ │ │ ├── patch_person_response.py │ │ │ ├── patch_person_response_body.py │ │ │ ├── patch_position_request.py │ │ │ ├── patch_position_response.py │ │ │ ├── patch_pre_hire_request.py │ │ │ ├── patch_pre_hire_response.py │ │ │ ├── patch_pre_hire_response_body.py │ │ │ ├── patch_probation_assessment_request.py │ │ │ ├── patch_probation_assessment_response.py │ │ │ ├── patch_probation_assessment_response_body.py │ │ │ ├── pathway.py │ │ │ ├── pathway_create.py │ │ │ ├── pathway_update.py │ │ │ ├── person_info.py │ │ │ ├── person_info_bt.py │ │ │ ├── person_info_chn.py │ │ │ ├── person_name.py │ │ │ ├── personal_profile.py │ │ │ ├── personal_profile_for_update.py │ │ │ ├── phone.py │ │ │ ├── phone_for_update.py │ │ │ ├── phone_number_and_area_code.py │ │ │ ├── position.py │ │ │ ├── position_adjustment_info.py │ │ │ ├── position_change.py │ │ │ ├── position_create.py │ │ │ ├── position_update.py │ │ │ ├── pre_hire.py │ │ │ ├── pre_hire_abnormal_reason.py │ │ │ ├── pre_hire_contract_info.py │ │ │ ├── pre_hire_employment_info.py │ │ │ ├── pre_hire_onboarding_info.py │ │ │ ├── pre_hire_pay_group_info.py │ │ │ ├── pre_hire_probation_info.py │ │ │ ├── prehire_create.py │ │ │ ├── prehire_default_cost_center_update.py │ │ │ ├── prehire_seniority_adjust_information.py │ │ │ ├── prehire_seniority_adjust_information_query.py │ │ │ ├── prehire_seniority_adjust_information_update.py │ │ │ ├── prehire_update.py │ │ │ ├── probation_info.py │ │ │ ├── probation_info_for_submit.py │ │ │ ├── process_abstract_item.py │ │ │ ├── process_approver.py │ │ │ ├── process_cc_item.py │ │ │ ├── process_comment_info.py │ │ │ ├── process_done_item.py │ │ │ ├── process_extra.py │ │ │ ├── process_form_variable.py │ │ │ ├── process_form_variable_v2.py │ │ │ ├── process_info.py │ │ │ ├── process_link.py │ │ │ ├── process_revoke_and_withdraw.py │ │ │ ├── process_system_done_item.py │ │ │ ├── process_system_todo_item.py │ │ │ ├── process_todo_item.py │ │ │ ├── process_transfer.py │ │ │ ├── profile_setting_address.py │ │ │ ├── profile_setting_bank_account.py │ │ │ ├── profile_setting_career.py │ │ │ ├── profile_setting_citizenship_status.py │ │ │ ├── profile_setting_cost_center.py │ │ │ ├── profile_setting_custom_field.py │ │ │ ├── profile_setting_custom_group.py │ │ │ ├── profile_setting_custom_group_item.py │ │ │ ├── profile_setting_data_attachment.py │ │ │ ├── profile_setting_dependent.py │ │ │ ├── profile_setting_education.py │ │ │ ├── profile_setting_emergency_contact.py │ │ │ ├── profile_setting_emp_basic_info_for_update.py │ │ │ ├── profile_setting_emp_contract_record.py │ │ │ ├── profile_setting_emp_info_for_update.py │ │ │ ├── profile_setting_employment_basic_info.py │ │ │ ├── profile_setting_employment_info.py │ │ │ ├── profile_setting_employment_record.py │ │ │ ├── profile_setting_field_error.py │ │ │ ├── profile_setting_file.py │ │ │ ├── profile_setting_hukou.py │ │ │ ├── profile_setting_i18n.py │ │ │ ├── profile_setting_name.py │ │ │ ├── profile_setting_national.py │ │ │ ├── profile_setting_personal_basic_info.py │ │ │ ├── profile_setting_personal_info.py │ │ │ ├── profile_setting_personal_record.py │ │ │ ├── profile_setting_phone.py │ │ │ ├── profile_setting_probation_info.py │ │ │ ├── profile_setting_resident_tax.py │ │ │ ├── profile_setting_work_experience.py │ │ │ ├── qr_code.py │ │ │ ├── qr_code_dimension.py │ │ │ ├── qr_code_dimension_value.py │ │ │ ├── qr_code_value.py │ │ │ ├── query_custom_org_request.py │ │ │ ├── query_custom_org_request_body.py │ │ │ ├── query_custom_org_response.py │ │ │ ├── query_custom_org_response_body.py │ │ │ ├── query_employees_job_data_request.py │ │ │ ├── query_employees_job_data_request_body.py │ │ │ ├── query_employees_job_data_response.py │ │ │ ├── query_employees_job_data_response_body.py │ │ │ ├── query_job_grade_request.py │ │ │ ├── query_job_grade_request_body.py │ │ │ ├── query_job_grade_response.py │ │ │ ├── query_job_grade_response_body.py │ │ │ ├── query_multi_timeline_department_request.py │ │ │ ├── query_multi_timeline_department_request_body.py │ │ │ ├── query_multi_timeline_department_response.py │ │ │ ├── query_multi_timeline_department_response_body.py │ │ │ ├── query_multi_timeline_job_family_request.py │ │ │ ├── query_multi_timeline_job_family_request_body.py │ │ │ ├── query_multi_timeline_job_family_response.py │ │ │ ├── query_multi_timeline_job_family_response_body.py │ │ │ ├── query_multi_timeline_job_request.py │ │ │ ├── query_multi_timeline_job_request_body.py │ │ │ ├── query_multi_timeline_job_response.py │ │ │ ├── query_multi_timeline_job_response_body.py │ │ │ ├── query_operation_logs_department_request.py │ │ │ ├── query_operation_logs_department_request_body.py │ │ │ ├── query_operation_logs_department_response.py │ │ │ ├── query_operation_logs_department_response_body.py │ │ │ ├── query_position_request.py │ │ │ ├── query_position_request_body.py │ │ │ ├── query_position_response.py │ │ │ ├── query_position_response_body.py │ │ │ ├── query_pre_hire_request.py │ │ │ ├── query_pre_hire_request_body.py │ │ │ ├── query_pre_hire_response.py │ │ │ ├── query_pre_hire_response_body.py │ │ │ ├── query_process_flow_data_template_req.py │ │ │ ├── query_recent_change_company_request.py │ │ │ ├── query_recent_change_company_request_body.py │ │ │ ├── query_recent_change_company_response.py │ │ │ ├── query_recent_change_company_response_body.py │ │ │ ├── query_recent_change_cost_center_request.py │ │ │ ├── query_recent_change_cost_center_request_body.py │ │ │ ├── query_recent_change_cost_center_response.py │ │ │ ├── query_recent_change_cost_center_response_body.py │ │ │ ├── query_recent_change_custom_org_request.py │ │ │ ├── query_recent_change_custom_org_response.py │ │ │ ├── query_recent_change_custom_org_response_body.py │ │ │ ├── query_recent_change_department_request.py │ │ │ ├── query_recent_change_department_request_body.py │ │ │ ├── query_recent_change_department_response.py │ │ │ ├── query_recent_change_department_response_body.py │ │ │ ├── query_recent_change_job_family_request.py │ │ │ ├── query_recent_change_job_family_request_body.py │ │ │ ├── query_recent_change_job_family_response.py │ │ │ ├── query_recent_change_job_family_response_body.py │ │ │ ├── query_recent_change_job_grade_request.py │ │ │ ├── query_recent_change_job_grade_request_body.py │ │ │ ├── query_recent_change_job_grade_response.py │ │ │ ├── query_recent_change_job_grade_response_body.py │ │ │ ├── query_recent_change_job_level_request.py │ │ │ ├── query_recent_change_job_level_request_body.py │ │ │ ├── query_recent_change_job_level_response.py │ │ │ ├── query_recent_change_job_level_response_body.py │ │ │ ├── query_recent_change_job_request.py │ │ │ ├── query_recent_change_job_response.py │ │ │ ├── query_recent_change_job_response_body.py │ │ │ ├── query_recent_change_location_request.py │ │ │ ├── query_recent_change_location_request_body.py │ │ │ ├── query_recent_change_location_response.py │ │ │ ├── query_recent_change_location_response_body.py │ │ │ ├── query_recent_change_position_request.py │ │ │ ├── query_recent_change_position_response.py │ │ │ ├── query_recent_change_position_response_body.py │ │ │ ├── query_signature_file_request.py │ │ │ ├── query_signature_file_request_body.py │ │ │ ├── query_signature_file_response.py │ │ │ ├── query_signature_file_response_body.py │ │ │ ├── query_timeline_department_request.py │ │ │ ├── query_timeline_department_request_body.py │ │ │ ├── query_timeline_department_response.py │ │ │ ├── query_timeline_department_response_body.py │ │ │ ├── remove_version_cost_allocation_request.py │ │ │ ├── remove_version_cost_allocation_request_body.py │ │ │ ├── remove_version_cost_allocation_response.py │ │ │ ├── remove_version_default_cost_center_request.py │ │ │ ├── remove_version_default_cost_center_request_body.py │ │ │ ├── remove_version_default_cost_center_response.py │ │ │ ├── reorganization_info.py │ │ │ ├── report_detail_req.py │ │ │ ├── resident_tax.py │ │ │ ├── resident_tax_for_update.py │ │ │ ├── restore_flow_instance_pre_hire_request.py │ │ │ ├── restore_flow_instance_pre_hire_request_body.py │ │ │ ├── restore_flow_instance_pre_hire_response.py │ │ │ ├── restore_flow_instance_pre_hire_response_body.py │ │ │ ├── revoke_job_change_request.py │ │ │ ├── revoke_job_change_request_body.py │ │ │ ├── revoke_job_change_response.py │ │ │ ├── revoke_job_change_response_body.py │ │ │ ├── revoke_offboarding_request.py │ │ │ ├── revoke_offboarding_request_body.py │ │ │ ├── revoke_offboarding_response.py │ │ │ ├── revoke_offboarding_response_body.py │ │ │ ├── search_basic_info_bank_branch_request.py │ │ │ ├── search_basic_info_bank_branch_request_body.py │ │ │ ├── search_basic_info_bank_branch_response.py │ │ │ ├── search_basic_info_bank_branch_response_body.py │ │ │ ├── search_basic_info_bank_request.py │ │ │ ├── search_basic_info_bank_request_body.py │ │ │ ├── search_basic_info_bank_response.py │ │ │ ├── search_basic_info_bank_response_body.py │ │ │ ├── search_basic_info_city_request.py │ │ │ ├── search_basic_info_city_request_body.py │ │ │ ├── search_basic_info_city_response.py │ │ │ ├── search_basic_info_city_response_body.py │ │ │ ├── search_basic_info_country_region_request.py │ │ │ ├── search_basic_info_country_region_request_body.py │ │ │ ├── search_basic_info_country_region_response.py │ │ │ ├── search_basic_info_country_region_response_body.py │ │ │ ├── search_basic_info_country_region_subdivision_request.py │ │ │ ├── search_basic_info_country_region_subdivision_request_body.py │ │ │ ├── search_basic_info_country_region_subdivision_response.py │ │ │ ├── search_basic_info_country_region_subdivision_response_body.py │ │ │ ├── search_basic_info_currency_request.py │ │ │ ├── search_basic_info_currency_request_body.py │ │ │ ├── search_basic_info_currency_response.py │ │ │ ├── search_basic_info_currency_response_body.py │ │ │ ├── search_basic_info_district_request.py │ │ │ ├── search_basic_info_district_request_body.py │ │ │ ├── search_basic_info_district_response.py │ │ │ ├── search_basic_info_district_response_body.py │ │ │ ├── search_basic_info_language_request.py │ │ │ ├── search_basic_info_language_request_body.py │ │ │ ├── search_basic_info_language_response.py │ │ │ ├── search_basic_info_language_response_body.py │ │ │ ├── search_basic_info_nationality_request.py │ │ │ ├── search_basic_info_nationality_request_body.py │ │ │ ├── search_basic_info_nationality_response.py │ │ │ ├── search_basic_info_nationality_response_body.py │ │ │ ├── search_basic_info_time_zone_request.py │ │ │ ├── search_basic_info_time_zone_request_body.py │ │ │ ├── search_basic_info_time_zone_response.py │ │ │ ├── search_basic_info_time_zone_response_body.py │ │ │ ├── search_contract_request.py │ │ │ ├── search_contract_request_body.py │ │ │ ├── search_contract_response.py │ │ │ ├── search_contract_response_body.py │ │ │ ├── search_cost_center_request.py │ │ │ ├── search_cost_center_request_body.py │ │ │ ├── search_cost_center_response.py │ │ │ ├── search_cost_center_response_body.py │ │ │ ├── search_department_request.py │ │ │ ├── search_department_request_body.py │ │ │ ├── search_department_response.py │ │ │ ├── search_department_response_body.py │ │ │ ├── search_employee_request.py │ │ │ ├── search_employee_request_body.py │ │ │ ├── search_employee_response.py │ │ │ ├── search_employee_response_body.py │ │ │ ├── search_enum_request.py │ │ │ ├── search_enum_request_body.py │ │ │ ├── search_enum_response.py │ │ │ ├── search_enum_response_body.py │ │ │ ├── search_job_change_request.py │ │ │ ├── search_job_change_request_body.py │ │ │ ├── search_job_change_response.py │ │ │ ├── search_job_change_response_body.py │ │ │ ├── search_pre_hire_request.py │ │ │ ├── search_pre_hire_request_body.py │ │ │ ├── search_pre_hire_response.py │ │ │ ├── search_pre_hire_response_body.py │ │ │ ├── search_probation_request.py │ │ │ ├── search_probation_request_body.py │ │ │ ├── search_probation_response.py │ │ │ ├── search_probation_response_body.py │ │ │ ├── search_signature_template_request.py │ │ │ ├── search_signature_template_response.py │ │ │ ├── search_signature_template_response_body.py │ │ │ ├── seniority_adjust_information.py │ │ │ ├── seniority_adjust_information_edit.py │ │ │ ├── seniority_adjust_information_for_edit.py │ │ │ ├── signature_custom_field_v1.py │ │ │ ├── signature_custom_field_v2.py │ │ │ ├── signature_custom_field_value.py │ │ │ ├── signature_custom_field_value_multilingual_value.py │ │ │ ├── signature_enum_info.py │ │ │ ├── signature_enum_info_label.py │ │ │ ├── signature_file.py │ │ │ ├── signature_file_system_field.py │ │ │ ├── signature_folder.py │ │ │ ├── signature_human_info.py │ │ │ ├── signature_meta_info.py │ │ │ ├── signature_node.py │ │ │ ├── signature_signatory_label.py │ │ │ ├── signature_template.py │ │ │ ├── signature_template_attachment_info.py │ │ │ ├── signature_template_brief_info.py │ │ │ ├── signature_template_combination_field_info.py │ │ │ ├── signature_template_combination_field_info_v2.py │ │ │ ├── signature_template_combination_sub_field_info.py │ │ │ ├── signature_template_common_field_info.py │ │ │ ├── signature_template_content_info.py │ │ │ ├── signature_template_content_item.py │ │ │ ├── signature_template_custom_field.py │ │ │ ├── signature_template_field.py │ │ │ ├── signature_template_filter.py │ │ │ ├── signature_template_filter_item.py │ │ │ ├── signature_template_id_with_system_and_custom_field.py │ │ │ ├── signature_template_info.py │ │ │ ├── signature_template_info_with_thumbnail.py │ │ │ ├── signature_template_permission_info.py │ │ │ ├── signature_template_region_info.py │ │ │ ├── signature_template_setting.py │ │ │ ├── signature_user_info.py │ │ │ ├── start_process_param.py │ │ │ ├── submit_probation_request.py │ │ │ ├── submit_probation_request_body.py │ │ │ ├── submit_probation_response.py │ │ │ ├── submit_probation_response_body.py │ │ │ ├── submit_v2_offboarding_request.py │ │ │ ├── submit_v2_offboarding_request_body.py │ │ │ ├── submit_v2_offboarding_response.py │ │ │ ├── submit_v2_offboarding_response_body.py │ │ │ ├── support_cost_center_item.py │ │ │ ├── talent_pool_member_op_req_item.py │ │ │ ├── talent_pool_member_op_resp_item.py │ │ │ ├── talent_pool_member_ref_req_item.py │ │ │ ├── talent_pool_update_refs_req_mask.py │ │ │ ├── terminate_signature_fail_id_and_reason.py │ │ │ ├── terminate_signature_file_request.py │ │ │ ├── terminate_signature_file_request_body.py │ │ │ ├── terminate_signature_file_response.py │ │ │ ├── terminate_signature_file_response_body.py │ │ │ ├── time_zone.py │ │ │ ├── tranfer_employment_info.py │ │ │ ├── transfer_info.py │ │ │ ├── transform_onboarding_task_pre_hire_request.py │ │ │ ├── transform_onboarding_task_pre_hire_request_body.py │ │ │ ├── transform_onboarding_task_pre_hire_response.py │ │ │ ├── transform_onboarding_task_pre_hire_response_body.py │ │ │ ├── transit_task_pre_hire_request.py │ │ │ ├── transit_task_pre_hire_request_body.py │ │ │ ├── transit_task_pre_hire_response.py │ │ │ ├── transit_task_pre_hire_response_body.py │ │ │ ├── tree_department_request.py │ │ │ ├── tree_department_request_body.py │ │ │ ├── tree_department_response.py │ │ │ ├── tree_department_response_body.py │ │ │ ├── update_process_approver_request.py │ │ │ ├── update_process_approver_response.py │ │ │ ├── update_process_approver_response_body.py │ │ │ ├── update_process_extra_request.py │ │ │ ├── update_process_extra_response.py │ │ │ ├── update_process_extra_response_body.py │ │ │ ├── update_process_revoke_request.py │ │ │ ├── update_process_revoke_response.py │ │ │ ├── update_process_revoke_response_body.py │ │ │ ├── update_process_transfer_request.py │ │ │ ├── update_process_transfer_response.py │ │ │ ├── update_process_transfer_response_body.py │ │ │ ├── update_process_withdraw_request.py │ │ │ ├── update_process_withdraw_response.py │ │ │ ├── update_process_withdraw_response_body.py │ │ │ ├── update_rule_custom_org_request.py │ │ │ ├── update_rule_custom_org_request_body.py │ │ │ ├── update_rule_custom_org_response.py │ │ │ ├── update_version_cost_allocation_request.py │ │ │ ├── update_version_cost_allocation_request_body.py │ │ │ ├── update_version_cost_allocation_response.py │ │ │ ├── update_version_default_cost_center_request.py │ │ │ ├── update_version_default_cost_center_request_body.py │ │ │ ├── update_version_default_cost_center_response.py │ │ │ ├── user_contact.py │ │ │ ├── user_id.py │ │ │ ├── user_info.py │ │ │ ├── withdraw_onboarding_pre_hire_request.py │ │ │ ├── withdraw_onboarding_pre_hire_request_body.py │ │ │ ├── withdraw_onboarding_pre_hire_response.py │ │ │ ├── withdraw_onboarding_pre_hire_response_body.py │ │ │ ├── withdraw_probation_request.py │ │ │ ├── withdraw_probation_request_body.py │ │ │ ├── withdraw_probation_response.py │ │ │ ├── withdraw_probation_response_body.py │ │ │ ├── work_email.py │ │ │ ├── work_email_check_result.py │ │ │ ├── work_email_info_list.py │ │ │ ├── work_experience.py │ │ │ ├── work_experience_for_update.py │ │ │ ├── work_experience_info.py │ │ │ ├── workforce_plan.py │ │ │ ├── workforce_plan_detail.py │ │ │ ├── workforce_plan_detail_req.py │ │ │ ├── workforce_plan_detail_row.py │ │ │ ├── workforce_plan_detail_v2.py │ │ │ ├── workforce_plan_eai_detail.py │ │ │ └── workforce_plan_multi_period_value.py │ │ │ ├── processor.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ ├── approval_groups.py │ │ │ ├── approver.py │ │ │ ├── basic_info_bank.py │ │ │ ├── basic_info_bank_branch.py │ │ │ ├── basic_info_city.py │ │ │ ├── basic_info_country_region.py │ │ │ ├── basic_info_country_region_subdivision.py │ │ │ ├── basic_info_currency.py │ │ │ ├── basic_info_district.py │ │ │ ├── basic_info_language.py │ │ │ ├── basic_info_nationality.py │ │ │ ├── basic_info_time_zone.py │ │ │ ├── bp.py │ │ │ ├── company.py │ │ │ ├── contract.py │ │ │ ├── cost_allocation.py │ │ │ ├── cost_center.py │ │ │ ├── cost_center_version.py │ │ │ ├── custom_org.py │ │ │ ├── default_cost_center.py │ │ │ ├── department.py │ │ │ ├── draft.py │ │ │ ├── employee.py │ │ │ ├── employees_additional_job.py │ │ │ ├── employees_bp.py │ │ │ ├── employees_international_assignment.py │ │ │ ├── employees_job_data.py │ │ │ ├── enum.py │ │ │ ├── job.py │ │ │ ├── job_change.py │ │ │ ├── job_family.py │ │ │ ├── job_grade.py │ │ │ ├── job_level.py │ │ │ ├── location.py │ │ │ ├── location_address.py │ │ │ ├── offboarding.py │ │ │ ├── pathway.py │ │ │ ├── person.py │ │ │ ├── position.py │ │ │ ├── pre_hire.py │ │ │ ├── probation.py │ │ │ ├── probation_assessment.py │ │ │ ├── process.py │ │ │ ├── process_approver.py │ │ │ ├── process_cc.py │ │ │ ├── process_comment_info.py │ │ │ ├── process_extra.py │ │ │ ├── process_form_variable_data.py │ │ │ ├── process_node.py │ │ │ ├── process_revoke.py │ │ │ ├── process_status.py │ │ │ ├── process_transfer.py │ │ │ ├── process_withdraw.py │ │ │ ├── report_detail_row.py │ │ │ ├── signature_file.py │ │ │ ├── signature_node.py │ │ │ ├── signature_template.py │ │ │ ├── signature_template_info_with_thumbnail.py │ │ │ ├── workforce_plan.py │ │ │ ├── workforce_plan_detail.py │ │ │ └── workforce_plan_detail_row.py │ │ │ └── version.py │ ├── docs │ │ ├── __init__.py │ │ ├── service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── department_id.py │ │ │ ├── get_content_request.py │ │ │ ├── get_content_request_body.py │ │ │ ├── get_content_response.py │ │ │ ├── get_content_response_body.py │ │ │ └── meta.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ └── content.py │ │ │ └── version.py │ ├── document_ai │ │ ├── __init__.py │ │ ├── service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── bank_card.py │ │ │ ├── bank_card_entity.py │ │ │ ├── bank_entity.py │ │ │ ├── bank_info.py │ │ │ ├── body_entity.py │ │ │ ├── body_info.py │ │ │ ├── business_card.py │ │ │ ├── business_entity.py │ │ │ ├── business_license.py │ │ │ ├── chinese_passport.py │ │ │ ├── chinese_passport_entity.py │ │ │ ├── code_detail.py │ │ │ ├── currency.py │ │ │ ├── department_id.py │ │ │ ├── doc_chunk_bbox_item.py │ │ │ ├── doc_chunk_position.py │ │ │ ├── doc_chunk_result.py │ │ │ ├── doc_chunk_table_cell.py │ │ │ ├── doc_chunk_table_detail.py │ │ │ ├── doc_chunk_table_row.py │ │ │ ├── driving_entity.py │ │ │ ├── driving_license.py │ │ │ ├── drving_license.py │ │ │ ├── extract_copy.py │ │ │ ├── extract_currency.py │ │ │ ├── extract_price.py │ │ │ ├── extract_term.py │ │ │ ├── extract_time.py │ │ │ ├── field_extraction.py │ │ │ ├── field_extraction_contract_request.py │ │ │ ├── field_extraction_contract_request_body.py │ │ │ ├── field_extraction_contract_response.py │ │ │ ├── field_extraction_contract_response_body.py │ │ │ ├── file_detail.py │ │ │ ├── food_manage_entity.py │ │ │ ├── food_manage_license.py │ │ │ ├── food_produce_entity.py │ │ │ ├── food_produce_license.py │ │ │ ├── health_certificate.py │ │ │ ├── health_certificate_entity.py │ │ │ ├── hkm_mainland_travel_permit.py │ │ │ ├── hkm_mainland_travel_permit_entity.py │ │ │ ├── id_card.py │ │ │ ├── id_entity.py │ │ │ ├── image_detail.py │ │ │ ├── kie.py │ │ │ ├── kie_entity.py │ │ │ ├── kv_entity.py │ │ │ ├── llm_config.py │ │ │ ├── llm_content.py │ │ │ ├── llm_detail.py │ │ │ ├── llm_message.py │ │ │ ├── llm_usage.py │ │ │ ├── parse_resume_request.py │ │ │ ├── parse_resume_request_body.py │ │ │ ├── parse_resume_response.py │ │ │ ├── parse_resume_response_body.py │ │ │ ├── recognize_bank_card_request.py │ │ │ ├── recognize_bank_card_request_body.py │ │ │ ├── recognize_bank_card_response.py │ │ │ ├── recognize_bank_card_response_body.py │ │ │ ├── recognize_business_card_request.py │ │ │ ├── recognize_business_card_request_body.py │ │ │ ├── recognize_business_card_response.py │ │ │ ├── recognize_business_card_response_body.py │ │ │ ├── recognize_business_license_request.py │ │ │ ├── recognize_business_license_request_body.py │ │ │ ├── recognize_business_license_response.py │ │ │ ├── recognize_business_license_response_body.py │ │ │ ├── recognize_chinese_passport_request.py │ │ │ ├── recognize_chinese_passport_request_body.py │ │ │ ├── recognize_chinese_passport_response.py │ │ │ ├── recognize_chinese_passport_response_body.py │ │ │ ├── recognize_driving_license_request.py │ │ │ ├── recognize_driving_license_request_body.py │ │ │ ├── recognize_driving_license_response.py │ │ │ ├── recognize_driving_license_response_body.py │ │ │ ├── recognize_food_manage_license_request.py │ │ │ ├── recognize_food_manage_license_request_body.py │ │ │ ├── recognize_food_manage_license_response.py │ │ │ ├── recognize_food_manage_license_response_body.py │ │ │ ├── recognize_food_produce_license_request.py │ │ │ ├── recognize_food_produce_license_request_body.py │ │ │ ├── recognize_food_produce_license_response.py │ │ │ ├── recognize_food_produce_license_response_body.py │ │ │ ├── recognize_health_certificate_request.py │ │ │ ├── recognize_health_certificate_request_body.py │ │ │ ├── recognize_health_certificate_response.py │ │ │ ├── recognize_health_certificate_response_body.py │ │ │ ├── recognize_hkm_mainland_travel_permit_request.py │ │ │ ├── recognize_hkm_mainland_travel_permit_request_body.py │ │ │ ├── recognize_hkm_mainland_travel_permit_response.py │ │ │ ├── recognize_hkm_mainland_travel_permit_response_body.py │ │ │ ├── recognize_id_card_request.py │ │ │ ├── recognize_id_card_request_body.py │ │ │ ├── recognize_id_card_response.py │ │ │ ├── recognize_id_card_response_body.py │ │ │ ├── recognize_taxi_invoice_request.py │ │ │ ├── recognize_taxi_invoice_request_body.py │ │ │ ├── recognize_taxi_invoice_response.py │ │ │ ├── recognize_taxi_invoice_response_body.py │ │ │ ├── recognize_train_invoice_request.py │ │ │ ├── recognize_train_invoice_request_body.py │ │ │ ├── recognize_train_invoice_response.py │ │ │ ├── recognize_train_invoice_response_body.py │ │ │ ├── recognize_tw_mainland_travel_permit_request.py │ │ │ ├── recognize_tw_mainland_travel_permit_request_body.py │ │ │ ├── recognize_tw_mainland_travel_permit_response.py │ │ │ ├── recognize_tw_mainland_travel_permit_response_body.py │ │ │ ├── recognize_vat_invoice_request.py │ │ │ ├── recognize_vat_invoice_request_body.py │ │ │ ├── recognize_vat_invoice_response.py │ │ │ ├── recognize_vat_invoice_response_body.py │ │ │ ├── recognize_vehicle_invoice_request.py │ │ │ ├── recognize_vehicle_invoice_request_body.py │ │ │ ├── recognize_vehicle_invoice_response.py │ │ │ ├── recognize_vehicle_invoice_response_body.py │ │ │ ├── recognize_vehicle_license_request.py │ │ │ ├── recognize_vehicle_license_request_body.py │ │ │ ├── recognize_vehicle_license_response.py │ │ │ ├── recognize_vehicle_license_response_body.py │ │ │ ├── recognized_entities.py │ │ │ ├── recognized_entity.py │ │ │ ├── resume.py │ │ │ ├── resume_award.py │ │ │ ├── resume_career.py │ │ │ ├── resume_certificate.py │ │ │ ├── resume_competition.py │ │ │ ├── resume_education.py │ │ │ ├── resume_language.py │ │ │ ├── resume_project.py │ │ │ ├── table_img.py │ │ │ ├── taxi_enitity.py │ │ │ ├── taxi_entity.py │ │ │ ├── taxi_invoice.py │ │ │ ├── train_entity.py │ │ │ ├── train_invoice.py │ │ │ ├── tw_mainland_travel_permit.py │ │ │ ├── tw_mainland_travel_permit_entity.py │ │ │ ├── vat_entity.py │ │ │ ├── vat_invoice.py │ │ │ ├── vehicle_entity.py │ │ │ ├── vehicle_invoice.py │ │ │ ├── vehicle_invoice_entity.py │ │ │ └── vehicle_license.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ ├── bank_card.py │ │ │ ├── business_card.py │ │ │ ├── business_license.py │ │ │ ├── chinese_passport.py │ │ │ ├── contract.py │ │ │ ├── driving_license.py │ │ │ ├── food_manage_license.py │ │ │ ├── food_produce_license.py │ │ │ ├── health_certificate.py │ │ │ ├── hkm_mainland_travel_permit.py │ │ │ ├── id_card.py │ │ │ ├── resume.py │ │ │ ├── taxi_invoice.py │ │ │ ├── train_invoice.py │ │ │ ├── tw_mainland_travel_permit.py │ │ │ ├── vat_invoice.py │ │ │ ├── vehicle_invoice.py │ │ │ └── vehicle_license.py │ │ │ └── version.py │ ├── docx │ │ ├── __init__.py │ │ ├── service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── add_ons.py │ │ │ ├── agenda.py │ │ │ ├── agenda_item.py │ │ │ ├── agenda_item_content.py │ │ │ ├── agenda_item_title.py │ │ │ ├── agenda_title_element.py │ │ │ ├── ai_template.py │ │ │ ├── batch_delete_chat_announcement_block_children_request.py │ │ │ ├── batch_delete_chat_announcement_block_children_request_body.py │ │ │ ├── batch_delete_chat_announcement_block_children_response.py │ │ │ ├── batch_delete_chat_announcement_block_children_response_body.py │ │ │ ├── batch_delete_document_block_children_request.py │ │ │ ├── batch_delete_document_block_children_request_body.py │ │ │ ├── batch_delete_document_block_children_response.py │ │ │ ├── batch_delete_document_block_children_response_body.py │ │ │ ├── batch_update_chat_announcement_block_request.py │ │ │ ├── batch_update_chat_announcement_block_request_body.py │ │ │ ├── batch_update_chat_announcement_block_response.py │ │ │ ├── batch_update_chat_announcement_block_response_body.py │ │ │ ├── batch_update_document_block_request.py │ │ │ ├── batch_update_document_block_request_body.py │ │ │ ├── batch_update_document_block_response.py │ │ │ ├── batch_update_document_block_response_body.py │ │ │ ├── bitable.py │ │ │ ├── block.py │ │ │ ├── block_id_relation.py │ │ │ ├── block_id_to_image_url.py │ │ │ ├── board.py │ │ │ ├── callout.py │ │ │ ├── caption.py │ │ │ ├── chat_card.py │ │ │ ├── convert_document_request.py │ │ │ ├── convert_document_request_body.py │ │ │ ├── convert_document_response.py │ │ │ ├── convert_document_response_body.py │ │ │ ├── create_chat_announcement_block_children_request.py │ │ │ ├── create_chat_announcement_block_children_request_body.py │ │ │ ├── create_chat_announcement_block_children_response.py │ │ │ ├── create_chat_announcement_block_children_response_body.py │ │ │ ├── create_document_block_children_request.py │ │ │ ├── create_document_block_children_request_body.py │ │ │ ├── create_document_block_children_response.py │ │ │ ├── create_document_block_children_response_body.py │ │ │ ├── create_document_block_descendant_request.py │ │ │ ├── create_document_block_descendant_request_body.py │ │ │ ├── create_document_block_descendant_response.py │ │ │ ├── create_document_block_descendant_response_body.py │ │ │ ├── create_document_request.py │ │ │ ├── create_document_request_body.py │ │ │ ├── create_document_response.py │ │ │ ├── create_document_response_body.py │ │ │ ├── delete_grid_column_request.py │ │ │ ├── delete_table_columns_request.py │ │ │ ├── delete_table_rows_request.py │ │ │ ├── department_id.py │ │ │ ├── diagram.py │ │ │ ├── divider.py │ │ │ ├── document.py │ │ │ ├── document_author.py │ │ │ ├── document_cover.py │ │ │ ├── document_display_setting.py │ │ │ ├── equation.py │ │ │ ├── file.py │ │ │ ├── get_chat_announcement_block_children_request.py │ │ │ ├── get_chat_announcement_block_children_request_body.py │ │ │ ├── get_chat_announcement_block_children_response.py │ │ │ ├── get_chat_announcement_block_children_response_body.py │ │ │ ├── get_chat_announcement_block_request.py │ │ │ ├── get_chat_announcement_block_request_body.py │ │ │ ├── get_chat_announcement_block_response.py │ │ │ ├── get_chat_announcement_block_response_body.py │ │ │ ├── get_chat_announcement_request.py │ │ │ ├── get_chat_announcement_request_body.py │ │ │ ├── get_chat_announcement_response.py │ │ │ ├── get_chat_announcement_response_body.py │ │ │ ├── get_document_block_children_request.py │ │ │ ├── get_document_block_children_request_body.py │ │ │ ├── get_document_block_children_response.py │ │ │ ├── get_document_block_children_response_body.py │ │ │ ├── get_document_block_request.py │ │ │ ├── get_document_block_request_body.py │ │ │ ├── get_document_block_response.py │ │ │ ├── get_document_block_response_body.py │ │ │ ├── get_document_request.py │ │ │ ├── get_document_request_body.py │ │ │ ├── get_document_response.py │ │ │ ├── get_document_response_body.py │ │ │ ├── grid.py │ │ │ ├── grid_column.py │ │ │ ├── iframe.py │ │ │ ├── iframe_component.py │ │ │ ├── image.py │ │ │ ├── inline_block.py │ │ │ ├── inline_file.py │ │ │ ├── inline_link_preview.py │ │ │ ├── insert_grid_column_request.py │ │ │ ├── insert_table_column_request.py │ │ │ ├── insert_table_row_request.py │ │ │ ├── isv.py │ │ │ ├── jira_issue.py │ │ │ ├── link.py │ │ │ ├── link_preview.py │ │ │ ├── list_chat_announcement_block_request.py │ │ │ ├── list_chat_announcement_block_request_body.py │ │ │ ├── list_chat_announcement_block_response.py │ │ │ ├── list_chat_announcement_block_response_body.py │ │ │ ├── list_document_block_request.py │ │ │ ├── list_document_block_request_body.py │ │ │ ├── list_document_block_response.py │ │ │ ├── list_document_block_response_body.py │ │ │ ├── meeting_notes_qa.py │ │ │ ├── mention_doc.py │ │ │ ├── mention_user.py │ │ │ ├── merge_table_cells_request.py │ │ │ ├── mindnote.py │ │ │ ├── objective_id_with_kr_id.py │ │ │ ├── okr.py │ │ │ ├── okr_key_result.py │ │ │ ├── okr_objective.py │ │ │ ├── okr_progress.py │ │ │ ├── okr_progress_rate.py │ │ │ ├── okr_visible_setting.py │ │ │ ├── patch_document_block_request.py │ │ │ ├── patch_document_block_response.py │ │ │ ├── patch_document_block_response_body.py │ │ │ ├── project.py │ │ │ ├── quote_container.py │ │ │ ├── raw_content_document_request.py │ │ │ ├── raw_content_document_request_body.py │ │ │ ├── raw_content_document_response.py │ │ │ ├── raw_content_document_response_body.py │ │ │ ├── reference_base.py │ │ │ ├── reference_synced.py │ │ │ ├── reminder.py │ │ │ ├── replace_file_request.py │ │ │ ├── replace_image_request.py │ │ │ ├── sheet.py │ │ │ ├── source_synced.py │ │ │ ├── sub_page_list.py │ │ │ ├── table.py │ │ │ ├── table_cell.py │ │ │ ├── table_merge_info.py │ │ │ ├── table_property.py │ │ │ ├── task.py │ │ │ ├── text.py │ │ │ ├── text_element.py │ │ │ ├── text_element_style.py │ │ │ ├── text_run.py │ │ │ ├── text_style.py │ │ │ ├── undefined.py │ │ │ ├── undefined_element.py │ │ │ ├── unmerge_table_cells_request.py │ │ │ ├── update_agenda_title_elements_request.py │ │ │ ├── update_block_request.py │ │ │ ├── update_cover_request.py │ │ │ ├── update_document_request.py │ │ │ ├── update_grid_column_width_ratio_request.py │ │ │ ├── update_reference_base_request.py │ │ │ ├── update_table_property_request.py │ │ │ ├── update_task_request.py │ │ │ ├── update_text_elements_request.py │ │ │ ├── update_text_request.py │ │ │ ├── update_text_style_request.py │ │ │ ├── view.py │ │ │ └── wiki_catalog.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ ├── chat_announcement.py │ │ │ ├── chat_announcement_block.py │ │ │ ├── chat_announcement_block_children.py │ │ │ ├── document.py │ │ │ ├── document_block.py │ │ │ ├── document_block_children.py │ │ │ └── document_block_descendant.py │ │ │ └── version.py │ ├── drive │ │ ├── __init__.py │ │ ├── service.py │ │ ├── v1 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ │ ├── __init__.py │ │ │ │ ├── apply_member_request.py │ │ │ │ ├── auth_permission_member_request.py │ │ │ │ ├── auth_permission_member_request_body.py │ │ │ │ ├── auth_permission_member_response.py │ │ │ │ ├── auth_permission_member_response_body.py │ │ │ │ ├── base_member.py │ │ │ │ ├── batch_create_permission_member_request.py │ │ │ │ ├── batch_create_permission_member_request_body.py │ │ │ │ ├── batch_create_permission_member_response.py │ │ │ │ ├── batch_create_permission_member_response_body.py │ │ │ │ ├── batch_get_tmp_download_url_media_request.py │ │ │ │ ├── batch_get_tmp_download_url_media_request_body.py │ │ │ │ ├── batch_get_tmp_download_url_media_response.py │ │ │ │ ├── batch_get_tmp_download_url_media_response_body.py │ │ │ │ ├── batch_query_file_comment_request.py │ │ │ │ ├── batch_query_file_comment_request_body.py │ │ │ │ ├── batch_query_file_comment_response.py │ │ │ │ ├── batch_query_file_comment_response_body.py │ │ │ │ ├── batch_query_meta_request.py │ │ │ │ ├── batch_query_meta_response.py │ │ │ │ ├── batch_query_meta_response_body.py │ │ │ │ ├── bitable_table_field_action.py │ │ │ │ ├── bitable_table_field_action_value.py │ │ │ │ ├── bitable_table_field_action_value_property.py │ │ │ │ ├── bitable_table_field_action_value_property_auto_serial.py │ │ │ │ ├── bitable_table_field_action_value_property_auto_serial_options.py │ │ │ │ ├── bitable_table_field_action_value_property_option.py │ │ │ │ ├── bitable_table_record_action.py │ │ │ │ ├── bitable_table_record_action_field.py │ │ │ │ ├── bitable_table_record_action_field_identity.py │ │ │ │ ├── bitable_table_record_action_field_identity_user.py │ │ │ │ ├── collaborator.py │ │ │ │ ├── copy_file_request.py │ │ │ │ ├── copy_file_request_body.py │ │ │ │ ├── copy_file_response.py │ │ │ │ ├── copy_file_response_body.py │ │ │ │ ├── create_export_task_request.py │ │ │ │ ├── create_export_task_response.py │ │ │ │ ├── create_export_task_response_body.py │ │ │ │ ├── create_file_comment_request.py │ │ │ │ ├── create_file_comment_response.py │ │ │ │ ├── create_file_comment_response_body.py │ │ │ │ ├── create_file_subscription_request.py │ │ │ │ ├── create_file_subscription_response.py │ │ │ │ ├── create_file_subscription_response_body.py │ │ │ │ ├── create_file_version_request.py │ │ │ │ ├── create_file_version_response.py │ │ │ │ ├── create_file_version_response_body.py │ │ │ │ ├── create_folder_file_request.py │ │ │ │ ├── create_folder_file_request_body.py │ │ │ │ ├── create_folder_file_response.py │ │ │ │ ├── create_folder_file_response_body.py │ │ │ │ ├── create_import_task_request.py │ │ │ │ ├── create_import_task_response.py │ │ │ │ ├── create_import_task_response_body.py │ │ │ │ ├── create_permission_member_request.py │ │ │ │ ├── create_permission_member_response.py │ │ │ │ ├── create_permission_member_response_body.py │ │ │ │ ├── create_permission_public_password_request.py │ │ │ │ ├── create_permission_public_password_request_body.py │ │ │ │ ├── create_permission_public_password_response.py │ │ │ │ ├── create_permission_public_password_response_body.py │ │ │ │ ├── create_shortcut_file_request.py │ │ │ │ ├── create_shortcut_file_request_body.py │ │ │ │ ├── create_shortcut_file_response.py │ │ │ │ ├── create_shortcut_file_response_body.py │ │ │ │ ├── delete_file_comment_reply_request.py │ │ │ │ ├── delete_file_comment_reply_request_body.py │ │ │ │ ├── delete_file_comment_reply_response.py │ │ │ │ ├── delete_file_comment_reply_response_body.py │ │ │ │ ├── delete_file_request.py │ │ │ │ ├── delete_file_request_body.py │ │ │ │ ├── delete_file_response.py │ │ │ │ ├── delete_file_response_body.py │ │ │ │ ├── delete_file_version_request.py │ │ │ │ ├── delete_file_version_request_body.py │ │ │ │ ├── delete_file_version_response.py │ │ │ │ ├── delete_file_version_response_body.py │ │ │ │ ├── delete_permission_member_request.py │ │ │ │ ├── delete_permission_member_request_body.py │ │ │ │ ├── delete_permission_member_response.py │ │ │ │ ├── delete_permission_member_response_body.py │ │ │ │ ├── delete_permission_public_password_request.py │ │ │ │ ├── delete_permission_public_password_request_body.py │ │ │ │ ├── delete_permission_public_password_response.py │ │ │ │ ├── delete_permission_public_password_response_body.py │ │ │ │ ├── delete_subscribe_file_request.py │ │ │ │ ├── delete_subscribe_file_request_body.py │ │ │ │ ├── delete_subscribe_file_response.py │ │ │ │ ├── delete_subscribe_file_response_body.py │ │ │ │ ├── department_id.py │ │ │ │ ├── docs_link.py │ │ │ │ ├── download_export_task_request.py │ │ │ │ ├── download_export_task_request_body.py │ │ │ │ ├── download_export_task_response.py │ │ │ │ ├── download_export_task_response_body.py │ │ │ │ ├── download_file_request.py │ │ │ │ ├── download_file_request_body.py │ │ │ │ ├── download_file_response.py │ │ │ │ ├── download_file_response_body.py │ │ │ │ ├── download_media_request.py │ │ │ │ ├── download_media_request_body.py │ │ │ │ ├── download_media_response.py │ │ │ │ ├── download_media_response_body.py │ │ │ │ ├── export_task.py │ │ │ │ ├── favorite.py │ │ │ │ ├── file.py │ │ │ │ ├── file_block_change_info.py │ │ │ │ ├── file_change_info.py │ │ │ │ ├── file_comment.py │ │ │ │ ├── file_comment_reply.py │ │ │ │ ├── file_favorite.py │ │ │ │ ├── file_search.py │ │ │ │ ├── file_statistics.py │ │ │ │ ├── file_subscription.py │ │ │ │ ├── file_upload_info.py │ │ │ │ ├── file_view_record.py │ │ │ │ ├── get_export_task_request.py │ │ │ │ ├── get_export_task_request_body.py │ │ │ │ ├── get_export_task_response.py │ │ │ │ ├── get_export_task_response_body.py │ │ │ │ ├── get_file_comment_request.py │ │ │ │ ├── get_file_comment_request_body.py │ │ │ │ ├── get_file_comment_response.py │ │ │ │ ├── get_file_comment_response_body.py │ │ │ │ ├── get_file_statistics_request.py │ │ │ │ ├── get_file_statistics_request_body.py │ │ │ │ ├── get_file_statistics_response.py │ │ │ │ ├── get_file_statistics_response_body.py │ │ │ │ ├── get_file_subscription_request.py │ │ │ │ ├── get_file_subscription_request_body.py │ │ │ │ ├── get_file_subscription_response.py │ │ │ │ ├── get_file_subscription_response_body.py │ │ │ │ ├── get_file_version_request.py │ │ │ │ ├── get_file_version_request_body.py │ │ │ │ ├── get_file_version_response.py │ │ │ │ ├── get_file_version_response_body.py │ │ │ │ ├── get_import_task_request.py │ │ │ │ ├── get_import_task_request_body.py │ │ │ │ ├── get_import_task_response.py │ │ │ │ ├── get_import_task_response_body.py │ │ │ │ ├── get_permission_public_request.py │ │ │ │ ├── get_permission_public_request_body.py │ │ │ │ ├── get_permission_public_response.py │ │ │ │ ├── get_permission_public_response_body.py │ │ │ │ ├── get_subscribe_file_request.py │ │ │ │ ├── get_subscribe_file_request_body.py │ │ │ │ ├── get_subscribe_file_response.py │ │ │ │ ├── get_subscribe_file_response_body.py │ │ │ │ ├── import_task.py │ │ │ │ ├── import_task_mount_point.py │ │ │ │ ├── list_file_comment_reply_request.py │ │ │ │ ├── list_file_comment_reply_request_body.py │ │ │ │ ├── list_file_comment_reply_response.py │ │ │ │ ├── list_file_comment_reply_response_body.py │ │ │ │ ├── list_file_comment_request.py │ │ │ │ ├── list_file_comment_request_body.py │ │ │ │ ├── list_file_comment_response.py │ │ │ │ ├── list_file_comment_response_body.py │ │ │ │ ├── list_file_request.py │ │ │ │ ├── list_file_request_body.py │ │ │ │ ├── list_file_response.py │ │ │ │ ├── list_file_response_body.py │ │ │ │ ├── list_file_version_request.py │ │ │ │ ├── list_file_version_request_body.py │ │ │ │ ├── list_file_version_response.py │ │ │ │ ├── list_file_version_response_body.py │ │ │ │ ├── list_file_view_record_request.py │ │ │ │ ├── list_file_view_record_request_body.py │ │ │ │ ├── list_file_view_record_response.py │ │ │ │ ├── list_file_view_record_response_body.py │ │ │ │ ├── list_permission_member_request.py │ │ │ │ ├── list_permission_member_request_body.py │ │ │ │ ├── list_permission_member_response.py │ │ │ │ ├── list_permission_member_response_body.py │ │ │ │ ├── media.py │ │ │ │ ├── media_upload_info.py │ │ │ │ ├── member.py │ │ │ │ ├── meta.py │ │ │ │ ├── meta_failed.py │ │ │ │ ├── meta_request.py │ │ │ │ ├── move_file_request.py │ │ │ │ ├── move_file_request_body.py │ │ │ │ ├── move_file_response.py │ │ │ │ ├── move_file_response_body.py │ │ │ │ ├── owner.py │ │ │ │ ├── p2_drive_file_bitable_field_changed_v1.py │ │ │ │ ├── p2_drive_file_bitable_record_changed_v1.py │ │ │ │ ├── p2_drive_file_created_in_folder_v1.py │ │ │ │ ├── p2_drive_file_deleted_v1.py │ │ │ │ ├── p2_drive_file_edit_v1.py │ │ │ │ ├── p2_drive_file_permission_member_added_v1.py │ │ │ │ ├── p2_drive_file_permission_member_applied_v1.py │ │ │ │ ├── p2_drive_file_permission_member_removed_v1.py │ │ │ │ ├── p2_drive_file_read_v1.py │ │ │ │ ├── p2_drive_file_title_updated_v1.py │ │ │ │ ├── p2_drive_file_trashed_v1.py │ │ │ │ ├── patch_file_comment_request.py │ │ │ │ ├── patch_file_comment_request_body.py │ │ │ │ ├── patch_file_comment_response.py │ │ │ │ ├── patch_file_comment_response_body.py │ │ │ │ ├── patch_file_subscription_request.py │ │ │ │ ├── patch_file_subscription_request_body.py │ │ │ │ ├── patch_file_subscription_response.py │ │ │ │ ├── patch_file_subscription_response_body.py │ │ │ │ ├── patch_permission_public_request.py │ │ │ │ ├── patch_permission_public_response.py │ │ │ │ ├── patch_permission_public_response_body.py │ │ │ │ ├── permission_public.py │ │ │ │ ├── permission_public_password.py │ │ │ │ ├── permission_public_request.py │ │ │ │ ├── person.py │ │ │ │ ├── property.py │ │ │ │ ├── refer_entity.py │ │ │ │ ├── reply_content.py │ │ │ │ ├── reply_element.py │ │ │ │ ├── reply_extra.py │ │ │ │ ├── reply_list.py │ │ │ │ ├── request_doc.py │ │ │ │ ├── shortcut_info.py │ │ │ │ ├── subscribe_file_request.py │ │ │ │ ├── subscribe_file_request_body.py │ │ │ │ ├── subscribe_file_response.py │ │ │ │ ├── subscribe_file_response_body.py │ │ │ │ ├── task_check_file_request.py │ │ │ │ ├── task_check_file_request_body.py │ │ │ │ ├── task_check_file_response.py │ │ │ │ ├── task_check_file_response_body.py │ │ │ │ ├── text_run.py │ │ │ │ ├── tmp_download_url.py │ │ │ │ ├── token_type.py │ │ │ │ ├── transfer_owner_permission_member_request.py │ │ │ │ ├── transfer_owner_permission_member_response.py │ │ │ │ ├── transfer_owner_permission_member_response_body.py │ │ │ │ ├── update_file_comment_reply_request.py │ │ │ │ ├── update_file_comment_reply_request_body.py │ │ │ │ ├── update_file_comment_reply_response.py │ │ │ │ ├── update_file_comment_reply_response_body.py │ │ │ │ ├── update_permission_member_request.py │ │ │ │ ├── update_permission_member_response.py │ │ │ │ ├── update_permission_member_response_body.py │ │ │ │ ├── update_permission_public_password_request.py │ │ │ │ ├── update_permission_public_password_request_body.py │ │ │ │ ├── update_permission_public_password_response.py │ │ │ │ ├── update_permission_public_password_response_body.py │ │ │ │ ├── upload_all_file_request.py │ │ │ │ ├── upload_all_file_request_body.py │ │ │ │ ├── upload_all_file_response.py │ │ │ │ ├── upload_all_file_response_body.py │ │ │ │ ├── upload_all_media_request.py │ │ │ │ ├── upload_all_media_request_body.py │ │ │ │ ├── upload_all_media_response.py │ │ │ │ ├── upload_all_media_response_body.py │ │ │ │ ├── upload_finish_file_request.py │ │ │ │ ├── upload_finish_file_request_body.py │ │ │ │ ├── upload_finish_file_response.py │ │ │ │ ├── upload_finish_file_response_body.py │ │ │ │ ├── upload_finish_media_request.py │ │ │ │ ├── upload_finish_media_request_body.py │ │ │ │ ├── upload_finish_media_response.py │ │ │ │ ├── upload_finish_media_response_body.py │ │ │ │ ├── upload_info.py │ │ │ │ ├── upload_part_file_request.py │ │ │ │ ├── upload_part_file_request_body.py │ │ │ │ ├── upload_part_file_response.py │ │ │ │ ├── upload_part_file_response_body.py │ │ │ │ ├── upload_part_media_request.py │ │ │ │ ├── upload_part_media_request_body.py │ │ │ │ ├── upload_part_media_response.py │ │ │ │ ├── upload_part_media_response_body.py │ │ │ │ ├── upload_prepare_file_request.py │ │ │ │ ├── upload_prepare_file_response.py │ │ │ │ ├── upload_prepare_file_response_body.py │ │ │ │ ├── upload_prepare_media_request.py │ │ │ │ ├── upload_prepare_media_response.py │ │ │ │ ├── upload_prepare_media_response_body.py │ │ │ │ ├── user_id.py │ │ │ │ └── version.py │ │ │ ├── processor.py │ │ │ ├── resource │ │ │ │ ├── __init__.py │ │ │ │ ├── export_task.py │ │ │ │ ├── file.py │ │ │ │ ├── file_comment.py │ │ │ │ ├── file_comment_reply.py │ │ │ │ ├── file_statistics.py │ │ │ │ ├── file_subscription.py │ │ │ │ ├── file_version.py │ │ │ │ ├── file_view_record.py │ │ │ │ ├── import_task.py │ │ │ │ ├── media.py │ │ │ │ ├── meta.py │ │ │ │ ├── permission_member.py │ │ │ │ ├── permission_public.py │ │ │ │ └── permission_public_password.py │ │ │ └── version.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── biz_info.py │ │ │ ├── condition.py │ │ │ ├── department_id.py │ │ │ ├── department_info.py │ │ │ ├── export_job.py │ │ │ ├── file_like.py │ │ │ ├── get_permission_public_request.py │ │ │ ├── get_permission_public_request_body.py │ │ │ ├── get_permission_public_response.py │ │ │ ├── get_permission_public_response_body.py │ │ │ ├── import_job.py │ │ │ ├── import_job_mount_point.py │ │ │ ├── list_file_like_request.py │ │ │ ├── list_file_like_request_body.py │ │ │ ├── list_file_like_response.py │ │ │ ├── list_file_like_response_body.py │ │ │ ├── my_like.py │ │ │ ├── patch_permission_public_request.py │ │ │ ├── patch_permission_public_response.py │ │ │ ├── patch_permission_public_response_body.py │ │ │ ├── permission_public.py │ │ │ ├── quota_detail.py │ │ │ ├── secure_label.py │ │ │ ├── storage_task.py │ │ │ ├── task_config.py │ │ │ └── user_info.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ ├── file_like.py │ │ │ └── permission_public.py │ │ │ └── version.py │ ├── ehr │ │ ├── __init__.py │ │ ├── service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── attachment.py │ │ │ ├── contract_company.py │ │ │ ├── custom_fields.py │ │ │ ├── department_id.py │ │ │ ├── education.py │ │ │ ├── emergency_contact.py │ │ │ ├── employee.py │ │ │ ├── get_attachment_request.py │ │ │ ├── get_attachment_request_body.py │ │ │ ├── get_attachment_response.py │ │ │ ├── get_attachment_response_body.py │ │ │ ├── job.py │ │ │ ├── job_level.py │ │ │ ├── list_employee_request.py │ │ │ ├── list_employee_request_body.py │ │ │ ├── list_employee_response.py │ │ │ ├── list_employee_response_body.py │ │ │ ├── manager.py │ │ │ ├── native_region.py │ │ │ ├── system_fields.py │ │ │ ├── work_experience.py │ │ │ └── work_location.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ ├── attachment.py │ │ │ └── employee.py │ │ │ └── version.py │ ├── event │ │ ├── __init__.py │ │ ├── service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── department_id.py │ │ │ ├── list_outbound_ip_request.py │ │ │ ├── list_outbound_ip_request_body.py │ │ │ ├── list_outbound_ip_response.py │ │ │ └── list_outbound_ip_response_body.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ └── outbound_ip.py │ │ │ └── version.py │ ├── gray_test_open_sg │ │ ├── __init__.py │ │ ├── service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── create_moto_request.py │ │ │ ├── create_moto_response.py │ │ │ ├── create_moto_response_body.py │ │ │ ├── department_id.py │ │ │ ├── get_moto_request.py │ │ │ ├── get_moto_request_body.py │ │ │ ├── get_moto_response.py │ │ │ ├── get_moto_response_body.py │ │ │ ├── level.py │ │ │ ├── list_moto_request.py │ │ │ ├── list_moto_request_body.py │ │ │ ├── list_moto_response.py │ │ │ ├── list_moto_response_body.py │ │ │ └── moto.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ └── moto.py │ │ │ └── version.py │ ├── helpdesk │ │ ├── __init__.py │ │ ├── service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── agent.py │ │ │ ├── agent_email_agent_request.py │ │ │ ├── agent_email_agent_request_body.py │ │ │ ├── agent_email_agent_response.py │ │ │ ├── agent_email_agent_response_body.py │ │ │ ├── agent_schedule.py │ │ │ ├── agent_schedule_update_info.py │ │ │ ├── agent_schedules.py │ │ │ ├── agent_skill.py │ │ │ ├── agent_skill_less_info.py │ │ │ ├── agent_skill_rule.py │ │ │ ├── agent_user.py │ │ │ ├── answer_user_query_ticket_request.py │ │ │ ├── answer_user_query_ticket_request_body.py │ │ │ ├── answer_user_query_ticket_response.py │ │ │ ├── answer_user_query_ticket_response_body.py │ │ │ ├── bot_message.py │ │ │ ├── cancel_approve_notification_request.py │ │ │ ├── cancel_approve_notification_request_body.py │ │ │ ├── cancel_approve_notification_response.py │ │ │ ├── cancel_approve_notification_response_body.py │ │ │ ├── cancel_send_notification_request.py │ │ │ ├── cancel_send_notification_request_body.py │ │ │ ├── cancel_send_notification_response.py │ │ │ ├── cancel_send_notification_response_body.py │ │ │ ├── category.py │ │ │ ├── comments.py │ │ │ ├── create_agent_schedule_request.py │ │ │ ├── create_agent_schedule_request_body.py │ │ │ ├── create_agent_schedule_response.py │ │ │ ├── create_agent_schedule_response_body.py │ │ │ ├── create_agent_skill_request.py │ │ │ ├── create_agent_skill_request_body.py │ │ │ ├── create_agent_skill_response.py │ │ │ ├── create_agent_skill_response_body.py │ │ │ ├── create_bot_message_request.py │ │ │ ├── create_bot_message_response.py │ │ │ ├── create_bot_message_response_body.py │ │ │ ├── create_category_request.py │ │ │ ├── create_category_response.py │ │ │ ├── create_category_response_body.py │ │ │ ├── create_faq_request.py │ │ │ ├── create_faq_request_body.py │ │ │ ├── create_faq_response.py │ │ │ ├── create_faq_response_body.py │ │ │ ├── create_notification_request.py │ │ │ ├── create_notification_response.py │ │ │ ├── create_notification_response_body.py │ │ │ ├── create_ticket_customized_field_request.py │ │ │ ├── create_ticket_customized_field_response.py │ │ │ ├── create_ticket_customized_field_response_body.py │ │ │ ├── create_ticket_message_request.py │ │ │ ├── create_ticket_message_request_body.py │ │ │ ├── create_ticket_message_response.py │ │ │ ├── create_ticket_message_response_body.py │ │ │ ├── customized_field_display_item.py │ │ │ ├── customized_fields_ticket_request.py │ │ │ ├── customized_fields_ticket_request_body.py │ │ │ ├── customized_fields_ticket_response.py │ │ │ ├── customized_fields_ticket_response_body.py │ │ │ ├── delete_agent_schedules_request.py │ │ │ ├── delete_agent_schedules_request_body.py │ │ │ ├── delete_agent_schedules_response.py │ │ │ ├── delete_agent_schedules_response_body.py │ │ │ ├── delete_agent_skill_request.py │ │ │ ├── delete_agent_skill_request_body.py │ │ │ ├── delete_agent_skill_response.py │ │ │ ├── delete_agent_skill_response_body.py │ │ │ ├── delete_category_request.py │ │ │ ├── delete_category_request_body.py │ │ │ ├── delete_category_response.py │ │ │ ├── delete_category_response_body.py │ │ │ ├── delete_faq_request.py │ │ │ ├── delete_faq_request_body.py │ │ │ ├── delete_faq_response.py │ │ │ ├── delete_faq_response_body.py │ │ │ ├── delete_ticket_customized_field_request.py │ │ │ ├── delete_ticket_customized_field_request_body.py │ │ │ ├── delete_ticket_customized_field_response.py │ │ │ ├── delete_ticket_customized_field_response_body.py │ │ │ ├── department_id.py │ │ │ ├── event.py │ │ │ ├── execute_send_notification_request.py │ │ │ ├── execute_send_notification_request_body.py │ │ │ ├── execute_send_notification_response.py │ │ │ ├── execute_send_notification_response_body.py │ │ │ ├── export_ticket_message_content.py │ │ │ ├── faq.py │ │ │ ├── faq_create_info.py │ │ │ ├── faq_image_faq_request.py │ │ │ ├── faq_image_faq_request_body.py │ │ │ ├── faq_image_faq_response.py │ │ │ ├── faq_image_faq_response_body.py │ │ │ ├── faq_update_info.py │ │ │ ├── get_agent_schedules_request.py │ │ │ ├── get_agent_schedules_request_body.py │ │ │ ├── get_agent_schedules_response.py │ │ │ ├── get_agent_schedules_response_body.py │ │ │ ├── get_agent_skill_request.py │ │ │ ├── get_agent_skill_request_body.py │ │ │ ├── get_agent_skill_response.py │ │ │ ├── get_agent_skill_response_body.py │ │ │ ├── get_category_request.py │ │ │ ├── get_category_request_body.py │ │ │ ├── get_category_response.py │ │ │ ├── get_category_response_body.py │ │ │ ├── get_faq_request.py │ │ │ ├── get_faq_request_body.py │ │ │ ├── get_faq_response.py │ │ │ ├── get_faq_response_body.py │ │ │ ├── get_notification_request.py │ │ │ ├── get_notification_request_body.py │ │ │ ├── get_notification_response.py │ │ │ ├── get_notification_response_body.py │ │ │ ├── get_ticket_customized_field_request.py │ │ │ ├── get_ticket_customized_field_request_body.py │ │ │ ├── get_ticket_customized_field_response.py │ │ │ ├── get_ticket_customized_field_response_body.py │ │ │ ├── get_ticket_request.py │ │ │ ├── get_ticket_request_body.py │ │ │ ├── get_ticket_response.py │ │ │ ├── get_ticket_response_body.py │ │ │ ├── i18n.py │ │ │ ├── list_agent_schedule_request.py │ │ │ ├── list_agent_schedule_request_body.py │ │ │ ├── list_agent_schedule_response.py │ │ │ ├── list_agent_schedule_response_body.py │ │ │ ├── list_agent_skill_request.py │ │ │ ├── list_agent_skill_request_body.py │ │ │ ├── list_agent_skill_response.py │ │ │ ├── list_agent_skill_response_body.py │ │ │ ├── list_agent_skill_rule_request.py │ │ │ ├── list_agent_skill_rule_request_body.py │ │ │ ├── list_agent_skill_rule_response.py │ │ │ ├── list_agent_skill_rule_response_body.py │ │ │ ├── list_category_request.py │ │ │ ├── list_category_request_body.py │ │ │ ├── list_category_response.py │ │ │ ├── list_category_response_body.py │ │ │ ├── list_faq_request.py │ │ │ ├── list_faq_request_body.py │ │ │ ├── list_faq_response.py │ │ │ ├── list_faq_response_body.py │ │ │ ├── list_ticket_customized_field_request.py │ │ │ ├── list_ticket_customized_field_request_body.py │ │ │ ├── list_ticket_customized_field_response.py │ │ │ ├── list_ticket_customized_field_response_body.py │ │ │ ├── list_ticket_message_request.py │ │ │ ├── list_ticket_message_request_body.py │ │ │ ├── list_ticket_message_response.py │ │ │ ├── list_ticket_message_response_body.py │ │ │ ├── list_ticket_request.py │ │ │ ├── list_ticket_request_body.py │ │ │ ├── list_ticket_response.py │ │ │ ├── list_ticket_response_body.py │ │ │ ├── migration_ticket.py │ │ │ ├── migration_ticket_comment.py │ │ │ ├── migration_ticket_message.py │ │ │ ├── notification.py │ │ │ ├── notification_chat.py │ │ │ ├── notification_department.py │ │ │ ├── notification_user.py │ │ │ ├── p2_helpdesk_notification_approve_v1.py │ │ │ ├── p2_helpdesk_ticket_created_v1.py │ │ │ ├── p2_helpdesk_ticket_message_created_v1.py │ │ │ ├── p2_helpdesk_ticket_updated_v1.py │ │ │ ├── patch_agent_request.py │ │ │ ├── patch_agent_request_body.py │ │ │ ├── patch_agent_response.py │ │ │ ├── patch_agent_response_body.py │ │ │ ├── patch_agent_schedules_request.py │ │ │ ├── patch_agent_schedules_request_body.py │ │ │ ├── patch_agent_schedules_response.py │ │ │ ├── patch_agent_schedules_response_body.py │ │ │ ├── patch_agent_skill_request.py │ │ │ ├── patch_agent_skill_request_body.py │ │ │ ├── patch_agent_skill_response.py │ │ │ ├── patch_agent_skill_response_body.py │ │ │ ├── patch_category_request.py │ │ │ ├── patch_category_response.py │ │ │ ├── patch_category_response_body.py │ │ │ ├── patch_faq_request.py │ │ │ ├── patch_faq_request_body.py │ │ │ ├── patch_faq_response.py │ │ │ ├── patch_faq_response_body.py │ │ │ ├── patch_notification_request.py │ │ │ ├── patch_notification_response.py │ │ │ ├── patch_notification_response_body.py │ │ │ ├── patch_ticket_customized_field_request.py │ │ │ ├── patch_ticket_customized_field_response.py │ │ │ ├── patch_ticket_customized_field_response_body.py │ │ │ ├── preview_notification_request.py │ │ │ ├── preview_notification_request_body.py │ │ │ ├── preview_notification_response.py │ │ │ ├── preview_notification_response_body.py │ │ │ ├── richtext.py │ │ │ ├── search_faq_request.py │ │ │ ├── search_faq_request_body.py │ │ │ ├── search_faq_response.py │ │ │ ├── search_faq_response_body.py │ │ │ ├── start_service_ticket_request.py │ │ │ ├── start_service_ticket_request_body.py │ │ │ ├── start_service_ticket_response.py │ │ │ ├── start_service_ticket_response_body.py │ │ │ ├── submit_approve_notification_request.py │ │ │ ├── submit_approve_notification_request_body.py │ │ │ ├── submit_approve_notification_response.py │ │ │ ├── submit_approve_notification_response_body.py │ │ │ ├── subscribe_event_request.py │ │ │ ├── subscribe_event_request_body.py │ │ │ ├── subscribe_event_response.py │ │ │ ├── subscribe_event_response_body.py │ │ │ ├── ticket.py │ │ │ ├── ticket_customized_field.py │ │ │ ├── ticket_event.py │ │ │ ├── ticket_event_update_info.py │ │ │ ├── ticket_image_ticket_request.py │ │ │ ├── ticket_image_ticket_request_body.py │ │ │ ├── ticket_image_ticket_response.py │ │ │ ├── ticket_image_ticket_response_body.py │ │ │ ├── ticket_message.py │ │ │ ├── ticket_message_content.py │ │ │ ├── ticket_message_event.py │ │ │ ├── ticket_message_export_entity.py │ │ │ ├── ticket_tag.py │ │ │ ├── ticket_user.py │ │ │ ├── ticket_user_event.py │ │ │ ├── ticket_v2.py │ │ │ ├── unsubscribe_event_request.py │ │ │ ├── unsubscribe_event_request_body.py │ │ │ ├── unsubscribe_event_response.py │ │ │ ├── unsubscribe_event_response_body.py │ │ │ ├── update_ticket_request.py │ │ │ ├── update_ticket_request_body.py │ │ │ ├── update_ticket_response.py │ │ │ ├── update_ticket_response_body.py │ │ │ ├── user_customized_field.py │ │ │ ├── user_id.py │ │ │ ├── user_query_faq_info.py │ │ │ └── weekday_schedule.py │ │ │ ├── processor.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ ├── agent.py │ │ │ ├── agent_schedule.py │ │ │ ├── agent_schedules.py │ │ │ ├── agent_skill.py │ │ │ ├── agent_skill_rule.py │ │ │ ├── bot_message.py │ │ │ ├── category.py │ │ │ ├── event.py │ │ │ ├── faq.py │ │ │ ├── notification.py │ │ │ ├── ticket.py │ │ │ ├── ticket_customized_field.py │ │ │ └── ticket_message.py │ │ │ └── version.py │ ├── hire │ │ ├── __init__.py │ │ ├── service.py │ │ ├── v1 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ │ ├── __init__.py │ │ │ │ ├── ability.py │ │ │ │ ├── acceptance.py │ │ │ │ ├── account.py │ │ │ │ ├── account_referrer.py │ │ │ │ ├── add_to_folder_talent_request.py │ │ │ │ ├── add_to_folder_talent_request_body.py │ │ │ │ ├── add_to_folder_talent_response.py │ │ │ │ ├── add_to_folder_talent_response_body.py │ │ │ │ ├── agency.py │ │ │ │ ├── agency_account.py │ │ │ │ ├── agency_account_user.py │ │ │ │ ├── agency_basic_info.py │ │ │ │ ├── agency_info.py │ │ │ │ ├── agency_protection.py │ │ │ │ ├── agency_supplier.py │ │ │ │ ├── agency_supplier_admin.py │ │ │ │ ├── agency_supplier_label.py │ │ │ │ ├── agency_supplier_protect_time.py │ │ │ │ ├── agency_supplier_talent_protect_time.py │ │ │ │ ├── ambassador_account_info.py │ │ │ │ ├── appli_offer_basic_cust_obj.py │ │ │ │ ├── appli_offer_basic_cust_obj_op_v.py │ │ │ │ ├── appli_offer_basic_info_user.py │ │ │ │ ├── appli_offer_onboard_profile.py │ │ │ │ ├── appli_offer_onboard_profile_add.py │ │ │ │ ├── appli_offer_onboard_profile_city.py │ │ │ │ ├── appli_offer_salary_plan_template.py │ │ │ │ ├── appli_talent_attach_resume_info.py │ │ │ │ ├── appli_talent_certificate_info.py │ │ │ │ ├── appli_talent_competition_info.py │ │ │ │ ├── appli_talent_education_info.py │ │ │ │ ├── application.py │ │ │ │ ├── application_basic_info.py │ │ │ │ ├── application_detail_basic_info.py │ │ │ │ ├── application_detail_info.py │ │ │ │ ├── application_detail_portal_info.py │ │ │ │ ├── application_job.py │ │ │ │ ├── application_job_address.py │ │ │ │ ├── application_offer.py │ │ │ │ ├── application_offer_attachment.py │ │ │ │ ├── application_offer_basic_info.py │ │ │ │ ├── application_offer_basic_info_customized_object.py │ │ │ │ ├── application_offer_basic_info_customized_object_option_value.py │ │ │ │ ├── application_offer_basic_info_user.py │ │ │ │ ├── application_offer_custom_module.py │ │ │ │ ├── application_offer_custom_value.py │ │ │ │ ├── application_offer_onboard_profile.py │ │ │ │ ├── application_offer_onboard_profile_address.py │ │ │ │ ├── application_offer_onboard_profile_city.py │ │ │ │ ├── application_offer_salary_plan.py │ │ │ │ ├── application_offer_salary_plan_salary_template.py │ │ │ │ ├── application_prehire.py │ │ │ │ ├── application_prehire_department.py │ │ │ │ ├── application_prehire_offer.py │ │ │ │ ├── application_prehire_offer_basic.py │ │ │ │ ├── application_prehire_optional.py │ │ │ │ ├── application_referral.py │ │ │ │ ├── application_resume_source.py │ │ │ │ ├── application_stage.py │ │ │ │ ├── application_stage_info.py │ │ │ │ ├── application_stage_time.py │ │ │ │ ├── application_talent.py │ │ │ │ ├── application_talent_attachment_resume_info.py │ │ │ │ ├── application_talent_award_info.py │ │ │ │ ├── application_talent_basic_info.py │ │ │ │ ├── application_talent_career_info.py │ │ │ │ ├── application_talent_certificate_info.py │ │ │ │ ├── application_talent_competition_info.py │ │ │ │ ├── application_talent_education_info.py │ │ │ │ ├── application_talent_language_info.py │ │ │ │ ├── application_talent_project_info.py │ │ │ │ ├── application_talent_sns_info.py │ │ │ │ ├── application_talent_works_info.py │ │ │ │ ├── application_website_channel.py │ │ │ │ ├── application_website_resume_source.py │ │ │ │ ├── assess_interview_option.py │ │ │ │ ├── assessment_score_info.py │ │ │ │ ├── assets.py │ │ │ │ ├── attachment.py │ │ │ │ ├── attachment_info.py │ │ │ │ ├── attachment_v2.py │ │ │ │ ├── auth.py │ │ │ │ ├── award_info.py │ │ │ │ ├── background_check_custom_field_data_value.py │ │ │ │ ├── background_check_feedback_info.py │ │ │ │ ├── background_check_item_info.py │ │ │ │ ├── background_check_order.py │ │ │ │ ├── background_check_order_creator.py │ │ │ │ ├── background_check_order_feedback_info.py │ │ │ │ ├── background_check_order_process_info.py │ │ │ │ ├── background_check_process_info.py │ │ │ │ ├── base_address.py │ │ │ │ ├── base_address_v2.py │ │ │ │ ├── base_bilingual_with_id.py │ │ │ │ ├── base_city.py │ │ │ │ ├── base_country.py │ │ │ │ ├── base_district.py │ │ │ │ ├── base_location.py │ │ │ │ ├── base_resp.py │ │ │ │ ├── basic_department_info.py │ │ │ │ ├── basic_info.py │ │ │ │ ├── basic_user_info.py │ │ │ │ ├── batch_change_talent_pool_talent_pool_request.py │ │ │ │ ├── batch_change_talent_pool_talent_pool_request_body.py │ │ │ │ ├── batch_change_talent_pool_talent_pool_response.py │ │ │ │ ├── batch_change_talent_pool_talent_pool_response_body.py │ │ │ │ ├── batch_delete_eco_account_custom_field_request.py │ │ │ │ ├── batch_delete_eco_account_custom_field_request_body.py │ │ │ │ ├── batch_delete_eco_account_custom_field_response.py │ │ │ │ ├── batch_delete_eco_account_custom_field_response_body.py │ │ │ │ ├── batch_delete_eco_background_check_custom_field_request.py │ │ │ │ ├── batch_delete_eco_background_check_custom_field_request_body.py │ │ │ │ ├── batch_delete_eco_background_check_custom_field_response.py │ │ │ │ ├── batch_delete_eco_background_check_custom_field_response_body.py │ │ │ │ ├── batch_delete_eco_background_check_package_request.py │ │ │ │ ├── batch_delete_eco_background_check_package_request_body.py │ │ │ │ ├── batch_delete_eco_background_check_package_response.py │ │ │ │ ├── batch_delete_eco_background_check_package_response_body.py │ │ │ │ ├── batch_delete_eco_exam_paper_request.py │ │ │ │ ├── batch_delete_eco_exam_paper_request_body.py │ │ │ │ ├── batch_delete_eco_exam_paper_response.py │ │ │ │ ├── batch_delete_eco_exam_paper_response_body.py │ │ │ │ ├── batch_get_id_talent_request.py │ │ │ │ ├── batch_get_id_talent_request_body.py │ │ │ │ ├── batch_get_id_talent_response.py │ │ │ │ ├── batch_get_id_talent_response_body.py │ │ │ │ ├── batch_query_agency_request.py │ │ │ │ ├── batch_query_agency_request_body.py │ │ │ │ ├── batch_query_agency_response.py │ │ │ │ ├── batch_query_agency_response_body.py │ │ │ │ ├── batch_query_background_check_order_request.py │ │ │ │ ├── batch_query_background_check_order_request_body.py │ │ │ │ ├── batch_query_background_check_order_response.py │ │ │ │ ├── batch_query_background_check_order_response_body.py │ │ │ │ ├── batch_query_external_background_check_request.py │ │ │ │ ├── batch_query_external_background_check_request_body.py │ │ │ │ ├── batch_query_external_background_check_response.py │ │ │ │ ├── batch_query_external_background_check_response_body.py │ │ │ │ ├── batch_query_external_interview_request.py │ │ │ │ ├── batch_query_external_interview_request_body.py │ │ │ │ ├── batch_query_external_interview_response.py │ │ │ │ ├── batch_query_external_interview_response_body.py │ │ │ │ ├── batch_query_external_offer_request.py │ │ │ │ ├── batch_query_external_offer_request_body.py │ │ │ │ ├── batch_query_external_offer_response.py │ │ │ │ ├── batch_query_external_offer_response_body.py │ │ │ │ ├── batch_update_eco_account_custom_field_request.py │ │ │ │ ├── batch_update_eco_account_custom_field_response.py │ │ │ │ ├── batch_update_eco_account_custom_field_response_body.py │ │ │ │ ├── batch_update_eco_background_check_custom_field_request.py │ │ │ │ ├── batch_update_eco_background_check_custom_field_response.py │ │ │ │ ├── batch_update_eco_background_check_custom_field_response_body.py │ │ │ │ ├── batch_update_eco_background_check_package_request.py │ │ │ │ ├── batch_update_eco_background_check_package_response.py │ │ │ │ ├── batch_update_eco_background_check_package_response_body.py │ │ │ │ ├── batch_update_eco_exam_paper_request.py │ │ │ │ ├── batch_update_eco_exam_paper_response.py │ │ │ │ ├── batch_update_eco_exam_paper_response_body.py │ │ │ │ ├── batch_update_job_manager_request.py │ │ │ │ ├── batch_update_job_manager_request_body.py │ │ │ │ ├── batch_update_job_manager_response.py │ │ │ │ ├── batch_update_job_manager_response_body.py │ │ │ │ ├── bonus_amount.py │ │ │ │ ├── business_management_scope.py │ │ │ │ ├── campus_volumnteer_info.py │ │ │ │ ├── cancel_eco_background_check_request.py │ │ │ │ ├── cancel_eco_background_check_request_body.py │ │ │ │ ├── cancel_eco_background_check_response.py │ │ │ │ ├── cancel_eco_background_check_response_body.py │ │ │ │ ├── cancel_onboard_application_request.py │ │ │ │ ├── cancel_onboard_application_request_body.py │ │ │ │ ├── cancel_onboard_application_response.py │ │ │ │ ├── cancel_onboard_application_response_body.py │ │ │ │ ├── candidate_tag_filter.py │ │ │ │ ├── career_info.py │ │ │ │ ├── cash.py │ │ │ │ ├── certificate_info.py │ │ │ │ ├── change_employee_stage.py │ │ │ │ ├── change_talent_block_talent_blocklist_request.py │ │ │ │ ├── change_talent_block_talent_blocklist_request_body.py │ │ │ │ ├── change_talent_block_talent_blocklist_response.py │ │ │ │ ├── change_talent_block_talent_blocklist_response_body.py │ │ │ │ ├── check_failed_account_info.py │ │ │ │ ├── city.py │ │ │ │ ├── close_job_request.py │ │ │ │ ├── close_job_request_body.py │ │ │ │ ├── close_job_response.py │ │ │ │ ├── close_job_response_body.py │ │ │ │ ├── code_name_object.py │ │ │ │ ├── combined_create_job_request.py │ │ │ │ ├── combined_create_job_response.py │ │ │ │ ├── combined_create_job_response_body.py │ │ │ │ ├── combined_create_talent_request.py │ │ │ │ ├── combined_create_talent_request_body.py │ │ │ │ ├── combined_create_talent_response.py │ │ │ │ ├── combined_create_talent_response_body.py │ │ │ │ ├── combined_job.py │ │ │ │ ├── combined_job_object_value_map.py │ │ │ │ ├── combined_job_result.py │ │ │ │ ├── combined_job_result_default_job_post.py │ │ │ │ ├── combined_update_job_request.py │ │ │ │ ├── combined_update_job_response.py │ │ │ │ ├── combined_update_job_response_body.py │ │ │ │ ├── combined_update_talent_request.py │ │ │ │ ├── combined_update_talent_request_body.py │ │ │ │ ├── combined_update_talent_response.py │ │ │ │ ├── combined_update_talent_response_body.py │ │ │ │ ├── common_address.py │ │ │ │ ├── common_city_info.py │ │ │ │ ├── common_filter.py │ │ │ │ ├── common_schema.py │ │ │ │ ├── common_schema_child.py │ │ │ │ ├── common_schema_config.py │ │ │ │ ├── common_schema_option.py │ │ │ │ ├── common_schema_setting.py │ │ │ │ ├── competition_info.py │ │ │ │ ├── config_job_request.py │ │ │ │ ├── config_job_request_body.py │ │ │ │ ├── config_job_response.py │ │ │ │ ├── config_job_response_body.py │ │ │ │ ├── contract_period.py │ │ │ │ ├── contract_period_info.py │ │ │ │ ├── country.py │ │ │ │ ├── create_application_request.py │ │ │ │ ├── create_application_request_body.py │ │ │ │ ├── create_application_response.py │ │ │ │ ├── create_application_response_body.py │ │ │ │ ├── create_attachment_request.py │ │ │ │ ├── create_attachment_request_body.py │ │ │ │ ├── create_attachment_response.py │ │ │ │ ├── create_attachment_response_body.py │ │ │ │ ├── create_by_attachment_website_delivery_request.py │ │ │ │ ├── create_by_attachment_website_delivery_response.py │ │ │ │ ├── create_by_attachment_website_delivery_response_body.py │ │ │ │ ├── create_by_resume_website_delivery_request.py │ │ │ │ ├── create_by_resume_website_delivery_response.py │ │ │ │ ├── create_by_resume_website_delivery_response_body.py │ │ │ │ ├── create_eco_account_custom_field_request.py │ │ │ │ ├── create_eco_account_custom_field_response.py │ │ │ │ ├── create_eco_account_custom_field_response_body.py │ │ │ │ ├── create_eco_background_check_custom_field_request.py │ │ │ │ ├── create_eco_background_check_custom_field_response.py │ │ │ │ ├── create_eco_background_check_custom_field_response_body.py │ │ │ │ ├── create_eco_background_check_package_request.py │ │ │ │ ├── create_eco_background_check_package_response.py │ │ │ │ ├── create_eco_background_check_package_response_body.py │ │ │ │ ├── create_eco_exam_paper_request.py │ │ │ │ ├── create_eco_exam_paper_response.py │ │ │ │ ├── create_eco_exam_paper_response_body.py │ │ │ │ ├── create_exam_request.py │ │ │ │ ├── create_exam_request_body.py │ │ │ │ ├── create_exam_response.py │ │ │ │ ├── create_exam_response_body.py │ │ │ │ ├── create_external_application_request.py │ │ │ │ ├── create_external_application_response.py │ │ │ │ ├── create_external_application_response_body.py │ │ │ │ ├── create_external_background_check_request.py │ │ │ │ ├── create_external_background_check_response.py │ │ │ │ ├── create_external_background_check_response_body.py │ │ │ │ ├── create_external_interview_assessment_request.py │ │ │ │ ├── create_external_interview_assessment_response.py │ │ │ │ ├── create_external_interview_assessment_response_body.py │ │ │ │ ├── create_external_interview_request.py │ │ │ │ ├── create_external_interview_response.py │ │ │ │ ├── create_external_interview_response_body.py │ │ │ │ ├── create_external_offer_request.py │ │ │ │ ├── create_external_offer_response.py │ │ │ │ ├── create_external_offer_response_body.py │ │ │ │ ├── create_external_referral_reward_request.py │ │ │ │ ├── create_external_referral_reward_response.py │ │ │ │ ├── create_external_referral_reward_response_body.py │ │ │ │ ├── create_job_requirement_request.py │ │ │ │ ├── create_job_requirement_response.py │ │ │ │ ├── create_job_requirement_response_body.py │ │ │ │ ├── create_note_request.py │ │ │ │ ├── create_note_response.py │ │ │ │ ├── create_note_response_body.py │ │ │ │ ├── create_offer_request.py │ │ │ │ ├── create_offer_response.py │ │ │ │ ├── create_offer_response_body.py │ │ │ │ ├── create_referral_account_request.py │ │ │ │ ├── create_referral_account_request_body.py │ │ │ │ ├── create_referral_account_response.py │ │ │ │ ├── create_referral_account_response_body.py │ │ │ │ ├── create_talent_external_info_request.py │ │ │ │ ├── create_talent_external_info_request_body.py │ │ │ │ ├── create_talent_external_info_response.py │ │ │ │ ├── create_talent_external_info_response_body.py │ │ │ │ ├── create_tripartite_agreement_request.py │ │ │ │ ├── create_tripartite_agreement_response.py │ │ │ │ ├── create_tripartite_agreement_response_body.py │ │ │ │ ├── create_website_channel_request.py │ │ │ │ ├── create_website_channel_request_body.py │ │ │ │ ├── create_website_channel_response.py │ │ │ │ ├── create_website_channel_response_body.py │ │ │ │ ├── create_website_site_user_request.py │ │ │ │ ├── create_website_site_user_response.py │ │ │ │ ├── create_website_site_user_response_body.py │ │ │ │ ├── data_permission.py │ │ │ │ ├── deactivate_referral_account_request.py │ │ │ │ ├── deactivate_referral_account_request_body.py │ │ │ │ ├── deactivate_referral_account_response.py │ │ │ │ ├── deactivate_referral_account_response_body.py │ │ │ │ ├── degree_filter.py │ │ │ │ ├── delete_external_application_request.py │ │ │ │ ├── delete_external_application_request_body.py │ │ │ │ ├── delete_external_application_response.py │ │ │ │ ├── delete_external_application_response_body.py │ │ │ │ ├── delete_external_background_check_request.py │ │ │ │ ├── delete_external_background_check_request_body.py │ │ │ │ ├── delete_external_background_check_response.py │ │ │ │ ├── delete_external_background_check_response_body.py │ │ │ │ ├── delete_external_interview_request.py │ │ │ │ ├── delete_external_interview_request_body.py │ │ │ │ ├── delete_external_interview_response.py │ │ │ │ ├── delete_external_interview_response_body.py │ │ │ │ ├── delete_external_offer_request.py │ │ │ │ ├── delete_external_offer_request_body.py │ │ │ │ ├── delete_external_offer_response.py │ │ │ │ ├── delete_external_offer_response_body.py │ │ │ │ ├── delete_external_referral_reward_request.py │ │ │ │ ├── delete_external_referral_reward_request_body.py │ │ │ │ ├── delete_external_referral_reward_response.py │ │ │ │ ├── delete_external_referral_reward_response_body.py │ │ │ │ ├── delete_job_requirement_request.py │ │ │ │ ├── delete_job_requirement_request_body.py │ │ │ │ ├── delete_job_requirement_response.py │ │ │ │ ├── delete_job_requirement_response_body.py │ │ │ │ ├── delete_note_request.py │ │ │ │ ├── delete_note_request_body.py │ │ │ │ ├── delete_note_response.py │ │ │ │ ├── delete_note_response_body.py │ │ │ │ ├── delete_tripartite_agreement_request.py │ │ │ │ ├── delete_tripartite_agreement_request_body.py │ │ │ │ ├── delete_tripartite_agreement_response.py │ │ │ │ ├── delete_tripartite_agreement_response_body.py │ │ │ │ ├── delete_website_channel_request.py │ │ │ │ ├── delete_website_channel_request_body.py │ │ │ │ ├── delete_website_channel_response.py │ │ │ │ ├── delete_website_channel_response_body.py │ │ │ │ ├── department.py │ │ │ │ ├── department_id.py │ │ │ │ ├── di_data.py │ │ │ │ ├── di_info.py │ │ │ │ ├── dimension_ability.py │ │ │ │ ├── dimension_assessment.py │ │ │ │ ├── dimension_assessment_request.py │ │ │ │ ├── dimension_option.py │ │ │ │ ├── dummy.py │ │ │ │ ├── eco_account_custom_field.py │ │ │ │ ├── eco_account_custom_field_data.py │ │ │ │ ├── eco_account_custom_field_event_data.py │ │ │ │ ├── eco_background_check_create_event_candidate_info.py │ │ │ │ ├── eco_background_check_create_event_contact_info.py │ │ │ │ ├── eco_background_check_create_event_custom_kv.py │ │ │ │ ├── eco_background_check_create_event_mobile.py │ │ │ │ ├── eco_background_check_custom_field.py │ │ │ │ ├── eco_background_check_custom_field_data.py │ │ │ │ ├── eco_background_check_custom_field_data_option.py │ │ │ │ ├── eco_background_check_package.py │ │ │ │ ├── eco_background_check_package_additional_item.py │ │ │ │ ├── eco_background_check_package_data.py │ │ │ │ ├── eco_background_check_report_file.py │ │ │ │ ├── eco_exam_create_event_candidate_info.py │ │ │ │ ├── eco_exam_create_event_mobile.py │ │ │ │ ├── eco_exam_login_info.py │ │ │ │ ├── eco_exam_paper.py │ │ │ │ ├── eco_exam_paper_data.py │ │ │ │ ├── eco_exam_result.py │ │ │ │ ├── eco_exam_result_detail.py │ │ │ │ ├── eco_exam_result_report.py │ │ │ │ ├── education_info.py │ │ │ │ ├── ehr_import_task.py │ │ │ │ ├── employee.py │ │ │ │ ├── employee_conversion_info.py │ │ │ │ ├── employee_overboard_info.py │ │ │ │ ├── employee_v2.py │ │ │ │ ├── enable_referral_account_request.py │ │ │ │ ├── enable_referral_account_request_body.py │ │ │ │ ├── enable_referral_account_response.py │ │ │ │ ├── enable_referral_account_response_body.py │ │ │ │ ├── entity_info.py │ │ │ │ ├── evaluation.py │ │ │ │ ├── evaluation_task.py │ │ │ │ ├── exam_marking_task.py │ │ │ │ ├── external_application.py │ │ │ │ ├── external_background_check.py │ │ │ │ ├── external_background_check_attachment.py │ │ │ │ ├── external_common_attachment.py │ │ │ │ ├── external_grant_role_info.py │ │ │ │ ├── external_interview.py │ │ │ │ ├── external_interview_assessment.py │ │ │ │ ├── external_interview_assessment_dimension.py │ │ │ │ ├── external_offer.py │ │ │ │ ├── external_reward.py │ │ │ │ ├── filter.py │ │ │ │ ├── five_start_scoring_result.py │ │ │ │ ├── get_account_assets_referral_account_request.py │ │ │ │ ├── get_account_assets_referral_account_request_body.py │ │ │ │ ├── get_account_assets_referral_account_response.py │ │ │ │ ├── get_account_assets_referral_account_response_body.py │ │ │ │ ├── get_agency_account_agency_request.py │ │ │ │ ├── get_agency_account_agency_request_body.py │ │ │ │ ├── get_agency_account_agency_response.py │ │ │ │ ├── get_agency_account_agency_response_body.py │ │ │ │ ├── get_agency_request.py │ │ │ │ ├── get_agency_request_body.py │ │ │ │ ├── get_agency_response.py │ │ │ │ ├── get_agency_response_body.py │ │ │ │ ├── get_application_request.py │ │ │ │ ├── get_application_request_body.py │ │ │ │ ├── get_application_response.py │ │ │ │ ├── get_application_response_body.py │ │ │ │ ├── get_attachment_request.py │ │ │ │ ├── get_attachment_request_body.py │ │ │ │ ├── get_attachment_response.py │ │ │ │ ├── get_attachment_response_body.py │ │ │ │ ├── get_by_application_employee_request.py │ │ │ │ ├── get_by_application_employee_request_body.py │ │ │ │ ├── get_by_application_employee_response.py │ │ │ │ ├── get_by_application_employee_response_body.py │ │ │ │ ├── get_by_application_referral_request.py │ │ │ │ ├── get_by_application_referral_request_body.py │ │ │ │ ├── get_by_application_referral_response.py │ │ │ │ ├── get_by_application_referral_response_body.py │ │ │ │ ├── get_by_talent_interview_request.py │ │ │ │ ├── get_by_talent_interview_request_body.py │ │ │ │ ├── get_by_talent_interview_response.py │ │ │ │ ├── get_by_talent_interview_response_body.py │ │ │ │ ├── get_detail_application_request.py │ │ │ │ ├── get_detail_application_request_body.py │ │ │ │ ├── get_detail_application_response.py │ │ │ │ ├── get_detail_application_response_body.py │ │ │ │ ├── get_detail_job_request.py │ │ │ │ ├── get_detail_job_request_body.py │ │ │ │ ├── get_detail_job_response.py │ │ │ │ ├── get_detail_job_response_body.py │ │ │ │ ├── get_employee_request.py │ │ │ │ ├── get_employee_request_body.py │ │ │ │ ├── get_employee_response.py │ │ │ │ ├── get_employee_response_body.py │ │ │ │ ├── get_interview_record_attachment_request.py │ │ │ │ ├── get_interview_record_attachment_request_body.py │ │ │ │ ├── get_interview_record_attachment_response.py │ │ │ │ ├── get_interview_record_attachment_response_body.py │ │ │ │ ├── get_interview_record_request.py │ │ │ │ ├── get_interview_record_request_body.py │ │ │ │ ├── get_interview_record_response.py │ │ │ │ ├── get_interview_record_response_body.py │ │ │ │ ├── get_job_manager_request.py │ │ │ │ ├── get_job_manager_request_body.py │ │ │ │ ├── get_job_manager_response.py │ │ │ │ ├── get_job_manager_response_body.py │ │ │ │ ├── get_job_request.py │ │ │ │ ├── get_job_request_body.py │ │ │ │ ├── get_job_response.py │ │ │ │ ├── get_job_response_body.py │ │ │ │ ├── get_minutes_request.py │ │ │ │ ├── get_minutes_request_body.py │ │ │ │ ├── get_minutes_response.py │ │ │ │ ├── get_minutes_response_body.py │ │ │ │ ├── get_note_request.py │ │ │ │ ├── get_note_request_body.py │ │ │ │ ├── get_note_response.py │ │ │ │ ├── get_note_response_body.py │ │ │ │ ├── get_offer_application_form_request.py │ │ │ │ ├── get_offer_application_form_request_body.py │ │ │ │ ├── get_offer_application_form_response.py │ │ │ │ ├── get_offer_application_form_response_body.py │ │ │ │ ├── get_offer_request.py │ │ │ │ ├── get_offer_request_body.py │ │ │ │ ├── get_offer_response.py │ │ │ │ ├── get_offer_response_body.py │ │ │ │ ├── get_offer_schema_request.py │ │ │ │ ├── get_offer_schema_request_body.py │ │ │ │ ├── get_offer_schema_response.py │ │ │ │ ├── get_offer_schema_response_body.py │ │ │ │ ├── get_referral_website_job_post_request.py │ │ │ │ ├── get_referral_website_job_post_request_body.py │ │ │ │ ├── get_referral_website_job_post_response.py │ │ │ │ ├── get_referral_website_job_post_response_body.py │ │ │ │ ├── get_role_request.py │ │ │ │ ├── get_role_request_body.py │ │ │ │ ├── get_role_response.py │ │ │ │ ├── get_role_response_body.py │ │ │ │ ├── get_talent_request.py │ │ │ │ ├── get_talent_request_body.py │ │ │ │ ├── get_talent_response.py │ │ │ │ ├── get_talent_response_body.py │ │ │ │ ├── get_website_delivery_task_request.py │ │ │ │ ├── get_website_delivery_task_request_body.py │ │ │ │ ├── get_website_delivery_task_response.py │ │ │ │ ├── get_website_delivery_task_response_body.py │ │ │ │ ├── get_website_job_post_request.py │ │ │ │ ├── get_website_job_post_request_body.py │ │ │ │ ├── get_website_job_post_response.py │ │ │ │ ├── get_website_job_post_response_body.py │ │ │ │ ├── i18n.py │ │ │ │ ├── id_name_object.py │ │ │ │ ├── identification.py │ │ │ │ ├── intern_offer_offboarding_info.py │ │ │ │ ├── intern_offer_onboarding_info.py │ │ │ │ ├── intern_offer_status.py │ │ │ │ ├── intern_offer_status_offer_request.py │ │ │ │ ├── intern_offer_status_offer_response.py │ │ │ │ ├── intern_offer_status_offer_response_body.py │ │ │ │ ├── internship_info.py │ │ │ │ ├── interview.py │ │ │ │ ├── interview_address.py │ │ │ │ ├── interview_aggregation.py │ │ │ │ ├── interview_appointment_config.py │ │ │ │ ├── interview_appointment_config_content.py │ │ │ │ ├── interview_assessment_dimension.py │ │ │ │ ├── interview_assessment_dimension_args.py │ │ │ │ ├── interview_assessment_dimension_args_score.py │ │ │ │ ├── interview_assessment_template.py │ │ │ │ ├── interview_assessment_template_args.py │ │ │ │ ├── interview_attachment.py │ │ │ │ ├── interview_dimension_assessment.py │ │ │ │ ├── interview_dimension_option.py │ │ │ │ ├── interview_dimension_score.py │ │ │ │ ├── interview_extend.py │ │ │ │ ├── interview_extend_v2.py │ │ │ │ ├── interview_feedback_form.py │ │ │ │ ├── interview_feedback_form_dimension.py │ │ │ │ ├── interview_feedback_form_module.py │ │ │ │ ├── interview_meeting_room.py │ │ │ │ ├── interview_question.py │ │ │ │ ├── interview_record.py │ │ │ │ ├── interview_record_template.py │ │ │ │ ├── interview_record_v2.py │ │ │ │ ├── interview_registration_schema.py │ │ │ │ ├── interview_round_type.py │ │ │ │ ├── interview_round_type_assessment_template.py │ │ │ │ ├── interview_score.py │ │ │ │ ├── interview_task.py │ │ │ │ ├── interviewer.py │ │ │ │ ├── interviewer_tag.py │ │ │ │ ├── job.py │ │ │ │ ├── job_basic_info.py │ │ │ │ ├── job_category.py │ │ │ │ ├── job_city.py │ │ │ │ ├── job_config.py │ │ │ │ ├── job_config_detail.py │ │ │ │ ├── job_config_interview_round.py │ │ │ │ ├── job_config_interview_round_conf.py │ │ │ │ ├── job_config_result.py │ │ │ │ ├── job_config_round_type.py │ │ │ │ ├── job_config_round_type_result.py │ │ │ │ ├── job_customized_data.py │ │ │ │ ├── job_customized_option.py │ │ │ │ ├── job_customized_time_range.py │ │ │ │ ├── job_customized_value.py │ │ │ │ ├── job_department.py │ │ │ │ ├── job_department_simple.py │ │ │ │ ├── job_detail.py │ │ │ │ ├── job_detail_basic_info.py │ │ │ │ ├── job_detail_category.py │ │ │ │ ├── job_detail_department.py │ │ │ │ ├── job_detail_highlight.py │ │ │ │ ├── job_detail_level.py │ │ │ │ ├── job_detail_recruitment_type.py │ │ │ │ ├── job_detail_tag.py │ │ │ │ ├── job_detail_target_major_info.py │ │ │ │ ├── job_detail_type.py │ │ │ │ ├── job_function.py │ │ │ │ ├── job_highlight.py │ │ │ │ ├── job_level.py │ │ │ │ ├── job_manager.py │ │ │ │ ├── job_process.py │ │ │ │ ├── job_processes.py │ │ │ │ ├── job_processes_stage.py │ │ │ │ ├── job_recruiter.py │ │ │ │ ├── job_recruiter2.py │ │ │ │ ├── job_recruitment_type.py │ │ │ │ ├── job_requirement.py │ │ │ │ ├── job_requirement_customized_data.py │ │ │ │ ├── job_requirement_customized_data_dto.py │ │ │ │ ├── job_requirement_customized_option.py │ │ │ │ ├── job_requirement_customized_time_range.py │ │ │ │ ├── job_requirement_customized_value.py │ │ │ │ ├── job_requirement_dto.py │ │ │ │ ├── job_requirement_schema.py │ │ │ │ ├── job_requirement_simple.py │ │ │ │ ├── job_requirement_update_option.py │ │ │ │ ├── job_schema.py │ │ │ │ ├── job_storefront.py │ │ │ │ ├── job_type.py │ │ │ │ ├── job_type_info.py │ │ │ │ ├── job_user_info.py │ │ │ │ ├── jr_count_data_info.py │ │ │ │ ├── language_info.py │ │ │ │ ├── level.py │ │ │ │ ├── list_application_interview_request.py │ │ │ │ ├── list_application_interview_request_body.py │ │ │ │ ├── list_application_interview_response.py │ │ │ │ ├── list_application_interview_response_body.py │ │ │ │ ├── list_application_request.py │ │ │ │ ├── list_application_request_body.py │ │ │ │ ├── list_application_response.py │ │ │ │ ├── list_application_response_body.py │ │ │ │ ├── list_background_check_order_request.py │ │ │ │ ├── list_background_check_order_request_body.py │ │ │ │ ├── list_background_check_order_response.py │ │ │ │ ├── list_background_check_order_response_body.py │ │ │ │ ├── list_by_id_job_requirement_request.py │ │ │ │ ├── list_by_id_job_requirement_request_body.py │ │ │ │ ├── list_by_id_job_requirement_response.py │ │ │ │ ├── list_by_id_job_requirement_response_body.py │ │ │ │ ├── list_evaluation_request.py │ │ │ │ ├── list_evaluation_request_body.py │ │ │ │ ├── list_evaluation_response.py │ │ │ │ ├── list_evaluation_response_body.py │ │ │ │ ├── list_evaluation_task_request.py │ │ │ │ ├── list_evaluation_task_request_body.py │ │ │ │ ├── list_evaluation_task_response.py │ │ │ │ ├── list_evaluation_task_response_body.py │ │ │ │ ├── list_exam_marking_task_request.py │ │ │ │ ├── list_exam_marking_task_request_body.py │ │ │ │ ├── list_exam_marking_task_response.py │ │ │ │ ├── list_exam_marking_task_response_body.py │ │ │ │ ├── list_external_application_request.py │ │ │ │ ├── list_external_application_request_body.py │ │ │ │ ├── list_external_application_response.py │ │ │ │ ├── list_external_application_response_body.py │ │ │ │ ├── list_interview_feedback_form_request.py │ │ │ │ ├── list_interview_feedback_form_request_body.py │ │ │ │ ├── list_interview_feedback_form_response.py │ │ │ │ ├── list_interview_feedback_form_response_body.py │ │ │ │ ├── list_interview_record_request.py │ │ │ │ ├── list_interview_record_request_body.py │ │ │ │ ├── list_interview_record_response.py │ │ │ │ ├── list_interview_record_response_body.py │ │ │ │ ├── list_interview_registration_schema_request.py │ │ │ │ ├── list_interview_registration_schema_request_body.py │ │ │ │ ├── list_interview_registration_schema_response.py │ │ │ │ ├── list_interview_registration_schema_response_body.py │ │ │ │ ├── list_interview_request.py │ │ │ │ ├── list_interview_request_body.py │ │ │ │ ├── list_interview_response.py │ │ │ │ ├── list_interview_response_body.py │ │ │ │ ├── list_interview_round_type_request.py │ │ │ │ ├── list_interview_round_type_request_body.py │ │ │ │ ├── list_interview_round_type_response.py │ │ │ │ ├── list_interview_round_type_response_body.py │ │ │ │ ├── list_interview_task_request.py │ │ │ │ ├── list_interview_task_request_body.py │ │ │ │ ├── list_interview_task_response.py │ │ │ │ ├── list_interview_task_response_body.py │ │ │ │ ├── list_interviewer_request.py │ │ │ │ ├── list_interviewer_request_body.py │ │ │ │ ├── list_interviewer_response.py │ │ │ │ ├── list_interviewer_response_body.py │ │ │ │ ├── list_job_function_request.py │ │ │ │ ├── list_job_function_request_body.py │ │ │ │ ├── list_job_function_response.py │ │ │ │ ├── list_job_function_response_body.py │ │ │ │ ├── list_job_process_request.py │ │ │ │ ├── list_job_process_request_body.py │ │ │ │ ├── list_job_process_response.py │ │ │ │ ├── list_job_process_response_body.py │ │ │ │ ├── list_job_request.py │ │ │ │ ├── list_job_request_body.py │ │ │ │ ├── list_job_requirement_request.py │ │ │ │ ├── list_job_requirement_request_body.py │ │ │ │ ├── list_job_requirement_response.py │ │ │ │ ├── list_job_requirement_response_body.py │ │ │ │ ├── list_job_requirement_schema_request.py │ │ │ │ ├── list_job_requirement_schema_request_body.py │ │ │ │ ├── list_job_requirement_schema_response.py │ │ │ │ ├── list_job_requirement_schema_response_body.py │ │ │ │ ├── list_job_response.py │ │ │ │ ├── list_job_response_body.py │ │ │ │ ├── list_job_schema_request.py │ │ │ │ ├── list_job_schema_request_body.py │ │ │ │ ├── list_job_schema_response.py │ │ │ │ ├── list_job_schema_response_body.py │ │ │ │ ├── list_job_type_request.py │ │ │ │ ├── list_job_type_request_body.py │ │ │ │ ├── list_job_type_response.py │ │ │ │ ├── list_job_type_response_body.py │ │ │ │ ├── list_location_request.py │ │ │ │ ├── list_location_request_body.py │ │ │ │ ├── list_location_response.py │ │ │ │ ├── list_location_response_body.py │ │ │ │ ├── list_note_request.py │ │ │ │ ├── list_note_request_body.py │ │ │ │ ├── list_note_response.py │ │ │ │ ├── list_note_response_body.py │ │ │ │ ├── list_offer_application_form_request.py │ │ │ │ ├── list_offer_application_form_request_body.py │ │ │ │ ├── list_offer_application_form_response.py │ │ │ │ ├── list_offer_application_form_response_body.py │ │ │ │ ├── list_offer_approval_template_request.py │ │ │ │ ├── list_offer_approval_template_response.py │ │ │ │ ├── list_offer_approval_template_response_body.py │ │ │ │ ├── list_offer_request.py │ │ │ │ ├── list_offer_request_body.py │ │ │ │ ├── list_offer_response.py │ │ │ │ ├── list_offer_response_body.py │ │ │ │ ├── list_portal_apply_schema_request.py │ │ │ │ ├── list_portal_apply_schema_response.py │ │ │ │ ├── list_portal_apply_schema_response_body.py │ │ │ │ ├── list_questionnaire_request.py │ │ │ │ ├── list_questionnaire_request_body.py │ │ │ │ ├── list_questionnaire_response.py │ │ │ │ ├── list_questionnaire_response_body.py │ │ │ │ ├── list_referral_website_job_post_request.py │ │ │ │ ├── list_referral_website_job_post_request_body.py │ │ │ │ ├── list_referral_website_job_post_response.py │ │ │ │ ├── list_referral_website_job_post_response_body.py │ │ │ │ ├── list_registration_schema_request.py │ │ │ │ ├── list_registration_schema_request_body.py │ │ │ │ ├── list_registration_schema_response.py │ │ │ │ ├── list_registration_schema_response_body.py │ │ │ │ ├── list_resume_source_request.py │ │ │ │ ├── list_resume_source_request_body.py │ │ │ │ ├── list_resume_source_response.py │ │ │ │ ├── list_resume_source_response_body.py │ │ │ │ ├── list_role_request.py │ │ │ │ ├── list_role_request_body.py │ │ │ │ ├── list_role_response.py │ │ │ │ ├── list_role_response_body.py │ │ │ │ ├── list_subject_request.py │ │ │ │ ├── list_subject_request_body.py │ │ │ │ ├── list_subject_response.py │ │ │ │ ├── list_subject_response_body.py │ │ │ │ ├── list_talent_folder_request.py │ │ │ │ ├── list_talent_folder_request_body.py │ │ │ │ ├── list_talent_folder_response.py │ │ │ │ ├── list_talent_folder_response_body.py │ │ │ │ ├── list_talent_request.py │ │ │ │ ├── list_talent_request_body.py │ │ │ │ ├── list_talent_response.py │ │ │ │ ├── list_talent_response_body.py │ │ │ │ ├── list_talent_tag_request.py │ │ │ │ ├── list_talent_tag_request_body.py │ │ │ │ ├── list_talent_tag_response.py │ │ │ │ ├── list_talent_tag_response_body.py │ │ │ │ ├── list_termination_reason_request.py │ │ │ │ ├── list_termination_reason_request_body.py │ │ │ │ ├── list_termination_reason_response.py │ │ │ │ ├── list_termination_reason_response_body.py │ │ │ │ ├── list_todo_request.py │ │ │ │ ├── list_todo_request_body.py │ │ │ │ ├── list_todo_response.py │ │ │ │ ├── list_todo_response_body.py │ │ │ │ ├── list_tripartite_agreement_request.py │ │ │ │ ├── list_tripartite_agreement_request_body.py │ │ │ │ ├── list_tripartite_agreement_response.py │ │ │ │ ├── list_tripartite_agreement_response_body.py │ │ │ │ ├── list_user_role_request.py │ │ │ │ ├── list_user_role_request_body.py │ │ │ │ ├── list_user_role_response.py │ │ │ │ ├── list_user_role_response_body.py │ │ │ │ ├── list_website_channel_request.py │ │ │ │ ├── list_website_channel_request_body.py │ │ │ │ ├── list_website_channel_response.py │ │ │ │ ├── list_website_channel_response_body.py │ │ │ │ ├── list_website_job_post_request.py │ │ │ │ ├── list_website_job_post_request_body.py │ │ │ │ ├── list_website_job_post_response.py │ │ │ │ ├── list_website_job_post_response_body.py │ │ │ │ ├── list_website_request.py │ │ │ │ ├── list_website_request_body.py │ │ │ │ ├── list_website_response.py │ │ │ │ ├── list_website_response_body.py │ │ │ │ ├── location.py │ │ │ │ ├── location_base_info.py │ │ │ │ ├── location_city.py │ │ │ │ ├── location_country.py │ │ │ │ ├── location_district.py │ │ │ │ ├── location_dto.py │ │ │ │ ├── location_name_info.py │ │ │ │ ├── location_state.py │ │ │ │ ├── login_info_eco_exam_request.py │ │ │ │ ├── login_info_eco_exam_request_body.py │ │ │ │ ├── login_info_eco_exam_response.py │ │ │ │ ├── login_info_eco_exam_response_body.py │ │ │ │ ├── master_location_address_info.py │ │ │ │ ├── master_location_info.py │ │ │ │ ├── mention_entity.py │ │ │ │ ├── minutes.py │ │ │ │ ├── mobile.py │ │ │ │ ├── module_assessment.py │ │ │ │ ├── move_talent_talent_pool_request.py │ │ │ │ ├── move_talent_talent_pool_request_body.py │ │ │ │ ├── move_talent_talent_pool_response.py │ │ │ │ ├── move_talent_talent_pool_response_body.py │ │ │ │ ├── nationality.py │ │ │ │ ├── note.py │ │ │ │ ├── object_attribute.py │ │ │ │ ├── object_id_name.py │ │ │ │ ├── offer.py │ │ │ │ ├── offer_application_request.py │ │ │ │ ├── offer_application_request_body.py │ │ │ │ ├── offer_application_response.py │ │ │ │ ├── offer_application_response_body.py │ │ │ │ ├── offer_apply_form.py │ │ │ │ ├── offer_apply_form_config_formula_info.py │ │ │ │ ├── offer_apply_form_config_option_info.py │ │ │ │ ├── offer_apply_form_formula_extra_map_info.py │ │ │ │ ├── offer_apply_form_info.py │ │ │ │ ├── offer_apply_form_module_info.py │ │ │ │ ├── offer_apply_form_object_config_info.py │ │ │ │ ├── offer_apply_form_object_display_config_info.py │ │ │ │ ├── offer_apply_form_object_info.py │ │ │ │ ├── offer_apply_form_pre_object_config_info.py │ │ │ │ ├── offer_apply_form_schema.py │ │ │ │ ├── offer_approval_template.py │ │ │ │ ├── offer_attachment_info.py │ │ │ │ ├── offer_basic_info.py │ │ │ │ ├── offer_basic_info_v2.py │ │ │ │ ├── offer_custom_field.py │ │ │ │ ├── offer_custom_field_config.py │ │ │ │ ├── offer_custom_field_config_option.py │ │ │ │ ├── offer_customized_info.py │ │ │ │ ├── offer_email_info.py │ │ │ │ ├── offer_file.py │ │ │ │ ├── offer_info.py │ │ │ │ ├── offer_info_v2.py │ │ │ │ ├── offer_job_info.py │ │ │ │ ├── offer_list_info.py │ │ │ │ ├── offer_salary_info.py │ │ │ │ ├── offer_salary_info_v2.py │ │ │ │ ├── offer_schema.py │ │ │ │ ├── offer_schema_child.py │ │ │ │ ├── offer_schema_detail.py │ │ │ │ ├── offer_schema_detail_option.py │ │ │ │ ├── offer_schema_list_info.py │ │ │ │ ├── offer_schema_name.py │ │ │ │ ├── offer_selection_object.py │ │ │ │ ├── offer_send_record.py │ │ │ │ ├── offer_signature_info.py │ │ │ │ ├── offer_status_offer_request.py │ │ │ │ ├── offer_status_offer_request_body.py │ │ │ │ ├── offer_status_offer_response.py │ │ │ │ ├── offer_status_offer_response_body.py │ │ │ │ ├── onboard_status_talent_request.py │ │ │ │ ├── onboard_status_talent_request_body.py │ │ │ │ ├── onboard_status_talent_response.py │ │ │ │ ├── onboard_status_talent_response_body.py │ │ │ │ ├── open_job_request.py │ │ │ │ ├── open_job_request_body.py │ │ │ │ ├── open_job_response.py │ │ │ │ ├── open_job_response_body.py │ │ │ │ ├── operate_agency_account_agency_request.py │ │ │ │ ├── operate_agency_account_agency_request_body.py │ │ │ │ ├── operate_agency_account_agency_response.py │ │ │ │ ├── operate_agency_account_agency_response_body.py │ │ │ │ ├── p2_hire_application_deleted_v1.py │ │ │ │ ├── p2_hire_application_stage_changed_v1.py │ │ │ │ ├── p2_hire_eco_account_created_v1.py │ │ │ │ ├── p2_hire_eco_background_check_canceled_v1.py │ │ │ │ ├── p2_hire_eco_background_check_created_v1.py │ │ │ │ ├── p2_hire_eco_exam_created_v1.py │ │ │ │ ├── p2_hire_ehr_import_task_for_internship_offer_imported_v1.py │ │ │ │ ├── p2_hire_ehr_import_task_imported_v1.py │ │ │ │ ├── p2_hire_offer_status_changed_v1.py │ │ │ │ ├── p2_hire_referral_account_assets_update_v1.py │ │ │ │ ├── p2_hire_talent_deleted_v1.py │ │ │ │ ├── p2_hire_talent_tag_subscription_v1.py │ │ │ │ ├── patch_ehr_import_task_request.py │ │ │ │ ├── patch_ehr_import_task_response.py │ │ │ │ ├── patch_ehr_import_task_response_body.py │ │ │ │ ├── patch_employee_request.py │ │ │ │ ├── patch_employee_response.py │ │ │ │ ├── patch_employee_response_body.py │ │ │ │ ├── patch_external_interview_assessment_request.py │ │ │ │ ├── patch_external_interview_assessment_response.py │ │ │ │ ├── patch_external_interview_assessment_response_body.py │ │ │ │ ├── patch_interviewer_request.py │ │ │ │ ├── patch_interviewer_request_body.py │ │ │ │ ├── patch_interviewer_response.py │ │ │ │ ├── patch_interviewer_response_body.py │ │ │ │ ├── patch_note_request.py │ │ │ │ ├── patch_note_request_body.py │ │ │ │ ├── patch_note_response.py │ │ │ │ ├── patch_note_response_body.py │ │ │ │ ├── permission_collection.py │ │ │ │ ├── permission_group_info.py │ │ │ │ ├── permission_scope_rule.py │ │ │ │ ├── point.py │ │ │ │ ├── portal_job_post.py │ │ │ │ ├── preview_attachment_request.py │ │ │ │ ├── preview_attachment_request_body.py │ │ │ │ ├── preview_attachment_response.py │ │ │ │ ├── preview_attachment_response_body.py │ │ │ │ ├── project_info.py │ │ │ │ ├── protect_agency_request.py │ │ │ │ ├── protect_agency_request_body.py │ │ │ │ ├── protect_agency_response.py │ │ │ │ ├── protect_agency_response_body.py │ │ │ │ ├── protect_search_agency_request.py │ │ │ │ ├── protect_search_agency_request_body.py │ │ │ │ ├── protect_search_agency_response.py │ │ │ │ ├── protect_search_agency_response_body.py │ │ │ │ ├── provider_id_name_object.py │ │ │ │ ├── publish_advertisement_request.py │ │ │ │ ├── publish_advertisement_request_body.py │ │ │ │ ├── publish_advertisement_response.py │ │ │ │ ├── publish_advertisement_response_body.py │ │ │ │ ├── push_stage.py │ │ │ │ ├── query_agency_request.py │ │ │ │ ├── query_agency_request_body.py │ │ │ │ ├── query_agency_response.py │ │ │ │ ├── query_agency_response_body.py │ │ │ │ ├── query_location_request.py │ │ │ │ ├── query_location_request_body.py │ │ │ │ ├── query_location_response.py │ │ │ │ ├── query_location_response_body.py │ │ │ │ ├── query_talent_object_request.py │ │ │ │ ├── query_talent_object_request_body.py │ │ │ │ ├── query_talent_object_response.py │ │ │ │ ├── query_talent_object_response_body.py │ │ │ │ ├── question.py │ │ │ │ ├── question_assessment.py │ │ │ │ ├── questionnaire.py │ │ │ │ ├── range_filter.py │ │ │ │ ├── recommended_job_level.py │ │ │ │ ├── reconciliation_referral_account_request.py │ │ │ │ ├── reconciliation_referral_account_request_body.py │ │ │ │ ├── reconciliation_referral_account_response.py │ │ │ │ ├── reconciliation_referral_account_response_body.py │ │ │ │ ├── record_score.py │ │ │ │ ├── recover_application_request.py │ │ │ │ ├── recover_application_request_body.py │ │ │ │ ├── recover_application_response.py │ │ │ │ ├── recover_application_response_body.py │ │ │ │ ├── recruiter_job_request.py │ │ │ │ ├── recruiter_job_request_body.py │ │ │ │ ├── recruiter_job_response.py │ │ │ │ ├── recruiter_job_response_body.py │ │ │ │ ├── recruitment_type.py │ │ │ │ ├── referral.py │ │ │ │ ├── referral_basic_info.py │ │ │ │ ├── referral_info.py │ │ │ │ ├── referral_info_v2.py │ │ │ │ ├── referral_recommend_info.py │ │ │ │ ├── registration_basic_info.py │ │ │ │ ├── registration_info.py │ │ │ │ ├── registration_schema.py │ │ │ │ ├── registration_schema_info.py │ │ │ │ ├── related_dimension_config.py │ │ │ │ ├── related_dimension_setting.py │ │ │ │ ├── remove_to_folder_talent_request.py │ │ │ │ ├── remove_to_folder_talent_request_body.py │ │ │ │ ├── remove_to_folder_talent_response.py │ │ │ │ ├── remove_to_folder_talent_response_body.py │ │ │ │ ├── report_custom_data.py │ │ │ │ ├── resume_source.py │ │ │ │ ├── reward.py │ │ │ │ ├── reward_candidate.py │ │ │ │ ├── reward_user.py │ │ │ │ ├── role.py │ │ │ │ ├── role_detail.py │ │ │ │ ├── salary.py │ │ │ │ ├── score_calculation_config.py │ │ │ │ ├── score_dimension_config.py │ │ │ │ ├── search_diversity_inclusion_request.py │ │ │ │ ├── search_diversity_inclusion_request_body.py │ │ │ │ ├── search_diversity_inclusion_response.py │ │ │ │ ├── search_diversity_inclusion_response_body.py │ │ │ │ ├── search_job_publish_record_request.py │ │ │ │ ├── search_job_publish_record_request_body.py │ │ │ │ ├── search_job_publish_record_response.py │ │ │ │ ├── search_job_publish_record_response_body.py │ │ │ │ ├── search_referral_request.py │ │ │ │ ├── search_referral_request_body.py │ │ │ │ ├── search_referral_response.py │ │ │ │ ├── search_referral_response_body.py │ │ │ │ ├── search_talent_operation_log_request.py │ │ │ │ ├── search_talent_operation_log_request_body.py │ │ │ │ ├── search_talent_operation_log_response.py │ │ │ │ ├── search_talent_operation_log_response_body.py │ │ │ │ ├── search_talent_pool_request.py │ │ │ │ ├── search_talent_pool_request_body.py │ │ │ │ ├── search_talent_pool_response.py │ │ │ │ ├── search_talent_pool_response_body.py │ │ │ │ ├── search_test_request.py │ │ │ │ ├── search_test_request_body.py │ │ │ │ ├── search_test_response.py │ │ │ │ ├── search_test_response_body.py │ │ │ │ ├── search_website_job_post_request.py │ │ │ │ ├── search_website_job_post_request_body.py │ │ │ │ ├── search_website_job_post_response.py │ │ │ │ ├── search_website_job_post_response_body.py │ │ │ │ ├── select_option_result.py │ │ │ │ ├── sentence.py │ │ │ │ ├── sequence.py │ │ │ │ ├── signature_attachment.py │ │ │ │ ├── site.py │ │ │ │ ├── site_application.py │ │ │ │ ├── site_application_resume.py │ │ │ │ ├── site_job_city.py │ │ │ │ ├── site_job_post.py │ │ │ │ ├── site_job_post_search_info.py │ │ │ │ ├── site_job_post_search_request.py │ │ │ │ ├── site_job_recruitment_type.py │ │ │ │ ├── site_job_type.py │ │ │ │ ├── site_name.py │ │ │ │ ├── site_resume_award.py │ │ │ │ ├── site_resume_career.py │ │ │ │ ├── site_resume_certificate.py │ │ │ │ ├── site_resume_competition.py │ │ │ │ ├── site_resume_education.py │ │ │ │ ├── site_resume_identification.py │ │ │ │ ├── site_resume_internship.py │ │ │ │ ├── site_resume_language_skill.py │ │ │ │ ├── site_resume_project.py │ │ │ │ ├── site_resume_sns.py │ │ │ │ ├── site_resume_work.py │ │ │ │ ├── sns_info.py │ │ │ │ ├── specific_relationship.py │ │ │ │ ├── store.py │ │ │ │ ├── subject.py │ │ │ │ ├── tag_talent_request.py │ │ │ │ ├── tag_talent_request_body.py │ │ │ │ ├── tag_talent_response.py │ │ │ │ ├── tag_talent_response_body.py │ │ │ │ ├── talent.py │ │ │ │ ├── talent_award_info.py │ │ │ │ ├── talent_basic_info.py │ │ │ │ ├── talent_basic_info_v2.py │ │ │ │ ├── talent_batch_info.py │ │ │ │ ├── talent_career_info.py │ │ │ │ ├── talent_certificate_info.py │ │ │ │ ├── talent_city_info.py │ │ │ │ ├── talent_combined_award_info.py │ │ │ │ ├── talent_combined_basic_info.py │ │ │ │ ├── talent_combined_career_info.py │ │ │ │ ├── talent_combined_education_info.py │ │ │ │ ├── talent_combined_language_info.py │ │ │ │ ├── talent_combined_project_info.py │ │ │ │ ├── talent_combined_sns_info.py │ │ │ │ ├── talent_combined_work_info.py │ │ │ │ ├── talent_competition_info.py │ │ │ │ ├── talent_customized_attachment.py │ │ │ │ ├── talent_customized_data.py │ │ │ │ ├── talent_customized_data_child.py │ │ │ │ ├── talent_customized_data_object_value.py │ │ │ │ ├── talent_customized_data_object_value_child.py │ │ │ │ ├── talent_customized_option.py │ │ │ │ ├── talent_customized_time_range.py │ │ │ │ ├── talent_customized_value.py │ │ │ │ ├── talent_detail_talent_nationality.py │ │ │ │ ├── talent_education_info.py │ │ │ │ ├── talent_external_info.py │ │ │ │ ├── talent_folder.py │ │ │ │ ├── talent_folder_for_list.py │ │ │ │ ├── talent_identification_info.py │ │ │ │ ├── talent_internship_info.py │ │ │ │ ├── talent_interview.py │ │ │ │ ├── talent_interview_registration.py │ │ │ │ ├── talent_interview_registration_simple.py │ │ │ │ ├── talent_language_info.py │ │ │ │ ├── talent_nationality.py │ │ │ │ ├── talent_operation_log.py │ │ │ │ ├── talent_pool.py │ │ │ │ ├── talent_pool_talent_basic.py │ │ │ │ ├── talent_project_info.py │ │ │ │ ├── talent_resume_source.py │ │ │ │ ├── talent_schema.py │ │ │ │ ├── talent_schema_child_object.py │ │ │ │ ├── talent_schema_object.py │ │ │ │ ├── talent_schema_option.py │ │ │ │ ├── talent_self_evaluation.py │ │ │ │ ├── talent_sns_info.py │ │ │ │ ├── talent_tag.py │ │ │ │ ├── talent_works_info.py │ │ │ │ ├── target_major_info.py │ │ │ │ ├── terminate_application_request.py │ │ │ │ ├── terminate_application_request_body.py │ │ │ │ ├── terminate_application_response.py │ │ │ │ ├── terminate_application_response_body.py │ │ │ │ ├── termination_reason.py │ │ │ │ ├── termination_reason_child_info.py │ │ │ │ ├── termination_reason_info.py │ │ │ │ ├── test.py │ │ │ │ ├── test_result_detail.py │ │ │ │ ├── test_schedule.py │ │ │ │ ├── todo.py │ │ │ │ ├── todo_common.py │ │ │ │ ├── trade_detail.py │ │ │ │ ├── transfer_onboard_application_request.py │ │ │ │ ├── transfer_onboard_application_request_body.py │ │ │ │ ├── transfer_onboard_application_response.py │ │ │ │ ├── transfer_onboard_application_response_body.py │ │ │ │ ├── transfer_stage_application_request.py │ │ │ │ ├── transfer_stage_application_request_body.py │ │ │ │ ├── transfer_stage_application_response.py │ │ │ │ ├── transfer_stage_application_response_body.py │ │ │ │ ├── tripartite_agreement_info.py │ │ │ │ ├── update_config_job_request.py │ │ │ │ ├── update_config_job_response.py │ │ │ │ ├── update_config_job_response_body.py │ │ │ │ ├── update_external_application_request.py │ │ │ │ ├── update_external_application_response.py │ │ │ │ ├── update_external_application_response_body.py │ │ │ │ ├── update_external_background_check_request.py │ │ │ │ ├── update_external_background_check_response.py │ │ │ │ ├── update_external_background_check_response_body.py │ │ │ │ ├── update_external_interview_request.py │ │ │ │ ├── update_external_interview_response.py │ │ │ │ ├── update_external_interview_response_body.py │ │ │ │ ├── update_external_offer_request.py │ │ │ │ ├── update_external_offer_response.py │ │ │ │ ├── update_external_offer_response_body.py │ │ │ │ ├── update_job_requirement_request.py │ │ │ │ ├── update_job_requirement_request_body.py │ │ │ │ ├── update_job_requirement_response.py │ │ │ │ ├── update_job_requirement_response_body.py │ │ │ │ ├── update_offer_custom_field_request.py │ │ │ │ ├── update_offer_custom_field_response.py │ │ │ │ ├── update_offer_custom_field_response_body.py │ │ │ │ ├── update_offer_request.py │ │ │ │ ├── update_offer_response.py │ │ │ │ ├── update_offer_response_body.py │ │ │ │ ├── update_progress_eco_background_check_request.py │ │ │ │ ├── update_progress_eco_background_check_request_body.py │ │ │ │ ├── update_progress_eco_background_check_response.py │ │ │ │ ├── update_progress_eco_background_check_response_body.py │ │ │ │ ├── update_result_eco_background_check_request.py │ │ │ │ ├── update_result_eco_background_check_request_body.py │ │ │ │ ├── update_result_eco_background_check_response.py │ │ │ │ ├── update_result_eco_background_check_response_body.py │ │ │ │ ├── update_result_eco_exam_request.py │ │ │ │ ├── update_result_eco_exam_request_body.py │ │ │ │ ├── update_result_eco_exam_response.py │ │ │ │ ├── update_result_eco_exam_response_body.py │ │ │ │ ├── update_talent_external_info_request.py │ │ │ │ ├── update_talent_external_info_request_body.py │ │ │ │ ├── update_talent_external_info_response.py │ │ │ │ ├── update_talent_external_info_response_body.py │ │ │ │ ├── update_tripartite_agreement_request.py │ │ │ │ ├── update_tripartite_agreement_response.py │ │ │ │ ├── update_tripartite_agreement_response_body.py │ │ │ │ ├── update_website_channel_request.py │ │ │ │ ├── update_website_channel_request_body.py │ │ │ │ ├── update_website_channel_response.py │ │ │ │ ├── update_website_channel_response_body.py │ │ │ │ ├── user_business_management_scope.py │ │ │ │ ├── user_contact_info.py │ │ │ │ ├── user_id.py │ │ │ │ ├── user_role.py │ │ │ │ ├── website.py │ │ │ │ ├── website_channel_info.py │ │ │ │ ├── website_delivery.py │ │ │ │ ├── website_delivery_attachment.py │ │ │ │ ├── website_delivery_attachment_indentification.py │ │ │ │ ├── website_delivery_award.py │ │ │ │ ├── website_delivery_basic_info.py │ │ │ │ ├── website_delivery_career.py │ │ │ │ ├── website_delivery_certificate.py │ │ │ │ ├── website_delivery_competition.py │ │ │ │ ├── website_delivery_customized_data.py │ │ │ │ ├── website_delivery_customized_data_parent.py │ │ │ │ ├── website_delivery_dto.py │ │ │ │ ├── website_delivery_education.py │ │ │ │ ├── website_delivery_identification.py │ │ │ │ ├── website_delivery_internship.py │ │ │ │ ├── website_delivery_language.py │ │ │ │ ├── website_delivery_project.py │ │ │ │ ├── website_delivery_resume.py │ │ │ │ ├── website_delivery_self_evaluation.py │ │ │ │ ├── website_delivery_sns.py │ │ │ │ ├── website_delivery_works.py │ │ │ │ ├── website_delivery_works_attachment.py │ │ │ │ ├── website_job_post.py │ │ │ │ ├── website_job_post_customized_data.py │ │ │ │ ├── website_job_post_customized_option.py │ │ │ │ ├── website_job_post_customized_time_range.py │ │ │ │ ├── website_job_post_customized_value.py │ │ │ │ ├── website_user.py │ │ │ │ ├── withdraw_referral_account_request.py │ │ │ │ ├── withdraw_referral_account_request_body.py │ │ │ │ ├── withdraw_referral_account_response.py │ │ │ │ ├── withdraw_referral_account_response_body.py │ │ │ │ └── works_info.py │ │ │ ├── processor.py │ │ │ ├── resource │ │ │ │ ├── __init__.py │ │ │ │ ├── advertisement.py │ │ │ │ ├── agency.py │ │ │ │ ├── application.py │ │ │ │ ├── application_interview.py │ │ │ │ ├── attachment.py │ │ │ │ ├── background_check_order.py │ │ │ │ ├── diversity_inclusion.py │ │ │ │ ├── eco_account.py │ │ │ │ ├── eco_account_custom_field.py │ │ │ │ ├── eco_background_check.py │ │ │ │ ├── eco_background_check_custom_field.py │ │ │ │ ├── eco_background_check_package.py │ │ │ │ ├── eco_exam.py │ │ │ │ ├── eco_exam_paper.py │ │ │ │ ├── ehr_import_task.py │ │ │ │ ├── ehr_import_task_for_internship_offer.py │ │ │ │ ├── employee.py │ │ │ │ ├── evaluation.py │ │ │ │ ├── evaluation_task.py │ │ │ │ ├── exam.py │ │ │ │ ├── exam_marking_task.py │ │ │ │ ├── external_application.py │ │ │ │ ├── external_background_check.py │ │ │ │ ├── external_interview.py │ │ │ │ ├── external_interview_assessment.py │ │ │ │ ├── external_offer.py │ │ │ │ ├── external_referral_reward.py │ │ │ │ ├── interview.py │ │ │ │ ├── interview_feedback_form.py │ │ │ │ ├── interview_record.py │ │ │ │ ├── interview_record_attachment.py │ │ │ │ ├── interview_registration_schema.py │ │ │ │ ├── interview_round_type.py │ │ │ │ ├── interview_task.py │ │ │ │ ├── interviewer.py │ │ │ │ ├── job.py │ │ │ │ ├── job_function.py │ │ │ │ ├── job_manager.py │ │ │ │ ├── job_process.py │ │ │ │ ├── job_publish_record.py │ │ │ │ ├── job_requirement.py │ │ │ │ ├── job_requirement_schema.py │ │ │ │ ├── job_schema.py │ │ │ │ ├── job_type.py │ │ │ │ ├── location.py │ │ │ │ ├── minutes.py │ │ │ │ ├── note.py │ │ │ │ ├── offer.py │ │ │ │ ├── offer_application_form.py │ │ │ │ ├── offer_approval_template.py │ │ │ │ ├── offer_custom_field.py │ │ │ │ ├── offer_schema.py │ │ │ │ ├── portal_apply_schema.py │ │ │ │ ├── questionnaire.py │ │ │ │ ├── referral.py │ │ │ │ ├── referral_account.py │ │ │ │ ├── referral_website_job_post.py │ │ │ │ ├── registration_schema.py │ │ │ │ ├── resume_source.py │ │ │ │ ├── role.py │ │ │ │ ├── subject.py │ │ │ │ ├── talent.py │ │ │ │ ├── talent_blocklist.py │ │ │ │ ├── talent_external_info.py │ │ │ │ ├── talent_folder.py │ │ │ │ ├── talent_object.py │ │ │ │ ├── talent_operation_log.py │ │ │ │ ├── talent_pool.py │ │ │ │ ├── talent_tag.py │ │ │ │ ├── termination_reason.py │ │ │ │ ├── test.py │ │ │ │ ├── todo.py │ │ │ │ ├── tripartite_agreement.py │ │ │ │ ├── user_role.py │ │ │ │ ├── website.py │ │ │ │ ├── website_channel.py │ │ │ │ ├── website_delivery.py │ │ │ │ ├── website_delivery_task.py │ │ │ │ ├── website_job_post.py │ │ │ │ └── website_site_user.py │ │ │ └── version.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── ability.py │ │ │ ├── attachment.py │ │ │ ├── composite_talent.py │ │ │ ├── composite_talent_award_info.py │ │ │ ├── composite_talent_basic_info.py │ │ │ ├── composite_talent_career_info.py │ │ │ ├── composite_talent_customized_data.py │ │ │ ├── composite_talent_education_info.py │ │ │ ├── composite_talent_internship_info.py │ │ │ ├── composite_talent_language_info.py │ │ │ ├── composite_talent_project_info.py │ │ │ ├── composite_talent_self_introduction.py │ │ │ ├── composite_talent_sns_info.py │ │ │ ├── composite_talent_works_info.py │ │ │ ├── department_id.py │ │ │ ├── dimension_assessment.py │ │ │ ├── dimension_option.py │ │ │ ├── get_interview_record_request.py │ │ │ ├── get_interview_record_response.py │ │ │ ├── get_interview_record_response_body.py │ │ │ ├── get_talent_request.py │ │ │ ├── get_talent_response.py │ │ │ ├── get_talent_response_body.py │ │ │ ├── i18n.py │ │ │ ├── id_name_object.py │ │ │ ├── interview_record.py │ │ │ ├── list_interview_record_request.py │ │ │ ├── list_interview_record_response.py │ │ │ ├── list_interview_record_response_body.py │ │ │ ├── module_assessment.py │ │ │ ├── question_assessment.py │ │ │ ├── recommended_job_level.py │ │ │ ├── record_score.py │ │ │ ├── registration_basic_info.py │ │ │ ├── talent_block.py │ │ │ ├── talent_customized_attachment.py │ │ │ ├── talent_customized_data_child.py │ │ │ ├── talent_customized_option.py │ │ │ ├── talent_customized_time_range.py │ │ │ ├── talent_customized_value.py │ │ │ ├── talent_folder.py │ │ │ ├── talent_interview_registration_simple.py │ │ │ ├── talent_note.py │ │ │ ├── talent_pool.py │ │ │ ├── talent_resume_attachment.py │ │ │ ├── talent_resume_source.py │ │ │ ├── talent_similar.py │ │ │ └── talent_tag.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ ├── interview_record.py │ │ │ └── talent.py │ │ │ └── version.py │ ├── human_authentication │ │ ├── __init__.py │ │ ├── service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── create_identity_request.py │ │ │ ├── create_identity_request_body.py │ │ │ ├── create_identity_response.py │ │ │ ├── create_identity_response_body.py │ │ │ ├── department_id.py │ │ │ └── identity.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ └── identity.py │ │ │ └── version.py │ ├── im │ │ ├── __init__.py │ │ ├── service.py │ │ ├── v1 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ │ ├── __init__.py │ │ │ │ ├── add_managers_chat_managers_request.py │ │ │ │ ├── add_managers_chat_managers_request_body.py │ │ │ │ ├── add_managers_chat_managers_response.py │ │ │ │ ├── add_managers_chat_managers_response_body.py │ │ │ │ ├── batch_message.py │ │ │ │ ├── batch_message_read_user.py │ │ │ │ ├── batch_message_recall_progress.py │ │ │ │ ├── batch_message_send_progress.py │ │ │ │ ├── batch_recall_progress.py │ │ │ │ ├── batch_send_progress.py │ │ │ │ ├── chat.py │ │ │ │ ├── chat_announcement.py │ │ │ │ ├── chat_change.py │ │ │ │ ├── chat_managers.py │ │ │ │ ├── chat_member.py │ │ │ │ ├── chat_member_bot.py │ │ │ │ ├── chat_member_user.py │ │ │ │ ├── chat_members.py │ │ │ │ ├── chat_menu_item.py │ │ │ │ ├── chat_menu_item_redirect_link.py │ │ │ │ ├── chat_menu_second_level.py │ │ │ │ ├── chat_menu_top_level.py │ │ │ │ ├── chat_menu_tree.py │ │ │ │ ├── chat_tab.py │ │ │ │ ├── chat_tab_config.py │ │ │ │ ├── chat_tab_content.py │ │ │ │ ├── chat_top_notice.py │ │ │ │ ├── crc32_item.py │ │ │ │ ├── create_chat_members_request.py │ │ │ │ ├── create_chat_members_request_body.py │ │ │ │ ├── create_chat_members_response.py │ │ │ │ ├── create_chat_members_response_body.py │ │ │ │ ├── create_chat_menu_tree_request.py │ │ │ │ ├── create_chat_menu_tree_request_body.py │ │ │ │ ├── create_chat_menu_tree_response.py │ │ │ │ ├── create_chat_menu_tree_response_body.py │ │ │ │ ├── create_chat_request.py │ │ │ │ ├── create_chat_request_body.py │ │ │ │ ├── create_chat_response.py │ │ │ │ ├── create_chat_response_body.py │ │ │ │ ├── create_chat_tab_request.py │ │ │ │ ├── create_chat_tab_request_body.py │ │ │ │ ├── create_chat_tab_response.py │ │ │ │ ├── create_chat_tab_response_body.py │ │ │ │ ├── create_file_request.py │ │ │ │ ├── create_file_request_body.py │ │ │ │ ├── create_file_response.py │ │ │ │ ├── create_file_response_body.py │ │ │ │ ├── create_image_request.py │ │ │ │ ├── create_image_request_body.py │ │ │ │ ├── create_image_response.py │ │ │ │ ├── create_image_response_body.py │ │ │ │ ├── create_message_reaction_request.py │ │ │ │ ├── create_message_reaction_request_body.py │ │ │ │ ├── create_message_reaction_response.py │ │ │ │ ├── create_message_reaction_response_body.py │ │ │ │ ├── create_message_request.py │ │ │ │ ├── create_message_request_body.py │ │ │ │ ├── create_message_response.py │ │ │ │ ├── create_message_response_body.py │ │ │ │ ├── create_pin_request.py │ │ │ │ ├── create_pin_request_body.py │ │ │ │ ├── create_pin_response.py │ │ │ │ ├── create_pin_response_body.py │ │ │ │ ├── delete_batch_message_request.py │ │ │ │ ├── delete_batch_message_request_body.py │ │ │ │ ├── delete_batch_message_response.py │ │ │ │ ├── delete_batch_message_response_body.py │ │ │ │ ├── delete_chat_members_request.py │ │ │ │ ├── delete_chat_members_request_body.py │ │ │ │ ├── delete_chat_members_response.py │ │ │ │ ├── delete_chat_members_response_body.py │ │ │ │ ├── delete_chat_menu_tree_request.py │ │ │ │ ├── delete_chat_menu_tree_request_body.py │ │ │ │ ├── delete_chat_menu_tree_response.py │ │ │ │ ├── delete_chat_menu_tree_response_body.py │ │ │ │ ├── delete_chat_request.py │ │ │ │ ├── delete_chat_request_body.py │ │ │ │ ├── delete_chat_response.py │ │ │ │ ├── delete_chat_response_body.py │ │ │ │ ├── delete_managers_chat_managers_request.py │ │ │ │ ├── delete_managers_chat_managers_request_body.py │ │ │ │ ├── delete_managers_chat_managers_response.py │ │ │ │ ├── delete_managers_chat_managers_response_body.py │ │ │ │ ├── delete_message_reaction_request.py │ │ │ │ ├── delete_message_reaction_request_body.py │ │ │ │ ├── delete_message_reaction_response.py │ │ │ │ ├── delete_message_reaction_response_body.py │ │ │ │ ├── delete_message_request.py │ │ │ │ ├── delete_message_request_body.py │ │ │ │ ├── delete_message_response.py │ │ │ │ ├── delete_message_response_body.py │ │ │ │ ├── delete_pin_request.py │ │ │ │ ├── delete_pin_request_body.py │ │ │ │ ├── delete_pin_response.py │ │ │ │ ├── delete_pin_response_body.py │ │ │ │ ├── delete_tabs_chat_tab_request.py │ │ │ │ ├── delete_tabs_chat_tab_request_body.py │ │ │ │ ├── delete_tabs_chat_tab_response.py │ │ │ │ ├── delete_tabs_chat_tab_response_body.py │ │ │ │ ├── delete_top_notice_chat_top_notice_request.py │ │ │ │ ├── delete_top_notice_chat_top_notice_request_body.py │ │ │ │ ├── delete_top_notice_chat_top_notice_response.py │ │ │ │ ├── delete_top_notice_chat_top_notice_response_body.py │ │ │ │ ├── department_id.py │ │ │ │ ├── emoji.py │ │ │ │ ├── event_message.py │ │ │ │ ├── event_message_reader.py │ │ │ │ ├── event_sender.py │ │ │ │ ├── file.py │ │ │ │ ├── follow_up.py │ │ │ │ ├── forward_message_request.py │ │ │ │ ├── forward_message_request_body.py │ │ │ │ ├── forward_message_response.py │ │ │ │ ├── forward_message_response_body.py │ │ │ │ ├── forward_thread_request.py │ │ │ │ ├── forward_thread_request_body.py │ │ │ │ ├── forward_thread_response.py │ │ │ │ ├── forward_thread_response_body.py │ │ │ │ ├── get_chat_announcement_request.py │ │ │ │ ├── get_chat_announcement_request_body.py │ │ │ │ ├── get_chat_announcement_response.py │ │ │ │ ├── get_chat_announcement_response_body.py │ │ │ │ ├── get_chat_members_request.py │ │ │ │ ├── get_chat_members_request_body.py │ │ │ │ ├── get_chat_members_response.py │ │ │ │ ├── get_chat_members_response_body.py │ │ │ │ ├── get_chat_menu_tree_request.py │ │ │ │ ├── get_chat_menu_tree_request_body.py │ │ │ │ ├── get_chat_menu_tree_response.py │ │ │ │ ├── get_chat_menu_tree_response_body.py │ │ │ │ ├── get_chat_moderation_request.py │ │ │ │ ├── get_chat_moderation_request_body.py │ │ │ │ ├── get_chat_moderation_response.py │ │ │ │ ├── get_chat_moderation_response_body.py │ │ │ │ ├── get_chat_request.py │ │ │ │ ├── get_chat_request_body.py │ │ │ │ ├── get_chat_response.py │ │ │ │ ├── get_chat_response_body.py │ │ │ │ ├── get_file_request.py │ │ │ │ ├── get_file_request_body.py │ │ │ │ ├── get_file_response.py │ │ │ │ ├── get_file_response_body.py │ │ │ │ ├── get_image_request.py │ │ │ │ ├── get_image_request_body.py │ │ │ │ ├── get_image_response.py │ │ │ │ ├── get_image_response_body.py │ │ │ │ ├── get_message_request.py │ │ │ │ ├── get_message_request_body.py │ │ │ │ ├── get_message_resource_request.py │ │ │ │ ├── get_message_resource_request_body.py │ │ │ │ ├── get_message_resource_response.py │ │ │ │ ├── get_message_resource_response_body.py │ │ │ │ ├── get_message_response.py │ │ │ │ ├── get_message_response_body.py │ │ │ │ ├── get_progress_batch_message_request.py │ │ │ │ ├── get_progress_batch_message_request_body.py │ │ │ │ ├── get_progress_batch_message_response.py │ │ │ │ ├── get_progress_batch_message_response_body.py │ │ │ │ ├── i18n_content.py │ │ │ │ ├── i18n_names.py │ │ │ │ ├── im_depth_data.py │ │ │ │ ├── image.py │ │ │ │ ├── is_in_chat_chat_members_request.py │ │ │ │ ├── is_in_chat_chat_members_request_body.py │ │ │ │ ├── is_in_chat_chat_members_response.py │ │ │ │ ├── is_in_chat_chat_members_response_body.py │ │ │ │ ├── link_chat_request.py │ │ │ │ ├── link_chat_request_body.py │ │ │ │ ├── link_chat_response.py │ │ │ │ ├── link_chat_response_body.py │ │ │ │ ├── list_chat.py │ │ │ │ ├── list_chat_request.py │ │ │ │ ├── list_chat_request_body.py │ │ │ │ ├── list_chat_response.py │ │ │ │ ├── list_chat_response_body.py │ │ │ │ ├── list_event_moderator.py │ │ │ │ ├── list_member.py │ │ │ │ ├── list_message_reaction_request.py │ │ │ │ ├── list_message_reaction_request_body.py │ │ │ │ ├── list_message_reaction_response.py │ │ │ │ ├── list_message_reaction_response_body.py │ │ │ │ ├── list_message_request.py │ │ │ │ ├── list_message_request_body.py │ │ │ │ ├── list_message_response.py │ │ │ │ ├── list_message_response_body.py │ │ │ │ ├── list_moderator.py │ │ │ │ ├── list_notify_status.py │ │ │ │ ├── list_pin_request.py │ │ │ │ ├── list_pin_request_body.py │ │ │ │ ├── list_pin_response.py │ │ │ │ ├── list_pin_response_body.py │ │ │ │ ├── list_special_focus_request.py │ │ │ │ ├── list_special_focus_response.py │ │ │ │ ├── list_special_focus_response_body.py │ │ │ │ ├── list_tabs_chat_tab_request.py │ │ │ │ ├── list_tabs_chat_tab_request_body.py │ │ │ │ ├── list_tabs_chat_tab_response.py │ │ │ │ ├── list_tabs_chat_tab_response_body.py │ │ │ │ ├── me_join_chat_members_request.py │ │ │ │ ├── me_join_chat_members_request_body.py │ │ │ │ ├── me_join_chat_members_response.py │ │ │ │ ├── me_join_chat_members_response_body.py │ │ │ │ ├── mention.py │ │ │ │ ├── mention_event.py │ │ │ │ ├── merge_forward_message_request.py │ │ │ │ ├── merge_forward_message_request_body.py │ │ │ │ ├── merge_forward_message_response.py │ │ │ │ ├── merge_forward_message_response_body.py │ │ │ │ ├── message.py │ │ │ │ ├── message_body.py │ │ │ │ ├── message_reaction.py │ │ │ │ ├── message_resource.py │ │ │ │ ├── moderator_list.py │ │ │ │ ├── msg_process_data.py │ │ │ │ ├── operator.py │ │ │ │ ├── p2_im_chat_access_event_bot_p2p_chat_entered_v1.py │ │ │ │ ├── p2_im_chat_disbanded_v1.py │ │ │ │ ├── p2_im_chat_member_bot_added_v1.py │ │ │ │ ├── p2_im_chat_member_bot_deleted_v1.py │ │ │ │ ├── p2_im_chat_member_user_added_v1.py │ │ │ │ ├── p2_im_chat_member_user_deleted_v1.py │ │ │ │ ├── p2_im_chat_member_user_withdrawn_v1.py │ │ │ │ ├── p2_im_chat_updated_v1.py │ │ │ │ ├── p2_im_message_message_read_v1.py │ │ │ │ ├── p2_im_message_reaction_created_v1.py │ │ │ │ ├── p2_im_message_reaction_deleted_v1.py │ │ │ │ ├── p2_im_message_recalled_v1.py │ │ │ │ ├── p2_im_message_receive_v1.py │ │ │ │ ├── patch_chat_announcement_request.py │ │ │ │ ├── patch_chat_announcement_request_body.py │ │ │ │ ├── patch_chat_announcement_response.py │ │ │ │ ├── patch_chat_announcement_response_body.py │ │ │ │ ├── patch_chat_menu_item_request.py │ │ │ │ ├── patch_chat_menu_item_request_body.py │ │ │ │ ├── patch_chat_menu_item_response.py │ │ │ │ ├── patch_chat_menu_item_response_body.py │ │ │ │ ├── patch_message_request.py │ │ │ │ ├── patch_message_request_body.py │ │ │ │ ├── patch_message_response.py │ │ │ │ ├── patch_message_response_body.py │ │ │ │ ├── pin.py │ │ │ │ ├── pined_message.py │ │ │ │ ├── push_follow_up_message_request.py │ │ │ │ ├── push_follow_up_message_request_body.py │ │ │ │ ├── push_follow_up_message_response.py │ │ │ │ ├── push_follow_up_message_response_body.py │ │ │ │ ├── put_top_notice_chat_top_notice_request.py │ │ │ │ ├── put_top_notice_chat_top_notice_request_body.py │ │ │ │ ├── put_top_notice_chat_top_notice_response.py │ │ │ │ ├── put_top_notice_chat_top_notice_response_body.py │ │ │ │ ├── read_user.py │ │ │ │ ├── read_user_batch_message_request.py │ │ │ │ ├── read_user_batch_message_request_body.py │ │ │ │ ├── read_user_batch_message_response.py │ │ │ │ ├── read_user_batch_message_response_body.py │ │ │ │ ├── read_users_message_request.py │ │ │ │ ├── read_users_message_request_body.py │ │ │ │ ├── read_users_message_response.py │ │ │ │ ├── read_users_message_response_body.py │ │ │ │ ├── reply_message_request.py │ │ │ │ ├── reply_message_request_body.py │ │ │ │ ├── reply_message_response.py │ │ │ │ ├── reply_message_response_body.py │ │ │ │ ├── restricted_mode_setting.py │ │ │ │ ├── search_chat_request.py │ │ │ │ ├── search_chat_request_body.py │ │ │ │ ├── search_chat_response.py │ │ │ │ ├── search_chat_response_body.py │ │ │ │ ├── sender.py │ │ │ │ ├── sort_chat_menu_tree_request.py │ │ │ │ ├── sort_chat_menu_tree_request_body.py │ │ │ │ ├── sort_chat_menu_tree_response.py │ │ │ │ ├── sort_chat_menu_tree_response_body.py │ │ │ │ ├── sort_tabs_chat_tab_request.py │ │ │ │ ├── sort_tabs_chat_tab_request_body.py │ │ │ │ ├── sort_tabs_chat_tab_response.py │ │ │ │ ├── sort_tabs_chat_tab_response_body.py │ │ │ │ ├── special_focus.py │ │ │ │ ├── special_focus_unread.py │ │ │ │ ├── thread.py │ │ │ │ ├── toolkit.py │ │ │ │ ├── toolkit_callback.py │ │ │ │ ├── toolkit_redirect_link.py │ │ │ │ ├── unread_special_focus_request.py │ │ │ │ ├── unread_special_focus_request_body.py │ │ │ │ ├── unread_special_focus_response.py │ │ │ │ ├── unread_special_focus_response_body.py │ │ │ │ ├── update_chat_moderation_request.py │ │ │ │ ├── update_chat_moderation_request_body.py │ │ │ │ ├── update_chat_moderation_response.py │ │ │ │ ├── update_chat_moderation_response_body.py │ │ │ │ ├── update_chat_request.py │ │ │ │ ├── update_chat_request_body.py │ │ │ │ ├── update_chat_response.py │ │ │ │ ├── update_chat_response_body.py │ │ │ │ ├── update_message_request.py │ │ │ │ ├── update_message_request_body.py │ │ │ │ ├── update_message_response.py │ │ │ │ ├── update_message_response_body.py │ │ │ │ ├── update_tabs_chat_tab_request.py │ │ │ │ ├── update_tabs_chat_tab_request_body.py │ │ │ │ ├── update_tabs_chat_tab_response.py │ │ │ │ ├── update_tabs_chat_tab_response_body.py │ │ │ │ ├── urgent_app_message_request.py │ │ │ │ ├── urgent_app_message_response.py │ │ │ │ ├── urgent_app_message_response_body.py │ │ │ │ ├── urgent_phone_message_request.py │ │ │ │ ├── urgent_phone_message_response.py │ │ │ │ ├── urgent_phone_message_response_body.py │ │ │ │ ├── urgent_receivers.py │ │ │ │ ├── urgent_sms_message_request.py │ │ │ │ ├── urgent_sms_message_response.py │ │ │ │ ├── urgent_sms_message_response_body.py │ │ │ │ ├── user_id.py │ │ │ │ ├── widget.py │ │ │ │ └── widget_url.py │ │ │ ├── processor.py │ │ │ ├── resource │ │ │ │ ├── __init__.py │ │ │ │ ├── batch_message.py │ │ │ │ ├── chat.py │ │ │ │ ├── chat_access_event.py │ │ │ │ ├── chat_announcement.py │ │ │ │ ├── chat_managers.py │ │ │ │ ├── chat_member_bot.py │ │ │ │ ├── chat_member_user.py │ │ │ │ ├── chat_members.py │ │ │ │ ├── chat_menu_item.py │ │ │ │ ├── chat_menu_tree.py │ │ │ │ ├── chat_moderation.py │ │ │ │ ├── chat_tab.py │ │ │ │ ├── chat_top_notice.py │ │ │ │ ├── file.py │ │ │ │ ├── image.py │ │ │ │ ├── message.py │ │ │ │ ├── message_reaction.py │ │ │ │ ├── message_resource.py │ │ │ │ ├── pin.py │ │ │ │ ├── special_focus.py │ │ │ │ └── thread.py │ │ │ └── version.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── app_feed_notify.py │ │ │ ├── batch_update_url_preview_request.py │ │ │ ├── batch_update_url_preview_request_body.py │ │ │ ├── batch_update_url_preview_response.py │ │ │ ├── batch_update_url_preview_response_body.py │ │ │ ├── bot_time_sentive_feed_card_request.py │ │ │ ├── bot_time_sentive_feed_card_request_body.py │ │ │ ├── bot_time_sentive_feed_card_response.py │ │ │ ├── bot_time_sentive_feed_card_response_body.py │ │ │ ├── chat_common_header.py │ │ │ ├── chat_pin.py │ │ │ ├── chat_pin_icon.py │ │ │ ├── create_app_feed_card_request.py │ │ │ ├── create_app_feed_card_request_body.py │ │ │ ├── create_app_feed_card_response.py │ │ │ ├── create_app_feed_card_response_body.py │ │ │ ├── create_biz_entity_tag_relation_request.py │ │ │ ├── create_biz_entity_tag_relation_request_body.py │ │ │ ├── create_biz_entity_tag_relation_response.py │ │ │ ├── create_biz_entity_tag_relation_response_body.py │ │ │ ├── create_tag.py │ │ │ ├── create_tag_fail_reason.py │ │ │ ├── create_tag_request.py │ │ │ ├── create_tag_request_body.py │ │ │ ├── create_tag_response.py │ │ │ ├── create_tag_response_body.py │ │ │ ├── delete_app_feed_card_batch_request.py │ │ │ ├── delete_app_feed_card_batch_request_body.py │ │ │ ├── delete_app_feed_card_batch_response.py │ │ │ ├── delete_app_feed_card_batch_response_body.py │ │ │ ├── department_id.py │ │ │ ├── failed_reason.py │ │ │ ├── feed_card_display_rule_failed_item.py │ │ │ ├── feed_card_display_rule_updater.py │ │ │ ├── feed_card_setting_failed_item.py │ │ │ ├── feed_card_setting_updater.py │ │ │ ├── feed_group.py │ │ │ ├── feed_group_creator.py │ │ │ ├── feed_group_item.py │ │ │ ├── feed_group_rule.py │ │ │ ├── feed_group_rule_cond.py │ │ │ ├── feed_group_rule_cond_item.py │ │ │ ├── feed_group_rules.py │ │ │ ├── feed_group_updater.py │ │ │ ├── get_biz_entity_tag_relation_request.py │ │ │ ├── get_biz_entity_tag_relation_request_body.py │ │ │ ├── get_biz_entity_tag_relation_response.py │ │ │ ├── get_biz_entity_tag_relation_response_body.py │ │ │ ├── group_failed_reason.py │ │ │ ├── group_item_failed_reason.py │ │ │ ├── i18n_names.py │ │ │ ├── message_common_header.py │ │ │ ├── message_link.py │ │ │ ├── message_pin.py │ │ │ ├── open_app_feed_card.py │ │ │ ├── open_app_feed_card_button.py │ │ │ ├── open_app_feed_card_buttons.py │ │ │ ├── open_app_feed_card_text.py │ │ │ ├── open_app_feed_card_url.py │ │ │ ├── open_app_feed_link.py │ │ │ ├── open_display_feed_rule.py │ │ │ ├── open_failed_user_app_feed_card_item.py │ │ │ ├── open_feed_status_label.py │ │ │ ├── patch_feed_card_request.py │ │ │ ├── patch_feed_card_request_body.py │ │ │ ├── patch_feed_card_response.py │ │ │ ├── patch_feed_card_response_body.py │ │ │ ├── patch_tag.py │ │ │ ├── patch_tag_fail_reason.py │ │ │ ├── patch_tag_request.py │ │ │ ├── patch_tag_request_body.py │ │ │ ├── patch_tag_response.py │ │ │ ├── patch_tag_response_body.py │ │ │ ├── tag_i18n_name.py │ │ │ ├── tag_info.py │ │ │ ├── tag_info_with_bind_version.py │ │ │ ├── un_read_urgent_message.py │ │ │ ├── unread_at_message.py │ │ │ ├── update_app_feed_card_batch_request.py │ │ │ ├── update_app_feed_card_batch_request_body.py │ │ │ ├── update_app_feed_card_batch_response.py │ │ │ ├── update_app_feed_card_batch_response_body.py │ │ │ ├── update_biz_entity_tag_relation_request.py │ │ │ ├── update_biz_entity_tag_relation_request_body.py │ │ │ ├── update_biz_entity_tag_relation_response.py │ │ │ ├── update_biz_entity_tag_relation_response_body.py │ │ │ ├── update_chat_button_request.py │ │ │ ├── update_chat_button_request_body.py │ │ │ ├── update_chat_button_response.py │ │ │ ├── update_chat_button_response_body.py │ │ │ ├── update_chat_pin.py │ │ │ ├── update_url_pin.py │ │ │ ├── urgent_common_header.py │ │ │ ├── url_pin.py │ │ │ ├── user_open_app_feed_card_deleter.py │ │ │ └── user_open_app_feed_card_updater.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ ├── app_feed_card.py │ │ │ ├── app_feed_card_batch.py │ │ │ ├── biz_entity_tag_relation.py │ │ │ ├── chat_button.py │ │ │ ├── feed_card.py │ │ │ ├── tag.py │ │ │ └── url_preview.py │ │ │ └── version.py │ ├── lingo │ │ ├── __init__.py │ │ ├── service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── abbreviation.py │ │ │ ├── aigc_config.py │ │ │ ├── baike_image.py │ │ │ ├── classification.py │ │ │ ├── classification_filter.py │ │ │ ├── correct_error.py │ │ │ ├── correct_info.py │ │ │ ├── correct_pair.py │ │ │ ├── create_draft_request.py │ │ │ ├── create_draft_response.py │ │ │ ├── create_draft_response_body.py │ │ │ ├── create_entity_request.py │ │ │ ├── create_entity_response.py │ │ │ ├── create_entity_response_body.py │ │ │ ├── delete_entity_request.py │ │ │ ├── delete_entity_request_body.py │ │ │ ├── delete_entity_response.py │ │ │ ├── delete_entity_response_body.py │ │ │ ├── department_id.py │ │ │ ├── display_status.py │ │ │ ├── doc_bullet.py │ │ │ ├── doc_code.py │ │ │ ├── doc_container.py │ │ │ ├── doc_content.py │ │ │ ├── doc_data.py │ │ │ ├── doc_divider.py │ │ │ ├── doc_heading.py │ │ │ ├── doc_image.py │ │ │ ├── doc_link.py │ │ │ ├── doc_rodered.py │ │ │ ├── doc_text.py │ │ │ ├── doc_user.py │ │ │ ├── download_file_request.py │ │ │ ├── download_file_request_body.py │ │ │ ├── download_file_response.py │ │ │ ├── download_file_response_body.py │ │ │ ├── draft.py │ │ │ ├── entity.py │ │ │ ├── entity_card_data.py │ │ │ ├── entity_word.py │ │ │ ├── extract_entity_request.py │ │ │ ├── extract_entity_request_body.py │ │ │ ├── extract_entity_response.py │ │ │ ├── extract_entity_response_body.py │ │ │ ├── file.py │ │ │ ├── get_entity_request.py │ │ │ ├── get_entity_request_body.py │ │ │ ├── get_entity_response.py │ │ │ ├── get_entity_response_body.py │ │ │ ├── highlight_entity_request.py │ │ │ ├── highlight_entity_request_body.py │ │ │ ├── highlight_entity_response.py │ │ │ ├── highlight_entity_response_body.py │ │ │ ├── i18n_cls_name.py │ │ │ ├── i18n_entry_desc.py │ │ │ ├── list_classification_request.py │ │ │ ├── list_classification_request_body.py │ │ │ ├── list_classification_response.py │ │ │ ├── list_classification_response_body.py │ │ │ ├── list_entity_request.py │ │ │ ├── list_entity_request_body.py │ │ │ ├── list_entity_response.py │ │ │ ├── list_entity_response_body.py │ │ │ ├── list_repo_request.py │ │ │ ├── list_repo_request_body.py │ │ │ ├── list_repo_response.py │ │ │ ├── list_repo_response_body.py │ │ │ ├── match_entity_request.py │ │ │ ├── match_entity_request_body.py │ │ │ ├── match_entity_response.py │ │ │ ├── match_entity_response_body.py │ │ │ ├── match_info.py │ │ │ ├── outer_info.py │ │ │ ├── phrase.py │ │ │ ├── referer.py │ │ │ ├── related_meta.py │ │ │ ├── repo.py │ │ │ ├── search_entity_request.py │ │ │ ├── search_entity_request_body.py │ │ │ ├── search_entity_response.py │ │ │ ├── search_entity_response_body.py │ │ │ ├── span.py │ │ │ ├── statistical_report.py │ │ │ ├── statistics.py │ │ │ ├── term.py │ │ │ ├── update_draft_request.py │ │ │ ├── update_draft_response.py │ │ │ ├── update_draft_response_body.py │ │ │ ├── update_entity_request.py │ │ │ ├── update_entity_response.py │ │ │ ├── update_entity_response_body.py │ │ │ ├── upload_file_request.py │ │ │ ├── upload_file_response.py │ │ │ ├── upload_file_response_body.py │ │ │ └── word_info.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ ├── classification.py │ │ │ ├── draft.py │ │ │ ├── entity.py │ │ │ ├── file.py │ │ │ └── repo.py │ │ │ └── version.py │ ├── mail │ │ ├── __init__.py │ │ ├── service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── attachment.py │ │ │ ├── attachment_download_url_item.py │ │ │ ├── batch_create_mailgroup_manager_request.py │ │ │ ├── batch_create_mailgroup_manager_request_body.py │ │ │ ├── batch_create_mailgroup_manager_response.py │ │ │ ├── batch_create_mailgroup_manager_response_body.py │ │ │ ├── batch_create_mailgroup_member_request.py │ │ │ ├── batch_create_mailgroup_member_request_body.py │ │ │ ├── batch_create_mailgroup_member_response.py │ │ │ ├── batch_create_mailgroup_member_response_body.py │ │ │ ├── batch_create_mailgroup_permission_member_request.py │ │ │ ├── batch_create_mailgroup_permission_member_request_body.py │ │ │ ├── batch_create_mailgroup_permission_member_response.py │ │ │ ├── batch_create_mailgroup_permission_member_response_body.py │ │ │ ├── batch_create_public_mailbox_member_request.py │ │ │ ├── batch_create_public_mailbox_member_request_body.py │ │ │ ├── batch_create_public_mailbox_member_response.py │ │ │ ├── batch_create_public_mailbox_member_response_body.py │ │ │ ├── batch_delete_mailgroup_manager_request.py │ │ │ ├── batch_delete_mailgroup_manager_request_body.py │ │ │ ├── batch_delete_mailgroup_manager_response.py │ │ │ ├── batch_delete_mailgroup_manager_response_body.py │ │ │ ├── batch_delete_mailgroup_member_request.py │ │ │ ├── batch_delete_mailgroup_member_request_body.py │ │ │ ├── batch_delete_mailgroup_member_response.py │ │ │ ├── batch_delete_mailgroup_member_response_body.py │ │ │ ├── batch_delete_mailgroup_permission_member_request.py │ │ │ ├── batch_delete_mailgroup_permission_member_request_body.py │ │ │ ├── batch_delete_mailgroup_permission_member_response.py │ │ │ ├── batch_delete_mailgroup_permission_member_response_body.py │ │ │ ├── batch_delete_public_mailbox_member_request.py │ │ │ ├── batch_delete_public_mailbox_member_request_body.py │ │ │ ├── batch_delete_public_mailbox_member_response.py │ │ │ ├── batch_delete_public_mailbox_member_response_body.py │ │ │ ├── clear_public_mailbox_member_request.py │ │ │ ├── clear_public_mailbox_member_request_body.py │ │ │ ├── clear_public_mailbox_member_response.py │ │ │ ├── clear_public_mailbox_member_response_body.py │ │ │ ├── create_mailgroup_alias_request.py │ │ │ ├── create_mailgroup_alias_response.py │ │ │ ├── create_mailgroup_alias_response_body.py │ │ │ ├── create_mailgroup_member_request.py │ │ │ ├── create_mailgroup_member_response.py │ │ │ ├── create_mailgroup_member_response_body.py │ │ │ ├── create_mailgroup_permission_member_request.py │ │ │ ├── create_mailgroup_permission_member_response.py │ │ │ ├── create_mailgroup_permission_member_response_body.py │ │ │ ├── create_mailgroup_request.py │ │ │ ├── create_mailgroup_response.py │ │ │ ├── create_mailgroup_response_body.py │ │ │ ├── create_public_mailbox_alias_request.py │ │ │ ├── create_public_mailbox_alias_response.py │ │ │ ├── create_public_mailbox_alias_response_body.py │ │ │ ├── create_public_mailbox_member_request.py │ │ │ ├── create_public_mailbox_member_response.py │ │ │ ├── create_public_mailbox_member_response_body.py │ │ │ ├── create_public_mailbox_request.py │ │ │ ├── create_public_mailbox_response.py │ │ │ ├── create_public_mailbox_response_body.py │ │ │ ├── create_user_mailbox_alias_request.py │ │ │ ├── create_user_mailbox_alias_response.py │ │ │ ├── create_user_mailbox_alias_response_body.py │ │ │ ├── create_user_mailbox_folder_request.py │ │ │ ├── create_user_mailbox_folder_response.py │ │ │ ├── create_user_mailbox_folder_response_body.py │ │ │ ├── create_user_mailbox_mail_contact_request.py │ │ │ ├── create_user_mailbox_mail_contact_response.py │ │ │ ├── create_user_mailbox_mail_contact_response_body.py │ │ │ ├── create_user_mailbox_rule_request.py │ │ │ ├── create_user_mailbox_rule_response.py │ │ │ ├── create_user_mailbox_rule_response_body.py │ │ │ ├── delete_mailgroup_alias_request.py │ │ │ ├── delete_mailgroup_alias_request_body.py │ │ │ ├── delete_mailgroup_alias_response.py │ │ │ ├── delete_mailgroup_alias_response_body.py │ │ │ ├── delete_mailgroup_member_request.py │ │ │ ├── delete_mailgroup_member_request_body.py │ │ │ ├── delete_mailgroup_member_response.py │ │ │ ├── delete_mailgroup_member_response_body.py │ │ │ ├── delete_mailgroup_permission_member_request.py │ │ │ ├── delete_mailgroup_permission_member_request_body.py │ │ │ ├── delete_mailgroup_permission_member_response.py │ │ │ ├── delete_mailgroup_permission_member_response_body.py │ │ │ ├── delete_mailgroup_request.py │ │ │ ├── delete_mailgroup_request_body.py │ │ │ ├── delete_mailgroup_response.py │ │ │ ├── delete_mailgroup_response_body.py │ │ │ ├── delete_public_mailbox_alias_request.py │ │ │ ├── delete_public_mailbox_alias_request_body.py │ │ │ ├── delete_public_mailbox_alias_response.py │ │ │ ├── delete_public_mailbox_alias_response_body.py │ │ │ ├── delete_public_mailbox_member_request.py │ │ │ ├── delete_public_mailbox_member_request_body.py │ │ │ ├── delete_public_mailbox_member_response.py │ │ │ ├── delete_public_mailbox_member_response_body.py │ │ │ ├── delete_public_mailbox_request.py │ │ │ ├── delete_public_mailbox_request_body.py │ │ │ ├── delete_public_mailbox_response.py │ │ │ ├── delete_public_mailbox_response_body.py │ │ │ ├── delete_user_mailbox_alias_request.py │ │ │ ├── delete_user_mailbox_alias_request_body.py │ │ │ ├── delete_user_mailbox_alias_response.py │ │ │ ├── delete_user_mailbox_alias_response_body.py │ │ │ ├── delete_user_mailbox_folder_request.py │ │ │ ├── delete_user_mailbox_folder_response.py │ │ │ ├── delete_user_mailbox_mail_contact_request.py │ │ │ ├── delete_user_mailbox_mail_contact_response.py │ │ │ ├── delete_user_mailbox_request.py │ │ │ ├── delete_user_mailbox_request_body.py │ │ │ ├── delete_user_mailbox_response.py │ │ │ ├── delete_user_mailbox_response_body.py │ │ │ ├── delete_user_mailbox_rule_request.py │ │ │ ├── delete_user_mailbox_rule_response.py │ │ │ ├── department_id.py │ │ │ ├── domain_incremental_switch.py │ │ │ ├── download_url_user_mailbox_message_attachment_request.py │ │ │ ├── download_url_user_mailbox_message_attachment_response.py │ │ │ ├── download_url_user_mailbox_message_attachment_response_body.py │ │ │ ├── email_alias.py │ │ │ ├── enterprise_email_change_event.py │ │ │ ├── event_log.py │ │ │ ├── file_meta_info.py │ │ │ ├── folder.py │ │ │ ├── get_by_card_user_mailbox_message_request.py │ │ │ ├── get_by_card_user_mailbox_message_response.py │ │ │ ├── get_by_card_user_mailbox_message_response_body.py │ │ │ ├── get_mailgroup_member_request.py │ │ │ ├── get_mailgroup_member_request_body.py │ │ │ ├── get_mailgroup_member_response.py │ │ │ ├── get_mailgroup_member_response_body.py │ │ │ ├── get_mailgroup_permission_member_request.py │ │ │ ├── get_mailgroup_permission_member_request_body.py │ │ │ ├── get_mailgroup_permission_member_response.py │ │ │ ├── get_mailgroup_permission_member_response_body.py │ │ │ ├── get_mailgroup_request.py │ │ │ ├── get_mailgroup_request_body.py │ │ │ ├── get_mailgroup_response.py │ │ │ ├── get_mailgroup_response_body.py │ │ │ ├── get_public_mailbox_member_request.py │ │ │ ├── get_public_mailbox_member_request_body.py │ │ │ ├── get_public_mailbox_member_response.py │ │ │ ├── get_public_mailbox_member_response_body.py │ │ │ ├── get_public_mailbox_request.py │ │ │ ├── get_public_mailbox_request_body.py │ │ │ ├── get_public_mailbox_response.py │ │ │ ├── get_public_mailbox_response_body.py │ │ │ ├── get_user_mailbox_message_request.py │ │ │ ├── get_user_mailbox_message_response.py │ │ │ ├── get_user_mailbox_message_response_body.py │ │ │ ├── incremental_switch_entity.py │ │ │ ├── list_mailgroup_alias_request.py │ │ │ ├── list_mailgroup_alias_request_body.py │ │ │ ├── list_mailgroup_alias_response.py │ │ │ ├── list_mailgroup_alias_response_body.py │ │ │ ├── list_mailgroup_manager_request.py │ │ │ ├── list_mailgroup_manager_request_body.py │ │ │ ├── list_mailgroup_manager_response.py │ │ │ ├── list_mailgroup_manager_response_body.py │ │ │ ├── list_mailgroup_member_request.py │ │ │ ├── list_mailgroup_member_request_body.py │ │ │ ├── list_mailgroup_member_response.py │ │ │ ├── list_mailgroup_member_response_body.py │ │ │ ├── list_mailgroup_permission_member_request.py │ │ │ ├── list_mailgroup_permission_member_request_body.py │ │ │ ├── list_mailgroup_permission_member_response.py │ │ │ ├── list_mailgroup_permission_member_response_body.py │ │ │ ├── list_mailgroup_request.py │ │ │ ├── list_mailgroup_request_body.py │ │ │ ├── list_mailgroup_response.py │ │ │ ├── list_mailgroup_response_body.py │ │ │ ├── list_public_mailbox_alias_request.py │ │ │ ├── list_public_mailbox_alias_request_body.py │ │ │ ├── list_public_mailbox_alias_response.py │ │ │ ├── list_public_mailbox_alias_response_body.py │ │ │ ├── list_public_mailbox_member_request.py │ │ │ ├── list_public_mailbox_member_request_body.py │ │ │ ├── list_public_mailbox_member_response.py │ │ │ ├── list_public_mailbox_member_response_body.py │ │ │ ├── list_public_mailbox_request.py │ │ │ ├── list_public_mailbox_request_body.py │ │ │ ├── list_public_mailbox_response.py │ │ │ ├── list_public_mailbox_response_body.py │ │ │ ├── list_user_mailbox_alias_request.py │ │ │ ├── list_user_mailbox_alias_request_body.py │ │ │ ├── list_user_mailbox_alias_response.py │ │ │ ├── list_user_mailbox_alias_response_body.py │ │ │ ├── list_user_mailbox_folder_request.py │ │ │ ├── list_user_mailbox_folder_response.py │ │ │ ├── list_user_mailbox_folder_response_body.py │ │ │ ├── list_user_mailbox_mail_contact_request.py │ │ │ ├── list_user_mailbox_mail_contact_response.py │ │ │ ├── list_user_mailbox_mail_contact_response_body.py │ │ │ ├── list_user_mailbox_message_request.py │ │ │ ├── list_user_mailbox_message_response.py │ │ │ ├── list_user_mailbox_message_response_body.py │ │ │ ├── list_user_mailbox_rule_request.py │ │ │ ├── list_user_mailbox_rule_response.py │ │ │ ├── list_user_mailbox_rule_response_body.py │ │ │ ├── mail_address.py │ │ │ ├── mail_contact.py │ │ │ ├── mail_flow_rule_info.py │ │ │ ├── mail_group_as_sender_permission_member.py │ │ │ ├── mail_log.py │ │ │ ├── mail_log_mail_info.py │ │ │ ├── mailgroup.py │ │ │ ├── mailgroup_manager.py │ │ │ ├── mailgroup_member.py │ │ │ ├── mailgroup_permission_member.py │ │ │ ├── message.py │ │ │ ├── message_meta.py │ │ │ ├── p2_mail_user_mailbox_event_message_received_v1.py │ │ │ ├── patch_mailgroup_request.py │ │ │ ├── patch_mailgroup_response.py │ │ │ ├── patch_mailgroup_response_body.py │ │ │ ├── patch_public_mailbox_request.py │ │ │ ├── patch_public_mailbox_response.py │ │ │ ├── patch_public_mailbox_response_body.py │ │ │ ├── patch_user_mailbox_folder_request.py │ │ │ ├── patch_user_mailbox_folder_response.py │ │ │ ├── patch_user_mailbox_mail_contact_request.py │ │ │ ├── patch_user_mailbox_mail_contact_response.py │ │ │ ├── public_mailbox.py │ │ │ ├── public_mailbox_member.py │ │ │ ├── query_user_request.py │ │ │ ├── query_user_request_body.py │ │ │ ├── query_user_response.py │ │ │ ├── query_user_response_body.py │ │ │ ├── remove_to_recycle_bin_public_mailbox_request.py │ │ │ ├── remove_to_recycle_bin_public_mailbox_request_body.py │ │ │ ├── remove_to_recycle_bin_public_mailbox_response.py │ │ │ ├── reorder_user_mailbox_rule_request.py │ │ │ ├── reorder_user_mailbox_rule_request_body.py │ │ │ ├── reorder_user_mailbox_rule_response.py │ │ │ ├── rule.py │ │ │ ├── rule_action.py │ │ │ ├── rule_action_item.py │ │ │ ├── rule_condition.py │ │ │ ├── rule_condition_item.py │ │ │ ├── send_user_mailbox_message_request.py │ │ │ ├── send_user_mailbox_message_request_body.py │ │ │ ├── send_user_mailbox_message_response.py │ │ │ ├── send_user_mailbox_message_response_body.py │ │ │ ├── subscribe_user_mailbox_event_request.py │ │ │ ├── subscribe_user_mailbox_event_request_body.py │ │ │ ├── subscribe_user_mailbox_event_response.py │ │ │ ├── subscriber.py │ │ │ ├── subscription_user_mailbox_event_request.py │ │ │ ├── subscription_user_mailbox_event_response.py │ │ │ ├── subscription_user_mailbox_event_response_body.py │ │ │ ├── unsubscribe_user_mailbox_event_request.py │ │ │ ├── unsubscribe_user_mailbox_event_request_body.py │ │ │ ├── unsubscribe_user_mailbox_event_response.py │ │ │ ├── update_mailgroup_request.py │ │ │ ├── update_mailgroup_response.py │ │ │ ├── update_mailgroup_response_body.py │ │ │ ├── update_public_mailbox_request.py │ │ │ ├── update_public_mailbox_response.py │ │ │ ├── update_public_mailbox_response_body.py │ │ │ ├── update_user_mailbox_rule_request.py │ │ │ ├── update_user_mailbox_rule_response.py │ │ │ ├── user.py │ │ │ ├── user_id.py │ │ │ ├── user_info.py │ │ │ └── user_mail_entity.py │ │ │ ├── processor.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ ├── mailgroup.py │ │ │ ├── mailgroup_alias.py │ │ │ ├── mailgroup_manager.py │ │ │ ├── mailgroup_member.py │ │ │ ├── mailgroup_permission_member.py │ │ │ ├── public_mailbox.py │ │ │ ├── public_mailbox_alias.py │ │ │ ├── public_mailbox_member.py │ │ │ ├── user.py │ │ │ ├── user_mailbox.py │ │ │ ├── user_mailbox_alias.py │ │ │ ├── user_mailbox_event.py │ │ │ ├── user_mailbox_folder.py │ │ │ ├── user_mailbox_mail_contact.py │ │ │ ├── user_mailbox_message.py │ │ │ ├── user_mailbox_message_attachment.py │ │ │ └── user_mailbox_rule.py │ │ │ └── version.py │ ├── mdm │ │ ├── __init__.py │ │ ├── service.py │ │ ├── v1 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ │ ├── __init__.py │ │ │ │ ├── appendix.py │ │ │ │ ├── bind_user_auth_data_relation_request.py │ │ │ │ ├── bind_user_auth_data_relation_response.py │ │ │ │ ├── bind_user_auth_data_relation_response_body.py │ │ │ │ ├── company.py │ │ │ │ ├── company_asset.py │ │ │ │ ├── company_company_bank_account.py │ │ │ │ ├── config.py │ │ │ │ ├── cost_center.py │ │ │ │ ├── department_cost_center_relationship.py │ │ │ │ ├── department_id.py │ │ │ │ ├── extend_field.py │ │ │ │ ├── fixed_exchange_rate.py │ │ │ │ ├── gl_account.py │ │ │ │ ├── gl_account_company_relationship.py │ │ │ │ ├── i18n_struct.py │ │ │ │ ├── internal_order.py │ │ │ │ ├── legal_entity.py │ │ │ │ ├── legal_entity_bank.py │ │ │ │ ├── multi_language.py │ │ │ │ ├── open_api_update_vendor.py │ │ │ │ ├── project.py │ │ │ │ ├── project_company_dept_mapping.py │ │ │ │ ├── unbind_user_auth_data_relation_request.py │ │ │ │ ├── unbind_user_auth_data_relation_response.py │ │ │ │ ├── unbind_user_auth_data_relation_response_body.py │ │ │ │ ├── user_auth_data_relation.py │ │ │ │ ├── vendor.py │ │ │ │ ├── vendor_account.py │ │ │ │ ├── vendor_address.py │ │ │ │ ├── vendor_company_view.py │ │ │ │ └── vendor_contact.py │ │ │ ├── resource │ │ │ │ ├── __init__.py │ │ │ │ └── user_auth_data_relation.py │ │ │ └── version.py │ │ └── v3 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── country_region.py │ │ │ ├── department_id.py │ │ │ ├── enum.py │ │ │ ├── expression.py │ │ │ ├── filter.py │ │ │ ├── get_batch_country_region_request.py │ │ │ ├── get_batch_country_region_request_body.py │ │ │ ├── get_batch_country_region_response.py │ │ │ ├── get_batch_country_region_response_body.py │ │ │ ├── i18n_string.py │ │ │ ├── language.py │ │ │ ├── list_country_region_request.py │ │ │ ├── list_country_region_request_body.py │ │ │ ├── list_country_region_response.py │ │ │ ├── list_country_region_response_body.py │ │ │ ├── major.py │ │ │ ├── sort.py │ │ │ ├── time_zone.py │ │ │ └── value.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ ├── batch_country_region.py │ │ │ └── country_region.py │ │ │ └── version.py │ ├── meeting_room │ │ ├── __init__.py │ │ ├── service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── department_id.py │ │ │ ├── event_info.py │ │ │ ├── event_time.py │ │ │ ├── event_uid.py │ │ │ ├── event_uids.py │ │ │ ├── meeting_room.py │ │ │ ├── p2_meeting_room_meeting_room_created_v1.py │ │ │ ├── p2_meeting_room_meeting_room_deleted_v1.py │ │ │ ├── p2_meeting_room_meeting_room_status_changed_v1.py │ │ │ ├── p2_meeting_room_meeting_room_updated_v1.py │ │ │ ├── user_info.py │ │ │ └── vchat.py │ │ │ ├── processor.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ └── meeting_room.py │ │ │ └── version.py │ ├── minutes │ │ ├── __init__.py │ │ ├── service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── department_id.py │ │ │ ├── get_minute_media_request.py │ │ │ ├── get_minute_media_request_body.py │ │ │ ├── get_minute_media_response.py │ │ │ ├── get_minute_media_response_body.py │ │ │ ├── get_minute_request.py │ │ │ ├── get_minute_request_body.py │ │ │ ├── get_minute_response.py │ │ │ ├── get_minute_response_body.py │ │ │ ├── get_minute_statistics_request.py │ │ │ ├── get_minute_statistics_request_body.py │ │ │ ├── get_minute_statistics_response.py │ │ │ ├── get_minute_statistics_response_body.py │ │ │ ├── get_minute_transcript_request.py │ │ │ ├── get_minute_transcript_request_body.py │ │ │ ├── get_minute_transcript_response.py │ │ │ ├── get_minute_transcript_response_body.py │ │ │ ├── minute.py │ │ │ ├── statictics.py │ │ │ └── user_view_detail.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ ├── minute.py │ │ │ ├── minute_media.py │ │ │ ├── minute_statistics.py │ │ │ └── minute_transcript.py │ │ │ └── version.py │ ├── moments │ │ ├── __init__.py │ │ ├── service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── category.py │ │ │ ├── comment.py │ │ │ ├── department_id.py │ │ │ ├── dislike.py │ │ │ ├── get_post_request.py │ │ │ ├── get_post_request_body.py │ │ │ ├── get_post_response.py │ │ │ ├── get_post_response_body.py │ │ │ ├── p2_moments_comment_created_v1.py │ │ │ ├── p2_moments_comment_deleted_v1.py │ │ │ ├── p2_moments_dislike_created_v1.py │ │ │ ├── p2_moments_dislike_deleted_v1.py │ │ │ ├── p2_moments_post_created_v1.py │ │ │ ├── p2_moments_post_deleted_v1.py │ │ │ ├── p2_moments_post_statistics_updated_v1.py │ │ │ ├── p2_moments_reaction_created_v1.py │ │ │ ├── p2_moments_reaction_deleted_v1.py │ │ │ ├── post.py │ │ │ ├── post_statistics.py │ │ │ ├── reaction.py │ │ │ ├── reaction_list.py │ │ │ ├── reaction_set.py │ │ │ └── user_id.py │ │ │ ├── processor.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ ├── comment.py │ │ │ ├── dislike.py │ │ │ ├── post.py │ │ │ ├── post_statistics.py │ │ │ └── reaction.py │ │ │ └── version.py │ ├── okr │ │ ├── __init__.py │ │ ├── service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── align_objective.py │ │ │ ├── batch_get_okr_request.py │ │ │ ├── batch_get_okr_request_body.py │ │ │ ├── batch_get_okr_response.py │ │ │ ├── batch_get_okr_response_body.py │ │ │ ├── batch_update_metric_source_table_item_request.py │ │ │ ├── batch_update_metric_source_table_item_request_body.py │ │ │ ├── batch_update_metric_source_table_item_response.py │ │ │ ├── batch_update_metric_source_table_item_response_body.py │ │ │ ├── content_block.py │ │ │ ├── content_block_element.py │ │ │ ├── content_color.py │ │ │ ├── content_docs_link.py │ │ │ ├── content_gallery.py │ │ │ ├── content_image_item.py │ │ │ ├── content_link.py │ │ │ ├── content_list.py │ │ │ ├── content_paragraph.py │ │ │ ├── content_paragraph_element.py │ │ │ ├── content_paragraph_style.py │ │ │ ├── content_person.py │ │ │ ├── content_text_run.py │ │ │ ├── content_text_style.py │ │ │ ├── create_period_request.py │ │ │ ├── create_period_request_body.py │ │ │ ├── create_period_response.py │ │ │ ├── create_period_response_body.py │ │ │ ├── create_progress_record_request.py │ │ │ ├── create_progress_record_request_body.py │ │ │ ├── create_progress_record_response.py │ │ │ ├── create_progress_record_response_body.py │ │ │ ├── current_okr_simple.py │ │ │ ├── delete_progress_record_request.py │ │ │ ├── delete_progress_record_request_body.py │ │ │ ├── delete_progress_record_response.py │ │ │ ├── delete_progress_record_response_body.py │ │ │ ├── department_id.py │ │ │ ├── dummy.py │ │ │ ├── failed_metric_item.py │ │ │ ├── get_metric_source_table_item_request.py │ │ │ ├── get_metric_source_table_item_response.py │ │ │ ├── get_metric_source_table_item_response_body.py │ │ │ ├── get_progress_record_request.py │ │ │ ├── get_progress_record_request_body.py │ │ │ ├── get_progress_record_response.py │ │ │ ├── get_progress_record_response_body.py │ │ │ ├── image_info.py │ │ │ ├── kr.py │ │ │ ├── kr_content.py │ │ │ ├── list_metric_source_request.py │ │ │ ├── list_metric_source_response.py │ │ │ ├── list_metric_source_response_body.py │ │ │ ├── list_metric_source_table_item_request.py │ │ │ ├── list_metric_source_table_item_response.py │ │ │ ├── list_metric_source_table_item_response_body.py │ │ │ ├── list_metric_source_table_request.py │ │ │ ├── list_metric_source_table_response.py │ │ │ ├── list_metric_source_table_response_body.py │ │ │ ├── list_period_request.py │ │ │ ├── list_period_request_body.py │ │ │ ├── list_period_response.py │ │ │ ├── list_period_response_body.py │ │ │ ├── list_period_rule_request.py │ │ │ ├── list_period_rule_request_body.py │ │ │ ├── list_period_rule_response.py │ │ │ ├── list_period_rule_response_body.py │ │ │ ├── list_user_okr_request.py │ │ │ ├── list_user_okr_request_body.py │ │ │ ├── list_user_okr_response.py │ │ │ ├── list_user_okr_response_body.py │ │ │ ├── metric_item.py │ │ │ ├── metric_item_request.py │ │ │ ├── metric_source.py │ │ │ ├── metric_table.py │ │ │ ├── metric_unit.py │ │ │ ├── objective.py │ │ │ ├── objective_name.py │ │ │ ├── objective_progress.py │ │ │ ├── okr.py │ │ │ ├── okr_batch.py │ │ │ ├── okr_comment.py │ │ │ ├── okr_detail.py │ │ │ ├── okr_detail_objective.py │ │ │ ├── okr_detail_objective_align.py │ │ │ ├── okr_detail_objective_kr.py │ │ │ ├── okr_list_info.py │ │ │ ├── okr_name.py │ │ │ ├── okr_objective.py │ │ │ ├── okr_objective_aligned_objective.py │ │ │ ├── okr_objective_aligned_objective_owner.py │ │ │ ├── okr_objective_alignment.py │ │ │ ├── okr_objective_kr.py │ │ │ ├── okr_objective_progress_rate.py │ │ │ ├── okr_review.py │ │ │ ├── okr_review_period.py │ │ │ ├── okr_review_period_url.py │ │ │ ├── okr_simple.py │ │ │ ├── patch_metric_source_table_item_request.py │ │ │ ├── patch_metric_source_table_item_request_body.py │ │ │ ├── patch_metric_source_table_item_response.py │ │ │ ├── patch_metric_source_table_item_response_body.py │ │ │ ├── patch_period_request.py │ │ │ ├── patch_period_request_body.py │ │ │ ├── patch_period_response.py │ │ │ ├── patch_period_response_body.py │ │ │ ├── period.py │ │ │ ├── period_rule.py │ │ │ ├── progress_item.py │ │ │ ├── progress_rate.py │ │ │ ├── progress_rate_new.py │ │ │ ├── progress_record.py │ │ │ ├── progress_record_simplify.py │ │ │ ├── query_review_request.py │ │ │ ├── query_review_request_body.py │ │ │ ├── query_review_response.py │ │ │ ├── query_review_response_body.py │ │ │ ├── task_info.py │ │ │ ├── update_progress_record_request.py │ │ │ ├── update_progress_record_request_body.py │ │ │ ├── update_progress_record_response.py │ │ │ ├── update_progress_record_response_body.py │ │ │ ├── upload_image_request.py │ │ │ ├── upload_image_request_body.py │ │ │ ├── upload_image_response.py │ │ │ ├── upload_image_response_body.py │ │ │ ├── upsert_objective.py │ │ │ ├── upsert_objective_kr.py │ │ │ ├── user.py │ │ │ ├── user_okr.py │ │ │ ├── user_okr_objective.py │ │ │ ├── user_okr_objective_aligned_objective.py │ │ │ ├── user_okr_objective_aligned_objective_owner.py │ │ │ ├── user_okr_objective_kr.py │ │ │ └── user_okr_objective_progress_rate.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ ├── image.py │ │ │ ├── metric_source.py │ │ │ ├── metric_source_table.py │ │ │ ├── metric_source_table_item.py │ │ │ ├── okr.py │ │ │ ├── period.py │ │ │ ├── period_rule.py │ │ │ ├── progress_record.py │ │ │ ├── review.py │ │ │ └── user_okr.py │ │ │ └── version.py │ ├── optical_char_recognition │ │ ├── __init__.py │ │ ├── service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── basic_recognize_image_request.py │ │ │ ├── basic_recognize_image_request_body.py │ │ │ ├── basic_recognize_image_response.py │ │ │ ├── basic_recognize_image_response_body.py │ │ │ ├── department_id.py │ │ │ └── image.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ └── image.py │ │ │ └── version.py │ ├── passport │ │ ├── __init__.py │ │ ├── service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── credentials.py │ │ │ ├── department_id.py │ │ │ ├── device.py │ │ │ ├── idp_credential.py │ │ │ ├── idp_credential_id.py │ │ │ ├── logout_session_request.py │ │ │ ├── logout_session_request_body.py │ │ │ ├── logout_session_response.py │ │ │ ├── logout_session_response_body.py │ │ │ ├── mask_session.py │ │ │ ├── query_session_request.py │ │ │ ├── query_session_request_body.py │ │ │ ├── query_session_response.py │ │ │ └── query_session_response_body.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ └── session.py │ │ │ └── version.py │ ├── payroll │ │ ├── __init__.py │ │ ├── service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── accounting_item_value.py │ │ │ ├── acct_item.py │ │ │ ├── archive_payment_activity_request.py │ │ │ ├── archive_payment_activity_request_body.py │ │ │ ├── archive_payment_activity_response.py │ │ │ ├── calculation_activity.py │ │ │ ├── calendar.py │ │ │ ├── calendar_fail_item.py │ │ │ ├── calendar_period.py │ │ │ ├── calendar_success_item.py │ │ │ ├── collection_activity_data_with_details.py │ │ │ ├── collection_data.py │ │ │ ├── collection_data_period.py │ │ │ ├── collection_detail.py │ │ │ ├── collection_employee_data.py │ │ │ ├── collection_item.py │ │ │ ├── collection_item_value.py │ │ │ ├── collection_template.py │ │ │ ├── collection_template_snapshot.py │ │ │ ├── compensation_cost.py │ │ │ ├── compensation_cost_item.py │ │ │ ├── cost_allocation_plan.py │ │ │ ├── cost_allocation_report_data.py │ │ │ ├── cost_correct_detail.py │ │ │ ├── cost_item.py │ │ │ ├── cost_item_value.py │ │ │ ├── country_region.py │ │ │ ├── data_summary_dimension.py │ │ │ ├── datasource.py │ │ │ ├── datasource_field.py │ │ │ ├── datasource_record.py │ │ │ ├── datasource_record_field.py │ │ │ ├── datasource_record_field_filter.py │ │ │ ├── department_id.py │ │ │ ├── dimension.py │ │ │ ├── dimension_value.py │ │ │ ├── dimension_value_lookup_info.py │ │ │ ├── dmp_change_event.py │ │ │ ├── dmp_field.py │ │ │ ├── dmp_original_data.py │ │ │ ├── dmp_timeline_field.py │ │ │ ├── donations_tax_data.py │ │ │ ├── employee_info.py │ │ │ ├── enum_object.py │ │ │ ├── fail_info.py │ │ │ ├── i18n.py │ │ │ ├── i18n_content.py │ │ │ ├── id_with_name.py │ │ │ ├── int_range.py │ │ │ ├── list_acct_item_request.py │ │ │ ├── list_acct_item_response.py │ │ │ ├── list_acct_item_response_body.py │ │ │ ├── list_cost_allocation_detail_request.py │ │ │ ├── list_cost_allocation_detail_response.py │ │ │ ├── list_cost_allocation_detail_response_body.py │ │ │ ├── list_cost_allocation_plan_request.py │ │ │ ├── list_cost_allocation_plan_response.py │ │ │ ├── list_cost_allocation_plan_response_body.py │ │ │ ├── list_cost_allocation_report_request.py │ │ │ ├── list_cost_allocation_report_response.py │ │ │ ├── list_cost_allocation_report_response_body.py │ │ │ ├── list_datasource_request.py │ │ │ ├── list_datasource_response.py │ │ │ ├── list_datasource_response_body.py │ │ │ ├── list_paygroup_request.py │ │ │ ├── list_paygroup_response.py │ │ │ ├── list_paygroup_response_body.py │ │ │ ├── list_payment_activity_detail_request.py │ │ │ ├── list_payment_activity_detail_response.py │ │ │ ├── list_payment_activity_detail_response_body.py │ │ │ ├── list_payment_activity_request.py │ │ │ ├── list_payment_activity_response.py │ │ │ ├── list_payment_activity_response_body.py │ │ │ ├── p2_payroll_payment_activity_approved_v1.py │ │ │ ├── p2_payroll_payment_activity_status_changed_v1.py │ │ │ ├── pay_group.py │ │ │ ├── paygroup.py │ │ │ ├── payment_accounting_item.py │ │ │ ├── payment_activity.py │ │ │ ├── payment_activity_detail.py │ │ │ ├── payment_detail.py │ │ │ ├── query_datasource_record_request.py │ │ │ ├── query_datasource_record_request_body.py │ │ │ ├── query_datasource_record_response.py │ │ │ ├── query_datasource_record_response_body.py │ │ │ ├── query_payment_detail_request.py │ │ │ ├── query_payment_detail_request_body.py │ │ │ ├── query_payment_detail_response.py │ │ │ ├── query_payment_detail_response_body.py │ │ │ ├── save_datasource_record_request.py │ │ │ ├── save_datasource_record_request_body.py │ │ │ ├── save_datasource_record_response.py │ │ │ ├── save_datasource_record_response_body.py │ │ │ ├── segment_value.py │ │ │ ├── verif_act_item_value.py │ │ │ ├── verif_act_proration.py │ │ │ ├── verif_data_source_rule.py │ │ │ ├── verif_datasource_config.py │ │ │ ├── verif_datasource_item.py │ │ │ ├── verif_field_source_config.py │ │ │ ├── verif_filter_condition.py │ │ │ ├── verif_filter_rule.py │ │ │ ├── verif_filter_value.py │ │ │ ├── verif_item.py │ │ │ ├── verif_pay_calendar.py │ │ │ ├── verif_plan_snapshot.py │ │ │ ├── verif_source_config.py │ │ │ ├── verification_activity.py │ │ │ ├── verification_activity_row.py │ │ │ └── verification_plan.py │ │ │ ├── processor.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ ├── acct_item.py │ │ │ ├── cost_allocation_detail.py │ │ │ ├── cost_allocation_plan.py │ │ │ ├── cost_allocation_report.py │ │ │ ├── datasource.py │ │ │ ├── datasource_record.py │ │ │ ├── paygroup.py │ │ │ ├── payment_activity.py │ │ │ ├── payment_activity_detail.py │ │ │ └── payment_detail.py │ │ │ └── version.py │ ├── performance │ │ ├── __init__.py │ │ ├── service.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── activity.py │ │ │ ├── additional_information.py │ │ │ ├── cooperation_project.py │ │ │ ├── cooperation_role.py │ │ │ ├── cooperation_user_role.py │ │ │ ├── custom_metric_config.py │ │ │ ├── default_invitation.py │ │ │ ├── delete_additional_informations_batch_request.py │ │ │ ├── delete_additional_informations_batch_request_body.py │ │ │ ├── delete_additional_informations_batch_response.py │ │ │ ├── delete_additional_informations_batch_response_body.py │ │ │ ├── department.py │ │ │ ├── department_id.py │ │ │ ├── direct_project_leader_record_info.py │ │ │ ├── evaluation_scale.py │ │ │ ├── field.py │ │ │ ├── formula.py │ │ │ ├── i18n.py │ │ │ ├── import_additional_information_request.py │ │ │ ├── import_additional_information_request_body.py │ │ │ ├── import_additional_information_response.py │ │ │ ├── import_additional_information_response_body.py │ │ │ ├── import_metric_detail_request.py │ │ │ ├── import_metric_detail_request_body.py │ │ │ ├── import_metric_detail_response.py │ │ │ ├── import_metric_detail_response_body.py │ │ │ ├── imported_metric.py │ │ │ ├── imported_metric_field.py │ │ │ ├── indicator.py │ │ │ ├── indicator_option.py │ │ │ ├── invitation.py │ │ │ ├── invitation_relation.py │ │ │ ├── invitation_reviewer.py │ │ │ ├── invited_review_record_info.py │ │ │ ├── job_family.py │ │ │ ├── job_level.py │ │ │ ├── keyresult_data.py │ │ │ ├── list_metric_tag_request.py │ │ │ ├── list_metric_tag_response.py │ │ │ ├── list_metric_tag_response_body.py │ │ │ ├── metric_data.py │ │ │ ├── metric_detail.py │ │ │ ├── metric_dimension.py │ │ │ ├── metric_field.py │ │ │ ├── metric_field_in_details.py │ │ │ ├── metric_field_in_library.py │ │ │ ├── metric_field_in_template.py │ │ │ ├── metric_group.py │ │ │ ├── metric_in_library.py │ │ │ ├── metric_in_template.py │ │ │ ├── metric_review_rule_config.py │ │ │ ├── metric_tag.py │ │ │ ├── metric_template.py │ │ │ ├── objective_data.py │ │ │ ├── okr.py │ │ │ ├── okr_objective.py │ │ │ ├── okr_objective_kr.py │ │ │ ├── okr_progress_rate.py │ │ │ ├── open_result.py │ │ │ ├── p2_performance_review_data_changed_v2.py │ │ │ ├── p2_performance_stage_task_open_result_v2.py │ │ │ ├── query_activity_request.py │ │ │ ├── query_activity_request_body.py │ │ │ ├── query_activity_response.py │ │ │ ├── query_activity_response_body.py │ │ │ ├── query_additional_information_request.py │ │ │ ├── query_additional_information_request_body.py │ │ │ ├── query_additional_information_response.py │ │ │ ├── query_additional_information_response_body.py │ │ │ ├── query_indicator_request.py │ │ │ ├── query_indicator_request_body.py │ │ │ ├── query_indicator_response.py │ │ │ ├── query_indicator_response_body.py │ │ │ ├── query_metric_detail_request.py │ │ │ ├── query_metric_detail_request_body.py │ │ │ ├── query_metric_detail_response.py │ │ │ ├── query_metric_detail_response_body.py │ │ │ ├── query_metric_field_request.py │ │ │ ├── query_metric_field_request_body.py │ │ │ ├── query_metric_field_response.py │ │ │ ├── query_metric_field_response_body.py │ │ │ ├── query_metric_lib_request.py │ │ │ ├── query_metric_lib_request_body.py │ │ │ ├── query_metric_lib_response.py │ │ │ ├── query_metric_lib_response_body.py │ │ │ ├── query_metric_template_request.py │ │ │ ├── query_metric_template_request_body.py │ │ │ ├── query_metric_template_response.py │ │ │ ├── query_metric_template_response_body.py │ │ │ ├── query_question_request.py │ │ │ ├── query_question_request_body.py │ │ │ ├── query_question_response.py │ │ │ ├── query_question_response_body.py │ │ │ ├── query_review_data_request.py │ │ │ ├── query_review_data_request_body.py │ │ │ ├── query_review_data_response.py │ │ │ ├── query_review_data_response_body.py │ │ │ ├── query_review_template_request.py │ │ │ ├── query_review_template_request_body.py │ │ │ ├── query_review_template_response.py │ │ │ ├── query_review_template_response_body.py │ │ │ ├── query_reviewee_request.py │ │ │ ├── query_reviewee_request_body.py │ │ │ ├── query_reviewee_response.py │ │ │ ├── query_reviewee_response_body.py │ │ │ ├── question.py │ │ │ ├── review_data_change.py │ │ │ ├── review_data_permission.py │ │ │ ├── review_data_permission_field.py │ │ │ ├── review_data_permission_stage.py │ │ │ ├── review_data_permission_unit.py │ │ │ ├── review_detail.py │ │ │ ├── review_profile.py │ │ │ ├── review_record.py │ │ │ ├── review_stage.py │ │ │ ├── review_template.py │ │ │ ├── review_unit.py │ │ │ ├── reviewee.py │ │ │ ├── reviewee_metric.py │ │ │ ├── reviewee_stage_status.py │ │ │ ├── reviewer_info.py │ │ │ ├── semester.py │ │ │ ├── semester_stage.py │ │ │ ├── stage_change.py │ │ │ ├── sub_indicator.py │ │ │ ├── tag_item.py │ │ │ ├── tag_text.py │ │ │ ├── template.py │ │ │ ├── template_stage.py │ │ │ ├── unit.py │ │ │ ├── user.py │ │ │ ├── user_evaluation_scale.py │ │ │ ├── user_id.py │ │ │ ├── user_info.py │ │ │ ├── user_okr.py │ │ │ ├── write_user_group_scope_data.py │ │ │ ├── write_user_group_scope_fail_user_data.py │ │ │ ├── write_user_group_user_rel_request.py │ │ │ ├── write_user_group_user_rel_request_body.py │ │ │ ├── write_user_group_user_rel_response.py │ │ │ └── write_user_group_user_rel_response_body.py │ │ │ ├── processor.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ ├── activity.py │ │ │ ├── additional_information.py │ │ │ ├── additional_informations_batch.py │ │ │ ├── indicator.py │ │ │ ├── metric_detail.py │ │ │ ├── metric_field.py │ │ │ ├── metric_lib.py │ │ │ ├── metric_tag.py │ │ │ ├── metric_template.py │ │ │ ├── question.py │ │ │ ├── review_data.py │ │ │ ├── review_template.py │ │ │ ├── reviewee.py │ │ │ ├── stage_task.py │ │ │ └── user_group_user_rel.py │ │ │ └── version.py │ ├── personal_settings │ │ ├── __init__.py │ │ ├── service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── batch_close_system_status_request.py │ │ │ ├── batch_close_system_status_request_body.py │ │ │ ├── batch_close_system_status_response.py │ │ │ ├── batch_close_system_status_response_body.py │ │ │ ├── batch_open_system_status_request.py │ │ │ ├── batch_open_system_status_request_body.py │ │ │ ├── batch_open_system_status_response.py │ │ │ ├── batch_open_system_status_response_body.py │ │ │ ├── create_system_status_request.py │ │ │ ├── create_system_status_response.py │ │ │ ├── create_system_status_response_body.py │ │ │ ├── delete_system_status_request.py │ │ │ ├── delete_system_status_request_body.py │ │ │ ├── delete_system_status_response.py │ │ │ ├── delete_system_status_response_body.py │ │ │ ├── department_id.py │ │ │ ├── list_system_status_request.py │ │ │ ├── list_system_status_request_body.py │ │ │ ├── list_system_status_response.py │ │ │ ├── list_system_status_response_body.py │ │ │ ├── patch_system_status_request.py │ │ │ ├── patch_system_status_request_body.py │ │ │ ├── patch_system_status_response.py │ │ │ ├── patch_system_status_response_body.py │ │ │ ├── system_status.py │ │ │ ├── system_status_i18n_name.py │ │ │ ├── system_status_sync_i18n_explain.py │ │ │ ├── system_status_sync_i18n_name.py │ │ │ ├── system_status_sync_setting.py │ │ │ ├── system_status_user_close_result_entity.py │ │ │ ├── system_status_user_open_param.py │ │ │ └── system_status_user_open_result_entity.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ └── system_status.py │ │ │ └── version.py │ ├── report │ │ ├── __init__.py │ │ ├── service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── department_id.py │ │ │ ├── form_content.py │ │ │ ├── form_field.py │ │ │ ├── query_rule_request.py │ │ │ ├── query_rule_request_body.py │ │ │ ├── query_rule_response.py │ │ │ ├── query_rule_response_body.py │ │ │ ├── query_task_request.py │ │ │ ├── query_task_request_body.py │ │ │ ├── query_task_response.py │ │ │ ├── query_task_response_body.py │ │ │ ├── remove_rule_view_request.py │ │ │ ├── remove_rule_view_request_body.py │ │ │ ├── remove_rule_view_response.py │ │ │ ├── remove_rule_view_response_body.py │ │ │ ├── rule.py │ │ │ ├── task.py │ │ │ └── view.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ ├── rule.py │ │ │ ├── rule_view.py │ │ │ └── task.py │ │ │ └── version.py │ ├── search │ │ ├── __init__.py │ │ ├── service.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── acl.py │ │ │ ├── batch_item_result.py │ │ │ ├── callback_action.py │ │ │ ├── callback_action_value.py │ │ │ ├── card_callback_request.py │ │ │ ├── chunk.py │ │ │ ├── connect_data_source.py │ │ │ ├── connector_param.py │ │ │ ├── create_app_request.py │ │ │ ├── create_app_request_body.py │ │ │ ├── create_app_response.py │ │ │ ├── create_app_response_body.py │ │ │ ├── create_data_source_item_request.py │ │ │ ├── create_data_source_item_response.py │ │ │ ├── create_data_source_item_response_body.py │ │ │ ├── create_data_source_request.py │ │ │ ├── create_data_source_response.py │ │ │ ├── create_data_source_response_body.py │ │ │ ├── create_doc_param.py │ │ │ ├── create_message_request.py │ │ │ ├── create_message_request_body.py │ │ │ ├── create_message_response.py │ │ │ ├── create_message_response_body.py │ │ │ ├── create_schema_request.py │ │ │ ├── create_schema_response.py │ │ │ ├── create_schema_response_body.py │ │ │ ├── data_source.py │ │ │ ├── dataset.py │ │ │ ├── delete_data_source_item_request.py │ │ │ ├── delete_data_source_item_request_body.py │ │ │ ├── delete_data_source_item_response.py │ │ │ ├── delete_data_source_item_response_body.py │ │ │ ├── delete_data_source_request.py │ │ │ ├── delete_data_source_request_body.py │ │ │ ├── delete_data_source_response.py │ │ │ ├── delete_data_source_response_body.py │ │ │ ├── delete_schema_request.py │ │ │ ├── delete_schema_request_body.py │ │ │ ├── delete_schema_response.py │ │ │ ├── delete_schema_response_body.py │ │ │ ├── department_id.py │ │ │ ├── dialog_search_request.py │ │ │ ├── doc.py │ │ │ ├── doc_passage_param.py │ │ │ ├── enterprise_knowledge_source_comment_param.py │ │ │ ├── enterprise_knowledge_source_helpdesk_param.py │ │ │ ├── enterprise_knowledge_source_lingo_param.py │ │ │ ├── enterprise_knowledge_source_mail_param.py │ │ │ ├── enterprise_knowledge_source_message_param.py │ │ │ ├── enterprise_knowledge_source_minutes_param.py │ │ │ ├── enterprise_knowledge_source_param.py │ │ │ ├── enterprise_knowledge_source_space_param.py │ │ │ ├── enterprise_knowledge_source_wiki_param.py │ │ │ ├── filter_schema.py │ │ │ ├── get_data_source_item_request.py │ │ │ ├── get_data_source_item_request_body.py │ │ │ ├── get_data_source_item_response.py │ │ │ ├── get_data_source_item_response_body.py │ │ │ ├── get_data_source_request.py │ │ │ ├── get_data_source_request_body.py │ │ │ ├── get_data_source_response.py │ │ │ ├── get_data_source_response_body.py │ │ │ ├── get_schema_request.py │ │ │ ├── get_schema_request_body.py │ │ │ ├── get_schema_response.py │ │ │ ├── get_schema_response_body.py │ │ │ ├── helpdesk_passage_param.py │ │ │ ├── i18n_meta.py │ │ │ ├── item.py │ │ │ ├── item_content.py │ │ │ ├── item_metadata.py │ │ │ ├── item_record.py │ │ │ ├── knowledge_qa_answer_request.py │ │ │ ├── knowledge_qa_answer_response.py │ │ │ ├── knowledge_qa_enterprise_reference.py │ │ │ ├── knowledge_qa_internet_reference.py │ │ │ ├── knowledge_qa_reference.py │ │ │ ├── knowledge_qa_search_enterprise_passage.py │ │ │ ├── knowledge_qa_search_request.py │ │ │ ├── knowledge_source_answer_request.py │ │ │ ├── knowledge_source_helpdesk_filter.py │ │ │ ├── knowledge_source_message_filter.py │ │ │ ├── knowledge_source_message_reject.py │ │ │ ├── knowledge_source_message_reject_filter.py │ │ │ ├── knowledge_source_request_extra.py │ │ │ ├── knowledge_source_space_filter.py │ │ │ ├── knowledge_source_space_reject.py │ │ │ ├── knowledge_source_wiki_filter.py │ │ │ ├── knowledge_source_wiki_reject.py │ │ │ ├── lingo_passage_param.py │ │ │ ├── list_data_source_request.py │ │ │ ├── list_data_source_request_body.py │ │ │ ├── list_data_source_response.py │ │ │ ├── list_data_source_response_body.py │ │ │ ├── llm_model_config.py │ │ │ ├── memory_message.py │ │ │ ├── message_passage_param.py │ │ │ ├── model_config.py │ │ │ ├── model_param.py │ │ │ ├── nls_model_config.py │ │ │ ├── paraphrase_result.py │ │ │ ├── passage.py │ │ │ ├── passage_param.py │ │ │ ├── patch_data_source_request.py │ │ │ ├── patch_data_source_request_body.py │ │ │ ├── patch_data_source_response.py │ │ │ ├── patch_data_source_response_body.py │ │ │ ├── patch_schema_property.py │ │ │ ├── patch_schema_request.py │ │ │ ├── patch_schema_request_body.py │ │ │ ├── patch_schema_response.py │ │ │ ├── patch_schema_response_body.py │ │ │ ├── present.py │ │ │ ├── present_data_callback_dialog_request.py │ │ │ ├── rag_answer.py │ │ │ ├── rag_answer_response.py │ │ │ ├── rag_probe.py │ │ │ ├── scenario_context.py │ │ │ ├── scenario_context_extra.py │ │ │ ├── schema.py │ │ │ ├── schema_display.py │ │ │ ├── schema_display_field_mapping.py │ │ │ ├── schema_display_option.py │ │ │ ├── schema_enum_options.py │ │ │ ├── schema_field_answer_option.py │ │ │ ├── schema_filter_options.py │ │ │ ├── schema_predefine_enum_struct.py │ │ │ ├── schema_property.py │ │ │ ├── schema_property_definition.py │ │ │ ├── schema_search_options.py │ │ │ ├── schema_sort_options.py │ │ │ ├── schema_tag_options.py │ │ │ ├── schema_type_definitions.py │ │ │ ├── schema_user_ids_option.py │ │ │ ├── seperate_passage.py │ │ │ ├── simple_get_related_users_request.py │ │ │ ├── simple_related_user.py │ │ │ ├── status.py │ │ │ ├── system_info.py │ │ │ ├── template_card_variables.py │ │ │ ├── time_range.py │ │ │ ├── user_info.py │ │ │ ├── web_passage_param.py │ │ │ └── wiki_passage_param.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ ├── app.py │ │ │ ├── data_source.py │ │ │ ├── data_source_item.py │ │ │ ├── message.py │ │ │ └── schema.py │ │ │ └── version.py │ ├── security_and_compliance │ │ ├── __init__.py │ │ ├── service.py │ │ ├── v1 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ │ ├── __init__.py │ │ │ │ ├── admin_log.py │ │ │ │ ├── api_audit_common_drawers.py │ │ │ │ ├── api_audit_drawer_info.py │ │ │ │ ├── app_dlp_execute_log.py │ │ │ │ ├── audit_android_context.py │ │ │ │ ├── audit_context.py │ │ │ │ ├── audit_detail.py │ │ │ │ ├── audit_event_extend.py │ │ │ │ ├── audit_info.py │ │ │ │ ├── audit_ios_context.py │ │ │ │ ├── audit_object_detail.py │ │ │ │ ├── audit_object_entity.py │ │ │ │ ├── audit_pc_context.py │ │ │ │ ├── audit_recipient_detail.py │ │ │ │ ├── audit_recipient_entity.py │ │ │ │ ├── audit_web_context.py │ │ │ │ ├── create_migration_entity.py │ │ │ │ ├── create_migration_items.py │ │ │ │ ├── data_archiving_message.py │ │ │ │ ├── data_archiving_message_struct.py │ │ │ │ ├── data_archiving_user.py │ │ │ │ ├── data_archiving_user_struct.py │ │ │ │ ├── department_id.py │ │ │ │ ├── device_apply_record.py │ │ │ │ ├── device_record.py │ │ │ │ ├── directory_items.py │ │ │ │ ├── dlp_detect_mode_proof_context.py │ │ │ │ ├── dlp_evidence_detail.py │ │ │ │ ├── dlp_execute_evidence.py │ │ │ │ ├── dlp_execute_log.py │ │ │ │ ├── dlp_hit_policy.py │ │ │ │ ├── dlp_policy_hit_proof.py │ │ │ │ ├── dlp_proof_context.py │ │ │ │ ├── document.py │ │ │ │ ├── download_token.py │ │ │ │ ├── email.py │ │ │ │ ├── email_filter.py │ │ │ │ ├── file.py │ │ │ │ ├── file_risk_detection_record.py │ │ │ │ ├── file_risk_detection_record_result.py │ │ │ │ ├── gw_common.py │ │ │ │ ├── gw_request.py │ │ │ │ ├── gw_response.py │ │ │ │ ├── key_person.py │ │ │ │ ├── list_data_openapi_log_request.py │ │ │ │ ├── list_data_openapi_log_response.py │ │ │ │ ├── list_data_openapi_log_response_body.py │ │ │ │ ├── list_openapi_log_request.py │ │ │ │ ├── message.py │ │ │ │ ├── migration_entity.py │ │ │ │ ├── migration_items.py │ │ │ │ ├── notification.py │ │ │ │ ├── openapi_log.py │ │ │ │ ├── openapi_log_detail.py │ │ │ │ ├── param.py │ │ │ │ ├── policy_entity.py │ │ │ │ ├── policy_log.py │ │ │ │ ├── policy_log_item.py │ │ │ │ ├── security_log_error.py │ │ │ │ ├── simple_user.py │ │ │ │ ├── subscribe_audit_log_file.py │ │ │ │ ├── task_status.py │ │ │ │ ├── tenant.py │ │ │ │ ├── tenant_third_party_encryption_app.py │ │ │ │ ├── time_range.py │ │ │ │ ├── user.py │ │ │ │ ├── user_id.py │ │ │ │ ├── user_migration.py │ │ │ │ ├── vault_export_file.py │ │ │ │ └── vault_task.py │ │ │ ├── resource │ │ │ │ ├── __init__.py │ │ │ │ └── openapi_log.py │ │ │ └── version.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── bitable_app_token.py │ │ │ ├── chat.py │ │ │ ├── chat_member.py │ │ │ ├── chat_meta.py │ │ │ ├── create_device_record_request.py │ │ │ ├── create_device_record_response.py │ │ │ ├── create_device_record_response_body.py │ │ │ ├── delete_device_record_request.py │ │ │ ├── delete_device_record_response.py │ │ │ ├── department_id.py │ │ │ ├── device_apply_record.py │ │ │ ├── device_apply_record_event.py │ │ │ ├── device_change_event.py │ │ │ ├── device_record.py │ │ │ ├── device_record_event.py │ │ │ ├── doc_token.py │ │ │ ├── docs.py │ │ │ ├── document_token.py │ │ │ ├── download_info.py │ │ │ ├── get_device_record_request.py │ │ │ ├── get_device_record_response.py │ │ │ ├── get_device_record_response_body.py │ │ │ ├── list_device_record_request.py │ │ │ ├── list_device_record_response.py │ │ │ ├── list_device_record_response_body.py │ │ │ ├── mail.py │ │ │ ├── mail_id.py │ │ │ ├── message.py │ │ │ ├── message_attachment.py │ │ │ ├── message_audio_content.py │ │ │ ├── message_calendar_content.py │ │ │ ├── message_card_content.py │ │ │ ├── message_content.py │ │ │ ├── message_file_content.py │ │ │ ├── message_general_calendar_content.py │ │ │ ├── message_hong_bao_content.py │ │ │ ├── message_id.py │ │ │ ├── message_image_content.py │ │ │ ├── message_location_content.py │ │ │ ├── message_media_content.py │ │ │ ├── message_merge_forward_content.py │ │ │ ├── message_meta.py │ │ │ ├── message_post_content.py │ │ │ ├── message_share_calendar_event_content.py │ │ │ ├── message_share_group_chat_content.py │ │ │ ├── message_share_user_card_content.py │ │ │ ├── message_sticker_content.py │ │ │ ├── message_system_content.py │ │ │ ├── message_text_content.py │ │ │ ├── message_todo_content.py │ │ │ ├── message_video_chat_content.py │ │ │ ├── mine_device_record_request.py │ │ │ ├── mine_device_record_response.py │ │ │ ├── mine_device_record_response_body.py │ │ │ ├── minutes_token.py │ │ │ ├── p2_security_and_compliance_device_apply_record_device_apply_event_v2.py │ │ │ ├── p2_security_and_compliance_device_record_device_change_event_v2.py │ │ │ ├── param_docs_export.py │ │ │ ├── param_docs_search.py │ │ │ ├── param_docs_url.py │ │ │ ├── param_mail_id.py │ │ │ ├── param_mail_public_mail.py │ │ │ ├── param_mail_user.py │ │ │ ├── param_message_chat.py │ │ │ ├── param_message_context.py │ │ │ ├── param_message_filter.py │ │ │ ├── param_message_search.py │ │ │ ├── param_minutes_export.py │ │ │ ├── param_minutes_search.py │ │ │ ├── tenant_restriction_device_allow_list_policy.py │ │ │ ├── tenant_restriction_device_policy.py │ │ │ ├── tenant_restriction_network_allow_list_policy.py │ │ │ ├── tenant_restriction_network_policy.py │ │ │ ├── time_range.py │ │ │ ├── update_device_apply_record_request.py │ │ │ ├── update_device_apply_record_request_body.py │ │ │ ├── update_device_apply_record_response.py │ │ │ ├── update_device_record_request.py │ │ │ ├── update_device_record_response.py │ │ │ ├── user.py │ │ │ ├── user_comment_docs_record.py │ │ │ ├── user_edit_docs_record.py │ │ │ ├── user_id.py │ │ │ ├── vault_task.py │ │ │ └── vault_task_file.py │ │ │ ├── processor.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ ├── device_apply_record.py │ │ │ └── device_record.py │ │ │ └── version.py │ ├── sheets │ │ ├── __init__.py │ │ ├── service.py │ │ └── v3 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── add_sheet.py │ │ │ ├── alignment_style.py │ │ │ ├── append_dimension.py │ │ │ ├── bitable_properties.py │ │ │ ├── bool_rule_value.py │ │ │ ├── boolean_rule_condition.py │ │ │ ├── border_style.py │ │ │ ├── bottom_border_style.py │ │ │ ├── cell_font_style.py │ │ │ ├── cell_style.py │ │ │ ├── cell_value.py │ │ │ ├── checkbox.py │ │ │ ├── clear_data_validation.py │ │ │ ├── clear_style_multi_range.py │ │ │ ├── clear_style_ranges.py │ │ │ ├── condition.py │ │ │ ├── conditional_format.py │ │ │ ├── conditional_format_range.py │ │ │ ├── conditional_format_rule.py │ │ │ ├── conditional_format_style.py │ │ │ ├── create_data_validation.py │ │ │ ├── create_sheet_filter.py │ │ │ ├── create_spreadsheet_request.py │ │ │ ├── create_spreadsheet_response.py │ │ │ ├── create_spreadsheet_response_body.py │ │ │ ├── create_spreadsheet_sheet_filter_request.py │ │ │ ├── create_spreadsheet_sheet_filter_response.py │ │ │ ├── create_spreadsheet_sheet_filter_response_body.py │ │ │ ├── create_spreadsheet_sheet_filter_view_condition_request.py │ │ │ ├── create_spreadsheet_sheet_filter_view_condition_response.py │ │ │ ├── create_spreadsheet_sheet_filter_view_condition_response_body.py │ │ │ ├── create_spreadsheet_sheet_filter_view_request.py │ │ │ ├── create_spreadsheet_sheet_filter_view_response.py │ │ │ ├── create_spreadsheet_sheet_filter_view_response_body.py │ │ │ ├── create_spreadsheet_sheet_float_image_request.py │ │ │ ├── create_spreadsheet_sheet_float_image_response.py │ │ │ ├── create_spreadsheet_sheet_float_image_response_body.py │ │ │ ├── data_validation.py │ │ │ ├── data_validation_rule.py │ │ │ ├── data_validation_value.py │ │ │ ├── date_time.py │ │ │ ├── delete_spreadsheet_sheet_filter_request.py │ │ │ ├── delete_spreadsheet_sheet_filter_request_body.py │ │ │ ├── delete_spreadsheet_sheet_filter_response.py │ │ │ ├── delete_spreadsheet_sheet_filter_response_body.py │ │ │ ├── delete_spreadsheet_sheet_filter_view_condition_request.py │ │ │ ├── delete_spreadsheet_sheet_filter_view_condition_request_body.py │ │ │ ├── delete_spreadsheet_sheet_filter_view_condition_response.py │ │ │ ├── delete_spreadsheet_sheet_filter_view_condition_response_body.py │ │ │ ├── delete_spreadsheet_sheet_filter_view_request.py │ │ │ ├── delete_spreadsheet_sheet_filter_view_request_body.py │ │ │ ├── delete_spreadsheet_sheet_filter_view_response.py │ │ │ ├── delete_spreadsheet_sheet_filter_view_response_body.py │ │ │ ├── delete_spreadsheet_sheet_float_image_request.py │ │ │ ├── delete_spreadsheet_sheet_float_image_request_body.py │ │ │ ├── delete_spreadsheet_sheet_float_image_response.py │ │ │ ├── delete_spreadsheet_sheet_float_image_response_body.py │ │ │ ├── department_id.py │ │ │ ├── dimension.py │ │ │ ├── dimension_properties.py │ │ │ ├── file.py │ │ │ ├── filter_info.py │ │ │ ├── filter_view.py │ │ │ ├── filter_view_condition.py │ │ │ ├── find.py │ │ │ ├── find_condition.py │ │ │ ├── find_replace_result.py │ │ │ ├── find_spreadsheet_sheet_request.py │ │ │ ├── find_spreadsheet_sheet_response.py │ │ │ ├── find_spreadsheet_sheet_response_body.py │ │ │ ├── float_image.py │ │ │ ├── formula.py │ │ │ ├── get_spreadsheet.py │ │ │ ├── get_spreadsheet_request.py │ │ │ ├── get_spreadsheet_request_body.py │ │ │ ├── get_spreadsheet_response.py │ │ │ ├── get_spreadsheet_response_body.py │ │ │ ├── get_spreadsheet_sheet_filter_request.py │ │ │ ├── get_spreadsheet_sheet_filter_request_body.py │ │ │ ├── get_spreadsheet_sheet_filter_response.py │ │ │ ├── get_spreadsheet_sheet_filter_response_body.py │ │ │ ├── get_spreadsheet_sheet_filter_view_condition_request.py │ │ │ ├── get_spreadsheet_sheet_filter_view_condition_request_body.py │ │ │ ├── get_spreadsheet_sheet_filter_view_condition_response.py │ │ │ ├── get_spreadsheet_sheet_filter_view_condition_response_body.py │ │ │ ├── get_spreadsheet_sheet_filter_view_request.py │ │ │ ├── get_spreadsheet_sheet_filter_view_request_body.py │ │ │ ├── get_spreadsheet_sheet_filter_view_response.py │ │ │ ├── get_spreadsheet_sheet_filter_view_response_body.py │ │ │ ├── get_spreadsheet_sheet_float_image_request.py │ │ │ ├── get_spreadsheet_sheet_float_image_request_body.py │ │ │ ├── get_spreadsheet_sheet_float_image_response.py │ │ │ ├── get_spreadsheet_sheet_float_image_response_body.py │ │ │ ├── get_spreadsheet_sheet_request.py │ │ │ ├── get_spreadsheet_sheet_request_body.py │ │ │ ├── get_spreadsheet_sheet_response.py │ │ │ ├── get_spreadsheet_sheet_response_body.py │ │ │ ├── grid_properties.py │ │ │ ├── image.py │ │ │ ├── insert_dimension.py │ │ │ ├── left_border_style.py │ │ │ ├── link.py │ │ │ ├── mention_document.py │ │ │ ├── mention_user.py │ │ │ ├── merge_cell.py │ │ │ ├── merge_range.py │ │ │ ├── move_dimension.py │ │ │ ├── move_dimension_spreadsheet_sheet_request.py │ │ │ ├── move_dimension_spreadsheet_sheet_response.py │ │ │ ├── move_dimension_spreadsheet_sheet_response_body.py │ │ │ ├── multi_range.py │ │ │ ├── multiple_option.py │ │ │ ├── option_properties.py │ │ │ ├── patch_conditional_format.py │ │ │ ├── patch_data_validation.py │ │ │ ├── patch_protected_range.py │ │ │ ├── patch_protected_range_editors.py │ │ │ ├── patch_spreadsheet_request.py │ │ │ ├── patch_spreadsheet_response.py │ │ │ ├── patch_spreadsheet_response_body.py │ │ │ ├── patch_spreadsheet_sheet_filter_view_request.py │ │ │ ├── patch_spreadsheet_sheet_filter_view_response.py │ │ │ ├── patch_spreadsheet_sheet_filter_view_response_body.py │ │ │ ├── patch_spreadsheet_sheet_float_image_request.py │ │ │ ├── patch_spreadsheet_sheet_float_image_response.py │ │ │ ├── patch_spreadsheet_sheet_float_image_response_body.py │ │ │ ├── plain_text_value_range.py │ │ │ ├── protected_columns.py │ │ │ ├── protected_range.py │ │ │ ├── protected_range_editors.py │ │ │ ├── protected_rows.py │ │ │ ├── protected_sheet.py │ │ │ ├── query_spreadsheet_sheet_filter_view_condition_request.py │ │ │ ├── query_spreadsheet_sheet_filter_view_condition_request_body.py │ │ │ ├── query_spreadsheet_sheet_filter_view_condition_response.py │ │ │ ├── query_spreadsheet_sheet_filter_view_condition_response_body.py │ │ │ ├── query_spreadsheet_sheet_filter_view_request.py │ │ │ ├── query_spreadsheet_sheet_filter_view_request_body.py │ │ │ ├── query_spreadsheet_sheet_filter_view_response.py │ │ │ ├── query_spreadsheet_sheet_filter_view_response_body.py │ │ │ ├── query_spreadsheet_sheet_float_image_request.py │ │ │ ├── query_spreadsheet_sheet_float_image_request_body.py │ │ │ ├── query_spreadsheet_sheet_float_image_response.py │ │ │ ├── query_spreadsheet_sheet_float_image_response_body.py │ │ │ ├── query_spreadsheet_sheet_request.py │ │ │ ├── query_spreadsheet_sheet_request_body.py │ │ │ ├── query_spreadsheet_sheet_response.py │ │ │ ├── query_spreadsheet_sheet_response_body.py │ │ │ ├── reminder.py │ │ │ ├── replace.py │ │ │ ├── replace_spreadsheet_sheet_request.py │ │ │ ├── replace_spreadsheet_sheet_response.py │ │ │ ├── replace_spreadsheet_sheet_response_body.py │ │ │ ├── rich_text_value_range.py │ │ │ ├── rich_value.py │ │ │ ├── right_border_style.py │ │ │ ├── segment_style.py │ │ │ ├── segment_style_style.py │ │ │ ├── sheet.py │ │ │ ├── sheet_filter_info.py │ │ │ ├── sheet_properties.py │ │ │ ├── single_option.py │ │ │ ├── spreadsheet.py │ │ │ ├── style.py │ │ │ ├── style_ranges.py │ │ │ ├── text.py │ │ │ ├── top_border_style.py │ │ │ ├── update_dimension_properties.py │ │ │ ├── update_grid_properties.py │ │ │ ├── update_sheet_filter.py │ │ │ ├── update_spreadsheet_properties.py │ │ │ ├── update_spreadsheet_sheet_filter_request.py │ │ │ ├── update_spreadsheet_sheet_filter_response.py │ │ │ ├── update_spreadsheet_sheet_filter_response_body.py │ │ │ ├── update_spreadsheet_sheet_filter_view_condition_request.py │ │ │ ├── update_spreadsheet_sheet_filter_view_condition_response.py │ │ │ ├── update_spreadsheet_sheet_filter_view_condition_response_body.py │ │ │ ├── value.py │ │ │ ├── value_element.py │ │ │ └── value_element_single_option.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ ├── spreadsheet.py │ │ │ ├── spreadsheet_sheet.py │ │ │ ├── spreadsheet_sheet_filter.py │ │ │ ├── spreadsheet_sheet_filter_view.py │ │ │ ├── spreadsheet_sheet_filter_view_condition.py │ │ │ └── spreadsheet_sheet_float_image.py │ │ │ └── version.py │ ├── speech_to_text │ │ ├── __init__.py │ │ ├── service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── department_id.py │ │ │ ├── file_config.py │ │ │ ├── file_recognize_speech_request.py │ │ │ ├── file_recognize_speech_request_body.py │ │ │ ├── file_recognize_speech_response.py │ │ │ ├── file_recognize_speech_response_body.py │ │ │ ├── speech.py │ │ │ ├── stream_config.py │ │ │ ├── stream_recognize_speech_request.py │ │ │ ├── stream_recognize_speech_request_body.py │ │ │ ├── stream_recognize_speech_response.py │ │ │ └── stream_recognize_speech_response_body.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ └── speech.py │ │ │ └── version.py │ ├── task │ │ ├── __init__.py │ │ ├── service.py │ │ ├── v1 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ │ ├── __init__.py │ │ │ │ ├── attachment.py │ │ │ │ ├── attatchment.py │ │ │ │ ├── batch_delete_collaborator_task_request.py │ │ │ │ ├── batch_delete_collaborator_task_response.py │ │ │ │ ├── batch_delete_collaborator_task_response_body.py │ │ │ │ ├── batch_delete_follower_task_request.py │ │ │ │ ├── batch_delete_follower_task_response.py │ │ │ │ ├── batch_delete_follower_task_response_body.py │ │ │ │ ├── collaborator.py │ │ │ │ ├── comment.py │ │ │ │ ├── complete_task_request.py │ │ │ │ ├── complete_task_request_body.py │ │ │ │ ├── complete_task_response.py │ │ │ │ ├── complete_task_response_body.py │ │ │ │ ├── create_task_collaborator_request.py │ │ │ │ ├── create_task_collaborator_response.py │ │ │ │ ├── create_task_collaborator_response_body.py │ │ │ │ ├── create_task_comment_request.py │ │ │ │ ├── create_task_comment_response.py │ │ │ │ ├── create_task_comment_response_body.py │ │ │ │ ├── create_task_follower_request.py │ │ │ │ ├── create_task_follower_response.py │ │ │ │ ├── create_task_follower_response_body.py │ │ │ │ ├── create_task_reminder_request.py │ │ │ │ ├── create_task_reminder_response.py │ │ │ │ ├── create_task_reminder_response_body.py │ │ │ │ ├── create_task_request.py │ │ │ │ ├── create_task_response.py │ │ │ │ ├── create_task_response_body.py │ │ │ │ ├── delete_task_collaborator_request.py │ │ │ │ ├── delete_task_collaborator_request_body.py │ │ │ │ ├── delete_task_collaborator_response.py │ │ │ │ ├── delete_task_collaborator_response_body.py │ │ │ │ ├── delete_task_comment_request.py │ │ │ │ ├── delete_task_comment_request_body.py │ │ │ │ ├── delete_task_comment_response.py │ │ │ │ ├── delete_task_comment_response_body.py │ │ │ │ ├── delete_task_follower_request.py │ │ │ │ ├── delete_task_follower_request_body.py │ │ │ │ ├── delete_task_follower_response.py │ │ │ │ ├── delete_task_follower_response_body.py │ │ │ │ ├── delete_task_reminder_request.py │ │ │ │ ├── delete_task_reminder_request_body.py │ │ │ │ ├── delete_task_reminder_response.py │ │ │ │ ├── delete_task_reminder_response_body.py │ │ │ │ ├── delete_task_request.py │ │ │ │ ├── delete_task_request_body.py │ │ │ │ ├── delete_task_response.py │ │ │ │ ├── delete_task_response_body.py │ │ │ │ ├── department_id.py │ │ │ │ ├── due.py │ │ │ │ ├── follower.py │ │ │ │ ├── get_task_comment_request.py │ │ │ │ ├── get_task_comment_request_body.py │ │ │ │ ├── get_task_comment_response.py │ │ │ │ ├── get_task_comment_response_body.py │ │ │ │ ├── get_task_request.py │ │ │ │ ├── get_task_request_body.py │ │ │ │ ├── get_task_response.py │ │ │ │ ├── get_task_response_body.py │ │ │ │ ├── href.py │ │ │ │ ├── list_task_collaborator_request.py │ │ │ │ ├── list_task_collaborator_request_body.py │ │ │ │ ├── list_task_collaborator_response.py │ │ │ │ ├── list_task_collaborator_response_body.py │ │ │ │ ├── list_task_comment_request.py │ │ │ │ ├── list_task_comment_request_body.py │ │ │ │ ├── list_task_comment_response.py │ │ │ │ ├── list_task_comment_response_body.py │ │ │ │ ├── list_task_follower_request.py │ │ │ │ ├── list_task_follower_request_body.py │ │ │ │ ├── list_task_follower_response.py │ │ │ │ ├── list_task_follower_response_body.py │ │ │ │ ├── list_task_reminder_request.py │ │ │ │ ├── list_task_reminder_request_body.py │ │ │ │ ├── list_task_reminder_response.py │ │ │ │ ├── list_task_reminder_response_body.py │ │ │ │ ├── list_task_request.py │ │ │ │ ├── list_task_request_body.py │ │ │ │ ├── list_task_response.py │ │ │ │ ├── list_task_response_body.py │ │ │ │ ├── origin.py │ │ │ │ ├── p2_task_task_comment_updated_v1.py │ │ │ │ ├── p2_task_task_update_tenant_v1.py │ │ │ │ ├── p2_task_task_updated_v1.py │ │ │ │ ├── patch_task_request.py │ │ │ │ ├── patch_task_request_body.py │ │ │ │ ├── patch_task_response.py │ │ │ │ ├── patch_task_response_body.py │ │ │ │ ├── reminder.py │ │ │ │ ├── section.py │ │ │ │ ├── task.py │ │ │ │ ├── tasklist.py │ │ │ │ ├── uncomplete_task_request.py │ │ │ │ ├── uncomplete_task_request_body.py │ │ │ │ ├── uncomplete_task_response.py │ │ │ │ ├── uncomplete_task_response_body.py │ │ │ │ ├── update_task_comment_request.py │ │ │ │ ├── update_task_comment_request_body.py │ │ │ │ ├── update_task_comment_response.py │ │ │ │ ├── update_task_comment_response_body.py │ │ │ │ ├── user_id.py │ │ │ │ └── user_id_list.py │ │ │ ├── processor.py │ │ │ ├── resource │ │ │ │ ├── __init__.py │ │ │ │ ├── task.py │ │ │ │ ├── task_collaborator.py │ │ │ │ ├── task_comment.py │ │ │ │ ├── task_follower.py │ │ │ │ └── task_reminder.py │ │ │ └── version.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── activity_record.py │ │ │ ├── add_custom_field_request.py │ │ │ ├── add_custom_field_request_body.py │ │ │ ├── add_custom_field_response.py │ │ │ ├── add_custom_field_response_body.py │ │ │ ├── add_dependencies_task_request.py │ │ │ ├── add_dependencies_task_request_body.py │ │ │ ├── add_dependencies_task_response.py │ │ │ ├── add_dependencies_task_response_body.py │ │ │ ├── add_members_task_request.py │ │ │ ├── add_members_task_request_body.py │ │ │ ├── add_members_task_response.py │ │ │ ├── add_members_task_response_body.py │ │ │ ├── add_members_tasklist_request.py │ │ │ ├── add_members_tasklist_request_body.py │ │ │ ├── add_members_tasklist_response.py │ │ │ ├── add_members_tasklist_response_body.py │ │ │ ├── add_reminders_task_request.py │ │ │ ├── add_reminders_task_request_body.py │ │ │ ├── add_reminders_task_response.py │ │ │ ├── add_reminders_task_response_body.py │ │ │ ├── add_tasklist_task_request.py │ │ │ ├── add_tasklist_task_request_body.py │ │ │ ├── add_tasklist_task_response.py │ │ │ ├── add_tasklist_task_response_body.py │ │ │ ├── attachment.py │ │ │ ├── comment.py │ │ │ ├── create_comment_request.py │ │ │ ├── create_comment_response.py │ │ │ ├── create_comment_response_body.py │ │ │ ├── create_custom_field_option_request.py │ │ │ ├── create_custom_field_option_response.py │ │ │ ├── create_custom_field_option_response_body.py │ │ │ ├── create_custom_field_request.py │ │ │ ├── create_custom_field_response.py │ │ │ ├── create_custom_field_response_body.py │ │ │ ├── create_section_request.py │ │ │ ├── create_section_response.py │ │ │ ├── create_section_response_body.py │ │ │ ├── create_task_request.py │ │ │ ├── create_task_response.py │ │ │ ├── create_task_response_body.py │ │ │ ├── create_task_subtask_request.py │ │ │ ├── create_task_subtask_response.py │ │ │ ├── create_task_subtask_response_body.py │ │ │ ├── create_tasklist_activity_subscription_request.py │ │ │ ├── create_tasklist_activity_subscription_response.py │ │ │ ├── create_tasklist_activity_subscription_response_body.py │ │ │ ├── create_tasklist_request.py │ │ │ ├── create_tasklist_response.py │ │ │ ├── create_tasklist_response_body.py │ │ │ ├── custom_complete.py │ │ │ ├── custom_complete_item.py │ │ │ ├── custom_field.py │ │ │ ├── custom_field_value.py │ │ │ ├── datetime_setting.py │ │ │ ├── delete_attachment_request.py │ │ │ ├── delete_attachment_request_body.py │ │ │ ├── delete_attachment_response.py │ │ │ ├── delete_attachment_response_body.py │ │ │ ├── delete_comment_request.py │ │ │ ├── delete_comment_request_body.py │ │ │ ├── delete_comment_response.py │ │ │ ├── delete_comment_response_body.py │ │ │ ├── delete_section_request.py │ │ │ ├── delete_section_request_body.py │ │ │ ├── delete_section_response.py │ │ │ ├── delete_section_response_body.py │ │ │ ├── delete_task_request.py │ │ │ ├── delete_task_request_body.py │ │ │ ├── delete_task_response.py │ │ │ ├── delete_task_response_body.py │ │ │ ├── delete_tasklist_activity_subscription_request.py │ │ │ ├── delete_tasklist_activity_subscription_request_body.py │ │ │ ├── delete_tasklist_activity_subscription_response.py │ │ │ ├── delete_tasklist_activity_subscription_response_body.py │ │ │ ├── delete_tasklist_request.py │ │ │ ├── delete_tasklist_request_body.py │ │ │ ├── delete_tasklist_response.py │ │ │ ├── delete_tasklist_response_body.py │ │ │ ├── department_id.py │ │ │ ├── docx_source.py │ │ │ ├── due.py │ │ │ ├── dummy.py │ │ │ ├── get_attachment_request.py │ │ │ ├── get_attachment_request_body.py │ │ │ ├── get_attachment_response.py │ │ │ ├── get_attachment_response_body.py │ │ │ ├── get_comment_request.py │ │ │ ├── get_comment_request_body.py │ │ │ ├── get_comment_response.py │ │ │ ├── get_comment_response_body.py │ │ │ ├── get_custom_field_request.py │ │ │ ├── get_custom_field_request_body.py │ │ │ ├── get_custom_field_response.py │ │ │ ├── get_custom_field_response_body.py │ │ │ ├── get_section_request.py │ │ │ ├── get_section_request_body.py │ │ │ ├── get_section_response.py │ │ │ ├── get_section_response_body.py │ │ │ ├── get_task_request.py │ │ │ ├── get_task_request_body.py │ │ │ ├── get_task_response.py │ │ │ ├── get_task_response_body.py │ │ │ ├── get_tasklist_activity_subscription_request.py │ │ │ ├── get_tasklist_activity_subscription_request_body.py │ │ │ ├── get_tasklist_activity_subscription_response.py │ │ │ ├── get_tasklist_activity_subscription_response_body.py │ │ │ ├── get_tasklist_request.py │ │ │ ├── get_tasklist_request_body.py │ │ │ ├── get_tasklist_response.py │ │ │ ├── get_tasklist_response_body.py │ │ │ ├── href.py │ │ │ ├── i18n_text.py │ │ │ ├── input_attachment.py │ │ │ ├── input_comment.py │ │ │ ├── input_custom_field.py │ │ │ ├── input_custom_field_value.py │ │ │ ├── input_option.py │ │ │ ├── input_section.py │ │ │ ├── input_task.py │ │ │ ├── input_tasklist.py │ │ │ ├── list_attachment_request.py │ │ │ ├── list_attachment_request_body.py │ │ │ ├── list_attachment_response.py │ │ │ ├── list_attachment_response_body.py │ │ │ ├── list_comment_request.py │ │ │ ├── list_comment_request_body.py │ │ │ ├── list_comment_response.py │ │ │ ├── list_comment_response_body.py │ │ │ ├── list_custom_field_request.py │ │ │ ├── list_custom_field_request_body.py │ │ │ ├── list_custom_field_response.py │ │ │ ├── list_custom_field_response_body.py │ │ │ ├── list_section_request.py │ │ │ ├── list_section_request_body.py │ │ │ ├── list_section_response.py │ │ │ ├── list_section_response_body.py │ │ │ ├── list_task_request.py │ │ │ ├── list_task_request_body.py │ │ │ ├── list_task_response.py │ │ │ ├── list_task_response_body.py │ │ │ ├── list_task_subtask_request.py │ │ │ ├── list_task_subtask_request_body.py │ │ │ ├── list_task_subtask_response.py │ │ │ ├── list_task_subtask_response_body.py │ │ │ ├── list_tasklist_activity_subscription_request.py │ │ │ ├── list_tasklist_activity_subscription_request_body.py │ │ │ ├── list_tasklist_activity_subscription_response.py │ │ │ ├── list_tasklist_activity_subscription_response_body.py │ │ │ ├── list_tasklist_request.py │ │ │ ├── list_tasklist_request_body.py │ │ │ ├── list_tasklist_response.py │ │ │ ├── list_tasklist_response_body.py │ │ │ ├── member.py │ │ │ ├── member_setting.py │ │ │ ├── number_setting.py │ │ │ ├── option.py │ │ │ ├── origin.py │ │ │ ├── patch_comment_request.py │ │ │ ├── patch_comment_request_body.py │ │ │ ├── patch_comment_response.py │ │ │ ├── patch_comment_response_body.py │ │ │ ├── patch_custom_field_option_request.py │ │ │ ├── patch_custom_field_option_request_body.py │ │ │ ├── patch_custom_field_option_response.py │ │ │ ├── patch_custom_field_option_response_body.py │ │ │ ├── patch_custom_field_request.py │ │ │ ├── patch_custom_field_request_body.py │ │ │ ├── patch_custom_field_response.py │ │ │ ├── patch_custom_field_response_body.py │ │ │ ├── patch_section_request.py │ │ │ ├── patch_section_request_body.py │ │ │ ├── patch_section_response.py │ │ │ ├── patch_section_response_body.py │ │ │ ├── patch_task_request.py │ │ │ ├── patch_task_request_body.py │ │ │ ├── patch_task_response.py │ │ │ ├── patch_task_response_body.py │ │ │ ├── patch_tasklist_activity_subscription_request.py │ │ │ ├── patch_tasklist_activity_subscription_request_body.py │ │ │ ├── patch_tasklist_activity_subscription_response.py │ │ │ ├── patch_tasklist_activity_subscription_response_body.py │ │ │ ├── patch_tasklist_request.py │ │ │ ├── patch_tasklist_request_body.py │ │ │ ├── patch_tasklist_response.py │ │ │ ├── patch_tasklist_response_body.py │ │ │ ├── reminder.py │ │ │ ├── remove_custom_field_request.py │ │ │ ├── remove_custom_field_request_body.py │ │ │ ├── remove_custom_field_response.py │ │ │ ├── remove_custom_field_response_body.py │ │ │ ├── remove_dependencies_task_request.py │ │ │ ├── remove_dependencies_task_request_body.py │ │ │ ├── remove_dependencies_task_response.py │ │ │ ├── remove_dependencies_task_response_body.py │ │ │ ├── remove_members_task_request.py │ │ │ ├── remove_members_task_request_body.py │ │ │ ├── remove_members_task_response.py │ │ │ ├── remove_members_task_response_body.py │ │ │ ├── remove_members_tasklist_request.py │ │ │ ├── remove_members_tasklist_request_body.py │ │ │ ├── remove_members_tasklist_response.py │ │ │ ├── remove_members_tasklist_response_body.py │ │ │ ├── remove_reminders_task_request.py │ │ │ ├── remove_reminders_task_request_body.py │ │ │ ├── remove_reminders_task_response.py │ │ │ ├── remove_reminders_task_response_body.py │ │ │ ├── remove_tasklist_task_request.py │ │ │ ├── remove_tasklist_task_request_body.py │ │ │ ├── remove_tasklist_task_response.py │ │ │ ├── remove_tasklist_task_response_body.py │ │ │ ├── resource.py │ │ │ ├── section.py │ │ │ ├── section_summary.py │ │ │ ├── select_setting.py │ │ │ ├── start.py │ │ │ ├── task.py │ │ │ ├── task_assignee.py │ │ │ ├── task_dependency.py │ │ │ ├── task_in_tasklist_info.py │ │ │ ├── task_statistics.py │ │ │ ├── task_subtask.py │ │ │ ├── task_summary.py │ │ │ ├── tasklist.py │ │ │ ├── tasklist_activity_subscription.py │ │ │ ├── tasklist_summary.py │ │ │ ├── tasklists_task_request.py │ │ │ ├── tasklists_task_request_body.py │ │ │ ├── tasklists_task_response.py │ │ │ ├── tasklists_task_response_body.py │ │ │ ├── tasks_section_request.py │ │ │ ├── tasks_section_request_body.py │ │ │ ├── tasks_section_response.py │ │ │ ├── tasks_section_response_body.py │ │ │ ├── tasks_tasklist_request.py │ │ │ ├── tasks_tasklist_request_body.py │ │ │ ├── tasks_tasklist_response.py │ │ │ ├── tasks_tasklist_response_body.py │ │ │ ├── text_setting.py │ │ │ ├── upload_attachment_request.py │ │ │ ├── upload_attachment_response.py │ │ │ └── upload_attachment_response_body.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ ├── attachment.py │ │ │ ├── comment.py │ │ │ ├── custom_field.py │ │ │ ├── custom_field_option.py │ │ │ ├── section.py │ │ │ ├── task.py │ │ │ ├── task_subtask.py │ │ │ ├── tasklist.py │ │ │ └── tasklist_activity_subscription.py │ │ │ └── version.py │ ├── tenant │ │ ├── __init__.py │ │ ├── service.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── avatar.py │ │ │ ├── department_id.py │ │ │ ├── product_i18n_name.py │ │ │ ├── query_tenant_product_assign_info_request.py │ │ │ ├── query_tenant_product_assign_info_request_body.py │ │ │ ├── query_tenant_product_assign_info_response.py │ │ │ ├── query_tenant_product_assign_info_response_body.py │ │ │ ├── query_tenant_request.py │ │ │ ├── query_tenant_request_body.py │ │ │ ├── query_tenant_response.py │ │ │ ├── query_tenant_response_body.py │ │ │ ├── tenant.py │ │ │ └── tenant_assign_info.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ ├── tenant.py │ │ │ └── tenant_product_assign_info.py │ │ │ └── version.py │ ├── translation │ │ ├── __init__.py │ │ ├── service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── department_id.py │ │ │ ├── detect_text_request.py │ │ │ ├── detect_text_request_body.py │ │ │ ├── detect_text_response.py │ │ │ ├── detect_text_response_body.py │ │ │ ├── term.py │ │ │ ├── text.py │ │ │ ├── translate_text_request.py │ │ │ ├── translate_text_request_body.py │ │ │ ├── translate_text_response.py │ │ │ └── translate_text_response_body.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ └── text.py │ │ │ └── version.py │ ├── vc │ │ ├── __init__.py │ │ ├── service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── alert.py │ │ │ ├── apply_reserve_request.py │ │ │ ├── apply_reserve_request_body.py │ │ │ ├── apply_reserve_response.py │ │ │ ├── apply_reserve_response_body.py │ │ │ ├── approval_config.py │ │ │ ├── approval_config_event.py │ │ │ ├── conditions.py │ │ │ ├── contact.py │ │ │ ├── create_room_level_request.py │ │ │ ├── create_room_level_response.py │ │ │ ├── create_room_level_response_body.py │ │ │ ├── create_room_request.py │ │ │ ├── create_room_response.py │ │ │ ├── create_room_response_body.py │ │ │ ├── create_scope_config_request.py │ │ │ ├── create_scope_config_response.py │ │ │ ├── create_scope_config_response_body.py │ │ │ ├── custom_list.py │ │ │ ├── del_room_level_request.py │ │ │ ├── del_room_level_request_body.py │ │ │ ├── del_room_level_response.py │ │ │ ├── del_room_level_response_body.py │ │ │ ├── delete_reserve_request.py │ │ │ ├── delete_reserve_request_body.py │ │ │ ├── delete_reserve_response.py │ │ │ ├── delete_reserve_response_body.py │ │ │ ├── delete_room_request.py │ │ │ ├── delete_room_request_body.py │ │ │ ├── delete_room_response.py │ │ │ ├── delete_room_response_body.py │ │ │ ├── department_id.py │ │ │ ├── device.py │ │ │ ├── disable_inform_config.py │ │ │ ├── download_export_request.py │ │ │ ├── download_export_request_body.py │ │ │ ├── download_export_response.py │ │ │ ├── download_export_response_body.py │ │ │ ├── end_meeting_request.py │ │ │ ├── end_meeting_request_body.py │ │ │ ├── end_meeting_response.py │ │ │ ├── end_meeting_response_body.py │ │ │ ├── get_active_meeting_reserve_request.py │ │ │ ├── get_active_meeting_reserve_request_body.py │ │ │ ├── get_active_meeting_reserve_response.py │ │ │ ├── get_active_meeting_reserve_response_body.py │ │ │ ├── get_daily_report_request.py │ │ │ ├── get_daily_report_request_body.py │ │ │ ├── get_daily_report_response.py │ │ │ ├── get_daily_report_response_body.py │ │ │ ├── get_export_request.py │ │ │ ├── get_export_request_body.py │ │ │ ├── get_export_response.py │ │ │ ├── get_export_response_body.py │ │ │ ├── get_meeting_list_request.py │ │ │ ├── get_meeting_list_request_body.py │ │ │ ├── get_meeting_list_response.py │ │ │ ├── get_meeting_list_response_body.py │ │ │ ├── get_meeting_recording_request.py │ │ │ ├── get_meeting_recording_request_body.py │ │ │ ├── get_meeting_recording_response.py │ │ │ ├── get_meeting_recording_response_body.py │ │ │ ├── get_meeting_request.py │ │ │ ├── get_meeting_request_body.py │ │ │ ├── get_meeting_response.py │ │ │ ├── get_meeting_response_body.py │ │ │ ├── get_participant_list_request.py │ │ │ ├── get_participant_list_request_body.py │ │ │ ├── get_participant_list_response.py │ │ │ ├── get_participant_list_response_body.py │ │ │ ├── get_participant_quality_list_request.py │ │ │ ├── get_participant_quality_list_request_body.py │ │ │ ├── get_participant_quality_list_response.py │ │ │ ├── get_participant_quality_list_response_body.py │ │ │ ├── get_reserve_config_admin_request.py │ │ │ ├── get_reserve_config_admin_request_body.py │ │ │ ├── get_reserve_config_admin_response.py │ │ │ ├── get_reserve_config_admin_response_body.py │ │ │ ├── get_reserve_config_disable_inform_request.py │ │ │ ├── get_reserve_config_disable_inform_request_body.py │ │ │ ├── get_reserve_config_disable_inform_response.py │ │ │ ├── get_reserve_config_disable_inform_response_body.py │ │ │ ├── get_reserve_config_form_request.py │ │ │ ├── get_reserve_config_form_request_body.py │ │ │ ├── get_reserve_config_form_response.py │ │ │ ├── get_reserve_config_form_response_body.py │ │ │ ├── get_reserve_request.py │ │ │ ├── get_reserve_request_body.py │ │ │ ├── get_reserve_response.py │ │ │ ├── get_reserve_response_body.py │ │ │ ├── get_resource_reservation_list_request.py │ │ │ ├── get_resource_reservation_list_request_body.py │ │ │ ├── get_resource_reservation_list_response.py │ │ │ ├── get_resource_reservation_list_response_body.py │ │ │ ├── get_room_level_request.py │ │ │ ├── get_room_level_request_body.py │ │ │ ├── get_room_level_response.py │ │ │ ├── get_room_level_response_body.py │ │ │ ├── get_room_request.py │ │ │ ├── get_room_request_body.py │ │ │ ├── get_room_response.py │ │ │ ├── get_room_response_body.py │ │ │ ├── get_scope_config_request.py │ │ │ ├── get_scope_config_request_body.py │ │ │ ├── get_scope_config_response.py │ │ │ ├── get_scope_config_response_body.py │ │ │ ├── get_top_user_report_request.py │ │ │ ├── get_top_user_report_request_body.py │ │ │ ├── get_top_user_report_response.py │ │ │ ├── get_top_user_report_response_body.py │ │ │ ├── invite_meeting_request.py │ │ │ ├── invite_meeting_request_body.py │ │ │ ├── invite_meeting_response.py │ │ │ ├── invite_meeting_response_body.py │ │ │ ├── key_point.py │ │ │ ├── key_point_match_detail.py │ │ │ ├── key_point_match_details.py │ │ │ ├── kickout_meeting_request.py │ │ │ ├── kickout_meeting_request_body.py │ │ │ ├── kickout_meeting_response.py │ │ │ ├── kickout_meeting_response_body.py │ │ │ ├── list_alert_request.py │ │ │ ├── list_alert_request_body.py │ │ │ ├── list_alert_response.py │ │ │ ├── list_alert_response_body.py │ │ │ ├── list_by_no_meeting_request.py │ │ │ ├── list_by_no_meeting_request_body.py │ │ │ ├── list_by_no_meeting_response.py │ │ │ ├── list_by_no_meeting_response_body.py │ │ │ ├── list_room_level_request.py │ │ │ ├── list_room_level_request_body.py │ │ │ ├── list_room_level_response.py │ │ │ ├── list_room_level_response_body.py │ │ │ ├── list_room_request.py │ │ │ ├── list_room_request_body.py │ │ │ ├── list_room_response.py │ │ │ ├── list_room_response_body.py │ │ │ ├── material.py │ │ │ ├── material_delete_result.py │ │ │ ├── material_review_result.py │ │ │ ├── material_upload_result.py │ │ │ ├── meeting.py │ │ │ ├── meeting_ability.py │ │ │ ├── meeting_analyze_output.py │ │ │ ├── meeting_event_meeting.py │ │ │ ├── meeting_event_user.py │ │ │ ├── meeting_info.py │ │ │ ├── meeting_invite_status.py │ │ │ ├── meeting_list_export_request.py │ │ │ ├── meeting_list_export_request_body.py │ │ │ ├── meeting_list_export_response.py │ │ │ ├── meeting_list_export_response_body.py │ │ │ ├── meeting_named_user.py │ │ │ ├── meeting_participant.py │ │ │ ├── meeting_participant_result.py │ │ │ ├── meeting_recording.py │ │ │ ├── meeting_related_artifacts.py │ │ │ ├── meeting_security_setting.py │ │ │ ├── meeting_user.py │ │ │ ├── meeting_webinar_setting.py │ │ │ ├── mget_room_level_request.py │ │ │ ├── mget_room_level_request_body.py │ │ │ ├── mget_room_level_response.py │ │ │ ├── mget_room_level_response_body.py │ │ │ ├── mget_room_request.py │ │ │ ├── mget_room_request_body.py │ │ │ ├── mget_room_response.py │ │ │ ├── mget_room_response_body.py │ │ │ ├── my_ai_av_plugin_callback_info.py │ │ │ ├── my_ai_av_plugin_card_status.py │ │ │ ├── my_ai_av_plugin_card_variables.py │ │ │ ├── my_ai_av_plugin_card_varibales.py │ │ │ ├── my_ai_av_plugin_context_system_info.py │ │ │ ├── my_ai_av_plugin_present_info.py │ │ │ ├── my_ai_av_plugin_scenario_context.py │ │ │ ├── my_ai_av_plugin_upload_object.py │ │ │ ├── my_ai_callback_action.py │ │ │ ├── my_ai_callback_action_value.py │ │ │ ├── my_ai_object_context.py │ │ │ ├── my_ai_plugin_context.py │ │ │ ├── my_ai_response_present.py │ │ │ ├── my_ai_room_common_result.py │ │ │ ├── my_ai_room_openapi_response.py │ │ │ ├── my_ai_sip_card_variables.py │ │ │ ├── my_ai_sip_image_property.py │ │ │ ├── my_ai_sip_present.py │ │ │ ├── my_ai_vc_analysis_result.py │ │ │ ├── my_ai_vc_meeting_content_common_result.py │ │ │ ├── my_ai_vc_meeting_extra.py │ │ │ ├── my_ai_vc_meeting_operation_result.py │ │ │ ├── my_ai_vc_meeting_recap_result.py │ │ │ ├── my_ai_vc_meeting_scenario_context.py │ │ │ ├── my_ai_vc_meeting_suggest_question_result.py │ │ │ ├── my_ai_vc_meeting_todo_task_result.py │ │ │ ├── my_ai_vc_room_extra.py │ │ │ ├── my_ai_vc_room_request_common_param.py │ │ │ ├── my_ai_vc_room_scenario_context.py │ │ │ ├── objective_check.py │ │ │ ├── objective_check_output.py │ │ │ ├── objective_check_param.py │ │ │ ├── options.py │ │ │ ├── p2_vc_meeting_all_meeting_ended_v1.py │ │ │ ├── p2_vc_meeting_all_meeting_started_v1.py │ │ │ ├── p2_vc_meeting_join_meeting_v1.py │ │ │ ├── p2_vc_meeting_leave_meeting_v1.py │ │ │ ├── p2_vc_meeting_meeting_ended_v1.py │ │ │ ├── p2_vc_meeting_meeting_started_v1.py │ │ │ ├── p2_vc_meeting_recording_ended_v1.py │ │ │ ├── p2_vc_meeting_recording_ready_v1.py │ │ │ ├── p2_vc_meeting_recording_started_v1.py │ │ │ ├── p2_vc_meeting_share_ended_v1.py │ │ │ ├── p2_vc_meeting_share_started_v1.py │ │ │ ├── p2_vc_reserve_config_updated_v1.py │ │ │ ├── p2_vc_room_created_v1.py │ │ │ ├── p2_vc_room_deleted_v1.py │ │ │ ├── p2_vc_room_level_created_v1.py │ │ │ ├── p2_vc_room_level_deleted_v1.py │ │ │ ├── p2_vc_room_level_updated_v1.py │ │ │ ├── p2_vc_room_updated_v1.py │ │ │ ├── participant.py │ │ │ ├── participant_list_export_request.py │ │ │ ├── participant_list_export_request_body.py │ │ │ ├── participant_list_export_response.py │ │ │ ├── participant_list_export_response_body.py │ │ │ ├── participant_quality.py │ │ │ ├── participant_quality_list_export_request.py │ │ │ ├── participant_quality_list_export_request_body.py │ │ │ ├── participant_quality_list_export_response.py │ │ │ ├── participant_quality_list_export_response_body.py │ │ │ ├── patch_reserve_config_admin_request.py │ │ │ ├── patch_reserve_config_admin_request_body.py │ │ │ ├── patch_reserve_config_admin_response.py │ │ │ ├── patch_reserve_config_admin_response_body.py │ │ │ ├── patch_reserve_config_disable_inform_request.py │ │ │ ├── patch_reserve_config_disable_inform_request_body.py │ │ │ ├── patch_reserve_config_disable_inform_response.py │ │ │ ├── patch_reserve_config_disable_inform_response_body.py │ │ │ ├── patch_reserve_config_form_request.py │ │ │ ├── patch_reserve_config_form_request_body.py │ │ │ ├── patch_reserve_config_form_response.py │ │ │ ├── patch_reserve_config_form_response_body.py │ │ │ ├── patch_reserve_config_request.py │ │ │ ├── patch_reserve_config_request_body.py │ │ │ ├── patch_reserve_config_response.py │ │ │ ├── patch_reserve_config_response_body.py │ │ │ ├── patch_room_level_request.py │ │ │ ├── patch_room_level_response.py │ │ │ ├── patch_room_level_response_body.py │ │ │ ├── patch_room_request.py │ │ │ ├── patch_room_response.py │ │ │ ├── patch_room_response_body.py │ │ │ ├── pstn_sip_info.py │ │ │ ├── quality_audio.py │ │ │ ├── quality_cpu_usage.py │ │ │ ├── quality_network.py │ │ │ ├── quality_video_sharing.py │ │ │ ├── query_room_config_request.py │ │ │ ├── query_room_config_request_body.py │ │ │ ├── query_room_config_response.py │ │ │ ├── query_room_config_response_body.py │ │ │ ├── recording_permission_object.py │ │ │ ├── report.py │ │ │ ├── report_meeting_daily.py │ │ │ ├── report_top_user.py │ │ │ ├── reserve.py │ │ │ ├── reserve_action_permission.py │ │ │ ├── reserve_admin_config.py │ │ │ ├── reserve_assign_host.py │ │ │ ├── reserve_call_setting.py │ │ │ ├── reserve_callee.py │ │ │ ├── reserve_correction_check_info.py │ │ │ ├── reserve_form_config.py │ │ │ ├── reserve_meeting_setting.py │ │ │ ├── reserve_permission_checker.py │ │ │ ├── reserve_scope_config.py │ │ │ ├── reserve_scope_config_event.py │ │ │ ├── reserve_scope_reserve_config_request.py │ │ │ ├── reserve_scope_reserve_config_request_body.py │ │ │ ├── reserve_scope_reserve_config_response.py │ │ │ ├── reserve_scope_reserve_config_response_body.py │ │ │ ├── reserved_room.py │ │ │ ├── resource_reservation_list_export_request.py │ │ │ ├── resource_reservation_list_export_request_body.py │ │ │ ├── resource_reservation_list_export_response.py │ │ │ ├── resource_reservation_list_export_response_body.py │ │ │ ├── room.py │ │ │ ├── room_config.py │ │ │ ├── room_digital_signage.py │ │ │ ├── room_digital_signage_material.py │ │ │ ├── room_event.py │ │ │ ├── room_level.py │ │ │ ├── room_meeting_reservation.py │ │ │ ├── room_status.py │ │ │ ├── room_status_event.py │ │ │ ├── scope_config.py │ │ │ ├── search_room_level_request.py │ │ │ ├── search_room_level_request_body.py │ │ │ ├── search_room_level_response.py │ │ │ ├── search_room_level_response_body.py │ │ │ ├── search_room_request.py │ │ │ ├── search_room_request_body.py │ │ │ ├── search_room_response.py │ │ │ ├── search_room_response_body.py │ │ │ ├── set_checkboard_access_code_room_config_request.py │ │ │ ├── set_checkboard_access_code_room_config_request_body.py │ │ │ ├── set_checkboard_access_code_room_config_response.py │ │ │ ├── set_checkboard_access_code_room_config_response_body.py │ │ │ ├── set_host_meeting_request.py │ │ │ ├── set_host_meeting_request_body.py │ │ │ ├── set_host_meeting_response.py │ │ │ ├── set_host_meeting_response_body.py │ │ │ ├── set_permission_meeting_recording_request.py │ │ │ ├── set_permission_meeting_recording_request_body.py │ │ │ ├── set_permission_meeting_recording_response.py │ │ │ ├── set_permission_meeting_recording_response_body.py │ │ │ ├── set_room_access_code_room_config_request.py │ │ │ ├── set_room_access_code_room_config_request_body.py │ │ │ ├── set_room_access_code_room_config_response.py │ │ │ ├── set_room_access_code_room_config_response_body.py │ │ │ ├── set_room_config_request.py │ │ │ ├── set_room_config_request_body.py │ │ │ ├── set_room_config_response.py │ │ │ ├── set_room_config_response_body.py │ │ │ ├── start_meeting_recording_request.py │ │ │ ├── start_meeting_recording_request_body.py │ │ │ ├── start_meeting_recording_response.py │ │ │ ├── start_meeting_recording_response_body.py │ │ │ ├── stop_meeting_recording_request.py │ │ │ ├── stop_meeting_recording_request_body.py │ │ │ ├── stop_meeting_recording_response.py │ │ │ ├── stop_meeting_recording_response_body.py │ │ │ ├── subjective_check.py │ │ │ ├── subjective_check_output.py │ │ │ ├── subscribe_department.py │ │ │ ├── subscribe_user.py │ │ │ ├── subscribe_user_event.py │ │ │ ├── time_config.py │ │ │ ├── update_reserve_request.py │ │ │ ├── update_reserve_request_body.py │ │ │ ├── update_reserve_response.py │ │ │ ├── update_reserve_response_body.py │ │ │ └── user_id.py │ │ │ ├── processor.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ ├── alert.py │ │ │ ├── export.py │ │ │ ├── meeting.py │ │ │ ├── meeting_list.py │ │ │ ├── meeting_recording.py │ │ │ ├── participant_list.py │ │ │ ├── participant_quality_list.py │ │ │ ├── report.py │ │ │ ├── reserve.py │ │ │ ├── reserve_config.py │ │ │ ├── reserve_config_admin.py │ │ │ ├── reserve_config_disable_inform.py │ │ │ ├── reserve_config_form.py │ │ │ ├── resource_reservation_list.py │ │ │ ├── room.py │ │ │ ├── room_config.py │ │ │ ├── room_level.py │ │ │ └── scope_config.py │ │ │ └── version.py │ ├── verification │ │ ├── __init__.py │ │ ├── service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── department_id.py │ │ │ ├── get_verification_request.py │ │ │ ├── get_verification_request_body.py │ │ │ ├── get_verification_response.py │ │ │ ├── get_verification_response_body.py │ │ │ ├── verification.py │ │ │ └── verification_detail.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ └── verification.py │ │ │ └── version.py │ ├── wiki │ │ ├── __init__.py │ │ ├── service.py │ │ ├── v1 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ │ ├── __init__.py │ │ │ │ ├── department_id.py │ │ │ │ ├── node.py │ │ │ │ ├── node_child.py │ │ │ │ ├── search_node_request.py │ │ │ │ ├── search_node_request_body.py │ │ │ │ ├── search_node_response.py │ │ │ │ ├── search_node_response_body.py │ │ │ │ ├── space.py │ │ │ │ ├── space_cover_info.py │ │ │ │ └── space_home_page.py │ │ │ ├── resource │ │ │ │ ├── __init__.py │ │ │ │ └── node.py │ │ │ └── version.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── copy_space_node_request.py │ │ │ ├── copy_space_node_request_body.py │ │ │ ├── copy_space_node_response.py │ │ │ ├── copy_space_node_response_body.py │ │ │ ├── create_space_member_request.py │ │ │ ├── create_space_member_response.py │ │ │ ├── create_space_member_response_body.py │ │ │ ├── create_space_node_request.py │ │ │ ├── create_space_node_response.py │ │ │ ├── create_space_node_response_body.py │ │ │ ├── create_space_request.py │ │ │ ├── create_space_response.py │ │ │ ├── create_space_response_body.py │ │ │ ├── delete_space_member_request.py │ │ │ ├── delete_space_member_response.py │ │ │ ├── delete_space_member_response_body.py │ │ │ ├── department_id.py │ │ │ ├── get_node_space_request.py │ │ │ ├── get_node_space_request_body.py │ │ │ ├── get_node_space_response.py │ │ │ ├── get_node_space_response_body.py │ │ │ ├── get_space_request.py │ │ │ ├── get_space_request_body.py │ │ │ ├── get_space_response.py │ │ │ ├── get_space_response_body.py │ │ │ ├── get_task_request.py │ │ │ ├── get_task_request_body.py │ │ │ ├── get_task_response.py │ │ │ ├── get_task_response_body.py │ │ │ ├── list_space_member_request.py │ │ │ ├── list_space_member_request_body.py │ │ │ ├── list_space_member_response.py │ │ │ ├── list_space_member_response_body.py │ │ │ ├── list_space_node_request.py │ │ │ ├── list_space_node_request_body.py │ │ │ ├── list_space_node_response.py │ │ │ ├── list_space_node_response_body.py │ │ │ ├── list_space_request.py │ │ │ ├── list_space_request_body.py │ │ │ ├── list_space_response.py │ │ │ ├── list_space_response_body.py │ │ │ ├── member.py │ │ │ ├── move_docs_to_wiki_space_node_request.py │ │ │ ├── move_docs_to_wiki_space_node_request_body.py │ │ │ ├── move_docs_to_wiki_space_node_response.py │ │ │ ├── move_docs_to_wiki_space_node_response_body.py │ │ │ ├── move_result.py │ │ │ ├── move_space_node_request.py │ │ │ ├── move_space_node_request_body.py │ │ │ ├── move_space_node_response.py │ │ │ ├── move_space_node_response_body.py │ │ │ ├── node.py │ │ │ ├── node_search.py │ │ │ ├── setting.py │ │ │ ├── space.py │ │ │ ├── task_result.py │ │ │ ├── update_space_setting_request.py │ │ │ ├── update_space_setting_response.py │ │ │ ├── update_space_setting_response_body.py │ │ │ ├── update_title_space_node_request.py │ │ │ ├── update_title_space_node_request_body.py │ │ │ ├── update_title_space_node_response.py │ │ │ └── update_title_space_node_response_body.py │ │ │ ├── resource │ │ │ ├── __init__.py │ │ │ ├── space.py │ │ │ ├── space_member.py │ │ │ ├── space_node.py │ │ │ ├── space_setting.py │ │ │ └── task.py │ │ │ └── version.py │ └── workplace │ │ ├── __init__.py │ │ ├── service.py │ │ └── v1 │ │ ├── __init__.py │ │ ├── model │ │ ├── __init__.py │ │ ├── access_data.py │ │ ├── block_access_data.py │ │ ├── custom_workplace_access_data.py │ │ ├── department_id.py │ │ ├── i18n_name.py │ │ ├── rule.py │ │ ├── search_custom_workplace_access_data_request.py │ │ ├── search_custom_workplace_access_data_request_body.py │ │ ├── search_custom_workplace_access_data_response.py │ │ ├── search_custom_workplace_access_data_response_body.py │ │ ├── search_workplace_access_data_request.py │ │ ├── search_workplace_access_data_request_body.py │ │ ├── search_workplace_access_data_response.py │ │ ├── search_workplace_access_data_response_body.py │ │ ├── search_workplace_block_access_data_request.py │ │ ├── search_workplace_block_access_data_request_body.py │ │ ├── search_workplace_block_access_data_response.py │ │ ├── search_workplace_block_access_data_response_body.py │ │ ├── template_workplace_access_data.py │ │ ├── workplace_access_data.py │ │ ├── workplace_tenant_notification.py │ │ └── workplace_user_notification.py │ │ ├── resource │ │ ├── __init__.py │ │ ├── custom_workplace_access_data.py │ │ ├── workplace_access_data.py │ │ └── workplace_block_access_data.py │ │ └── version.py ├── card │ ├── __init__.py │ ├── action_handler.py │ └── model.py ├── client.py ├── core │ ├── __init__.py │ ├── cache │ │ ├── __init__.py │ │ ├── cache.py │ │ ├── expiring_cache.py │ │ └── local_cache.py │ ├── const.py │ ├── construct.py │ ├── enum.py │ ├── env_var.py │ ├── exception.py │ ├── http │ │ ├── __init__.py │ │ ├── handler.py │ │ └── transport.py │ ├── json.py │ ├── log.py │ ├── model │ │ ├── __init__.py │ │ ├── base_request.py │ │ ├── base_response.py │ │ ├── config.py │ │ ├── error.py │ │ ├── raw_request.py │ │ ├── raw_response.py │ │ └── request_option.py │ ├── token │ │ ├── __init__.py │ │ ├── access_token_response.py │ │ ├── auth.py │ │ ├── create_isv_app_token_request.py │ │ ├── create_isv_tenant_token_request.py │ │ ├── create_self_app_token_request.py │ │ ├── create_self_tenant_token_request.py │ │ ├── create_token_request_body.py │ │ └── manager.py │ ├── type.py │ └── utils │ │ ├── __init__.py │ │ ├── decryptor.py │ │ ├── files.py │ │ └── strings.py ├── event │ ├── __init__.py │ ├── callback │ │ ├── __init__.py │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── p2_card_action_trigger.py │ │ │ └── p2_url_preview_get.py │ │ └── processor.py │ ├── context.py │ ├── custom.py │ ├── dispatcher_handler.py │ └── processor.py └── ws │ ├── __init__.py │ ├── client.py │ ├── const.py │ ├── enum.py │ ├── exception.py │ ├── model.py │ └── pb │ ├── __init__.py │ ├── gogo_pb2.py │ ├── google │ ├── __init__.py │ └── protobuf │ │ ├── __init__.py │ │ ├── any_pb2.py │ │ ├── api_pb2.py │ │ ├── compiler │ │ ├── __init__.py │ │ └── plugin_pb2.py │ │ ├── descriptor.py │ │ ├── descriptor_database.py │ │ ├── descriptor_pb2.py │ │ ├── descriptor_pool.py │ │ ├── duration_pb2.py │ │ ├── empty_pb2.py │ │ ├── field_mask_pb2.py │ │ ├── internal │ │ ├── __init__.py │ │ ├── api_implementation.cc │ │ ├── api_implementation.py │ │ ├── builder.py │ │ ├── containers.py │ │ ├── decoder.py │ │ ├── encoder.py │ │ ├── enum_type_wrapper.py │ │ ├── extension_dict.py │ │ ├── message_listener.py │ │ ├── python_message.py │ │ ├── python_protobuf.cc │ │ ├── type_checkers.py │ │ ├── well_known_types.py │ │ └── wire_format.py │ │ ├── json_format.py │ │ ├── message.py │ │ ├── message_factory.py │ │ ├── proto_api.h │ │ ├── proto_builder.py │ │ ├── pyext │ │ ├── __init__.py │ │ ├── cpp_message.py │ │ ├── descriptor.cc │ │ ├── descriptor.h │ │ ├── descriptor_containers.cc │ │ ├── descriptor_containers.h │ │ ├── descriptor_database.cc │ │ ├── descriptor_database.h │ │ ├── descriptor_pool.cc │ │ ├── descriptor_pool.h │ │ ├── extension_dict.cc │ │ ├── extension_dict.h │ │ ├── field.cc │ │ ├── field.h │ │ ├── map_container.cc │ │ ├── map_container.h │ │ ├── message.cc │ │ ├── message.h │ │ ├── message_factory.cc │ │ ├── message_factory.h │ │ ├── message_module.cc │ │ ├── repeated_composite_container.cc │ │ ├── repeated_composite_container.h │ │ ├── repeated_scalar_container.cc │ │ ├── repeated_scalar_container.h │ │ ├── safe_numerics.h │ │ ├── scoped_pyobject_ptr.h │ │ ├── unknown_fields.cc │ │ └── unknown_fields.h │ │ ├── python_protobuf.h │ │ ├── reflection.py │ │ ├── service.py │ │ ├── service_reflection.py │ │ ├── source_context_pb2.py │ │ ├── struct_pb2.py │ │ ├── symbol_database.py │ │ ├── text_encoding.py │ │ ├── text_format.py │ │ ├── timestamp_pb2.py │ │ ├── type_pb2.py │ │ ├── util │ │ ├── __init__.py │ │ ├── json_format_pb2.py │ │ └── json_format_proto3_pb2.py │ │ └── wrappers_pb2.py │ └── pbbp2_pb2.py ├── samples ├── api │ ├── acs │ │ └── v1 │ │ │ ├── create_rule_external_sample.py │ │ │ ├── create_visitor_sample.py │ │ │ ├── delete_rule_external_sample.py │ │ │ ├── delete_visitor_sample.py │ │ │ ├── device_bind_rule_external_sample.py │ │ │ ├── get_access_record_access_photo_sample.py │ │ │ ├── get_rule_external_sample.py │ │ │ ├── get_user_face_sample.py │ │ │ ├── get_user_sample.py │ │ │ ├── list_access_record_sample.py │ │ │ ├── list_device_sample.py │ │ │ ├── list_user_sample.py │ │ │ ├── patch_user_sample.py │ │ │ └── update_user_face_sample.py │ ├── admin │ │ └── v1 │ │ │ ├── create_badge_grant_sample.py │ │ │ ├── create_badge_image_sample.py │ │ │ ├── create_badge_sample.py │ │ │ ├── delete_badge_grant_sample.py │ │ │ ├── get_badge_grant_sample.py │ │ │ ├── get_badge_sample.py │ │ │ ├── list_admin_dept_stat_sample.py │ │ │ ├── list_admin_user_stat_sample.py │ │ │ ├── list_audit_info_sample.py │ │ │ ├── list_badge_grant_sample.py │ │ │ ├── list_badge_sample.py │ │ │ ├── reset_password_sample.py │ │ │ ├── update_badge_grant_sample.py │ │ │ └── update_badge_sample.py │ ├── aily │ │ └── v1 │ │ │ ├── ask_app_knowledge_sample.py │ │ │ ├── cancel_aily_session_run_sample.py │ │ │ ├── create_aily_session_aily_message_sample.py │ │ │ ├── create_aily_session_run_sample.py │ │ │ ├── create_aily_session_sample.py │ │ │ ├── create_app_data_asset_sample.py │ │ │ ├── delete_aily_session_sample.py │ │ │ ├── delete_app_data_asset_sample.py │ │ │ ├── get_aily_session_aily_message_sample.py │ │ │ ├── get_aily_session_run_sample.py │ │ │ ├── get_aily_session_sample.py │ │ │ ├── get_app_data_asset_sample.py │ │ │ ├── get_app_skill_sample.py │ │ │ ├── list_aily_session_aily_message_sample.py │ │ │ ├── list_aily_session_run_sample.py │ │ │ ├── list_app_data_asset_sample.py │ │ │ ├── list_app_data_asset_tag_sample.py │ │ │ ├── list_app_skill_sample.py │ │ │ ├── start_app_skill_sample.py │ │ │ ├── update_aily_session_sample.py │ │ │ └── upload_file_app_data_asset_sample.py │ ├── apaas │ │ └── v1 │ │ │ ├── add_assignee_approval_task_sample.py │ │ │ ├── agree_approval_task_sample.py │ │ │ ├── audit_log_list_application_audit_log_sample.py │ │ │ ├── batch_create_application_object_record_sample.py │ │ │ ├── batch_create_authorization_application_record_permission_member_sample.py │ │ │ ├── batch_create_authorization_application_role_member_sample.py │ │ │ ├── batch_delete_application_object_record_sample.py │ │ │ ├── batch_query_application_object_record_sample.py │ │ │ ├── batch_remove_authorization_application_record_permission_member_sample.py │ │ │ ├── batch_remove_authorization_application_role_member_sample.py │ │ │ ├── batch_update_application_object_record_sample.py │ │ │ ├── cancel_approval_instance_sample.py │ │ │ ├── cc_user_task_sample.py │ │ │ ├── chat_group_user_task_sample.py │ │ │ ├── create_application_object_record_sample.py │ │ │ ├── data_change_log_detail_application_audit_log_sample.py │ │ │ ├── data_change_logs_list_application_audit_log_sample.py │ │ │ ├── delete_application_object_record_sample.py │ │ │ ├── execute_application_flow_sample.py │ │ │ ├── expediting_user_task_sample.py │ │ │ ├── get_application_audit_log_sample.py │ │ │ ├── get_application_environment_variable_sample.py │ │ │ ├── get_application_role_member_sample.py │ │ │ ├── invoke_application_function_sample.py │ │ │ ├── list_app_sample.py │ │ │ ├── list_seat_activity_sample.py │ │ │ ├── list_seat_assignment_sample.py │ │ │ ├── oql_query_application_object_sample.py │ │ │ ├── patch_application_object_record_sample.py │ │ │ ├── query_application_environment_variable_sample.py │ │ │ ├── query_application_object_record_sample.py │ │ │ ├── query_user_task_sample.py │ │ │ ├── records_batch_update_workspace_table_sample.py │ │ │ ├── records_delete_workspace_table_sample.py │ │ │ ├── records_get_workspace_table_sample.py │ │ │ ├── records_patch_workspace_table_sample.py │ │ │ ├── records_post_workspace_table_sample.py │ │ │ ├── reject_approval_task_sample.py │ │ │ ├── rollback_points_user_task_sample.py │ │ │ ├── rollback_user_task_sample.py │ │ │ ├── search_application_object_sample.py │ │ │ ├── sql_commands_workspace_sample.py │ │ │ ├── transfer_approval_task_sample.py │ │ │ └── views_get_workspace_view_sample.py │ ├── application │ │ └── v6 │ │ │ ├── apply_scope_sample.py │ │ │ ├── check_white_black_list_application_visibility_sample.py │ │ │ ├── contacts_range_configuration_application_sample.py │ │ │ ├── contacts_range_suggest_application_app_version_sample.py │ │ │ ├── department_overview_application_app_usage_sample.py │ │ │ ├── get_application_app_version_sample.py │ │ │ ├── get_application_collaborators_sample.py │ │ │ ├── get_application_sample.py │ │ │ ├── list_app_recommend_rule_sample.py │ │ │ ├── list_application_app_version_sample.py │ │ │ ├── list_application_feedback_sample.py │ │ │ ├── list_application_sample.py │ │ │ ├── list_scope_sample.py │ │ │ ├── message_push_overview_application_app_usage_sample.py │ │ │ ├── overview_application_app_usage_sample.py │ │ │ ├── patch_application_app_version_sample.py │ │ │ ├── patch_application_contacts_range_sample.py │ │ │ ├── patch_application_feedback_sample.py │ │ │ ├── patch_application_sample.py │ │ │ ├── patch_application_visibility_sample.py │ │ │ ├── set_app_badge_sample.py │ │ │ ├── underauditlist_application_sample.py │ │ │ ├── update_application_collaborators_sample.py │ │ │ ├── update_application_management_sample.py │ │ │ └── update_application_owner_sample.py │ ├── approval │ │ └── v4 │ │ │ ├── add_sign_instance_sample.py │ │ │ ├── approve_task_sample.py │ │ │ ├── cancel_instance_sample.py │ │ │ ├── cc_instance_sample.py │ │ │ ├── check_external_instance_sample.py │ │ │ ├── create_approval_sample.py │ │ │ ├── create_external_approval_sample.py │ │ │ ├── create_external_instance_sample.py │ │ │ ├── create_instance_comment_sample.py │ │ │ ├── create_instance_sample.py │ │ │ ├── delete_instance_comment_sample.py │ │ │ ├── get_approval_sample.py │ │ │ ├── get_external_approval_sample.py │ │ │ ├── get_instance_sample.py │ │ │ ├── list_external_task_sample.py │ │ │ ├── list_instance_comment_sample.py │ │ │ ├── preview_instance_sample.py │ │ │ ├── query_instance_sample.py │ │ │ ├── query_task_sample.py │ │ │ ├── reject_task_sample.py │ │ │ ├── remove_instance_comment_sample.py │ │ │ ├── resubmit_task_sample.py │ │ │ ├── search_cc_instance_sample.py │ │ │ ├── search_task_sample.py │ │ │ ├── specified_rollback_instance_sample.py │ │ │ ├── subscribe_approval_sample.py │ │ │ ├── transfer_task_sample.py │ │ │ └── unsubscribe_approval_sample.py │ ├── attendance │ │ └── v1 │ │ │ ├── batch_create_temp_user_daily_shift_sample.py │ │ │ ├── batch_create_user_daily_shift_sample.py │ │ │ ├── batch_create_user_flow_sample.py │ │ │ ├── batch_del_user_flow_sample.py │ │ │ ├── create_group_sample.py │ │ │ ├── create_shift_sample.py │ │ │ ├── create_user_approval_sample.py │ │ │ ├── create_user_task_remedy_sample.py │ │ │ ├── del_report_archive_rule_sample.py │ │ │ ├── delete_group_sample.py │ │ │ ├── delete_shift_sample.py │ │ │ ├── download_file_sample.py │ │ │ ├── get_group_sample.py │ │ │ ├── get_leave_employ_expire_record_sample.py │ │ │ ├── get_shift_sample.py │ │ │ ├── get_user_flow_sample.py │ │ │ ├── list_archive_rule_sample.py │ │ │ ├── list_group_sample.py │ │ │ ├── list_shift_sample.py │ │ │ ├── list_user_group_sample.py │ │ │ ├── modify_user_setting_sample.py │ │ │ ├── patch_leave_accrual_record_sample.py │ │ │ ├── process_approval_info_sample.py │ │ │ ├── query_shift_sample.py │ │ │ ├── query_user_allowed_remedys_user_task_remedy_sample.py │ │ │ ├── query_user_approval_sample.py │ │ │ ├── query_user_daily_shift_sample.py │ │ │ ├── query_user_flow_sample.py │ │ │ ├── query_user_setting_sample.py │ │ │ ├── query_user_stats_data_sample.py │ │ │ ├── query_user_stats_field_sample.py │ │ │ ├── query_user_stats_view_sample.py │ │ │ ├── query_user_task_remedy_sample.py │ │ │ ├── query_user_task_sample.py │ │ │ ├── search_group_sample.py │ │ │ ├── update_user_stats_view_sample.py │ │ │ ├── upload_file_sample.py │ │ │ ├── upload_report_archive_rule_sample.py │ │ │ └── user_stats_fields_query_archive_rule_sample.py │ ├── auth │ │ └── v3 │ │ │ ├── create_app_access_token_sample.py │ │ │ ├── create_tenant_access_token_sample.py │ │ │ ├── internal_app_access_token_sample.py │ │ │ ├── internal_tenant_access_token_sample.py │ │ │ └── resend_app_ticket_sample.py │ ├── authen │ │ └── v1 │ │ │ ├── create_access_token_sample.py │ │ │ ├── create_oidc_access_token_sample.py │ │ │ ├── create_oidc_refresh_access_token_sample.py │ │ │ ├── create_refresh_access_token_sample.py │ │ │ └── get_user_info_sample.py │ ├── baike │ │ └── v1 │ │ │ ├── create_draft_sample.py │ │ │ ├── create_entity_sample.py │ │ │ ├── download_file_sample.py │ │ │ ├── extract_entity_sample.py │ │ │ ├── get_entity_sample.py │ │ │ ├── highlight_entity_sample.py │ │ │ ├── list_classification_sample.py │ │ │ ├── list_entity_sample.py │ │ │ ├── match_entity_sample.py │ │ │ ├── search_entity_sample.py │ │ │ ├── update_draft_sample.py │ │ │ ├── update_entity_sample.py │ │ │ └── upload_file_sample.py │ ├── base │ │ └── v2 │ │ │ ├── create_app_role_sample.py │ │ │ ├── list_app_role_sample.py │ │ │ └── update_app_role_sample.py │ ├── bitable │ │ └── v1 │ │ │ ├── batch_create_app_role_member_sample.py │ │ │ ├── batch_create_app_table_record_sample.py │ │ │ ├── batch_create_app_table_sample.py │ │ │ ├── batch_delete_app_role_member_sample.py │ │ │ ├── batch_delete_app_table_record_sample.py │ │ │ ├── batch_delete_app_table_sample.py │ │ │ ├── batch_get_app_table_record_sample.py │ │ │ ├── batch_update_app_table_record_sample.py │ │ │ ├── copy_app_dashboard_sample.py │ │ │ ├── copy_app_sample.py │ │ │ ├── create_app_role_member_sample.py │ │ │ ├── create_app_role_sample.py │ │ │ ├── create_app_sample.py │ │ │ ├── create_app_table_field_sample.py │ │ │ ├── create_app_table_record_sample.py │ │ │ ├── create_app_table_sample.py │ │ │ ├── create_app_table_view_sample.py │ │ │ ├── delete_app_role_member_sample.py │ │ │ ├── delete_app_role_sample.py │ │ │ ├── delete_app_table_field_sample.py │ │ │ ├── delete_app_table_record_sample.py │ │ │ ├── delete_app_table_sample.py │ │ │ ├── delete_app_table_view_sample.py │ │ │ ├── get_app_sample.py │ │ │ ├── get_app_table_form_sample.py │ │ │ ├── get_app_table_record_sample.py │ │ │ ├── get_app_table_view_sample.py │ │ │ ├── list_app_dashboard_sample.py │ │ │ ├── list_app_role_member_sample.py │ │ │ ├── list_app_role_sample.py │ │ │ ├── list_app_table_field_sample.py │ │ │ ├── list_app_table_form_field_sample.py │ │ │ ├── list_app_table_record_sample.py │ │ │ ├── list_app_table_sample.py │ │ │ ├── list_app_table_view_sample.py │ │ │ ├── list_app_workflow_sample.py │ │ │ ├── patch_app_table_form_field_sample.py │ │ │ ├── patch_app_table_form_sample.py │ │ │ ├── patch_app_table_sample.py │ │ │ ├── patch_app_table_view_sample.py │ │ │ ├── search_app_table_record_sample.py │ │ │ ├── update_app_role_sample.py │ │ │ ├── update_app_sample.py │ │ │ ├── update_app_table_field_sample.py │ │ │ ├── update_app_table_record_sample.py │ │ │ └── update_app_workflow_sample.py │ ├── block │ │ └── v2 │ │ │ ├── create_entity_sample.py │ │ │ ├── create_message_sample.py │ │ │ └── update_entity_sample.py │ ├── board │ │ └── v1 │ │ │ ├── create_plantuml_whiteboard_node_sample.py │ │ │ ├── create_whiteboard_node_sample.py │ │ │ ├── download_as_image_whiteboard_sample.py │ │ │ ├── list_whiteboard_node_sample.py │ │ │ ├── theme_whiteboard_sample.py │ │ │ └── update_theme_whiteboard_sample.py │ ├── calendar │ │ └── v4 │ │ │ ├── batch_delete_calendar_event_attendee_sample.py │ │ │ ├── batch_freebusy_sample.py │ │ │ ├── create_calendar_acl_sample.py │ │ │ ├── create_calendar_event_attendee_sample.py │ │ │ ├── create_calendar_event_meeting_chat_sample.py │ │ │ ├── create_calendar_event_meeting_minute_sample.py │ │ │ ├── create_calendar_event_sample.py │ │ │ ├── create_calendar_sample.py │ │ │ ├── create_exchange_binding_sample.py │ │ │ ├── create_timeoff_event_sample.py │ │ │ ├── delete_calendar_acl_sample.py │ │ │ ├── delete_calendar_event_meeting_chat_sample.py │ │ │ ├── delete_calendar_event_sample.py │ │ │ ├── delete_calendar_sample.py │ │ │ ├── delete_exchange_binding_sample.py │ │ │ ├── delete_timeoff_event_sample.py │ │ │ ├── generate_caldav_conf_setting_sample.py │ │ │ ├── get_calendar_event_sample.py │ │ │ ├── get_calendar_sample.py │ │ │ ├── get_exchange_binding_sample.py │ │ │ ├── instance_view_calendar_event_sample.py │ │ │ ├── instances_calendar_event_sample.py │ │ │ ├── list_calendar_acl_sample.py │ │ │ ├── list_calendar_event_attendee_chat_member_sample.py │ │ │ ├── list_calendar_event_attendee_sample.py │ │ │ ├── list_calendar_event_sample.py │ │ │ ├── list_calendar_sample.py │ │ │ ├── list_freebusy_sample.py │ │ │ ├── mget_calendar_sample.py │ │ │ ├── patch_calendar_event_sample.py │ │ │ ├── patch_calendar_sample.py │ │ │ ├── primary_calendar_sample.py │ │ │ ├── primarys_calendar_sample.py │ │ │ ├── reply_calendar_event_sample.py │ │ │ ├── search_calendar_event_sample.py │ │ │ ├── search_calendar_sample.py │ │ │ ├── subscribe_calendar_sample.py │ │ │ ├── subscription_calendar_acl_sample.py │ │ │ ├── subscription_calendar_event_sample.py │ │ │ ├── subscription_calendar_sample.py │ │ │ ├── unsubscribe_calendar_sample.py │ │ │ ├── unsubscription_calendar_acl_sample.py │ │ │ ├── unsubscription_calendar_event_sample.py │ │ │ └── unsubscription_calendar_sample.py │ ├── cardkit │ │ └── v1 │ │ │ ├── batch_update_card_sample.py │ │ │ ├── content_card_element_sample.py │ │ │ ├── create_card_element_sample.py │ │ │ ├── create_card_sample.py │ │ │ ├── delete_card_element_sample.py │ │ │ ├── id_convert_card_sample.py │ │ │ ├── patch_card_element_sample.py │ │ │ ├── settings_card_sample.py │ │ │ ├── update_card_element_sample.py │ │ │ └── update_card_sample.py │ ├── compensation │ │ └── v1 │ │ │ ├── batch_create_lump_sum_payment_sample.py │ │ │ ├── batch_create_recurring_payment_sample.py │ │ │ ├── batch_remove_lump_sum_payment_sample.py │ │ │ ├── batch_remove_recurring_payment_sample.py │ │ │ ├── batch_update_lump_sum_payment_sample.py │ │ │ ├── batch_update_recurring_payment_sample.py │ │ │ ├── create_archive_sample.py │ │ │ ├── list_change_reason_sample.py │ │ │ ├── list_indicator_sample.py │ │ │ ├── list_item_category_sample.py │ │ │ ├── list_item_sample.py │ │ │ ├── list_plan_sample.py │ │ │ ├── list_social_insurance_sample.py │ │ │ ├── list_social_plan_sample.py │ │ │ ├── query_archive_sample.py │ │ │ ├── query_detail_lump_sum_payment_sample.py │ │ │ ├── query_lump_sum_payment_sample.py │ │ │ ├── query_recurring_payment_sample.py │ │ │ ├── query_social_archive_adjust_record_sample.py │ │ │ ├── query_social_archive_sample.py │ │ │ └── query_social_plan_sample.py │ ├── contact │ │ └── v3 │ │ │ ├── add_group_member_sample.py │ │ │ ├── batch_add_group_member_sample.py │ │ │ ├── batch_create_functional_role_member_sample.py │ │ │ ├── batch_delete_functional_role_member_sample.py │ │ │ ├── batch_department_sample.py │ │ │ ├── batch_get_id_user_sample.py │ │ │ ├── batch_remove_group_member_sample.py │ │ │ ├── batch_user_sample.py │ │ │ ├── bind_department_unit_sample.py │ │ │ ├── children_department_sample.py │ │ │ ├── create_department_sample.py │ │ │ ├── create_employee_type_enum_sample.py │ │ │ ├── create_functional_role_sample.py │ │ │ ├── create_group_sample.py │ │ │ ├── create_job_family_sample.py │ │ │ ├── create_job_level_sample.py │ │ │ ├── create_unit_sample.py │ │ │ ├── create_user_sample.py │ │ │ ├── delete_department_sample.py │ │ │ ├── delete_employee_type_enum_sample.py │ │ │ ├── delete_functional_role_sample.py │ │ │ ├── delete_group_sample.py │ │ │ ├── delete_job_family_sample.py │ │ │ ├── delete_job_level_sample.py │ │ │ ├── delete_unit_sample.py │ │ │ ├── delete_user_sample.py │ │ │ ├── find_by_department_user_sample.py │ │ │ ├── get_department_sample.py │ │ │ ├── get_functional_role_member_sample.py │ │ │ ├── get_group_sample.py │ │ │ ├── get_job_family_sample.py │ │ │ ├── get_job_level_sample.py │ │ │ ├── get_job_title_sample.py │ │ │ ├── get_unit_sample.py │ │ │ ├── get_user_sample.py │ │ │ ├── get_work_city_sample.py │ │ │ ├── list_custom_attr_sample.py │ │ │ ├── list_department_sample.py │ │ │ ├── list_department_unit_sample.py │ │ │ ├── list_employee_type_enum_sample.py │ │ │ ├── list_functional_role_member_sample.py │ │ │ ├── list_job_family_sample.py │ │ │ ├── list_job_level_sample.py │ │ │ ├── list_job_title_sample.py │ │ │ ├── list_scope_sample.py │ │ │ ├── list_unit_sample.py │ │ │ ├── list_user_sample.py │ │ │ ├── list_work_city_sample.py │ │ │ ├── member_belong_group_sample.py │ │ │ ├── parent_department_sample.py │ │ │ ├── patch_department_sample.py │ │ │ ├── patch_group_sample.py │ │ │ ├── patch_unit_sample.py │ │ │ ├── patch_user_sample.py │ │ │ ├── remove_group_member_sample.py │ │ │ ├── resurrect_user_sample.py │ │ │ ├── scopes_functional_role_member_sample.py │ │ │ ├── search_department_sample.py │ │ │ ├── simplelist_group_member_sample.py │ │ │ ├── simplelist_group_sample.py │ │ │ ├── unbind_department_chat_department_sample.py │ │ │ ├── unbind_department_unit_sample.py │ │ │ ├── update_department_id_department_sample.py │ │ │ ├── update_department_sample.py │ │ │ ├── update_employee_type_enum_sample.py │ │ │ ├── update_functional_role_sample.py │ │ │ ├── update_job_family_sample.py │ │ │ ├── update_job_level_sample.py │ │ │ ├── update_user_id_user_sample.py │ │ │ └── update_user_sample.py │ ├── corehr │ │ ├── v1 │ │ │ ├── add_enum_option_common_data_meta_data_sample.py │ │ │ ├── add_role_assign_authorization_sample.py │ │ │ ├── calendar_by_scope_leave_sample.py │ │ │ ├── convert_common_data_id_sample.py │ │ │ ├── create_company_sample.py │ │ │ ├── create_contract_sample.py │ │ │ ├── create_department_sample.py │ │ │ ├── create_employee_type_sample.py │ │ │ ├── create_employment_sample.py │ │ │ ├── create_job_change_sample.py │ │ │ ├── create_job_data_sample.py │ │ │ ├── create_job_family_sample.py │ │ │ ├── create_job_level_sample.py │ │ │ ├── create_job_sample.py │ │ │ ├── create_leave_granting_record_sample.py │ │ │ ├── create_location_sample.py │ │ │ ├── create_national_id_type_sample.py │ │ │ ├── create_person_sample.py │ │ │ ├── create_working_hours_type_sample.py │ │ │ ├── delete_company_sample.py │ │ │ ├── delete_contract_sample.py │ │ │ ├── delete_department_sample.py │ │ │ ├── delete_employee_type_sample.py │ │ │ ├── delete_employment_sample.py │ │ │ ├── delete_job_data_sample.py │ │ │ ├── delete_job_family_sample.py │ │ │ ├── delete_job_level_sample.py │ │ │ ├── delete_job_sample.py │ │ │ ├── delete_leave_granting_record_sample.py │ │ │ ├── delete_location_sample.py │ │ │ ├── delete_national_id_type_sample.py │ │ │ ├── delete_person_sample.py │ │ │ ├── delete_pre_hire_sample.py │ │ │ ├── delete_working_hours_type_sample.py │ │ │ ├── edit_enum_option_common_data_meta_data_sample.py │ │ │ ├── get_by_param_authorization_sample.py │ │ │ ├── get_by_param_custom_field_sample.py │ │ │ ├── get_company_sample.py │ │ │ ├── get_contract_sample.py │ │ │ ├── get_country_region_sample.py │ │ │ ├── get_currency_sample.py │ │ │ ├── get_department_sample.py │ │ │ ├── get_employee_type_sample.py │ │ │ ├── get_file_sample.py │ │ │ ├── get_job_data_sample.py │ │ │ ├── get_job_family_sample.py │ │ │ ├── get_job_level_sample.py │ │ │ ├── get_job_sample.py │ │ │ ├── get_location_sample.py │ │ │ ├── get_national_id_type_sample.py │ │ │ ├── get_person_sample.py │ │ │ ├── get_pre_hire_sample.py │ │ │ ├── get_process_form_variable_data_sample.py │ │ │ ├── get_subdivision_sample.py │ │ │ ├── get_subregion_sample.py │ │ │ ├── get_working_hours_type_sample.py │ │ │ ├── leave_balances_leave_sample.py │ │ │ ├── leave_request_history_leave_sample.py │ │ │ ├── leave_types_leave_sample.py │ │ │ ├── list_company_sample.py │ │ │ ├── list_contract_sample.py │ │ │ ├── list_country_region_sample.py │ │ │ ├── list_currency_sample.py │ │ │ ├── list_department_sample.py │ │ │ ├── list_employee_type_sample.py │ │ │ ├── list_job_data_sample.py │ │ │ ├── list_job_family_sample.py │ │ │ ├── list_job_level_sample.py │ │ │ ├── list_job_sample.py │ │ │ ├── list_location_sample.py │ │ │ ├── list_national_id_type_sample.py │ │ │ ├── list_object_api_name_custom_field_sample.py │ │ │ ├── list_pre_hire_sample.py │ │ │ ├── list_security_group_sample.py │ │ │ ├── list_subdivision_sample.py │ │ │ ├── list_subregion_sample.py │ │ │ ├── list_working_hours_type_sample.py │ │ │ ├── match_compensation_standard_sample.py │ │ │ ├── patch_company_sample.py │ │ │ ├── patch_contract_sample.py │ │ │ ├── patch_department_sample.py │ │ │ ├── patch_employee_type_sample.py │ │ │ ├── patch_employment_sample.py │ │ │ ├── patch_job_data_sample.py │ │ │ ├── patch_job_family_sample.py │ │ │ ├── patch_job_level_sample.py │ │ │ ├── patch_job_sample.py │ │ │ ├── patch_national_id_type_sample.py │ │ │ ├── patch_person_sample.py │ │ │ ├── patch_pre_hire_sample.py │ │ │ ├── patch_working_hours_type_sample.py │ │ │ ├── query_authorization_sample.py │ │ │ ├── query_custom_field_sample.py │ │ │ ├── query_offboarding_sample.py │ │ │ ├── query_security_group_sample.py │ │ │ ├── query_transfer_reason_sample.py │ │ │ ├── query_transfer_type_sample.py │ │ │ ├── remove_role_assign_authorization_sample.py │ │ │ ├── search_assigned_user_sample.py │ │ │ ├── search_offboarding_sample.py │ │ │ ├── submit_offboarding_sample.py │ │ │ ├── update_role_assign_authorization_sample.py │ │ │ ├── upload_person_sample.py │ │ │ ├── work_calendar_date_leave_sample.py │ │ │ └── work_calendar_leave_sample.py │ │ └── v2 │ │ │ ├── active_company_sample.py │ │ │ ├── active_custom_org_sample.py │ │ │ ├── active_location_sample.py │ │ │ ├── active_pathway_sample.py │ │ │ ├── active_position_sample.py │ │ │ ├── batch_delete_report_detail_row_sample.py │ │ │ ├── batch_delete_workforce_plan_detail_row_sample.py │ │ │ ├── batch_employees_additional_job_sample.py │ │ │ ├── batch_get_company_sample.py │ │ │ ├── batch_get_department_sample.py │ │ │ ├── batch_get_employee_sample.py │ │ │ ├── batch_get_employees_bp_sample.py │ │ │ ├── batch_get_employees_job_data_sample.py │ │ │ ├── batch_get_job_family_sample.py │ │ │ ├── batch_get_job_level_sample.py │ │ │ ├── batch_get_job_sample.py │ │ │ ├── batch_get_location_sample.py │ │ │ ├── batch_get_pathway_sample.py │ │ │ ├── batch_query_cost_allocation_sample.py │ │ │ ├── batch_query_default_cost_center_sample.py │ │ │ ├── batch_save_report_detail_row_sample.py │ │ │ ├── batch_save_workforce_plan_detail_row_sample.py │ │ │ ├── batch_v2_workforce_plan_detail_sample.py │ │ │ ├── batch_workforce_plan_detail_sample.py │ │ │ ├── complete_pre_hire_sample.py │ │ │ ├── create_cost_center_sample.py │ │ │ ├── create_cost_center_version_sample.py │ │ │ ├── create_custom_org_sample.py │ │ │ ├── create_employee_sample.py │ │ │ ├── create_employees_additional_job_sample.py │ │ │ ├── create_employees_international_assignment_sample.py │ │ │ ├── create_job_change_sample.py │ │ │ ├── create_job_grade_sample.py │ │ │ ├── create_location_address_sample.py │ │ │ ├── create_pathway_sample.py │ │ │ ├── create_person_sample.py │ │ │ ├── create_position_sample.py │ │ │ ├── create_pre_hire_sample.py │ │ │ ├── create_probation_assessment_sample.py │ │ │ ├── create_version_cost_allocation_sample.py │ │ │ ├── create_version_default_cost_center_sample.py │ │ │ ├── del_position_position_sample.py │ │ │ ├── delete_cost_center_sample.py │ │ │ ├── delete_cost_center_version_sample.py │ │ │ ├── delete_department_sample.py │ │ │ ├── delete_employees_additional_job_sample.py │ │ │ ├── delete_employees_international_assignment_sample.py │ │ │ ├── delete_job_grade_sample.py │ │ │ ├── delete_location_address_sample.py │ │ │ ├── delete_org_custom_org_sample.py │ │ │ ├── delete_pathway_sample.py │ │ │ ├── delete_pre_hire_sample.py │ │ │ ├── delete_probation_assessment_sample.py │ │ │ ├── download_signature_file_sample.py │ │ │ ├── edit_offboarding_sample.py │ │ │ ├── enable_disable_assessment_probation_sample.py │ │ │ ├── flow_variable_data_process_sample.py │ │ │ ├── get_approval_groups_sample.py │ │ │ ├── get_by_department_bp_sample.py │ │ │ ├── get_draft_sample.py │ │ │ ├── get_job_sample.py │ │ │ ├── get_process_form_variable_data_sample.py │ │ │ ├── get_process_sample.py │ │ │ ├── list_approver_sample.py │ │ │ ├── list_bp_sample.py │ │ │ ├── list_by_biz_id_signature_file_sample.py │ │ │ ├── list_by_file_id_signature_node_sample.py │ │ │ ├── list_employees_international_assignment_sample.py │ │ │ ├── list_job_sample.py │ │ │ ├── list_process_sample.py │ │ │ ├── list_signature_file_sample.py │ │ │ ├── list_signature_template_info_with_thumbnail_sample.py │ │ │ ├── list_workforce_plan_sample.py │ │ │ ├── open_query_department_change_list_by_ids_approval_groups_sample.py │ │ │ ├── open_query_job_change_list_by_ids_approval_groups_sample.py │ │ │ ├── open_query_position_change_list_by_ids_approval_groups_sample.py │ │ │ ├── parents_department_sample.py │ │ │ ├── patch_cost_center_sample.py │ │ │ ├── patch_cost_center_version_sample.py │ │ │ ├── patch_custom_org_sample.py │ │ │ ├── patch_department_sample.py │ │ │ ├── patch_employees_additional_job_sample.py │ │ │ ├── patch_employees_international_assignment_sample.py │ │ │ ├── patch_job_grade_sample.py │ │ │ ├── patch_location_address_sample.py │ │ │ ├── patch_location_sample.py │ │ │ ├── patch_pathway_sample.py │ │ │ ├── patch_person_sample.py │ │ │ ├── patch_position_sample.py │ │ │ ├── patch_pre_hire_sample.py │ │ │ ├── patch_probation_assessment_sample.py │ │ │ ├── query_custom_org_sample.py │ │ │ ├── query_employees_job_data_sample.py │ │ │ ├── query_job_grade_sample.py │ │ │ ├── query_multi_timeline_department_sample.py │ │ │ ├── query_multi_timeline_job_family_sample.py │ │ │ ├── query_multi_timeline_job_sample.py │ │ │ ├── query_operation_logs_department_sample.py │ │ │ ├── query_position_sample.py │ │ │ ├── query_pre_hire_sample.py │ │ │ ├── query_recent_change_company_sample.py │ │ │ ├── query_recent_change_cost_center_sample.py │ │ │ ├── query_recent_change_custom_org_sample.py │ │ │ ├── query_recent_change_department_sample.py │ │ │ ├── query_recent_change_job_family_sample.py │ │ │ ├── query_recent_change_job_grade_sample.py │ │ │ ├── query_recent_change_job_level_sample.py │ │ │ ├── query_recent_change_job_sample.py │ │ │ ├── query_recent_change_location_sample.py │ │ │ ├── query_recent_change_position_sample.py │ │ │ ├── query_signature_file_sample.py │ │ │ ├── query_timeline_department_sample.py │ │ │ ├── remove_version_cost_allocation_sample.py │ │ │ ├── remove_version_default_cost_center_sample.py │ │ │ ├── restore_flow_instance_pre_hire_sample.py │ │ │ ├── revoke_job_change_sample.py │ │ │ ├── revoke_offboarding_sample.py │ │ │ ├── search_basic_info_bank_branch_sample.py │ │ │ ├── search_basic_info_bank_sample.py │ │ │ ├── search_basic_info_city_sample.py │ │ │ ├── search_basic_info_country_region_sample.py │ │ │ ├── search_basic_info_country_region_subdivision_sample.py │ │ │ ├── search_basic_info_currency_sample.py │ │ │ ├── search_basic_info_district_sample.py │ │ │ ├── search_basic_info_language_sample.py │ │ │ ├── search_basic_info_nationality_sample.py │ │ │ ├── search_basic_info_time_zone_sample.py │ │ │ ├── search_contract_sample.py │ │ │ ├── search_cost_center_sample.py │ │ │ ├── search_department_sample.py │ │ │ ├── search_employee_sample.py │ │ │ ├── search_enum_sample.py │ │ │ ├── search_job_change_sample.py │ │ │ ├── search_pre_hire_sample.py │ │ │ ├── search_probation_sample.py │ │ │ ├── search_signature_template_sample.py │ │ │ ├── submit_probation_sample.py │ │ │ ├── submit_v2_offboarding_sample.py │ │ │ ├── terminate_signature_file_sample.py │ │ │ ├── transform_onboarding_task_pre_hire_sample.py │ │ │ ├── transit_task_pre_hire_sample.py │ │ │ ├── tree_department_sample.py │ │ │ ├── update_process_approver_sample.py │ │ │ ├── update_process_extra_sample.py │ │ │ ├── update_process_revoke_sample.py │ │ │ ├── update_process_transfer_sample.py │ │ │ ├── update_process_withdraw_sample.py │ │ │ ├── update_rule_custom_org_sample.py │ │ │ ├── update_version_cost_allocation_sample.py │ │ │ ├── update_version_default_cost_center_sample.py │ │ │ ├── withdraw_onboarding_pre_hire_sample.py │ │ │ └── withdraw_probation_sample.py │ ├── docs │ │ └── v1 │ │ │ └── get_content_sample.py │ ├── document_ai │ │ └── v1 │ │ │ ├── field_extraction_contract_sample.py │ │ │ ├── parse_resume_sample.py │ │ │ ├── recognize_bank_card_sample.py │ │ │ ├── recognize_business_card_sample.py │ │ │ ├── recognize_business_license_sample.py │ │ │ ├── recognize_chinese_passport_sample.py │ │ │ ├── recognize_driving_license_sample.py │ │ │ ├── recognize_food_manage_license_sample.py │ │ │ ├── recognize_food_produce_license_sample.py │ │ │ ├── recognize_health_certificate_sample.py │ │ │ ├── recognize_hkm_mainland_travel_permit_sample.py │ │ │ ├── recognize_id_card_sample.py │ │ │ ├── recognize_taxi_invoice_sample.py │ │ │ ├── recognize_train_invoice_sample.py │ │ │ ├── recognize_tw_mainland_travel_permit_sample.py │ │ │ ├── recognize_vat_invoice_sample.py │ │ │ ├── recognize_vehicle_invoice_sample.py │ │ │ └── recognize_vehicle_license_sample.py │ ├── docx │ │ └── v1 │ │ │ ├── batch_delete_chat_announcement_block_children_sample.py │ │ │ ├── batch_delete_document_block_children_sample.py │ │ │ ├── batch_update_chat_announcement_block_sample.py │ │ │ ├── batch_update_document_block_sample.py │ │ │ ├── convert_document_sample.py │ │ │ ├── create_chat_announcement_block_children_sample.py │ │ │ ├── create_document_block_children_sample.py │ │ │ ├── create_document_block_descendant_sample.py │ │ │ ├── create_document_sample.py │ │ │ ├── get_chat_announcement_block_children_sample.py │ │ │ ├── get_chat_announcement_block_sample.py │ │ │ ├── get_chat_announcement_sample.py │ │ │ ├── get_document_block_children_sample.py │ │ │ ├── get_document_block_sample.py │ │ │ ├── get_document_sample.py │ │ │ ├── list_chat_announcement_block_sample.py │ │ │ ├── list_document_block_sample.py │ │ │ ├── patch_document_block_sample.py │ │ │ └── raw_content_document_sample.py │ ├── drive │ │ ├── v1 │ │ │ ├── auth_permission_member_sample.py │ │ │ ├── batch_create_permission_member_sample.py │ │ │ ├── batch_get_tmp_download_url_media_sample.py │ │ │ ├── batch_query_file_comment_sample.py │ │ │ ├── batch_query_meta_sample.py │ │ │ ├── copy_file_sample.py │ │ │ ├── create_export_task_sample.py │ │ │ ├── create_file_comment_sample.py │ │ │ ├── create_file_subscription_sample.py │ │ │ ├── create_file_version_sample.py │ │ │ ├── create_folder_file_sample.py │ │ │ ├── create_import_task_sample.py │ │ │ ├── create_permission_member_sample.py │ │ │ ├── create_permission_public_password_sample.py │ │ │ ├── create_shortcut_file_sample.py │ │ │ ├── delete_file_comment_reply_sample.py │ │ │ ├── delete_file_sample.py │ │ │ ├── delete_file_version_sample.py │ │ │ ├── delete_permission_member_sample.py │ │ │ ├── delete_permission_public_password_sample.py │ │ │ ├── delete_subscribe_file_sample.py │ │ │ ├── download_export_task_sample.py │ │ │ ├── download_file_sample.py │ │ │ ├── download_media_sample.py │ │ │ ├── get_export_task_sample.py │ │ │ ├── get_file_comment_sample.py │ │ │ ├── get_file_statistics_sample.py │ │ │ ├── get_file_subscription_sample.py │ │ │ ├── get_file_version_sample.py │ │ │ ├── get_import_task_sample.py │ │ │ ├── get_permission_public_sample.py │ │ │ ├── get_subscribe_file_sample.py │ │ │ ├── list_file_comment_reply_sample.py │ │ │ ├── list_file_comment_sample.py │ │ │ ├── list_file_sample.py │ │ │ ├── list_file_version_sample.py │ │ │ ├── list_file_view_record_sample.py │ │ │ ├── list_permission_member_sample.py │ │ │ ├── move_file_sample.py │ │ │ ├── patch_file_comment_sample.py │ │ │ ├── patch_file_subscription_sample.py │ │ │ ├── patch_permission_public_sample.py │ │ │ ├── subscribe_file_sample.py │ │ │ ├── task_check_file_sample.py │ │ │ ├── transfer_owner_permission_member_sample.py │ │ │ ├── update_file_comment_reply_sample.py │ │ │ ├── update_permission_member_sample.py │ │ │ ├── update_permission_public_password_sample.py │ │ │ ├── upload_all_file_sample.py │ │ │ ├── upload_all_media_sample.py │ │ │ ├── upload_finish_file_sample.py │ │ │ ├── upload_finish_media_sample.py │ │ │ ├── upload_part_file_sample.py │ │ │ ├── upload_part_media_sample.py │ │ │ ├── upload_prepare_file_sample.py │ │ │ └── upload_prepare_media_sample.py │ │ └── v2 │ │ │ ├── get_permission_public_sample.py │ │ │ ├── list_file_like_sample.py │ │ │ └── patch_permission_public_sample.py │ ├── ehr │ │ └── v1 │ │ │ ├── get_attachment_sample.py │ │ │ └── list_employee_sample.py │ ├── event │ │ └── v1 │ │ │ └── list_outbound_ip_sample.py │ ├── helpdesk │ │ └── v1 │ │ │ ├── agent_email_agent_sample.py │ │ │ ├── answer_user_query_ticket_sample.py │ │ │ ├── cancel_approve_notification_sample.py │ │ │ ├── cancel_send_notification_sample.py │ │ │ ├── create_agent_schedule_sample.py │ │ │ ├── create_agent_skill_sample.py │ │ │ ├── create_bot_message_sample.py │ │ │ ├── create_category_sample.py │ │ │ ├── create_faq_sample.py │ │ │ ├── create_notification_sample.py │ │ │ ├── create_ticket_customized_field_sample.py │ │ │ ├── create_ticket_message_sample.py │ │ │ ├── customized_fields_ticket_sample.py │ │ │ ├── delete_agent_schedules_sample.py │ │ │ ├── delete_agent_skill_sample.py │ │ │ ├── delete_category_sample.py │ │ │ ├── delete_faq_sample.py │ │ │ ├── delete_ticket_customized_field_sample.py │ │ │ ├── execute_send_notification_sample.py │ │ │ ├── faq_image_faq_sample.py │ │ │ ├── get_agent_schedules_sample.py │ │ │ ├── get_agent_skill_sample.py │ │ │ ├── get_category_sample.py │ │ │ ├── get_faq_sample.py │ │ │ ├── get_notification_sample.py │ │ │ ├── get_ticket_customized_field_sample.py │ │ │ ├── get_ticket_sample.py │ │ │ ├── list_agent_schedule_sample.py │ │ │ ├── list_agent_skill_rule_sample.py │ │ │ ├── list_agent_skill_sample.py │ │ │ ├── list_category_sample.py │ │ │ ├── list_faq_sample.py │ │ │ ├── list_ticket_customized_field_sample.py │ │ │ ├── list_ticket_message_sample.py │ │ │ ├── list_ticket_sample.py │ │ │ ├── patch_agent_sample.py │ │ │ ├── patch_agent_schedules_sample.py │ │ │ ├── patch_agent_skill_sample.py │ │ │ ├── patch_category_sample.py │ │ │ ├── patch_faq_sample.py │ │ │ ├── patch_notification_sample.py │ │ │ ├── patch_ticket_customized_field_sample.py │ │ │ ├── preview_notification_sample.py │ │ │ ├── search_faq_sample.py │ │ │ ├── start_service_ticket_sample.py │ │ │ ├── submit_approve_notification_sample.py │ │ │ ├── subscribe_event_sample.py │ │ │ ├── ticket_image_ticket_sample.py │ │ │ ├── unsubscribe_event_sample.py │ │ │ └── update_ticket_sample.py │ ├── hire │ │ ├── v1 │ │ │ ├── add_to_folder_talent_sample.py │ │ │ ├── batch_change_talent_pool_talent_pool_sample.py │ │ │ ├── batch_delete_eco_account_custom_field_sample.py │ │ │ ├── batch_delete_eco_background_check_custom_field_sample.py │ │ │ ├── batch_delete_eco_background_check_package_sample.py │ │ │ ├── batch_delete_eco_exam_paper_sample.py │ │ │ ├── batch_get_id_talent_sample.py │ │ │ ├── batch_query_agency_sample.py │ │ │ ├── batch_query_background_check_order_sample.py │ │ │ ├── batch_query_external_background_check_sample.py │ │ │ ├── batch_query_external_interview_sample.py │ │ │ ├── batch_query_external_offer_sample.py │ │ │ ├── batch_update_eco_account_custom_field_sample.py │ │ │ ├── batch_update_eco_background_check_custom_field_sample.py │ │ │ ├── batch_update_eco_background_check_package_sample.py │ │ │ ├── batch_update_eco_exam_paper_sample.py │ │ │ ├── batch_update_job_manager_sample.py │ │ │ ├── cancel_eco_background_check_sample.py │ │ │ ├── cancel_onboard_application_sample.py │ │ │ ├── change_talent_block_talent_blocklist_sample.py │ │ │ ├── close_job_sample.py │ │ │ ├── combined_create_job_sample.py │ │ │ ├── combined_create_talent_sample.py │ │ │ ├── combined_update_job_sample.py │ │ │ ├── combined_update_talent_sample.py │ │ │ ├── config_job_sample.py │ │ │ ├── create_application_sample.py │ │ │ ├── create_attachment_sample.py │ │ │ ├── create_by_attachment_website_delivery_sample.py │ │ │ ├── create_by_resume_website_delivery_sample.py │ │ │ ├── create_eco_account_custom_field_sample.py │ │ │ ├── create_eco_background_check_custom_field_sample.py │ │ │ ├── create_eco_background_check_package_sample.py │ │ │ ├── create_eco_exam_paper_sample.py │ │ │ ├── create_exam_sample.py │ │ │ ├── create_external_application_sample.py │ │ │ ├── create_external_background_check_sample.py │ │ │ ├── create_external_interview_assessment_sample.py │ │ │ ├── create_external_interview_sample.py │ │ │ ├── create_external_offer_sample.py │ │ │ ├── create_external_referral_reward_sample.py │ │ │ ├── create_job_requirement_sample.py │ │ │ ├── create_note_sample.py │ │ │ ├── create_offer_sample.py │ │ │ ├── create_referral_account_sample.py │ │ │ ├── create_talent_external_info_sample.py │ │ │ ├── create_tripartite_agreement_sample.py │ │ │ ├── create_website_channel_sample.py │ │ │ ├── create_website_site_user_sample.py │ │ │ ├── deactivate_referral_account_sample.py │ │ │ ├── delete_external_application_sample.py │ │ │ ├── delete_external_background_check_sample.py │ │ │ ├── delete_external_interview_sample.py │ │ │ ├── delete_external_offer_sample.py │ │ │ ├── delete_external_referral_reward_sample.py │ │ │ ├── delete_job_requirement_sample.py │ │ │ ├── delete_note_sample.py │ │ │ ├── delete_tripartite_agreement_sample.py │ │ │ ├── delete_website_channel_sample.py │ │ │ ├── enable_referral_account_sample.py │ │ │ ├── get_account_assets_referral_account_sample.py │ │ │ ├── get_agency_account_agency_sample.py │ │ │ ├── get_agency_sample.py │ │ │ ├── get_application_sample.py │ │ │ ├── get_attachment_sample.py │ │ │ ├── get_by_application_employee_sample.py │ │ │ ├── get_by_application_referral_sample.py │ │ │ ├── get_by_talent_interview_sample.py │ │ │ ├── get_detail_application_sample.py │ │ │ ├── get_detail_job_sample.py │ │ │ ├── get_employee_sample.py │ │ │ ├── get_interview_record_attachment_sample.py │ │ │ ├── get_interview_record_sample.py │ │ │ ├── get_job_manager_sample.py │ │ │ ├── get_job_sample.py │ │ │ ├── get_minutes_sample.py │ │ │ ├── get_note_sample.py │ │ │ ├── get_offer_application_form_sample.py │ │ │ ├── get_offer_sample.py │ │ │ ├── get_offer_schema_sample.py │ │ │ ├── get_referral_website_job_post_sample.py │ │ │ ├── get_role_sample.py │ │ │ ├── get_talent_sample.py │ │ │ ├── get_website_delivery_task_sample.py │ │ │ ├── get_website_job_post_sample.py │ │ │ ├── intern_offer_status_offer_sample.py │ │ │ ├── list_application_interview_sample.py │ │ │ ├── list_application_sample.py │ │ │ ├── list_background_check_order_sample.py │ │ │ ├── list_by_id_job_requirement_sample.py │ │ │ ├── list_evaluation_sample.py │ │ │ ├── list_evaluation_task_sample.py │ │ │ ├── list_exam_marking_task_sample.py │ │ │ ├── list_external_application_sample.py │ │ │ ├── list_interview_feedback_form_sample.py │ │ │ ├── list_interview_record_sample.py │ │ │ ├── list_interview_registration_schema_sample.py │ │ │ ├── list_interview_round_type_sample.py │ │ │ ├── list_interview_sample.py │ │ │ ├── list_interview_task_sample.py │ │ │ ├── list_interviewer_sample.py │ │ │ ├── list_job_function_sample.py │ │ │ ├── list_job_process_sample.py │ │ │ ├── list_job_requirement_sample.py │ │ │ ├── list_job_requirement_schema_sample.py │ │ │ ├── list_job_sample.py │ │ │ ├── list_job_schema_sample.py │ │ │ ├── list_job_type_sample.py │ │ │ ├── list_location_sample.py │ │ │ ├── list_note_sample.py │ │ │ ├── list_offer_application_form_sample.py │ │ │ ├── list_offer_approval_template_sample.py │ │ │ ├── list_offer_sample.py │ │ │ ├── list_portal_apply_schema_sample.py │ │ │ ├── list_questionnaire_sample.py │ │ │ ├── list_referral_website_job_post_sample.py │ │ │ ├── list_registration_schema_sample.py │ │ │ ├── list_resume_source_sample.py │ │ │ ├── list_role_sample.py │ │ │ ├── list_subject_sample.py │ │ │ ├── list_talent_folder_sample.py │ │ │ ├── list_talent_sample.py │ │ │ ├── list_talent_tag_sample.py │ │ │ ├── list_termination_reason_sample.py │ │ │ ├── list_todo_sample.py │ │ │ ├── list_tripartite_agreement_sample.py │ │ │ ├── list_user_role_sample.py │ │ │ ├── list_website_channel_sample.py │ │ │ ├── list_website_job_post_sample.py │ │ │ ├── list_website_sample.py │ │ │ ├── login_info_eco_exam_sample.py │ │ │ ├── move_talent_talent_pool_sample.py │ │ │ ├── offer_application_sample.py │ │ │ ├── offer_status_offer_sample.py │ │ │ ├── onboard_status_talent_sample.py │ │ │ ├── open_job_sample.py │ │ │ ├── operate_agency_account_agency_sample.py │ │ │ ├── patch_ehr_import_task_sample.py │ │ │ ├── patch_employee_sample.py │ │ │ ├── patch_external_interview_assessment_sample.py │ │ │ ├── patch_interviewer_sample.py │ │ │ ├── patch_note_sample.py │ │ │ ├── preview_attachment_sample.py │ │ │ ├── protect_agency_sample.py │ │ │ ├── protect_search_agency_sample.py │ │ │ ├── publish_advertisement_sample.py │ │ │ ├── query_agency_sample.py │ │ │ ├── query_location_sample.py │ │ │ ├── query_talent_object_sample.py │ │ │ ├── reconciliation_referral_account_sample.py │ │ │ ├── recover_application_sample.py │ │ │ ├── recruiter_job_sample.py │ │ │ ├── remove_to_folder_talent_sample.py │ │ │ ├── search_diversity_inclusion_sample.py │ │ │ ├── search_job_publish_record_sample.py │ │ │ ├── search_referral_sample.py │ │ │ ├── search_talent_operation_log_sample.py │ │ │ ├── search_talent_pool_sample.py │ │ │ ├── search_test_sample.py │ │ │ ├── search_website_job_post_sample.py │ │ │ ├── tag_talent_sample.py │ │ │ ├── terminate_application_sample.py │ │ │ ├── transfer_onboard_application_sample.py │ │ │ ├── transfer_stage_application_sample.py │ │ │ ├── update_config_job_sample.py │ │ │ ├── update_external_application_sample.py │ │ │ ├── update_external_background_check_sample.py │ │ │ ├── update_external_interview_sample.py │ │ │ ├── update_external_offer_sample.py │ │ │ ├── update_job_requirement_sample.py │ │ │ ├── update_offer_custom_field_sample.py │ │ │ ├── update_offer_sample.py │ │ │ ├── update_progress_eco_background_check_sample.py │ │ │ ├── update_result_eco_background_check_sample.py │ │ │ ├── update_result_eco_exam_sample.py │ │ │ ├── update_talent_external_info_sample.py │ │ │ ├── update_tripartite_agreement_sample.py │ │ │ ├── update_website_channel_sample.py │ │ │ └── withdraw_referral_account_sample.py │ │ └── v2 │ │ │ ├── get_interview_record_sample.py │ │ │ ├── get_talent_sample.py │ │ │ └── list_interview_record_sample.py │ ├── human_authentication │ │ └── v1 │ │ │ └── create_identity_sample.py │ ├── im │ │ ├── v1 │ │ │ ├── add_managers_chat_managers_sample.py │ │ │ ├── create_chat_members_sample.py │ │ │ ├── create_chat_menu_tree_sample.py │ │ │ ├── create_chat_sample.py │ │ │ ├── create_chat_tab_sample.py │ │ │ ├── create_file_sample.py │ │ │ ├── create_image_sample.py │ │ │ ├── create_message_reaction_sample.py │ │ │ ├── create_message_sample.py │ │ │ ├── create_pin_sample.py │ │ │ ├── delete_batch_message_sample.py │ │ │ ├── delete_chat_members_sample.py │ │ │ ├── delete_chat_menu_tree_sample.py │ │ │ ├── delete_chat_sample.py │ │ │ ├── delete_managers_chat_managers_sample.py │ │ │ ├── delete_message_reaction_sample.py │ │ │ ├── delete_message_sample.py │ │ │ ├── delete_pin_sample.py │ │ │ ├── delete_tabs_chat_tab_sample.py │ │ │ ├── delete_top_notice_chat_top_notice_sample.py │ │ │ ├── forward_message_sample.py │ │ │ ├── forward_thread_sample.py │ │ │ ├── get_chat_announcement_sample.py │ │ │ ├── get_chat_members_sample.py │ │ │ ├── get_chat_menu_tree_sample.py │ │ │ ├── get_chat_moderation_sample.py │ │ │ ├── get_chat_sample.py │ │ │ ├── get_file_sample.py │ │ │ ├── get_image_sample.py │ │ │ ├── get_message_resource_sample.py │ │ │ ├── get_message_sample.py │ │ │ ├── get_progress_batch_message_sample.py │ │ │ ├── is_in_chat_chat_members_sample.py │ │ │ ├── link_chat_sample.py │ │ │ ├── list_chat_sample.py │ │ │ ├── list_message_reaction_sample.py │ │ │ ├── list_message_sample.py │ │ │ ├── list_pin_sample.py │ │ │ ├── list_tabs_chat_tab_sample.py │ │ │ ├── me_join_chat_members_sample.py │ │ │ ├── merge_forward_message_sample.py │ │ │ ├── patch_chat_announcement_sample.py │ │ │ ├── patch_chat_menu_item_sample.py │ │ │ ├── patch_message_sample.py │ │ │ ├── push_follow_up_message_sample.py │ │ │ ├── put_top_notice_chat_top_notice_sample.py │ │ │ ├── read_user_batch_message_sample.py │ │ │ ├── read_users_message_sample.py │ │ │ ├── reply_message_sample.py │ │ │ ├── search_chat_sample.py │ │ │ ├── sort_chat_menu_tree_sample.py │ │ │ ├── sort_tabs_chat_tab_sample.py │ │ │ ├── update_chat_moderation_sample.py │ │ │ ├── update_chat_sample.py │ │ │ ├── update_message_sample.py │ │ │ ├── update_tabs_chat_tab_sample.py │ │ │ ├── urgent_app_message_sample.py │ │ │ ├── urgent_phone_message_sample.py │ │ │ └── urgent_sms_message_sample.py │ │ └── v2 │ │ │ ├── batch_update_url_preview_sample.py │ │ │ ├── bot_time_sentive_feed_card_sample.py │ │ │ ├── create_app_feed_card_sample.py │ │ │ ├── create_biz_entity_tag_relation_sample.py │ │ │ ├── create_tag_sample.py │ │ │ ├── delete_app_feed_card_batch_sample.py │ │ │ ├── get_biz_entity_tag_relation_sample.py │ │ │ ├── patch_feed_card_sample.py │ │ │ ├── patch_tag_sample.py │ │ │ ├── update_app_feed_card_batch_sample.py │ │ │ ├── update_biz_entity_tag_relation_sample.py │ │ │ └── update_chat_button_sample.py │ ├── lingo │ │ └── v1 │ │ │ ├── create_draft_sample.py │ │ │ ├── create_entity_sample.py │ │ │ ├── delete_entity_sample.py │ │ │ ├── download_file_sample.py │ │ │ ├── get_entity_sample.py │ │ │ ├── highlight_entity_sample.py │ │ │ ├── list_classification_sample.py │ │ │ ├── list_entity_sample.py │ │ │ ├── list_repo_sample.py │ │ │ ├── match_entity_sample.py │ │ │ ├── search_entity_sample.py │ │ │ ├── update_draft_sample.py │ │ │ ├── update_entity_sample.py │ │ │ └── upload_file_sample.py │ ├── mail │ │ └── v1 │ │ │ ├── batch_create_mailgroup_manager_sample.py │ │ │ ├── batch_create_mailgroup_member_sample.py │ │ │ ├── batch_create_mailgroup_permission_member_sample.py │ │ │ ├── batch_create_public_mailbox_member_sample.py │ │ │ ├── batch_delete_mailgroup_manager_sample.py │ │ │ ├── batch_delete_mailgroup_member_sample.py │ │ │ ├── batch_delete_mailgroup_permission_member_sample.py │ │ │ ├── batch_delete_public_mailbox_member_sample.py │ │ │ ├── clear_public_mailbox_member_sample.py │ │ │ ├── create_mailgroup_alias_sample.py │ │ │ ├── create_mailgroup_member_sample.py │ │ │ ├── create_mailgroup_permission_member_sample.py │ │ │ ├── create_mailgroup_sample.py │ │ │ ├── create_public_mailbox_alias_sample.py │ │ │ ├── create_public_mailbox_member_sample.py │ │ │ ├── create_public_mailbox_sample.py │ │ │ ├── create_user_mailbox_alias_sample.py │ │ │ ├── create_user_mailbox_folder_sample.py │ │ │ ├── create_user_mailbox_mail_contact_sample.py │ │ │ ├── create_user_mailbox_rule_sample.py │ │ │ ├── delete_mailgroup_alias_sample.py │ │ │ ├── delete_mailgroup_member_sample.py │ │ │ ├── delete_mailgroup_permission_member_sample.py │ │ │ ├── delete_mailgroup_sample.py │ │ │ ├── delete_public_mailbox_alias_sample.py │ │ │ ├── delete_public_mailbox_member_sample.py │ │ │ ├── delete_public_mailbox_sample.py │ │ │ ├── delete_user_mailbox_alias_sample.py │ │ │ ├── delete_user_mailbox_folder_sample.py │ │ │ ├── delete_user_mailbox_mail_contact_sample.py │ │ │ ├── delete_user_mailbox_rule_sample.py │ │ │ ├── delete_user_mailbox_sample.py │ │ │ ├── download_url_user_mailbox_message_attachment_sample.py │ │ │ ├── get_by_card_user_mailbox_message_sample.py │ │ │ ├── get_mailgroup_member_sample.py │ │ │ ├── get_mailgroup_permission_member_sample.py │ │ │ ├── get_mailgroup_sample.py │ │ │ ├── get_public_mailbox_member_sample.py │ │ │ ├── get_public_mailbox_sample.py │ │ │ ├── get_user_mailbox_message_sample.py │ │ │ ├── list_mailgroup_alias_sample.py │ │ │ ├── list_mailgroup_manager_sample.py │ │ │ ├── list_mailgroup_member_sample.py │ │ │ ├── list_mailgroup_permission_member_sample.py │ │ │ ├── list_mailgroup_sample.py │ │ │ ├── list_public_mailbox_alias_sample.py │ │ │ ├── list_public_mailbox_member_sample.py │ │ │ ├── list_public_mailbox_sample.py │ │ │ ├── list_user_mailbox_alias_sample.py │ │ │ ├── list_user_mailbox_folder_sample.py │ │ │ ├── list_user_mailbox_mail_contact_sample.py │ │ │ ├── list_user_mailbox_message_sample.py │ │ │ ├── list_user_mailbox_rule_sample.py │ │ │ ├── patch_mailgroup_sample.py │ │ │ ├── patch_public_mailbox_sample.py │ │ │ ├── patch_user_mailbox_folder_sample.py │ │ │ ├── patch_user_mailbox_mail_contact_sample.py │ │ │ ├── query_user_sample.py │ │ │ ├── remove_to_recycle_bin_public_mailbox_sample.py │ │ │ ├── reorder_user_mailbox_rule_sample.py │ │ │ ├── send_user_mailbox_message_sample.py │ │ │ ├── subscribe_user_mailbox_event_sample.py │ │ │ ├── subscription_user_mailbox_event_sample.py │ │ │ ├── unsubscribe_user_mailbox_event_sample.py │ │ │ ├── update_mailgroup_sample.py │ │ │ ├── update_public_mailbox_sample.py │ │ │ └── update_user_mailbox_rule_sample.py │ ├── mdm │ │ ├── v1 │ │ │ ├── bind_user_auth_data_relation_sample.py │ │ │ └── unbind_user_auth_data_relation_sample.py │ │ └── v3 │ │ │ ├── get_batch_country_region_sample.py │ │ │ └── list_country_region_sample.py │ ├── minutes │ │ └── v1 │ │ │ ├── get_minute_media_sample.py │ │ │ ├── get_minute_sample.py │ │ │ ├── get_minute_statistics_sample.py │ │ │ └── get_minute_transcript_sample.py │ ├── moments │ │ └── v1 │ │ │ └── get_post_sample.py │ ├── okr │ │ └── v1 │ │ │ ├── batch_get_okr_sample.py │ │ │ ├── create_period_sample.py │ │ │ ├── create_progress_record_sample.py │ │ │ ├── delete_progress_record_sample.py │ │ │ ├── get_progress_record_sample.py │ │ │ ├── list_period_rule_sample.py │ │ │ ├── list_period_sample.py │ │ │ ├── list_user_okr_sample.py │ │ │ ├── patch_period_sample.py │ │ │ ├── query_review_sample.py │ │ │ ├── update_progress_record_sample.py │ │ │ └── upload_image_sample.py │ ├── optical_char_recognition │ │ └── v1 │ │ │ └── basic_recognize_image_sample.py │ ├── passport │ │ └── v1 │ │ │ ├── logout_session_sample.py │ │ │ └── query_session_sample.py │ ├── payroll │ │ └── v1 │ │ │ ├── archive_payment_activity_sample.py │ │ │ ├── list_acct_item_sample.py │ │ │ ├── list_cost_allocation_detail_sample.py │ │ │ ├── list_cost_allocation_plan_sample.py │ │ │ ├── list_cost_allocation_report_sample.py │ │ │ ├── list_datasource_sample.py │ │ │ ├── list_paygroup_sample.py │ │ │ ├── list_payment_activity_detail_sample.py │ │ │ ├── list_payment_activity_sample.py │ │ │ ├── query_datasource_record_sample.py │ │ │ ├── query_payment_detail_sample.py │ │ │ └── save_datasource_record_sample.py │ ├── performance │ │ └── v2 │ │ │ ├── delete_additional_informations_batch_sample.py │ │ │ ├── import__additional_information_sample.py │ │ │ ├── import__metric_detail_sample.py │ │ │ ├── list_metric_tag_sample.py │ │ │ ├── query_activity_sample.py │ │ │ ├── query_additional_information_sample.py │ │ │ ├── query_indicator_sample.py │ │ │ ├── query_metric_detail_sample.py │ │ │ ├── query_metric_field_sample.py │ │ │ ├── query_metric_lib_sample.py │ │ │ ├── query_metric_template_sample.py │ │ │ ├── query_question_sample.py │ │ │ ├── query_review_data_sample.py │ │ │ ├── query_review_template_sample.py │ │ │ ├── query_reviewee_sample.py │ │ │ └── write_user_group_user_rel_sample.py │ ├── personal_settings │ │ └── v1 │ │ │ ├── batch_close_system_status_sample.py │ │ │ ├── batch_open_system_status_sample.py │ │ │ ├── create_system_status_sample.py │ │ │ ├── delete_system_status_sample.py │ │ │ ├── list_system_status_sample.py │ │ │ └── patch_system_status_sample.py │ ├── raw.py │ ├── report │ │ └── v1 │ │ │ ├── query_rule_sample.py │ │ │ ├── query_task_sample.py │ │ │ └── remove_rule_view_sample.py │ ├── search │ │ └── v2 │ │ │ ├── create_app_sample.py │ │ │ ├── create_data_source_item_sample.py │ │ │ ├── create_data_source_sample.py │ │ │ ├── create_message_sample.py │ │ │ ├── create_schema_sample.py │ │ │ ├── delete_data_source_item_sample.py │ │ │ ├── delete_data_source_sample.py │ │ │ ├── delete_schema_sample.py │ │ │ ├── get_data_source_item_sample.py │ │ │ ├── get_data_source_sample.py │ │ │ ├── get_schema_sample.py │ │ │ ├── list_data_source_sample.py │ │ │ ├── patch_data_source_sample.py │ │ │ └── patch_schema_sample.py │ ├── security_and_compliance │ │ ├── v1 │ │ │ └── list_data_openapi_log_sample.py │ │ └── v2 │ │ │ ├── create_device_record_sample.py │ │ │ ├── delete_device_record_sample.py │ │ │ ├── get_device_record_sample.py │ │ │ ├── list_device_record_sample.py │ │ │ ├── mine_device_record_sample.py │ │ │ ├── update_device_apply_record_sample.py │ │ │ └── update_device_record_sample.py │ ├── sheets │ │ └── v3 │ │ │ ├── create_spreadsheet_sample.py │ │ │ ├── create_spreadsheet_sheet_filter_sample.py │ │ │ ├── create_spreadsheet_sheet_filter_view_condition_sample.py │ │ │ ├── create_spreadsheet_sheet_filter_view_sample.py │ │ │ ├── create_spreadsheet_sheet_float_image_sample.py │ │ │ ├── delete_spreadsheet_sheet_filter_sample.py │ │ │ ├── delete_spreadsheet_sheet_filter_view_condition_sample.py │ │ │ ├── delete_spreadsheet_sheet_filter_view_sample.py │ │ │ ├── delete_spreadsheet_sheet_float_image_sample.py │ │ │ ├── find_spreadsheet_sheet_sample.py │ │ │ ├── get_spreadsheet_sample.py │ │ │ ├── get_spreadsheet_sheet_filter_sample.py │ │ │ ├── get_spreadsheet_sheet_filter_view_condition_sample.py │ │ │ ├── get_spreadsheet_sheet_filter_view_sample.py │ │ │ ├── get_spreadsheet_sheet_float_image_sample.py │ │ │ ├── get_spreadsheet_sheet_sample.py │ │ │ ├── move_dimension_spreadsheet_sheet_sample.py │ │ │ ├── patch_spreadsheet_sample.py │ │ │ ├── patch_spreadsheet_sheet_filter_view_sample.py │ │ │ ├── patch_spreadsheet_sheet_float_image_sample.py │ │ │ ├── query_spreadsheet_sheet_filter_view_condition_sample.py │ │ │ ├── query_spreadsheet_sheet_filter_view_sample.py │ │ │ ├── query_spreadsheet_sheet_float_image_sample.py │ │ │ ├── query_spreadsheet_sheet_sample.py │ │ │ ├── replace_spreadsheet_sheet_sample.py │ │ │ ├── update_spreadsheet_sheet_filter_sample.py │ │ │ └── update_spreadsheet_sheet_filter_view_condition_sample.py │ ├── speech_to_text │ │ └── v1 │ │ │ ├── file_recognize_speech_sample.py │ │ │ └── stream_recognize_speech_sample.py │ ├── task │ │ ├── v1 │ │ │ ├── batch_delete_collaborator_task_sample.py │ │ │ ├── batch_delete_follower_task_sample.py │ │ │ ├── complete_task_sample.py │ │ │ ├── create_task_collaborator_sample.py │ │ │ ├── create_task_comment_sample.py │ │ │ ├── create_task_follower_sample.py │ │ │ ├── create_task_reminder_sample.py │ │ │ ├── create_task_sample.py │ │ │ ├── delete_task_collaborator_sample.py │ │ │ ├── delete_task_comment_sample.py │ │ │ ├── delete_task_follower_sample.py │ │ │ ├── delete_task_reminder_sample.py │ │ │ ├── delete_task_sample.py │ │ │ ├── get_task_comment_sample.py │ │ │ ├── get_task_sample.py │ │ │ ├── list_task_collaborator_sample.py │ │ │ ├── list_task_comment_sample.py │ │ │ ├── list_task_follower_sample.py │ │ │ ├── list_task_reminder_sample.py │ │ │ ├── list_task_sample.py │ │ │ ├── patch_task_sample.py │ │ │ ├── uncomplete_task_sample.py │ │ │ └── update_task_comment_sample.py │ │ └── v2 │ │ │ ├── add_custom_field_sample.py │ │ │ ├── add_dependencies_task_sample.py │ │ │ ├── add_members_task_sample.py │ │ │ ├── add_members_tasklist_sample.py │ │ │ ├── add_reminders_task_sample.py │ │ │ ├── add_tasklist_task_sample.py │ │ │ ├── create_comment_sample.py │ │ │ ├── create_custom_field_option_sample.py │ │ │ ├── create_custom_field_sample.py │ │ │ ├── create_section_sample.py │ │ │ ├── create_task_sample.py │ │ │ ├── create_task_subtask_sample.py │ │ │ ├── create_tasklist_activity_subscription_sample.py │ │ │ ├── create_tasklist_sample.py │ │ │ ├── delete_attachment_sample.py │ │ │ ├── delete_comment_sample.py │ │ │ ├── delete_section_sample.py │ │ │ ├── delete_task_sample.py │ │ │ ├── delete_tasklist_activity_subscription_sample.py │ │ │ ├── delete_tasklist_sample.py │ │ │ ├── get_attachment_sample.py │ │ │ ├── get_comment_sample.py │ │ │ ├── get_custom_field_sample.py │ │ │ ├── get_section_sample.py │ │ │ ├── get_task_sample.py │ │ │ ├── get_tasklist_activity_subscription_sample.py │ │ │ ├── get_tasklist_sample.py │ │ │ ├── list_attachment_sample.py │ │ │ ├── list_comment_sample.py │ │ │ ├── list_custom_field_sample.py │ │ │ ├── list_section_sample.py │ │ │ ├── list_task_sample.py │ │ │ ├── list_task_subtask_sample.py │ │ │ ├── list_tasklist_activity_subscription_sample.py │ │ │ ├── list_tasklist_sample.py │ │ │ ├── patch_comment_sample.py │ │ │ ├── patch_custom_field_option_sample.py │ │ │ ├── patch_custom_field_sample.py │ │ │ ├── patch_section_sample.py │ │ │ ├── patch_task_sample.py │ │ │ ├── patch_tasklist_activity_subscription_sample.py │ │ │ ├── patch_tasklist_sample.py │ │ │ ├── remove_custom_field_sample.py │ │ │ ├── remove_dependencies_task_sample.py │ │ │ ├── remove_members_task_sample.py │ │ │ ├── remove_members_tasklist_sample.py │ │ │ ├── remove_reminders_task_sample.py │ │ │ ├── remove_tasklist_task_sample.py │ │ │ ├── tasklists_task_sample.py │ │ │ ├── tasks_section_sample.py │ │ │ ├── tasks_tasklist_sample.py │ │ │ └── upload_attachment_sample.py │ ├── tenant │ │ └── v2 │ │ │ ├── query_tenant_product_assign_info_sample.py │ │ │ └── query_tenant_sample.py │ ├── translation │ │ └── v1 │ │ │ ├── detect_text_sample.py │ │ │ └── translate_text_sample.py │ ├── vc │ │ └── v1 │ │ │ ├── apply_reserve_sample.py │ │ │ ├── create_room_level_sample.py │ │ │ ├── create_room_sample.py │ │ │ ├── create_scope_config_sample.py │ │ │ ├── del__room_level_sample.py │ │ │ ├── delete_reserve_sample.py │ │ │ ├── delete_room_sample.py │ │ │ ├── download_export_sample.py │ │ │ ├── end_meeting_sample.py │ │ │ ├── get_active_meeting_reserve_sample.py │ │ │ ├── get_daily_report_sample.py │ │ │ ├── get_export_sample.py │ │ │ ├── get_meeting_list_sample.py │ │ │ ├── get_meeting_recording_sample.py │ │ │ ├── get_meeting_sample.py │ │ │ ├── get_participant_list_sample.py │ │ │ ├── get_participant_quality_list_sample.py │ │ │ ├── get_reserve_config_admin_sample.py │ │ │ ├── get_reserve_config_disable_inform_sample.py │ │ │ ├── get_reserve_config_form_sample.py │ │ │ ├── get_reserve_sample.py │ │ │ ├── get_resource_reservation_list_sample.py │ │ │ ├── get_room_level_sample.py │ │ │ ├── get_room_sample.py │ │ │ ├── get_scope_config_sample.py │ │ │ ├── get_top_user_report_sample.py │ │ │ ├── invite_meeting_sample.py │ │ │ ├── kickout_meeting_sample.py │ │ │ ├── list_alert_sample.py │ │ │ ├── list_by_no_meeting_sample.py │ │ │ ├── list_room_level_sample.py │ │ │ ├── list_room_sample.py │ │ │ ├── meeting_list_export_sample.py │ │ │ ├── mget_room_level_sample.py │ │ │ ├── mget_room_sample.py │ │ │ ├── participant_list_export_sample.py │ │ │ ├── participant_quality_list_export_sample.py │ │ │ ├── patch_reserve_config_admin_sample.py │ │ │ ├── patch_reserve_config_disable_inform_sample.py │ │ │ ├── patch_reserve_config_form_sample.py │ │ │ ├── patch_reserve_config_sample.py │ │ │ ├── patch_room_level_sample.py │ │ │ ├── patch_room_sample.py │ │ │ ├── query_room_config_sample.py │ │ │ ├── reserve_scope_reserve_config_sample.py │ │ │ ├── resource_reservation_list_export_sample.py │ │ │ ├── search_room_level_sample.py │ │ │ ├── search_room_sample.py │ │ │ ├── set_checkboard_access_code_room_config_sample.py │ │ │ ├── set_host_meeting_sample.py │ │ │ ├── set_permission_meeting_recording_sample.py │ │ │ ├── set_room_access_code_room_config_sample.py │ │ │ ├── set_room_config_sample.py │ │ │ ├── start_meeting_recording_sample.py │ │ │ ├── stop_meeting_recording_sample.py │ │ │ └── update_reserve_sample.py │ ├── verification │ │ └── v1 │ │ │ └── get_verification_sample.py │ ├── wiki │ │ ├── v1 │ │ │ └── search_node_sample.py │ │ └── v2 │ │ │ ├── copy_space_node_sample.py │ │ │ ├── create_space_member_sample.py │ │ │ ├── create_space_node_sample.py │ │ │ ├── create_space_sample.py │ │ │ ├── delete_space_member_sample.py │ │ │ ├── get_node_space_sample.py │ │ │ ├── get_space_sample.py │ │ │ ├── get_task_sample.py │ │ │ ├── list_space_member_sample.py │ │ │ ├── list_space_node_sample.py │ │ │ ├── list_space_sample.py │ │ │ ├── move_docs_to_wiki_space_node_sample.py │ │ │ ├── move_space_node_sample.py │ │ │ ├── update_space_setting_sample.py │ │ │ └── update_title_space_node_sample.py │ └── workplace │ │ └── v1 │ │ ├── search_custom_workplace_access_data_sample.py │ │ ├── search_workplace_access_data_sample.py │ │ └── search_workplace_block_access_data_sample.py ├── card │ └── flask_sample.py ├── event │ └── flask_sample.py └── ws │ └── sample.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | dist/ 3 | lark_oapi.egg-info/ 4 | upload.sh 5 | .idea/ 6 | .DS_Store 7 | */__pycache__/ 8 | *.pyc 9 | *.cache 10 | tests/ 11 | .env 12 | sensitive_info_result.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | global-exclude */__pycache__/* 2 | global-exclude *.pyc 3 | prune tests -------------------------------------------------------------------------------- /doc/client_expr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larksuite/oapi-sdk-python/HEAD/doc/client_expr.png -------------------------------------------------------------------------------- /doc/console.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larksuite/oapi-sdk-python/HEAD/doc/console.jpeg -------------------------------------------------------------------------------- /doc/event_prot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larksuite/oapi-sdk-python/HEAD/doc/event_prot.png -------------------------------------------------------------------------------- /doc/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larksuite/oapi-sdk-python/HEAD/doc/qrcode.png -------------------------------------------------------------------------------- /lark_oapi/__init__.py: -------------------------------------------------------------------------------- 1 | from . import ws 2 | from .api import * 3 | from .card import * 4 | from .client import Client 5 | from .core import * 6 | from .event.context import EventContext 7 | from .event.custom import CustomizedEvent 8 | from .event.dispatcher_handler import EventDispatcherHandler 9 | -------------------------------------------------------------------------------- /lark_oapi/adapter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lark_oapi/adapter/flask/__init__.py: -------------------------------------------------------------------------------- 1 | from .parser import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/acs/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v1 2 | -------------------------------------------------------------------------------- /lark_oapi/api/acs/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v1.version import V1 5 | 6 | 7 | class AcsService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v1: V1 = V1(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/acs/v1/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/acs/v1/model/delete_rule_external_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteRuleExternalResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/acs/v1/model/delete_visitor_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteVisitorResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/acs/v1/model/device_bind_rule_external_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeviceBindRuleExternalResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/acs/v1/model/patch_user_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class PatchUserResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/acs/v1/model/update_user_face_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class UpdateUserFaceResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/acs/v1/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .access_record import * 2 | from .access_record_access_photo import * 3 | from .device import * 4 | from .rule_external import * 5 | from .user import * 6 | from .user_face import * 7 | from .visitor import * 8 | -------------------------------------------------------------------------------- /lark_oapi/api/admin/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v1 2 | -------------------------------------------------------------------------------- /lark_oapi/api/admin/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v1.version import V1 5 | 6 | 7 | class AdminService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v1: V1 = V1(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/admin/v1/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/admin/v1/model/delete_badge_grant_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteBadgeGrantResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/admin/v1/model/reset_password_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class ResetPasswordResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/admin/v1/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .admin_dept_stat import * 2 | from .admin_user_stat import * 3 | from .audit_info import * 4 | from .badge import * 5 | from .badge_grant import * 6 | from .badge_image import * 7 | from .password import * 8 | -------------------------------------------------------------------------------- /lark_oapi/api/aily/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v1 2 | -------------------------------------------------------------------------------- /lark_oapi/api/aily/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v1.version import V1 5 | 6 | 7 | class AilyService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v1: V1 = V1(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/aily/v1/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/aily/v1/model/delete_aily_session_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteAilySessionResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/aily/v1/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .aily_session import * 2 | from .aily_session_aily_message import * 3 | from .aily_session_run import * 4 | from .app_data_asset import * 5 | from .app_data_asset_tag import * 6 | from .app_knowledge import * 7 | from .app_skill import * 8 | -------------------------------------------------------------------------------- /lark_oapi/api/apaas/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v1 2 | -------------------------------------------------------------------------------- /lark_oapi/api/apaas/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v1.version import V1 5 | 6 | 7 | class ApaasService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v1: V1 = V1(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/apaas/v1/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/apaas/v1/model/add_assignee_approval_task_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class AddAssigneeApprovalTaskResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/apaas/v1/model/agree_approval_task_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class AgreeApprovalTaskResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/apaas/v1/model/cancel_approval_instance_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class CancelApprovalInstanceResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/apaas/v1/model/cc_user_task_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class CcUserTaskResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/apaas/v1/model/expediting_user_task_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class ExpeditingUserTaskResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/apaas/v1/model/reject_approval_task_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class RejectApprovalTaskResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/apaas/v1/model/rollback_user_task_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class RollbackUserTaskResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/apaas/v1/model/transfer_approval_task_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class TransferApprovalTaskResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/application/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v6 2 | -------------------------------------------------------------------------------- /lark_oapi/api/application/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v6.version import V6 5 | 6 | 7 | class ApplicationService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v6: V6 = V6(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/application/v6/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/application/v6/model/apply_scope_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class ApplyScopeResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/application/v6/model/patch_application_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class PatchApplicationResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/application/v6/model/set_app_badge_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class SetAppBadgeResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/approval/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v4 2 | -------------------------------------------------------------------------------- /lark_oapi/api/approval/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v4.version import V4 5 | 6 | 7 | class ApprovalService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v4: V4 = V4(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/approval/v4/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/approval/v4/model/add_sign_instance_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class AddSignInstanceResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/approval/v4/model/approve_task_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class ApproveTaskResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/approval/v4/model/cancel_instance_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class CancelInstanceResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/approval/v4/model/cc_instance_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class CcInstanceResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/approval/v4/model/reject_task_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class RejectTaskResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/approval/v4/model/resubmit_task_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class ResubmitTaskResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/approval/v4/model/subscribe_approval_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class SubscribeApprovalResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/approval/v4/model/transfer_task_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class TransferTaskResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/approval/v4/model/unsubscribe_approval_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class UnsubscribeApprovalResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/approval/v4/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .approval import * 2 | from .external_approval import * 3 | from .external_instance import * 4 | from .external_task import * 5 | from .instance import * 6 | from .instance_comment import * 7 | from .task import * 8 | -------------------------------------------------------------------------------- /lark_oapi/api/attendance/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v1 2 | -------------------------------------------------------------------------------- /lark_oapi/api/attendance/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v1.version import V1 5 | 6 | 7 | class AttendanceService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v1: V1 = V1(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/attendance/v1/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/attendance/v1/model/del_report_archive_rule_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DelReportArchiveRuleResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/attendance/v1/model/delete_group_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteGroupResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/attendance/v1/model/delete_shift_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteShiftResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/auth/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v3 2 | -------------------------------------------------------------------------------- /lark_oapi/api/auth/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v3.version import V3 5 | 6 | 7 | class AuthService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v3: V3 = V3(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/auth/v3/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/auth/v3/model/create_app_access_token_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class CreateAppAccessTokenResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/auth/v3/model/create_tenant_access_token_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class CreateTenantAccessTokenResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/auth/v3/model/internal_app_access_token_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class InternalAppAccessTokenResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/auth/v3/model/resend_app_ticket_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class ResendAppTicketResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/auth/v3/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .app_access_token import * 2 | from .app_ticket import * 3 | from .tenant_access_token import * 4 | -------------------------------------------------------------------------------- /lark_oapi/api/auth/v3/version.py: -------------------------------------------------------------------------------- 1 | from .resource import * 2 | 3 | 4 | class V3(object): 5 | def __init__(self, config: Config) -> None: 6 | self.app_access_token: AppAccessToken = AppAccessToken(config) 7 | self.app_ticket: AppTicket = AppTicket(config) 8 | self.tenant_access_token: TenantAccessToken = TenantAccessToken(config) 9 | -------------------------------------------------------------------------------- /lark_oapi/api/authen/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v1 2 | -------------------------------------------------------------------------------- /lark_oapi/api/authen/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v1.version import V1 5 | 6 | 7 | class AuthenService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v1: V1 = V1(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/authen/v1/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/authen/v1/model/get_authorize_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.construct import init 4 | from lark_oapi.core.model import BaseResponse 5 | 6 | 7 | class GetAuthorizeResponse(BaseResponse): 8 | _types = { 9 | 10 | } 11 | 12 | def __init__(self, d=None): 13 | super().__init__(d) 14 | 15 | init(self, d, self._types) 16 | -------------------------------------------------------------------------------- /lark_oapi/api/authen/v1/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .access_token import * 2 | from .oidc_access_token import * 3 | from .oidc_refresh_access_token import * 4 | from .refresh_access_token import * 5 | from .user_info import * 6 | -------------------------------------------------------------------------------- /lark_oapi/api/baike/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v1 2 | -------------------------------------------------------------------------------- /lark_oapi/api/baike/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v1.version import V1 5 | 6 | 7 | class BaikeService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v1: V1 = V1(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/baike/v1/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/baike/v1/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .classification import * 2 | from .draft import * 3 | from .entity import * 4 | from .file import * 5 | -------------------------------------------------------------------------------- /lark_oapi/api/baike/v1/version.py: -------------------------------------------------------------------------------- 1 | from .resource import * 2 | 3 | 4 | class V1(object): 5 | def __init__(self, config: Config) -> None: 6 | self.classification: Classification = Classification(config) 7 | self.draft: Draft = Draft(config) 8 | self.entity: Entity = Entity(config) 9 | self.file: File = File(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/base/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v2 2 | -------------------------------------------------------------------------------- /lark_oapi/api/base/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v2.version import V2 5 | 6 | 7 | class BaseService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v2: V2 = V2(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/base/v2/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/base/v2/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .app_role import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/base/v2/version.py: -------------------------------------------------------------------------------- 1 | from .resource import * 2 | 3 | 4 | class V2(object): 5 | def __init__(self, config: Config) -> None: 6 | self.app_role: AppRole = AppRole(config) 7 | -------------------------------------------------------------------------------- /lark_oapi/api/bitable/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v1 2 | -------------------------------------------------------------------------------- /lark_oapi/api/bitable/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v1.version import V1 5 | 6 | 7 | class BitableService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v1: V1 = V1(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/bitable/v1/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/bitable/v1/model/batch_delete_app_table_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class BatchDeleteAppTableResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/bitable/v1/model/create_app_role_member_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class CreateAppRoleMemberResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/bitable/v1/model/delete_app_role_member_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteAppRoleMemberResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/bitable/v1/model/delete_app_role_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteAppRoleResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/bitable/v1/model/delete_app_table_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteAppTableResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/bitable/v1/model/delete_app_table_view_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteAppTableViewResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/bitable/v1/model/update_app_workflow_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class UpdateAppWorkflowResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/bitable/v1/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .app import * 2 | from .app_dashboard import * 3 | from .app_role import * 4 | from .app_role_member import * 5 | from .app_table import * 6 | from .app_table_field import * 7 | from .app_table_form import * 8 | from .app_table_form_field import * 9 | from .app_table_record import * 10 | from .app_table_view import * 11 | from .app_workflow import * 12 | -------------------------------------------------------------------------------- /lark_oapi/api/block/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v2 2 | -------------------------------------------------------------------------------- /lark_oapi/api/block/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v2.version import V2 5 | 6 | 7 | class BlockService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v2: V2 = V2(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/block/v2/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/block/v2/model/__init__.py: -------------------------------------------------------------------------------- 1 | from .department_id import * 2 | from .entity import * 3 | from .message import * 4 | from .create_entity_request_body import * 5 | from .create_entity_request import * 6 | from .update_entity_request import * 7 | from .create_message_request import * 8 | from .create_entity_response_body import * 9 | from .create_entity_response import * 10 | from .update_entity_response import * 11 | from .create_message_response import * 12 | -------------------------------------------------------------------------------- /lark_oapi/api/block/v2/model/create_message_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class CreateMessageResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/block/v2/model/update_entity_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class UpdateEntityResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/block/v2/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .entity import * 2 | from .message import * 3 | -------------------------------------------------------------------------------- /lark_oapi/api/block/v2/version.py: -------------------------------------------------------------------------------- 1 | from .resource import * 2 | 3 | 4 | class V2(object): 5 | def __init__(self, config: Config) -> None: 6 | self.entity: Entity = Entity(config) 7 | self.message: Message = Message(config) 8 | -------------------------------------------------------------------------------- /lark_oapi/api/board/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v1 2 | -------------------------------------------------------------------------------- /lark_oapi/api/board/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v1.version import V1 5 | 6 | 7 | class BoardService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v1: V1 = V1(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/board/v1/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/board/v1/model/update_theme_whiteboard_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class UpdateThemeWhiteboardResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/board/v1/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .whiteboard import * 2 | from .whiteboard_node import * 3 | -------------------------------------------------------------------------------- /lark_oapi/api/board/v1/version.py: -------------------------------------------------------------------------------- 1 | from .resource import * 2 | 3 | 4 | class V1(object): 5 | def __init__(self, config: Config) -> None: 6 | self.whiteboard: Whiteboard = Whiteboard(config) 7 | self.whiteboard_node: WhiteboardNode = WhiteboardNode(config) 8 | -------------------------------------------------------------------------------- /lark_oapi/api/calendar/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v4 2 | -------------------------------------------------------------------------------- /lark_oapi/api/calendar/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v4.version import V4 5 | 6 | 7 | class CalendarService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v4: V4 = V4(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/calendar/v4/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/calendar/v4/model/delete_calendar_acl_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteCalendarAclResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/calendar/v4/model/delete_calendar_event_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteCalendarEventResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/calendar/v4/model/delete_calendar_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteCalendarResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/calendar/v4/model/delete_exchange_binding_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteExchangeBindingResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/calendar/v4/model/delete_timeoff_event_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteTimeoffEventResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/calendar/v4/model/reply_calendar_event_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class ReplyCalendarEventResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/calendar/v4/model/subscription_calendar_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class SubscriptionCalendarResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/calendar/v4/model/unsubscribe_calendar_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class UnsubscribeCalendarResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/calendar/v4/model/unsubscription_calendar_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class UnsubscriptionCalendarResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/calendar/v4/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .calendar import * 2 | from .calendar_acl import * 3 | from .calendar_event import * 4 | from .calendar_event_attendee import * 5 | from .calendar_event_attendee_chat_member import * 6 | from .calendar_event_meeting_chat import * 7 | from .calendar_event_meeting_minute import * 8 | from .exchange_binding import * 9 | from .freebusy import * 10 | from .setting import * 11 | from .timeoff_event import * 12 | -------------------------------------------------------------------------------- /lark_oapi/api/cardkit/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v1 2 | -------------------------------------------------------------------------------- /lark_oapi/api/cardkit/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v1.version import V1 5 | 6 | 7 | class CardkitService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v1: V1 = V1(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/cardkit/v1/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/cardkit/v1/model/batch_update_card_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class BatchUpdateCardResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/cardkit/v1/model/content_card_element_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class ContentCardElementResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/cardkit/v1/model/create_card_element_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class CreateCardElementResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/cardkit/v1/model/delete_card_element_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteCardElementResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/cardkit/v1/model/patch_card_element_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class PatchCardElementResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/cardkit/v1/model/settings_card_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class SettingsCardResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/cardkit/v1/model/update_card_element_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class UpdateCardElementResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/cardkit/v1/model/update_card_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class UpdateCardResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/cardkit/v1/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .card import * 2 | from .card_element import * 3 | -------------------------------------------------------------------------------- /lark_oapi/api/cardkit/v1/version.py: -------------------------------------------------------------------------------- 1 | from .resource import * 2 | 3 | 4 | class V1(object): 5 | def __init__(self, config: Config) -> None: 6 | self.card: Card = Card(config) 7 | self.card_element: CardElement = CardElement(config) 8 | -------------------------------------------------------------------------------- /lark_oapi/api/compensation/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v1 2 | -------------------------------------------------------------------------------- /lark_oapi/api/compensation/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v1.version import V1 5 | 6 | 7 | class CompensationService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v1: V1 = V1(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/compensation/v1/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/compensation/v1/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .archive import * 2 | from .change_reason import * 3 | from .indicator import * 4 | from .item import * 5 | from .item_category import * 6 | from .lump_sum_payment import * 7 | from .plan import * 8 | from .recurring_payment import * 9 | from .social_archive import * 10 | from .social_archive_adjust_record import * 11 | from .social_insurance import * 12 | from .social_plan import * 13 | -------------------------------------------------------------------------------- /lark_oapi/api/contact/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v3 2 | -------------------------------------------------------------------------------- /lark_oapi/api/contact/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v3.version import V3 5 | 6 | 7 | class ContactService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v3: V3 = V3(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/contact/v3/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/contact/v3/model/add_group_member_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class AddGroupMemberResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/contact/v3/model/batch_remove_group_member_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class BatchRemoveGroupMemberResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/contact/v3/model/bind_department_unit_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class BindDepartmentUnitResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/contact/v3/model/delete_department_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteDepartmentResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/contact/v3/model/delete_employee_type_enum_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteEmployeeTypeEnumResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/contact/v3/model/delete_functional_role_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteFunctionalRoleResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/contact/v3/model/delete_group_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteGroupResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/contact/v3/model/delete_job_family_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteJobFamilyResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/contact/v3/model/delete_job_level_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteJobLevelResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/contact/v3/model/delete_unit_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteUnitResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/contact/v3/model/delete_user_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteUserResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/contact/v3/model/patch_group_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class PatchGroupResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/contact/v3/model/patch_unit_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class PatchUnitResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/contact/v3/model/remove_group_member_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class RemoveGroupMemberResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/contact/v3/model/resurrect_user_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class ResurrectUserResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/contact/v3/model/unbind_department_unit_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class UnbindDepartmentUnitResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/contact/v3/model/update_functional_role_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class UpdateFunctionalRoleResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/contact/v3/model/update_user_id_user_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class UpdateUserIdUserResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/contact/v3/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .custom_attr import * 2 | from .custom_attr_event import * 3 | from .department import * 4 | from .employee_type_enum import * 5 | from .functional_role import * 6 | from .functional_role_member import * 7 | from .group import * 8 | from .group_member import * 9 | from .job_family import * 10 | from .job_level import * 11 | from .job_title import * 12 | from .scope import * 13 | from .unit import * 14 | from .user import * 15 | from .work_city import * 16 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v1 2 | from . import v2 3 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v1.version import V1 5 | from .v2.version import V2 6 | 7 | 8 | class CorehrService(object): 9 | def __init__(self, config: Config) -> None: 10 | self.v1: V1 = V1(config) 11 | self.v2: V2 = V2(config) 12 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/v1/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/v1/model/delete_company_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteCompanyResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/v1/model/delete_contract_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteContractResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/v1/model/delete_department_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteDepartmentResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/v1/model/delete_employee_type_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteEmployeeTypeResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/v1/model/delete_employment_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteEmploymentResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/v1/model/delete_job_data_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteJobDataResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/v1/model/delete_job_family_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteJobFamilyResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/v1/model/delete_job_level_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteJobLevelResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/v1/model/delete_job_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteJobResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/v1/model/delete_location_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteLocationResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/v1/model/delete_national_id_type_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteNationalIdTypeResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/v1/model/delete_person_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeletePersonResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/v1/model/delete_pre_hire_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeletePreHireResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/v1/model/delete_working_hours_type_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteWorkingHoursTypeResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/v2/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/v2/model/active_company_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class ActiveCompanyResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/v2/model/active_custom_org_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class ActiveCustomOrgResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/v2/model/active_location_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class ActiveLocationResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/v2/model/active_pathway_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class ActivePathwayResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/v2/model/active_position_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class ActivePositionResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/v2/model/del_position_position_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DelPositionPositionResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/v2/model/delete_cost_center_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteCostCenterResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/v2/model/delete_department_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteDepartmentResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/v2/model/delete_job_grade_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteJobGradeResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/v2/model/delete_location_address_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteLocationAddressResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/v2/model/delete_org_custom_org_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteOrgCustomOrgResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/v2/model/delete_pathway_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeletePathwayResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/v2/model/delete_pre_hire_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeletePreHireResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/v2/model/patch_custom_org_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class PatchCustomOrgResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/v2/model/patch_department_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class PatchDepartmentResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/v2/model/patch_job_grade_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class PatchJobGradeResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/v2/model/patch_location_address_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class PatchLocationAddressResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/v2/model/patch_location_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class PatchLocationResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/v2/model/patch_pathway_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class PatchPathwayResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/v2/model/patch_position_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class PatchPositionResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/v2/model/revoke_offboarding_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class RevokeOffboardingResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/v2/model/update_process_extra_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class UpdateProcessExtraResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/v2/model/update_process_revoke_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class UpdateProcessRevokeResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/v2/model/update_process_transfer_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class UpdateProcessTransferResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/v2/model/update_process_withdraw_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class UpdateProcessWithdrawResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/v2/model/update_rule_custom_org_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class UpdateRuleCustomOrgResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/corehr/v2/model/withdraw_probation_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class WithdrawProbationResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/docs/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v1 2 | -------------------------------------------------------------------------------- /lark_oapi/api/docs/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v1.version import V1 5 | 6 | 7 | class DocsService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v1: V1 = V1(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/docs/v1/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/docs/v1/model/__init__.py: -------------------------------------------------------------------------------- 1 | from .department_id import * 2 | from .get_content_request import * 3 | from .get_content_response_body import * 4 | from .get_content_response import * 5 | -------------------------------------------------------------------------------- /lark_oapi/api/docs/v1/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .content import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/docs/v1/version.py: -------------------------------------------------------------------------------- 1 | from .resource import * 2 | 3 | 4 | class V1(object): 5 | def __init__(self, config: Config) -> None: 6 | self.content: Content = Content(config) 7 | -------------------------------------------------------------------------------- /lark_oapi/api/document_ai/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v1 2 | -------------------------------------------------------------------------------- /lark_oapi/api/document_ai/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v1.version import V1 5 | 6 | 7 | class DocumentAiService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v1: V1 = V1(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/document_ai/v1/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/docx/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v1 2 | -------------------------------------------------------------------------------- /lark_oapi/api/docx/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v1.version import V1 5 | 6 | 7 | class DocxService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v1: V1 = V1(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/docx/v1/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/docx/v1/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .chat_announcement import * 2 | from .chat_announcement_block import * 3 | from .chat_announcement_block_children import * 4 | from .document import * 5 | from .document_block import * 6 | from .document_block_children import * 7 | from .document_block_descendant import * 8 | -------------------------------------------------------------------------------- /lark_oapi/api/drive/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v1 2 | from . import v2 3 | -------------------------------------------------------------------------------- /lark_oapi/api/drive/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v1.version import V1 5 | from .v2.version import V2 6 | 7 | 8 | class DriveService(object): 9 | def __init__(self, config: Config) -> None: 10 | self.v1: V1 = V1(config) 11 | self.v2: V2 = V2(config) 12 | -------------------------------------------------------------------------------- /lark_oapi/api/drive/v1/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/drive/v1/model/delete_file_version_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteFileVersionResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/drive/v1/model/delete_subscribe_file_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteSubscribeFileResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/drive/v1/model/patch_file_comment_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class PatchFileCommentResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/drive/v1/model/subscribe_file_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class SubscribeFileResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/drive/v1/model/upload_part_file_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class UploadPartFileResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/drive/v1/model/upload_part_media_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class UploadPartMediaResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/drive/v2/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/drive/v2/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .file_like import * 2 | from .permission_public import * 3 | -------------------------------------------------------------------------------- /lark_oapi/api/drive/v2/version.py: -------------------------------------------------------------------------------- 1 | from .resource import * 2 | 3 | 4 | class V2(object): 5 | def __init__(self, config: Config) -> None: 6 | self.file_like: FileLike = FileLike(config) 7 | self.permission_public: PermissionPublic = PermissionPublic(config) 8 | -------------------------------------------------------------------------------- /lark_oapi/api/ehr/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v1 2 | -------------------------------------------------------------------------------- /lark_oapi/api/ehr/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v1.version import V1 5 | 6 | 7 | class EhrService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v1: V1 = V1(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/ehr/v1/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/ehr/v1/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .attachment import * 2 | from .employee import * 3 | -------------------------------------------------------------------------------- /lark_oapi/api/ehr/v1/version.py: -------------------------------------------------------------------------------- 1 | from .resource import * 2 | 3 | 4 | class V1(object): 5 | def __init__(self, config: Config) -> None: 6 | self.attachment: Attachment = Attachment(config) 7 | self.employee: Employee = Employee(config) 8 | -------------------------------------------------------------------------------- /lark_oapi/api/event/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v1 2 | -------------------------------------------------------------------------------- /lark_oapi/api/event/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v1.version import V1 5 | 6 | 7 | class EventService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v1: V1 = V1(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/event/v1/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/event/v1/model/__init__.py: -------------------------------------------------------------------------------- 1 | from .department_id import * 2 | from .list_outbound_ip_request import * 3 | from .list_outbound_ip_response_body import * 4 | from .list_outbound_ip_response import * 5 | -------------------------------------------------------------------------------- /lark_oapi/api/event/v1/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .outbound_ip import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/event/v1/version.py: -------------------------------------------------------------------------------- 1 | from .resource import * 2 | 3 | 4 | class V1(object): 5 | def __init__(self, config: Config) -> None: 6 | self.outbound_ip: OutboundIp = OutboundIp(config) 7 | -------------------------------------------------------------------------------- /lark_oapi/api/gray_test_open_sg/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v1 2 | -------------------------------------------------------------------------------- /lark_oapi/api/gray_test_open_sg/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v1.version import V1 5 | 6 | 7 | class GrayTestOpenSgService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v1: V1 = V1(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/gray_test_open_sg/v1/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/gray_test_open_sg/v1/model/__init__.py: -------------------------------------------------------------------------------- 1 | from .department_id import * 2 | from .level import * 3 | from .moto import * 4 | from .create_moto_request import * 5 | from .get_moto_request import * 6 | from .list_moto_request import * 7 | from .create_moto_response_body import * 8 | from .create_moto_response import * 9 | from .get_moto_response_body import * 10 | from .get_moto_response import * 11 | from .list_moto_response_body import * 12 | from .list_moto_response import * 13 | -------------------------------------------------------------------------------- /lark_oapi/api/gray_test_open_sg/v1/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .moto import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/gray_test_open_sg/v1/version.py: -------------------------------------------------------------------------------- 1 | from .resource import * 2 | 3 | 4 | class V1(object): 5 | def __init__(self, config: Config) -> None: 6 | self.moto: Moto = Moto(config) 7 | -------------------------------------------------------------------------------- /lark_oapi/api/helpdesk/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v1 2 | -------------------------------------------------------------------------------- /lark_oapi/api/helpdesk/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v1.version import V1 5 | 6 | 7 | class HelpdeskService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v1: V1 = V1(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/helpdesk/v1/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/helpdesk/v1/model/create_agent_schedule_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class CreateAgentScheduleResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/helpdesk/v1/model/delete_agent_schedules_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteAgentSchedulesResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/helpdesk/v1/model/delete_agent_skill_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteAgentSkillResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/helpdesk/v1/model/delete_category_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteCategoryResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/helpdesk/v1/model/delete_faq_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteFaqResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/helpdesk/v1/model/patch_agent_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class PatchAgentResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/helpdesk/v1/model/patch_agent_schedules_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class PatchAgentSchedulesResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/helpdesk/v1/model/patch_agent_skill_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class PatchAgentSkillResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/helpdesk/v1/model/patch_category_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class PatchCategoryResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/helpdesk/v1/model/patch_faq_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class PatchFaqResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/helpdesk/v1/model/patch_notification_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class PatchNotificationResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/helpdesk/v1/model/preview_notification_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class PreviewNotificationResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/helpdesk/v1/model/subscribe_event_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class SubscribeEventResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/helpdesk/v1/model/unsubscribe_event_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class UnsubscribeEventResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/helpdesk/v1/model/update_ticket_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class UpdateTicketResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/helpdesk/v1/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .agent import * 2 | from .agent_schedules import * 3 | from .agent_schedule import * 4 | from .agent_skill import * 5 | from .agent_skill_rule import * 6 | from .bot_message import * 7 | from .category import * 8 | from .event import * 9 | from .faq import * 10 | from .notification import * 11 | from .ticket import * 12 | from .ticket_message import * 13 | from .ticket_customized_field import * 14 | -------------------------------------------------------------------------------- /lark_oapi/api/hire/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v1 2 | from . import v2 3 | -------------------------------------------------------------------------------- /lark_oapi/api/hire/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v1.version import V1 5 | from .v2.version import V2 6 | 7 | 8 | class HireService(object): 9 | def __init__(self, config: Config) -> None: 10 | self.v1: V1 = V1(config) 11 | self.v2: V2 = V2(config) 12 | -------------------------------------------------------------------------------- /lark_oapi/api/hire/v1/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/hire/v1/model/close_job_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class CloseJobResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/hire/v1/model/create_eco_exam_paper_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class CreateEcoExamPaperResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/hire/v1/model/delete_external_offer_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteExternalOfferResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/hire/v1/model/delete_job_requirement_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteJobRequirementResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/hire/v1/model/delete_note_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteNoteResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/hire/v1/model/delete_website_channel_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteWebsiteChannelResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/hire/v1/model/login_info_eco_exam_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class LoginInfoEcoExamResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/hire/v1/model/offer_status_offer_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class OfferStatusOfferResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/hire/v1/model/onboard_status_talent_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class OnboardStatusTalentResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/hire/v1/model/open_job_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class OpenJobResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/hire/v1/model/patch_ehr_import_task_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class PatchEhrImportTaskResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/hire/v1/model/protect_agency_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class ProtectAgencyResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/hire/v1/model/publish_advertisement_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class PublishAdvertisementResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/hire/v1/model/recover_application_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class RecoverApplicationResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/hire/v1/model/tag_talent_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class TagTalentResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/hire/v1/model/terminate_application_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class TerminateApplicationResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/hire/v1/model/update_job_requirement_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class UpdateJobRequirementResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/hire/v1/model/update_result_eco_exam_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class UpdateResultEcoExamResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/hire/v2/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/hire/v2/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .interview_record import * 2 | from .talent import * 3 | -------------------------------------------------------------------------------- /lark_oapi/api/hire/v2/version.py: -------------------------------------------------------------------------------- 1 | from .resource import * 2 | 3 | 4 | class V2(object): 5 | def __init__(self, config: Config) -> None: 6 | self.interview_record: InterviewRecord = InterviewRecord(config) 7 | self.talent: Talent = Talent(config) 8 | -------------------------------------------------------------------------------- /lark_oapi/api/human_authentication/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v1 2 | -------------------------------------------------------------------------------- /lark_oapi/api/human_authentication/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v1.version import V1 5 | 6 | 7 | class HumanAuthenticationService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v1: V1 = V1(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/human_authentication/v1/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/human_authentication/v1/model/__init__.py: -------------------------------------------------------------------------------- 1 | from .department_id import * 2 | from .identity import * 3 | from .create_identity_request_body import * 4 | from .create_identity_request import * 5 | from .create_identity_response_body import * 6 | from .create_identity_response import * 7 | -------------------------------------------------------------------------------- /lark_oapi/api/human_authentication/v1/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .identity import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/human_authentication/v1/version.py: -------------------------------------------------------------------------------- 1 | from .resource import * 2 | 3 | 4 | class V1(object): 5 | def __init__(self, config: Config) -> None: 6 | self.identity: Identity = Identity(config) 7 | -------------------------------------------------------------------------------- /lark_oapi/api/im/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v1 2 | from . import v2 3 | -------------------------------------------------------------------------------- /lark_oapi/api/im/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v1.version import V1 5 | from .v2.version import V2 6 | 7 | 8 | class ImService(object): 9 | def __init__(self, config: Config) -> None: 10 | self.v1: V1 = V1(config) 11 | self.v2: V2 = V2(config) 12 | -------------------------------------------------------------------------------- /lark_oapi/api/im/v1/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/im/v1/model/delete_batch_message_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteBatchMessageResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/im/v1/model/delete_chat_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteChatResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/im/v1/model/delete_message_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteMessageResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/im/v1/model/delete_pin_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeletePinResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/im/v1/model/me_join_chat_members_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class MeJoinChatMembersResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/im/v1/model/patch_chat_announcement_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class PatchChatAnnouncementResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/im/v1/model/patch_message_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class PatchMessageResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/im/v1/model/push_follow_up_message_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class PushFollowUpMessageResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/im/v1/model/update_chat_moderation_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class UpdateChatModerationResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/im/v1/model/update_chat_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class UpdateChatResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/im/v2/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/im/v2/model/batch_update_url_preview_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class BatchUpdateUrlPreviewResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/im/v2/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .app_feed_card import * 2 | from .app_feed_card_batch import * 3 | from .biz_entity_tag_relation import * 4 | from .chat_button import * 5 | from .feed_card import * 6 | from .tag import * 7 | from .url_preview import * 8 | -------------------------------------------------------------------------------- /lark_oapi/api/lingo/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v1 2 | -------------------------------------------------------------------------------- /lark_oapi/api/lingo/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v1.version import V1 5 | 6 | 7 | class LingoService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v1: V1 = V1(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/lingo/v1/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/lingo/v1/model/delete_entity_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteEntityResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/lingo/v1/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .classification import * 2 | from .draft import * 3 | from .entity import * 4 | from .file import * 5 | from .repo import * 6 | -------------------------------------------------------------------------------- /lark_oapi/api/lingo/v1/version.py: -------------------------------------------------------------------------------- 1 | from .resource import * 2 | 3 | 4 | class V1(object): 5 | def __init__(self, config: Config) -> None: 6 | self.classification: Classification = Classification(config) 7 | self.draft: Draft = Draft(config) 8 | self.entity: Entity = Entity(config) 9 | self.file: File = File(config) 10 | self.repo: Repo = Repo(config) 11 | -------------------------------------------------------------------------------- /lark_oapi/api/mail/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v1 2 | -------------------------------------------------------------------------------- /lark_oapi/api/mail/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v1.version import V1 5 | 6 | 7 | class MailService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v1: V1 = V1(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/mail/v1/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/mail/v1/model/delete_mailgroup_alias_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteMailgroupAliasResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/mail/v1/model/delete_mailgroup_member_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteMailgroupMemberResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/mail/v1/model/delete_mailgroup_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteMailgroupResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/mail/v1/model/delete_public_mailbox_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeletePublicMailboxResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/mail/v1/model/delete_user_mailbox_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteUserMailboxResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/mail/v1/model/delete_user_mailbox_rule_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteUserMailboxRuleResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/mail/v1/model/update_user_mailbox_rule_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class UpdateUserMailboxRuleResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/mdm/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v1 2 | from . import v3 3 | -------------------------------------------------------------------------------- /lark_oapi/api/mdm/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v1.version import V1 5 | from .v3.version import V3 6 | 7 | 8 | class MdmService(object): 9 | def __init__(self, config: Config) -> None: 10 | self.v1: V1 = V1(config) 11 | self.v3: V3 = V3(config) 12 | -------------------------------------------------------------------------------- /lark_oapi/api/mdm/v1/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/mdm/v1/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .user_auth_data_relation import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/mdm/v1/version.py: -------------------------------------------------------------------------------- 1 | from .resource import * 2 | 3 | 4 | class V1(object): 5 | def __init__(self, config: Config) -> None: 6 | self.user_auth_data_relation: UserAuthDataRelation = UserAuthDataRelation(config) 7 | -------------------------------------------------------------------------------- /lark_oapi/api/mdm/v3/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/mdm/v3/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .batch_country_region import * 2 | from .country_region import * 3 | -------------------------------------------------------------------------------- /lark_oapi/api/mdm/v3/version.py: -------------------------------------------------------------------------------- 1 | from .resource import * 2 | 3 | 4 | class V3(object): 5 | def __init__(self, config: Config) -> None: 6 | self.batch_country_region: BatchCountryRegion = BatchCountryRegion(config) 7 | self.country_region: CountryRegion = CountryRegion(config) 8 | -------------------------------------------------------------------------------- /lark_oapi/api/meeting_room/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v1 2 | -------------------------------------------------------------------------------- /lark_oapi/api/meeting_room/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v1.version import V1 5 | 6 | 7 | class MeetingRoomService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v1: V1 = V1(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/meeting_room/v1/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/meeting_room/v1/model/__init__.py: -------------------------------------------------------------------------------- 1 | from .department_id import * 2 | from .event_time import * 3 | from .meeting_room import * 4 | from .user_info import * 5 | from .p2_meeting_room_meeting_room_created_v1 import * 6 | from .p2_meeting_room_meeting_room_deleted_v1 import * 7 | from .p2_meeting_room_meeting_room_status_changed_v1 import * 8 | from .p2_meeting_room_meeting_room_updated_v1 import * 9 | -------------------------------------------------------------------------------- /lark_oapi/api/meeting_room/v1/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .meeting_room import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/meeting_room/v1/version.py: -------------------------------------------------------------------------------- 1 | from .resource import * 2 | 3 | 4 | class V1(object): 5 | def __init__(self, config: Config) -> None: 6 | self.meeting_room: MeetingRoom = MeetingRoom(config) 7 | -------------------------------------------------------------------------------- /lark_oapi/api/minutes/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v1 2 | -------------------------------------------------------------------------------- /lark_oapi/api/minutes/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v1.version import V1 5 | 6 | 7 | class MinutesService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v1: V1 = V1(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/minutes/v1/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/minutes/v1/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .minute import * 2 | from .minute_media import * 3 | from .minute_statistics import * 4 | from .minute_transcript import * 5 | -------------------------------------------------------------------------------- /lark_oapi/api/minutes/v1/version.py: -------------------------------------------------------------------------------- 1 | from .resource import * 2 | 3 | 4 | class V1(object): 5 | def __init__(self, config: Config) -> None: 6 | self.minute: Minute = Minute(config) 7 | self.minute_media: MinuteMedia = MinuteMedia(config) 8 | self.minute_statistics: MinuteStatistics = MinuteStatistics(config) 9 | self.minute_transcript: MinuteTranscript = MinuteTranscript(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/moments/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v1 2 | -------------------------------------------------------------------------------- /lark_oapi/api/moments/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v1.version import V1 5 | 6 | 7 | class MomentsService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v1: V1 = V1(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/moments/v1/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/moments/v1/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .comment import * 2 | from .post import * 3 | from .post_statistics import * 4 | from .reaction import * 5 | -------------------------------------------------------------------------------- /lark_oapi/api/moments/v1/version.py: -------------------------------------------------------------------------------- 1 | from .resource import * 2 | 3 | 4 | class V1(object): 5 | def __init__(self, config: Config) -> None: 6 | self.comment: Comment = Comment(config) 7 | self.post: Post = Post(config) 8 | self.post_statistics: PostStatistics = PostStatistics(config) 9 | self.reaction: Reaction = Reaction(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/okr/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v1 2 | -------------------------------------------------------------------------------- /lark_oapi/api/okr/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v1.version import V1 5 | 6 | 7 | class OkrService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v1: V1 = V1(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/okr/v1/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/okr/v1/model/delete_progress_record_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteProgressRecordResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/okr/v1/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .image import * 2 | from .okr import * 3 | from .period import * 4 | from .period_rule import * 5 | from .progress_record import * 6 | from .review import * 7 | from .user_okr import * 8 | -------------------------------------------------------------------------------- /lark_oapi/api/optical_char_recognition/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v1 2 | -------------------------------------------------------------------------------- /lark_oapi/api/optical_char_recognition/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v1.version import V1 5 | 6 | 7 | class OpticalCharRecognitionService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v1: V1 = V1(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/optical_char_recognition/v1/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/optical_char_recognition/v1/model/__init__.py: -------------------------------------------------------------------------------- 1 | from .department_id import * 2 | from .image import * 3 | from .basic_recognize_image_request_body import * 4 | from .basic_recognize_image_request import * 5 | from .basic_recognize_image_response_body import * 6 | from .basic_recognize_image_response import * 7 | -------------------------------------------------------------------------------- /lark_oapi/api/optical_char_recognition/v1/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .image import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/optical_char_recognition/v1/version.py: -------------------------------------------------------------------------------- 1 | from .resource import * 2 | 3 | 4 | class V1(object): 5 | def __init__(self, config: Config) -> None: 6 | self.image: Image = Image(config) 7 | -------------------------------------------------------------------------------- /lark_oapi/api/passport/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v1 2 | -------------------------------------------------------------------------------- /lark_oapi/api/passport/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v1.version import V1 5 | 6 | 7 | class PassportService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v1: V1 = V1(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/passport/v1/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/passport/v1/model/logout_session_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class LogoutSessionResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/passport/v1/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .session import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/passport/v1/version.py: -------------------------------------------------------------------------------- 1 | from .resource import * 2 | 3 | 4 | class V1(object): 5 | def __init__(self, config: Config) -> None: 6 | self.session: Session = Session(config) 7 | -------------------------------------------------------------------------------- /lark_oapi/api/payroll/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v1 2 | -------------------------------------------------------------------------------- /lark_oapi/api/payroll/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v1.version import V1 5 | 6 | 7 | class PayrollService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v1: V1 = V1(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/payroll/v1/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/payroll/v1/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .acct_item import * 2 | from .cost_allocation_detail import * 3 | from .cost_allocation_plan import * 4 | from .cost_allocation_report import * 5 | from .datasource import * 6 | from .datasource_record import * 7 | from .paygroup import * 8 | from .payment_activity import * 9 | from .payment_activity_detail import * 10 | from .payment_detail import * 11 | -------------------------------------------------------------------------------- /lark_oapi/api/performance/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v2 2 | -------------------------------------------------------------------------------- /lark_oapi/api/performance/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v2.version import V2 5 | 6 | 7 | class PerformanceService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v2: V2 = V2(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/performance/v2/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/personal_settings/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v1 2 | -------------------------------------------------------------------------------- /lark_oapi/api/personal_settings/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v1.version import V1 5 | 6 | 7 | class PersonalSettingsService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v1: V1 = V1(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/personal_settings/v1/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/personal_settings/v1/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .system_status import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/personal_settings/v1/version.py: -------------------------------------------------------------------------------- 1 | from .resource import * 2 | 3 | 4 | class V1(object): 5 | def __init__(self, config: Config) -> None: 6 | self.system_status: SystemStatus = SystemStatus(config) 7 | -------------------------------------------------------------------------------- /lark_oapi/api/report/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v1 2 | -------------------------------------------------------------------------------- /lark_oapi/api/report/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v1.version import V1 5 | 6 | 7 | class ReportService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v1: V1 = V1(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/report/v1/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/report/v1/model/remove_rule_view_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class RemoveRuleViewResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/report/v1/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .rule import * 2 | from .rule_view import * 3 | from .task import * 4 | -------------------------------------------------------------------------------- /lark_oapi/api/report/v1/version.py: -------------------------------------------------------------------------------- 1 | from .resource import * 2 | 3 | 4 | class V1(object): 5 | def __init__(self, config: Config) -> None: 6 | self.rule: Rule = Rule(config) 7 | self.rule_view: RuleView = RuleView(config) 8 | self.task: Task = Task(config) 9 | -------------------------------------------------------------------------------- /lark_oapi/api/search/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v2 2 | -------------------------------------------------------------------------------- /lark_oapi/api/search/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v2.version import V2 5 | 6 | 7 | class SearchService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v2: V2 = V2(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/search/v2/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/search/v2/model/create_data_source_item_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class CreateDataSourceItemResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/search/v2/model/delete_data_source_item_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteDataSourceItemResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/search/v2/model/delete_data_source_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteDataSourceResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/search/v2/model/delete_schema_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteSchemaResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/search/v2/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .app import * 2 | from .data_source import * 3 | from .data_source_item import * 4 | from .message import * 5 | from .schema import * 6 | -------------------------------------------------------------------------------- /lark_oapi/api/search/v2/version.py: -------------------------------------------------------------------------------- 1 | from .resource import * 2 | 3 | 4 | class V2(object): 5 | def __init__(self, config: Config) -> None: 6 | self.app: App = App(config) 7 | self.data_source: DataSource = DataSource(config) 8 | self.data_source_item: DataSourceItem = DataSourceItem(config) 9 | self.message: Message = Message(config) 10 | self.schema: Schema = Schema(config) 11 | -------------------------------------------------------------------------------- /lark_oapi/api/security_and_compliance/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v1 2 | from . import v2 3 | -------------------------------------------------------------------------------- /lark_oapi/api/security_and_compliance/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v1.version import V1 5 | from .v2.version import V2 6 | 7 | 8 | class SecurityAndComplianceService(object): 9 | def __init__(self, config: Config) -> None: 10 | self.v1: V1 = V1(config) 11 | self.v2: V2 = V2(config) 12 | -------------------------------------------------------------------------------- /lark_oapi/api/security_and_compliance/v1/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/security_and_compliance/v1/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .openapi_log import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/security_and_compliance/v1/version.py: -------------------------------------------------------------------------------- 1 | from .resource import * 2 | 3 | 4 | class V1(object): 5 | def __init__(self, config: Config) -> None: 6 | self.openapi_log: OpenapiLog = OpenapiLog(config) 7 | -------------------------------------------------------------------------------- /lark_oapi/api/security_and_compliance/v2/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/security_and_compliance/v2/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .device_apply_record import * 2 | from .device_record import * 3 | -------------------------------------------------------------------------------- /lark_oapi/api/security_and_compliance/v2/version.py: -------------------------------------------------------------------------------- 1 | from .resource import * 2 | 3 | 4 | class V2(object): 5 | def __init__(self, config: Config) -> None: 6 | self.device_apply_record: DeviceApplyRecord = DeviceApplyRecord(config) 7 | self.device_record: DeviceRecord = DeviceRecord(config) 8 | -------------------------------------------------------------------------------- /lark_oapi/api/sheets/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v3 2 | -------------------------------------------------------------------------------- /lark_oapi/api/sheets/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v3.version import V3 5 | 6 | 7 | class SheetsService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v3: V3 = V3(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/sheets/v3/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/sheets/v3/model/patch_spreadsheet_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class PatchSpreadsheetResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/sheets/v3/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .spreadsheet import * 2 | from .spreadsheet_sheet import * 3 | from .spreadsheet_sheet_filter import * 4 | from .spreadsheet_sheet_filter_view import * 5 | from .spreadsheet_sheet_filter_view_condition import * 6 | from .spreadsheet_sheet_float_image import * 7 | -------------------------------------------------------------------------------- /lark_oapi/api/speech_to_text/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v1 2 | -------------------------------------------------------------------------------- /lark_oapi/api/speech_to_text/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v1.version import V1 5 | 6 | 7 | class SpeechToTextService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v1: V1 = V1(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/speech_to_text/v1/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/speech_to_text/v1/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .speech import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/speech_to_text/v1/version.py: -------------------------------------------------------------------------------- 1 | from .resource import * 2 | 3 | 4 | class V1(object): 5 | def __init__(self, config: Config) -> None: 6 | self.speech: Speech = Speech(config) 7 | -------------------------------------------------------------------------------- /lark_oapi/api/task/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v1 2 | from . import v2 3 | -------------------------------------------------------------------------------- /lark_oapi/api/task/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v1.version import V1 5 | from .v2.version import V2 6 | 7 | 8 | class TaskService(object): 9 | def __init__(self, config: Config) -> None: 10 | self.v1: V1 = V1(config) 11 | self.v2: V2 = V2(config) 12 | -------------------------------------------------------------------------------- /lark_oapi/api/task/v1/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/task/v1/model/complete_task_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class CompleteTaskResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/task/v1/model/delete_task_collaborator_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteTaskCollaboratorResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/task/v1/model/delete_task_comment_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteTaskCommentResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/task/v1/model/delete_task_follower_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteTaskFollowerResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/task/v1/model/delete_task_reminder_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteTaskReminderResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/task/v1/model/delete_task_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteTaskResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/task/v1/model/uncomplete_task_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class UncompleteTaskResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/task/v1/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .task import * 2 | from .task_collaborator import * 3 | from .task_comment import * 4 | from .task_follower import * 5 | from .task_reminder import * 6 | -------------------------------------------------------------------------------- /lark_oapi/api/task/v1/version.py: -------------------------------------------------------------------------------- 1 | from .resource import * 2 | 3 | 4 | class V1(object): 5 | def __init__(self, config: Config) -> None: 6 | self.task: Task = Task(config) 7 | self.task_collaborator: TaskCollaborator = TaskCollaborator(config) 8 | self.task_comment: TaskComment = TaskComment(config) 9 | self.task_follower: TaskFollower = TaskFollower(config) 10 | self.task_reminder: TaskReminder = TaskReminder(config) 11 | -------------------------------------------------------------------------------- /lark_oapi/api/task/v2/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/task/v2/model/add_custom_field_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class AddCustomFieldResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/task/v2/model/delete_attachment_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteAttachmentResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/task/v2/model/delete_comment_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteCommentResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/task/v2/model/delete_section_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteSectionResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/task/v2/model/delete_task_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteTaskResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/task/v2/model/delete_tasklist_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteTasklistResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/task/v2/model/remove_custom_field_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class RemoveCustomFieldResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/task/v2/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .attachment import * 2 | from .comment import * 3 | from .custom_field import * 4 | from .custom_field_option import * 5 | from .section import * 6 | from .task import * 7 | from .task_subtask import * 8 | from .tasklist import * 9 | from .tasklist_activity_subscription import * 10 | -------------------------------------------------------------------------------- /lark_oapi/api/tenant/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v2 2 | -------------------------------------------------------------------------------- /lark_oapi/api/tenant/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v2.version import V2 5 | 6 | 7 | class TenantService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v2: V2 = V2(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/tenant/v2/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/tenant/v2/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .tenant import * 2 | from .tenant_product_assign_info import * 3 | -------------------------------------------------------------------------------- /lark_oapi/api/tenant/v2/version.py: -------------------------------------------------------------------------------- 1 | from .resource import * 2 | 3 | 4 | class V2(object): 5 | def __init__(self, config: Config) -> None: 6 | self.tenant: Tenant = Tenant(config) 7 | self.tenant_product_assign_info: TenantProductAssignInfo = TenantProductAssignInfo(config) 8 | -------------------------------------------------------------------------------- /lark_oapi/api/translation/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v1 2 | -------------------------------------------------------------------------------- /lark_oapi/api/translation/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v1.version import V1 5 | 6 | 7 | class TranslationService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v1: V1 = V1(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/translation/v1/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/translation/v1/model/__init__.py: -------------------------------------------------------------------------------- 1 | from .department_id import * 2 | from .term import * 3 | from .text import * 4 | from .detect_text_request_body import * 5 | from .detect_text_request import * 6 | from .translate_text_request_body import * 7 | from .translate_text_request import * 8 | from .detect_text_response_body import * 9 | from .detect_text_response import * 10 | from .translate_text_response_body import * 11 | from .translate_text_response import * 12 | -------------------------------------------------------------------------------- /lark_oapi/api/translation/v1/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .text import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/translation/v1/version.py: -------------------------------------------------------------------------------- 1 | from .resource import * 2 | 3 | 4 | class V1(object): 5 | def __init__(self, config: Config) -> None: 6 | self.text: Text = Text(config) 7 | -------------------------------------------------------------------------------- /lark_oapi/api/vc/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v1 2 | -------------------------------------------------------------------------------- /lark_oapi/api/vc/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v1.version import V1 5 | 6 | 7 | class VcService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v1: V1 = V1(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/vc/v1/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/vc/v1/model/create_scope_config_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class CreateScopeConfigResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/vc/v1/model/del_room_level_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DelRoomLevelResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/vc/v1/model/delete_reserve_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteReserveResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/vc/v1/model/delete_room_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class DeleteRoomResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/vc/v1/model/end_meeting_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class EndMeetingResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/vc/v1/model/patch_reserve_config_form_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class PatchReserveConfigFormResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/vc/v1/model/patch_reserve_config_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class PatchReserveConfigResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/vc/v1/model/patch_room_level_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class PatchRoomLevelResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/vc/v1/model/patch_room_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class PatchRoomResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/vc/v1/model/set_room_config_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class SetRoomConfigResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/vc/v1/model/start_meeting_recording_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class StartMeetingRecordingResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/vc/v1/model/stop_meeting_recording_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class StopMeetingRecordingResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/verification/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v1 2 | -------------------------------------------------------------------------------- /lark_oapi/api/verification/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v1.version import V1 5 | 6 | 7 | class VerificationService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v1: V1 = V1(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/verification/v1/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/verification/v1/model/__init__.py: -------------------------------------------------------------------------------- 1 | from .department_id import * 2 | from .verification import * 3 | from .verification_detail import * 4 | from .get_verification_request import * 5 | from .get_verification_response_body import * 6 | from .get_verification_response import * 7 | -------------------------------------------------------------------------------- /lark_oapi/api/verification/v1/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .verification import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/verification/v1/version.py: -------------------------------------------------------------------------------- 1 | from .resource import * 2 | 3 | 4 | class V1(object): 5 | def __init__(self, config: Config) -> None: 6 | self.verification: Verification = Verification(config) 7 | -------------------------------------------------------------------------------- /lark_oapi/api/wiki/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v1 2 | from . import v2 3 | -------------------------------------------------------------------------------- /lark_oapi/api/wiki/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v1.version import V1 5 | from .v2.version import V2 6 | 7 | 8 | class WikiService(object): 9 | def __init__(self, config: Config) -> None: 10 | self.v1: V1 = V1(config) 11 | self.v2: V2 = V2(config) 12 | -------------------------------------------------------------------------------- /lark_oapi/api/wiki/v1/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/wiki/v1/model/__init__.py: -------------------------------------------------------------------------------- 1 | from .department_id import * 2 | from .node import * 3 | from .node_child import * 4 | from .space import * 5 | from .space_cover_info import * 6 | from .space_home_page import * 7 | from .search_node_request_body import * 8 | from .search_node_request import * 9 | from .search_node_response_body import * 10 | from .search_node_response import * 11 | -------------------------------------------------------------------------------- /lark_oapi/api/wiki/v1/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .node import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/wiki/v1/version.py: -------------------------------------------------------------------------------- 1 | from .resource import * 2 | 3 | 4 | class V1(object): 5 | def __init__(self, config: Config) -> None: 6 | self.node: Node = Node(config) 7 | -------------------------------------------------------------------------------- /lark_oapi/api/wiki/v2/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/wiki/v2/model/update_title_space_node_response.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type 4 | from lark_oapi.core.construct import init 5 | from lark_oapi.core.model import BaseResponse 6 | 7 | 8 | class UpdateTitleSpaceNodeResponse(BaseResponse): 9 | _types = { 10 | 11 | } 12 | 13 | def __init__(self, d=None): 14 | super().__init__(d) 15 | 16 | init(self, d, self._types) 17 | -------------------------------------------------------------------------------- /lark_oapi/api/wiki/v2/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .space import * 2 | from .space_member import * 3 | from .space_node import * 4 | from .space_setting import * 5 | from .task import * 6 | -------------------------------------------------------------------------------- /lark_oapi/api/wiki/v2/version.py: -------------------------------------------------------------------------------- 1 | from .resource import * 2 | 3 | 4 | class V2(object): 5 | def __init__(self, config: Config) -> None: 6 | self.space: Space = Space(config) 7 | self.space_member: SpaceMember = SpaceMember(config) 8 | self.space_node: SpaceNode = SpaceNode(config) 9 | self.space_setting: SpaceSetting = SpaceSetting(config) 10 | self.task: Task = Task(config) 11 | -------------------------------------------------------------------------------- /lark_oapi/api/workplace/__init__.py: -------------------------------------------------------------------------------- 1 | from . import v1 2 | -------------------------------------------------------------------------------- /lark_oapi/api/workplace/service.py: -------------------------------------------------------------------------------- 1 | # Code generated by Lark OpenAPI. 2 | 3 | from lark_oapi.core.model import Config 4 | from .v1.version import V1 5 | 6 | 7 | class WorkplaceService(object): 8 | def __init__(self, config: Config) -> None: 9 | self.v1: V1 = V1(config) 10 | -------------------------------------------------------------------------------- /lark_oapi/api/workplace/v1/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /lark_oapi/api/workplace/v1/resource/__init__.py: -------------------------------------------------------------------------------- 1 | from .custom_workplace_access_data import * 2 | from .workplace_access_data import * 3 | from .workplace_block_access_data import * 4 | -------------------------------------------------------------------------------- /lark_oapi/api/workplace/v1/version.py: -------------------------------------------------------------------------------- 1 | from .resource import * 2 | 3 | 4 | class V1(object): 5 | def __init__(self, config: Config) -> None: 6 | self.custom_workplace_access_data: CustomWorkplaceAccessData = CustomWorkplaceAccessData(config) 7 | self.workplace_access_data: WorkplaceAccessData = WorkplaceAccessData(config) 8 | self.workplace_block_access_data: WorkplaceBlockAccessData = WorkplaceBlockAccessData(config) 9 | -------------------------------------------------------------------------------- /lark_oapi/card/__init__.py: -------------------------------------------------------------------------------- 1 | from .action_handler import CardActionHandler 2 | from .model import * 3 | -------------------------------------------------------------------------------- /lark_oapi/core/__init__.py: -------------------------------------------------------------------------------- 1 | from .cache import ICache 2 | from .const import * 3 | from .enum import * 4 | from .env_var import * 5 | from .json import JSON 6 | from .log import logger 7 | from .model import RequestOption, BaseRequest, BaseResponse, RawRequest, RawResponse 8 | from .type import * 9 | from .utils import * 10 | -------------------------------------------------------------------------------- /lark_oapi/core/cache/__init__.py: -------------------------------------------------------------------------------- 1 | from .cache import * 2 | from .expiring_cache import * 3 | from .local_cache import * 4 | -------------------------------------------------------------------------------- /lark_oapi/core/cache/cache.py: -------------------------------------------------------------------------------- 1 | from abc import ABC, abstractmethod 2 | 3 | 4 | class ICache(ABC): 5 | @abstractmethod 6 | def get(self, key: str) -> str: 7 | pass 8 | 9 | # expire: 过期时间, Unix时间戳(秒) 10 | @abstractmethod 11 | def set(self, key: str, value: str, expire: int): 12 | pass 13 | -------------------------------------------------------------------------------- /lark_oapi/core/env_var.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | APP_ID = os.getenv("APP_ID") 4 | APP_SECRET = os.getenv("APP_SECRET") 5 | ENCRYPT_KEY = os.getenv("ENCRYPT_KEY") 6 | VERIFICATION_TOKEN = os.getenv("VERIFICATION_TOKEN") 7 | -------------------------------------------------------------------------------- /lark_oapi/core/http/__init__.py: -------------------------------------------------------------------------------- 1 | from .handler import * 2 | from .transport import * 3 | -------------------------------------------------------------------------------- /lark_oapi/core/http/handler.py: -------------------------------------------------------------------------------- 1 | from abc import ABC, abstractmethod 2 | 3 | from lark_oapi.core.model import RawRequest, RawResponse 4 | 5 | 6 | class HttpHandler(ABC): 7 | @abstractmethod 8 | def do(self, req: RawRequest) -> RawResponse: 9 | pass 10 | -------------------------------------------------------------------------------- /lark_oapi/core/log.py: -------------------------------------------------------------------------------- 1 | import logging 2 | import sys 3 | 4 | logger = logging.getLogger("Lark") 5 | handler = logging.StreamHandler(sys.stdout) 6 | handler.setFormatter(logging.Formatter("[Lark] [%(asctime)s] [%(levelname)s] %(message)s")) 7 | logger.addHandler(handler) 8 | logger.setLevel(logging.WARNING) 9 | -------------------------------------------------------------------------------- /lark_oapi/core/model/__init__.py: -------------------------------------------------------------------------------- 1 | from .base_request import * 2 | from .base_response import * 3 | from .config import * 4 | from .raw_request import * 5 | from .raw_response import * 6 | from .request_option import * 7 | -------------------------------------------------------------------------------- /lark_oapi/core/model/raw_request.py: -------------------------------------------------------------------------------- 1 | from typing import * 2 | 3 | 4 | class RawRequest(object): 5 | def __init__(self): 6 | self.uri: Optional[str] = None 7 | self.headers: Dict[str, str] = {} 8 | self.body: Optional[bytes] = None 9 | -------------------------------------------------------------------------------- /lark_oapi/core/model/raw_response.py: -------------------------------------------------------------------------------- 1 | from typing import Optional, Dict 2 | 3 | from lark_oapi.core.const import CONTENT_TYPE 4 | 5 | 6 | class RawResponse(object): 7 | 8 | def __init__(self): 9 | self.status_code: Optional[int] = None 10 | self.headers: Dict[str, str] = {} 11 | self.content: Optional[bytes] = None 12 | 13 | def set_content_type(self, content_type: str) -> None: 14 | self.headers[CONTENT_TYPE] = content_type 15 | -------------------------------------------------------------------------------- /lark_oapi/core/token/__init__.py: -------------------------------------------------------------------------------- 1 | from .access_token_response import * 2 | from .auth import * 3 | from .create_isv_app_token_request import * 4 | from .create_isv_tenant_token_request import * 5 | from .create_self_app_token_request import * 6 | from .create_self_tenant_token_request import * 7 | from .create_token_request_body import * 8 | from .manager import * 9 | -------------------------------------------------------------------------------- /lark_oapi/core/type.py: -------------------------------------------------------------------------------- 1 | from typing import TypeVar 2 | 3 | T = TypeVar('T') 4 | -------------------------------------------------------------------------------- /lark_oapi/core/utils/__init__.py: -------------------------------------------------------------------------------- 1 | from .decryptor import * 2 | from .files import * 3 | from .strings import * 4 | -------------------------------------------------------------------------------- /lark_oapi/core/utils/strings.py: -------------------------------------------------------------------------------- 1 | from typing import Optional 2 | 3 | 4 | class Strings(object): 5 | 6 | @staticmethod 7 | def is_not_empty(s: Optional[str]) -> bool: 8 | return not Strings.is_empty(s) 9 | 10 | @staticmethod 11 | def is_empty(s: Optional[str]) -> bool: 12 | return s is None or len(s) == 0 13 | -------------------------------------------------------------------------------- /lark_oapi/event/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lark_oapi/event/callback/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lark_oapi/event/callback/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lark_oapi/ws/__init__.py: -------------------------------------------------------------------------------- 1 | from .client import Client 2 | -------------------------------------------------------------------------------- /lark_oapi/ws/enum.py: -------------------------------------------------------------------------------- 1 | from enum import Enum 2 | 3 | 4 | class FrameType(Enum): 5 | CONTROL = 0 6 | DATA = 1 7 | 8 | 9 | class MessageType(Enum): 10 | EVENT = "event" 11 | CARD = "card" 12 | PING = "ping" 13 | PONG = "pong" 14 | -------------------------------------------------------------------------------- /lark_oapi/ws/pb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lark_oapi/ws/pb/google/__init__.py: -------------------------------------------------------------------------------- 1 | try: 2 | __import__('pkg_resources').declare_namespace(__name__) 3 | except ImportError: 4 | __path__ = __import__('pkgutil').extend_path(__path__, __name__) 5 | -------------------------------------------------------------------------------- /lark_oapi/ws/pb/google/protobuf/compiler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lark_oapi/ws/pb/google/protobuf/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lark_oapi/ws/pb/google/protobuf/pyext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lark_oapi/ws/pb/google/protobuf/util/__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------