# @verys/oracle-sdk

> JavaScript SDK for interfacing with the Oracle API

Latest version **1.97.0** (published 2022-12-04) · MIT license · 0 weekly downloads

## Install

```sh
npm install @verys/oracle-sdk
pnpm add @verys/oracle-sdk
yarn add @verys/oracle-sdk
bun add @verys/oracle-sdk
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.97.0 |
| Published | 2022-12-04 |
| First published | 2018-09-17 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 4 MB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | john-verys, lucasc-verys |

## Links

- npm: https://www.npmjs.com/package/@verys/oracle-sdk
- npm.io page: https://npm.io/package/@verys/oracle-sdk

## Dependencies (2)

- [@babel/cli](https://npm.io/package/@babel/cli.md) ^7.0.0
- [superagent](https://npm.io/package/superagent.md) 3.7.0

## Recent versions

- 1.97.0 (latest) — 2022-12-04
- 1.106.0-beta.0 (next) — 2024-06-12
- 2.7.0-beta.0 (wmnext) — 2023-03-10
- 1.105.0-beta.0 — 2024-03-21
- 1.104.0-beta.0 — 2023-12-21
- 1.103.0-beta.0 — 2023-11-11
- 1.102.0-beta.0 — 2023-11-11
- 1.101.0-beta.0 — 2023-09-13
- 1.100.0-beta.0 — 2023-06-02
- 1.99.0-beta.0 — 2023-06-02
- 2.6.0-beta.0 — 2023-02-22
- 2.5.0-beta.0 — 2023-01-20
- 1.98.0-beta.0 — 2022-12-04
- 1.97.0-beta.0 — 2022-12-04
- 1.96.0-beta.0 — 2022-11-21
- … 151 more at https://npm.io/package/@verys/oracle-sdk/versions

## README

# @verys/oracle-sdk

@VerysOracleSdk - JavaScript client for @verys/oracle-sdk
Oracle API
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: 1.0.0
- Package version: 1.97.0
- Build package: org.openapitools.codegen.languages.JavascriptClientCodegen

## Installation

### For [Node.js](https://nodejs.org/)

#### npm

To publish the library as a [npm](https://www.npmjs.com/), please follow the procedure in ["Publishing npm packages"](https://docs.npmjs.com/getting-started/publishing-npm-packages).

Then install it via:

```shell
npm install @verys/oracle-sdk --save
```

Finally, you need to build the module:

```shell
npm run build
```

##### Local development

To use the library locally without publishing to a remote npm registry, first install the dependencies by changing into the directory containing `package.json` (and this README). Let's call this `JAVASCRIPT_CLIENT_DIR`. Then run:

```shell
npm install
```

Next, [link](https://docs.npmjs.com/cli/link) it globally in npm with the following, also from `JAVASCRIPT_CLIENT_DIR`:

```shell
npm link
```

To use the link you just defined in your project, switch to the directory you want to use your @verys/oracle-sdk from, and run:

```shell
npm link /path/to/<JAVASCRIPT_CLIENT_DIR>
```

Finally, you need to build the module:

```shell
npm run build
```

#### git

If the library is hosted at a git repository, e.g.https://github.com/GIT_USER_ID/GIT_REPO_ID
then install it via:

```shell
    npm install GIT_USER_ID/GIT_REPO_ID --save
```

### For browser

The library also works in the browser environment via npm and [browserify](http://browserify.org/). After following
the above steps with Node.js and installing browserify with `npm install -g browserify`,
perform the following (assuming *main.js* is your entry file):

```shell
browserify main.js > bundle.js
```

Then include *bundle.js* in the HTML pages.

### Webpack Configuration

Using Webpack you may encounter the following error: "Module not found: Error:
Cannot resolve module", most certainly you should disable AMD loader. Add/merge
the following section to your webpack config:

```javascript
module: {
  rules: [
    {
      parser: {
        amd: false
      }
    }
  ]
}
```

## Getting Started

Please follow the [installation](#installation) instruction and execute the following JS code:

```javascript
var @VerysOracleSdk = require('@verys/oracle-sdk');

var defaultClient = @VerysOracleSdk.ApiClient.instance;
// Configure Bearer (JWT) access token for authorization: http_jwt
var http_jwt = defaultClient.authentications['http_jwt'];
http_jwt.accessToken = "YOUR ACCESS TOKEN"

var api = new @VerysOracleSdk.AptitudesApi()
var aptitudesCreateModel = new @VerysOracleSdk.AptitudesCreateModel(); // {AptitudesCreateModel} An aptitudes resource object to create
api.createAptitudes(aptitudesCreateModel).then(function(data) {
  console.log('API called successfully. Returned data: ' + data);
}, function(error) {
  console.error(error);
});


```

## Documentation for API Endpoints

All URIs are relative to *http://localhost:3001/v1*

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*@VerysOracleSdk.AptitudesApi* | [**createAptitudes**](docs/AptitudesApi.md#createAptitudes) | **POST** /aptitudes | Create a new &#x60;aptitudes&#x60; resource
*@VerysOracleSdk.AptitudesApi* | [**getAptitudes**](docs/AptitudesApi.md#getAptitudes) | **GET** /aptitudes | Get all aptitudes
*@VerysOracleSdk.AptitudesApi* | [**getAptitudesById**](docs/AptitudesApi.md#getAptitudesById) | **GET** /aptitudes/{id} | Get an &#x60;aptitudes&#x60; resource
*@VerysOracleSdk.AptitudesApi* | [**updateAptitudesById**](docs/AptitudesApi.md#updateAptitudesById) | **PATCH** /aptitudes/{id} | Update a specific &#x60;aptitudes&#x60; resource
*@VerysOracleSdk.BigTimeApi* | [**bigTimeImport**](docs/BigTimeApi.md#bigTimeImport) | **POST** /bigtime/import | Import time entries, clients, projects, and users from BigTime
*@VerysOracleSdk.BusinessUnitsApi* | [**createBusinessUnit**](docs/BusinessUnitsApi.md#createBusinessUnit) | **POST** /business-units | Create a new &#x60;business-unit&#x60; resource
*@VerysOracleSdk.BusinessUnitsApi* | [**deleteBusinessUnitById**](docs/BusinessUnitsApi.md#deleteBusinessUnitById) | **DELETE** /business-units/{id} | Delete a &#x60;business-unit&#x60; resource by its ID
*@VerysOracleSdk.BusinessUnitsApi* | [**getBusinessUnitById**](docs/BusinessUnitsApi.md#getBusinessUnitById) | **GET** /business-units/{id} | Get a &#x60;business-unit&#x60; resource
*@VerysOracleSdk.BusinessUnitsApi* | [**getBusinessUnits**](docs/BusinessUnitsApi.md#getBusinessUnits) | **GET** /business-units | Get all &#x60;business-unit&#x60; resources
*@VerysOracleSdk.BusinessUnitsApi* | [**updateBusinessUnitById**](docs/BusinessUnitsApi.md#updateBusinessUnitById) | **PATCH** /business-units/{id} | Update a specific &#x60;business-unit&#x60; resource
*@VerysOracleSdk.CandidatesApi* | [**createCandidate**](docs/CandidatesApi.md#createCandidate) | **POST** /candidates | Create a new &#x60;candidates&#x60;
*@VerysOracleSdk.CandidatesApi* | [**deleteCandidatesById**](docs/CandidatesApi.md#deleteCandidatesById) | **DELETE** /candidates/{id} | Delete a &#x60;candidates&#x60; resource by it&#39;s ID
*@VerysOracleSdk.CandidatesApi* | [**getCandidates**](docs/CandidatesApi.md#getCandidates) | **GET** /candidates | Fetch &#x60;candidates&#x60;
*@VerysOracleSdk.CandidatesApi* | [**getCandidatesById**](docs/CandidatesApi.md#getCandidatesById) | **GET** /candidates/{id} | Get a &#x60;candidates&#x60; resource
*@VerysOracleSdk.CandidatesApi* | [**getCandidatesByProjectRolesById**](docs/CandidatesApi.md#getCandidatesByProjectRolesById) | **GET** /project-roles/{id}/candidates | Fetch &#x60;candidates&#x60; for &#x60;project roles&#x60; resource
*@VerysOracleSdk.CandidatesApi* | [**updateCandidatesById**](docs/CandidatesApi.md#updateCandidatesById) | **PATCH** /candidates/{id} | Update a specific &#x60;candidates&#x60; resource
*@VerysOracleSdk.CertificationAuthoritiesApi* | [**createCertificationAuthority**](docs/CertificationAuthoritiesApi.md#createCertificationAuthority) | **POST** /certification-authorities | Create a new certification-authorities
*@VerysOracleSdk.CertificationAuthoritiesApi* | [**deleteCertificationAuthoritiesById**](docs/CertificationAuthoritiesApi.md#deleteCertificationAuthoritiesById) | **DELETE** /certification-authorities/{id} | Delete a &#x60;certification-authorities&#x60; resource by it&#39;s ID
*@VerysOracleSdk.CertificationAuthoritiesApi* | [**getCertificationAuthorities**](docs/CertificationAuthoritiesApi.md#getCertificationAuthorities) | **GET** /certification-authorities | Get all &#x60;certification-authorities&#x60;
*@VerysOracleSdk.CertificationAuthoritiesApi* | [**getCertificationAuthoritiesById**](docs/CertificationAuthoritiesApi.md#getCertificationAuthoritiesById) | **GET** /certification-authorities/{id} | Get a &#x60;certification-authorities&#x60; resource
*@VerysOracleSdk.CertificationAuthoritiesApi* | [**updateCertificationAuthoritiesById**](docs/CertificationAuthoritiesApi.md#updateCertificationAuthoritiesById) | **PATCH** /certification-authorities/{id} | Update a specific certification-authorities resource
*@VerysOracleSdk.CertificationNamesApi* | [**createCertificationName**](docs/CertificationNamesApi.md#createCertificationName) | **POST** /certification-names | Create a new certification-names
*@VerysOracleSdk.CertificationNamesApi* | [**deleteCertificationNamesById**](docs/CertificationNamesApi.md#deleteCertificationNamesById) | **DELETE** /certification-names/{id} | Delete a &#x60;certification-names&#x60; resource by it&#39;s ID
*@VerysOracleSdk.CertificationNamesApi* | [**getCertificationNames**](docs/CertificationNamesApi.md#getCertificationNames) | **GET** /certification-names | Get all &#x60;certification-names&#x60;
*@VerysOracleSdk.CertificationNamesApi* | [**getCertificationNamesById**](docs/CertificationNamesApi.md#getCertificationNamesById) | **GET** /certification-names/{id} | Get a &#x60;certification-names&#x60; resource
*@VerysOracleSdk.CertificationNamesApi* | [**updateCertificationNamesById**](docs/CertificationNamesApi.md#updateCertificationNamesById) | **PATCH** /certification-names/{id} | Update a specific certification-names resource
*@VerysOracleSdk.CertificationsApi* | [**createCertification**](docs/CertificationsApi.md#createCertification) | **POST** /certifications | Create a new certifications
*@VerysOracleSdk.CertificationsApi* | [**createCertificationAuthority**](docs/CertificationsApi.md#createCertificationAuthority) | **POST** /certification-authorities | Create a new certification-authorities
*@VerysOracleSdk.CertificationsApi* | [**createCertificationName**](docs/CertificationsApi.md#createCertificationName) | **POST** /certification-names | Create a new certification-names
*@VerysOracleSdk.CertificationsApi* | [**createMyCertification**](docs/CertificationsApi.md#createMyCertification) | **POST** /my/certifications | Create a new &#x60;certifications&#x60; resource
*@VerysOracleSdk.CertificationsApi* | [**deleteCertificationAuthoritiesById**](docs/CertificationsApi.md#deleteCertificationAuthoritiesById) | **DELETE** /certification-authorities/{id} | Delete a &#x60;certification-authorities&#x60; resource by it&#39;s ID
*@VerysOracleSdk.CertificationsApi* | [**deleteCertificationNamesById**](docs/CertificationsApi.md#deleteCertificationNamesById) | **DELETE** /certification-names/{id} | Delete a &#x60;certification-names&#x60; resource by it&#39;s ID
*@VerysOracleSdk.CertificationsApi* | [**deleteCertificationsById**](docs/CertificationsApi.md#deleteCertificationsById) | **DELETE** /certifications/{id} | Delete a &#x60;certifications&#x60; resource by it&#39;s ID
*@VerysOracleSdk.CertificationsApi* | [**deleteMyCertificationsById**](docs/CertificationsApi.md#deleteMyCertificationsById) | **DELETE** /my/certifications/{id} | Delete a &#x60;certifications&#x60; resource by it&#39;s ID
*@VerysOracleSdk.CertificationsApi* | [**getCertificationAuthorities**](docs/CertificationsApi.md#getCertificationAuthorities) | **GET** /certification-authorities | Get all &#x60;certification-authorities&#x60;
*@VerysOracleSdk.CertificationsApi* | [**getCertificationAuthoritiesById**](docs/CertificationsApi.md#getCertificationAuthoritiesById) | **GET** /certification-authorities/{id} | Get a &#x60;certification-authorities&#x60; resource
*@VerysOracleSdk.CertificationsApi* | [**getCertificationNames**](docs/CertificationsApi.md#getCertificationNames) | **GET** /certification-names | Get all &#x60;certification-names&#x60;
*@VerysOracleSdk.CertificationsApi* | [**getCertificationNamesById**](docs/CertificationsApi.md#getCertificationNamesById) | **GET** /certification-names/{id} | Get a &#x60;certification-names&#x60; resource
*@VerysOracleSdk.CertificationsApi* | [**getCertifications**](docs/CertificationsApi.md#getCertifications) | **GET** /certifications | Get all &#x60;certifications&#x60;
*@VerysOracleSdk.CertificationsApi* | [**getCertificationsById**](docs/CertificationsApi.md#getCertificationsById) | **GET** /certifications/{id} | Get a &#x60;certifications&#x60; resource
*@VerysOracleSdk.CertificationsApi* | [**getMyCertifications**](docs/CertificationsApi.md#getMyCertifications) | **GET** /my/certifications | Get all my &#x60;certifications&#x60;
*@VerysOracleSdk.CertificationsApi* | [**getMyCertificationsById**](docs/CertificationsApi.md#getMyCertificationsById) | **GET** /my/certifications/{id} | Get my &#x60;certifications&#x60; resource
*@VerysOracleSdk.CertificationsApi* | [**updateCertificationAuthoritiesById**](docs/CertificationsApi.md#updateCertificationAuthoritiesById) | **PATCH** /certification-authorities/{id} | Update a specific certification-authorities resource
*@VerysOracleSdk.CertificationsApi* | [**updateCertificationNamesById**](docs/CertificationsApi.md#updateCertificationNamesById) | **PATCH** /certification-names/{id} | Update a specific certification-names resource
*@VerysOracleSdk.CertificationsApi* | [**updateCertificationsById**](docs/CertificationsApi.md#updateCertificationsById) | **PATCH** /certifications/{id} | Update a specific certifications resource
*@VerysOracleSdk.CertificationsApi* | [**updateMyCertificationsById**](docs/CertificationsApi.md#updateMyCertificationsById) | **PATCH** /my/certifications/{id} | Update a specific certifications resource
*@VerysOracleSdk.ChartsApi* | [**getCharts**](docs/ChartsApi.md#getCharts) | **GET** /charts | Gets a list of chart resources
*@VerysOracleSdk.ChartsApi* | [**getChartsById**](docs/ChartsApi.md#getChartsById) | **GET** /charts/{id} | Gets charts resource for the given ID
*@VerysOracleSdk.ChartsApi* | [**getMyChartsById**](docs/ChartsApi.md#getMyChartsById) | **GET** /my/charts/{id} | Gets charts resource for the currently authenticated employee
*@VerysOracleSdk.CompaniesApi* | [**createCompanies**](docs/CompaniesApi.md#createCompanies) | **POST** /companies | Create a new &#x60;companies&#x60; resource
*@VerysOracleSdk.CompaniesApi* | [**getCompanies**](docs/CompaniesApi.md#getCompanies) | **GET** /companies | Get all companies resources
*@VerysOracleSdk.CompaniesApi* | [**getCompaniesById**](docs/CompaniesApi.md#getCompaniesById) | **GET** /companies/{id} | Get a &#x60;companies&#x60; resource
*@VerysOracleSdk.CompaniesApi* | [**updateCompaniesById**](docs/CompaniesApi.md#updateCompaniesById) | **PATCH** /companies/{id} | Update a specific company resource
*@VerysOracleSdk.CompanyLocationsApi* | [**createCompanyLocations**](docs/CompanyLocationsApi.md#createCompanyLocations) | **POST** /company-locations | Create a new company location
*@VerysOracleSdk.CompanyLocationsApi* | [**deleteCompanyLocationsById**](docs/CompanyLocationsApi.md#deleteCompanyLocationsById) | **DELETE** /company-locations/{id} | Delete a &#x60;company locations&#x60; resource by it&#39;s ID
*@VerysOracleSdk.CompanyLocationsApi* | [**getCompanyLocations**](docs/CompanyLocationsApi.md#getCompanyLocations) | **GET** /company-locations | Get all &#x60;company locations&#x60; resources
*@VerysOracleSdk.CompanyLocationsApi* | [**getCompanyLocationsById**](docs/CompanyLocationsApi.md#getCompanyLocationsById) | **GET** /company-locations/{id} | Get a &#x60;company locations&#x60; resource by it&#39;s ID
*@VerysOracleSdk.CompanyLocationsApi* | [**updateCompanyLocationsById**](docs/CompanyLocationsApi.md#updateCompanyLocationsById) | **PATCH** /company-locations/{id} | Update a &#x60;company locations&#x60; resource by it&#39;s ID
*@VerysOracleSdk.EmployeeAllocationTotalsApi* | [**getEmployeeAllocationTotals**](docs/EmployeeAllocationTotalsApi.md#getEmployeeAllocationTotals) | **GET** /employee-allocation-totals | Get all employee allocation totals
*@VerysOracleSdk.EmployeeAllocationTotalsApi* | [**getEmployeeAllocationTotalsById**](docs/EmployeeAllocationTotalsApi.md#getEmployeeAllocationTotalsById) | **GET** /employee-allocation-totals/{id} | Get employee allocation totals
*@VerysOracleSdk.EmployeeInterestsApi* | [**createEmployeeInterests**](docs/EmployeeInterestsApi.md#createEmployeeInterests) | **POST** /employee-interests | Create a new employee interest
*@VerysOracleSdk.EmployeeInterestsApi* | [**deleteEmployeeInterestsById**](docs/EmployeeInterestsApi.md#deleteEmployeeInterestsById) | **DELETE** /employee-interests/{id} | Delete a specific employee interest by it&#39;s ID
*@VerysOracleSdk.EmployeeInterestsApi* | [**getEmployeeInterests**](docs/EmployeeInterestsApi.md#getEmployeeInterests) | **GET** /employee-interests | Get all &#x60;employee-interests&#x60;
*@VerysOracleSdk.EmployeeInterestsApi* | [**getEmployeeInterestsById**](docs/EmployeeInterestsApi.md#getEmployeeInterestsById) | **GET** /employee-interests/{id} | Get a &#x60;employee-interests&#x60; resource
*@VerysOracleSdk.EmployeeInterestsApi* | [**updateEmployeeInterestsById**](docs/EmployeeInterestsApi.md#updateEmployeeInterestsById) | **PATCH** /employee-interests/{id} | Update a specific &#x60;employee-interests&#x60; resource
*@VerysOracleSdk.EmployeeInvitationEmailsApi* | [**createEmployeeEmployeeInvitationEmail**](docs/EmployeeInvitationEmailsApi.md#createEmployeeEmployeeInvitationEmail) | **POST** /employees/{id}/employee-invitation-emails | Creates an &#x60;emplyoee invitation emails&#x60; resource
*@VerysOracleSdk.EmployeeSkillAptitudesApi* | [**createEmployeeSkillAptitudes**](docs/EmployeeSkillAptitudesApi.md#createEmployeeSkillAptitudes) | **POST** /employee-skill-aptitudes | Create a new &#x60;employee-skill-aptitudes&#x60;
*@VerysOracleSdk.EmployeeSkillAptitudesApi* | [**deleteEmployeeSkillAptitudesById**](docs/EmployeeSkillAptitudesApi.md#deleteEmployeeSkillAptitudesById) | **DELETE** /employee-skill-aptitudes/{id} | Delete a &#x60;employee-skill-aptitudes&#x60; resource by it&#39;s ID
*@VerysOracleSdk.EmployeeSkillAptitudesApi* | [**getEmployeeSkillAptitudes**](docs/EmployeeSkillAptitudesApi.md#getEmployeeSkillAptitudes) | **GET** /employee-skill-aptitudes | Get all &#x60;employee-skill-aptitudes&#x60;
*@VerysOracleSdk.EmployeeSkillAptitudesApi* | [**getEmployeeSkillAptitudesById**](docs/EmployeeSkillAptitudesApi.md#getEmployeeSkillAptitudesById) | **GET** /employee-skill-aptitudes/{id} | Get a &#x60;employee-skill-aptitudes&#x60; resource
*@VerysOracleSdk.EmployeeSkillAptitudesApi* | [**updateEmployeeSkillAptitudesById**](docs/EmployeeSkillAptitudesApi.md#updateEmployeeSkillAptitudesById) | **PATCH** /employee-skill-aptitudes/{id} | Update a specific &#x60;employee-skill-aptitudes&#x60; resource
*@VerysOracleSdk.EmployeesApi* | [**createEmployeeEmployeeInvitationEmail**](docs/EmployeesApi.md#createEmployeeEmployeeInvitationEmail) | **POST** /employees/{id}/employee-invitation-emails | Creates an &#x60;emplyoee invitation emails&#x60; resource
*@VerysOracleSdk.EmployeesApi* | [**createEmployees**](docs/EmployeesApi.md#createEmployees) | **POST** /employees | Create a new &#x60;employees&#x60; resource
*@VerysOracleSdk.EmployeesApi* | [**createProfileRelationshipsDefaultProjects**](docs/EmployeesApi.md#createProfileRelationshipsDefaultProjects) | **POST** /my/profile/relationships/default-projects | Adds to the currently authenticated employee&#39;s default projects
*@VerysOracleSdk.EmployeesApi* | [**createRolesByIdRelationshipsEmployees**](docs/EmployeesApi.md#createRolesByIdRelationshipsEmployees) | **POST** /roles/{id}/relationships/employees | Create &#x60;employees&#x60; relationship from a &#x60;roles&#x60; resource by Id
*@VerysOracleSdk.EmployeesApi* | [**createTitleBandsByIdRelationshipsEmployees**](docs/EmployeesApi.md#createTitleBandsByIdRelationshipsEmployees) | **POST** /title-bands/{id}/relationships/employees | Create &#x60;employees&#x60; relationship from a &#x60;title bands&#x60; resource by Id
*@VerysOracleSdk.EmployeesApi* | [**createTitleGradesByIdRelationshipsEmployees**](docs/EmployeesApi.md#createTitleGradesByIdRelationshipsEmployees) | **POST** /title-grades/{id}/relationships/employees | Create &#x60;employees&#x60; relationship from a &#x60;title grades&#x60; resource by Id
*@VerysOracleSdk.EmployeesApi* | [**deleteProfileRelationshipsDefaultProjects**](docs/EmployeesApi.md#deleteProfileRelationshipsDefaultProjects) | **DELETE** /my/profile/relationships/default-projects | Deletes from the currently authenticated employee&#39;s default projects
*@VerysOracleSdk.EmployeesApi* | [**deleteRolesByIdRelationshipsEmployees**](docs/EmployeesApi.md#deleteRolesByIdRelationshipsEmployees) | **DELETE** /roles/{id}/relationships/employees | Delete &#x60;employees&#x60; relationship from a &#x60;roles&#x60; resource by Id
*@VerysOracleSdk.EmployeesApi* | [**deleteTitleBandsByIdRelationshipsEmployees**](docs/EmployeesApi.md#deleteTitleBandsByIdRelationshipsEmployees) | **DELETE** /title-bands/{id}/relationships/employees | Delete &#x60;employees&#x60; relationship from a &#x60;title bands&#x60; resource by Id
*@VerysOracleSdk.EmployeesApi* | [**deleteTitleGradesByIdRelationshipsEmployees**](docs/EmployeesApi.md#deleteTitleGradesByIdRelationshipsEmployees) | **DELETE** /title-grades/{id}/relationships/employees | Delete &#x60;employees&#x60; relationship from a &#x60;title grades&#x60; resource by Id
*@VerysOracleSdk.EmployeesApi* | [**getEmployees**](docs/EmployeesApi.md#getEmployees) | **GET** /employees | Get all employees resources
*@VerysOracleSdk.EmployeesApi* | [**getEmployeesById**](docs/EmployeesApi.md#getEmployeesById) | **GET** /employees/{id} | Get a specific employee resource
*@VerysOracleSdk.EmployeesApi* | [**getProfile**](docs/EmployeesApi.md#getProfile) | **GET** /my/profile | Gets the currently authenticated employee
*@VerysOracleSdk.EmployeesApi* | [**getProfileRelationshipsDefaultProjects**](docs/EmployeesApi.md#getProfileRelationshipsDefaultProjects) | **GET** /my/profile/relationships/default-projects | Gets the currently authenticated employee&#39;s default projects
*@VerysOracleSdk.EmployeesApi* | [**getRolesByIdEmployees**](docs/EmployeesApi.md#getRolesByIdEmployees) | **GET** /roles/{id}/employees | Get &#x60;employees&#x60; that belong to a &#x60;roles&#x60; resource by Id
*@VerysOracleSdk.EmployeesApi* | [**getRolesByIdRelationshipsEmployees**](docs/EmployeesApi.md#getRolesByIdRelationshipsEmployees) | **GET** /roles/{id}/relationships/employees | Get &#x60;employees&#x60; relationship from a &#x60;roles&#x60; resource by Id
*@VerysOracleSdk.EmployeesApi* | [**getTitleBandsByIdEmployees**](docs/EmployeesApi.md#getTitleBandsByIdEmployees) | **GET** /title-bands/{id}/employees | Get &#x60;employees&#x60; that belong to a &#x60;title bands&#x60; resource by Id
*@VerysOracleSdk.EmployeesApi* | [**getTitleBandsByIdRelationshipsEmployees**](docs/EmployeesApi.md#getTitleBandsByIdRelationshipsEmployees) | **GET** /title-bands/{id}/relationships/employees | Get &#x60;employees&#x60; relationship from a &#x60;title bands&#x60; resource by Id
*@VerysOracleSdk.EmployeesApi* | [**getTitleGradesByIdEmployees**](docs/EmployeesApi.md#getTitleGradesByIdEmployees) | **GET** /title-grades/{id}/employees | Get &#x60;employees&#x60; that belong to a &#x60;title grades&#x60; resource by Id
*@VerysOracleSdk.EmployeesApi* | [**getTitleGradesByIdRelationshipsEmployees**](docs/EmployeesApi.md#getTitleGradesByIdRelationshipsEmployees) | **GET** /title-grades/{id}/relationships/employees | Get &#x60;employees&#x60; relationship from a &#x60;title grades&#x60; resource by Id
*@VerysOracleSdk.EmployeesApi* | [**getUser**](docs/EmployeesApi.md#getUser) | **GET** /my/user | Gets the currently authenticated employee
*@VerysOracleSdk.EmployeesApi* | [**updateEmployeesById**](docs/EmployeesApi.md#updateEmployeesById) | **PATCH** /employees/{id} | Update a specific employee resource
*@VerysOracleSdk.EmployeesApi* | [**updateProfile**](docs/EmployeesApi.md#updateProfile) | **PATCH** /my/profile | Update the currently authenticated employee profile
*@VerysOracleSdk.EmployeesApi* | [**updateProfileRelationshipsDefaultProjects**](docs/EmployeesApi.md#updateProfileRelationshipsDefaultProjects) | **PATCH** /my/profile/relationships/default-projects | Updates the currently authenticated employee&#39;s default projects
*@VerysOracleSdk.EmployeesApi* | [**updateRolesByIdRelationshipsEmployees**](docs/EmployeesApi.md#updateRolesByIdRelationshipsEmployees) | **PATCH** /roles/{id}/relationships/employees | Update &#x60;employees&#x60; relationship from a &#x60;roles&#x60; resource by Id
*@VerysOracleSdk.EmployeesApi* | [**updateTitleBandsByIdRelationshipsEmployees**](docs/EmployeesApi.md#updateTitleBandsByIdRelationshipsEmployees) | **PATCH** /title-bands/{id}/relationships/employees | Update &#x60;employees&#x60; relationship from a &#x60;title bands&#x60; resource by Id
*@VerysOracleSdk.EmployeesApi* | [**updateTitleGradesByIdRelationshipsEmployees**](docs/EmployeesApi.md#updateTitleGradesByIdRelationshipsEmployees) | **PATCH** /title-grades/{id}/relationships/employees | Update &#x60;employees&#x60; relationship from a &#x60;title grades&#x60; resource by Id
*@VerysOracleSdk.EmployeesApi* | [**updateUser**](docs/EmployeesApi.md#updateUser) | **PATCH** /my/user | Update the currently authenticated user
*@VerysOracleSdk.FeaturesApi* | [**getFeatures**](docs/FeaturesApi.md#getFeatures) | **GET** /features | Get all features resources
*@VerysOracleSdk.FeaturesApi* | [**getFeaturesById**](docs/FeaturesApi.md#getFeaturesById) | **GET** /features/{id} | Get a specific feature resource
*@VerysOracleSdk.FeaturesApi* | [**updateFeaturesById**](docs/FeaturesApi.md#updateFeaturesById) | **PATCH** /features/{id} | Update a specific &#x60;features&#x60; resource
*@VerysOracleSdk.HealthCheckApi* | [**getHealthCheck**](docs/HealthCheckApi.md#getHealthCheck) | **GET** /health-check | Health check
*@VerysOracleSdk.IntegrationsApi* | [**getIntegrations**](docs/IntegrationsApi.md#getIntegrations) | **GET** /integrations | Get all integrations resources
*@VerysOracleSdk.IntegrationsApi* | [**getIntegrationsById**](docs/IntegrationsApi.md#getIntegrationsById) | **GET** /integrations/{id} | Get a specific integration resource
*@VerysOracleSdk.IntegrationsApi* | [**updateIntegrationsById**](docs/IntegrationsApi.md#updateIntegrationsById) | **PATCH** /integrations/{id} | Update a specific &#x60;integrations&#x60; resource
*@VerysOracleSdk.LocalesApi* | [**getLocales**](docs/LocalesApi.md#getLocales) | **GET** /locales | Get all &#x60;locales&#x60;
*@VerysOracleSdk.LocalesApi* | [**getLocalesById**](docs/LocalesApi.md#getLocalesById) | **GET** /locales/{localeCode} | Get a &#x60;locales&#x60; resource
*@VerysOracleSdk.MyApi* | [**createMyCertification**](docs/MyApi.md#createMyCertification) | **POST** /my/certifications | Create a new &#x60;certifications&#x60; resource
*@VerysOracleSdk.MyApi* | [**createMyEmployeeInterests**](docs/MyApi.md#createMyEmployeeInterests) | **POST** /my/employee-interests | Create a new employee interest
*@VerysOracleSdk.MyApi* | [**createMyEmployeeSkillAptitudes**](docs/MyApi.md#createMyEmployeeSkillAptitudes) | **POST** /my/employee-skill-aptitudes | Create a new employee skill-aptitudes
*@VerysOracleSdk.MyApi* | [**createMyTimeEntries**](docs/MyApi.md#createMyTimeEntries) | **POST** /my/time-entries | Create a new time entries resource for the currently authenticated employee
*@VerysOracleSdk.MyApi* | [**createProfileRelationshipsDefaultProjects**](docs/MyApi.md#createProfileRelationshipsDefaultProjects) | **POST** /my/profile/relationships/default-projects | Adds to the currently authenticated employee&#39;s default projects
*@VerysOracleSdk.MyApi* | [**deleteMyCertificationsById**](docs/MyApi.md#deleteMyCertificationsById) | **DELETE** /my/certifications/{id} | Delete a &#x60;certifications&#x60; resource by it&#39;s ID
*@VerysOracleSdk.MyApi* | [**deleteMyEmployeeInterestsById**](docs/MyApi.md#deleteMyEmployeeInterestsById) | **DELETE** /my/employee-interests/{id} | Delete a specific employee interest by it&#39;s ID
*@VerysOracleSdk.MyApi* | [**deleteMyEmployeeSkillAptitudesById**](docs/MyApi.md#deleteMyEmployeeSkillAptitudesById) | **DELETE** /my/employee-skill-aptitudes/{id} | Delete a specific employee skill-aptitudes by it&#39;s ID
*@VerysOracleSdk.MyApi* | [**deleteMyTimeEntries**](docs/MyApi.md#deleteMyTimeEntries) | **DELETE** /my/time-entries | Delete one or more time entries resources for the currently authenticated employee 
*@VerysOracleSdk.MyApi* | [**deleteMyTimeEntriesById**](docs/MyApi.md#deleteMyTimeEntriesById) | **DELETE** /my/time-entries/{id} | Delete a specific time entries resource for the currently authenticated employee 
*@VerysOracleSdk.MyApi* | [**deleteProfileRelationshipsDefaultProjects**](docs/MyApi.md#deleteProfileRelationshipsDefaultProjects) | **DELETE** /my/profile/relationships/default-projects | Deletes from the currently authenticated employee&#39;s default projects
*@VerysOracleSdk.MyApi* | [**getMyCertifications**](docs/MyApi.md#getMyCertifications) | **GET** /my/certifications | Get all my &#x60;certifications&#x60;
*@VerysOracleSdk.MyApi* | [**getMyCertificationsById**](docs/MyApi.md#getMyCertificationsById) | **GET** /my/certifications/{id} | Get my &#x60;certifications&#x60; resource
*@VerysOracleSdk.MyApi* | [**getMyChartsById**](docs/MyApi.md#getMyChartsById) | **GET** /my/charts/{id} | Gets charts resource for the currently authenticated employee
*@VerysOracleSdk.MyApi* | [**getMyEmployeeInterests**](docs/MyApi.md#getMyEmployeeInterests) | **GET** /my/employee-interests | Get all my interests
*@VerysOracleSdk.MyApi* | [**getMyEmployeeInterestsById**](docs/MyApi.md#getMyEmployeeInterestsById) | **GET** /my/employee-interests/{id} | Get my &#x60;employee-interests&#x60; resource
*@VerysOracleSdk.MyApi* | [**getMyEmployeeSkillAptitudes**](docs/MyApi.md#getMyEmployeeSkillAptitudes) | **GET** /my/employee-skill-aptitudes | Get all my &#x60;employee-skill-aptitudes&#x60;
*@VerysOracleSdk.MyApi* | [**getMyEmployeeSkillAptitudesById**](docs/MyApi.md#getMyEmployeeSkillAptitudesById) | **GET** /my/employee-skill-aptitudes/{id} | Get my &#x60;employee-skill-aptitudes&#x60; resource
*@VerysOracleSdk.MyApi* | [**getMyPermissions**](docs/MyApi.md#getMyPermissions) | **GET** /my/permissions | Get all permissions resource objects for the currently authenticated employee
*@VerysOracleSdk.MyApi* | [**getMyPermissionsById**](docs/MyApi.md#getMyPermissionsById) | **GET** /my/permissions/{id} | Get permissions resource object for the currently authenticated employee
*@VerysOracleSdk.MyApi* | [**getMyPotentialProjectRoles**](docs/MyApi.md#getMyPotentialProjectRoles) | **GET** /my/potential-project-roles | Get all potential &#x60;projects roles&#x60; for the currently authenticated user
*@VerysOracleSdk.MyApi* | [**getMyProjectRoles**](docs/MyApi.md#getMyProjectRoles) | **GET** /my/project-roles | Get all active &#x60;projects roles&#x60; for a time frame for the currently authenticated user
*@VerysOracleSdk.MyApi* | [**getMyProjectRolesById**](docs/MyApi.md#getMyProjectRolesById) | **GET** /my/project-roles/{id} | Get a &#x60;project role&#x60; resource for the currently authenticated user
*@VerysOracleSdk.MyApi* | [**getMyRoles**](docs/MyApi.md#getMyRoles) | **GET** /my/roles | Get all roles for the currently authenticated employee
*@VerysOracleSdk.MyApi* | [**getMyTimeEntries**](docs/MyApi.md#getMyTimeEntries) | **GET** /my/time-entries | Get all time entries for the currently authenticated employee
*@VerysOracleSdk.MyApi* | [**getMyTimeEntriesById**](docs/MyApi.md#getMyTimeEntriesById) | **GET** /my/time-entries/{id} | Get a specific time entry for the currently authenticated employee
*@VerysOracleSdk.MyApi* | [**getProfile**](docs/MyApi.md#getProfile) | **GET** /my/profile | Gets the currently authenticated employee
*@VerysOracleSdk.MyApi* | [**getProfileRelationshipsDefaultProjects**](docs/MyApi.md#getProfileRelationshipsDefaultProjects) | **GET** /my/profile/relationships/default-projects | Gets the currently authenticated employee&#39;s default projects
*@VerysOracleSdk.MyApi* | [**getUser**](docs/MyApi.md#getUser) | **GET** /my/user | Gets the currently authenticated employee
*@VerysOracleSdk.MyApi* | [**updateMyCertificationsById**](docs/MyApi.md#updateMyCertificationsById) | **PATCH** /my/certifications/{id} | Update a specific certifications resource
*@VerysOracleSdk.MyApi* | [**updateMyEmployeeInterestsById**](docs/MyApi.md#updateMyEmployeeInterestsById) | **PATCH** /my/employee-interests/{id} | Update a specific &#x60;employee-interests&#x60; resource
*@VerysOracleSdk.MyApi* | [**updateMyEmployeeSkillAptitudesById**](docs/MyApi.md#updateMyEmployeeSkillAptitudesById) | **PATCH** /my/employee-skill-aptitudes/{id} | Update a specific &#x60;employee-skill-aptitudes&#x60; resource
*@VerysOracleSdk.MyApi* | [**updateMyTimeEntries**](docs/MyApi.md#updateMyTimeEntries) | **PATCH** /my/time-entries | Updates multiple time entries resources for the currently authenticated employee 
*@VerysOracleSdk.MyApi* | [**updateMyTimeEntriesById**](docs/MyApi.md#updateMyTimeEntriesById) | **PATCH** /my/time-entries/{id} | Update a specific time entries resource for the currently authenticated employee 
*@VerysOracleSdk.MyApi* | [**updateProfile**](docs/MyApi.md#updateProfile) | **PATCH** /my/profile | Update the currently authenticated employee profile
*@VerysOracleSdk.MyApi* | [**updateProfileRelationshipsDefaultProjects**](docs/MyApi.md#updateProfileRelationshipsDefaultProjects) | **PATCH** /my/profile/relationships/default-projects | Updates the currently authenticated employee&#39;s default projects
*@VerysOracleSdk.MyApi* | [**updateUser**](docs/MyApi.md#updateUser) | **PATCH** /my/user | Update the currently authenticated user
*@VerysOracleSdk.ProformaConfigurationsApi* | [**createProformaConfiguration**](docs/ProformaConfigurationsApi.md#createProformaConfiguration) | **POST** /proforma-configurations | Create a new &#x60;proforma configuration&#x60;
*@VerysOracleSdk.ProformaConfigurationsApi* | [**getProformaConfigurations**](docs/ProformaConfigurationsApi.md#getProformaConfigurations) | **GET** /proforma-configurations | Get all &#x60;proforma configurations&#x60;
*@VerysOracleSdk.ProformaConfigurationsApi* | [**getProformaConfigurationsById**](docs/ProformaConfigurationsApi.md#getProformaConfigurationsById) | **GET** /proforma-configurations/{id} | Get a &#x60;proforma configurations&#x60; resource
*@VerysOracleSdk.ProformaConfigurationsApi* | [**updateProformaConfigurationsById**](docs/ProformaConfigurationsApi.md#updateProformaConfigurationsById) | **PATCH** /proforma-configurations/{id} | Update a specific proforma configuration resource
*@VerysOracleSdk.ProjectFinancialTotalPlansApi* | [**getProjectFinancialTotalPlans**](docs/ProjectFinancialTotalPlansApi.md#getProjectFinancialTotalPlans) | **GET** /project-financial-total-plans | Gets project financial total plans. These are from locked-in project plans.
*@VerysOracleSdk.ProjectFinancialTotalPlansApi* | [**getProjectProjectFinancialTotalPlans**](docs/ProjectFinancialTotalPlansApi.md#getProjectProjectFinancialTotalPlans) | **GET** /projects/{id}/project-financial-total-plans | Gets &#x60;project-financial-total-plans&#x60; resource for a project
*@VerysOracleSdk.ProjectFinancialTotalsApi* | [**getProjectProformaFinancials**](docs/ProjectFinancialTotalsApi.md#getProjectProformaFinancials) | **GET** /project-financial-totals | Gets an aggregate for proforma financials grouped by project
*@VerysOracleSdk.ProjectFinancialTotalsApi* | [**getProjectProjectFinancialTotals**](docs/ProjectFinancialTotalsApi.md#getProjectProjectFinancialTotals) | **GET** /projects/{id}/project-financial-totals | Gets &#x60;project-financial-totals&#x60; resource for a project
*@VerysOracleSdk.ProjectMilestonesApi* | [**createProjectMilestone**](docs/ProjectMilestonesApi.md#createProjectMilestone) | **POST** /project-milestones | Create a new &#x60;project milestone&#x60;
*@VerysOracleSdk.ProjectMilestonesApi* | [**deleteProjectMilestonesById**](docs/ProjectMilestonesApi.md#deleteProjectMilestonesById) | **DELETE** /project-milestones/{id} | Delete a &#x60;project milestones&#x60; resource by it&#39;s ID
*@VerysOracleSdk.ProjectMilestonesApi* | [**getProjectMilestones**](docs/ProjectMilestonesApi.md#getProjectMilestones) | **GET** /project-milestones | Get all &#x60;project milestones&#x60;
*@VerysOracleSdk.ProjectMilestonesApi* | [**getProjectMilestonesById**](docs/ProjectMilestonesApi.md#getProjectMilestonesById) | **GET** /project-milestones/{id} | Get a &#x60;project milestones&#x60; resource
*@VerysOracleSdk.ProjectMilestonesApi* | [**updateProjectMilestonesById**](docs/ProjectMilestonesApi.md#updateProjectMilestonesById) | **PATCH** /project-milestones/{id} | Update a specific project milestone resource
*@VerysOracleSdk.ProjectRoleTypesApi* | [**createProjectRoleType**](docs/ProjectRoleTypesApi.md#createProjectRoleType) | **POST** /project-role-types | Create a new &#x60;project role type&#x60;
*@VerysOracleSdk.ProjectRoleTypesApi* | [**getProjectRoleTypes**](docs/ProjectRoleTypesApi.md#getProjectRoleTypes) | **GET** /project-role-types | Get all &#x60;project role types&#x60;
*@VerysOracleSdk.ProjectRoleTypesApi* | [**getProjectRoleTypesById**](docs/ProjectRoleTypesApi.md#getProjectRoleTypesById) | **GET** /project-role-types/{id} | Get a &#x60;project role type&#x60; resource
*@VerysOracleSdk.ProjectRoleTypesApi* | [**updateProjectRoleTypesById**](docs/ProjectRoleTypesApi.md#updateProjectRoleTypesById) | **PATCH** /project-role-types/{id} | Update a specific project role type resource
*@VerysOracleSdk.ProjectRolesApi* | [**createProjectRole**](docs/ProjectRolesApi.md#createProjectRole) | **POST** /project-roles | Create a new &#x60;project role&#x60;
*@VerysOracleSdk.ProjectRolesApi* | [**createProjectRolesByIdRelationshipsQualifications**](docs/ProjectRolesApi.md#createProjectRolesByIdRelationshipsQualifications) | **POST** /project-roles/{id}/relationships/qualifications | Create &#x60;qualifications&#x60; relationship from a &#x60;project roles&#x60; resource by Id
*@VerysOracleSdk.ProjectRolesApi* | [**deleteProjectRolesById**](docs/ProjectRolesApi.md#deleteProjectRolesById) | **DELETE** /project-roles/{id} | Delete a &#x60;project roles&#x60; resource by it&#39;s ID
*@VerysOracleSdk.ProjectRolesApi* | [**deleteProjectRolesByIdRelationshipsQualifications**](docs/ProjectRolesApi.md#deleteProjectRolesByIdRelationshipsQualifications) | **DELETE** /project-roles/{id}/relationships/qualifications | Delete &#x60;qualifications&#x60; relationship from a &#x60;project roles&#x60; resource by Id
*@VerysOracleSdk.ProjectRolesApi* | [**getCandidatesByProjectRolesById**](docs/ProjectRolesApi.md#getCandidatesByProjectRolesById) | **GET** /project-roles/{id}/candidates | Fetch &#x60;candidates&#x60; for &#x60;project roles&#x60; resource
*@VerysOracleSdk.ProjectRolesApi* | [**getMyPotentialProjectRoles**](docs/ProjectRolesApi.md#getMyPotentialProjectRoles) | **GET** /my/potential-project-roles | Get all potential &#x60;projects roles&#x60; for the currently authenticated user
*@VerysOracleSdk.ProjectRolesApi* | [**getMyProjectRoles**](docs/ProjectRolesApi.md#getMyProjectRoles) | **GET** /my/project-roles | Get all active &#x60;projects roles&#x60; for a time frame for the currently authenticated user
*@VerysOracleSdk.ProjectRolesApi* | [**getMyProjectRolesById**](docs/ProjectRolesApi.md#getMyProjectRolesById) | **GET** /my/project-roles/{id} | Get a &#x60;project role&#x60; resource for the currently authenticated user
*@VerysOracleSdk.ProjectRolesApi* | [**getProjectRoles**](docs/ProjectRolesApi.md#getProjectRoles) | **GET** /project-roles | Get all &#x60;projects roles&#x60;
*@VerysOracleSdk.ProjectRolesApi* | [**getProjectRolesById**](docs/ProjectRolesApi.md#getProjectRolesById) | **GET** /project-roles/{id} | Get a &#x60;project roles&#x60; resource
*@VerysOracleSdk.ProjectRolesApi* | [**getProjectRolesByIdRelationshipsQualifications**](docs/ProjectRolesApi.md#getProjectRolesByIdRelationshipsQualifications) | **GET** /project-roles/{id}/relationships/qualifications | Get &#x60;qualifications&#x60; relationship from a &#x60;project roles&#x60; resource by Id
*@VerysOracleSdk.ProjectRolesApi* | [**updateProjectRolesById**](docs/ProjectRolesApi.md#updateProjectRolesById) | **PATCH** /project-roles/{id} | Update a specific project role resource
*@VerysOracleSdk.ProjectRolesApi* | [**updateProjectRolesByIdRelationshipsQualifications**](docs/ProjectRolesApi.md#updateProjectRolesByIdRelationshipsQualifications) | **PATCH** /project-roles/{id}/relationships/qualifications | Update &#x60;qualifications&#x60; relationship from a &#x60;project roles&#x60; resource by Id
*@VerysOracleSdk.ProjectsApi* | [**createProject**](docs/ProjectsApi.md#createProject) | **POST** /projects | Create a new project
*@VerysOracleSdk.ProjectsApi* | [**createProjectProjectPlanRequests**](docs/ProjectsApi.md#createProjectProjectPlanRequests) | **POST** /projects/{id}/project-plan-requests | Creates a &#x60;project plan requests&#x60; resource for a project
*@VerysOracleSdk.ProjectsApi* | [**deleteProjectsById**](docs/ProjectsApi.md#deleteProjectsById) | **DELETE** /projects/{id} | Delete a &#x60;projects&#x60; resource by it&#39;s ID
*@VerysOracleSdk.ProjectsApi* | [**getProjectProjectFinancialTotalPlans**](docs/ProjectsApi.md#getProjectProjectFinancialTotalPlans) | **GET** /projects/{id}/project-financial-total-plans | Gets &#x60;project-financial-total-plans&#x60; resource for a project
*@VerysOracleSdk.ProjectsApi* | [**getProjectProjectFinancialTotals**](docs/ProjectsApi.md#getProjectProjectFinancialTotals) | **GET** /projects/{id}/project-financial-totals | Gets &#x60;project-financial-totals&#x60; resource for a project
*@VerysOracleSdk.ProjectsApi* | [**getProjects**](docs/ProjectsApi.md#getProjects) | **GET** /projects | Get all &#x60;projects&#x60;
*@VerysOracleSdk.ProjectsApi* | [**getProjectsById**](docs/ProjectsApi.md#getProjectsById) | **GET** /projects/{id} | Get a &#x60;projects&#x60; resource
*@VerysOracleSdk.ProjectsApi* | [**updateProjectsById**](docs/ProjectsApi.md#updateProjectsById) | **PATCH** /projects/{id} | Update a specific project resource
*@VerysOracleSdk.QualificationsApi* | [**createProjectRolesByIdRelationshipsQualifications**](docs/QualificationsApi.md#createProjectRolesByIdRelationshipsQualifications) | **POST** /project-roles/{id}/relationships/qualifications | Create &#x60;qualifications&#x60; relationship from a &#x60;project roles&#x60; resource by Id
*@VerysOracleSdk.QualificationsApi* | [**createQualification**](docs/QualificationsApi.md#createQualification) | **POST** /qualifications | Create a new &#x60;qualification&#x60;
*@VerysOracleSdk.QualificationsApi* | [**deleteProjectRolesByIdRelationshipsQualifications**](docs/QualificationsApi.md#deleteProjectRolesByIdRelationshipsQualifications) | **DELETE** /project-roles/{id}/relationships/qualifications | Delete &#x60;qualifications&#x60; relationship from a &#x60;project roles&#x60; resource by Id
*@VerysOracleSdk.QualificationsApi* | [**deleteQualificationsById**](docs/QualificationsApi.md#deleteQualificationsById) | **DELETE** /qualifications/{id} | Delete a &#x60;qualifications&#x60; resource by it&#39;s ID
*@VerysOracleSdk.QualificationsApi* | [**getProjectRolesByIdRelationshipsQualifications**](docs/QualificationsApi.md#getProjectRolesByIdRelationshipsQualifications) | **GET** /project-roles/{id}/relationships/qualifications | Get &#x60;qualifications&#x60; relationship from a &#x60;project roles&#x60; resource by Id
*@VerysOracleSdk.QualificationsApi* | [**getQualifications**](docs/QualificationsApi.md#getQualifications) | **GET** /qualifications | Get all &#x60;qualifications&#x60;
*@VerysOracleSdk.QualificationsApi* | [**getQualificationsById**](docs/QualificationsApi.md#getQualificationsById) | **GET** /qualifications/{id} | Get a &#x60;qualifications&#x60; resource
*@VerysOracleSdk.QualificationsApi* | [**updateProjectRolesByIdRelationshipsQualifications**](docs/QualificationsApi.md#updateProjectRolesByIdRelationshipsQualifications) | **PATCH** /project-roles/{id}/relationships/qualifications | Update &#x60;qualifications&#x60; relationship from a &#x60;project roles&#x60; resource by Id
*@VerysOracleSdk.QualificationsApi* | [**updateQualificationsById**](docs/QualificationsApi.md#updateQualificationsById) | **PATCH** /qualifications/{id} | Update a specific &#x60;qualification&#x60; resource
*@VerysOracleSdk.QueueJobsApi* | [**getQueueJobsByQueueNameById**](docs/QueueJobsApi.md#getQueueJobsByQueueNameById) | **GET** /queue-jobs/{queue}/{id} | Get the state of a queue jobs resource
*@VerysOracleSdk.QuickBooksDesktopCustomersApi* | [**createQuickBooksDesktopCustomers**](docs/QuickBooksDesktopCustomersApi.md#createQuickBooksDesktopCustomers) | **POST** /quickbooks-desktop-customers | Create a new &#x60;quickbooks-desktop-customers&#x60; resource
*@VerysOracleSdk.QuickBooksDesktopCustomersApi* | [**getQuickBooksDesktopCustomers**](docs/QuickBooksDesktopCustomersApi.md#getQuickBooksDesktopCustomers) | **GET** /quickbooks-desktop-customers | Get all quickbooks-desktop-customers
*@VerysOracleSdk.QuickBooksDesktopCustomersApi* | [**getQuickBooksDesktopCustomersById**](docs/QuickBooksDesktopCustomersApi.md#getQuickBooksDesktopCustomersById) | **GET** /quickbooks-desktop-customers/{id} | Get an &#x60;quickbooks-desktop-customers&#x60; resource
*@VerysOracleSdk.QuickBooksDesktopCustomersApi* | [**updateQuickBooksDesktopCustomersById**](docs/QuickBooksDesktopCustomersApi.md#updateQuickBooksDesktopCustomersById) | **PATCH** /quickbooks-desktop-customers/{id} | Update a specific &#x60;quickbooks-desktop-customers&#x60; resource
*@VerysOracleSdk.QuickBooksDesktopIntegrationConfigurationApi* | [**getQuickBooksDesktopIntegrationConfiguration**](docs/QuickBooksDesktopIntegrationConfigurationApi.md#getQuickBooksDesktopIntegrationConfiguration) | **GET** /quickbooks-desktop-integration-configuration | Gets the QuickBooks Desktop integration configuration
*@VerysOracleSdk.QuickBooksDesktopIntegrationConfigurationApi* | [**updateQuickBooksDesktopIntegrationConfiguration**](docs/QuickBooksDesktopIntegrationConfigurationApi.md#updateQuickBooksDesktopIntegrationConfiguration) | **PATCH** /quickbooks-desktop-integration-configuration | Updates the QuickBooks Desktop integration configuration
*@VerysOracleSdk.QuickBooksDesktopTimeTrackingEntriesApi* | [**createQuickBooksDesktopTimeTrackingEntries**](docs/QuickBooksDesktopTimeTrackingEntriesApi.md#createQuickBooksDesktopTimeTrackingEntries) | **POST** /quickbooks-desktop-time-tracking-entries | Create a new &#x60;quickbooks-desktop-time-tracking-entries&#x60; resource
*@VerysOracleSdk.QuickBooksDesktopTimeTrackingEntriesApi* | [**getQuickBooksDesktopTimeTrackingEntries**](docs/QuickBooksDesktopTimeTrackingEntriesApi.md#getQuickBooksDesktopTimeTrackingEntries) | **GET** /quickbooks-desktop-time-tracking-entries | Get all quickbooks-desktop-time-tracking-entries
*@VerysOracleSdk.QuickBooksDesktopTimeTrackingEntriesApi* | [**getQuickBooksDesktopTimeTrackingEntriesById**](docs/QuickBooksDesktopTimeTrackingEntriesApi.md#getQuickBooksDesktopTimeTrackingEntriesById) | **GET** /quickbooks-desktop-time-tracking-entries/{id} | Get an &#x60;quickbooks-desktop-time-tracking-entries&#x60; resource
*@VerysOracleSdk.QuickBooksDesktopTimeTrackingEntriesApi* | [**updateQuickBooksDesktopTimeTrackingEntriesById**](docs/QuickBooksDesktopTimeTrackingEntriesApi.md#updateQuickBooksDesktopTimeTrackingEntriesById) | **PATCH** /quickbooks-desktop-time-tracking-entries/{id} | Update a specific &#x60;quickbooks-desktop-time-tracking-entries&#x60; resource
*@VerysOracleSdk.QuickBooksVendorsApi* | [**getQuickBooksVendors**](docs/QuickBooksVendorsApi.md#getQuickBooksVendors) | **GET** /quickbooks-vendors | Get QuickBooks vendors
*@VerysOracleSdk.QuickbooksApi* | [**quickbooksOauthAccessTokenRequest**](docs/QuickbooksApi.md#quickbooksOauthAccessTokenRequest) | **POST** /quickbooks/oauth-access-token-request | QuickBooks OAuth access token request
*@VerysOracleSdk.QuickbooksApi* | [**quickbooksOauthAuthorizationUrl**](docs/QuickbooksApi.md#quickbooksOauthAuthorizationUrl) | **GET** /quickbooks/oauth-authorization-url | Returns a Quickbooks OAuth authorization URL
*@VerysOracleSdk.ResourcesApi* | [**getResources**](docs/ResourcesApi.md#getResources) | **GET** /resources | Get all resources
*@VerysOracleSdk.RoleResourcesApi* | [**createRoleResources**](docs/RoleResourcesApi.md#createRoleResources) | **POST** /role-resources | Create a new &#x60;role resources&#x60; resource
*@VerysOracleSdk.RoleResourcesApi* | [**getRoleResources**](docs/RoleResourcesApi.md#getRoleResources) | **GET** /role-resources | Get all &#x60;role resources&#x60; resouces
*@VerysOracleSdk.RoleResourcesApi* | [**getRoleResourcesById**](docs/RoleResourcesApi.md#getRoleResourcesById) | **GET** /role-resources/{id} | Get a &#x60;role resources&#x60; resouce by Id
*@VerysOracleSdk.RoleResourcesApi* | [**updateRoleResourcesById**](docs/RoleResourcesApi.md#updateRoleResourcesById) | **PATCH** /role-resources/{id} | Update a &#x60;role resources&#x60; resource by it&#39;s ID
*@VerysOracleSdk.RolesApi* | [**createRoles**](docs/RolesApi.md#createRoles) | **POST** /roles | Create a new role
*@VerysOracleSdk.RolesApi* | [**createRolesByIdRelationshipsEmployees**](docs/RolesApi.md#createRolesByIdRelationshipsEmployees) | **POST** /roles/{id}/relationships/employees | Create &#x60;employees&#x60; relationship from a &#x60;roles&#x60; resource by Id
*@VerysOracleSdk.RolesApi* | [**deleteRolesByIdRelationshipsEmployees**](docs/RolesApi.md#deleteRolesByIdRelationshipsEmployees) | **DELETE** /roles/{id}/relationships/employees | Delete &#x60;employees&#x60; relationship from a &#x60;roles&#x60; resource by Id
*@VerysOracleSdk.RolesApi* | [**getMyPermissions**](docs/RolesApi.md#getMyPermissions) | **GET** /my/permissions | Get all permissions resource objects for the currently authenticated employee
*@VerysOracleSdk.RolesApi* | [**getMyPermissionsById**](docs/RolesApi.md#getMyPermissionsById) | **GET** /my/permissions/{id} | Get permissions resource object for the currently authenticated employee
*@VerysOracleSdk.RolesApi* | [**getMyRoles**](docs/RolesApi.md#getMyRoles) | **GET** /my/roles | Get all roles for the currently authenticated employee
*@VerysOracleSdk.RolesApi* | [**getRoles**](docs/RolesApi.md#getRoles) | **GET** /roles | Get all roles
*@VerysOracleSdk.RolesApi* | [**getRolesById**](docs/RolesApi.md#getRolesById) | **GET** /roles/{id} | Get a &#x60;roles&#x60; resource object by Id
*@VerysOracleSdk.RolesApi* | [**getRolesByIdEmployees**](docs/RolesApi.md#getRolesByIdEmployees) | **GET** /roles/{id}/employees | Get &#x60;employees&#x60; that belong to a &#x60;roles&#x60; resource by Id
*@VerysOracleSdk.RolesApi* | [**getRolesByIdRelationshipsEmployees**](docs/RolesApi.md#getRolesByIdRelationshipsEmployees) | **GET** /roles/{id}/relationships/employees | Get &#x60;employees&#x60; relationship from a &#x60;roles&#x60; resource by Id
*@VerysOracleSdk.RolesApi* | [**updateRolesById**](docs/RolesApi.md#updateRolesById) | **PATCH** /roles/{id} | Update a &#x60;roles&#x60; resource object by it&#39;s Id
*@VerysOracleSdk.RolesApi* | [**updateRolesByIdRelationshipsEmployees**](docs/RolesApi.md#updateRolesByIdRelationshipsEmployees) | **PATCH** /roles/{id}/relationships/employees | Update &#x60;employees&#x60; relationship from a &#x60;roles&#x60; resource by Id
*@VerysOracleSdk.SalesforceApi* | [**getSalesforceAccessToken**](docs/SalesforceApi.md#getSalesforceAccessToken) | **GET** /salesforce/access-token | Returns a Salesforce access token
*@VerysOracleSdk.SalesforceApi* | [**getSalesforceIntegrationConfiguration**](docs/SalesforceApi.md#getSalesforceIntegrationConfiguration) | **GET** /salesforce-integration-configuration | Gets the Salesforce integration configuration
*@VerysOracleSdk.SalesforceApi* | [**salesforceOauthAccessTokenRequest**](docs/SalesforceApi.md#salesforceOauthAccessTokenRequest) | **POST** /salesforce/oauth-access-token-request | Salesforce&#39;s OAuth Access Token Request
*@VerysOracleSdk.SalesforceApi* | [**salesforceOauthAuthorizationUrl**](docs/SalesforceApi.md#salesforceOauthAuthorizationUrl) | **GET** /salesforce/oauth-authorization-url | Returns a Salesforce auth URL
*@VerysOracleSdk.SalesforceApi* | [**updateSalesforceIntegrationConfiguration**](docs/SalesforceApi.md#updateSalesforceIntegrationConfiguration) | **PATCH** /salesforce-integration-configuration | Updates the Salesforce integration configuration
*@VerysOracleSdk.SalesforceIntegrationConfigurationApi* | [**getSalesforceIntegrationConfiguration**](docs/SalesforceIntegrationConfigurationApi.md#getSalesforceIntegrationConfiguration) | **GET** /salesforce-integration-configuration | Gets the Salesforce integration configuration
*@VerysOracleSdk.SalesforceIntegrationConfigurationApi* | [**updateSalesforceIntegrationConfiguration**](docs/SalesforceIntegrationConfigurationApi.md#updateSalesforceIntegrationConfiguration) | **PATCH** /salesforce-integration-configuration | Updates the Salesforce integration configuration
*@VerysOracleSdk.SalesforceOpportunitiesApi* | [**getSalesforceOpportunities**](docs/SalesforceOpportunitiesApi.md#getSalesforceOpportunities) | **GET** /salesforce-opportunities | Get Salesforce oppotunities
*@VerysOracleSdk.SearchTokenApi* | [**createSearchToken**](docs/SearchTokenApi.md#createSearchToken) | **POST** /search-token | Create a search token
*@VerysOracleSdk.SessionsApi* | [**createSession**](docs/SessionsApi.md#createSession) | **POST** /sessions | Create a new session
*@VerysOracleSdk.SkillsApi* | [**createSkills**](docs/SkillsApi.md#createSkills) | **POST** /skills | Create a new &#x60;skills&#x60; resource
*@VerysOracleSdk.SkillsApi* | [**getSkills**](docs/SkillsApi.md#getSkills) | **GET** /skills | Get all skills resources
*@VerysOracleSdk.SkillsApi* | [**getSkillsById**](docs/SkillsApi.md#getSkillsById) | **GET** /skills/{id} | Get an &#x60;skills&#x60; resource
*@VerysOracleSdk.SkillsApi* | [**updateSkillsById**](docs/SkillsApi.md#updateSkillsById) | **PATCH** /skills/{id} | Update a specific &#x60;skills&#x60; resource
*@VerysOracleSdk.StatesApi* | [**getStates**](docs/StatesApi.md#getStates) | **GET** /states | Get all states resources
*@VerysOracleSdk.StatesApi* | [**getStatesById**](docs/StatesApi.md#getStatesById) | **GET** /states/{id} | Get a specific state resource
*@VerysOracleSdk.TimeEntriesApi* | [**createMyTimeEntries**](docs/TimeEntriesApi.md#createMyTimeEntries) | **POST** /my/time-entries | Create a new time entries resource for the currently authenticated employee
*@VerysOracleSdk.TimeEntriesApi* | [**createTimeEntries**](docs/TimeEntriesApi.md#createTimeEntries) | **POST** /time-entries | Create a new time entries resource
*@VerysOracleSdk.TimeEntriesApi* | [**deleteMyTimeEntries**](docs/TimeEntriesApi.md#deleteMyTimeEntries) | **DELETE** /my/time-entries | Delete one or more time entries resources for the currently authenticated employee 
*@VerysOracleSdk.TimeEntriesApi* | [**deleteMyTimeEntriesById**](docs/TimeEntriesApi.md#deleteMyTimeEntriesById) | **DELETE** /my/time-entries/{id} | Delete a specific time entries resource for the currently authenticated employee 
*@VerysOracleSdk.TimeEntriesApi* | [**deleteTimeEntries**](docs/TimeEntriesApi.md#deleteTimeEntries) | **DELETE** /time-entries | Delete one or more time entries resources
*@VerysOracleSdk.TimeEntriesApi* | [**deleteTimeEntriesById**](docs/TimeEntriesApi.md#deleteTimeEntriesById) | **DELETE** /time-entries/{id} | Delete a specific time entries resource
*@VerysOracleSdk.TimeEntriesApi* | [**getMyTimeEntries**](docs/TimeEntriesApi.md#getMyTimeEntries) | **GET** /my/time-entries | Get all time entries for the currently authenticated employee
*@VerysOracleSdk.TimeEntriesApi* | [**getMyTimeEntriesById**](docs/TimeEntriesApi.md#getMyTimeEntriesById) | **GET** /my/time-entries/{id} | Get a specific time entry for the currently authenticated employee
*@VerysOracleSdk.TimeEntriesApi* | [**getTimeEntries**](docs/TimeEntriesApi.md#getTimeEntries) | **GET** /time-entries | Get all time entries
*@VerysOracleSdk.TimeEntriesApi* | [**getTimeEntriesById**](docs/TimeEntriesApi.md#getTimeEntriesById) | **GET** /time-entries/{id} | Get a specific time entries resource
*@VerysOracleSdk.TimeEntriesApi* | [**updateMyTimeEntries**](docs/TimeEntriesApi.md#updateMyTimeEntries) | **PATCH** /my/time-entries | Updates multiple time entries resources for the currently authenticated employee 
*@VerysOracleSdk.TimeEntriesApi* | [**updateMyTimeEntriesById**](docs/TimeEntriesApi.md#updateMyTimeEntriesById) | **PATCH** /my/time-entries/{id} | Update a specific time entries resource for the currently authenticated employee 
*@VerysOracleSdk.TimeEntriesApi* | [**updateTimeEntries**](docs/TimeEntriesApi.md#updateTimeEntries) | **PATCH** /time-entries | Updates multiple time entries resources
*@VerysOracleSdk.TimeEntriesApi* | [**updateTimeEntriesById**](docs/TimeEntriesApi.md#updateTimeEntriesById) | **PATCH** /time-entries/{id} | Update a specific time entries resource
*@VerysOracleSdk.TimeEntriesTotalsApi* | [**getTimeEntriesTotals**](docs/TimeEntriesTotalsApi.md#getTimeEntriesTotals) | **GET** /time-entries-totals/{type} | Get all time entries totals
*@VerysOracleSdk.TimeEntriesTotalsApi* | [**getTimeEntriesTotalsById**](docs/TimeEntriesTotalsApi.md#getTimeEntriesTotalsById) | **GET** /time-entries-totals/{type}/{id} | Get time entries totals
*@VerysOracleSdk.TimeEntriesTotalsApi* | [**updateTimeEntriesTotalsById**](docs/TimeEntriesTotalsApi.md#updateTimeEntriesTotalsById) | **PATCH** /time-entries-totals/{type}/{id} | Update time entries totals resource
*@VerysOracleSdk.TitleBandsApi* | [**createTitleBand**](docs/TitleBandsApi.md#createTitleBand) | **POST** /title-bands | Create a new &#x60;title band&#x60;
*@VerysOracleSdk.TitleBandsApi* | [**createTitleBandsByIdRelationshipsEmployees**](docs/TitleBandsApi.md#createTitleBandsByIdRelationshipsEmployees) | **POST** /title-bands/{id}/relationships/employees | Create &#x60;employees&#x60; relationship from a &#x60;title bands&#x60; resource by Id
*@VerysOracleSdk.TitleBandsApi* | [**deleteTitleBandsByIdRelationshipsEmployees**](docs/TitleBandsApi.md#deleteTitleBandsByIdRelationshipsEmployees) | **DELETE** /title-bands/{id}/relationships/employees | Delete &#x60;employees&#x60; relationship from a &#x60;title bands&#x60; resource by Id
*@VerysOracleSdk.TitleBandsApi* | [**getTitleBands**](docs/TitleBandsApi.md#getTitleBands) | **GET** /title-bands | Get all &#x60;title bands&#x60;
*@VerysOracleSdk.TitleBandsApi* | [**getTitleBandsById**](docs/TitleBandsApi.md#getTitleBandsById) | **GET** /title-bands/{id} | Get a &#x60;title-bands&#x60; resource
*@VerysOracleSdk.TitleBandsApi* | [**getTitleBandsByIdEmployees**](docs/TitleBandsApi.md#getTitleBandsByIdEmployees) | **GET** /title-bands/{id}/employees | Get &#x60;employees&#x60; that belong to a &#x60;title bands&#x60; resource by Id
*@VerysOracleSdk.TitleBandsApi* | [**getTitleBandsByIdRelationshipsEmployees**](docs/TitleBandsApi.md#getTitleBandsByIdRelationshipsEmployees) | **GET** /title-bands/{id}/relationships/employees | Get &#x60;employees&#x60; relationship from a &#x60;title bands&#x60; resource by Id
*@VerysOracleSdk.TitleBandsApi* | [**updateTitleBandsById**](docs/TitleBandsApi.md#updateTitleBandsById) | **PATCH** /title-bands/{id} | Update a specific &#x60;title band&#x60; resource
*@VerysOracleSdk.TitleBandsApi* | [**updateTitleBandsByIdRelationshipsEmployees**](docs/TitleBandsApi.md#updateTitleBandsByIdRelationshipsEmployees) | **PATCH** /title-bands/{id}/relationships/employees | Update &#x60;employees&#x60; relationship from a &#x60;title bands&#x60; resource by Id
*@VerysOracleSdk.TitleGradesApi* | [**createTitleGrade**](docs/TitleGradesApi.md#createTitleGrade) | **POST** /title-grades | Create a new &#x60;title grade&#x60;
*@VerysOracleSdk.TitleGradesApi* | [**createTitleGradesByIdRelationshipsEmployees**](docs/TitleGradesApi.md#createTitleGradesByIdRelationshipsEmployees) | **POST** /title-grades/{id}/relationships/employees | Create &#x60;employees&#x60; relationship from a &#x60;title grades&#x60; resource by Id
*@VerysOracleSdk.TitleGradesApi* | [**deleteTitleGradesByIdRelationshipsEmployees**](docs/TitleGradesApi.md#deleteTitleGradesByIdRelationshipsEmployees) | **DELETE** /title-grades/{id}/relationships/employees | Delete &#x60;employees&#x60; relationship from a &#x60;title grades&#x60; resource by Id
*@VerysOracleSdk.TitleGradesApi* | [**getTitleGrades**](docs/TitleGradesApi.md#getTitleGrades) | **GET** /title-grades | Get all &#x60;title grades&#x60;
*@VerysOracleSdk.TitleGradesApi* | [**getTitleGradesById**](docs/TitleGradesApi.md#getTitleGradesById) | **GET** /title-grades/{id} | Get a &#x60;title-grades&#x60; resource
*@VerysOracleSdk.TitleGradesApi* | [**getTitleGradesByIdEmployees**](docs/TitleGradesApi.md#getTitleGradesByIdEmployees) | **GET** /title-grades/{id}/employees | Get &#x60;employees&#x60; that belong to a &#x60;title grades&#x60; resource by Id
*@VerysOracleSdk.TitleGradesApi* | [**getTitleGradesByIdRelationshipsEmployees**](docs/TitleGradesApi.md#getTitleGradesByIdRelationshipsEmployees) | **GET** /title-grades/{id}/relationships/employees | Get &#x60;employees&#x60; relationship from a &#x60;title grades&#x60; resource by Id
*@VerysOracleSdk.TitleGradesApi* | [**updateTitleGradesById**](docs/TitleGradesApi.md#updateTitleGradesById) | **PATCH** /title-grades/{id} | Update a specific &#x60;title grade&#x60; resource
*@VerysOracleSdk.TitleGradesApi* | [**updateTitleGradesByIdRelationshipsEmployees**](docs/TitleGradesApi.md#updateTitleGradesByIdRelationshipsEmployees) | **PATCH** /title-grades/{id}/relationships/employees | Update &#x60;employees&#x60; relationship from a &#x60;title grades&#x60; resource by Id
*@VerysOracleSdk.UsersApi* | [**createEmployeeInvitations**](docs/UsersApi.md#createEmployeeInvitations) | **POST** /users/employee-invitations | Creates a &#x60;accept invitations&#x60; resource
*@VerysOracleSdk.UsersApi* | [**createPasswordResetEmails**](docs/UsersApi.md#createPasswordResetEmails) | **POST** /users/password-reset-emails | Creates a &#x60;password reset emails&#x60; resource for an user
*@VerysOracleSdk.UsersApi* | [**createPasswordResets**](docs/UsersApi.md#createPasswordResets) | **POST** /users/password-resets | Creates a &#x60;password resets&#x60; resource
*@VerysOracleSdk.UsersApi* | [**createRegistrationConfirmationEmails**](docs/UsersApi.md#createRegistrationConfirmationEmails) | **POST** /users/{id}/registration-confirmation-emails | Creates a &#x60;registration confirmation emails&#x60; resource
*@VerysOracleSdk.UsersApi* | [**createRegistrationConfirmations**](docs/UsersApi.md#createRegistrationConfirmations) | **POST** /users/registration-confirmations | Creates a &#x60;registration confirmations&#x60; resource
*@VerysOracleSdk.UsersApi* | [**createUsers**](docs/UsersApi.md#createUsers) | **POST** /users | Create a new &#x60;users&#x60; resource
*@VerysOracleSdk.ZohoApi* | [**enableZohoNotifications**](docs/ZohoApi.md#enableZohoNotifications) | **GET** /zoho/enable-notifications | Enable Zoho notifications
*@VerysOracleSdk.ZohoApi* | [**getZohoAccessToken**](docs/ZohoApi.md#getZohoAccessToken) | **GET** /zoho/access-token | Returns a Zoho access token
*@VerysOracleSdk.ZohoApi* | [**getZohoIntegrationConfiguration**](docs/ZohoApi.md#getZohoIntegrationConfiguration) | **GET** /zoho-integration-configuration | Gets the Zoho integration configuration
*@VerysOracleSdk.ZohoApi* | [**zohoOauthAccessTokenRequest**](docs/ZohoApi.md#zohoOauthAccessTokenRequest) | **POST** /zoho/oauth-access-token-request | Zoho&#39;s OAuth Access Token Request
*@VerysOracleSdk.ZohoApi* | [**zohoOauthAuthorizationUrl**](docs/ZohoApi.md#zohoOauthAuthorizationUrl) | **GET** /zoho/oauth-authorization-url | Returns a Zoho auth URL
*@VerysOracleSdk.ZohoDealsApi* | [**getZohoDeals**](docs/ZohoDealsApi.md#getZohoDeals) | **GET** /zoho-deals | Get Zoho deals
*@VerysOracleSdk.ZohoDealsApi* | [**getZohoDealsByIds**](docs/ZohoDealsApi.md#getZohoDealsByIds) | **GET** /zoho-deals/coql | Get Zoho deals by ids
*@VerysOracleSdk.ZohoIntegrationConfigurationApi* | [**getZohoIntegrationConfiguration**](docs/ZohoIntegrationConfigurationApi.md#getZohoIntegrationConfiguration) | **GET** /zoho-integration-configuration | Gets the Zoho integration configuration


## Documentation for Models

 - [@VerysOracleSdk.AptitudeRelationship](docs/AptitudeRelationship.md)
 - [@VerysOracleSdk.AptitudeRelationshipItem](docs/AptitudeRelationshipItem.md)
 - [@VerysOracleSdk.Aptitudes](docs/Aptitudes.md)
 - [@VerysOracleSdk.AptitudesAttributes](docs/AptitudesAttributes.md)
 - [@VerysOracleSdk.AptitudesCreate](docs/AptitudesCreate.md)
 - [@VerysOracleSdk.AptitudesCreateModel](docs/AptitudesCreateModel.md)
 - [@VerysOracleSdk.AptitudesMeta](docs/AptitudesMeta.md)
 - [@VerysOracleSdk.AptitudesRelationship](docs/AptitudesRelationship.md)
 - [@VerysOracleSdk.AptitudesSingleSuccessModel](docs/AptitudesSingleSuccessModel.md)
 - [@VerysOracleSdk.AptitudesSuccessModel](docs/AptitudesSuccessModel.md)
 - [@VerysOracleSdk.AptitudesType](docs/AptitudesType.md)
 - [@VerysOracleSdk.AptitudesUpdateModel](docs/AptitudesUpdateModel.md)
 - [@VerysOracleSdk.BigTimeBulkImportModel](docs/BigTimeBulkImportModel.md)
 - [@VerysOracleSdk.BigTimeBulkImportModelBigTime](docs/BigTimeBulkImportModelBigTime.md)
 - [@VerysOracleSdk.BigTimeBulkImportSuccessModel](docs/BigTimeBulkImportSuccessModel.md)
 - [@VerysOracleSdk.BusinessUnitRelationShip](docs/BusinessUnitRelationShip.md)
 - [@VerysOracleSdk.BusinessUnitRelationShipData](docs/BusinessUnitRelationShipData.md)
 - [@VerysOracleSdk.BusinessUnits](docs/BusinessUnits.md)
 - [@VerysOracleSdk.BusinessUnitsAttributes](docs/BusinessUnitsAttributes.md)
 - [@VerysOracleSdk.BusinessUnitsCreate](docs/BusinessUnitsCreate.md)
 - [@VerysOracleSdk.BusinessUnitsCreateModel](docs/BusinessUnitsCreateModel.md)
 - [@VerysOracleSdk.BusinessUnitsRelationShips](docs/BusinessUnitsRelationShips.md)
 - [@VerysOracleSdk.BusinessUnitsSingleSuccessModel](docs/BusinessUnitsSingleSuccessModel.md)
 - [@VerysOracleSdk.BusinessUnitsSuccessModel](docs/BusinessUnitsSuccessModel.md)
 - [@VerysOracleSdk.BusinessUnitsType](docs/BusinessUnitsType.md)
 - [@VerysOracleSdk.BusinessUnitsUpdateModel](docs/BusinessUnitsUpdateModel.md)
 - [@VerysOracleSdk.CandidateRelationship](docs/CandidateRelationship.md)
 - [@VerysOracleSdk.CandidateRelationshipItem](docs/CandidateRelationshipItem.md)
 - [@VerysOracleSdk.Candidates](docs/Candidates.md)
 - [@VerysOracleSdk.CandidatesAttributes](docs/CandidatesAttributes.md)
 - [@VerysOracleSdk.CandidatesCreateModel](docs/CandidatesCreateModel.md)
 - [@VerysOracleSdk.CandidatesRelationship](docs/CandidatesRelationship.md)
 - [@VerysOracleSdk.CandidatesRelationships](docs/CandidatesRelationships.md)
 - [@VerysOracleSdk.CandidatesSingleSuccessModel](docs/CandidatesSingleSuccessModel.md)
 - [@VerysOracleSdk.CandidatesSuccessModel](docs/CandidatesSuccessModel.md)
 - [@VerysOracleSdk.CandidatesType](docs/CandidatesType.md)
 - [@VerysOracleSdk.CandidatesUpdateModel](docs/CandidatesUpdateModel.md)
 - [@VerysOracleSdk.CandidatesWithEmployee](docs/CandidatesWithEmployee.md)
 - [@VerysOracleSdk.CandidatesWithEmployeeAttributes](docs/CandidatesWithEmployeeAttributes.md)
 - [@VerysOracleSdk.CandidatesWithEmployeeCreate](docs/CandidatesWithEmployeeCreate.md)
 - [@VerysOracleSdk.CandidatesWithEmployeeRelationships](docs/CandidatesWithEmployeeRelationships.md)
 - [@VerysOracleSdk.CandidatesWithoutEmployee](docs/CandidatesWithoutEmployee.md)
 - [@VerysOracleSdk.CandidatesWithoutEmployeeAttributes](docs/CandidatesWithoutEmployeeAttributes.md)
 - [@VerysOracleSdk.CandidatesWithoutEmployeeCreate](docs/CandidatesWithoutEmployeeCreate.md)
 - [@VerysOracleSdk.CandidatesWithoutEmployeeRelationships](docs/CandidatesWithoutEmployeeRelationships.md)
 - [@VerysOracleSdk.CertificationAuthorities](docs/CertificationAuthorities.md)
 - [@VerysOracleSdk.CertificationAuthoritiesAttributes](docs/CertificationAuthoritiesAttributes.md)
 - [@VerysOracleSdk.CertificationAuthoritiesCreate](docs/CertificationAuthoritiesCreate.md)
 - [@VerysOracleSdk.CertificationAuthoritiesCreateModel](docs/CertificationAuthoritiesCreateModel.md)
 - [@VerysOracleSdk.CertificationAuthoritiesRelationship](docs/CertificationAuthoritiesRelationship.md)
 - [@VerysOracleSdk.CertificationAuthoritiesRelationships](docs/CertificationAuthoritiesRelationships.md)
 - [@VerysOracleSdk.CertificationAuthoritiesSingleSuccessModel](docs/CertificationAuthoritiesSingleSuccessModel.md)
 - [@VerysOracleSdk.CertificationAuthoritiesSuccessModel](docs/CertificationAuthoritiesSuccessModel.md)
 - [@VerysOracleSdk.CertificationAuthoritiesType](docs/CertificationAuthoritiesType.md)
 - [@VerysOracleSdk.CertificationAuthoritiesUpdateModel](docs/CertificationAuthoritiesUpdateModel.md)
 - [@VerysOracleSdk.CertificationAuthorityRelationship](docs/CertificationAuthorityRelationship.md)
 - [@VerysOracleSdk.CertificationAuthorityRelationshipItem](docs/CertificationAuthorityRelationshipItem.md)
 - [@VerysOracleSdk.CertificationNameRelationship](docs/CertificationNameRelationship.md)
 - [@VerysOracleSdk.CertificationNameRelationshipItem](docs/CertificationNameRelationshipItem.md)
 - [@VerysOracleSdk.CertificationNames](docs/CertificationNames.md)
 - [@VerysOracleSdk.CertificationNamesAttributes](docs/CertificationNamesAttributes.md)
 - [@VerysOracleSdk.CertificationNamesCreate](docs/CertificationNamesCreate.md)
 - [@VerysOracleSdk.CertificationNamesCreateModel](docs/CertificationNamesCreateModel.md)
 - [@VerysOracleSdk.CertificationNamesRelationship](docs/CertificationNamesRelationship.md)
 - [@VerysOracleSdk.CertificationNamesRelationships](docs/CertificationNamesRelationships.md)
 - [@VerysOracleSdk.CertificationNamesSingleSuccessModel](docs/CertificationNamesSingleSuccessModel.md)
 - [@VerysOracleSdk.CertificationNamesSuccessModel](docs/CertificationNamesSuccessModel.md)
 - [@VerysOracleSdk.CertificationNamesType](docs/CertificationNamesType.md)
 - [@VerysOracleSdk.CertificationNamesUpdateModel](docs/CertificationNamesUpdateModel.md)
 - [@VerysOracleSdk.CertificationRelationship](docs/CertificationRelationship.md)
 - [@VerysOracleSdk.CertificationRelationshipItem](docs/CertificationRelationshipItem.md)
 - [@VerysOracleSdk.Certifications](docs/Certifications.md)
 - [@VerysOracleSdk.CertificationsAttributes](docs/CertificationsAttributes.md)
 - [@VerysOracleSdk.CertificationsCreate](docs/CertificationsCreate.md)
 - [@VerysOracleSdk.CertificationsCreateModel](docs/CertificationsCreateModel.md)
 - [@VerysOracleSdk.CertificationsRelationship](docs/CertificationsRelationship.md)
 - [@VerysOracleSdk.CertificationsRelationships](docs/CertificationsRelationships.md)
 - [@VerysOracleSdk.CertificationsSingleSuccessModel](docs/CertificationsSingleSuccessModel.md)
 - [@VerysOracleSdk.CertificationsSuccessModel](docs/CertificationsSuccessModel.md)
 - [@VerysOracleSdk.CertificationsType](docs/CertificationsType.md)
 - [@VerysOracleSdk.CertificationsUpdateModel](docs/CertificationsUpdateModel.md)
 - [@VerysOracleSdk.ChartListItem](docs/ChartListItem.md)
 - [@VerysOracleSdk.Charts](docs/Charts.md)
 - [@VerysOracleSdk.ChartsAttributes](docs/ChartsAttributes.md)
 - [@VerysOracleSdk.ChartsAttributesDataset](docs/ChartsAttributesDataset.md)
 - [@VerysOracleSdk.ChartsListSuccessModel](docs/ChartsListSuccessModel.md)
 - [@VerysOracleSdk.ChartsMeta](docs/ChartsMeta.md)
 - [@VerysOracleSdk.ChartsSingleSuccessModel](docs/ChartsSingleSuccessModel.md)
 - [@VerysOracleSdk.ChartsType](docs/ChartsType.md)
 - [@VerysOracleSdk.ClientError](docs/ClientError.md)
 - [@VerysOracleSdk.Companies](docs/Companies.md)
 - [@VerysOracleSdk.CompaniesAttributes](docs/CompaniesAttributes.md)
 - [@VerysOracleSdk.CompaniesCreate](docs/CompaniesCreate.md)
 - [@VerysOracleSdk.CompaniesCreateModel](docs/CompaniesCreateModel.md)
 - [@VerysOracleSdk.CompaniesRelationships](docs/CompaniesRelationships.md)
 - [@VerysOracleSdk.CompaniesSingleSuccessModel](docs/CompaniesSingleSuccessModel.md)
 - [@VerysOracleSdk.CompaniesSuccessModel](docs/CompaniesSuccessModel.md)
 - [@VerysOracleSdk.CompaniesType](docs/CompaniesType.md)
 - [@VerysOracleSdk.CompaniesUpdateModel](docs/CompaniesUpdateModel.md)
 - [@VerysOracleSdk.CompanyLocationRelationship](docs/CompanyLocationRelationship.md)
 - [@VerysOracleSdk.CompanyLocationRelationshipItem](docs/CompanyLocationRelationshipItem.md)
 - [@VerysOracleSdk.CompanyLocations](docs/CompanyLocations.md)
 - [@VerysOracleSdk.CompanyLocationsAttributes](docs/CompanyLocationsAttributes.md)
 - [@VerysOracleSdk.CompanyLocationsCreate](docs/CompanyLocationsCreate.md)
 - [@VerysOracleSdk.CompanyLocationsCreateModel](docs/CompanyLocationsCreateModel.md)
 - [@VerysOracleSdk.CompanyLocationsRelationship](docs/CompanyLocationsRelationship.md)
 - [@VerysOracleSdk.CompanyLocationsRelationships](docs/CompanyLocationsRelationships.md)
 - [@VerysOracleSdk.CompanyLocationsSingleSuccessModel](docs/CompanyLocationsSingleSuccessModel.md)
 - [@VerysOracleSdk.CompanyLocationsSuccessModel](docs/CompanyLocationsSuccessModel.md)
 - [@VerysOracleSdk.CompanyLocationsType](docs/CompanyLocationsType.md)
 - [@VerysOracleSdk.CompanyLocationsUpdateModel](docs/CompanyLocationsUpdateModel.md)
 - [@VerysOracleSdk.CompanyRelationship](docs/CompanyRelationship.md)
 - [@VerysOracleSdk.CompanyRelationshipData](docs/CompanyRelationshipData.md)
 - [@VerysOracleSdk.EmployeeAllocationSequenceRelationship](docs/EmployeeAllocationSequenceRelationship.md)
 - [@VerysOracleSdk.EmployeeAllocationSequenceRelationshipItem](docs/EmployeeAllocationSequenceRelationshipItem.md)
 - [@VerysOracleSdk.EmployeeAllocationSequences](docs/EmployeeAllocationSequences.md)
 - [@VerysOracleSdk.EmployeeAllocationSequencesAttributes](docs/EmployeeAllocationSequencesAttributes.md)
 - [@VerysOracleSdk.EmployeeAllocationSequencesRelationship](docs/EmployeeAllocationSequencesRelationship.md)
 - [@VerysOracleSdk.EmployeeAllocationSequencesRelationships](docs/EmployeeAllocationSequencesRelationships.md)
 - [@VerysOracleSdk.EmployeeAllocationSequencesSingleSuccessModel](docs/EmployeeAllocationSequencesSingleSuccessModel.md)
 - [@VerysOracleSdk.EmployeeAllocationSequencesSuccessModel](docs/EmployeeAllocationSequencesSuccessModel.md)
 - [@VerysOracleSdk.EmployeeAllocationSequencesType](docs/EmployeeAllocationSequencesType.md)
 - [@VerysOracleSdk.EmployeeAllocationTotals](docs/EmployeeAllocationTotals.md)
 - [@VerysOracleSdk.EmployeeAllocationTotalsAttributes](docs/EmployeeAllocationTotalsAttributes.md)
 - [@VerysOracleSdk.EmployeeAllocationTotalsRelationships](docs/EmployeeAllocationTotalsRelationships.md)
 - [@VerysOracleSdk.EmployeeAllocationTotalsSingleSuccessModel](docs/EmployeeAllocationTotalsSingleSuccessModel.md)
 - [@VerysOracleSdk.EmployeeAllocationTotalsSuccessModel](docs/EmployeeAllocationTotalsSuccessModel.md)
 - [@VerysOracleSdk.EmployeeInterestRelationship](docs/EmployeeInterestRelationship.md)
 - [@VerysOracleSdk.EmployeeInterestRelationshipItem](docs/EmployeeInterestRelationshipItem.md)
 - [@VerysOracleSdk.EmployeeInterestSingleSuccessModel](docs/EmployeeInterestSingleSuccessModel.md)
 - [@VerysOracleSdk.EmployeeInterests](docs/EmployeeInterests.md)
 - [@VerysOracleSdk.EmployeeInterestsCreate](docs/EmployeeInterestsCreate.md)
 - [@VerysOracleSdk.EmployeeInterestsCreateModel](docs/EmployeeInterestsCreateModel.md)
 - [@VerysOracleSdk.EmployeeInterestsRelationship](docs/EmployeeInterestsRelationship.md)
 - [@VerysOracleSdk.EmployeeInterestsRelationships](docs/EmployeeInterestsRelationships.md)
 - [@VerysOracleSdk.EmployeeInterestsSuccessModel](docs/EmployeeInterestsSuccessModel.md)
 - [@VerysOracleSdk.EmployeeInterestsType](docs/EmployeeInterestsType.md)
 - [@VerysOracleSdk.EmployeeInterestsUpdateModel](docs/EmployeeInterestsUpdateModel.md)
 - [@VerysOracleSdk.EmployeeInvitationEmailsCreate](docs/EmployeeInvitationEmailsCreate.md)
 - [@VerysOracleSdk.EmployeeInvitationEmailsCreateModel](docs/EmployeeInvitationEmailsCreateModel.md)
 - [@VerysOracleSdk.EmployeeInvitationEmailsRelationships](docs/EmployeeInvitationEmailsRelationships.md)
 - [@VerysOracleSdk.EmployeeInvitationEmailsType](docs/EmployeeInvitationEmailsType.md)
 - [@VerysOracleSdk.EmployeeInvitationsAttributes](docs/EmployeeInvitationsAttributes.md)
 - [@VerysOracleSdk.EmployeeInvitationsCreate](docs/EmployeeInvitationsCreate.md)
 - [@VerysOracleSdk.EmployeeInvitationsCreateModel](docs/EmployeeInvitationsCreateModel.md)
 - [@VerysOracleSdk.EmployeeInvitationsType](docs/EmployeeInvitationsType.md)
 - [@VerysOracleSdk.EmployeeRelationship](docs/EmployeeRelationship.md)
 - [@VerysOracleSdk.EmployeeRelationshipItem](docs/EmployeeRelationshipItem.md)
 - [@VerysOracleSdk.EmployeeRoles](docs/EmployeeRoles.md)
 - [@VerysOracleSdk.EmployeeRolesAttributes](docs/EmployeeRolesAttributes.md)
 - [@VerysOracleSdk.EmployeeRolesRelationship](docs/EmployeeRolesRelationship.md)
 - [@VerysOracleSdk.EmployeeRolesRelationshipItem](docs/EmployeeRolesRelationshipItem.md)
 - [@VerysOracleSdk.EmployeeRolesRelationships](docs/EmployeeRolesRelationships.md)
 - [@VerysOracleSdk.EmployeeRolesSuccessModel](docs/EmployeeRolesSuccessModel.md)
 - [@VerysOracleSdk.EmployeeRolesType](docs/EmployeeRolesType.md)
 - [@VerysOracleSdk.Employees](docs/Employees.md)
 - [@VerysOracleSdk.EmployeesAttributes](docs/EmployeesAttributes.md)
 - [@VerysOracleSdk.EmployeesCreate](docs/EmployeesCreate.md)
 - [@VerysOracleSdk.EmployeesCreateModel](docs/EmployeesCreateModel.md)
 - [@VerysOracleSdk.EmployeesDefaultProjectsRelationship](docs/EmployeesDefaultProjectsRelationship.md)
 - [@VerysOracleSdk.EmployeesDefaultProjectsRelationshipItem](docs/EmployeesDefaultProjectsRelationshipItem.md)
 - [@VerysOracleSdk.EmployeesRelationship](docs/EmployeesRelationship.md)
 - [@VerysOracleSdk.EmployeesRelationships](docs/EmployeesRelationships.md)
 - [@VerysOracleSdk.EmployeesRelationshipsDefaultProjectsSuccessModel](docs/EmployeesRelationshipsDefaultProjectsSuccessModel.md)
 - [@VerysOracleSdk.EmployeesSingleSuccessModel](docs/EmployeesSingleSuccessModel.md)
 - [@VerysOracleSdk.EmployeesSuccessModel](docs/EmployeesSuccessModel.md)
 - [@VerysOracleSdk.EmployeesType](docs/EmployeesType.md)
 - [@VerysOracleSdk.EmployeesUpdateModel](docs/EmployeesUpdateModel.md)
 - [@VerysOracleSdk.ErrorDescription](docs/ErrorDescription.md)
 - [@VerysOracleSdk.ErrorSource](docs/ErrorSource.md)
 - [@VerysOracleSdk.Features](docs/Features.md)
 - [@VerysOracleSdk.FeaturesAttributes](docs/FeaturesAttributes.md)
 - [@VerysOracleSdk.FeaturesRelationship](docs/FeaturesRelationship.md)
 - [@VerysOracleSdk.FeaturesRelationshipData](docs/FeaturesRelationshipData.md)
 - [@VerysOracleSdk.FeaturesSingleSuccessModel](docs/FeaturesSingleSuccessModel.md)
 - [@VerysOracleSdk.FeaturesSuccessModel](docs/FeaturesSuccessModel.md)
 - [@VerysOracleSdk.FeaturesType](docs/FeaturesType.md)
 - [@VerysOracleSdk.FeaturesUpdateModel](docs/FeaturesUpdateModel.md)
 - [@VerysOracleSdk.GetOauthAccessTokenSuccessModel](docs/GetOauthAccessTokenSuccessModel.md)
 - [@VerysOracleSdk.GetOauthAuthorizationUrlUrlSuccessModel](docs/GetOauthAuthorizationUrlUrlSuccessModel.md)
 - [@VerysOracleSdk.GetOauthAuthorizationUrlUrlSuccessModelData](docs/GetOauthAuthorizationUrlUrlSuccessModelData.md)
 - [@VerysOracleSdk.GetOauthAuthorizationUrlUrlSuccessModelDataAttributes](docs/GetOauthAuthorizationUrlUrlSuccessModelDataAttributes.md)
 - [@VerysOracleSdk.HealthCheck](docs/HealthCheck.md)
 - [@VerysOracleSdk.HealthCheckAllOf](docs/HealthCheckAllOf.md)
 - [@VerysOracleSdk.HealthCheckAttributes](docs/HealthCheckAttributes.md)
 - [@VerysOracleSdk.HealthCheckBase](docs/HealthCheckBase.md)
 - [@VerysOracleSdk.HealthCheckResponseModel](docs/HealthCheckResponseModel.md)
 - [@VerysOracleSdk.HubId](docs/HubId.md)
 - [@VerysOracleSdk.HubIdAttributes](docs/HubIdAttributes.md)
 - [@VerysOracleSdk.HubIdSuccessModel](docs/HubIdSuccessModel.md)
 - [@VerysOracleSdk.HubIdType](docs/HubIdType.md)
 - [@VerysOracleSdk.Integrations](docs/Integrations.md)
 - [@VerysOracleSdk.IntegrationsAttributes](docs/IntegrationsAttributes.md)
 - [@VerysOracleSdk.IntegrationsRelationship](docs/IntegrationsRelationship.md)
 - [@VerysOracleSdk.IntegrationsRelationshipData](docs/IntegrationsRelationshipData.md)
 - [@VerysOracleSdk.IntegrationsSingleSuccessModel](docs/IntegrationsSingleSuccessModel.md)
 - [@VerysOracleSdk.IntegrationsSuccessModel](docs/IntegrationsSuccessModel.md)
 - [@VerysOracleSdk.IntegrationsType](docs/IntegrationsType.md)
 - [@VerysOracleSdk.IntegrationsUpdateModel](docs/IntegrationsUpdateModel.md)
 - [@VerysOracleSdk.LocaleRelationship](docs/LocaleRelationship.md)
 - [@VerysOracleSdk.LocaleRelationshipItem](docs/LocaleRelationshipItem.md)
 - [@VerysOracleSdk.Locales](docs/Locales.md)
 - [@VerysOracleSdk.LocalesAttributes](docs/LocalesAttributes.md)
 - [@VerysOracleSdk.LocalesRelationship](docs/LocalesRelationship.md)
 - [@VerysOracleSdk.LocalesRelationships](docs/LocalesRelationships.md)
 - [@VerysOracleSdk.LocalesSingleSuccessModel](docs/LocalesSingleSuccessModel.md)
 - [@VerysOracleSdk.LocalesSuccessModel](docs/LocalesSuccessModel.md)
 - [@VerysOracleSdk.LocalesType](docs/LocalesType.md)
 - [@VerysOracleSdk.MyCertificationsCreate](docs/MyCertificationsCreate.md)
 - [@VerysOracleSdk.MyCertificationsCreateModel](docs/MyCertificationsCreateModel.md)
 - [@VerysOracleSdk.MyCertificationsRelationships](docs/MyCertificationsRelationships.md)
 - [@VerysOracleSdk.MyCertificationsUpdate](docs/MyCertificationsUpdate.md)
 - [@VerysOracleSdk.MyCertificationsUpdateModel](docs/MyCertificationsUpdateModel.md)
 - [@VerysOracleSdk.MyEmployeeInterests](docs/MyEmployeeInterests.md)
 - [@VerysOracleSdk.MyEmployeeInterestsCreate](docs/MyEmployeeInterestsCreate.md)
 - [@VerysOracleSdk.MyEmployeeInterestsCreateModel](docs/MyEmployeeInterestsCreateModel.md)
 - [@VerysOracleSdk.MyEmployeeInterestsRelationships](docs/MyEmployeeInterestsRelationships.md)
 - [@VerysOracleSdk.MyEmployeeInterestsSuccessModel](docs/MyEmployeeInterestsSuccessModel.md)
 - [@VerysOracleSdk.MyEmployeeInterestsUpdateModel](docs/MyEmployeeInterestsUpdateModel.md)
 - [@VerysOracleSdk.MySkillAptitudes](docs/MySkillAptitudes.md)
 - [@VerysOracleSdk.MySkillAptitudesCreate](docs/MySkillAptitudesCreate.md)
 - [@VerysOracleSdk.MySkillAptitudesCreateModel](docs/MySkillAptitudesCreateModel.md)
 - [@VerysOracleSdk.MySkillAptitudesRelationships](docs/MySkillAptitudesRelationships.md)
 - [@VerysOracleSdk.MySkillAptitudesSuccessModel](docs/MySkillAptitudesSuccessModel.md)
 - [@VerysOracleSdk.MySkillAptitudesUpdateModel](docs/MySkillAptitudesUpdateModel.md)
 - [@VerysOracleSdk.MyTimeEntriesCreate](docs/MyTimeEntriesCreate.md)
 - [@VerysOracleSdk.MyTimeEntriesCreateModel](docs/MyTimeEntriesCreateModel.md)
 - [@VerysOracleSdk.MyTimeEntriesLimitedAttributes](docs/MyTimeEntriesLimitedAttributes.md)
 - [@VerysOracleSdk.MyTimeEntriesRelationships](docs/MyTimeEntriesRelationships.md)
 - [@VerysOracleSdk.MyTimeEntriesUpdate](docs/MyTimeEntriesUpdate.md)
 - [@VerysOracleSdk.MyTimeEntriesUpdateBulkModel](docs/MyTimeEntriesUpdateBulkModel.md)
 - [@VerysOracleSdk.MyTimeEntriesUpdateModel](docs/MyTimeEntriesUpdateModel.md)
 - [@VerysOracleSdk.OAuthAccessTokenRequestAttributes](docs/OAuthAccessTokenRequestAttributes.md)
 - [@VerysOracleSdk.OAuthAccessTokenRequestCreate](docs/OAuthAccessTokenRequestCreate.md)
 - [@VerysOracleSdk.OAuthAccessTokenRequestCreateModel](docs/OAuthAccessTokenRequestCreateModel.md)
 - [@VerysOracleSdk.OAuthAccessTokenRequestType](docs/OAuthAccessTokenRequestType.md)
 - [@VerysOracleSdk.OauthAccessToken](docs/OauthAccessToken.md)
 - [@VerysOracleSdk.OauthAccessTokenAttributes](docs/OauthAccessTokenAttributes.md)
 - [@VerysOracleSdk.OauthAccessTokenType](docs/OauthAccessTokenType.md)
 - [@VerysOracleSdk.OauthAuthorizationUrl](docs/OauthAuthorizationUrl.md)
 - [@VerysOracleSdk.OauthAuthorizationUrlAttributes](docs/OauthAuthorizationUrlAttributes.md)
 - [@VerysOracleSdk.OauthAuthorizationUrlType](docs/OauthAuthorizationUrlType.md)
 - [@VerysOracleSdk.PasswordResetEmailsAttributes](docs/PasswordResetEmailsAttributes.md)
 - [@VerysOracleSdk.PasswordResetEmailsCreate](docs/PasswordResetEmailsCreate.md)
 - [@VerysOracleSdk.PasswordResetEmailsCreateModel](docs/PasswordResetEmailsCreateModel.md)
 - [@VerysOracleSdk.PasswordResetEmailsType](docs/PasswordResetEmailsType.md)
 - [@VerysOracleSdk.PasswordResetsAttributes](docs/PasswordResetsAttributes.md)
 - [@VerysOracleSdk.PasswordResetsCreate](docs/PasswordResetsCreate.md)
 - [@VerysOracleSdk.PasswordResetsCreateModel](docs/PasswordResetsCreateModel.md)
 - [@VerysOracleSdk.PasswordResetsType](docs/PasswordResetsType.md)
 - [@VerysOracleSdk.PermissionType](docs/PermissionType.md)
 - [@VerysOracleSdk.Permissions](docs/Permissions.md)
 - [@VerysOracleSdk.PermissionsAttributes](docs/PermissionsAttributes.md)
 - [@VerysOracleSdk.PermissionsSingleSuccessModel](docs/PermissionsSingleSuccessModel.md)
 - [@VerysOracleSdk.PermissionsSuccessModel](docs/PermissionsSuccessModel.md)
 - [@VerysOracleSdk.PermissionsType](docs/PermissionsType.md)
 - [@VerysOracleSdk.Profile](docs/Profile.md)
 - [@VerysOracleSdk.ProfileAttributes](docs/ProfileAttributes.md)
 - [@VerysOracleSdk.ProfileRelationship](docs/ProfileRelationship.md)
 - [@VerysOracleSdk.ProfileRelationshipItem](docs/ProfileRelationshipItem.md)
 - [@VerysOracleSdk.ProfileRelationships](docs/ProfileRelationships.md)
 - [@VerysOracleSdk.ProfileSuccessModel](docs/ProfileSuccessModel.md)
 - [@VerysOracleSdk.ProfileType](docs/ProfileType.md)
 - [@VerysOracleSdk.ProfileUpdateModel](docs/ProfileUpdateModel.md)
 - [@VerysOracleSdk.ProfilesRelationship](docs/ProfilesRelationship.md)
 - [@VerysOracleSdk.ProformaConfigurationRelationship](docs/ProformaConfigurationRelationship.md)
 - [@VerysOracleSdk.ProformaConfigurationRelationshipItem](docs/ProformaConfigurationRelationshipItem.md)
 - [@VerysOracleSdk.ProformaConfigurations](docs/ProformaConfigurations.md)
 - [@VerysOracleSdk.ProformaConfigurationsAttributes](docs/ProformaConfigurationsAttributes.md)
 - [@VerysOracleSdk.ProformaConfigurationsCreate](docs/ProformaConfigurationsCreate.md)
 - [@VerysOracleSdk.ProformaConfigurationsCreateModel](docs/ProformaConfigurationsCreateModel.md)
 - [@VerysOracleSdk.ProformaConfigurationsRelationship](docs/ProformaConfigurationsRelationship.md)
 - [@VerysOracleSdk.ProformaConfigurationsRelationships](docs/ProformaConfigurationsRelationships.md)
 - [@VerysOracleSdk.ProformaConfigurationsSingleSuccessModel](docs/ProformaConfigurationsSingleSuccessModel.md)
 - [@VerysOracleSdk.ProformaConfigurationsSuccessModel](docs/ProformaConfigurationsSuccessModel.md)
 - [@VerysOracleSdk.ProformaConfigurationsType](docs/ProformaConfigurationsType.md)
 - [@VerysOracleSdk.ProformaConfigurationsUpdateModel](docs/ProformaConfigurationsUpdateModel.md)
 - [@VerysOracleSdk.ProjectFinancialTotals](docs/ProjectFinancialTotals.md)
 - [@VerysOracleSdk.ProjectFinancialTotalsAttributes](docs/ProjectFinancialTotalsAttributes.md)
 - [@VerysOracleSdk.ProjectFinancialTotalsRelationships](docs/ProjectFinancialTotalsRelationships.md)
 - [@VerysOracleSdk.ProjectMilestoneRelationship](docs/ProjectMilestoneRelationship.md)
 - [@VerysOracleSdk.ProjectMilestoneRelationshipItem](docs/ProjectMilestoneRelationshipItem.md)
 - [@VerysOracleSdk.ProjectMilestones](docs/ProjectMilestones.md)
 - [@VerysOracleSdk.ProjectMilestonesAttributes](docs/ProjectMilestonesAttributes.md)
 - [@VerysOracleSdk.ProjectMilestonesCreate](docs/ProjectMilestonesCreate.md)
 - [@VerysOracleSdk.ProjectMilestonesCreateModel](docs/ProjectMilestonesCreateModel.md)
 - [@VerysOracleSdk.ProjectMilestonesRelationship](docs/ProjectMilestonesRelationship.md)
 - [@VerysOracleSdk.ProjectMilestonesRelationships](docs/ProjectMilestonesRelationships.md)
 - [@VerysOracleSdk.ProjectMilestonesRelationshipsQualificationsSuccessModel](docs/ProjectMilestonesRelationshipsQualificationsSuccessModel.md)
 - [@VerysOracleSdk.ProjectMilestonesSingleSuccessModel](docs/ProjectMilestonesSingleSuccessModel.md)
 - [@VerysOracleSdk.ProjectMilestonesSuccessModel](docs/ProjectMilestonesSuccessModel.md)
 - [@VerysOracleSdk.ProjectMilestonesType](docs/ProjectMilestonesType.md)
 - [@VerysOracleSdk.ProjectMilestonesUpdateModel](docs/ProjectMilestonesUpdateModel.md)
 - [@VerysOracleSdk.ProjectPlanRequestsAttributes](docs/ProjectPlanRequestsAttributes.md)
 - [@VerysOracleSdk.ProjectPlanRequestsCreate](docs/ProjectPlanRequestsCreate.md)
 - [@VerysOracleSdk.ProjectPlanRequestsCreateModel](docs/ProjectPlanRequestsCreateModel.md)
 - [@VerysOracleSdk.ProjectPlanRequestsType](docs/ProjectPlanRequestsType.md)
 - [@VerysOracleSdk.ProjectProformaFinancialTotalsSuccessModel](docs/ProjectProformaFinancialTotalsSuccessModel.md)
 - [@VerysOracleSdk.ProjectRelationship](docs/ProjectRelationship.md)
 - [@VerysOracleSdk.ProjectRelationshipItem](docs/ProjectRelationshipItem.md)
 - [@VerysOracleSdk.ProjectRoleRelationship](docs/ProjectRoleRelationship.md)
 - [@VerysOracleSdk.ProjectRoleRelationshipItem](docs/ProjectRoleRelationshipItem.md)
 - [@VerysOracleSdk.ProjectRoleTypeRelationship](docs/ProjectRoleTypeRelationship.md)
 - [@VerysOracleSdk.ProjectRoleTypeRelationshipItem](docs/ProjectRoleTypeRelationshipItem.md)
 - [@VerysOracleSdk.ProjectRoleTypes](docs/ProjectRoleTypes.md)
 - [@VerysOracleSdk.ProjectRoleTypesAttributes](docs/ProjectRoleTypesAttributes.md)
 - [@VerysOracleSdk.ProjectRoleTypesCreate](docs/ProjectRoleTypesCreate.md)
 - [@VerysOracleSdk.ProjectRoleTypesCreateModel](docs/ProjectRoleTypesCreateModel.md)
 - [@VerysOracleSdk.ProjectRoleTypesRelationship](docs/ProjectRoleTypesRelationship.md)
 - [@VerysOracleSdk.ProjectRoleTypesRelationships](docs/ProjectRoleTypesRelationships.md)
 - [@VerysOracleSdk.ProjectRoleTypesSingleSuccessModel](docs/ProjectRoleTypesSingleSuccessModel.md)
 - [@VerysOracleSdk.ProjectRoleTypesSuccessModel](docs/ProjectRoleTypesSuccessModel.md)
 - [@VerysOracleSdk.ProjectRoleTypesType](docs/ProjectRoleTypesType.md)
 - [@VerysOracleSdk.ProjectRoleTypesUpdateModel](docs/ProjectRoleTypesUpdateModel.md)
 - [@VerysOracleSdk.ProjectRoles](docs/ProjectRoles.md)
 - [@VerysOracleSdk.ProjectRolesAttributes](docs/ProjectRolesAttributes.md)
 - [@VerysOracleSdk.ProjectRolesCreate](docs/ProjectRolesCreate.md)
 - [@VerysOracleSdk.ProjectRolesCreateModel](docs/ProjectRolesCreateModel.md)
 - [@VerysOracleSdk.ProjectRolesRelationship](docs/ProjectRolesRelationship.md)
 - [@VerysOracleSdk.ProjectRolesRelationships](docs/ProjectRolesRelationships.md)
 - [@VerysOracleSdk.ProjectRolesRelationshipsQualificationsSuccessModel](docs/ProjectRolesRelationshipsQualificationsSuccessModel.md)
 - [@VerysOracleSdk.ProjectRolesSingleSuccessModel](docs/ProjectRolesSingleSuccessModel.md)
 - [@VerysOracleSdk.ProjectRolesSuccessModel](docs/ProjectRolesSuccessModel.md)
 - [@VerysOracleSdk.ProjectRolesType](docs/ProjectRolesType.md)
 - [@VerysOracleSdk.ProjectRolesUpdateModel](docs/ProjectRolesUpdateModel.md)
 - [@VerysOracleSdk.Projects](docs/Projects.md)
 - [@VerysOracleSdk.ProjectsAttributes](docs/ProjectsAttributes.md)
 - [@VerysOracleSdk.ProjectsCreate](docs/ProjectsCreate.md)
 - [@VerysOracleSdk.ProjectsCreateModel](docs/ProjectsCreateModel.md)
 - [@VerysOracleSdk.ProjectsRelationship](docs/ProjectsRelationship.md)
 - [@VerysOracleSdk.ProjectsRelationships](docs/ProjectsRelationships.md)
 - [@VerysOracleSdk.ProjectsSingleSuccessModel](docs/ProjectsSingleSuccessModel.md)
 - [@VerysOracleSdk.ProjectsSuccessModel](docs/ProjectsSuccessModel.md)
 - [@VerysOracleSdk.ProjectsType](docs/ProjectsType.md)
 - [@VerysOracleSdk.ProjectsUpdateModel](docs/ProjectsUpdateModel.md)
 - [@VerysOracleSdk.QualificationRelationship](docs/QualificationRelationship.md)
 - [@VerysOracleSdk.QualificationRelationshipItem](docs/QualificationRelationshipItem.md)
 - [@VerysOracleSdk.Qualifications](docs/Qualifications.md)
 - [@VerysOracleSdk.QualificationsCreate](docs/QualificationsCreate.md)
 - [@VerysOracleSdk.QualificationsCreateModel](docs/QualificationsCreateModel.md)
 - [@VerysOracleSdk.QualificationsRelationship](docs/QualificationsRelationship.md)
 - [@VerysOracleSdk.QualificationsRelationships](docs/QualificationsRelationships.md)
 - [@VerysOracleSdk.QualificationsSingleSuccessModel](docs/QualificationsSingleSuccessModel.md)
 - [@VerysOracleSdk.QualificationsSuccessModel](docs/QualificationsSuccessModel.md)
 - [@VerysOracleSdk.QualificationsType](docs/QualificationsType.md)
 - [@VerysOracleSdk.QualificationsUpdateModel](docs/QualificationsUpdateModel.md)
 - [@VerysOracleSdk.QueueJobs](docs/QueueJobs.md)
 - [@VerysOracleSdk.QueueJobsAllOf](docs/QueueJobsAllOf.md)
 - [@VerysOracleSdk.QueueJobsAttributes](docs/QueueJobsAttributes.md)
 - [@VerysOracleSdk.QueueJobsBase](docs/QueueJobsBase.md)
 - [@VerysOracleSdk.QueueJobsSingleSuccessModel](docs/QueueJobsSingleSuccessModel.md)
 - [@VerysOracleSdk.QueueJobsSuccessModel](docs/QueueJobsSuccessModel.md)
 - [@VerysOracleSdk.QuickBooksAuthenticateSuccessModel](docs/QuickBooksAuthenticateSuccessModel.md)
 - [@VerysOracleSdk.QuickBooksAuthenticateSuccessModelData](docs/QuickBooksAuthenticateSuccessModelData.md)
 - [@VerysOracleSdk.QuickBooksAuthenticateSuccessModelDataAttributes](docs/QuickBooksAuthenticateSuccessModelDataAttributes.md)
 - [@VerysOracleSdk.QuickBooksAuthenticateSuccessModelDataLinks](docs/QuickBooksAuthenticateSuccessModelDataLinks.md)
 - [@VerysOracleSdk.QuickBooksDesktopCustomerRelationship](docs/QuickBooksDesktopCustomerRelationship.md)
 - [@VerysOracleSdk.QuickBooksDesktopCustomerRelationshipData](docs/QuickBooksDesktopCustomerRelationshipData.md)
 - [@VerysOracleSdk.QuickBooksDesktopCustomers](docs/QuickBooksDesktopCustomers.md)
 - [@VerysOracleSdk.QuickBooksDesktopCustomersAttributes](docs/QuickBooksDesktopCustomersAttributes.md)
 - [@VerysOracleSdk.QuickBooksDesktopCustomersCreate](docs/QuickBooksDesktopCustomersCreate.md)
 - [@VerysOracleSdk.QuickBooksDesktopCustomersCreateModel](docs/QuickBooksDesktopCustomersCreateModel.md)
 - [@VerysOracleSdk.QuickBooksDesktopCustomersRelationships](docs/QuickBooksDesktopCustomersRelationships.md)
 - [@VerysOracleSdk.QuickBooksDesktopCustomersSingleSuccessModel](docs/QuickBooksDesktopCustomersSingleSuccessModel.md)
 - [@VerysOracleSdk.QuickBooksDesktopCustomersSuccessModel](docs/QuickBooksDesktopCustomersSuccessModel.md)
 - [@VerysOracleSdk.QuickBooksDesktopCustomersType](docs/QuickBooksDesktopCustomersType.md)
 - [@VerysOracleSdk.QuickBooksDesktopCustomersUpdateModel](docs/QuickBooksDesktopCustomersUpdateModel.md)
 - [@VerysOracleSdk.QuickBooksDesktopIntegrationConfiguration](docs/QuickBooksDesktopIntegrationConfiguration.md)
 - [@VerysOracleSdk.QuickBooksDesktopIntegrationConfigurationAttributes](docs/QuickBooksDesktopIntegrationConfigurationAttributes.md)
 - [@VerysOracleSdk.QuickBooksDesktopIntegrationConfigurationRelationship](docs/QuickBooksDesktopIntegrationConfigurationRelationship.md)
 - [@VerysOracleSdk.QuickBooksDesktopIntegrationConfigurationRelationshipData](docs/QuickBooksDesktopIntegrationConfigurationRelationshipData.md)
 - [@VerysOracleSdk.QuickBooksDesktopIntegrationConfigurationSuccessModel](docs/QuickBooksDesktopIntegrationConfigurationSuccessModel.md)
 - [@VerysOracleSdk.QuickBooksDesktopIntegrationConfigurationType](docs/QuickBooksDesktopIntegrationConfigurationType.md)
 - [@VerysOracleSdk.QuickBooksDesktopIntegrationConfigurationUpdateModel](docs/QuickBooksDesktopIntegrationConfigurationUpdateModel.md)
 - [@VerysOracleSdk.QuickBooksDesktopTimeTrackingEntries](docs/QuickBooksDesktopTimeTrackingEntries.md)
 - [@VerysOracleSdk.QuickBooksDesktopTimeTrackingEntriesAttributes](docs/QuickBooksDesktopTimeTrackingEntriesAttributes.md)
 - [@VerysOracleSdk.QuickBooksDesktopTimeTrackingEntriesCreate](docs/QuickBooksDesktopTimeTrackingEntriesCreate.md)
 - [@VerysOracleSdk.QuickBooksDesktopTimeTrackingEntriesCreateModel](docs/QuickBooksDesktopTimeTrackingEntriesCreateModel.md)
 - [@VerysOracleSdk.QuickBooksDesktopTimeTrackingEntriesRelationships](docs/QuickBooksDesktopTimeTrackingEntriesRelationships.md)
 - [@VerysOracleSdk.QuickBooksDesktopTimeTrackingEntriesSingleSuccessModel](docs/QuickBooksDesktopTimeTrackingEntriesSingleSuccessModel.md)
 - [@VerysOracleSdk.QuickBooksDesktopTimeTrackingEntriesSuccessModel](docs/QuickBooksDesktopTimeTrackingEntriesSuccessModel.md)
 - [@VerysOracleSdk.QuickBooksDesktopTimeTrackingEntriesType](docs/QuickBooksDesktopTimeTrackingEntriesType.md)
 - [@VerysOracleSdk.QuickBooksDesktopTimeTrackingEntriesUpdateModel](docs/QuickBooksDesktopTimeTrackingEntriesUpdateModel.md)
 - [@VerysOracleSdk.QuickBooksDesktopTimeTrackingEntryRelationship](docs/QuickBooksDesktopTimeTrackingEntryRelationship.md)
 - [@VerysOracleSdk.QuickBooksDesktopTimeTrackingEntryRelationshipData](docs/QuickBooksDesktopTimeTrackingEntryRelationshipData.md)
 - [@VerysOracleSdk.QuickBooksOAuthAccessTokenRequestAttributes](docs/QuickBooksOAuthAccessTokenRequestAttributes.md)
 - [@VerysOracleSdk.QuickBooksOAuthAccessTokenRequestCreate](docs/QuickBooksOAuthAccessTokenRequestCreate.md)
 - [@VerysOracleSdk.QuickBooksOAuthAccessTokenRequestCreateModel](docs/QuickBooksOAuthAccessTokenRequestCreateModel.md)
 - [@VerysOracleSdk.QuickBooksOAuthAccessTokenRequestType](docs/QuickBooksOAuthAccessTokenRequestType.md)
 - [@VerysOracleSdk.QuickBooksVendors](docs/QuickBooksVendors.md)
 - [@VerysOracleSdk.QuickBooksVendorsAttributes](docs/QuickBooksVendorsAttributes.md)
 - [@VerysOracleSdk.QuickBooksVendorsSuccessModel](docs/QuickBooksVendorsSuccessModel.md)
 - [@VerysOracleSdk.QuickBooksVendorsType](docs/QuickBooksVendorsType.md)
 - [@VerysOracleSdk.QuickbooksOauthCallbackSuccessModel](docs/QuickbooksOauthCallbackSuccessModel.md)
 - [@VerysOracleSdk.QuickbooksOauthCallbackSuccessModelData](docs/QuickbooksOauthCallbackSuccessModelData.md)
 - [@VerysOracleSdk.RegistrationConfirmationEmailsCreate](docs/RegistrationConfirmationEmailsCreate.md)
 - [@VerysOracleSdk.RegistrationConfirmationEmailsCreateModel](docs/RegistrationConfirmationEmailsCreateModel.md)
 - [@VerysOracleSdk.RegistrationConfirmationEmailsType](docs/RegistrationConfirmationEmailsType.md)
 - [@VerysOracleSdk.RegistrationConfirmationsAttributes](docs/RegistrationConfirmationsAttributes.md)
 - [@VerysOracleSdk.RegistrationConfirmationsCreate](docs/RegistrationConfirmationsCreate.md)
 - [@VerysOracleSdk.RegistrationConfirmationsCreateModel](docs/RegistrationConfirmationsCreateModel.md)
 - [@VerysOracleSdk.RegistrationConfirmationsType](docs/RegistrationConfirmationsType.md)
 - [@VerysOracleSdk.RelationshipObjectLinks](docs/RelationshipObjectLinks.md)
 - [@VerysOracleSdk.ResourceObjectLinks](docs/ResourceObjectLinks.md)
 - [@VerysOracleSdk.ResourceRelationship](docs/ResourceRelationship.md)
 - [@VerysOracleSdk.ResourceRelationshipItem](docs/ResourceRelationshipItem.md)
 - [@VerysOracleSdk.Resources](docs/Resources.md)
 - [@VerysOracleSdk.ResourcesAttributes](docs/ResourcesAttributes.md)
 - [@VerysOracleSdk.ResourcesRelationship](docs/ResourcesRelationship.md)
 - [@VerysOracleSdk.ResourcesRelationships](docs/ResourcesRelationships.md)
 - [@VerysOracleSdk.ResourcesSuccessModel](docs/ResourcesSuccessModel.md)
 - [@VerysOracleSdk.ResourcesType](docs/ResourcesType.md)
 - [@VerysOracleSdk.RoleRelationship](docs/RoleRelationship.md)
 - [@VerysOracleSdk.RoleRelationshipItem](docs/RoleRelationshipItem.md)
 - [@VerysOracleSdk.RoleResources](docs/RoleResources.md)
 - [@VerysOracleSdk.RoleResourcesAttributes](docs/RoleResourcesAttributes.md)
 - [@VerysOracleSdk.RoleResourcesCreate](docs/RoleResourcesCreate.md)
 - [@VerysOracleSdk.RoleResourcesCreateModel](docs/RoleResourcesCreateModel.md)
 - [@VerysOracleSdk.RoleResourcesRelationship](docs/RoleResourcesRelationship.md)
 - [@VerysOracleSdk.RoleResourcesRelationshipItem](docs/RoleResourcesRelationshipItem.md)
 - [@VerysOracleSdk.RoleResourcesRelationships](docs/RoleResourcesRelationships.md)
 - [@VerysOracleSdk.RoleResourcesRoles](docs/RoleResourcesRoles.md)
 - [@VerysOracleSdk.RoleResourcesSingleSuccessModel](docs/RoleResourcesSingleSuccessModel.md)
 - [@VerysOracleSdk.RoleResourcesSuccessModel](docs/RoleResourcesSuccessModel.md)
 - [@VerysOracleSdk.RoleResourcesType](docs/RoleResourcesType.md)
 - [@VerysOracleSdk.RoleResourcesUpdateModel](docs/RoleResourcesUpdateModel.md)
 - [@VerysOracleSdk.Roles](docs/Roles.md)
 - [@VerysOracleSdk.RolesAttributes](docs/RolesAttributes.md)
 - [@VerysOracleSdk.RolesCreate](docs/RolesCreate.md)
 - [@VerysOracleSdk.RolesCreateModel](docs/RolesCreateModel.md)
 - [@VerysOracleSdk.RolesRelationship](docs/RolesRelationship.md)
 - [@VerysOracleSdk.RolesRelationships](docs/RolesRelationships.md)
 - [@VerysOracleSdk.RolesRelationshipsEmployeesSuccessModel](docs/RolesRelationshipsEmployeesSuccessModel.md)
 - [@VerysOracleSdk.RolesSingleSuccessModel](docs/RolesSingleSuccessModel.md)
 - [@VerysOracleSdk.RolesSuccessModel](docs/RolesSuccessModel.md)
 - [@VerysOracleSdk.RolesType](docs/RolesType.md)
 - [@VerysOracleSdk.RolesUpdateModel](docs/RolesUpdateModel.md)
 - [@VerysOracleSdk.SalesforceIntegrationConfiguration](docs/SalesforceIntegrationConfiguration.md)
 - [@VerysOracleSdk.SalesforceIntegrationConfigurationAttributes](docs/SalesforceIntegrationConfigurationAttributes.md)
 - [@VerysOracleSdk.SalesforceIntegrationConfigurationRelationship](docs/SalesforceIntegrationConfigurationRelationship.md)
 - [@VerysOracleSdk.SalesforceIntegrationConfigurationRelationshipData](docs/SalesforceIntegrationConfigurationRelationshipData.md)
 - [@VerysOracleSdk.SalesforceIntegrationConfigurationSuccessModel](docs/SalesforceIntegrationConfigurationSuccessModel.md)
 - [@VerysOracleSdk.SalesforceIntegrationConfigurationType](docs/SalesforceIntegrationConfigurationType.md)
 - [@VerysOracleSdk.SalesforceIntegrationConfigurationUpdateModel](docs/SalesforceIntegrationConfigurationUpdateModel.md)
 - [@VerysOracleSdk.SalesforceOpportunities](docs/SalesforceOpportunities.md)
 - [@VerysOracleSdk.SalesforceOpportunitiesAttributes](docs/SalesforceOpportunitiesAttributes.md)
 - [@VerysOracleSdk.SalesforceOpportunitiesSuccessModel](docs/SalesforceOpportunitiesSuccessModel.md)
 - [@VerysOracleSdk.SalesforceOpportunitiesType](docs/SalesforceOpportunitiesType.md)
 - [@VerysOracleSdk.SearchTokens](docs/SearchTokens.md)
 - [@VerysOracleSdk.SearchTokensAllOf](docs/SearchTokensAllOf.md)
 - [@VerysOracleSdk.SearchTokensAttributes](docs/SearchTokensAttributes.md)
 - [@VerysOracleSdk.SearchTokensBase](docs/SearchTokensBase.md)
 - [@VerysOracleSdk.SearchTokensCreate](docs/SearchTokensCreate.md)
 - [@VerysOracleSdk.SearchTokensCreateModel](docs/SearchTokensCreateModel.md)
 - [@VerysOracleSdk.SearchTokensSingleSuccessModel](docs/SearchTokensSingleSuccessModel.md)
 - [@VerysOracleSdk.SearchTokensType](docs/SearchTokensType.md)
 - [@VerysOracleSdk.ServerError](docs/ServerError.md)
 - [@VerysOracleSdk.Sessions](docs/Sessions.md)
 - [@VerysOracleSdk.SessionsAllOf](docs/SessionsAllOf.md)
 - [@VerysOracleSdk.SessionsAttributes](docs/SessionsAttributes.md)
 - [@VerysOracleSdk.SessionsBase](docs/SessionsBase.md)
 - [@VerysOracleSdk.SessionsCreate](docs/SessionsCreate.md)
 - [@VerysOracleSdk.SessionsCreateModel](docs/SessionsCreateModel.md)
 - [@VerysOracleSdk.SessionsSingleSuccessModel](docs/SessionsSingleSuccessModel.md)
 - [@VerysOracleSdk.SessionsType](docs/SessionsType.md)
 - [@VerysOracleSdk.SkillAptitudeRelationship](docs/SkillAptitudeRelationship.md)
 - [@VerysOracleSdk.SkillAptitudeRelationshipItem](docs/SkillAptitudeRelationshipItem.md)
 - [@VerysOracleSdk.SkillAptitudes](docs/SkillAptitudes.md)
 - [@VerysOracleSdk.SkillAptitudesCreate](docs/SkillAptitudesCreate.md)
 - [@VerysOracleSdk.SkillAptitudesCreateModel](docs/SkillAptitudesCreateModel.md)
 - [@VerysOracleSdk.SkillAptitudesRelationship](docs/SkillAptitudesRelationship.md)
 - [@VerysOracleSdk.SkillAptitudesRelationships](docs/SkillAptitudesRelationships.md)
 - [@VerysOracleSdk.SkillAptitudesSingleSuccessModel](docs/SkillAptitudesSingleSuccessModel.md)
 - [@VerysOracleSdk.SkillAptitudesSuccessModel](docs/SkillAptitudesSuccessModel.md)
 - [@VerysOracleSdk.SkillAptitudesType](docs/SkillAptitudesType.md)
 - [@VerysOracleSdk.SkillAptitudesUpdateModel](docs/SkillAptitudesUpdateModel.md)
 - [@VerysOracleSdk.SkillRelationship](docs/SkillRelationship.md)
 - [@VerysOracleSdk.SkillRelationshipItem](docs/SkillRelationshipItem.md)
 - [@VerysOracleSdk.Skills](docs/Skills.md)
 - [@VerysOracleSdk.SkillsAttributes](docs/SkillsAttributes.md)
 - [@VerysOracleSdk.SkillsCreate](docs/SkillsCreate.md)
 - [@VerysOracleSdk.SkillsCreateModel](docs/SkillsCreateModel.md)
 - [@VerysOracleSdk.SkillsRelationship](docs/SkillsRelationship.md)
 - [@VerysOracleSdk.SkillsSingleSuccessModel](docs/SkillsSingleSuccessModel.md)
 - [@VerysOracleSdk.SkillsSuccessModel](docs/SkillsSuccessModel.md)
 - [@VerysOracleSdk.SkillsType](docs/SkillsType.md)
 - [@VerysOracleSdk.SkillsUpdateModel](docs/SkillsUpdateModel.md)
 - [@VerysOracleSdk.StateRelationship](docs/StateRelationship.md)
 - [@VerysOracleSdk.StateRelationshipItem](docs/StateRelationshipItem.md)
 - [@VerysOracleSdk.States](docs/States.md)
 - [@VerysOracleSdk.StatesAttributes](docs/StatesAttributes.md)
 - [@VerysOracleSdk.StatesRelationship](docs/StatesRelationship.md)
 - [@VerysOracleSdk.StatesRelationships](docs/StatesRelationships.md)
 - [@VerysOracleSdk.StatesSingleSuccessModel](docs/StatesSingleSuccessModel.md)
 - [@VerysOracleSdk.StatesSuccessModel](docs/StatesSuccessModel.md)
 - [@VerysOracleSdk.StatesType](docs/StatesType.md)
 - [@VerysOracleSdk.TimeEntries](docs/TimeEntries.md)
 - [@VerysOracleSdk.TimeEntriesAttributes](docs/TimeEntriesAttributes.md)
 - [@VerysOracleSdk.TimeEntriesCreate](docs/TimeEntriesCreate.md)
 - [@VerysOracleSdk.TimeEntriesCreateModel](docs/TimeEntriesCreateModel.md)
 - [@VerysOracleSdk.TimeEntriesDeleteBulkModel](docs/TimeEntriesDeleteBulkModel.md)
 - [@VerysOracleSdk.TimeEntriesDeleteBulkModelData](docs/TimeEntriesDeleteBulkModelData.md)
 - [@VerysOracleSdk.TimeEntriesMeta](docs/TimeEntriesMeta.md)
 - [@VerysOracleSdk.TimeEntriesMetaOnlySuccessModel](docs/TimeEntriesMetaOnlySuccessModel.md)
 - [@VerysOracleSdk.TimeEntriesQuickBooksDesktopQueuedAttributes](docs/TimeEntriesQuickBooksDesktopQueuedAttributes.md)
 - [@VerysOracleSdk.TimeEntriesQuickBooksSubmittedAttributes](docs/TimeEntriesQuickBooksSubmittedAttributes.md)
 - [@VerysOracleSdk.TimeEntriesRelationships](docs/TimeEntriesRelationships.md)
 - [@VerysOracleSdk.TimeEntriesSingleSuccessModel](docs/TimeEntriesSingleSuccessModel.md)
 - [@VerysOracleSdk.TimeEntriesSuccessModel](docs/TimeEntriesSuccessModel.md)
 - [@VerysOracleSdk.TimeEntriesTotals](docs/TimeEntriesTotals.md)
 - [@VerysOracleSdk.TimeEntriesTotalsAttributes](docs/TimeEntriesTotalsAttributes.md)
 - [@VerysOracleSdk.TimeEntriesTotalsAttributesQuickBooksDesktopTimeTrackingEntryQueued](docs/TimeEntriesTotalsAttributesQuickBooksDesktopTimeTrackingEntryQueued.md)
 - [@VerysOracleSdk.TimeEntriesTotalsAttributesQuickBooksSubmitted](docs/TimeEntriesTotalsAttributesQuickBooksSubmitted.md)
 - [@VerysOracleSdk.TimeEntriesTotalsRelationships](docs/TimeEntriesTotalsRelationships.md)
 - [@VerysOracleSdk.TimeEntriesTotalsSingleSuccessModel](docs/TimeEntriesTotalsSingleSuccessModel.md)
 - [@VerysOracleSdk.TimeEntriesTotalsSuccessModel](docs/TimeEntriesTotalsSuccessModel.md)
 - [@VerysOracleSdk.TimeEntriesType](docs/TimeEntriesType.md)
 - [@VerysOracleSdk.TimeEntriesUpdateBulkModel](docs/TimeEntriesUpdateBulkModel.md)
 - [@VerysOracleSdk.TimeEntriesUpdateModel](docs/TimeEntriesUpdateModel.md)
 - [@VerysOracleSdk.TimeEntryRelationship](docs/TimeEntryRelationship.md)
 - [@VerysOracleSdk.TimeEntryRelationshipItem](docs/TimeEntryRelationshipItem.md)
 - [@VerysOracleSdk.TitleBandRelationship](docs/TitleBandRelationship.md)
 - [@VerysOracleSdk.TitleBandRelationshipItem](docs/TitleBandRelationshipItem.md)
 - [@VerysOracleSdk.TitleBands](docs/TitleBands.md)
 - [@VerysOracleSdk.TitleBandsAttributes](docs/TitleBandsAttributes.md)
 - [@VerysOracleSdk.TitleBandsCreate](docs/TitleBandsCreate.md)
 - [@VerysOracleSdk.TitleBandsCreateModel](docs/TitleBandsCreateModel.md)
 - [@VerysOracleSdk.TitleBandsRelationship](docs/TitleBandsRelationship.md)
 - [@VerysOracleSdk.TitleBandsRelationships](docs/TitleBandsRelationships.md)
 - [@VerysOracleSdk.TitleBandsRelationshipsEmployeesSuccessModel](docs/TitleBandsRelationshipsEmployeesSuccessModel.md)
 - [@VerysOracleSdk.TitleBandsSingleSuccessModel](docs/TitleBandsSingleSuccessModel.md)
 - [@VerysOracleSdk.TitleBandsSuccessModel](docs/TitleBandsSuccessModel.md)
 - [@VerysOracleSdk.TitleBandsType](docs/TitleBandsType.md)
 - [@VerysOracleSdk.TitleBandsUpdateModel](docs/TitleBandsUpdateModel.md)
 - [@VerysOracleSdk.TitleGradeRelationship](docs/TitleGradeRelationship.md)
 - [@VerysOracleSdk.TitleGradeRelationshipItem](docs/TitleGradeRelationshipItem.md)
 - [@VerysOracleSdk.TitleGrades](docs/TitleGrades.md)
 - [@VerysOracleSdk.TitleGradesAttributes](docs/TitleGradesAttributes.md)
 - [@VerysOracleSdk.TitleGradesCreate](docs/TitleGradesCreate.md)
 - [@VerysOracleSdk.TitleGradesCreateModel](docs/TitleGradesCreateModel.md)
 - [@VerysOracleSdk.TitleGradesRelationship](docs/TitleGradesRelationship.md)
 - [@VerysOracleSdk.TitleGradesRelationships](docs/TitleGradesRelationships.md)
 - [@VerysOracleSdk.TitleGradesRelationshipsEmployeesSuccessModel](docs/TitleGradesRelationshipsEmployeesSuccessModel.md)
 - [@VerysOracleSdk.TitleGradesSingleSuccessModel](docs/TitleGradesSingleSuccessModel.md)
 - [@VerysOracleSdk.TitleGradesSuccessModel](docs/TitleGradesSuccessModel.md)
 - [@VerysOracleSdk.TitleGradesType](docs/TitleGradesType.md)
 - [@VerysOracleSdk.TitleGradesUpdateModel](docs/TitleGradesUpdateModel.md)
 - [@VerysOracleSdk.TopLevelLinks](docs/TopLevelLinks.md)
 - [@VerysOracleSdk.TranslationRelationship](docs/TranslationRelationship.md)
 - [@VerysOracleSdk.TranslationRelationshipItem](docs/TranslationRelationshipItem.md)
 - [@VerysOracleSdk.Translations](docs/Translations.md)
 - [@VerysOracleSdk.TranslationsAttributes](docs/TranslationsAttributes.md)
 - [@VerysOracleSdk.TranslationsRelationship](docs/TranslationsRelationship.md)
 - [@VerysOracleSdk.TranslationsRelationships](docs/TranslationsRelationships.md)
 - [@VerysOracleSdk.TranslationsType](docs/TranslationsType.md)
 - [@VerysOracleSdk.UpdateCandidatesSuccessModel](docs/UpdateCandidatesSuccessModel.md)
 - [@VerysOracleSdk.UpdateCertificationAuthoritiesSuccessModel](docs/UpdateCertificationAuthoritiesSuccessModel.md)
 - [@VerysOracleSdk.UpdateCertificationNamesSuccessModel](docs/UpdateCertificationNamesSuccessModel.md)
 - [@VerysOracleSdk.UpdateCertificationsSuccessModel](docs/UpdateCertificationsSuccessModel.md)
 - [@VerysOracleSdk.UpdateProformaConfigurationsSuccessModel](docs/UpdateProformaConfigurationsSuccessModel.md)
 - [@VerysOracleSdk.UpdateProjectMilestonesSuccessModel](docs/UpdateProjectMilestonesSuccessModel.md)
 - [@VerysOracleSdk.UpdateProjectRoleTypesSuccessModel](docs/UpdateProjectRoleTypesSuccessModel.md)
 - [@VerysOracleSdk.UpdateProjectRolesSuccessModel](docs/UpdateProjectRolesSuccessModel.md)
 - [@VerysOracleSdk.UpdateProjectsSuccessModel](docs/UpdateProjectsSuccessModel.md)
 - [@VerysOracleSdk.UpdateQualificationsSuccessModel](docs/UpdateQualificationsSuccessModel.md)
 - [@VerysOracleSdk.UpdateTitleBandsSuccessModel](docs/UpdateTitleBandsSuccessModel.md)
 - [@VerysOracleSdk.UpdateTitleGradesSuccessModel](docs/UpdateTitleGradesSuccessModel.md)
 - [@VerysOracleSdk.UserRelationship](docs/UserRelationship.md)
 - [@VerysOracleSdk.UserRelationshipItem](docs/UserRelationshipItem.md)
 - [@VerysOracleSdk.Users](docs/Users.md)
 - [@VerysOracleSdk.UsersAttributes](docs/UsersAttributes.md)
 - [@VerysOracleSdk.UsersCreate](docs/UsersCreate.md)
 - [@VerysOracleSdk.UsersCreateModel](docs/UsersCreateModel.md)
 - [@VerysOracleSdk.UsersRelationship](docs/UsersRelationship.md)
 - [@VerysOracleSdk.UsersRelationships](docs/UsersRelationships.md)
 - [@VerysOracleSdk.UsersSingleSuccessModel](docs/UsersSingleSuccessModel.md)
 - [@VerysOracleSdk.UsersSuccessModel](docs/UsersSuccessModel.md)
 - [@VerysOracleSdk.UsersType](docs/UsersType.md)
 - [@VerysOracleSdk.UsersUpdate](docs/UsersUpdate.md)
 - [@VerysOracleSdk.UsersUpdateAttributes](docs/UsersUpdateAttributes.md)
 - [@VerysOracleSdk.UsersUpdateModel](docs/UsersUpdateModel.md)
 - [@VerysOracleSdk.ZohoDeals](docs/ZohoDeals.md)
 - [@VerysOracleSdk.ZohoDealsAttributes](docs/ZohoDealsAttributes.md)
 - [@VerysOracleSdk.ZohoDealsSuccessModel](docs/ZohoDealsSuccessModel.md)
 - [@VerysOracleSdk.ZohoDealsType](docs/ZohoDealsType.md)
 - [@VerysOracleSdk.ZohoIntegrationConfiguration](docs/ZohoIntegrationConfiguration.md)
 - [@VerysOracleSdk.ZohoIntegrationConfigurationAttributes](docs/ZohoIntegrationConfigurationAttributes.md)
 - [@VerysOracleSdk.ZohoIntegrationConfigurationSuccessModel](docs/ZohoIntegrationConfigurationSuccessModel.md)
 - [@VerysOracleSdk.ZohoIntegrationConfigurationType](docs/ZohoIntegrationConfigurationType.md)


## Documentation for Authorization



### http_jwt

- **Type**: Bearer authentication (JWT)

---
_Source: https://npm.io/package/@verys/oracle-sdk · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
