Metadata-Version: 2.3
Name: dalux-client
Version: 0.1.2
Summary: Add your description here
Author: Eivind Teig
Author-email: Eivind Teig <eivind.teig@gmail.com>
Requires-Dist: certifi>=14.5.14
Requires-Dist: python-dateutil>=2.5.3
Requires-Dist: setuptools>=21.0.0
Requires-Dist: six>=1.10
Requires-Dist: urllib3>=1.15.1
Requires-Python: >=3.14.0
Description-Content-Type: text/markdown

# swagger-client
#### Getting started To access data objects through a service, a customer specific API key is required. Contact <support@dalux.com> to activate the API for your company profile if you have not done so already. The key is tied to individual API identities found in settings under API identities.  # Calling a service The documentation only provides a part of the url specified for requests, e.g.  `GET /4.0/projects`  To complete the request, you must append the API base url. The base URL is optained by contacting <support@dalux.com>. to get all projects, you would call  `{BASE_URL}/4.0/projects`  Authorization is provided by adding your API key to a header parameter called ‘X-API-KEY’  Example with curl  `curl GET '{BASE_URL}/4.0/projects' --header 'X-API-KEY: {YOUR_API_KEY}'`  # Common object model  Dalux expose a number of API's. They share an overarching object architecture which is described in a [Common object model](https://app.swaggerhub.com/apis-docs/Dalux/GettingStarted/2.0) 

This Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:

- API version: 4.12
- Package version: 1.0.0
- Build package: io.swagger.codegen.v3.generators.python.PythonClientCodegen

## Requirements.

Python 3.14+

## Installation & Usage
### pip install

```sh
pip install dalux-client
```

Then import the package:
```python
import dalux_client 
```

Then import the package:
```python
import dalux_client
```

## Getting Started

Please follow the [installation procedure](#installation--usage) and then run the following:

```python
from __future__ import print_function
import time
import dalux_client
from dalux_client.rest import ApiException
from pprint import pprint

# Configure API key authorization: ApiKeyAuth
configuration = dalux_client.Configuration()
configuration.api_key['X-API-KEY'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['X-API-KEY'] = 'Bearer'

# create an instance of the API class
api_instance = dalux_client.CompaniesApi(dalux_client.ApiClient(configuration))
project_id = 'project_id_example' # str | The ID of the project
company_id = 'company_id_example' # str | ID of the company

try:
    api_response = api_instance.get_project_company(project_id, company_id)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling CompaniesApi->get_project_company: %s\n" % e)

# Configure API key authorization: ApiKeyAuth
configuration = dalux_client.Configuration()
configuration.api_key['X-API-KEY'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['X-API-KEY'] = 'Bearer'

# create an instance of the API class
api_instance = dalux_client.CompaniesApi(dalux_client.ApiClient(configuration))
project_id = 'project_id_example' # str | The ID of the project

try:
    api_response = api_instance.list_project_companies(project_id)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling CompaniesApi->list_project_companies: %s\n" % e)

# Configure API key authorization: ApiKeyAuth
configuration = dalux_client.Configuration()
configuration.api_key['X-API-KEY'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['X-API-KEY'] = 'Bearer'

# create an instance of the API class
api_instance = dalux_client.CompaniesApi(dalux_client.ApiClient(configuration))
body = dalux_client.ProjectCompany() # ProjectCompany | Assign a valid company id from the company-catalog to the catalogCompanyId, in order to establish a link between this company and one listed in the company-catalog. Linking will import name, vatNumber and address from the corresponding company in the company-catalog. Changing the vatNumber on a linked company will unlink the company from the company-catalog.
project_id = 'project_id_example' # str | The ID of the project
company_id = 'company_id_example' # str | ID of the company

try:
    api_response = api_instance.patch_project_company(body, project_id, company_id)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling CompaniesApi->patch_project_company: %s\n" % e)

# Configure API key authorization: ApiKeyAuth
configuration = dalux_client.Configuration()
configuration.api_key['X-API-KEY'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['X-API-KEY'] = 'Bearer'

# create an instance of the API class
api_instance = dalux_client.CompaniesApi(dalux_client.ApiClient(configuration))
body = dalux_client.ProjectCompany() # ProjectCompany | Assign a valid company id from the company-catalog to the catalogCompanyId, in order to establish a link between this company and one listed in the company-catalog. Linking will import name, vatNumber and address from the corresponding company in the company-catalog. Changing the vatNumber on a linked company will unlink the company from the company-catalog.
project_id = 'project_id_example' # str | The ID of the project

try:
    api_response = api_instance.post_project_company(body, project_id)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling CompaniesApi->post_project_company: %s\n" % e)
```

## Documentation for API Endpoints

All URIs are relative to */*

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*CompaniesApi* | [**get_project_company**](docs/CompaniesApi.md#get_project_company) | **GET** /3.0/projects/{projectId}/companies/{companyId} | 
*CompaniesApi* | [**list_project_companies**](docs/CompaniesApi.md#list_project_companies) | **GET** /3.1/projects/{projectId}/companies | 
*CompaniesApi* | [**patch_project_company**](docs/CompaniesApi.md#patch_project_company) | **PATCH** /3.0/projects/{projectId}/companies/{companyId} | 
*CompaniesApi* | [**post_project_company**](docs/CompaniesApi.md#post_project_company) | **POST** /3.1/projects/{projectId}/companies | 
*CompanyCatalogApi* | [**get_companies**](docs/CompanyCatalogApi.md#get_companies) | **GET** /2.2/companyCatalog | Get companies registrered on the company-catalog
*CompanyCatalogApi* | [**get_company**](docs/CompanyCatalogApi.md#get_company) | **GET** /1.2/companyCatalog/{catalogCompanyId} | 
*CompanyCatalogApi* | [**list_company_metadata**](docs/CompanyCatalogApi.md#list_company_metadata) | **GET** /1.0/companyCatalog/{catalogCompanyId}/metadata | Get metadata of a specific company from the company-catalog
*CompanyCatalogApi* | [**list_company_metadata_mappings**](docs/CompanyCatalogApi.md#list_company_metadata_mappings) | **GET** /1.0/companyCatalog/{catalogCompanyId}/metadata/1.0/mappings | Get all metadata available for a PATCH company-catalog operation
*CompanyCatalogApi* | [**list_company_metadata_values**](docs/CompanyCatalogApi.md#list_company_metadata_values) | **GET** /1.0/companyCatalog/{catalogCompanyId}/metadata/1.0/mappings/{key}/values | Get available values for metadata in a PATCH company-catalog operation
*CompanyCatalogApi* | [**list_metadata_mappings_for_companies**](docs/CompanyCatalogApi.md#list_metadata_mappings_for_companies) | **GET** /1.0/companyCatalog/metadata/1.0/mappings | Get all metadata available for a POST company-catalog operation
*CompanyCatalogApi* | [**list_metadata_values_for_companies**](docs/CompanyCatalogApi.md#list_metadata_values_for_companies) | **GET** /1.0/companyCatalog/metadata/1.0/mappings/{key}/values | Get available values for metadata in a POST company-catalog operation
*CompanyCatalogApi* | [**patch_company**](docs/CompanyCatalogApi.md#patch_company) | **PATCH** /2.1/companyCatalog/{catalogCompanyId} | 
*CompanyCatalogApi* | [**post_company**](docs/CompanyCatalogApi.md#post_company) | **POST** /2.2/companyCatalog | 
*FileAreasApi* | [**getfilearea**](docs/FileAreasApi.md#getfilearea) | **GET** /1.0/projects/{projectId}/file_areas/{fileAreaId} | Retrieve a specific file area
*FileAreasApi* | [**getfileareas**](docs/FileAreasApi.md#getfileareas) | **GET** /5.1/projects/{projectId}/file_areas | Retrieve the file areas on the given project
*FileRevisionsApi* | [**get_file_revision_content**](docs/FileRevisionsApi.md#get_file_revision_content) | **GET** /2.0/projects/{projectId}/file_areas/{fileAreaId}/files/{fileId}/revisions/{fileRevisionId}/content | Retrieve content of a specific revision
*FileUploadApi* | [**create_upload**](docs/FileUploadApi.md#create_upload) | **POST** /1.0/projects/{projectId}/file_areas/{fileAreaId}/upload | Create a new upload slot and return a GUID pointing to that slot
*FileUploadApi* | [**finish_upload**](docs/FileUploadApi.md#finish_upload) | **POST** /2.0/projects/{projectId}/file_areas/{fileAreaId}/upload/{uploadGuid}/finalize | Finish uploading a file
*FileUploadApi* | [**upload_file_part**](docs/FileUploadApi.md#upload_file_part) | **POST** /1.0/projects/{projectId}/file_areas/{fileAreaId}/upload/{uploadGuid} | Upload a part of a file
*FilesApi* | [**get_file_properties_mapping**](docs/FilesApi.md#get_file_properties_mapping) | **GET** /1.0/projects/{projectId}/file_areas/{fileAreaId}/files/{fileId}/properties/1.0/mappings | Retrieve properties mapping for a specific file.
*FilesApi* | [**get_file_property_mapping_values**](docs/FilesApi.md#get_file_property_mapping_values) | **GET** /1.0/projects/{projectId}/file_areas/{fileAreaId}/files/properties/1.0/mappings/{filePropertyId}/values | Retrieve valid property values for a specific file property mapping
*FilesApi* | [**getfile**](docs/FilesApi.md#getfile) | **GET** /5.0/projects/{projectId}/file_areas/{fileAreaId}/files/{fileId} | Retrieve a specific file
*FilesApi* | [**list_files**](docs/FilesApi.md#list_files) | **GET** /6.0/projects/{projectId}/file_areas/{fileAreaId}/files | Browse all files on the given project
*FoldersApi* | [**get_folder**](docs/FoldersApi.md#get_folder) | **GET** /5.0/projects/{projectId}/file_areas/{fileAreaId}/folders/{folderId} | Retrieve a specific folder
*FoldersApi* | [**get_folder_files_properties**](docs/FoldersApi.md#get_folder_files_properties) | **GET** /1.0/projects/{projectId}/file_areas/{fileAreaId}/folders/{folderId}/files/properties/1.0/mappings | Retrieve all properties for each file type in a specific folder
*FoldersApi* | [**list_folders**](docs/FoldersApi.md#list_folders) | **GET** /5.1/projects/{projectId}/file_areas/{fileAreaId}/folders | Browse all folders on the given project
*FormsApi* | [**get_form**](docs/FormsApi.md#get_form) | **GET** /1.2/projects/{projectId}/forms/{formId} | Retrieve a specific form
*FormsApi* | [**get_project_form_attachments**](docs/FormsApi.md#get_project_form_attachments) | **GET** /2.1/projects/{projectId}/forms/attachments | Retrieve attachments on forms on a project in incremental updates
*FormsApi* | [**get_project_forms**](docs/FormsApi.md#get_project_forms) | **GET** /2.1/projects/{projectId}/forms | Retrieve forms on a project
*InspectionPlansApi* | [**list_inspection_plan_item_zones**](docs/InspectionPlansApi.md#list_inspection_plan_item_zones) | **GET** /1.1/projects/{projectId}/inspectionPlanItemZones | Browse all inspection plan item zones on the given project
*InspectionPlansApi* | [**list_inspection_plan_items**](docs/InspectionPlansApi.md#list_inspection_plan_items) | **GET** /1.1/projects/{projectId}/inspectionPlanItems | Browse all inspection plan items on the given project
*InspectionPlansApi* | [**list_inspection_plan_registrations**](docs/InspectionPlansApi.md#list_inspection_plan_registrations) | **GET** /2.1/projects/{projectId}/inspectionPlanRegistrations | Browse all inspection plan registrations on the given project, excluding planned registrations
*InspectionPlansApi* | [**list_inspection_plans**](docs/InspectionPlansApi.md#list_inspection_plans) | **GET** /1.2/projects/{projectId}/inspectionPlans | Browse all inspection plans on the given project
*ProjectTemplatesApi* | [**list_project_templates**](docs/ProjectTemplatesApi.md#list_project_templates) | **GET** /1.1/projectTemplates | Get all available project templates on the company profile
*ProjectsApi* | [**get_project**](docs/ProjectsApi.md#get_project) | **GET** /5.0/projects/{projectId} | Get a specific project
*ProjectsApi* | [**list_metadata_mappings_for_projects**](docs/ProjectsApi.md#list_metadata_mappings_for_projects) | **GET** /1.0/projects/metadata/1.0/mappings | Get all metadata available for POST project operations
*ProjectsApi* | [**list_metadata_values_for_projects**](docs/ProjectsApi.md#list_metadata_values_for_projects) | **GET** /1.0/projects/metadata/1.0/mappings/{key}/values | Get available values for metadata in POST project operation
*ProjectsApi* | [**list_project_metadata**](docs/ProjectsApi.md#list_project_metadata) | **GET** /1.0/projects/{projectId}/metadata | Get metadata of a specific project
*ProjectsApi* | [**list_project_metadata_mappings**](docs/ProjectsApi.md#list_project_metadata_mappings) | **GET** /1.0/projects/{projectId}/metadata/1.0/mappings | Get all metadata available for PATCH project operations
*ProjectsApi* | [**list_project_metadata_values**](docs/ProjectsApi.md#list_project_metadata_values) | **GET** /1.0/projects/{projectId}/metadata/1.0/mappings/{key}/values | Get available values for metadata in PATCH project operation
*ProjectsApi* | [**list_projects**](docs/ProjectsApi.md#list_projects) | **GET** /5.1/projects | Get all available projects
*ProjectsApi* | [**patch_project**](docs/ProjectsApi.md#patch_project) | **PATCH** /5.0/projects/{projectId} | update a project
*ProjectsApi* | [**post_project**](docs/ProjectsApi.md#post_project) | **POST** /5.0/projects | Create a new project
*TasksApi* | [**get_project_task_attachments**](docs/TasksApi.md#get_project_task_attachments) | **GET** /1.1/projects/{projectId}/tasks/attachments | Retrieve attachments on tasks on a project
*TasksApi* | [**get_project_task_changes**](docs/TasksApi.md#get_project_task_changes) | **GET** /2.2/projects/{projectId}/tasks/changes | Retrieve task, approval, safety issue, safety observation and good practice changes on a project
*TasksApi* | [**get_project_tasks**](docs/TasksApi.md#get_project_tasks) | **GET** /5.1/projects/{projectId}/tasks | Retrieve tasks, approvals, safety issues, safety observations and good practices on a project
*TasksApi* | [**get_task**](docs/TasksApi.md#get_task) | **GET** /3.3/projects/{projectId}/tasks/{taskId} | Retrieve a specific task/approval/safety issue/safety observation/good practice
*TestPlansApi* | [**list_test_plan_item_zones**](docs/TestPlansApi.md#list_test_plan_item_zones) | **GET** /1.1/projects/{projectId}/testPlanItemZones | Browse all test plan item zones on the given project
*TestPlansApi* | [**list_test_plan_items**](docs/TestPlansApi.md#list_test_plan_items) | **GET** /1.1/projects/{projectId}/testPlanItems | Browse all test plan items on the given project
*TestPlansApi* | [**list_test_plan_registrations**](docs/TestPlansApi.md#list_test_plan_registrations) | **GET** /1.1/projects/{projectId}/testPlanRegistrations | Browse all test plan registrations on the given project, excluding planned registrations
*TestPlansApi* | [**list_test_plans**](docs/TestPlansApi.md#list_test_plans) | **GET** /1.2/projects/{projectId}/testPlans | Browse all test plans on the given project
*UsersApi* | [**get_project_user**](docs/UsersApi.md#get_project_user) | **GET** /1.1/projects/{projectId}/users/{userId} | Get user on project
*UsersApi* | [**get_user**](docs/UsersApi.md#get_user) | **GET** /1.1/users/{userId} | Get a specific user
*UsersApi* | [**list_project_users**](docs/UsersApi.md#list_project_users) | **GET** /1.2/projects/{projectId}/users | Get users on project
*VersionSetsApi* | [**get_version_set**](docs/VersionSetsApi.md#get_version_set) | **GET** /2.0/projects/{projectId}/version_sets/{versionSetId} | Retrieve a specific version set
*VersionSetsApi* | [**get_version_sets**](docs/VersionSetsApi.md#get_version_sets) | **GET** /2.1/projects/{projectId}/version_sets | Retrieve the version sets on the given project
*VersionSetsApi* | [**list_file_area_sersion_sets**](docs/VersionSetsApi.md#list_file_area_sersion_sets) | **GET** /2.1/projects/{projectId}/file_areas/{fileAreaId}/version_sets | Browse all version sets on the given file area and project
*VersionSetsApi* | [**list_version_set_files**](docs/VersionSetsApi.md#list_version_set_files) | **GET** /3.0/projects/{projectId}/version_sets/{versionSetId}/files | Browse all files on the given project and given version set
*WorkPackagesApi* | [**list_workpackages**](docs/WorkPackagesApi.md#list_workpackages) | **GET** /1.0/projects/{projectId}/workpackages | Browse all work packages on the given project

## Documentation For Models

 - [ApiTaskGet](docs/ApiTaskGet.md)
 - [BIMObject](docs/BIMObject.md)
 - [BasicFieldMapping](docs/BasicFieldMapping.md)
 - [BuildingReference](docs/BuildingReference.md)
 - [CatalogCompanyMetadata](docs/CatalogCompanyMetadata.md)
 - [CatalogCompanyMetadataFieldValue](docs/CatalogCompanyMetadataFieldValue.md)
 - [CatalogueCompany](docs/CatalogueCompany.md)
 - [Coordinate3D](docs/Coordinate3D.md)
 - [DateChange](docs/DateChange.md)
 - [DateMappingValue](docs/DateMappingValue.md)
 - [DateTimeMappingValue](docs/DateTimeMappingValue.md)
 - [DrawingReference](docs/DrawingReference.md)
 - [ErrorField](docs/ErrorField.md)
 - [ErrorModel](docs/ErrorModel.md)
 - [File](docs/File.md)
 - [FileArea](docs/FileArea.md)
 - [FileDateProperty](docs/FileDateProperty.md)
 - [FileIntegerProperty](docs/FileIntegerProperty.md)
 - [FilePropertyField](docs/FilePropertyField.md)
 - [FilePropertyMapping](docs/FilePropertyMapping.md)
 - [FileReferenceProperty](docs/FileReferenceProperty.md)
 - [FileTextProperty](docs/FileTextProperty.md)
 - [Folder](docs/Folder.md)
 - [Form](docs/Form.md)
 - [FormAttachment](docs/FormAttachment.md)
 - [FormAttachmentRelation](docs/FormAttachmentRelation.md)
 - [FormAttachmentRelationUserDefinedField](docs/FormAttachmentRelationUserDefinedField.md)
 - [FormUserDefinedFields](docs/FormUserDefinedFields.md)
 - [FormUserFieldRelation](docs/FormUserFieldRelation.md)
 - [Gps](docs/Gps.md)
 - [InlineResponse200](docs/InlineResponse200.md)
 - [InlineResponse2001](docs/InlineResponse2001.md)
 - [InlineResponse20010](docs/InlineResponse20010.md)
 - [InlineResponse20011](docs/InlineResponse20011.md)
 - [InlineResponse20012](docs/InlineResponse20012.md)
 - [InlineResponse20012Items](docs/InlineResponse20012Items.md)
 - [InlineResponse20013](docs/InlineResponse20013.md)
 - [InlineResponse20014](docs/InlineResponse20014.md)
 - [InlineResponse20014Items](docs/InlineResponse20014Items.md)
 - [InlineResponse20015](docs/InlineResponse20015.md)
 - [InlineResponse20016](docs/InlineResponse20016.md)
 - [InlineResponse20017](docs/InlineResponse20017.md)
 - [InlineResponse20017Items](docs/InlineResponse20017Items.md)
 - [InlineResponse20018](docs/InlineResponse20018.md)
 - [InlineResponse20019](docs/InlineResponse20019.md)
 - [InlineResponse20019Items](docs/InlineResponse20019Items.md)
 - [InlineResponse2002](docs/InlineResponse2002.md)
 - [InlineResponse20020](docs/InlineResponse20020.md)
 - [InlineResponse20020Metadata](docs/InlineResponse20020Metadata.md)
 - [InlineResponse20021](docs/InlineResponse20021.md)
 - [InlineResponse20022](docs/InlineResponse20022.md)
 - [InlineResponse20023](docs/InlineResponse20023.md)
 - [InlineResponse20024](docs/InlineResponse20024.md)
 - [InlineResponse20025](docs/InlineResponse20025.md)
 - [InlineResponse20026](docs/InlineResponse20026.md)
 - [InlineResponse20027](docs/InlineResponse20027.md)
 - [InlineResponse20028](docs/InlineResponse20028.md)
 - [InlineResponse20029](docs/InlineResponse20029.md)
 - [InlineResponse2003](docs/InlineResponse2003.md)
 - [InlineResponse20030](docs/InlineResponse20030.md)
 - [InlineResponse20031](docs/InlineResponse20031.md)
 - [InlineResponse20031Items](docs/InlineResponse20031Items.md)
 - [InlineResponse20032](docs/InlineResponse20032.md)
 - [InlineResponse20033](docs/InlineResponse20033.md)
 - [InlineResponse20034](docs/InlineResponse20034.md)
 - [InlineResponse20034Items](docs/InlineResponse20034Items.md)
 - [InlineResponse20035](docs/InlineResponse20035.md)
 - [InlineResponse20036](docs/InlineResponse20036.md)
 - [InlineResponse20037](docs/InlineResponse20037.md)
 - [InlineResponse20038](docs/InlineResponse20038.md)
 - [InlineResponse20038Items](docs/InlineResponse20038Items.md)
 - [InlineResponse20039](docs/InlineResponse20039.md)
 - [InlineResponse2004](docs/InlineResponse2004.md)
 - [InlineResponse20040](docs/InlineResponse20040.md)
 - [InlineResponse20041](docs/InlineResponse20041.md)
 - [InlineResponse2004Items](docs/InlineResponse2004Items.md)
 - [InlineResponse2005](docs/InlineResponse2005.md)
 - [InlineResponse2006](docs/InlineResponse2006.md)
 - [InlineResponse2007](docs/InlineResponse2007.md)
 - [InlineResponse2008](docs/InlineResponse2008.md)
 - [InlineResponse2009](docs/InlineResponse2009.md)
 - [InlineResponse200Items](docs/InlineResponse200Items.md)
 - [InlineResponse201](docs/InlineResponse201.md)
 - [InspectionPlan](docs/InspectionPlan.md)
 - [InspectionPlanItem](docs/InspectionPlanItem.md)
 - [InspectionPlanItemRelation](docs/InspectionPlanItemRelation.md)
 - [InspectionPlanItemZone](docs/InspectionPlanItemZone.md)
 - [InspectionPlanRegistration](docs/InspectionPlanRegistration.md)
 - [IntegerMappingValue](docs/IntegerMappingValue.md)
 - [LevelReference](docs/LevelReference.md)
 - [Link](docs/Link.md)
 - [ListReferenceMappingValue](docs/ListReferenceMappingValue.md)
 - [ListReferenceMappingValueReference](docs/ListReferenceMappingValueReference.md)
 - [ListResponse](docs/ListResponse.md)
 - [Location](docs/Location.md)
 - [LocationChange](docs/LocationChange.md)
 - [LocationCoordinate](docs/LocationCoordinate.md)
 - [MappingObject](docs/MappingObject.md)
 - [MappingValue](docs/MappingValue.md)
 - [MediaFile](docs/MediaFile.md)
 - [ObjectReference](docs/ObjectReference.md)
 - [ObjectResponse](docs/ObjectResponse.md)
 - [OneOfFilePropertyFieldValuesItems](docs/OneOfFilePropertyFieldValuesItems.md)
 - [PatchCatalogueCompany](docs/PatchCatalogueCompany.md)
 - [PatchProject](docs/PatchProject.md)
 - [PlanBase](docs/PlanBase.md)
 - [PlanItemBase](docs/PlanItemBase.md)
 - [PlanItemZoneBase](docs/PlanItemZoneBase.md)
 - [PlanRegistrationBase](docs/PlanRegistrationBase.md)
 - [PostCatalogueCompany](docs/PostCatalogueCompany.md)
 - [PostProject](docs/PostProject.md)
 - [Project](docs/Project.md)
 - [ProjectCompany](docs/ProjectCompany.md)
 - [ProjectMetadata](docs/ProjectMetadata.md)
 - [ProjectMetadataFieldValue](docs/ProjectMetadataFieldValue.md)
 - [ProjectModule](docs/ProjectModule.md)
 - [ProjectTemplate](docs/ProjectTemplate.md)
 - [ProjectUser](docs/ProjectUser.md)
 - [Reference](docs/Reference.md)
 - [Response](docs/Response.md)
 - [RoleRelation](docs/RoleRelation.md)
 - [RoomReference](docs/RoomReference.md)
 - [TaskAttachmentRelation](docs/TaskAttachmentRelation.md)
 - [TaskChangeFields](docs/TaskChangeFields.md)
 - [TaskChanges](docs/TaskChanges.md)
 - [TaskTypeReference](docs/TaskTypeReference.md)
 - [TemplateReference](docs/TemplateReference.md)
 - [TestPlan](docs/TestPlan.md)
 - [TestPlanItem](docs/TestPlanItem.md)
 - [TestPlanItemRelation](docs/TestPlanItemRelation.md)
 - [TestPlanItemZone](docs/TestPlanItemZone.md)
 - [TestPlanRegistration](docs/TestPlanRegistration.md)
 - [TextMappingValue](docs/TextMappingValue.md)
 - [TotalItemsMetadata](docs/TotalItemsMetadata.md)
 - [TotalItemsMetadataMetadata](docs/TotalItemsMetadataMetadata.md)
 - [TotalRemainingItemsMetadata](docs/TotalRemainingItemsMetadata.md)
 - [TotalRemainingItemsMetadataMetadata](docs/TotalRemainingItemsMetadataMetadata.md)
 - [UploadGuid](docs/UploadGuid.md)
 - [UploadGuidFinalizeBody](docs/UploadGuidFinalizeBody.md)
 - [User](docs/User.md)
 - [UserDefinedField](docs/UserDefinedField.md)
 - [UserFieldValue](docs/UserFieldValue.md)
 - [UserRelation](docs/UserRelation.md)
 - [VersionSet](docs/VersionSet.md)
 - [WorkflowReference](docs/WorkflowReference.md)
 - [Workpackage](docs/Workpackage.md)
 - [ZoneLayerReference](docs/ZoneLayerReference.md)
 - [ZoneReference](docs/ZoneReference.md)
 - [ZoneSelection](docs/ZoneSelection.md)

## Documentation For Authorization


## ApiKeyAuth

- **Type**: API key
- **API key parameter name**: X-API-KEY
- **Location**: HTTP header


## Author

support@dalux.com
