workiva-openapi-client 1.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- openapi_client/__init__.py +1084 -0
- openapi_client/api/__init__.py +20 -0
- openapi_client/api/activities_api.py +1654 -0
- openapi_client/api/admin_api.py +11676 -0
- openapi_client/api/content_api.py +12007 -0
- openapi_client/api/documents_api.py +5830 -0
- openapi_client/api/files_api.py +3786 -0
- openapi_client/api/graph_api.py +1851 -0
- openapi_client/api/iam_api.py +362 -0
- openapi_client/api/milestones_api.py +1192 -0
- openapi_client/api/operations_api.py +7620 -0
- openapi_client/api/permissions_api.py +595 -0
- openapi_client/api/presentations_api.py +3868 -0
- openapi_client/api/reports_api.py +361 -0
- openapi_client/api/spreadsheets_api.py +7826 -0
- openapi_client/api/sustainability_api.py +8749 -0
- openapi_client/api/tasks_api.py +1874 -0
- openapi_client/api/test_forms_api.py +9647 -0
- openapi_client/api_client.py +807 -0
- openapi_client/api_response.py +21 -0
- openapi_client/configuration.py +601 -0
- openapi_client/exceptions.py +218 -0
- openapi_client/models/__init__.py +519 -0
- openapi_client/models/action.py +101 -0
- openapi_client/models/activities_list_result.py +102 -0
- openapi_client/models/activity.py +148 -0
- openapi_client/models/activity_action.py +105 -0
- openapi_client/models/activity_actions_list_result.py +102 -0
- openapi_client/models/anchor.py +104 -0
- openapi_client/models/anchor_attachment_point.py +141 -0
- openapi_client/models/anchor_extension.py +90 -0
- openapi_client/models/anchor_extensions_list_result.py +106 -0
- openapi_client/models/anchor_ref.py +95 -0
- openapi_client/models/anchors_list_result.py +106 -0
- openapi_client/models/applicable_text_format.py +164 -0
- openapi_client/models/apply_borders.py +156 -0
- openapi_client/models/apply_formats.py +125 -0
- openapi_client/models/background.py +103 -0
- openapi_client/models/base_drawing_element.py +141 -0
- openapi_client/models/base_text_element.py +107 -0
- openapi_client/models/bearer_token.py +93 -0
- openapi_client/models/border.py +119 -0
- openapi_client/models/bulk_workspace_group_members_modification.py +99 -0
- openapi_client/models/caret.py +89 -0
- openapi_client/models/cell.py +90 -0
- openapi_client/models/cell_border.py +102 -0
- openapi_client/models/cell_borders.py +126 -0
- openapi_client/models/cell_data.py +121 -0
- openapi_client/models/cell_destination_link_value.py +101 -0
- openapi_client/models/cell_edit.py +97 -0
- openapi_client/models/cell_format.py +193 -0
- openapi_client/models/cell_format_borders.py +126 -0
- openapi_client/models/cell_format_indent.py +97 -0
- openapi_client/models/cell_formula_value.py +106 -0
- openapi_client/models/cell_horizontal_alignment.py +39 -0
- openapi_client/models/cell_plain_text_value.py +104 -0
- openapi_client/models/cell_range.py +113 -0
- openapi_client/models/cell_rich_text_value.py +95 -0
- openapi_client/models/cell_value.py +138 -0
- openapi_client/models/cell_vertical_alignment.py +38 -0
- openapi_client/models/change_source_range.py +94 -0
- openapi_client/models/chart_drawing_element.py +147 -0
- openapi_client/models/chart_text_element.py +119 -0
- openapi_client/models/clear_cells_borders.py +98 -0
- openapi_client/models/clear_cells_format.py +116 -0
- openapi_client/models/clear_cells_properties.py +106 -0
- openapi_client/models/clear_cells_text.py +96 -0
- openapi_client/models/clear_list_format.py +101 -0
- openapi_client/models/clear_paragraph_properties.py +109 -0
- openapi_client/models/clear_section_lock_edit.py +88 -0
- openapi_client/models/clear_text_format.py +113 -0
- openapi_client/models/color.py +92 -0
- openapi_client/models/column_metadata.py +99 -0
- openapi_client/models/column_properties_list_result.py +104 -0
- openapi_client/models/column_range.py +90 -0
- openapi_client/models/content_ref.py +119 -0
- openapi_client/models/copy_file_list_result.py +104 -0
- openapi_client/models/copy_file_result.py +103 -0
- openapi_client/models/create_destination_range_link.py +94 -0
- openapi_client/models/create_source_range_link.py +91 -0
- openapi_client/models/dataset.py +103 -0
- openapi_client/models/datasets_list_result.py +102 -0
- openapi_client/models/delete_columns.py +96 -0
- openapi_client/models/delete_rows.py +96 -0
- openapi_client/models/delete_text.py +91 -0
- openapi_client/models/design_page_relative.py +89 -0
- openapi_client/models/destination_link.py +104 -0
- openapi_client/models/destination_link_ref.py +89 -0
- openapi_client/models/destination_link_source.py +106 -0
- openapi_client/models/destination_link_source_conversion_result.py +102 -0
- openapi_client/models/destination_link_source_conversion_result_list_result.py +104 -0
- openapi_client/models/destination_link_source_conversion_result_type.py +37 -0
- openapi_client/models/destination_link_source_type.py +37 -0
- openapi_client/models/destination_link_status.py +37 -0
- openapi_client/models/destination_link_text_element.py +123 -0
- openapi_client/models/dimension.py +115 -0
- openapi_client/models/dimension_value.py +97 -0
- openapi_client/models/dimensions.py +90 -0
- openapi_client/models/dimensions_list_result.py +97 -0
- openapi_client/models/document.py +149 -0
- openapi_client/models/document_export.py +129 -0
- openapi_client/models/document_filters_reapplication.py +89 -0
- openapi_client/models/document_lock_type.py +36 -0
- openapi_client/models/document_ref.py +93 -0
- openapi_client/models/document_to_docx_options.py +89 -0
- openapi_client/models/document_to_pdf_options.py +105 -0
- openapi_client/models/document_to_xhtml_options.py +93 -0
- openapi_client/models/documents_list_result.py +102 -0
- openapi_client/models/drawing_element.py +154 -0
- openapi_client/models/drawing_element_anchor_attachment_point.py +91 -0
- openapi_client/models/drawing_element_anchor_attachment_point_type.py +36 -0
- openapi_client/models/drawing_element_list_result.py +102 -0
- openapi_client/models/drawing_element_type.py +41 -0
- openapi_client/models/drawing_ref.py +93 -0
- openapi_client/models/drawing_relative_position.py +121 -0
- openapi_client/models/drawing_relative_type.py +38 -0
- openapi_client/models/drawing_rich_text_selection.py +99 -0
- openapi_client/models/drawing_rich_text_selection_anchor_attachment_point.py +94 -0
- openapi_client/models/drawing_rich_text_selection_anchor_attachment_point_type.py +37 -0
- openapi_client/models/duplicate_table.py +94 -0
- openapi_client/models/edit.py +106 -0
- openapi_client/models/edits_result.py +89 -0
- openapi_client/models/effective_formats.py +113 -0
- openapi_client/models/error_details.py +91 -0
- openapi_client/models/error_response.py +105 -0
- openapi_client/models/extension_type.py +37 -0
- openapi_client/models/failure.py +105 -0
- openapi_client/models/failure_errors_inner.py +109 -0
- openapi_client/models/failure_errors_inner_links.py +87 -0
- openapi_client/models/failure_errors_inner_source.py +89 -0
- openapi_client/models/failure_jsonapi.py +87 -0
- openapi_client/models/file.py +179 -0
- openapi_client/models/file_copy.py +103 -0
- openapi_client/models/file_copy_options.py +117 -0
- openapi_client/models/file_export_by_id.py +141 -0
- openapi_client/models/file_import.py +121 -0
- openapi_client/models/file_import_response.py +87 -0
- openapi_client/models/files_list_result.py +102 -0
- openapi_client/models/fill.py +93 -0
- openapi_client/models/folder_export.py +115 -0
- openapi_client/models/footer_properties.py +114 -0
- openapi_client/models/footnote_annotation.py +107 -0
- openapi_client/models/footnote_indicator.py +113 -0
- openapi_client/models/format_cells.py +175 -0
- openapi_client/models/format_text.py +170 -0
- openapi_client/models/formats.py +113 -0
- openapi_client/models/framework_reference.py +91 -0
- openapi_client/models/get_org_report_users_response.py +134 -0
- openapi_client/models/get_org_report_users_response_data_inner.py +119 -0
- openapi_client/models/get_org_report_users_response_data_inner_attributes.py +170 -0
- openapi_client/models/get_org_report_users_response_data_inner_attributes_workspace_memberships_inner.py +101 -0
- openapi_client/models/get_org_report_users_response_included_inner.py +91 -0
- openapi_client/models/get_org_report_users_response_jsonapi.py +87 -0
- openapi_client/models/get_org_report_users_response_links.py +92 -0
- openapi_client/models/graph_attachment.py +91 -0
- openapi_client/models/graph_attachment_export.py +97 -0
- openapi_client/models/graph_attachment_upload.py +87 -0
- openapi_client/models/graph_attachment_upload_response.py +87 -0
- openapi_client/models/graph_attachments_list_result.py +102 -0
- openapi_client/models/graph_report_export.py +94 -0
- openapi_client/models/header_footer_properties.py +106 -0
- openapi_client/models/header_footer_properties_margin.py +100 -0
- openapi_client/models/header_properties.py +114 -0
- openapi_client/models/headers_footers.py +134 -0
- openapi_client/models/hyperlink.py +162 -0
- openapi_client/models/hyperlink_text_element.py +115 -0
- openapi_client/models/hyperlink_type.py +43 -0
- openapi_client/models/iam_error.py +91 -0
- openapi_client/models/image.py +93 -0
- openapi_client/models/image_drawing_element.py +149 -0
- openapi_client/models/image_ref.py +87 -0
- openapi_client/models/image_text_element.py +119 -0
- openapi_client/models/image_upload.py +87 -0
- openapi_client/models/image_upload_response.py +87 -0
- openapi_client/models/image_upload_result.py +101 -0
- openapi_client/models/image_upload_result_collection.py +102 -0
- openapi_client/models/import_file_list_result.py +104 -0
- openapi_client/models/import_file_result.py +103 -0
- openapi_client/models/inherit_from.py +38 -0
- openapi_client/models/insert_cell_destination_link.py +93 -0
- openapi_client/models/insert_columns.py +102 -0
- openapi_client/models/insert_destination_link.py +93 -0
- openapi_client/models/insert_footnote.py +91 -0
- openapi_client/models/insert_image.py +99 -0
- openapi_client/models/insert_image_dimensions.py +90 -0
- openapi_client/models/insert_page_number.py +91 -0
- openapi_client/models/insert_paragraph.py +91 -0
- openapi_client/models/insert_rows.py +102 -0
- openapi_client/models/insert_soft_return.py +91 -0
- openapi_client/models/insert_text.py +121 -0
- openapi_client/models/insertion.py +90 -0
- openapi_client/models/interval.py +100 -0
- openapi_client/models/json_patch_operation.py +105 -0
- openapi_client/models/line.py +131 -0
- openapi_client/models/line_cap.py +39 -0
- openapi_client/models/line_cap_size.py +38 -0
- openapi_client/models/line_relative_position.py +121 -0
- openapi_client/models/line_relative_type.py +38 -0
- openapi_client/models/line_spacing.py +100 -0
- openapi_client/models/line_spacing_unit.py +37 -0
- openapi_client/models/line_terminator.py +97 -0
- openapi_client/models/link_status.py +37 -0
- openapi_client/models/links_publication_options.py +94 -0
- openapi_client/models/links_status.py +90 -0
- openapi_client/models/list_format.py +115 -0
- openapi_client/models/list_glyph_alignment.py +37 -0
- openapi_client/models/list_progression.py +93 -0
- openapi_client/models/list_progression_alignment.py +88 -0
- openapi_client/models/list_progression_bold.py +89 -0
- openapi_client/models/list_progression_color.py +93 -0
- openapi_client/models/list_progression_font.py +89 -0
- openapi_client/models/list_progression_formats.py +180 -0
- openapi_client/models/list_progression_indentation.py +89 -0
- openapi_client/models/list_progression_italic.py +89 -0
- openapi_client/models/list_progression_size.py +89 -0
- openapi_client/models/list_progression_style.py +95 -0
- openapi_client/models/list_progression_text.py +91 -0
- openapi_client/models/list_progression_underline.py +89 -0
- openapi_client/models/list_sequence_type.py +41 -0
- openapi_client/models/list_style.py +109 -0
- openapi_client/models/list_style_type.py +37 -0
- openapi_client/models/locked_cell_edit_mode.py +37 -0
- openapi_client/models/margins.py +114 -0
- openapi_client/models/matrices_list_result.py +102 -0
- openapi_client/models/matrix.py +154 -0
- openapi_client/models/matrix_column.py +105 -0
- openapi_client/models/matrix_sample.py +133 -0
- openapi_client/models/matrix_samples_list_result.py +102 -0
- openapi_client/models/metric.py +143 -0
- openapi_client/models/metric_attachment.py +96 -0
- openapi_client/models/metric_value.py +145 -0
- openapi_client/models/metric_value_data_source.py +130 -0
- openapi_client/models/metric_value_identifier.py +95 -0
- openapi_client/models/metric_value_identifier_data_inner.py +93 -0
- openapi_client/models/metric_value_reporting_period.py +92 -0
- openapi_client/models/metric_value_upsertion.py +95 -0
- openapi_client/models/metric_values_list_result.py +97 -0
- openapi_client/models/metrics_list_result.py +97 -0
- openapi_client/models/milestone.py +103 -0
- openapi_client/models/milestone_creation.py +99 -0
- openapi_client/models/milestone_creation_list_result.py +97 -0
- openapi_client/models/milestone_creation_result.py +95 -0
- openapi_client/models/milestone_creation_result_type.py +36 -0
- openapi_client/models/milestone_list_result.py +97 -0
- openapi_client/models/milestone_resource_ref.py +121 -0
- openapi_client/models/milestone_resource_type.py +38 -0
- openapi_client/models/move_columns.py +111 -0
- openapi_client/models/move_rows.py +111 -0
- openapi_client/models/operation.py +149 -0
- openapi_client/models/operation_detail.py +112 -0
- openapi_client/models/organization.py +120 -0
- openapi_client/models/organization_role.py +92 -0
- openapi_client/models/organization_roles_list_result.py +102 -0
- openapi_client/models/organization_solutions_list_result.py +102 -0
- openapi_client/models/organization_user.py +146 -0
- openapi_client/models/organization_user_assignment.py +87 -0
- openapi_client/models/organization_users_list_result.py +102 -0
- openapi_client/models/organizations_list_result.py +102 -0
- openapi_client/models/outcome.py +39 -0
- openapi_client/models/paddings.py +114 -0
- openapi_client/models/page_number.py +107 -0
- openapi_client/models/paragraph.py +141 -0
- openapi_client/models/paragraph_properties.py +141 -0
- openapi_client/models/paragraph_properties_alignment.py +39 -0
- openapi_client/models/paragraph_relative.py +92 -0
- openapi_client/models/paragraph_selection.py +90 -0
- openapi_client/models/paragraphs_list_result.py +108 -0
- openapi_client/models/patch_document_list_result.py +87 -0
- openapi_client/models/patch_presentation_list_result.py +87 -0
- openapi_client/models/patch_section_list_result.py +87 -0
- openapi_client/models/patch_sheet_list_result.py +87 -0
- openapi_client/models/patch_slide_layout_list_result.py +87 -0
- openapi_client/models/patch_slide_list_result.py +87 -0
- openapi_client/models/patch_spreadsheet_list_result.py +87 -0
- openapi_client/models/patch_table_properties_list_result.py +87 -0
- openapi_client/models/performer.py +105 -0
- openapi_client/models/permission.py +91 -0
- openapi_client/models/permissions_list_result.py +102 -0
- openapi_client/models/position.py +89 -0
- openapi_client/models/presentation.py +153 -0
- openapi_client/models/presentation_export.py +118 -0
- openapi_client/models/presentation_filters_reapplication.py +87 -0
- openapi_client/models/presentation_lock_type.py +36 -0
- openapi_client/models/presentation_ref.py +93 -0
- openapi_client/models/presentation_to_pdf_options.py +99 -0
- openapi_client/models/presentation_to_pptx_options.py +87 -0
- openapi_client/models/program.py +93 -0
- openapi_client/models/programs_list_result.py +97 -0
- openapi_client/models/range.py +114 -0
- openapi_client/models/range_link.py +117 -0
- openapi_client/models/range_link_destination.py +91 -0
- openapi_client/models/range_link_edit.py +149 -0
- openapi_client/models/range_link_edit_result.py +101 -0
- openapi_client/models/range_link_edit_result_collection.py +104 -0
- openapi_client/models/range_link_list_result.py +102 -0
- openapi_client/models/range_link_ref.py +92 -0
- openapi_client/models/range_link_source.py +91 -0
- openapi_client/models/range_link_type.py +37 -0
- openapi_client/models/range_values.py +89 -0
- openapi_client/models/range_values_list_result.py +102 -0
- openapi_client/models/record.py +117 -0
- openapi_client/models/records_list_result.py +102 -0
- openapi_client/models/relationship.py +124 -0
- openapi_client/models/remove_cells_link.py +95 -0
- openapi_client/models/remove_destination_range_link.py +88 -0
- openapi_client/models/remove_hyperlinks.py +91 -0
- openapi_client/models/remove_links.py +91 -0
- openapi_client/models/remove_source_range_link.py +88 -0
- openapi_client/models/resize_column_intervals.py +98 -0
- openapi_client/models/resize_row_intervals.py +98 -0
- openapi_client/models/resource_permission.py +107 -0
- openapi_client/models/resource_permissions_list_result.py +102 -0
- openapi_client/models/resource_permissions_modification.py +114 -0
- openapi_client/models/rich_cell_batch_edit.py +103 -0
- openapi_client/models/rich_cell_link_batch_edit.py +103 -0
- openapi_client/models/rich_text_anchor_creation.py +96 -0
- openapi_client/models/rich_text_anchor_creation_result.py +101 -0
- openapi_client/models/rich_text_anchor_creation_result_collection.py +104 -0
- openapi_client/models/rich_text_baseline_shift.py +38 -0
- openapi_client/models/rich_text_batch_edit.py +105 -0
- openapi_client/models/rich_text_duplication_edit.py +112 -0
- openapi_client/models/rich_text_duplication_edit_list_result.py +106 -0
- openapi_client/models/rich_text_duplication_edit_result.py +105 -0
- openapi_client/models/rich_text_edit_list_result.py +106 -0
- openapi_client/models/rich_text_edit_result.py +112 -0
- openapi_client/models/rich_text_format.py +164 -0
- openapi_client/models/rich_text_insert_table.py +102 -0
- openapi_client/models/rich_text_insert_table_dimensions.py +100 -0
- openapi_client/models/rich_text_links_batch_edit.py +105 -0
- openapi_client/models/rich_text_links_edit_list_result.py +106 -0
- openapi_client/models/rich_text_links_edit_result.py +104 -0
- openapi_client/models/rich_text_ref.py +94 -0
- openapi_client/models/rich_text_selection.py +96 -0
- openapi_client/models/rich_text_selection_anchor_attachment_point.py +94 -0
- openapi_client/models/rich_text_selection_anchor_attachment_point_type.py +37 -0
- openapi_client/models/row_metadata.py +106 -0
- openapi_client/models/row_properties_list_result.py +104 -0
- openapi_client/models/row_range.py +90 -0
- openapi_client/models/sample_cell.py +89 -0
- openapi_client/models/section.py +209 -0
- openapi_client/models/section_copy.py +103 -0
- openapi_client/models/section_edit.py +121 -0
- openapi_client/models/section_edit_type.py +38 -0
- openapi_client/models/section_lock_type.py +36 -0
- openapi_client/models/section_page_number.py +113 -0
- openapi_client/models/section_properties.py +166 -0
- openapi_client/models/section_properties_page_number.py +90 -0
- openapi_client/models/section_ref.py +97 -0
- openapi_client/models/sections_edits.py +96 -0
- openapi_client/models/sections_list_result.py +102 -0
- openapi_client/models/set_cells_borders.py +137 -0
- openapi_client/models/set_cells_lock.py +98 -0
- openapi_client/models/set_cells_properties.py +130 -0
- openapi_client/models/set_cells_style.py +98 -0
- openapi_client/models/set_cells_text.py +93 -0
- openapi_client/models/set_hyperlink.py +162 -0
- openapi_client/models/set_hyperlink_section.py +89 -0
- openapi_client/models/set_hyperlink_sheet.py +89 -0
- openapi_client/models/set_hyperlink_slide.py +89 -0
- openapi_client/models/set_input_cells.py +98 -0
- openapi_client/models/set_list_format.py +127 -0
- openapi_client/models/set_non_printing_edit.py +90 -0
- openapi_client/models/set_paragraph_properties.py +162 -0
- openapi_client/models/set_paragraph_style.py +93 -0
- openapi_client/models/set_section_lock_edit.py +91 -0
- openapi_client/models/set_table_breaking.py +101 -0
- openapi_client/models/set_table_text_element_properties.py +124 -0
- openapi_client/models/shape.py +162 -0
- openapi_client/models/shape_type.py +71 -0
- openapi_client/models/sheet.py +157 -0
- openapi_client/models/sheet_copy.py +108 -0
- openapi_client/models/sheet_data.py +150 -0
- openapi_client/models/sheet_data_result.py +98 -0
- openapi_client/models/sheet_lock_type.py +37 -0
- openapi_client/models/sheet_ref.py +97 -0
- openapi_client/models/sheet_update.py +205 -0
- openapi_client/models/sheet_update_apply_borders.py +95 -0
- openapi_client/models/sheet_update_apply_formats.py +95 -0
- openapi_client/models/sheet_update_clear_borders.py +95 -0
- openapi_client/models/sheet_update_clear_formats.py +103 -0
- openapi_client/models/sheet_update_delete_columns.py +97 -0
- openapi_client/models/sheet_update_delete_rows.py +97 -0
- openapi_client/models/sheet_update_edit_cells.py +106 -0
- openapi_client/models/sheet_update_edit_cells_options.py +89 -0
- openapi_client/models/sheet_update_edit_range.py +109 -0
- openapi_client/models/sheet_update_edit_range_options.py +89 -0
- openapi_client/models/sheet_update_hide_columns.py +97 -0
- openapi_client/models/sheet_update_hide_rows.py +97 -0
- openapi_client/models/sheet_update_insert_columns.py +98 -0
- openapi_client/models/sheet_update_insert_rows.py +98 -0
- openapi_client/models/sheet_update_merge_ranges.py +109 -0
- openapi_client/models/sheet_update_resize_columns.py +95 -0
- openapi_client/models/sheet_update_resize_columns_to_fit.py +95 -0
- openapi_client/models/sheet_update_resize_rows.py +95 -0
- openapi_client/models/sheet_update_resize_rows_to_fit.py +95 -0
- openapi_client/models/sheet_update_unhide_columns.py +95 -0
- openapi_client/models/sheet_update_unhide_rows.py +95 -0
- openapi_client/models/sheet_update_unmerge_ranges.py +95 -0
- openapi_client/models/sheets_list_result.py +102 -0
- openapi_client/models/slide.py +155 -0
- openapi_client/models/slide_layout.py +118 -0
- openapi_client/models/slide_layout_lock_type.py +36 -0
- openapi_client/models/slide_layouts_list_result.py +97 -0
- openapi_client/models/slide_lock_type.py +36 -0
- openapi_client/models/slide_ref.py +97 -0
- openapi_client/models/slide_relative.py +89 -0
- openapi_client/models/slides_list_result.py +97 -0
- openapi_client/models/soft_return.py +107 -0
- openapi_client/models/solution.py +94 -0
- openapi_client/models/source_paragraph.py +134 -0
- openapi_client/models/source_text_element.py +127 -0
- openapi_client/models/spreadsheet.py +144 -0
- openapi_client/models/spreadsheet_cell_connection.py +91 -0
- openapi_client/models/spreadsheet_export.py +129 -0
- openapi_client/models/spreadsheet_filters_reapplication.py +87 -0
- openapi_client/models/spreadsheet_lock_type.py +36 -0
- openapi_client/models/spreadsheet_ref.py +93 -0
- openapi_client/models/spreadsheet_to_csv_options.py +87 -0
- openapi_client/models/spreadsheet_to_pdf_options.py +132 -0
- openapi_client/models/spreadsheet_to_xlsx_options.py +99 -0
- openapi_client/models/spreadsheets_list_result.py +102 -0
- openapi_client/models/stroke.py +96 -0
- openapi_client/models/stroke_pattern.py +44 -0
- openapi_client/models/style_guide.py +131 -0
- openapi_client/models/style_guide_export.py +87 -0
- openapi_client/models/style_guide_import_response.py +87 -0
- openapi_client/models/style_ref.py +95 -0
- openapi_client/models/style_text.py +93 -0
- openapi_client/models/supporting_document_import_options.py +87 -0
- openapi_client/models/table_anchor_creation.py +93 -0
- openapi_client/models/table_anchor_creation_result.py +101 -0
- openapi_client/models/table_anchor_creation_result_collection.py +104 -0
- openapi_client/models/table_breaking.py +95 -0
- openapi_client/models/table_breaking_type.py +38 -0
- openapi_client/models/table_cell.py +119 -0
- openapi_client/models/table_cell_connection.py +93 -0
- openapi_client/models/table_cell_edit_list_result.py +87 -0
- openapi_client/models/table_cell_merges.py +116 -0
- openapi_client/models/table_cell_properties.py +139 -0
- openapi_client/models/table_cells_batch_edit.py +106 -0
- openapi_client/models/table_cells_edit.py +226 -0
- openapi_client/models/table_cells_result.py +110 -0
- openapi_client/models/table_column_properties.py +89 -0
- openapi_client/models/table_drawing_element.py +147 -0
- openapi_client/models/table_edit.py +160 -0
- openapi_client/models/table_edit_list_result.py +87 -0
- openapi_client/models/table_filters_reapplication.py +87 -0
- openapi_client/models/table_links_batch_edit.py +106 -0
- openapi_client/models/table_links_edit.py +127 -0
- openapi_client/models/table_links_edit_list_result.py +106 -0
- openapi_client/models/table_links_edit_result.py +101 -0
- openapi_client/models/table_lock_type.py +36 -0
- openapi_client/models/table_properties.py +108 -0
- openapi_client/models/table_range_anchor_attachment_point.py +91 -0
- openapi_client/models/table_reapply_filter_list_result.py +87 -0
- openapi_client/models/table_ref.py +92 -0
- openapi_client/models/table_row.py +95 -0
- openapi_client/models/table_row_properties.py +91 -0
- openapi_client/models/table_style.py +102 -0
- openapi_client/models/table_text_element.py +119 -0
- openapi_client/models/table_text_element_properties.py +107 -0
- openapi_client/models/tag.py +89 -0
- openapi_client/models/target.py +101 -0
- openapi_client/models/task.py +159 -0
- openapi_client/models/task_action.py +101 -0
- openapi_client/models/task_approval_response.py +109 -0
- openapi_client/models/task_approval_step.py +124 -0
- openapi_client/models/task_location.py +94 -0
- openapi_client/models/task_user.py +99 -0
- openapi_client/models/tasks_list_result.py +97 -0
- openapi_client/models/test_form.py +123 -0
- openapi_client/models/test_form_export.py +97 -0
- openapi_client/models/test_forms_list_result.py +102 -0
- openapi_client/models/test_phase.py +123 -0
- openapi_client/models/test_phases_list_result.py +102 -0
- openapi_client/models/text_alignment.py +39 -0
- openapi_client/models/text_edit.py +303 -0
- openapi_client/models/text_element.py +215 -0
- openapi_client/models/text_format.py +145 -0
- openapi_client/models/text_link_edit.py +116 -0
- openapi_client/models/text_region_connection.py +89 -0
- openapi_client/models/text_span.py +109 -0
- openapi_client/models/text_style.py +105 -0
- openapi_client/models/text_style_alignment.py +95 -0
- openapi_client/models/text_style_character_spacing.py +89 -0
- openapi_client/models/text_style_emphasis.py +93 -0
- openapi_client/models/text_style_first_line_indent.py +89 -0
- openapi_client/models/text_style_font_color.py +98 -0
- openapi_client/models/text_style_font_family.py +89 -0
- openapi_client/models/text_style_font_size.py +89 -0
- openapi_client/models/text_style_formats.py +156 -0
- openapi_client/models/text_style_line_spacing.py +92 -0
- openapi_client/models/text_style_space_after_paragraph.py +89 -0
- openapi_client/models/text_style_space_before_paragraph.py +89 -0
- openapi_client/models/text_style_start_indent.py +89 -0
- openapi_client/models/text_style_type.py +37 -0
- openapi_client/models/topic.py +101 -0
- openapi_client/models/topics_list_result.py +97 -0
- openapi_client/models/type.py +110 -0
- openapi_client/models/types_list_result.py +102 -0
- openapi_client/models/unspecified_drawing_element.py +141 -0
- openapi_client/models/unspecified_text_element.py +107 -0
- openapi_client/models/user.py +87 -0
- openapi_client/models/value_format.py +323 -0
- openapi_client/models/value_format_currency_symbol.py +113 -0
- openapi_client/models/value_format_currency_symbol_currency.py +119 -0
- openapi_client/models/value_format_numbers_as_words_options.py +109 -0
- openapi_client/models/value_format_period_format.py +148 -0
- openapi_client/models/value_format_precision.py +100 -0
- openapi_client/models/workiva_file_import_options.py +117 -0
- openapi_client/models/workspace.py +150 -0
- openapi_client/models/workspace_group.py +147 -0
- openapi_client/models/workspace_group_member.py +89 -0
- openapi_client/models/workspace_group_members_list_result.py +102 -0
- openapi_client/models/workspace_groups_list_result.py +102 -0
- openapi_client/models/workspace_membership.py +131 -0
- openapi_client/models/workspace_membership_creation.py +98 -0
- openapi_client/models/workspace_membership_creation_options.py +89 -0
- openapi_client/models/workspace_membership_role.py +92 -0
- openapi_client/models/workspace_membership_roles_list_result.py +102 -0
- openapi_client/models/workspace_memberships_list_result.py +102 -0
- openapi_client/models/workspace_role.py +92 -0
- openapi_client/models/workspace_roles_list_result.py +102 -0
- openapi_client/models/workspace_solutions_list_result.py +102 -0
- openapi_client/models/workspaces_list_result.py +102 -0
- openapi_client/models/wrap_style_type.py +38 -0
- openapi_client/py.typed +0 -0
- openapi_client/rest.py +263 -0
- workiva_openapi_client-1.0.0.dist-info/METADATA +905 -0
- workiva_openapi_client-1.0.0.dist-info/RECORD +533 -0
- workiva_openapi_client-1.0.0.dist-info/WHEEL +5 -0
- workiva_openapi_client-1.0.0.dist-info/licenses/LICENSE +21 -0
- workiva_openapi_client-1.0.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,1084 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
# flake8: noqa
|
|
4
|
+
|
|
5
|
+
"""
|
|
6
|
+
Workiva API
|
|
7
|
+
|
|
8
|
+
2026-01-01 Version of the Workiva API
|
|
9
|
+
|
|
10
|
+
The version of the OpenAPI document: 1.2734.0
|
|
11
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
12
|
+
|
|
13
|
+
Do not edit the class manually.
|
|
14
|
+
""" # noqa: E501
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
__version__ = "1.0.0"
|
|
18
|
+
|
|
19
|
+
# Define package exports
|
|
20
|
+
__all__ = [
|
|
21
|
+
"ActivitiesApi",
|
|
22
|
+
"AdminApi",
|
|
23
|
+
"ContentApi",
|
|
24
|
+
"DocumentsApi",
|
|
25
|
+
"FilesApi",
|
|
26
|
+
"GraphApi",
|
|
27
|
+
"IAMApi",
|
|
28
|
+
"MilestonesApi",
|
|
29
|
+
"OperationsApi",
|
|
30
|
+
"PermissionsApi",
|
|
31
|
+
"PresentationsApi",
|
|
32
|
+
"ReportsApi",
|
|
33
|
+
"SpreadsheetsApi",
|
|
34
|
+
"SustainabilityApi",
|
|
35
|
+
"TasksApi",
|
|
36
|
+
"TestFormsApi",
|
|
37
|
+
"ApiResponse",
|
|
38
|
+
"ApiClient",
|
|
39
|
+
"Configuration",
|
|
40
|
+
"OpenApiException",
|
|
41
|
+
"ApiTypeError",
|
|
42
|
+
"ApiValueError",
|
|
43
|
+
"ApiKeyError",
|
|
44
|
+
"ApiAttributeError",
|
|
45
|
+
"ApiException",
|
|
46
|
+
"Action",
|
|
47
|
+
"ActivitiesListResult",
|
|
48
|
+
"Activity",
|
|
49
|
+
"ActivityAction",
|
|
50
|
+
"ActivityActionsListResult",
|
|
51
|
+
"Anchor",
|
|
52
|
+
"AnchorAttachmentPoint",
|
|
53
|
+
"AnchorExtension",
|
|
54
|
+
"AnchorExtensionsListResult",
|
|
55
|
+
"AnchorRef",
|
|
56
|
+
"AnchorsListResult",
|
|
57
|
+
"ApplicableTextFormat",
|
|
58
|
+
"ApplyBorders",
|
|
59
|
+
"ApplyFormats",
|
|
60
|
+
"Background",
|
|
61
|
+
"BaseDrawingElement",
|
|
62
|
+
"BaseTextElement",
|
|
63
|
+
"BearerToken",
|
|
64
|
+
"Border",
|
|
65
|
+
"BulkWorkspaceGroupMembersModification",
|
|
66
|
+
"Caret",
|
|
67
|
+
"Cell",
|
|
68
|
+
"CellBorder",
|
|
69
|
+
"CellBorders",
|
|
70
|
+
"CellData",
|
|
71
|
+
"CellDestinationLinkValue",
|
|
72
|
+
"CellEdit",
|
|
73
|
+
"CellFormat",
|
|
74
|
+
"CellFormatBorders",
|
|
75
|
+
"CellFormatIndent",
|
|
76
|
+
"CellFormulaValue",
|
|
77
|
+
"CellHorizontalAlignment",
|
|
78
|
+
"CellPlainTextValue",
|
|
79
|
+
"CellRange",
|
|
80
|
+
"CellRichTextValue",
|
|
81
|
+
"CellValue",
|
|
82
|
+
"CellVerticalAlignment",
|
|
83
|
+
"ChangeSourceRange",
|
|
84
|
+
"ChartDrawingElement",
|
|
85
|
+
"ChartTextElement",
|
|
86
|
+
"ClearCellsBorders",
|
|
87
|
+
"ClearCellsFormat",
|
|
88
|
+
"ClearCellsProperties",
|
|
89
|
+
"ClearCellsText",
|
|
90
|
+
"ClearListFormat",
|
|
91
|
+
"ClearParagraphProperties",
|
|
92
|
+
"ClearSectionLockEdit",
|
|
93
|
+
"ClearTextFormat",
|
|
94
|
+
"Color",
|
|
95
|
+
"ColumnMetadata",
|
|
96
|
+
"ColumnPropertiesListResult",
|
|
97
|
+
"ColumnRange",
|
|
98
|
+
"ContentRef",
|
|
99
|
+
"CopyFileListResult",
|
|
100
|
+
"CopyFileResult",
|
|
101
|
+
"CreateDestinationRangeLink",
|
|
102
|
+
"CreateSourceRangeLink",
|
|
103
|
+
"Dataset",
|
|
104
|
+
"DatasetsListResult",
|
|
105
|
+
"DeleteColumns",
|
|
106
|
+
"DeleteRows",
|
|
107
|
+
"DeleteText",
|
|
108
|
+
"DesignPageRelative",
|
|
109
|
+
"DestinationLink",
|
|
110
|
+
"DestinationLinkRef",
|
|
111
|
+
"DestinationLinkSource",
|
|
112
|
+
"DestinationLinkSourceConversionResult",
|
|
113
|
+
"DestinationLinkSourceConversionResultListResult",
|
|
114
|
+
"DestinationLinkSourceConversionResultType",
|
|
115
|
+
"DestinationLinkSourceType",
|
|
116
|
+
"DestinationLinkStatus",
|
|
117
|
+
"DestinationLinkTextElement",
|
|
118
|
+
"Dimension",
|
|
119
|
+
"DimensionValue",
|
|
120
|
+
"Dimensions",
|
|
121
|
+
"DimensionsListResult",
|
|
122
|
+
"Document",
|
|
123
|
+
"DocumentExport",
|
|
124
|
+
"DocumentFiltersReapplication",
|
|
125
|
+
"DocumentLockType",
|
|
126
|
+
"DocumentRef",
|
|
127
|
+
"DocumentToDocxOptions",
|
|
128
|
+
"DocumentToPdfOptions",
|
|
129
|
+
"DocumentToXhtmlOptions",
|
|
130
|
+
"DocumentsListResult",
|
|
131
|
+
"DrawingElement",
|
|
132
|
+
"DrawingElementAnchorAttachmentPoint",
|
|
133
|
+
"DrawingElementAnchorAttachmentPointType",
|
|
134
|
+
"DrawingElementListResult",
|
|
135
|
+
"DrawingElementType",
|
|
136
|
+
"DrawingRef",
|
|
137
|
+
"DrawingRelativePosition",
|
|
138
|
+
"DrawingRelativeType",
|
|
139
|
+
"DrawingRichTextSelection",
|
|
140
|
+
"DrawingRichTextSelectionAnchorAttachmentPoint",
|
|
141
|
+
"DrawingRichTextSelectionAnchorAttachmentPointType",
|
|
142
|
+
"DuplicateTable",
|
|
143
|
+
"Edit",
|
|
144
|
+
"EditsResult",
|
|
145
|
+
"EffectiveFormats",
|
|
146
|
+
"ErrorDetails",
|
|
147
|
+
"ErrorResponse",
|
|
148
|
+
"ExtensionType",
|
|
149
|
+
"Failure",
|
|
150
|
+
"FailureErrorsInner",
|
|
151
|
+
"FailureErrorsInnerLinks",
|
|
152
|
+
"FailureErrorsInnerSource",
|
|
153
|
+
"FailureJsonapi",
|
|
154
|
+
"File",
|
|
155
|
+
"FileCopy",
|
|
156
|
+
"FileCopyOptions",
|
|
157
|
+
"FileExportById",
|
|
158
|
+
"FileImport",
|
|
159
|
+
"FileImportResponse",
|
|
160
|
+
"FilesListResult",
|
|
161
|
+
"Fill",
|
|
162
|
+
"FolderExport",
|
|
163
|
+
"FooterProperties",
|
|
164
|
+
"FootnoteAnnotation",
|
|
165
|
+
"FootnoteIndicator",
|
|
166
|
+
"FormatCells",
|
|
167
|
+
"FormatText",
|
|
168
|
+
"Formats",
|
|
169
|
+
"FrameworkReference",
|
|
170
|
+
"GetOrgReportUsersResponse",
|
|
171
|
+
"GetOrgReportUsersResponseDataInner",
|
|
172
|
+
"GetOrgReportUsersResponseDataInnerAttributes",
|
|
173
|
+
"GetOrgReportUsersResponseDataInnerAttributesWorkspaceMembershipsInner",
|
|
174
|
+
"GetOrgReportUsersResponseIncludedInner",
|
|
175
|
+
"GetOrgReportUsersResponseJsonapi",
|
|
176
|
+
"GetOrgReportUsersResponseLinks",
|
|
177
|
+
"GraphAttachment",
|
|
178
|
+
"GraphAttachmentExport",
|
|
179
|
+
"GraphAttachmentUpload",
|
|
180
|
+
"GraphAttachmentUploadResponse",
|
|
181
|
+
"GraphAttachmentsListResult",
|
|
182
|
+
"GraphReportExport",
|
|
183
|
+
"HeaderFooterProperties",
|
|
184
|
+
"HeaderFooterPropertiesMargin",
|
|
185
|
+
"HeaderProperties",
|
|
186
|
+
"HeadersFooters",
|
|
187
|
+
"Hyperlink",
|
|
188
|
+
"HyperlinkTextElement",
|
|
189
|
+
"HyperlinkType",
|
|
190
|
+
"IamError",
|
|
191
|
+
"Image",
|
|
192
|
+
"ImageDrawingElement",
|
|
193
|
+
"ImageRef",
|
|
194
|
+
"ImageTextElement",
|
|
195
|
+
"ImageUpload",
|
|
196
|
+
"ImageUploadResponse",
|
|
197
|
+
"ImageUploadResult",
|
|
198
|
+
"ImageUploadResultCollection",
|
|
199
|
+
"ImportFileListResult",
|
|
200
|
+
"ImportFileResult",
|
|
201
|
+
"InheritFrom",
|
|
202
|
+
"InsertCellDestinationLink",
|
|
203
|
+
"InsertColumns",
|
|
204
|
+
"InsertDestinationLink",
|
|
205
|
+
"InsertFootnote",
|
|
206
|
+
"InsertImage",
|
|
207
|
+
"InsertImageDimensions",
|
|
208
|
+
"InsertPageNumber",
|
|
209
|
+
"InsertParagraph",
|
|
210
|
+
"InsertRows",
|
|
211
|
+
"InsertSoftReturn",
|
|
212
|
+
"InsertText",
|
|
213
|
+
"Insertion",
|
|
214
|
+
"Interval",
|
|
215
|
+
"JSONPatchOperation",
|
|
216
|
+
"Line",
|
|
217
|
+
"LineCap",
|
|
218
|
+
"LineCapSize",
|
|
219
|
+
"LineRelativePosition",
|
|
220
|
+
"LineRelativeType",
|
|
221
|
+
"LineSpacing",
|
|
222
|
+
"LineSpacingUnit",
|
|
223
|
+
"LineTerminator",
|
|
224
|
+
"LinkStatus",
|
|
225
|
+
"LinksPublicationOptions",
|
|
226
|
+
"LinksStatus",
|
|
227
|
+
"ListFormat",
|
|
228
|
+
"ListGlyphAlignment",
|
|
229
|
+
"ListProgression",
|
|
230
|
+
"ListProgressionAlignment",
|
|
231
|
+
"ListProgressionBold",
|
|
232
|
+
"ListProgressionColor",
|
|
233
|
+
"ListProgressionFont",
|
|
234
|
+
"ListProgressionFormats",
|
|
235
|
+
"ListProgressionIndentation",
|
|
236
|
+
"ListProgressionItalic",
|
|
237
|
+
"ListProgressionSize",
|
|
238
|
+
"ListProgressionStyle",
|
|
239
|
+
"ListProgressionText",
|
|
240
|
+
"ListProgressionUnderline",
|
|
241
|
+
"ListSequenceType",
|
|
242
|
+
"ListStyle",
|
|
243
|
+
"ListStyleType",
|
|
244
|
+
"LockedCellEditMode",
|
|
245
|
+
"Margins",
|
|
246
|
+
"MatricesListResult",
|
|
247
|
+
"Matrix",
|
|
248
|
+
"MatrixColumn",
|
|
249
|
+
"MatrixSample",
|
|
250
|
+
"MatrixSamplesListResult",
|
|
251
|
+
"Metric",
|
|
252
|
+
"MetricAttachment",
|
|
253
|
+
"MetricValue",
|
|
254
|
+
"MetricValueDataSource",
|
|
255
|
+
"MetricValueIdentifier",
|
|
256
|
+
"MetricValueIdentifierDataInner",
|
|
257
|
+
"MetricValueReportingPeriod",
|
|
258
|
+
"MetricValueUpsertion",
|
|
259
|
+
"MetricValuesListResult",
|
|
260
|
+
"MetricsListResult",
|
|
261
|
+
"Milestone",
|
|
262
|
+
"MilestoneCreation",
|
|
263
|
+
"MilestoneCreationListResult",
|
|
264
|
+
"MilestoneCreationResult",
|
|
265
|
+
"MilestoneCreationResultType",
|
|
266
|
+
"MilestoneListResult",
|
|
267
|
+
"MilestoneResourceRef",
|
|
268
|
+
"MilestoneResourceType",
|
|
269
|
+
"MoveColumns",
|
|
270
|
+
"MoveRows",
|
|
271
|
+
"Operation",
|
|
272
|
+
"OperationDetail",
|
|
273
|
+
"Organization",
|
|
274
|
+
"OrganizationRole",
|
|
275
|
+
"OrganizationRolesListResult",
|
|
276
|
+
"OrganizationSolutionsListResult",
|
|
277
|
+
"OrganizationUser",
|
|
278
|
+
"OrganizationUserAssignment",
|
|
279
|
+
"OrganizationUsersListResult",
|
|
280
|
+
"OrganizationsListResult",
|
|
281
|
+
"Outcome",
|
|
282
|
+
"Paddings",
|
|
283
|
+
"PageNumber",
|
|
284
|
+
"Paragraph",
|
|
285
|
+
"ParagraphProperties",
|
|
286
|
+
"ParagraphPropertiesAlignment",
|
|
287
|
+
"ParagraphRelative",
|
|
288
|
+
"ParagraphSelection",
|
|
289
|
+
"ParagraphsListResult",
|
|
290
|
+
"PatchDocumentListResult",
|
|
291
|
+
"PatchPresentationListResult",
|
|
292
|
+
"PatchSectionListResult",
|
|
293
|
+
"PatchSheetListResult",
|
|
294
|
+
"PatchSlideLayoutListResult",
|
|
295
|
+
"PatchSlideListResult",
|
|
296
|
+
"PatchSpreadsheetListResult",
|
|
297
|
+
"PatchTablePropertiesListResult",
|
|
298
|
+
"Performer",
|
|
299
|
+
"Permission",
|
|
300
|
+
"PermissionsListResult",
|
|
301
|
+
"Position",
|
|
302
|
+
"Presentation",
|
|
303
|
+
"PresentationExport",
|
|
304
|
+
"PresentationFiltersReapplication",
|
|
305
|
+
"PresentationLockType",
|
|
306
|
+
"PresentationRef",
|
|
307
|
+
"PresentationToPdfOptions",
|
|
308
|
+
"PresentationToPptxOptions",
|
|
309
|
+
"Program",
|
|
310
|
+
"ProgramsListResult",
|
|
311
|
+
"Range",
|
|
312
|
+
"RangeLink",
|
|
313
|
+
"RangeLinkDestination",
|
|
314
|
+
"RangeLinkEdit",
|
|
315
|
+
"RangeLinkEditResult",
|
|
316
|
+
"RangeLinkEditResultCollection",
|
|
317
|
+
"RangeLinkListResult",
|
|
318
|
+
"RangeLinkRef",
|
|
319
|
+
"RangeLinkSource",
|
|
320
|
+
"RangeLinkType",
|
|
321
|
+
"RangeValues",
|
|
322
|
+
"RangeValuesListResult",
|
|
323
|
+
"Record",
|
|
324
|
+
"RecordsListResult",
|
|
325
|
+
"Relationship",
|
|
326
|
+
"RemoveCellsLink",
|
|
327
|
+
"RemoveDestinationRangeLink",
|
|
328
|
+
"RemoveHyperlinks",
|
|
329
|
+
"RemoveLinks",
|
|
330
|
+
"RemoveSourceRangeLink",
|
|
331
|
+
"ResizeColumnIntervals",
|
|
332
|
+
"ResizeRowIntervals",
|
|
333
|
+
"ResourcePermission",
|
|
334
|
+
"ResourcePermissionsListResult",
|
|
335
|
+
"ResourcePermissionsModification",
|
|
336
|
+
"RichCellBatchEdit",
|
|
337
|
+
"RichCellLinkBatchEdit",
|
|
338
|
+
"RichTextAnchorCreation",
|
|
339
|
+
"RichTextAnchorCreationResult",
|
|
340
|
+
"RichTextAnchorCreationResultCollection",
|
|
341
|
+
"RichTextBaselineShift",
|
|
342
|
+
"RichTextBatchEdit",
|
|
343
|
+
"RichTextDuplicationEdit",
|
|
344
|
+
"RichTextDuplicationEditListResult",
|
|
345
|
+
"RichTextDuplicationEditResult",
|
|
346
|
+
"RichTextEditListResult",
|
|
347
|
+
"RichTextEditResult",
|
|
348
|
+
"RichTextFormat",
|
|
349
|
+
"RichTextInsertTable",
|
|
350
|
+
"RichTextInsertTableDimensions",
|
|
351
|
+
"RichTextLinksBatchEdit",
|
|
352
|
+
"RichTextLinksEditListResult",
|
|
353
|
+
"RichTextLinksEditResult",
|
|
354
|
+
"RichTextRef",
|
|
355
|
+
"RichTextSelection",
|
|
356
|
+
"RichTextSelectionAnchorAttachmentPoint",
|
|
357
|
+
"RichTextSelectionAnchorAttachmentPointType",
|
|
358
|
+
"RowMetadata",
|
|
359
|
+
"RowPropertiesListResult",
|
|
360
|
+
"RowRange",
|
|
361
|
+
"SampleCell",
|
|
362
|
+
"Section",
|
|
363
|
+
"SectionCopy",
|
|
364
|
+
"SectionEdit",
|
|
365
|
+
"SectionEditType",
|
|
366
|
+
"SectionLockType",
|
|
367
|
+
"SectionPageNumber",
|
|
368
|
+
"SectionProperties",
|
|
369
|
+
"SectionPropertiesPageNumber",
|
|
370
|
+
"SectionRef",
|
|
371
|
+
"SectionsEdits",
|
|
372
|
+
"SectionsListResult",
|
|
373
|
+
"SetCellsBorders",
|
|
374
|
+
"SetCellsLock",
|
|
375
|
+
"SetCellsProperties",
|
|
376
|
+
"SetCellsStyle",
|
|
377
|
+
"SetCellsText",
|
|
378
|
+
"SetHyperlink",
|
|
379
|
+
"SetHyperlinkSection",
|
|
380
|
+
"SetHyperlinkSheet",
|
|
381
|
+
"SetHyperlinkSlide",
|
|
382
|
+
"SetInputCells",
|
|
383
|
+
"SetListFormat",
|
|
384
|
+
"SetNonPrintingEdit",
|
|
385
|
+
"SetParagraphProperties",
|
|
386
|
+
"SetParagraphStyle",
|
|
387
|
+
"SetSectionLockEdit",
|
|
388
|
+
"SetTableBreaking",
|
|
389
|
+
"SetTableTextElementProperties",
|
|
390
|
+
"Shape",
|
|
391
|
+
"ShapeType",
|
|
392
|
+
"Sheet",
|
|
393
|
+
"SheetCopy",
|
|
394
|
+
"SheetData",
|
|
395
|
+
"SheetDataResult",
|
|
396
|
+
"SheetLockType",
|
|
397
|
+
"SheetRef",
|
|
398
|
+
"SheetUpdate",
|
|
399
|
+
"SheetUpdateApplyBorders",
|
|
400
|
+
"SheetUpdateApplyFormats",
|
|
401
|
+
"SheetUpdateClearBorders",
|
|
402
|
+
"SheetUpdateClearFormats",
|
|
403
|
+
"SheetUpdateDeleteColumns",
|
|
404
|
+
"SheetUpdateDeleteRows",
|
|
405
|
+
"SheetUpdateEditCells",
|
|
406
|
+
"SheetUpdateEditCellsOptions",
|
|
407
|
+
"SheetUpdateEditRange",
|
|
408
|
+
"SheetUpdateEditRangeOptions",
|
|
409
|
+
"SheetUpdateHideColumns",
|
|
410
|
+
"SheetUpdateHideRows",
|
|
411
|
+
"SheetUpdateInsertColumns",
|
|
412
|
+
"SheetUpdateInsertRows",
|
|
413
|
+
"SheetUpdateMergeRanges",
|
|
414
|
+
"SheetUpdateResizeColumns",
|
|
415
|
+
"SheetUpdateResizeColumnsToFit",
|
|
416
|
+
"SheetUpdateResizeRows",
|
|
417
|
+
"SheetUpdateResizeRowsToFit",
|
|
418
|
+
"SheetUpdateUnhideColumns",
|
|
419
|
+
"SheetUpdateUnhideRows",
|
|
420
|
+
"SheetUpdateUnmergeRanges",
|
|
421
|
+
"SheetsListResult",
|
|
422
|
+
"Slide",
|
|
423
|
+
"SlideLayout",
|
|
424
|
+
"SlideLayoutLockType",
|
|
425
|
+
"SlideLayoutsListResult",
|
|
426
|
+
"SlideLockType",
|
|
427
|
+
"SlideRef",
|
|
428
|
+
"SlideRelative",
|
|
429
|
+
"SlidesListResult",
|
|
430
|
+
"SoftReturn",
|
|
431
|
+
"Solution",
|
|
432
|
+
"SourceParagraph",
|
|
433
|
+
"SourceTextElement",
|
|
434
|
+
"Spreadsheet",
|
|
435
|
+
"SpreadsheetCellConnection",
|
|
436
|
+
"SpreadsheetExport",
|
|
437
|
+
"SpreadsheetFiltersReapplication",
|
|
438
|
+
"SpreadsheetLockType",
|
|
439
|
+
"SpreadsheetRef",
|
|
440
|
+
"SpreadsheetToCsvOptions",
|
|
441
|
+
"SpreadsheetToPdfOptions",
|
|
442
|
+
"SpreadsheetToXlsxOptions",
|
|
443
|
+
"SpreadsheetsListResult",
|
|
444
|
+
"Stroke",
|
|
445
|
+
"StrokePattern",
|
|
446
|
+
"StyleGuide",
|
|
447
|
+
"StyleGuideExport",
|
|
448
|
+
"StyleGuideImportResponse",
|
|
449
|
+
"StyleRef",
|
|
450
|
+
"StyleText",
|
|
451
|
+
"SupportingDocumentImportOptions",
|
|
452
|
+
"TableAnchorCreation",
|
|
453
|
+
"TableAnchorCreationResult",
|
|
454
|
+
"TableAnchorCreationResultCollection",
|
|
455
|
+
"TableBreaking",
|
|
456
|
+
"TableBreakingType",
|
|
457
|
+
"TableCell",
|
|
458
|
+
"TableCellConnection",
|
|
459
|
+
"TableCellEditListResult",
|
|
460
|
+
"TableCellMerges",
|
|
461
|
+
"TableCellProperties",
|
|
462
|
+
"TableCellsBatchEdit",
|
|
463
|
+
"TableCellsEdit",
|
|
464
|
+
"TableCellsResult",
|
|
465
|
+
"TableColumnProperties",
|
|
466
|
+
"TableDrawingElement",
|
|
467
|
+
"TableEdit",
|
|
468
|
+
"TableEditListResult",
|
|
469
|
+
"TableFiltersReapplication",
|
|
470
|
+
"TableLinksBatchEdit",
|
|
471
|
+
"TableLinksEdit",
|
|
472
|
+
"TableLinksEditListResult",
|
|
473
|
+
"TableLinksEditResult",
|
|
474
|
+
"TableLockType",
|
|
475
|
+
"TableProperties",
|
|
476
|
+
"TableRangeAnchorAttachmentPoint",
|
|
477
|
+
"TableReapplyFilterListResult",
|
|
478
|
+
"TableRef",
|
|
479
|
+
"TableRow",
|
|
480
|
+
"TableRowProperties",
|
|
481
|
+
"TableStyle",
|
|
482
|
+
"TableTextElement",
|
|
483
|
+
"TableTextElementProperties",
|
|
484
|
+
"Tag",
|
|
485
|
+
"Target",
|
|
486
|
+
"Task",
|
|
487
|
+
"TaskAction",
|
|
488
|
+
"TaskApprovalResponse",
|
|
489
|
+
"TaskApprovalStep",
|
|
490
|
+
"TaskLocation",
|
|
491
|
+
"TaskUser",
|
|
492
|
+
"TasksListResult",
|
|
493
|
+
"TestForm",
|
|
494
|
+
"TestFormExport",
|
|
495
|
+
"TestFormsListResult",
|
|
496
|
+
"TestPhase",
|
|
497
|
+
"TestPhasesListResult",
|
|
498
|
+
"TextAlignment",
|
|
499
|
+
"TextEdit",
|
|
500
|
+
"TextElement",
|
|
501
|
+
"TextFormat",
|
|
502
|
+
"TextLinkEdit",
|
|
503
|
+
"TextRegionConnection",
|
|
504
|
+
"TextSpan",
|
|
505
|
+
"TextStyle",
|
|
506
|
+
"TextStyleAlignment",
|
|
507
|
+
"TextStyleCharacterSpacing",
|
|
508
|
+
"TextStyleEmphasis",
|
|
509
|
+
"TextStyleFirstLineIndent",
|
|
510
|
+
"TextStyleFontColor",
|
|
511
|
+
"TextStyleFontFamily",
|
|
512
|
+
"TextStyleFontSize",
|
|
513
|
+
"TextStyleFormats",
|
|
514
|
+
"TextStyleLineSpacing",
|
|
515
|
+
"TextStyleSpaceAfterParagraph",
|
|
516
|
+
"TextStyleSpaceBeforeParagraph",
|
|
517
|
+
"TextStyleStartIndent",
|
|
518
|
+
"TextStyleType",
|
|
519
|
+
"Topic",
|
|
520
|
+
"TopicsListResult",
|
|
521
|
+
"Type",
|
|
522
|
+
"TypesListResult",
|
|
523
|
+
"UnspecifiedDrawingElement",
|
|
524
|
+
"UnspecifiedTextElement",
|
|
525
|
+
"User",
|
|
526
|
+
"ValueFormat",
|
|
527
|
+
"ValueFormatCurrencySymbol",
|
|
528
|
+
"ValueFormatCurrencySymbolCurrency",
|
|
529
|
+
"ValueFormatNumbersAsWordsOptions",
|
|
530
|
+
"ValueFormatPeriodFormat",
|
|
531
|
+
"ValueFormatPrecision",
|
|
532
|
+
"WorkivaFileImportOptions",
|
|
533
|
+
"Workspace",
|
|
534
|
+
"WorkspaceGroup",
|
|
535
|
+
"WorkspaceGroupMember",
|
|
536
|
+
"WorkspaceGroupMembersListResult",
|
|
537
|
+
"WorkspaceGroupsListResult",
|
|
538
|
+
"WorkspaceMembership",
|
|
539
|
+
"WorkspaceMembershipCreation",
|
|
540
|
+
"WorkspaceMembershipCreationOptions",
|
|
541
|
+
"WorkspaceMembershipRole",
|
|
542
|
+
"WorkspaceMembershipRolesListResult",
|
|
543
|
+
"WorkspaceMembershipsListResult",
|
|
544
|
+
"WorkspaceRole",
|
|
545
|
+
"WorkspaceRolesListResult",
|
|
546
|
+
"WorkspaceSolutionsListResult",
|
|
547
|
+
"WorkspacesListResult",
|
|
548
|
+
"WrapStyleType",
|
|
549
|
+
]
|
|
550
|
+
|
|
551
|
+
# import apis into sdk package
|
|
552
|
+
from openapi_client.api.activities_api import ActivitiesApi as ActivitiesApi
|
|
553
|
+
from openapi_client.api.admin_api import AdminApi as AdminApi
|
|
554
|
+
from openapi_client.api.content_api import ContentApi as ContentApi
|
|
555
|
+
from openapi_client.api.documents_api import DocumentsApi as DocumentsApi
|
|
556
|
+
from openapi_client.api.files_api import FilesApi as FilesApi
|
|
557
|
+
from openapi_client.api.graph_api import GraphApi as GraphApi
|
|
558
|
+
from openapi_client.api.iam_api import IAMApi as IAMApi
|
|
559
|
+
from openapi_client.api.milestones_api import MilestonesApi as MilestonesApi
|
|
560
|
+
from openapi_client.api.operations_api import OperationsApi as OperationsApi
|
|
561
|
+
from openapi_client.api.permissions_api import PermissionsApi as PermissionsApi
|
|
562
|
+
from openapi_client.api.presentations_api import PresentationsApi as PresentationsApi
|
|
563
|
+
from openapi_client.api.reports_api import ReportsApi as ReportsApi
|
|
564
|
+
from openapi_client.api.spreadsheets_api import SpreadsheetsApi as SpreadsheetsApi
|
|
565
|
+
from openapi_client.api.sustainability_api import SustainabilityApi as SustainabilityApi
|
|
566
|
+
from openapi_client.api.tasks_api import TasksApi as TasksApi
|
|
567
|
+
from openapi_client.api.test_forms_api import TestFormsApi as TestFormsApi
|
|
568
|
+
|
|
569
|
+
# import ApiClient
|
|
570
|
+
from openapi_client.api_response import ApiResponse as ApiResponse
|
|
571
|
+
from openapi_client.api_client import ApiClient as ApiClient
|
|
572
|
+
from openapi_client.configuration import Configuration as Configuration
|
|
573
|
+
from openapi_client.exceptions import OpenApiException as OpenApiException
|
|
574
|
+
from openapi_client.exceptions import ApiTypeError as ApiTypeError
|
|
575
|
+
from openapi_client.exceptions import ApiValueError as ApiValueError
|
|
576
|
+
from openapi_client.exceptions import ApiKeyError as ApiKeyError
|
|
577
|
+
from openapi_client.exceptions import ApiAttributeError as ApiAttributeError
|
|
578
|
+
from openapi_client.exceptions import ApiException as ApiException
|
|
579
|
+
|
|
580
|
+
# import models into sdk package
|
|
581
|
+
from openapi_client.models.action import Action as Action
|
|
582
|
+
from openapi_client.models.activities_list_result import ActivitiesListResult as ActivitiesListResult
|
|
583
|
+
from openapi_client.models.activity import Activity as Activity
|
|
584
|
+
from openapi_client.models.activity_action import ActivityAction as ActivityAction
|
|
585
|
+
from openapi_client.models.activity_actions_list_result import ActivityActionsListResult as ActivityActionsListResult
|
|
586
|
+
from openapi_client.models.anchor import Anchor as Anchor
|
|
587
|
+
from openapi_client.models.anchor_attachment_point import AnchorAttachmentPoint as AnchorAttachmentPoint
|
|
588
|
+
from openapi_client.models.anchor_extension import AnchorExtension as AnchorExtension
|
|
589
|
+
from openapi_client.models.anchor_extensions_list_result import AnchorExtensionsListResult as AnchorExtensionsListResult
|
|
590
|
+
from openapi_client.models.anchor_ref import AnchorRef as AnchorRef
|
|
591
|
+
from openapi_client.models.anchors_list_result import AnchorsListResult as AnchorsListResult
|
|
592
|
+
from openapi_client.models.applicable_text_format import ApplicableTextFormat as ApplicableTextFormat
|
|
593
|
+
from openapi_client.models.apply_borders import ApplyBorders as ApplyBorders
|
|
594
|
+
from openapi_client.models.apply_formats import ApplyFormats as ApplyFormats
|
|
595
|
+
from openapi_client.models.background import Background as Background
|
|
596
|
+
from openapi_client.models.base_drawing_element import BaseDrawingElement as BaseDrawingElement
|
|
597
|
+
from openapi_client.models.base_text_element import BaseTextElement as BaseTextElement
|
|
598
|
+
from openapi_client.models.bearer_token import BearerToken as BearerToken
|
|
599
|
+
from openapi_client.models.border import Border as Border
|
|
600
|
+
from openapi_client.models.bulk_workspace_group_members_modification import BulkWorkspaceGroupMembersModification as BulkWorkspaceGroupMembersModification
|
|
601
|
+
from openapi_client.models.caret import Caret as Caret
|
|
602
|
+
from openapi_client.models.cell import Cell as Cell
|
|
603
|
+
from openapi_client.models.cell_border import CellBorder as CellBorder
|
|
604
|
+
from openapi_client.models.cell_borders import CellBorders as CellBorders
|
|
605
|
+
from openapi_client.models.cell_data import CellData as CellData
|
|
606
|
+
from openapi_client.models.cell_destination_link_value import CellDestinationLinkValue as CellDestinationLinkValue
|
|
607
|
+
from openapi_client.models.cell_edit import CellEdit as CellEdit
|
|
608
|
+
from openapi_client.models.cell_format import CellFormat as CellFormat
|
|
609
|
+
from openapi_client.models.cell_format_borders import CellFormatBorders as CellFormatBorders
|
|
610
|
+
from openapi_client.models.cell_format_indent import CellFormatIndent as CellFormatIndent
|
|
611
|
+
from openapi_client.models.cell_formula_value import CellFormulaValue as CellFormulaValue
|
|
612
|
+
from openapi_client.models.cell_horizontal_alignment import CellHorizontalAlignment as CellHorizontalAlignment
|
|
613
|
+
from openapi_client.models.cell_plain_text_value import CellPlainTextValue as CellPlainTextValue
|
|
614
|
+
from openapi_client.models.cell_range import CellRange as CellRange
|
|
615
|
+
from openapi_client.models.cell_rich_text_value import CellRichTextValue as CellRichTextValue
|
|
616
|
+
from openapi_client.models.cell_value import CellValue as CellValue
|
|
617
|
+
from openapi_client.models.cell_vertical_alignment import CellVerticalAlignment as CellVerticalAlignment
|
|
618
|
+
from openapi_client.models.change_source_range import ChangeSourceRange as ChangeSourceRange
|
|
619
|
+
from openapi_client.models.chart_drawing_element import ChartDrawingElement as ChartDrawingElement
|
|
620
|
+
from openapi_client.models.chart_text_element import ChartTextElement as ChartTextElement
|
|
621
|
+
from openapi_client.models.clear_cells_borders import ClearCellsBorders as ClearCellsBorders
|
|
622
|
+
from openapi_client.models.clear_cells_format import ClearCellsFormat as ClearCellsFormat
|
|
623
|
+
from openapi_client.models.clear_cells_properties import ClearCellsProperties as ClearCellsProperties
|
|
624
|
+
from openapi_client.models.clear_cells_text import ClearCellsText as ClearCellsText
|
|
625
|
+
from openapi_client.models.clear_list_format import ClearListFormat as ClearListFormat
|
|
626
|
+
from openapi_client.models.clear_paragraph_properties import ClearParagraphProperties as ClearParagraphProperties
|
|
627
|
+
from openapi_client.models.clear_section_lock_edit import ClearSectionLockEdit as ClearSectionLockEdit
|
|
628
|
+
from openapi_client.models.clear_text_format import ClearTextFormat as ClearTextFormat
|
|
629
|
+
from openapi_client.models.color import Color as Color
|
|
630
|
+
from openapi_client.models.column_metadata import ColumnMetadata as ColumnMetadata
|
|
631
|
+
from openapi_client.models.column_properties_list_result import ColumnPropertiesListResult as ColumnPropertiesListResult
|
|
632
|
+
from openapi_client.models.column_range import ColumnRange as ColumnRange
|
|
633
|
+
from openapi_client.models.content_ref import ContentRef as ContentRef
|
|
634
|
+
from openapi_client.models.copy_file_list_result import CopyFileListResult as CopyFileListResult
|
|
635
|
+
from openapi_client.models.copy_file_result import CopyFileResult as CopyFileResult
|
|
636
|
+
from openapi_client.models.create_destination_range_link import CreateDestinationRangeLink as CreateDestinationRangeLink
|
|
637
|
+
from openapi_client.models.create_source_range_link import CreateSourceRangeLink as CreateSourceRangeLink
|
|
638
|
+
from openapi_client.models.dataset import Dataset as Dataset
|
|
639
|
+
from openapi_client.models.datasets_list_result import DatasetsListResult as DatasetsListResult
|
|
640
|
+
from openapi_client.models.delete_columns import DeleteColumns as DeleteColumns
|
|
641
|
+
from openapi_client.models.delete_rows import DeleteRows as DeleteRows
|
|
642
|
+
from openapi_client.models.delete_text import DeleteText as DeleteText
|
|
643
|
+
from openapi_client.models.design_page_relative import DesignPageRelative as DesignPageRelative
|
|
644
|
+
from openapi_client.models.destination_link import DestinationLink as DestinationLink
|
|
645
|
+
from openapi_client.models.destination_link_ref import DestinationLinkRef as DestinationLinkRef
|
|
646
|
+
from openapi_client.models.destination_link_source import DestinationLinkSource as DestinationLinkSource
|
|
647
|
+
from openapi_client.models.destination_link_source_conversion_result import DestinationLinkSourceConversionResult as DestinationLinkSourceConversionResult
|
|
648
|
+
from openapi_client.models.destination_link_source_conversion_result_list_result import DestinationLinkSourceConversionResultListResult as DestinationLinkSourceConversionResultListResult
|
|
649
|
+
from openapi_client.models.destination_link_source_conversion_result_type import DestinationLinkSourceConversionResultType as DestinationLinkSourceConversionResultType
|
|
650
|
+
from openapi_client.models.destination_link_source_type import DestinationLinkSourceType as DestinationLinkSourceType
|
|
651
|
+
from openapi_client.models.destination_link_status import DestinationLinkStatus as DestinationLinkStatus
|
|
652
|
+
from openapi_client.models.destination_link_text_element import DestinationLinkTextElement as DestinationLinkTextElement
|
|
653
|
+
from openapi_client.models.dimension import Dimension as Dimension
|
|
654
|
+
from openapi_client.models.dimension_value import DimensionValue as DimensionValue
|
|
655
|
+
from openapi_client.models.dimensions import Dimensions as Dimensions
|
|
656
|
+
from openapi_client.models.dimensions_list_result import DimensionsListResult as DimensionsListResult
|
|
657
|
+
from openapi_client.models.document import Document as Document
|
|
658
|
+
from openapi_client.models.document_export import DocumentExport as DocumentExport
|
|
659
|
+
from openapi_client.models.document_filters_reapplication import DocumentFiltersReapplication as DocumentFiltersReapplication
|
|
660
|
+
from openapi_client.models.document_lock_type import DocumentLockType as DocumentLockType
|
|
661
|
+
from openapi_client.models.document_ref import DocumentRef as DocumentRef
|
|
662
|
+
from openapi_client.models.document_to_docx_options import DocumentToDocxOptions as DocumentToDocxOptions
|
|
663
|
+
from openapi_client.models.document_to_pdf_options import DocumentToPdfOptions as DocumentToPdfOptions
|
|
664
|
+
from openapi_client.models.document_to_xhtml_options import DocumentToXhtmlOptions as DocumentToXhtmlOptions
|
|
665
|
+
from openapi_client.models.documents_list_result import DocumentsListResult as DocumentsListResult
|
|
666
|
+
from openapi_client.models.drawing_element import DrawingElement as DrawingElement
|
|
667
|
+
from openapi_client.models.drawing_element_anchor_attachment_point import DrawingElementAnchorAttachmentPoint as DrawingElementAnchorAttachmentPoint
|
|
668
|
+
from openapi_client.models.drawing_element_anchor_attachment_point_type import DrawingElementAnchorAttachmentPointType as DrawingElementAnchorAttachmentPointType
|
|
669
|
+
from openapi_client.models.drawing_element_list_result import DrawingElementListResult as DrawingElementListResult
|
|
670
|
+
from openapi_client.models.drawing_element_type import DrawingElementType as DrawingElementType
|
|
671
|
+
from openapi_client.models.drawing_ref import DrawingRef as DrawingRef
|
|
672
|
+
from openapi_client.models.drawing_relative_position import DrawingRelativePosition as DrawingRelativePosition
|
|
673
|
+
from openapi_client.models.drawing_relative_type import DrawingRelativeType as DrawingRelativeType
|
|
674
|
+
from openapi_client.models.drawing_rich_text_selection import DrawingRichTextSelection as DrawingRichTextSelection
|
|
675
|
+
from openapi_client.models.drawing_rich_text_selection_anchor_attachment_point import DrawingRichTextSelectionAnchorAttachmentPoint as DrawingRichTextSelectionAnchorAttachmentPoint
|
|
676
|
+
from openapi_client.models.drawing_rich_text_selection_anchor_attachment_point_type import DrawingRichTextSelectionAnchorAttachmentPointType as DrawingRichTextSelectionAnchorAttachmentPointType
|
|
677
|
+
from openapi_client.models.duplicate_table import DuplicateTable as DuplicateTable
|
|
678
|
+
from openapi_client.models.edit import Edit as Edit
|
|
679
|
+
from openapi_client.models.edits_result import EditsResult as EditsResult
|
|
680
|
+
from openapi_client.models.effective_formats import EffectiveFormats as EffectiveFormats
|
|
681
|
+
from openapi_client.models.error_details import ErrorDetails as ErrorDetails
|
|
682
|
+
from openapi_client.models.error_response import ErrorResponse as ErrorResponse
|
|
683
|
+
from openapi_client.models.extension_type import ExtensionType as ExtensionType
|
|
684
|
+
from openapi_client.models.failure import Failure as Failure
|
|
685
|
+
from openapi_client.models.failure_errors_inner import FailureErrorsInner as FailureErrorsInner
|
|
686
|
+
from openapi_client.models.failure_errors_inner_links import FailureErrorsInnerLinks as FailureErrorsInnerLinks
|
|
687
|
+
from openapi_client.models.failure_errors_inner_source import FailureErrorsInnerSource as FailureErrorsInnerSource
|
|
688
|
+
from openapi_client.models.failure_jsonapi import FailureJsonapi as FailureJsonapi
|
|
689
|
+
from openapi_client.models.file import File as File
|
|
690
|
+
from openapi_client.models.file_copy import FileCopy as FileCopy
|
|
691
|
+
from openapi_client.models.file_copy_options import FileCopyOptions as FileCopyOptions
|
|
692
|
+
from openapi_client.models.file_export_by_id import FileExportById as FileExportById
|
|
693
|
+
from openapi_client.models.file_import import FileImport as FileImport
|
|
694
|
+
from openapi_client.models.file_import_response import FileImportResponse as FileImportResponse
|
|
695
|
+
from openapi_client.models.files_list_result import FilesListResult as FilesListResult
|
|
696
|
+
from openapi_client.models.fill import Fill as Fill
|
|
697
|
+
from openapi_client.models.folder_export import FolderExport as FolderExport
|
|
698
|
+
from openapi_client.models.footer_properties import FooterProperties as FooterProperties
|
|
699
|
+
from openapi_client.models.footnote_annotation import FootnoteAnnotation as FootnoteAnnotation
|
|
700
|
+
from openapi_client.models.footnote_indicator import FootnoteIndicator as FootnoteIndicator
|
|
701
|
+
from openapi_client.models.format_cells import FormatCells as FormatCells
|
|
702
|
+
from openapi_client.models.format_text import FormatText as FormatText
|
|
703
|
+
from openapi_client.models.formats import Formats as Formats
|
|
704
|
+
from openapi_client.models.framework_reference import FrameworkReference as FrameworkReference
|
|
705
|
+
from openapi_client.models.get_org_report_users_response import GetOrgReportUsersResponse as GetOrgReportUsersResponse
|
|
706
|
+
from openapi_client.models.get_org_report_users_response_data_inner import GetOrgReportUsersResponseDataInner as GetOrgReportUsersResponseDataInner
|
|
707
|
+
from openapi_client.models.get_org_report_users_response_data_inner_attributes import GetOrgReportUsersResponseDataInnerAttributes as GetOrgReportUsersResponseDataInnerAttributes
|
|
708
|
+
from openapi_client.models.get_org_report_users_response_data_inner_attributes_workspace_memberships_inner import GetOrgReportUsersResponseDataInnerAttributesWorkspaceMembershipsInner as GetOrgReportUsersResponseDataInnerAttributesWorkspaceMembershipsInner
|
|
709
|
+
from openapi_client.models.get_org_report_users_response_included_inner import GetOrgReportUsersResponseIncludedInner as GetOrgReportUsersResponseIncludedInner
|
|
710
|
+
from openapi_client.models.get_org_report_users_response_jsonapi import GetOrgReportUsersResponseJsonapi as GetOrgReportUsersResponseJsonapi
|
|
711
|
+
from openapi_client.models.get_org_report_users_response_links import GetOrgReportUsersResponseLinks as GetOrgReportUsersResponseLinks
|
|
712
|
+
from openapi_client.models.graph_attachment import GraphAttachment as GraphAttachment
|
|
713
|
+
from openapi_client.models.graph_attachment_export import GraphAttachmentExport as GraphAttachmentExport
|
|
714
|
+
from openapi_client.models.graph_attachment_upload import GraphAttachmentUpload as GraphAttachmentUpload
|
|
715
|
+
from openapi_client.models.graph_attachment_upload_response import GraphAttachmentUploadResponse as GraphAttachmentUploadResponse
|
|
716
|
+
from openapi_client.models.graph_attachments_list_result import GraphAttachmentsListResult as GraphAttachmentsListResult
|
|
717
|
+
from openapi_client.models.graph_report_export import GraphReportExport as GraphReportExport
|
|
718
|
+
from openapi_client.models.header_footer_properties import HeaderFooterProperties as HeaderFooterProperties
|
|
719
|
+
from openapi_client.models.header_footer_properties_margin import HeaderFooterPropertiesMargin as HeaderFooterPropertiesMargin
|
|
720
|
+
from openapi_client.models.header_properties import HeaderProperties as HeaderProperties
|
|
721
|
+
from openapi_client.models.headers_footers import HeadersFooters as HeadersFooters
|
|
722
|
+
from openapi_client.models.hyperlink import Hyperlink as Hyperlink
|
|
723
|
+
from openapi_client.models.hyperlink_text_element import HyperlinkTextElement as HyperlinkTextElement
|
|
724
|
+
from openapi_client.models.hyperlink_type import HyperlinkType as HyperlinkType
|
|
725
|
+
from openapi_client.models.iam_error import IamError as IamError
|
|
726
|
+
from openapi_client.models.image import Image as Image
|
|
727
|
+
from openapi_client.models.image_drawing_element import ImageDrawingElement as ImageDrawingElement
|
|
728
|
+
from openapi_client.models.image_ref import ImageRef as ImageRef
|
|
729
|
+
from openapi_client.models.image_text_element import ImageTextElement as ImageTextElement
|
|
730
|
+
from openapi_client.models.image_upload import ImageUpload as ImageUpload
|
|
731
|
+
from openapi_client.models.image_upload_response import ImageUploadResponse as ImageUploadResponse
|
|
732
|
+
from openapi_client.models.image_upload_result import ImageUploadResult as ImageUploadResult
|
|
733
|
+
from openapi_client.models.image_upload_result_collection import ImageUploadResultCollection as ImageUploadResultCollection
|
|
734
|
+
from openapi_client.models.import_file_list_result import ImportFileListResult as ImportFileListResult
|
|
735
|
+
from openapi_client.models.import_file_result import ImportFileResult as ImportFileResult
|
|
736
|
+
from openapi_client.models.inherit_from import InheritFrom as InheritFrom
|
|
737
|
+
from openapi_client.models.insert_cell_destination_link import InsertCellDestinationLink as InsertCellDestinationLink
|
|
738
|
+
from openapi_client.models.insert_columns import InsertColumns as InsertColumns
|
|
739
|
+
from openapi_client.models.insert_destination_link import InsertDestinationLink as InsertDestinationLink
|
|
740
|
+
from openapi_client.models.insert_footnote import InsertFootnote as InsertFootnote
|
|
741
|
+
from openapi_client.models.insert_image import InsertImage as InsertImage
|
|
742
|
+
from openapi_client.models.insert_image_dimensions import InsertImageDimensions as InsertImageDimensions
|
|
743
|
+
from openapi_client.models.insert_page_number import InsertPageNumber as InsertPageNumber
|
|
744
|
+
from openapi_client.models.insert_paragraph import InsertParagraph as InsertParagraph
|
|
745
|
+
from openapi_client.models.insert_rows import InsertRows as InsertRows
|
|
746
|
+
from openapi_client.models.insert_soft_return import InsertSoftReturn as InsertSoftReturn
|
|
747
|
+
from openapi_client.models.insert_text import InsertText as InsertText
|
|
748
|
+
from openapi_client.models.insertion import Insertion as Insertion
|
|
749
|
+
from openapi_client.models.interval import Interval as Interval
|
|
750
|
+
from openapi_client.models.json_patch_operation import JSONPatchOperation as JSONPatchOperation
|
|
751
|
+
from openapi_client.models.line import Line as Line
|
|
752
|
+
from openapi_client.models.line_cap import LineCap as LineCap
|
|
753
|
+
from openapi_client.models.line_cap_size import LineCapSize as LineCapSize
|
|
754
|
+
from openapi_client.models.line_relative_position import LineRelativePosition as LineRelativePosition
|
|
755
|
+
from openapi_client.models.line_relative_type import LineRelativeType as LineRelativeType
|
|
756
|
+
from openapi_client.models.line_spacing import LineSpacing as LineSpacing
|
|
757
|
+
from openapi_client.models.line_spacing_unit import LineSpacingUnit as LineSpacingUnit
|
|
758
|
+
from openapi_client.models.line_terminator import LineTerminator as LineTerminator
|
|
759
|
+
from openapi_client.models.link_status import LinkStatus as LinkStatus
|
|
760
|
+
from openapi_client.models.links_publication_options import LinksPublicationOptions as LinksPublicationOptions
|
|
761
|
+
from openapi_client.models.links_status import LinksStatus as LinksStatus
|
|
762
|
+
from openapi_client.models.list_format import ListFormat as ListFormat
|
|
763
|
+
from openapi_client.models.list_glyph_alignment import ListGlyphAlignment as ListGlyphAlignment
|
|
764
|
+
from openapi_client.models.list_progression import ListProgression as ListProgression
|
|
765
|
+
from openapi_client.models.list_progression_alignment import ListProgressionAlignment as ListProgressionAlignment
|
|
766
|
+
from openapi_client.models.list_progression_bold import ListProgressionBold as ListProgressionBold
|
|
767
|
+
from openapi_client.models.list_progression_color import ListProgressionColor as ListProgressionColor
|
|
768
|
+
from openapi_client.models.list_progression_font import ListProgressionFont as ListProgressionFont
|
|
769
|
+
from openapi_client.models.list_progression_formats import ListProgressionFormats as ListProgressionFormats
|
|
770
|
+
from openapi_client.models.list_progression_indentation import ListProgressionIndentation as ListProgressionIndentation
|
|
771
|
+
from openapi_client.models.list_progression_italic import ListProgressionItalic as ListProgressionItalic
|
|
772
|
+
from openapi_client.models.list_progression_size import ListProgressionSize as ListProgressionSize
|
|
773
|
+
from openapi_client.models.list_progression_style import ListProgressionStyle as ListProgressionStyle
|
|
774
|
+
from openapi_client.models.list_progression_text import ListProgressionText as ListProgressionText
|
|
775
|
+
from openapi_client.models.list_progression_underline import ListProgressionUnderline as ListProgressionUnderline
|
|
776
|
+
from openapi_client.models.list_sequence_type import ListSequenceType as ListSequenceType
|
|
777
|
+
from openapi_client.models.list_style import ListStyle as ListStyle
|
|
778
|
+
from openapi_client.models.list_style_type import ListStyleType as ListStyleType
|
|
779
|
+
from openapi_client.models.locked_cell_edit_mode import LockedCellEditMode as LockedCellEditMode
|
|
780
|
+
from openapi_client.models.margins import Margins as Margins
|
|
781
|
+
from openapi_client.models.matrices_list_result import MatricesListResult as MatricesListResult
|
|
782
|
+
from openapi_client.models.matrix import Matrix as Matrix
|
|
783
|
+
from openapi_client.models.matrix_column import MatrixColumn as MatrixColumn
|
|
784
|
+
from openapi_client.models.matrix_sample import MatrixSample as MatrixSample
|
|
785
|
+
from openapi_client.models.matrix_samples_list_result import MatrixSamplesListResult as MatrixSamplesListResult
|
|
786
|
+
from openapi_client.models.metric import Metric as Metric
|
|
787
|
+
from openapi_client.models.metric_attachment import MetricAttachment as MetricAttachment
|
|
788
|
+
from openapi_client.models.metric_value import MetricValue as MetricValue
|
|
789
|
+
from openapi_client.models.metric_value_data_source import MetricValueDataSource as MetricValueDataSource
|
|
790
|
+
from openapi_client.models.metric_value_identifier import MetricValueIdentifier as MetricValueIdentifier
|
|
791
|
+
from openapi_client.models.metric_value_identifier_data_inner import MetricValueIdentifierDataInner as MetricValueIdentifierDataInner
|
|
792
|
+
from openapi_client.models.metric_value_reporting_period import MetricValueReportingPeriod as MetricValueReportingPeriod
|
|
793
|
+
from openapi_client.models.metric_value_upsertion import MetricValueUpsertion as MetricValueUpsertion
|
|
794
|
+
from openapi_client.models.metric_values_list_result import MetricValuesListResult as MetricValuesListResult
|
|
795
|
+
from openapi_client.models.metrics_list_result import MetricsListResult as MetricsListResult
|
|
796
|
+
from openapi_client.models.milestone import Milestone as Milestone
|
|
797
|
+
from openapi_client.models.milestone_creation import MilestoneCreation as MilestoneCreation
|
|
798
|
+
from openapi_client.models.milestone_creation_list_result import MilestoneCreationListResult as MilestoneCreationListResult
|
|
799
|
+
from openapi_client.models.milestone_creation_result import MilestoneCreationResult as MilestoneCreationResult
|
|
800
|
+
from openapi_client.models.milestone_creation_result_type import MilestoneCreationResultType as MilestoneCreationResultType
|
|
801
|
+
from openapi_client.models.milestone_list_result import MilestoneListResult as MilestoneListResult
|
|
802
|
+
from openapi_client.models.milestone_resource_ref import MilestoneResourceRef as MilestoneResourceRef
|
|
803
|
+
from openapi_client.models.milestone_resource_type import MilestoneResourceType as MilestoneResourceType
|
|
804
|
+
from openapi_client.models.move_columns import MoveColumns as MoveColumns
|
|
805
|
+
from openapi_client.models.move_rows import MoveRows as MoveRows
|
|
806
|
+
from openapi_client.models.operation import Operation as Operation
|
|
807
|
+
from openapi_client.models.operation_detail import OperationDetail as OperationDetail
|
|
808
|
+
from openapi_client.models.organization import Organization as Organization
|
|
809
|
+
from openapi_client.models.organization_role import OrganizationRole as OrganizationRole
|
|
810
|
+
from openapi_client.models.organization_roles_list_result import OrganizationRolesListResult as OrganizationRolesListResult
|
|
811
|
+
from openapi_client.models.organization_solutions_list_result import OrganizationSolutionsListResult as OrganizationSolutionsListResult
|
|
812
|
+
from openapi_client.models.organization_user import OrganizationUser as OrganizationUser
|
|
813
|
+
from openapi_client.models.organization_user_assignment import OrganizationUserAssignment as OrganizationUserAssignment
|
|
814
|
+
from openapi_client.models.organization_users_list_result import OrganizationUsersListResult as OrganizationUsersListResult
|
|
815
|
+
from openapi_client.models.organizations_list_result import OrganizationsListResult as OrganizationsListResult
|
|
816
|
+
from openapi_client.models.outcome import Outcome as Outcome
|
|
817
|
+
from openapi_client.models.paddings import Paddings as Paddings
|
|
818
|
+
from openapi_client.models.page_number import PageNumber as PageNumber
|
|
819
|
+
from openapi_client.models.paragraph import Paragraph as Paragraph
|
|
820
|
+
from openapi_client.models.paragraph_properties import ParagraphProperties as ParagraphProperties
|
|
821
|
+
from openapi_client.models.paragraph_properties_alignment import ParagraphPropertiesAlignment as ParagraphPropertiesAlignment
|
|
822
|
+
from openapi_client.models.paragraph_relative import ParagraphRelative as ParagraphRelative
|
|
823
|
+
from openapi_client.models.paragraph_selection import ParagraphSelection as ParagraphSelection
|
|
824
|
+
from openapi_client.models.paragraphs_list_result import ParagraphsListResult as ParagraphsListResult
|
|
825
|
+
from openapi_client.models.patch_document_list_result import PatchDocumentListResult as PatchDocumentListResult
|
|
826
|
+
from openapi_client.models.patch_presentation_list_result import PatchPresentationListResult as PatchPresentationListResult
|
|
827
|
+
from openapi_client.models.patch_section_list_result import PatchSectionListResult as PatchSectionListResult
|
|
828
|
+
from openapi_client.models.patch_sheet_list_result import PatchSheetListResult as PatchSheetListResult
|
|
829
|
+
from openapi_client.models.patch_slide_layout_list_result import PatchSlideLayoutListResult as PatchSlideLayoutListResult
|
|
830
|
+
from openapi_client.models.patch_slide_list_result import PatchSlideListResult as PatchSlideListResult
|
|
831
|
+
from openapi_client.models.patch_spreadsheet_list_result import PatchSpreadsheetListResult as PatchSpreadsheetListResult
|
|
832
|
+
from openapi_client.models.patch_table_properties_list_result import PatchTablePropertiesListResult as PatchTablePropertiesListResult
|
|
833
|
+
from openapi_client.models.performer import Performer as Performer
|
|
834
|
+
from openapi_client.models.permission import Permission as Permission
|
|
835
|
+
from openapi_client.models.permissions_list_result import PermissionsListResult as PermissionsListResult
|
|
836
|
+
from openapi_client.models.position import Position as Position
|
|
837
|
+
from openapi_client.models.presentation import Presentation as Presentation
|
|
838
|
+
from openapi_client.models.presentation_export import PresentationExport as PresentationExport
|
|
839
|
+
from openapi_client.models.presentation_filters_reapplication import PresentationFiltersReapplication as PresentationFiltersReapplication
|
|
840
|
+
from openapi_client.models.presentation_lock_type import PresentationLockType as PresentationLockType
|
|
841
|
+
from openapi_client.models.presentation_ref import PresentationRef as PresentationRef
|
|
842
|
+
from openapi_client.models.presentation_to_pdf_options import PresentationToPdfOptions as PresentationToPdfOptions
|
|
843
|
+
from openapi_client.models.presentation_to_pptx_options import PresentationToPptxOptions as PresentationToPptxOptions
|
|
844
|
+
from openapi_client.models.program import Program as Program
|
|
845
|
+
from openapi_client.models.programs_list_result import ProgramsListResult as ProgramsListResult
|
|
846
|
+
from openapi_client.models.range import Range as Range
|
|
847
|
+
from openapi_client.models.range_link import RangeLink as RangeLink
|
|
848
|
+
from openapi_client.models.range_link_destination import RangeLinkDestination as RangeLinkDestination
|
|
849
|
+
from openapi_client.models.range_link_edit import RangeLinkEdit as RangeLinkEdit
|
|
850
|
+
from openapi_client.models.range_link_edit_result import RangeLinkEditResult as RangeLinkEditResult
|
|
851
|
+
from openapi_client.models.range_link_edit_result_collection import RangeLinkEditResultCollection as RangeLinkEditResultCollection
|
|
852
|
+
from openapi_client.models.range_link_list_result import RangeLinkListResult as RangeLinkListResult
|
|
853
|
+
from openapi_client.models.range_link_ref import RangeLinkRef as RangeLinkRef
|
|
854
|
+
from openapi_client.models.range_link_source import RangeLinkSource as RangeLinkSource
|
|
855
|
+
from openapi_client.models.range_link_type import RangeLinkType as RangeLinkType
|
|
856
|
+
from openapi_client.models.range_values import RangeValues as RangeValues
|
|
857
|
+
from openapi_client.models.range_values_list_result import RangeValuesListResult as RangeValuesListResult
|
|
858
|
+
from openapi_client.models.record import Record as Record
|
|
859
|
+
from openapi_client.models.records_list_result import RecordsListResult as RecordsListResult
|
|
860
|
+
from openapi_client.models.relationship import Relationship as Relationship
|
|
861
|
+
from openapi_client.models.remove_cells_link import RemoveCellsLink as RemoveCellsLink
|
|
862
|
+
from openapi_client.models.remove_destination_range_link import RemoveDestinationRangeLink as RemoveDestinationRangeLink
|
|
863
|
+
from openapi_client.models.remove_hyperlinks import RemoveHyperlinks as RemoveHyperlinks
|
|
864
|
+
from openapi_client.models.remove_links import RemoveLinks as RemoveLinks
|
|
865
|
+
from openapi_client.models.remove_source_range_link import RemoveSourceRangeLink as RemoveSourceRangeLink
|
|
866
|
+
from openapi_client.models.resize_column_intervals import ResizeColumnIntervals as ResizeColumnIntervals
|
|
867
|
+
from openapi_client.models.resize_row_intervals import ResizeRowIntervals as ResizeRowIntervals
|
|
868
|
+
from openapi_client.models.resource_permission import ResourcePermission as ResourcePermission
|
|
869
|
+
from openapi_client.models.resource_permissions_list_result import ResourcePermissionsListResult as ResourcePermissionsListResult
|
|
870
|
+
from openapi_client.models.resource_permissions_modification import ResourcePermissionsModification as ResourcePermissionsModification
|
|
871
|
+
from openapi_client.models.rich_cell_batch_edit import RichCellBatchEdit as RichCellBatchEdit
|
|
872
|
+
from openapi_client.models.rich_cell_link_batch_edit import RichCellLinkBatchEdit as RichCellLinkBatchEdit
|
|
873
|
+
from openapi_client.models.rich_text_anchor_creation import RichTextAnchorCreation as RichTextAnchorCreation
|
|
874
|
+
from openapi_client.models.rich_text_anchor_creation_result import RichTextAnchorCreationResult as RichTextAnchorCreationResult
|
|
875
|
+
from openapi_client.models.rich_text_anchor_creation_result_collection import RichTextAnchorCreationResultCollection as RichTextAnchorCreationResultCollection
|
|
876
|
+
from openapi_client.models.rich_text_baseline_shift import RichTextBaselineShift as RichTextBaselineShift
|
|
877
|
+
from openapi_client.models.rich_text_batch_edit import RichTextBatchEdit as RichTextBatchEdit
|
|
878
|
+
from openapi_client.models.rich_text_duplication_edit import RichTextDuplicationEdit as RichTextDuplicationEdit
|
|
879
|
+
from openapi_client.models.rich_text_duplication_edit_list_result import RichTextDuplicationEditListResult as RichTextDuplicationEditListResult
|
|
880
|
+
from openapi_client.models.rich_text_duplication_edit_result import RichTextDuplicationEditResult as RichTextDuplicationEditResult
|
|
881
|
+
from openapi_client.models.rich_text_edit_list_result import RichTextEditListResult as RichTextEditListResult
|
|
882
|
+
from openapi_client.models.rich_text_edit_result import RichTextEditResult as RichTextEditResult
|
|
883
|
+
from openapi_client.models.rich_text_format import RichTextFormat as RichTextFormat
|
|
884
|
+
from openapi_client.models.rich_text_insert_table import RichTextInsertTable as RichTextInsertTable
|
|
885
|
+
from openapi_client.models.rich_text_insert_table_dimensions import RichTextInsertTableDimensions as RichTextInsertTableDimensions
|
|
886
|
+
from openapi_client.models.rich_text_links_batch_edit import RichTextLinksBatchEdit as RichTextLinksBatchEdit
|
|
887
|
+
from openapi_client.models.rich_text_links_edit_list_result import RichTextLinksEditListResult as RichTextLinksEditListResult
|
|
888
|
+
from openapi_client.models.rich_text_links_edit_result import RichTextLinksEditResult as RichTextLinksEditResult
|
|
889
|
+
from openapi_client.models.rich_text_ref import RichTextRef as RichTextRef
|
|
890
|
+
from openapi_client.models.rich_text_selection import RichTextSelection as RichTextSelection
|
|
891
|
+
from openapi_client.models.rich_text_selection_anchor_attachment_point import RichTextSelectionAnchorAttachmentPoint as RichTextSelectionAnchorAttachmentPoint
|
|
892
|
+
from openapi_client.models.rich_text_selection_anchor_attachment_point_type import RichTextSelectionAnchorAttachmentPointType as RichTextSelectionAnchorAttachmentPointType
|
|
893
|
+
from openapi_client.models.row_metadata import RowMetadata as RowMetadata
|
|
894
|
+
from openapi_client.models.row_properties_list_result import RowPropertiesListResult as RowPropertiesListResult
|
|
895
|
+
from openapi_client.models.row_range import RowRange as RowRange
|
|
896
|
+
from openapi_client.models.sample_cell import SampleCell as SampleCell
|
|
897
|
+
from openapi_client.models.section import Section as Section
|
|
898
|
+
from openapi_client.models.section_copy import SectionCopy as SectionCopy
|
|
899
|
+
from openapi_client.models.section_edit import SectionEdit as SectionEdit
|
|
900
|
+
from openapi_client.models.section_edit_type import SectionEditType as SectionEditType
|
|
901
|
+
from openapi_client.models.section_lock_type import SectionLockType as SectionLockType
|
|
902
|
+
from openapi_client.models.section_page_number import SectionPageNumber as SectionPageNumber
|
|
903
|
+
from openapi_client.models.section_properties import SectionProperties as SectionProperties
|
|
904
|
+
from openapi_client.models.section_properties_page_number import SectionPropertiesPageNumber as SectionPropertiesPageNumber
|
|
905
|
+
from openapi_client.models.section_ref import SectionRef as SectionRef
|
|
906
|
+
from openapi_client.models.sections_edits import SectionsEdits as SectionsEdits
|
|
907
|
+
from openapi_client.models.sections_list_result import SectionsListResult as SectionsListResult
|
|
908
|
+
from openapi_client.models.set_cells_borders import SetCellsBorders as SetCellsBorders
|
|
909
|
+
from openapi_client.models.set_cells_lock import SetCellsLock as SetCellsLock
|
|
910
|
+
from openapi_client.models.set_cells_properties import SetCellsProperties as SetCellsProperties
|
|
911
|
+
from openapi_client.models.set_cells_style import SetCellsStyle as SetCellsStyle
|
|
912
|
+
from openapi_client.models.set_cells_text import SetCellsText as SetCellsText
|
|
913
|
+
from openapi_client.models.set_hyperlink import SetHyperlink as SetHyperlink
|
|
914
|
+
from openapi_client.models.set_hyperlink_section import SetHyperlinkSection as SetHyperlinkSection
|
|
915
|
+
from openapi_client.models.set_hyperlink_sheet import SetHyperlinkSheet as SetHyperlinkSheet
|
|
916
|
+
from openapi_client.models.set_hyperlink_slide import SetHyperlinkSlide as SetHyperlinkSlide
|
|
917
|
+
from openapi_client.models.set_input_cells import SetInputCells as SetInputCells
|
|
918
|
+
from openapi_client.models.set_list_format import SetListFormat as SetListFormat
|
|
919
|
+
from openapi_client.models.set_non_printing_edit import SetNonPrintingEdit as SetNonPrintingEdit
|
|
920
|
+
from openapi_client.models.set_paragraph_properties import SetParagraphProperties as SetParagraphProperties
|
|
921
|
+
from openapi_client.models.set_paragraph_style import SetParagraphStyle as SetParagraphStyle
|
|
922
|
+
from openapi_client.models.set_section_lock_edit import SetSectionLockEdit as SetSectionLockEdit
|
|
923
|
+
from openapi_client.models.set_table_breaking import SetTableBreaking as SetTableBreaking
|
|
924
|
+
from openapi_client.models.set_table_text_element_properties import SetTableTextElementProperties as SetTableTextElementProperties
|
|
925
|
+
from openapi_client.models.shape import Shape as Shape
|
|
926
|
+
from openapi_client.models.shape_type import ShapeType as ShapeType
|
|
927
|
+
from openapi_client.models.sheet import Sheet as Sheet
|
|
928
|
+
from openapi_client.models.sheet_copy import SheetCopy as SheetCopy
|
|
929
|
+
from openapi_client.models.sheet_data import SheetData as SheetData
|
|
930
|
+
from openapi_client.models.sheet_data_result import SheetDataResult as SheetDataResult
|
|
931
|
+
from openapi_client.models.sheet_lock_type import SheetLockType as SheetLockType
|
|
932
|
+
from openapi_client.models.sheet_ref import SheetRef as SheetRef
|
|
933
|
+
from openapi_client.models.sheet_update import SheetUpdate as SheetUpdate
|
|
934
|
+
from openapi_client.models.sheet_update_apply_borders import SheetUpdateApplyBorders as SheetUpdateApplyBorders
|
|
935
|
+
from openapi_client.models.sheet_update_apply_formats import SheetUpdateApplyFormats as SheetUpdateApplyFormats
|
|
936
|
+
from openapi_client.models.sheet_update_clear_borders import SheetUpdateClearBorders as SheetUpdateClearBorders
|
|
937
|
+
from openapi_client.models.sheet_update_clear_formats import SheetUpdateClearFormats as SheetUpdateClearFormats
|
|
938
|
+
from openapi_client.models.sheet_update_delete_columns import SheetUpdateDeleteColumns as SheetUpdateDeleteColumns
|
|
939
|
+
from openapi_client.models.sheet_update_delete_rows import SheetUpdateDeleteRows as SheetUpdateDeleteRows
|
|
940
|
+
from openapi_client.models.sheet_update_edit_cells import SheetUpdateEditCells as SheetUpdateEditCells
|
|
941
|
+
from openapi_client.models.sheet_update_edit_cells_options import SheetUpdateEditCellsOptions as SheetUpdateEditCellsOptions
|
|
942
|
+
from openapi_client.models.sheet_update_edit_range import SheetUpdateEditRange as SheetUpdateEditRange
|
|
943
|
+
from openapi_client.models.sheet_update_edit_range_options import SheetUpdateEditRangeOptions as SheetUpdateEditRangeOptions
|
|
944
|
+
from openapi_client.models.sheet_update_hide_columns import SheetUpdateHideColumns as SheetUpdateHideColumns
|
|
945
|
+
from openapi_client.models.sheet_update_hide_rows import SheetUpdateHideRows as SheetUpdateHideRows
|
|
946
|
+
from openapi_client.models.sheet_update_insert_columns import SheetUpdateInsertColumns as SheetUpdateInsertColumns
|
|
947
|
+
from openapi_client.models.sheet_update_insert_rows import SheetUpdateInsertRows as SheetUpdateInsertRows
|
|
948
|
+
from openapi_client.models.sheet_update_merge_ranges import SheetUpdateMergeRanges as SheetUpdateMergeRanges
|
|
949
|
+
from openapi_client.models.sheet_update_resize_columns import SheetUpdateResizeColumns as SheetUpdateResizeColumns
|
|
950
|
+
from openapi_client.models.sheet_update_resize_columns_to_fit import SheetUpdateResizeColumnsToFit as SheetUpdateResizeColumnsToFit
|
|
951
|
+
from openapi_client.models.sheet_update_resize_rows import SheetUpdateResizeRows as SheetUpdateResizeRows
|
|
952
|
+
from openapi_client.models.sheet_update_resize_rows_to_fit import SheetUpdateResizeRowsToFit as SheetUpdateResizeRowsToFit
|
|
953
|
+
from openapi_client.models.sheet_update_unhide_columns import SheetUpdateUnhideColumns as SheetUpdateUnhideColumns
|
|
954
|
+
from openapi_client.models.sheet_update_unhide_rows import SheetUpdateUnhideRows as SheetUpdateUnhideRows
|
|
955
|
+
from openapi_client.models.sheet_update_unmerge_ranges import SheetUpdateUnmergeRanges as SheetUpdateUnmergeRanges
|
|
956
|
+
from openapi_client.models.sheets_list_result import SheetsListResult as SheetsListResult
|
|
957
|
+
from openapi_client.models.slide import Slide as Slide
|
|
958
|
+
from openapi_client.models.slide_layout import SlideLayout as SlideLayout
|
|
959
|
+
from openapi_client.models.slide_layout_lock_type import SlideLayoutLockType as SlideLayoutLockType
|
|
960
|
+
from openapi_client.models.slide_layouts_list_result import SlideLayoutsListResult as SlideLayoutsListResult
|
|
961
|
+
from openapi_client.models.slide_lock_type import SlideLockType as SlideLockType
|
|
962
|
+
from openapi_client.models.slide_ref import SlideRef as SlideRef
|
|
963
|
+
from openapi_client.models.slide_relative import SlideRelative as SlideRelative
|
|
964
|
+
from openapi_client.models.slides_list_result import SlidesListResult as SlidesListResult
|
|
965
|
+
from openapi_client.models.soft_return import SoftReturn as SoftReturn
|
|
966
|
+
from openapi_client.models.solution import Solution as Solution
|
|
967
|
+
from openapi_client.models.source_paragraph import SourceParagraph as SourceParagraph
|
|
968
|
+
from openapi_client.models.source_text_element import SourceTextElement as SourceTextElement
|
|
969
|
+
from openapi_client.models.spreadsheet import Spreadsheet as Spreadsheet
|
|
970
|
+
from openapi_client.models.spreadsheet_cell_connection import SpreadsheetCellConnection as SpreadsheetCellConnection
|
|
971
|
+
from openapi_client.models.spreadsheet_export import SpreadsheetExport as SpreadsheetExport
|
|
972
|
+
from openapi_client.models.spreadsheet_filters_reapplication import SpreadsheetFiltersReapplication as SpreadsheetFiltersReapplication
|
|
973
|
+
from openapi_client.models.spreadsheet_lock_type import SpreadsheetLockType as SpreadsheetLockType
|
|
974
|
+
from openapi_client.models.spreadsheet_ref import SpreadsheetRef as SpreadsheetRef
|
|
975
|
+
from openapi_client.models.spreadsheet_to_csv_options import SpreadsheetToCsvOptions as SpreadsheetToCsvOptions
|
|
976
|
+
from openapi_client.models.spreadsheet_to_pdf_options import SpreadsheetToPdfOptions as SpreadsheetToPdfOptions
|
|
977
|
+
from openapi_client.models.spreadsheet_to_xlsx_options import SpreadsheetToXlsxOptions as SpreadsheetToXlsxOptions
|
|
978
|
+
from openapi_client.models.spreadsheets_list_result import SpreadsheetsListResult as SpreadsheetsListResult
|
|
979
|
+
from openapi_client.models.stroke import Stroke as Stroke
|
|
980
|
+
from openapi_client.models.stroke_pattern import StrokePattern as StrokePattern
|
|
981
|
+
from openapi_client.models.style_guide import StyleGuide as StyleGuide
|
|
982
|
+
from openapi_client.models.style_guide_export import StyleGuideExport as StyleGuideExport
|
|
983
|
+
from openapi_client.models.style_guide_import_response import StyleGuideImportResponse as StyleGuideImportResponse
|
|
984
|
+
from openapi_client.models.style_ref import StyleRef as StyleRef
|
|
985
|
+
from openapi_client.models.style_text import StyleText as StyleText
|
|
986
|
+
from openapi_client.models.supporting_document_import_options import SupportingDocumentImportOptions as SupportingDocumentImportOptions
|
|
987
|
+
from openapi_client.models.table_anchor_creation import TableAnchorCreation as TableAnchorCreation
|
|
988
|
+
from openapi_client.models.table_anchor_creation_result import TableAnchorCreationResult as TableAnchorCreationResult
|
|
989
|
+
from openapi_client.models.table_anchor_creation_result_collection import TableAnchorCreationResultCollection as TableAnchorCreationResultCollection
|
|
990
|
+
from openapi_client.models.table_breaking import TableBreaking as TableBreaking
|
|
991
|
+
from openapi_client.models.table_breaking_type import TableBreakingType as TableBreakingType
|
|
992
|
+
from openapi_client.models.table_cell import TableCell as TableCell
|
|
993
|
+
from openapi_client.models.table_cell_connection import TableCellConnection as TableCellConnection
|
|
994
|
+
from openapi_client.models.table_cell_edit_list_result import TableCellEditListResult as TableCellEditListResult
|
|
995
|
+
from openapi_client.models.table_cell_merges import TableCellMerges as TableCellMerges
|
|
996
|
+
from openapi_client.models.table_cell_properties import TableCellProperties as TableCellProperties
|
|
997
|
+
from openapi_client.models.table_cells_batch_edit import TableCellsBatchEdit as TableCellsBatchEdit
|
|
998
|
+
from openapi_client.models.table_cells_edit import TableCellsEdit as TableCellsEdit
|
|
999
|
+
from openapi_client.models.table_cells_result import TableCellsResult as TableCellsResult
|
|
1000
|
+
from openapi_client.models.table_column_properties import TableColumnProperties as TableColumnProperties
|
|
1001
|
+
from openapi_client.models.table_drawing_element import TableDrawingElement as TableDrawingElement
|
|
1002
|
+
from openapi_client.models.table_edit import TableEdit as TableEdit
|
|
1003
|
+
from openapi_client.models.table_edit_list_result import TableEditListResult as TableEditListResult
|
|
1004
|
+
from openapi_client.models.table_filters_reapplication import TableFiltersReapplication as TableFiltersReapplication
|
|
1005
|
+
from openapi_client.models.table_links_batch_edit import TableLinksBatchEdit as TableLinksBatchEdit
|
|
1006
|
+
from openapi_client.models.table_links_edit import TableLinksEdit as TableLinksEdit
|
|
1007
|
+
from openapi_client.models.table_links_edit_list_result import TableLinksEditListResult as TableLinksEditListResult
|
|
1008
|
+
from openapi_client.models.table_links_edit_result import TableLinksEditResult as TableLinksEditResult
|
|
1009
|
+
from openapi_client.models.table_lock_type import TableLockType as TableLockType
|
|
1010
|
+
from openapi_client.models.table_properties import TableProperties as TableProperties
|
|
1011
|
+
from openapi_client.models.table_range_anchor_attachment_point import TableRangeAnchorAttachmentPoint as TableRangeAnchorAttachmentPoint
|
|
1012
|
+
from openapi_client.models.table_reapply_filter_list_result import TableReapplyFilterListResult as TableReapplyFilterListResult
|
|
1013
|
+
from openapi_client.models.table_ref import TableRef as TableRef
|
|
1014
|
+
from openapi_client.models.table_row import TableRow as TableRow
|
|
1015
|
+
from openapi_client.models.table_row_properties import TableRowProperties as TableRowProperties
|
|
1016
|
+
from openapi_client.models.table_style import TableStyle as TableStyle
|
|
1017
|
+
from openapi_client.models.table_text_element import TableTextElement as TableTextElement
|
|
1018
|
+
from openapi_client.models.table_text_element_properties import TableTextElementProperties as TableTextElementProperties
|
|
1019
|
+
from openapi_client.models.tag import Tag as Tag
|
|
1020
|
+
from openapi_client.models.target import Target as Target
|
|
1021
|
+
from openapi_client.models.task import Task as Task
|
|
1022
|
+
from openapi_client.models.task_action import TaskAction as TaskAction
|
|
1023
|
+
from openapi_client.models.task_approval_response import TaskApprovalResponse as TaskApprovalResponse
|
|
1024
|
+
from openapi_client.models.task_approval_step import TaskApprovalStep as TaskApprovalStep
|
|
1025
|
+
from openapi_client.models.task_location import TaskLocation as TaskLocation
|
|
1026
|
+
from openapi_client.models.task_user import TaskUser as TaskUser
|
|
1027
|
+
from openapi_client.models.tasks_list_result import TasksListResult as TasksListResult
|
|
1028
|
+
from openapi_client.models.test_form import TestForm as TestForm
|
|
1029
|
+
from openapi_client.models.test_form_export import TestFormExport as TestFormExport
|
|
1030
|
+
from openapi_client.models.test_forms_list_result import TestFormsListResult as TestFormsListResult
|
|
1031
|
+
from openapi_client.models.test_phase import TestPhase as TestPhase
|
|
1032
|
+
from openapi_client.models.test_phases_list_result import TestPhasesListResult as TestPhasesListResult
|
|
1033
|
+
from openapi_client.models.text_alignment import TextAlignment as TextAlignment
|
|
1034
|
+
from openapi_client.models.text_edit import TextEdit as TextEdit
|
|
1035
|
+
from openapi_client.models.text_element import TextElement as TextElement
|
|
1036
|
+
from openapi_client.models.text_format import TextFormat as TextFormat
|
|
1037
|
+
from openapi_client.models.text_link_edit import TextLinkEdit as TextLinkEdit
|
|
1038
|
+
from openapi_client.models.text_region_connection import TextRegionConnection as TextRegionConnection
|
|
1039
|
+
from openapi_client.models.text_span import TextSpan as TextSpan
|
|
1040
|
+
from openapi_client.models.text_style import TextStyle as TextStyle
|
|
1041
|
+
from openapi_client.models.text_style_alignment import TextStyleAlignment as TextStyleAlignment
|
|
1042
|
+
from openapi_client.models.text_style_character_spacing import TextStyleCharacterSpacing as TextStyleCharacterSpacing
|
|
1043
|
+
from openapi_client.models.text_style_emphasis import TextStyleEmphasis as TextStyleEmphasis
|
|
1044
|
+
from openapi_client.models.text_style_first_line_indent import TextStyleFirstLineIndent as TextStyleFirstLineIndent
|
|
1045
|
+
from openapi_client.models.text_style_font_color import TextStyleFontColor as TextStyleFontColor
|
|
1046
|
+
from openapi_client.models.text_style_font_family import TextStyleFontFamily as TextStyleFontFamily
|
|
1047
|
+
from openapi_client.models.text_style_font_size import TextStyleFontSize as TextStyleFontSize
|
|
1048
|
+
from openapi_client.models.text_style_formats import TextStyleFormats as TextStyleFormats
|
|
1049
|
+
from openapi_client.models.text_style_line_spacing import TextStyleLineSpacing as TextStyleLineSpacing
|
|
1050
|
+
from openapi_client.models.text_style_space_after_paragraph import TextStyleSpaceAfterParagraph as TextStyleSpaceAfterParagraph
|
|
1051
|
+
from openapi_client.models.text_style_space_before_paragraph import TextStyleSpaceBeforeParagraph as TextStyleSpaceBeforeParagraph
|
|
1052
|
+
from openapi_client.models.text_style_start_indent import TextStyleStartIndent as TextStyleStartIndent
|
|
1053
|
+
from openapi_client.models.text_style_type import TextStyleType as TextStyleType
|
|
1054
|
+
from openapi_client.models.topic import Topic as Topic
|
|
1055
|
+
from openapi_client.models.topics_list_result import TopicsListResult as TopicsListResult
|
|
1056
|
+
from openapi_client.models.type import Type as Type
|
|
1057
|
+
from openapi_client.models.types_list_result import TypesListResult as TypesListResult
|
|
1058
|
+
from openapi_client.models.unspecified_drawing_element import UnspecifiedDrawingElement as UnspecifiedDrawingElement
|
|
1059
|
+
from openapi_client.models.unspecified_text_element import UnspecifiedTextElement as UnspecifiedTextElement
|
|
1060
|
+
from openapi_client.models.user import User as User
|
|
1061
|
+
from openapi_client.models.value_format import ValueFormat as ValueFormat
|
|
1062
|
+
from openapi_client.models.value_format_currency_symbol import ValueFormatCurrencySymbol as ValueFormatCurrencySymbol
|
|
1063
|
+
from openapi_client.models.value_format_currency_symbol_currency import ValueFormatCurrencySymbolCurrency as ValueFormatCurrencySymbolCurrency
|
|
1064
|
+
from openapi_client.models.value_format_numbers_as_words_options import ValueFormatNumbersAsWordsOptions as ValueFormatNumbersAsWordsOptions
|
|
1065
|
+
from openapi_client.models.value_format_period_format import ValueFormatPeriodFormat as ValueFormatPeriodFormat
|
|
1066
|
+
from openapi_client.models.value_format_precision import ValueFormatPrecision as ValueFormatPrecision
|
|
1067
|
+
from openapi_client.models.workiva_file_import_options import WorkivaFileImportOptions as WorkivaFileImportOptions
|
|
1068
|
+
from openapi_client.models.workspace import Workspace as Workspace
|
|
1069
|
+
from openapi_client.models.workspace_group import WorkspaceGroup as WorkspaceGroup
|
|
1070
|
+
from openapi_client.models.workspace_group_member import WorkspaceGroupMember as WorkspaceGroupMember
|
|
1071
|
+
from openapi_client.models.workspace_group_members_list_result import WorkspaceGroupMembersListResult as WorkspaceGroupMembersListResult
|
|
1072
|
+
from openapi_client.models.workspace_groups_list_result import WorkspaceGroupsListResult as WorkspaceGroupsListResult
|
|
1073
|
+
from openapi_client.models.workspace_membership import WorkspaceMembership as WorkspaceMembership
|
|
1074
|
+
from openapi_client.models.workspace_membership_creation import WorkspaceMembershipCreation as WorkspaceMembershipCreation
|
|
1075
|
+
from openapi_client.models.workspace_membership_creation_options import WorkspaceMembershipCreationOptions as WorkspaceMembershipCreationOptions
|
|
1076
|
+
from openapi_client.models.workspace_membership_role import WorkspaceMembershipRole as WorkspaceMembershipRole
|
|
1077
|
+
from openapi_client.models.workspace_membership_roles_list_result import WorkspaceMembershipRolesListResult as WorkspaceMembershipRolesListResult
|
|
1078
|
+
from openapi_client.models.workspace_memberships_list_result import WorkspaceMembershipsListResult as WorkspaceMembershipsListResult
|
|
1079
|
+
from openapi_client.models.workspace_role import WorkspaceRole as WorkspaceRole
|
|
1080
|
+
from openapi_client.models.workspace_roles_list_result import WorkspaceRolesListResult as WorkspaceRolesListResult
|
|
1081
|
+
from openapi_client.models.workspace_solutions_list_result import WorkspaceSolutionsListResult as WorkspaceSolutionsListResult
|
|
1082
|
+
from openapi_client.models.workspaces_list_result import WorkspacesListResult as WorkspacesListResult
|
|
1083
|
+
from openapi_client.models.wrap_style_type import WrapStyleType as WrapStyleType
|
|
1084
|
+
|