├── .codegen.json ├── .github ├── ISSUE_TEMPLATE │ ├── bug.md │ ├── config.yml │ ├── enhancement.md │ └── question.md ├── stale.yml └── workflows │ ├── autoupdate-pr.yml │ ├── build.yml │ ├── notify-changelog.yml │ ├── semantic-pr.yml │ └── spell-check-lint.yml ├── .gitignore ├── .pylintrc ├── .pypirc ├── .versionrc ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── VERSIONS.md ├── box_sdk_gen ├── __init__.py ├── box │ ├── __init__.py │ ├── ccg_auth.py │ ├── developer_token_auth.py │ ├── errors.py │ ├── event_stream.py │ ├── jwt_auth.py │ ├── oauth.py │ └── token_storage.py ├── client.py ├── internal │ ├── __init__.py │ ├── base_object.py │ ├── errors.py │ ├── logging.py │ ├── null_value.py │ └── utils.py ├── managers │ ├── __init__.py │ ├── ai.py │ ├── ai_studio.py │ ├── app_item_associations.py │ ├── archives.py │ ├── authorization.py │ ├── avatars.py │ ├── chunked_uploads.py │ ├── classifications.py │ ├── collaboration_allowlist_entries.py │ ├── collaboration_allowlist_exempt_targets.py │ ├── collections.py │ ├── comments.py │ ├── device_pinners.py │ ├── docgen.py │ ├── docgen_template.py │ ├── downloads.py │ ├── email_aliases.py │ ├── events.py │ ├── file_classifications.py │ ├── file_metadata.py │ ├── file_requests.py │ ├── file_version_legal_holds.py │ ├── file_version_retentions.py │ ├── file_versions.py │ ├── file_watermarks.py │ ├── files.py │ ├── folder_classifications.py │ ├── folder_locks.py │ ├── folder_metadata.py │ ├── folder_watermarks.py │ ├── folders.py │ ├── groups.py │ ├── hub_collaborations.py │ ├── hub_items.py │ ├── hubs.py │ ├── integration_mappings.py │ ├── invites.py │ ├── legal_hold_policies.py │ ├── legal_hold_policy_assignments.py │ ├── list_collaborations.py │ ├── memberships.py │ ├── metadata_cascade_policies.py │ ├── metadata_templates.py │ ├── recent_items.py │ ├── retention_policies.py │ ├── retention_policy_assignments.py │ ├── search.py │ ├── session_termination.py │ ├── shared_links_app_items.py │ ├── shared_links_files.py │ ├── shared_links_folders.py │ ├── shared_links_web_links.py │ ├── shield_information_barrier_reports.py │ ├── shield_information_barrier_segment_members.py │ ├── shield_information_barrier_segment_restrictions.py │ ├── shield_information_barrier_segments.py │ ├── shield_information_barriers.py │ ├── shield_lists.py │ ├── sign_requests.py │ ├── sign_templates.py │ ├── skills.py │ ├── storage_policies.py │ ├── storage_policy_assignments.py │ ├── task_assignments.py │ ├── tasks.py │ ├── terms_of_service_user_statuses.py │ ├── terms_of_services.py │ ├── transfer.py │ ├── trashed_files.py │ ├── trashed_folders.py │ ├── trashed_items.py │ ├── trashed_web_links.py │ ├── uploads.py │ ├── user_collaborations.py │ ├── users.py │ ├── web_links.py │ ├── webhooks.py │ ├── workflows.py │ └── zip_downloads.py ├── networking │ ├── __init__.py │ ├── auth.py │ ├── base_urls.py │ ├── box_network_client.py │ ├── fetch_options.py │ ├── fetch_response.py │ ├── network.py │ ├── network_client.py │ ├── proxy_config.py │ ├── retries.py │ └── version.py ├── parameters │ ├── __init__.py │ └── v2025_r0 │ │ ├── __init__.py │ │ └── box_version_header_v2025_r0.py ├── schemas │ ├── __init__.py │ ├── access_token.py │ ├── ai_agent_allowed_entity.py │ ├── ai_agent_ask.py │ ├── ai_agent_basic_gen_tool.py │ ├── ai_agent_basic_text_tool.py │ ├── ai_agent_basic_text_tool_base.py │ ├── ai_agent_basic_text_tool_text_gen.py │ ├── ai_agent_extract.py │ ├── ai_agent_extract_structured.py │ ├── ai_agent_info.py │ ├── ai_agent_long_text_tool.py │ ├── ai_agent_long_text_tool_text_gen.py │ ├── ai_agent_reference.py │ ├── ai_agent_spreadsheet_tool.py │ ├── ai_agent_text_gen.py │ ├── ai_ask.py │ ├── ai_citation.py │ ├── ai_dialogue_history.py │ ├── ai_extract.py │ ├── ai_extract_response.py │ ├── ai_extract_structured.py │ ├── ai_extract_structured_response.py │ ├── ai_item_ask.py │ ├── ai_item_base.py │ ├── ai_llm_endpoint_params.py │ ├── ai_llm_endpoint_params_aws.py │ ├── ai_llm_endpoint_params_google.py │ ├── ai_llm_endpoint_params_ibm.py │ ├── ai_llm_endpoint_params_open_ai.py │ ├── ai_multiple_agent_response.py │ ├── ai_response.py │ ├── ai_response_full.py │ ├── ai_single_agent_response.py │ ├── ai_single_agent_response_full.py │ ├── ai_studio_agent_ask.py │ ├── ai_studio_agent_ask_response.py │ ├── ai_studio_agent_basic_gen_tool.py │ ├── ai_studio_agent_basic_gen_tool_response.py │ ├── ai_studio_agent_basic_text_tool.py │ ├── ai_studio_agent_basic_text_tool_response.py │ ├── ai_studio_agent_extract.py │ ├── ai_studio_agent_extract_response.py │ ├── ai_studio_agent_long_text_tool.py │ ├── ai_studio_agent_long_text_tool_response.py │ ├── ai_studio_agent_spreadsheet_tool.py │ ├── ai_studio_agent_spreadsheet_tool_response.py │ ├── ai_studio_agent_text_gen.py │ ├── ai_studio_agent_text_gen_response.py │ ├── ai_text_gen.py │ ├── app_item.py │ ├── app_item_association.py │ ├── app_item_associations.py │ ├── app_item_event_source.py │ ├── classification.py │ ├── classification_template.py │ ├── client_error.py │ ├── collaboration.py │ ├── collaboration_allowlist_entries.py │ ├── collaboration_allowlist_entry.py │ ├── collaboration_allowlist_exempt_target.py │ ├── collaboration_allowlist_exempt_targets.py │ ├── collaborations.py │ ├── collaborations_offset_paginated.py │ ├── collaborator_variable.py │ ├── collection.py │ ├── collections.py │ ├── comment.py │ ├── comment_base.py │ ├── comment_full.py │ ├── comments.py │ ├── completion_rule_variable.py │ ├── conflict_error.py │ ├── create_ai_agent.py │ ├── device_pinner.py │ ├── device_pinners.py │ ├── email_alias.py │ ├── email_aliases.py │ ├── enterprise_base.py │ ├── event.py │ ├── event_source.py │ ├── events.py │ ├── file.py │ ├── file_base.py │ ├── file_conflict.py │ ├── file_full.py │ ├── file_mini.py │ ├── file_or_folder_scope.py │ ├── file_request.py │ ├── file_request_copy_request.py │ ├── file_request_update_request.py │ ├── file_version.py │ ├── file_version_base.py │ ├── file_version_full.py │ ├── file_version_legal_hold.py │ ├── file_version_legal_holds.py │ ├── file_version_mini.py │ ├── file_version_retention.py │ ├── file_version_retentions.py │ ├── file_versions.py │ ├── files.py │ ├── files_on_hold.py │ ├── files_under_retention.py │ ├── folder.py │ ├── folder_base.py │ ├── folder_full.py │ ├── folder_lock.py │ ├── folder_locks.py │ ├── folder_mini.py │ ├── folder_reference.py │ ├── generic_source.py │ ├── group.py │ ├── group_base.py │ ├── group_full.py │ ├── group_membership.py │ ├── group_memberships.py │ ├── group_mini.py │ ├── groups.py │ ├── integration_mapping.py │ ├── integration_mapping_base.py │ ├── integration_mapping_box_item_slack.py │ ├── integration_mapping_partner_item_slack.py │ ├── integration_mapping_partner_item_teams.py │ ├── integration_mapping_partner_item_teams_create_request.py │ ├── integration_mapping_slack_create_request.py │ ├── integration_mapping_slack_options.py │ ├── integration_mapping_teams.py │ ├── integration_mapping_teams_create_request.py │ ├── integration_mappings.py │ ├── integration_mappings_teams.py │ ├── invite.py │ ├── items.py │ ├── items_offset_paginated.py │ ├── keyword_skill_card.py │ ├── legal_hold_policies.py │ ├── legal_hold_policy.py │ ├── legal_hold_policy_assignment.py │ ├── legal_hold_policy_assignment_base.py │ ├── legal_hold_policy_assignments.py │ ├── legal_hold_policy_mini.py │ ├── metadata.py │ ├── metadata_base.py │ ├── metadata_cascade_policies.py │ ├── metadata_cascade_policy.py │ ├── metadata_error.py │ ├── metadata_field_filter_date_range.py │ ├── metadata_field_filter_float_range.py │ ├── metadata_filter.py │ ├── metadata_full.py │ ├── metadata_instance_value.py │ ├── metadata_query.py │ ├── metadata_query_index.py │ ├── metadata_query_results.py │ ├── metadata_template.py │ ├── metadata_templates.py │ ├── metadatas.py │ ├── o_auth_2_error.py │ ├── outcome.py │ ├── post_o_auth_2_revoke.py │ ├── post_o_auth_2_token.py │ ├── post_o_auth_2_token_refresh_access_token.py │ ├── realtime_server.py │ ├── realtime_servers.py │ ├── recent_item.py │ ├── recent_items.py │ ├── retention_policies.py │ ├── retention_policy.py │ ├── retention_policy_assignment.py │ ├── retention_policy_assignment_base.py │ ├── retention_policy_assignments.py │ ├── retention_policy_base.py │ ├── retention_policy_mini.py │ ├── role_variable.py │ ├── search_result_with_shared_link.py │ ├── search_results.py │ ├── search_results_with_shared_links.py │ ├── session_termination_message.py │ ├── shield_information_barrier.py │ ├── shield_information_barrier_base.py │ ├── shield_information_barrier_reference.py │ ├── shield_information_barrier_report.py │ ├── shield_information_barrier_report_base.py │ ├── shield_information_barrier_report_details.py │ ├── shield_information_barrier_reports.py │ ├── shield_information_barrier_segment.py │ ├── shield_information_barrier_segment_member.py │ ├── shield_information_barrier_segment_member_base.py │ ├── shield_information_barrier_segment_member_mini.py │ ├── shield_information_barrier_segment_members.py │ ├── shield_information_barrier_segment_restriction.py │ ├── shield_information_barrier_segment_restriction_base.py │ ├── shield_information_barrier_segment_restriction_mini.py │ ├── shield_information_barrier_segment_restrictions.py │ ├── shield_information_barrier_segments.py │ ├── shield_information_barriers.py │ ├── sign_request.py │ ├── sign_request_base.py │ ├── sign_request_create_request.py │ ├── sign_request_create_signer.py │ ├── sign_request_prefill_tag.py │ ├── sign_request_signer.py │ ├── sign_request_signer_input.py │ ├── sign_requests.py │ ├── sign_template.py │ ├── sign_templates.py │ ├── skill_cards_metadata.py │ ├── skill_invocation.py │ ├── status_skill_card.py │ ├── storage_policies.py │ ├── storage_policy.py │ ├── storage_policy_assignment.py │ ├── storage_policy_assignments.py │ ├── storage_policy_mini.py │ ├── task.py │ ├── task_assignment.py │ ├── task_assignments.py │ ├── tasks.py │ ├── template_signer.py │ ├── template_signer_input.py │ ├── terms_of_service.py │ ├── terms_of_service_base.py │ ├── terms_of_service_user_status.py │ ├── terms_of_service_user_statuses.py │ ├── terms_of_services.py │ ├── timeline_skill_card.py │ ├── tracking_code.py │ ├── transcript_skill_card.py │ ├── trash_file.py │ ├── trash_file_restored.py │ ├── trash_folder.py │ ├── trash_folder_restored.py │ ├── trash_web_link.py │ ├── trash_web_link_restored.py │ ├── upload_part.py │ ├── upload_part_mini.py │ ├── upload_parts.py │ ├── upload_session.py │ ├── upload_url.py │ ├── uploaded_part.py │ ├── user.py │ ├── user_avatar.py │ ├── user_base.py │ ├── user_collaborations.py │ ├── user_full.py │ ├── user_integration_mappings.py │ ├── user_mini.py │ ├── users.py │ ├── v2025_r0 │ │ ├── __init__.py │ │ ├── archive_v2025_r0.py │ │ ├── archives_v2025_r0.py │ │ ├── client_error_v2025_r0.py │ │ ├── doc_gen_batch_base_v2025_r0.py │ │ ├── doc_gen_batch_create_request_v2025_r0.py │ │ ├── doc_gen_document_generation_data_v2025_r0.py │ │ ├── doc_gen_job_base_v2025_r0.py │ │ ├── doc_gen_job_full_v2025_r0.py │ │ ├── doc_gen_job_v2025_r0.py │ │ ├── doc_gen_jobs_full_v2025_r0.py │ │ ├── doc_gen_jobs_v2025_r0.py │ │ ├── doc_gen_tag_v2025_r0.py │ │ ├── doc_gen_tags_processing_message_v2025_r0.py │ │ ├── doc_gen_tags_v2025_r0.py │ │ ├── doc_gen_template_base_v2025_r0.py │ │ ├── doc_gen_template_create_request_v2025_r0.py │ │ ├── doc_gen_template_v2025_r0.py │ │ ├── doc_gen_templates_v2025_r0.py │ │ ├── enterprise_reference_v2025_r0.py │ │ ├── file_reference_v2025_r0.py │ │ ├── file_version_base_v2025_r0.py │ │ ├── folder_reference_v2025_r0.py │ │ ├── group_base_v2025_r0.py │ │ ├── group_mini_v2025_r0.py │ │ ├── hub_access_grantee_v2025_r0.py │ │ ├── hub_action_v2025_r0.py │ │ ├── hub_base_v2025_r0.py │ │ ├── hub_collaboration_create_request_v2025_r0.py │ │ ├── hub_collaboration_update_request_v2025_r0.py │ │ ├── hub_collaboration_user_v2025_r0.py │ │ ├── hub_collaboration_v2025_r0.py │ │ ├── hub_collaborations_v2025_r0.py │ │ ├── hub_copy_request_v2025_r0.py │ │ ├── hub_create_request_v2025_r0.py │ │ ├── hub_item_operation_result_v2025_r0.py │ │ ├── hub_item_operation_v2025_r0.py │ │ ├── hub_item_reference_v2025_r0.py │ │ ├── hub_item_v2025_r0.py │ │ ├── hub_items_manage_request_v2025_r0.py │ │ ├── hub_items_manage_response_v2025_r0.py │ │ ├── hub_items_v2025_r0.py │ │ ├── hub_update_request_v2025_r0.py │ │ ├── hub_v2025_r0.py │ │ ├── hubs_v2025_r0.py │ │ ├── shield_list_content_country_v2025_r0.py │ │ ├── shield_list_content_domain_v2025_r0.py │ │ ├── shield_list_content_email_v2025_r0.py │ │ ├── shield_list_content_integration_v2025_r0.py │ │ ├── shield_list_content_ip_v2025_r0.py │ │ ├── shield_list_content_request_v2025_r0.py │ │ ├── shield_list_content_v2025_r0.py │ │ ├── shield_list_mini_v2025_r0.py │ │ ├── shield_list_v2025_r0.py │ │ ├── shield_lists_create_v2025_r0.py │ │ ├── shield_lists_update_v2025_r0.py │ │ ├── shield_lists_v2025_r0.py │ │ ├── terms_of_service_base_v2025_r0.py │ │ ├── user_base_v2025_r0.py │ │ ├── user_mini_v2025_r0.py │ │ └── weblink_reference_v2025_r0.py │ ├── watermark.py │ ├── web_link.py │ ├── web_link_base.py │ ├── web_link_mini.py │ ├── webhook.py │ ├── webhook_invocation.py │ ├── webhook_mini.py │ ├── webhooks.py │ ├── workflow.py │ ├── workflow_full.py │ ├── workflow_mini.py │ ├── workflows.py │ ├── zip_download.py │ ├── zip_download_request.py │ └── zip_download_status.py └── serialization │ ├── __init__.py │ └── json.py ├── docs ├── README.md ├── ai.md ├── ai_studio.md ├── app_item_associations.md ├── archives.md ├── authentication.md ├── authorization.md ├── avatars.md ├── chunked_uploads.md ├── classifications.md ├── client.md ├── collaboration_allowlist_entries.md ├── collaboration_allowlist_exempt_targets.md ├── collections.md ├── comments.md ├── configuration.md ├── device_pinners.md ├── docgen.md ├── docgen_template.md ├── downloads.md ├── email_aliases.md ├── event-stream.md ├── events.md ├── file_classifications.md ├── file_metadata.md ├── file_requests.md ├── file_version_legal_holds.md ├── file_version_retentions.md ├── file_versions.md ├── file_watermarks.md ├── files.md ├── folder_classifications.md ├── folder_locks.md ├── folder_metadata.md ├── folder_watermarks.md ├── folders.md ├── groups.md ├── hub_collaborations.md ├── hub_items.md ├── hubs.md ├── integration_mappings.md ├── invites.md ├── legal_hold_policies.md ├── legal_hold_policy_assignments.md ├── list_collaborations.md ├── memberships.md ├── metadata_cascade_policies.md ├── metadata_templates.md ├── recent_items.md ├── retention_policies.md ├── retention_policy_assignments.md ├── search.md ├── session_termination.md ├── shared_links_app_items.md ├── shared_links_files.md ├── shared_links_folders.md ├── shared_links_web_links.md ├── shield_information_barrier_reports.md ├── shield_information_barrier_segment_members.md ├── shield_information_barrier_segment_restrictions.md ├── shield_information_barrier_segments.md ├── shield_information_barriers.md ├── shield_lists.md ├── sign_requests.md ├── sign_templates.md ├── skills.md ├── storage_policies.md ├── storage_policy_assignments.md ├── task_assignments.md ├── tasks.md ├── terms_of_service_user_statuses.md ├── terms_of_services.md ├── transfer.md ├── trashed_files.md ├── trashed_folders.md ├── trashed_items.md ├── trashed_web_links.md ├── uploads.md ├── user_collaborations.md ├── users.md ├── web_links.md ├── webhooks.md ├── workflows.md ├── working-with-nulls.md └── zip_downloads.md ├── migration-guide.md ├── pytest.ini ├── requirements-dev.txt ├── requirements-test.txt ├── requirements.txt ├── setup.py ├── test ├── __init__.py ├── ai.py ├── ai_studio.py ├── app_item_associations.py ├── archives.py ├── auth.py ├── avatars.py ├── box_network_client.py ├── chunked_uploads.py ├── classifications.py ├── client.py ├── collaboration_allowlist_entries.py ├── collaboration_allowlist_exempt_targets.py ├── collections.py ├── comments.py ├── commons.py ├── device_pinners.py ├── docgen.py ├── docgen_template.py ├── downloads.py ├── email_aliases.py ├── events.py ├── file_classifications.py ├── file_metadata.py ├── file_requests.py ├── file_version_legal_holds.py ├── file_version_retentions.py ├── file_versions.py ├── file_watermarks.py ├── files.py ├── folder_classifications.py ├── folder_locks.py ├── folder_metadata.py ├── folder_watermarks.py ├── folders.py ├── groups.py ├── integration_mappings.py ├── invites.py ├── legal_hold_policies.py ├── legal_hold_policy_assignments.py ├── list_collaborations.py ├── memberships.py ├── metadata_cascade_policies.py ├── metadata_templates.py ├── recent_items.py ├── retention_policies.py ├── retention_policy_assignments.py ├── search.py ├── session_termination.py ├── shared_links_app_items.py ├── shared_links_files.py ├── shared_links_folders.py ├── shared_links_web_links.py ├── shield_information_barrier_reports.py ├── shield_information_barrier_segment_members.py ├── shield_information_barrier_segment_restrictions.py ├── shield_information_barrier_segments.py ├── shield_information_barriers.py ├── shield_lists.py ├── sign_requests.py ├── sign_templates.py ├── skills.py ├── storage_policicy_assignments.py ├── storage_policies.py ├── task_assignments.py ├── tasks.py ├── terms_of_service_user_statuses.py ├── terms_of_services.py ├── transfer.py ├── trashed_files.py ├── trashed_folders.py ├── trashed_items.py ├── trashed_web_links.py ├── uploads.py ├── user_collaborations.py ├── users.py ├── webhooks.py ├── weblinks.py ├── workflows.py └── zip_downloads.py └── tox.ini /.codegen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/.codegen.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/.github/ISSUE_TEMPLATE/bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/.github/ISSUE_TEMPLATE/enhancement.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/autoupdate-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/.github/workflows/autoupdate-pr.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/notify-changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/.github/workflows/notify-changelog.yml -------------------------------------------------------------------------------- /.github/workflows/semantic-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/.github/workflows/semantic-pr.yml -------------------------------------------------------------------------------- /.github/workflows/spell-check-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/.github/workflows/spell-check-lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/.pylintrc -------------------------------------------------------------------------------- /.pypirc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/.pypirc -------------------------------------------------------------------------------- /.versionrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/.versionrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/README.md -------------------------------------------------------------------------------- /VERSIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/VERSIONS.md -------------------------------------------------------------------------------- /box_sdk_gen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/__init__.py -------------------------------------------------------------------------------- /box_sdk_gen/box/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/box/__init__.py -------------------------------------------------------------------------------- /box_sdk_gen/box/ccg_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/box/ccg_auth.py -------------------------------------------------------------------------------- /box_sdk_gen/box/developer_token_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/box/developer_token_auth.py -------------------------------------------------------------------------------- /box_sdk_gen/box/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/box/errors.py -------------------------------------------------------------------------------- /box_sdk_gen/box/event_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/box/event_stream.py -------------------------------------------------------------------------------- /box_sdk_gen/box/jwt_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/box/jwt_auth.py -------------------------------------------------------------------------------- /box_sdk_gen/box/oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/box/oauth.py -------------------------------------------------------------------------------- /box_sdk_gen/box/token_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/box/token_storage.py -------------------------------------------------------------------------------- /box_sdk_gen/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/client.py -------------------------------------------------------------------------------- /box_sdk_gen/internal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/internal/__init__.py -------------------------------------------------------------------------------- /box_sdk_gen/internal/base_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/internal/base_object.py -------------------------------------------------------------------------------- /box_sdk_gen/internal/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/internal/errors.py -------------------------------------------------------------------------------- /box_sdk_gen/internal/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/internal/logging.py -------------------------------------------------------------------------------- /box_sdk_gen/internal/null_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/internal/null_value.py -------------------------------------------------------------------------------- /box_sdk_gen/internal/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/internal/utils.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/__init__.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/ai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/ai.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/ai_studio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/ai_studio.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/app_item_associations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/app_item_associations.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/archives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/archives.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/authorization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/authorization.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/avatars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/avatars.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/chunked_uploads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/chunked_uploads.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/classifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/classifications.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/collaboration_allowlist_entries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/collaboration_allowlist_entries.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/collaboration_allowlist_exempt_targets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/collaboration_allowlist_exempt_targets.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/collections.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/comments.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/device_pinners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/device_pinners.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/docgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/docgen.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/docgen_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/docgen_template.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/downloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/downloads.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/email_aliases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/email_aliases.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/events.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/file_classifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/file_classifications.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/file_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/file_metadata.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/file_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/file_requests.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/file_version_legal_holds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/file_version_legal_holds.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/file_version_retentions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/file_version_retentions.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/file_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/file_versions.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/file_watermarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/file_watermarks.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/files.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/folder_classifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/folder_classifications.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/folder_locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/folder_locks.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/folder_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/folder_metadata.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/folder_watermarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/folder_watermarks.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/folders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/folders.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/groups.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/hub_collaborations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/hub_collaborations.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/hub_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/hub_items.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/hubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/hubs.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/integration_mappings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/integration_mappings.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/invites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/invites.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/legal_hold_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/legal_hold_policies.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/legal_hold_policy_assignments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/legal_hold_policy_assignments.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/list_collaborations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/list_collaborations.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/memberships.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/memberships.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/metadata_cascade_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/metadata_cascade_policies.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/metadata_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/metadata_templates.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/recent_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/recent_items.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/retention_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/retention_policies.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/retention_policy_assignments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/retention_policy_assignments.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/search.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/session_termination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/session_termination.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/shared_links_app_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/shared_links_app_items.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/shared_links_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/shared_links_files.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/shared_links_folders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/shared_links_folders.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/shared_links_web_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/shared_links_web_links.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/shield_information_barrier_reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/shield_information_barrier_reports.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/shield_information_barrier_segment_members.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/shield_information_barrier_segment_members.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/shield_information_barrier_segment_restrictions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/shield_information_barrier_segment_restrictions.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/shield_information_barrier_segments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/shield_information_barrier_segments.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/shield_information_barriers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/shield_information_barriers.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/shield_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/shield_lists.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/sign_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/sign_requests.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/sign_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/sign_templates.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/skills.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/skills.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/storage_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/storage_policies.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/storage_policy_assignments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/storage_policy_assignments.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/task_assignments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/task_assignments.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/tasks.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/terms_of_service_user_statuses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/terms_of_service_user_statuses.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/terms_of_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/terms_of_services.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/transfer.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/trashed_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/trashed_files.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/trashed_folders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/trashed_folders.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/trashed_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/trashed_items.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/trashed_web_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/trashed_web_links.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/uploads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/uploads.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/user_collaborations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/user_collaborations.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/users.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/web_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/web_links.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/webhooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/webhooks.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/workflows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/workflows.py -------------------------------------------------------------------------------- /box_sdk_gen/managers/zip_downloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/managers/zip_downloads.py -------------------------------------------------------------------------------- /box_sdk_gen/networking/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/networking/__init__.py -------------------------------------------------------------------------------- /box_sdk_gen/networking/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/networking/auth.py -------------------------------------------------------------------------------- /box_sdk_gen/networking/base_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/networking/base_urls.py -------------------------------------------------------------------------------- /box_sdk_gen/networking/box_network_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/networking/box_network_client.py -------------------------------------------------------------------------------- /box_sdk_gen/networking/fetch_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/networking/fetch_options.py -------------------------------------------------------------------------------- /box_sdk_gen/networking/fetch_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/networking/fetch_response.py -------------------------------------------------------------------------------- /box_sdk_gen/networking/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/networking/network.py -------------------------------------------------------------------------------- /box_sdk_gen/networking/network_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/networking/network_client.py -------------------------------------------------------------------------------- /box_sdk_gen/networking/proxy_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/networking/proxy_config.py -------------------------------------------------------------------------------- /box_sdk_gen/networking/retries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/networking/retries.py -------------------------------------------------------------------------------- /box_sdk_gen/networking/version.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.17.0' 2 | -------------------------------------------------------------------------------- /box_sdk_gen/parameters/__init__.py: -------------------------------------------------------------------------------- 1 | from box_sdk_gen.parameters.v2025_r0 import * 2 | -------------------------------------------------------------------------------- /box_sdk_gen/parameters/v2025_r0/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/parameters/v2025_r0/__init__.py -------------------------------------------------------------------------------- /box_sdk_gen/parameters/v2025_r0/box_version_header_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/parameters/v2025_r0/box_version_header_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/__init__.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/access_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/access_token.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_agent_allowed_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_agent_allowed_entity.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_agent_ask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_agent_ask.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_agent_basic_gen_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_agent_basic_gen_tool.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_agent_basic_text_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_agent_basic_text_tool.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_agent_basic_text_tool_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_agent_basic_text_tool_base.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_agent_basic_text_tool_text_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_agent_basic_text_tool_text_gen.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_agent_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_agent_extract.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_agent_extract_structured.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_agent_extract_structured.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_agent_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_agent_info.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_agent_long_text_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_agent_long_text_tool.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_agent_long_text_tool_text_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_agent_long_text_tool_text_gen.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_agent_reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_agent_reference.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_agent_spreadsheet_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_agent_spreadsheet_tool.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_agent_text_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_agent_text_gen.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_ask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_ask.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_citation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_citation.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_dialogue_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_dialogue_history.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_extract.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_extract_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_extract_response.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_extract_structured.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_extract_structured.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_extract_structured_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_extract_structured_response.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_item_ask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_item_ask.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_item_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_item_base.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_llm_endpoint_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_llm_endpoint_params.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_llm_endpoint_params_aws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_llm_endpoint_params_aws.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_llm_endpoint_params_google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_llm_endpoint_params_google.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_llm_endpoint_params_ibm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_llm_endpoint_params_ibm.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_llm_endpoint_params_open_ai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_llm_endpoint_params_open_ai.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_multiple_agent_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_multiple_agent_response.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_response.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_response_full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_response_full.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_single_agent_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_single_agent_response.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_single_agent_response_full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_single_agent_response_full.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_studio_agent_ask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_studio_agent_ask.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_studio_agent_ask_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_studio_agent_ask_response.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_studio_agent_basic_gen_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_studio_agent_basic_gen_tool.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_studio_agent_basic_gen_tool_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_studio_agent_basic_gen_tool_response.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_studio_agent_basic_text_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_studio_agent_basic_text_tool.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_studio_agent_basic_text_tool_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_studio_agent_basic_text_tool_response.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_studio_agent_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_studio_agent_extract.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_studio_agent_extract_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_studio_agent_extract_response.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_studio_agent_long_text_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_studio_agent_long_text_tool.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_studio_agent_long_text_tool_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_studio_agent_long_text_tool_response.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_studio_agent_spreadsheet_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_studio_agent_spreadsheet_tool.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_studio_agent_spreadsheet_tool_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_studio_agent_spreadsheet_tool_response.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_studio_agent_text_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_studio_agent_text_gen.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_studio_agent_text_gen_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_studio_agent_text_gen_response.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/ai_text_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/ai_text_gen.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/app_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/app_item.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/app_item_association.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/app_item_association.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/app_item_associations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/app_item_associations.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/app_item_event_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/app_item_event_source.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/classification.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/classification_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/classification_template.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/client_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/client_error.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/collaboration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/collaboration.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/collaboration_allowlist_entries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/collaboration_allowlist_entries.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/collaboration_allowlist_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/collaboration_allowlist_entry.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/collaboration_allowlist_exempt_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/collaboration_allowlist_exempt_target.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/collaboration_allowlist_exempt_targets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/collaboration_allowlist_exempt_targets.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/collaborations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/collaborations.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/collaborations_offset_paginated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/collaborations_offset_paginated.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/collaborator_variable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/collaborator_variable.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/collection.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/collections.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/comment.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/comment_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/comment_base.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/comment_full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/comment_full.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/comments.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/completion_rule_variable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/completion_rule_variable.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/conflict_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/conflict_error.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/create_ai_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/create_ai_agent.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/device_pinner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/device_pinner.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/device_pinners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/device_pinners.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/email_alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/email_alias.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/email_aliases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/email_aliases.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/enterprise_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/enterprise_base.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/event.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/event_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/event_source.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/events.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/file.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/file_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/file_base.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/file_conflict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/file_conflict.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/file_full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/file_full.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/file_mini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/file_mini.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/file_or_folder_scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/file_or_folder_scope.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/file_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/file_request.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/file_request_copy_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/file_request_copy_request.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/file_request_update_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/file_request_update_request.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/file_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/file_version.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/file_version_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/file_version_base.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/file_version_full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/file_version_full.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/file_version_legal_hold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/file_version_legal_hold.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/file_version_legal_holds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/file_version_legal_holds.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/file_version_mini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/file_version_mini.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/file_version_retention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/file_version_retention.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/file_version_retentions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/file_version_retentions.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/file_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/file_versions.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/files.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/files_on_hold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/files_on_hold.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/files_under_retention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/files_under_retention.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/folder.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/folder_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/folder_base.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/folder_full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/folder_full.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/folder_lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/folder_lock.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/folder_locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/folder_locks.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/folder_mini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/folder_mini.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/folder_reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/folder_reference.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/generic_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/generic_source.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/group.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/group_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/group_base.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/group_full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/group_full.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/group_membership.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/group_membership.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/group_memberships.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/group_memberships.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/group_mini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/group_mini.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/groups.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/integration_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/integration_mapping.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/integration_mapping_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/integration_mapping_base.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/integration_mapping_box_item_slack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/integration_mapping_box_item_slack.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/integration_mapping_partner_item_slack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/integration_mapping_partner_item_slack.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/integration_mapping_partner_item_teams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/integration_mapping_partner_item_teams.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/integration_mapping_partner_item_teams_create_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/integration_mapping_partner_item_teams_create_request.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/integration_mapping_slack_create_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/integration_mapping_slack_create_request.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/integration_mapping_slack_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/integration_mapping_slack_options.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/integration_mapping_teams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/integration_mapping_teams.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/integration_mapping_teams_create_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/integration_mapping_teams_create_request.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/integration_mappings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/integration_mappings.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/integration_mappings_teams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/integration_mappings_teams.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/invite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/invite.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/items.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/items_offset_paginated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/items_offset_paginated.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/keyword_skill_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/keyword_skill_card.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/legal_hold_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/legal_hold_policies.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/legal_hold_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/legal_hold_policy.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/legal_hold_policy_assignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/legal_hold_policy_assignment.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/legal_hold_policy_assignment_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/legal_hold_policy_assignment_base.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/legal_hold_policy_assignments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/legal_hold_policy_assignments.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/legal_hold_policy_mini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/legal_hold_policy_mini.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/metadata.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/metadata_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/metadata_base.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/metadata_cascade_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/metadata_cascade_policies.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/metadata_cascade_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/metadata_cascade_policy.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/metadata_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/metadata_error.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/metadata_field_filter_date_range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/metadata_field_filter_date_range.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/metadata_field_filter_float_range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/metadata_field_filter_float_range.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/metadata_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/metadata_filter.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/metadata_full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/metadata_full.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/metadata_instance_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/metadata_instance_value.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/metadata_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/metadata_query.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/metadata_query_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/metadata_query_index.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/metadata_query_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/metadata_query_results.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/metadata_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/metadata_template.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/metadata_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/metadata_templates.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/metadatas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/metadatas.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/o_auth_2_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/o_auth_2_error.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/outcome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/outcome.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/post_o_auth_2_revoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/post_o_auth_2_revoke.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/post_o_auth_2_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/post_o_auth_2_token.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/post_o_auth_2_token_refresh_access_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/post_o_auth_2_token_refresh_access_token.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/realtime_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/realtime_server.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/realtime_servers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/realtime_servers.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/recent_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/recent_item.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/recent_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/recent_items.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/retention_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/retention_policies.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/retention_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/retention_policy.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/retention_policy_assignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/retention_policy_assignment.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/retention_policy_assignment_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/retention_policy_assignment_base.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/retention_policy_assignments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/retention_policy_assignments.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/retention_policy_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/retention_policy_base.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/retention_policy_mini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/retention_policy_mini.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/role_variable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/role_variable.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/search_result_with_shared_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/search_result_with_shared_link.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/search_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/search_results.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/search_results_with_shared_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/search_results_with_shared_links.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/session_termination_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/session_termination_message.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/shield_information_barrier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/shield_information_barrier.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/shield_information_barrier_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/shield_information_barrier_base.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/shield_information_barrier_reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/shield_information_barrier_reference.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/shield_information_barrier_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/shield_information_barrier_report.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/shield_information_barrier_report_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/shield_information_barrier_report_base.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/shield_information_barrier_report_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/shield_information_barrier_report_details.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/shield_information_barrier_reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/shield_information_barrier_reports.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/shield_information_barrier_segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/shield_information_barrier_segment.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/shield_information_barrier_segment_member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/shield_information_barrier_segment_member.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/shield_information_barrier_segment_member_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/shield_information_barrier_segment_member_base.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/shield_information_barrier_segment_member_mini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/shield_information_barrier_segment_member_mini.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/shield_information_barrier_segment_members.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/shield_information_barrier_segment_members.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/shield_information_barrier_segment_restriction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/shield_information_barrier_segment_restriction.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/shield_information_barrier_segment_restriction_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/shield_information_barrier_segment_restriction_base.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/shield_information_barrier_segment_restriction_mini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/shield_information_barrier_segment_restriction_mini.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/shield_information_barrier_segment_restrictions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/shield_information_barrier_segment_restrictions.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/shield_information_barrier_segments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/shield_information_barrier_segments.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/shield_information_barriers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/shield_information_barriers.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/sign_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/sign_request.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/sign_request_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/sign_request_base.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/sign_request_create_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/sign_request_create_request.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/sign_request_create_signer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/sign_request_create_signer.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/sign_request_prefill_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/sign_request_prefill_tag.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/sign_request_signer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/sign_request_signer.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/sign_request_signer_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/sign_request_signer_input.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/sign_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/sign_requests.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/sign_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/sign_template.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/sign_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/sign_templates.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/skill_cards_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/skill_cards_metadata.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/skill_invocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/skill_invocation.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/status_skill_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/status_skill_card.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/storage_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/storage_policies.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/storage_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/storage_policy.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/storage_policy_assignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/storage_policy_assignment.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/storage_policy_assignments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/storage_policy_assignments.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/storage_policy_mini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/storage_policy_mini.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/task.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/task_assignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/task_assignment.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/task_assignments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/task_assignments.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/tasks.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/template_signer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/template_signer.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/template_signer_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/template_signer_input.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/terms_of_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/terms_of_service.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/terms_of_service_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/terms_of_service_base.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/terms_of_service_user_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/terms_of_service_user_status.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/terms_of_service_user_statuses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/terms_of_service_user_statuses.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/terms_of_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/terms_of_services.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/timeline_skill_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/timeline_skill_card.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/tracking_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/tracking_code.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/transcript_skill_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/transcript_skill_card.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/trash_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/trash_file.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/trash_file_restored.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/trash_file_restored.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/trash_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/trash_folder.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/trash_folder_restored.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/trash_folder_restored.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/trash_web_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/trash_web_link.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/trash_web_link_restored.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/trash_web_link_restored.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/upload_part.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/upload_part.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/upload_part_mini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/upload_part_mini.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/upload_parts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/upload_parts.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/upload_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/upload_session.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/upload_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/upload_url.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/uploaded_part.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/uploaded_part.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/user.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/user_avatar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/user_avatar.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/user_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/user_base.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/user_collaborations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/user_collaborations.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/user_full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/user_full.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/user_integration_mappings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/user_integration_mappings.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/user_mini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/user_mini.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/users.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/__init__.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/archive_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/archive_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/archives_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/archives_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/client_error_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/client_error_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/doc_gen_batch_base_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/doc_gen_batch_base_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/doc_gen_batch_create_request_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/doc_gen_batch_create_request_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/doc_gen_document_generation_data_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/doc_gen_document_generation_data_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/doc_gen_job_base_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/doc_gen_job_base_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/doc_gen_job_full_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/doc_gen_job_full_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/doc_gen_job_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/doc_gen_job_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/doc_gen_jobs_full_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/doc_gen_jobs_full_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/doc_gen_jobs_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/doc_gen_jobs_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/doc_gen_tag_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/doc_gen_tag_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/doc_gen_tags_processing_message_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/doc_gen_tags_processing_message_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/doc_gen_tags_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/doc_gen_tags_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/doc_gen_template_base_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/doc_gen_template_base_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/doc_gen_template_create_request_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/doc_gen_template_create_request_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/doc_gen_template_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/doc_gen_template_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/doc_gen_templates_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/doc_gen_templates_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/enterprise_reference_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/enterprise_reference_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/file_reference_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/file_reference_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/file_version_base_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/file_version_base_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/folder_reference_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/folder_reference_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/group_base_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/group_base_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/group_mini_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/group_mini_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/hub_access_grantee_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/hub_access_grantee_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/hub_action_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/hub_action_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/hub_base_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/hub_base_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/hub_collaboration_create_request_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/hub_collaboration_create_request_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/hub_collaboration_update_request_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/hub_collaboration_update_request_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/hub_collaboration_user_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/hub_collaboration_user_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/hub_collaboration_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/hub_collaboration_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/hub_collaborations_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/hub_collaborations_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/hub_copy_request_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/hub_copy_request_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/hub_create_request_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/hub_create_request_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/hub_item_operation_result_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/hub_item_operation_result_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/hub_item_operation_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/hub_item_operation_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/hub_item_reference_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/hub_item_reference_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/hub_item_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/hub_item_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/hub_items_manage_request_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/hub_items_manage_request_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/hub_items_manage_response_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/hub_items_manage_response_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/hub_items_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/hub_items_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/hub_update_request_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/hub_update_request_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/hub_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/hub_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/hubs_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/hubs_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/shield_list_content_country_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/shield_list_content_country_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/shield_list_content_domain_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/shield_list_content_domain_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/shield_list_content_email_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/shield_list_content_email_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/shield_list_content_integration_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/shield_list_content_integration_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/shield_list_content_ip_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/shield_list_content_ip_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/shield_list_content_request_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/shield_list_content_request_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/shield_list_content_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/shield_list_content_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/shield_list_mini_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/shield_list_mini_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/shield_list_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/shield_list_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/shield_lists_create_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/shield_lists_create_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/shield_lists_update_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/shield_lists_update_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/shield_lists_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/shield_lists_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/terms_of_service_base_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/terms_of_service_base_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/user_base_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/user_base_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/user_mini_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/user_mini_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/v2025_r0/weblink_reference_v2025_r0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/v2025_r0/weblink_reference_v2025_r0.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/watermark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/watermark.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/web_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/web_link.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/web_link_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/web_link_base.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/web_link_mini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/web_link_mini.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/webhook.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/webhook_invocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/webhook_invocation.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/webhook_mini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/webhook_mini.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/webhooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/webhooks.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/workflow.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/workflow_full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/workflow_full.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/workflow_mini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/workflow_mini.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/workflows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/workflows.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/zip_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/zip_download.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/zip_download_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/zip_download_request.py -------------------------------------------------------------------------------- /box_sdk_gen/schemas/zip_download_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/schemas/zip_download_status.py -------------------------------------------------------------------------------- /box_sdk_gen/serialization/__init__.py: -------------------------------------------------------------------------------- 1 | from box_sdk_gen.serialization.json import * 2 | -------------------------------------------------------------------------------- /box_sdk_gen/serialization/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/box_sdk_gen/serialization/json.py -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/ai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/ai.md -------------------------------------------------------------------------------- /docs/ai_studio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/ai_studio.md -------------------------------------------------------------------------------- /docs/app_item_associations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/app_item_associations.md -------------------------------------------------------------------------------- /docs/archives.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/archives.md -------------------------------------------------------------------------------- /docs/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/authentication.md -------------------------------------------------------------------------------- /docs/authorization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/authorization.md -------------------------------------------------------------------------------- /docs/avatars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/avatars.md -------------------------------------------------------------------------------- /docs/chunked_uploads.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/chunked_uploads.md -------------------------------------------------------------------------------- /docs/classifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/classifications.md -------------------------------------------------------------------------------- /docs/client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/client.md -------------------------------------------------------------------------------- /docs/collaboration_allowlist_entries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/collaboration_allowlist_entries.md -------------------------------------------------------------------------------- /docs/collaboration_allowlist_exempt_targets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/collaboration_allowlist_exempt_targets.md -------------------------------------------------------------------------------- /docs/collections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/collections.md -------------------------------------------------------------------------------- /docs/comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/comments.md -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/device_pinners.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/device_pinners.md -------------------------------------------------------------------------------- /docs/docgen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/docgen.md -------------------------------------------------------------------------------- /docs/docgen_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/docgen_template.md -------------------------------------------------------------------------------- /docs/downloads.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/downloads.md -------------------------------------------------------------------------------- /docs/email_aliases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/email_aliases.md -------------------------------------------------------------------------------- /docs/event-stream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/event-stream.md -------------------------------------------------------------------------------- /docs/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/events.md -------------------------------------------------------------------------------- /docs/file_classifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/file_classifications.md -------------------------------------------------------------------------------- /docs/file_metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/file_metadata.md -------------------------------------------------------------------------------- /docs/file_requests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/file_requests.md -------------------------------------------------------------------------------- /docs/file_version_legal_holds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/file_version_legal_holds.md -------------------------------------------------------------------------------- /docs/file_version_retentions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/file_version_retentions.md -------------------------------------------------------------------------------- /docs/file_versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/file_versions.md -------------------------------------------------------------------------------- /docs/file_watermarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/file_watermarks.md -------------------------------------------------------------------------------- /docs/files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/files.md -------------------------------------------------------------------------------- /docs/folder_classifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/folder_classifications.md -------------------------------------------------------------------------------- /docs/folder_locks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/folder_locks.md -------------------------------------------------------------------------------- /docs/folder_metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/folder_metadata.md -------------------------------------------------------------------------------- /docs/folder_watermarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/folder_watermarks.md -------------------------------------------------------------------------------- /docs/folders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/folders.md -------------------------------------------------------------------------------- /docs/groups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/groups.md -------------------------------------------------------------------------------- /docs/hub_collaborations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/hub_collaborations.md -------------------------------------------------------------------------------- /docs/hub_items.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/hub_items.md -------------------------------------------------------------------------------- /docs/hubs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/hubs.md -------------------------------------------------------------------------------- /docs/integration_mappings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/integration_mappings.md -------------------------------------------------------------------------------- /docs/invites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/invites.md -------------------------------------------------------------------------------- /docs/legal_hold_policies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/legal_hold_policies.md -------------------------------------------------------------------------------- /docs/legal_hold_policy_assignments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/legal_hold_policy_assignments.md -------------------------------------------------------------------------------- /docs/list_collaborations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/list_collaborations.md -------------------------------------------------------------------------------- /docs/memberships.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/memberships.md -------------------------------------------------------------------------------- /docs/metadata_cascade_policies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/metadata_cascade_policies.md -------------------------------------------------------------------------------- /docs/metadata_templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/metadata_templates.md -------------------------------------------------------------------------------- /docs/recent_items.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/recent_items.md -------------------------------------------------------------------------------- /docs/retention_policies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/retention_policies.md -------------------------------------------------------------------------------- /docs/retention_policy_assignments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/retention_policy_assignments.md -------------------------------------------------------------------------------- /docs/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/search.md -------------------------------------------------------------------------------- /docs/session_termination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/session_termination.md -------------------------------------------------------------------------------- /docs/shared_links_app_items.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/shared_links_app_items.md -------------------------------------------------------------------------------- /docs/shared_links_files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/shared_links_files.md -------------------------------------------------------------------------------- /docs/shared_links_folders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/shared_links_folders.md -------------------------------------------------------------------------------- /docs/shared_links_web_links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/shared_links_web_links.md -------------------------------------------------------------------------------- /docs/shield_information_barrier_reports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/shield_information_barrier_reports.md -------------------------------------------------------------------------------- /docs/shield_information_barrier_segment_members.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/shield_information_barrier_segment_members.md -------------------------------------------------------------------------------- /docs/shield_information_barrier_segment_restrictions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/shield_information_barrier_segment_restrictions.md -------------------------------------------------------------------------------- /docs/shield_information_barrier_segments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/shield_information_barrier_segments.md -------------------------------------------------------------------------------- /docs/shield_information_barriers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/shield_information_barriers.md -------------------------------------------------------------------------------- /docs/shield_lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/shield_lists.md -------------------------------------------------------------------------------- /docs/sign_requests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/sign_requests.md -------------------------------------------------------------------------------- /docs/sign_templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/sign_templates.md -------------------------------------------------------------------------------- /docs/skills.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/skills.md -------------------------------------------------------------------------------- /docs/storage_policies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/storage_policies.md -------------------------------------------------------------------------------- /docs/storage_policy_assignments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/storage_policy_assignments.md -------------------------------------------------------------------------------- /docs/task_assignments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/task_assignments.md -------------------------------------------------------------------------------- /docs/tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/tasks.md -------------------------------------------------------------------------------- /docs/terms_of_service_user_statuses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/terms_of_service_user_statuses.md -------------------------------------------------------------------------------- /docs/terms_of_services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/terms_of_services.md -------------------------------------------------------------------------------- /docs/transfer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/transfer.md -------------------------------------------------------------------------------- /docs/trashed_files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/trashed_files.md -------------------------------------------------------------------------------- /docs/trashed_folders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/trashed_folders.md -------------------------------------------------------------------------------- /docs/trashed_items.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/trashed_items.md -------------------------------------------------------------------------------- /docs/trashed_web_links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/trashed_web_links.md -------------------------------------------------------------------------------- /docs/uploads.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/uploads.md -------------------------------------------------------------------------------- /docs/user_collaborations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/user_collaborations.md -------------------------------------------------------------------------------- /docs/users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/users.md -------------------------------------------------------------------------------- /docs/web_links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/web_links.md -------------------------------------------------------------------------------- /docs/webhooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/webhooks.md -------------------------------------------------------------------------------- /docs/workflows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/workflows.md -------------------------------------------------------------------------------- /docs/working-with-nulls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/working-with-nulls.md -------------------------------------------------------------------------------- /docs/zip_downloads.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/docs/zip_downloads.md -------------------------------------------------------------------------------- /migration-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/migration-guide.md -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | -e .[test,dev] 2 | -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- 1 | -e .[test] 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -e . 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/ai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/ai.py -------------------------------------------------------------------------------- /test/ai_studio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/ai_studio.py -------------------------------------------------------------------------------- /test/app_item_associations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/app_item_associations.py -------------------------------------------------------------------------------- /test/archives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/archives.py -------------------------------------------------------------------------------- /test/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/auth.py -------------------------------------------------------------------------------- /test/avatars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/avatars.py -------------------------------------------------------------------------------- /test/box_network_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/box_network_client.py -------------------------------------------------------------------------------- /test/chunked_uploads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/chunked_uploads.py -------------------------------------------------------------------------------- /test/classifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/classifications.py -------------------------------------------------------------------------------- /test/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/client.py -------------------------------------------------------------------------------- /test/collaboration_allowlist_entries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/collaboration_allowlist_entries.py -------------------------------------------------------------------------------- /test/collaboration_allowlist_exempt_targets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/collaboration_allowlist_exempt_targets.py -------------------------------------------------------------------------------- /test/collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/collections.py -------------------------------------------------------------------------------- /test/comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/comments.py -------------------------------------------------------------------------------- /test/commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/commons.py -------------------------------------------------------------------------------- /test/device_pinners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/device_pinners.py -------------------------------------------------------------------------------- /test/docgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/docgen.py -------------------------------------------------------------------------------- /test/docgen_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/docgen_template.py -------------------------------------------------------------------------------- /test/downloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/downloads.py -------------------------------------------------------------------------------- /test/email_aliases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/email_aliases.py -------------------------------------------------------------------------------- /test/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/events.py -------------------------------------------------------------------------------- /test/file_classifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/file_classifications.py -------------------------------------------------------------------------------- /test/file_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/file_metadata.py -------------------------------------------------------------------------------- /test/file_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/file_requests.py -------------------------------------------------------------------------------- /test/file_version_legal_holds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/file_version_legal_holds.py -------------------------------------------------------------------------------- /test/file_version_retentions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/file_version_retentions.py -------------------------------------------------------------------------------- /test/file_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/file_versions.py -------------------------------------------------------------------------------- /test/file_watermarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/file_watermarks.py -------------------------------------------------------------------------------- /test/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/files.py -------------------------------------------------------------------------------- /test/folder_classifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/folder_classifications.py -------------------------------------------------------------------------------- /test/folder_locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/folder_locks.py -------------------------------------------------------------------------------- /test/folder_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/folder_metadata.py -------------------------------------------------------------------------------- /test/folder_watermarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/folder_watermarks.py -------------------------------------------------------------------------------- /test/folders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/folders.py -------------------------------------------------------------------------------- /test/groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/groups.py -------------------------------------------------------------------------------- /test/integration_mappings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/integration_mappings.py -------------------------------------------------------------------------------- /test/invites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/invites.py -------------------------------------------------------------------------------- /test/legal_hold_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/legal_hold_policies.py -------------------------------------------------------------------------------- /test/legal_hold_policy_assignments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/legal_hold_policy_assignments.py -------------------------------------------------------------------------------- /test/list_collaborations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/list_collaborations.py -------------------------------------------------------------------------------- /test/memberships.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/memberships.py -------------------------------------------------------------------------------- /test/metadata_cascade_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/metadata_cascade_policies.py -------------------------------------------------------------------------------- /test/metadata_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/metadata_templates.py -------------------------------------------------------------------------------- /test/recent_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/recent_items.py -------------------------------------------------------------------------------- /test/retention_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/retention_policies.py -------------------------------------------------------------------------------- /test/retention_policy_assignments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/retention_policy_assignments.py -------------------------------------------------------------------------------- /test/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/search.py -------------------------------------------------------------------------------- /test/session_termination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/session_termination.py -------------------------------------------------------------------------------- /test/shared_links_app_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/shared_links_app_items.py -------------------------------------------------------------------------------- /test/shared_links_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/shared_links_files.py -------------------------------------------------------------------------------- /test/shared_links_folders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/shared_links_folders.py -------------------------------------------------------------------------------- /test/shared_links_web_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/shared_links_web_links.py -------------------------------------------------------------------------------- /test/shield_information_barrier_reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/shield_information_barrier_reports.py -------------------------------------------------------------------------------- /test/shield_information_barrier_segment_members.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/shield_information_barrier_segment_members.py -------------------------------------------------------------------------------- /test/shield_information_barrier_segment_restrictions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/shield_information_barrier_segment_restrictions.py -------------------------------------------------------------------------------- /test/shield_information_barrier_segments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/shield_information_barrier_segments.py -------------------------------------------------------------------------------- /test/shield_information_barriers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/shield_information_barriers.py -------------------------------------------------------------------------------- /test/shield_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/shield_lists.py -------------------------------------------------------------------------------- /test/sign_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/sign_requests.py -------------------------------------------------------------------------------- /test/sign_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/sign_templates.py -------------------------------------------------------------------------------- /test/skills.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/skills.py -------------------------------------------------------------------------------- /test/storage_policicy_assignments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/storage_policicy_assignments.py -------------------------------------------------------------------------------- /test/storage_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/storage_policies.py -------------------------------------------------------------------------------- /test/task_assignments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/task_assignments.py -------------------------------------------------------------------------------- /test/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/tasks.py -------------------------------------------------------------------------------- /test/terms_of_service_user_statuses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/terms_of_service_user_statuses.py -------------------------------------------------------------------------------- /test/terms_of_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/terms_of_services.py -------------------------------------------------------------------------------- /test/transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/transfer.py -------------------------------------------------------------------------------- /test/trashed_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/trashed_files.py -------------------------------------------------------------------------------- /test/trashed_folders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/trashed_folders.py -------------------------------------------------------------------------------- /test/trashed_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/trashed_items.py -------------------------------------------------------------------------------- /test/trashed_web_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/trashed_web_links.py -------------------------------------------------------------------------------- /test/uploads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/uploads.py -------------------------------------------------------------------------------- /test/user_collaborations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/user_collaborations.py -------------------------------------------------------------------------------- /test/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/users.py -------------------------------------------------------------------------------- /test/webhooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/webhooks.py -------------------------------------------------------------------------------- /test/weblinks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/weblinks.py -------------------------------------------------------------------------------- /test/workflows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/workflows.py -------------------------------------------------------------------------------- /test/zip_downloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/test/zip_downloads.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/box-python-sdk-gen/HEAD/tox.ini --------------------------------------------------------------------------------