fds.sdk.QuotesAPIforDigitalPortals


Namefds.sdk.QuotesAPIforDigitalPortals JSON
Version 0.10.8 PyPI version JSON
download
home_pagehttps://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3
SummaryQuotes API for Digital Portals client library for Python
upload_time2023-06-06 16:18:07
maintainer
docs_urlNone
authorFactSet Research Systems
requires_python>=3.7
licenseApache License, Version 2.0
keywords factset api sdk
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![FactSet](https://raw.githubusercontent.com/factset/enterprise-sdk/main/docs/images/factset-logo.svg)](https://www.factset.com)

# Quotes API for Digital Portals client library for Python

[![PyPi](https://img.shields.io/pypi/v/fds.sdk.QuotesAPIforDigitalPortals)](https://pypi.org/project/fds.sdk.QuotesAPIforDigitalPortals/)
[![Apache-2 license](https://img.shields.io/badge/license-Apache2-brightgreen.svg)](https://www.apache.org/licenses/LICENSE-2.0)

The Quotes API combines endpoints for retrieving security end-of-day, delayed, and realtime prices with performance key figures and basic
reference data on the security and market level.

The API supports over 20 different price types for each quote and comes with basic search endpoints based on security identifiers and instrument names.
Market coverage is included in the *Sample Use Cases* section below.

The Digital Portal use case is focused on high-performance applications that are

* serving millions of end-users,
* accessible by client browsers via the internet,
* supporting subscriptions for streamed updates out-of-the-box,
* typically combining a wide variety of *for Digital Portals*-APIs into a highly use-case specific solution for customers,
* integrated into complex infrastructures such as existing frontend frameworks, authentication services.

All APIs labelled *for Digital Portals* have been designed for direct use by client web applications and feature extreme low latency: The average
response time across all endpoints is 30 ms whereas 99% of all requests are answered in close to under 300ms.

See the [Time Series API for Digital Portals](https://developer.factset.com/api-catalog/time-series-api-digital-portals) for direct access to
price histories, and the [News API for Digital Portals](https://developer.factset.com/api-catalog/news-api-digital-portals) for searching and
fetching related news.


This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: 2
- Package version: 0.10.8
- Build package: org.openapitools.codegen.languages.PythonClientCodegen

## Requirements

* Python >= 3.7

## Installation

### Poetry

```shell
poetry add fds.sdk.utils fds.sdk.QuotesAPIforDigitalPortals
```

### pip

```shell
pip install fds.sdk.utils fds.sdk.QuotesAPIforDigitalPortals
```

## Usage

1. [Generate authentication credentials](../../../../README.md#authentication).
2. Setup Python environment.
   1. Install and activate python 3.7+. If you're using [pyenv](https://github.com/pyenv/pyenv):

      ```sh
      pyenv install 3.9.7
      pyenv shell 3.9.7
      ```

   2. (optional) [Install poetry](https://python-poetry.org/docs/#installation).
3. [Install dependencies](#installation).
4. Run the following:

```python
from fds.sdk.utils.authentication import ConfidentialClient

import fds.sdk.QuotesAPIforDigitalPortals
from fds.sdk.QuotesAPIforDigitalPortals.api import basic_api
from fds.sdk.QuotesAPIforDigitalPortals.models import *
from dateutil.parser import parse as dateutil_parser
from pprint import pprint

# See configuration.py for a list of all supported configuration parameters.

# Examples for each supported authentication method are below,
# choose one that satisfies your use case.

# (Preferred) OAuth 2.0: FactSetOAuth2
# See https://github.com/FactSet/enterprise-sdk#oauth-20
# for information on how to create the app-config.json file
# See https://github.com/FactSet/enterprise-sdk-utils-python#authentication
# for more information on using the ConfidentialClient class
configuration = fds.sdk.QuotesAPIforDigitalPortals.Configuration(
    fds_oauth_client=ConfidentialClient('/path/to/app-config.json')
)

# Basic authentication: FactSetApiKey
# See https://github.com/FactSet/enterprise-sdk#api-key
# for information how to create an API key
# configuration = fds.sdk.QuotesAPIforDigitalPortals.Configuration(
#     username='USERNAME-SERIAL',
#     password='API-KEY'
# )

# Enter a context with an instance of the API client
with fds.sdk.QuotesAPIforDigitalPortals.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = basic_api.BasicApi(api_client)
    # NOTE: The parameter variable defined below is just an example and may potentially contain non valid values. So please replace this with valid values.
    attributes = [
        "_attributes_example",
    ] # [str] | Limit the attributes returned in the response to the specified set. (optional)

    try:
        # List of asset classes.
        # example passing only required values which don't have defaults set
        # and optional values
        api_response = api_instance.get_basic_asset_class_list(attributes=attributes)

        pprint(api_response)
    except fds.sdk.QuotesAPIforDigitalPortals.ApiException as e:
        print("Exception when calling BasicApi->get_basic_asset_class_list: %s\n" % e)

    # # Get response, http status code and response headers
    # try:
    #     # List of asset classes.
    #     api_response, http_status_code, response_headers = api_instance.get_basic_asset_class_list_with_http_info(attributes=attributes)


    #     pprint(api_response)
    #     pprint(http_status_code)
    #     pprint(response_headers)
    # except fds.sdk.QuotesAPIforDigitalPortals.ApiException as e:
    #     print("Exception when calling BasicApi->get_basic_asset_class_list: %s\n" % e)

    # # Get response asynchronous
    # try:
    #     # List of asset classes.
    #     async_result = api_instance.get_basic_asset_class_list_async(attributes=attributes)
    #     api_response = async_result.get()


    #     pprint(api_response)
    # except fds.sdk.QuotesAPIforDigitalPortals.ApiException as e:
    #     print("Exception when calling BasicApi->get_basic_asset_class_list: %s\n" % e)

    # # Get response, http status code and response headers asynchronous
    # try:
    #     # List of asset classes.
    #     async_result = api_instance.get_basic_asset_class_list_with_http_info_async(attributes=attributes)
    #     api_response, http_status_code, response_headers = async_result.get()


    #     pprint(api_response)
    #     pprint(http_status_code)
    #     pprint(response_headers)
    # except fds.sdk.QuotesAPIforDigitalPortals.ApiException as e:
    #     print("Exception when calling BasicApi->get_basic_asset_class_list: %s\n" % e)

```

### Using Pandas

To convert an API response to a Pandas DataFrame, it is necessary to transform it first to a dictionary.
```python
import pandas as pd

response_dict = api_response.to_dict()['data']

simple_json_response = pd.DataFrame(response_dict)
nested_json_response = pd.json_normalize(response_dict)
```

### Debugging

The SDK uses the standard library [`logging`](https://docs.python.org/3/library/logging.html#module-logging) module.

Setting `debug` to `True` on an instance of the `Configuration` class sets the log-level of related packages to `DEBUG`
and enables additional logging in Pythons [HTTP Client](https://docs.python.org/3/library/http.client.html).

**Note**: This prints out sensitive information (e.g. the full request and response). Use with care.

```python
import logging
import fds.sdk.QuotesAPIforDigitalPortals

logging.basicConfig(level=logging.DEBUG)

configuration = fds.sdk.QuotesAPIforDigitalPortals.Configuration(...)
configuration.debug = True
```

### Configure a Proxy

You can pass proxy settings to the Configuration class:

* `proxy`: The URL of the proxy to use.
* `proxy_headers`: a dictionary to pass additional headers to the proxy (e.g. `Proxy-Authorization`).

```python
import fds.sdk.QuotesAPIforDigitalPortals

configuration = fds.sdk.QuotesAPIforDigitalPortals.Configuration(
    # ...
    proxy="http://secret:password@localhost:5050",
    proxy_headers={
        "Custom-Proxy-Header": "Custom-Proxy-Header-Value"
    }
)
```

### Custom SSL Certificate

TLS/SSL certificate verification can be configured with the following Configuration parameters:

* `ssl_ca_cert`: a path to the certificate to use for verification in `PEM` format.
* `verify_ssl`: setting this to `False` disables the verification of certificates.
  Disabling the verification is not recommended, but it might be useful during
  local development or testing.

```python
import fds.sdk.QuotesAPIforDigitalPortals

configuration = fds.sdk.QuotesAPIforDigitalPortals.Configuration(
    # ...
    ssl_ca_cert='/path/to/ca.pem'
)
```


## Documentation for API Endpoints

All URIs are relative to *https://api.factset.com/wealth/v1*

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*BasicApi* | [**get_basic_asset_class_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_asset_class_list) | **GET** /basic/assetClass/list | List of asset classes.
*BasicApi* | [**get_basic_benchmark_type_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_benchmark_type_list) | **GET** /basic/benchmark/type/list | List of benchmark types.
*BasicApi* | [**get_basic_frequency_type_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_frequency_type_list) | **GET** /basic/frequency/type/list | List of frequency types.
*BasicApi* | [**get_basic_language_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_language_get) | **GET** /basic/language/get | Details for a language.
*BasicApi* | [**get_basic_language_get_by_code**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_language_get_by_code) | **GET** /basic/language/getByCode | Details for a language identified by code.
*BasicApi* | [**get_basic_language_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_language_list) | **GET** /basic/language/list | List of languages.
*BasicApi* | [**get_basic_market_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_market_get) | **GET** /basic/market/get | Details of a market.
*BasicApi* | [**get_basic_market_group_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_market_group_list) | **GET** /basic/market/group/list | List of market groups.
*BasicApi* | [**get_basic_market_type_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_market_type_list) | **GET** /basic/market/type/list | List of market types.
*BasicApi* | [**get_basic_media_kind_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_media_kind_list) | **GET** /basic/media/kind/list | List of media kinds.
*BasicApi* | [**get_basic_region_continent_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_region_continent_get) | **GET** /basic/region/continent/get | Details for a continent.
*BasicApi* | [**get_basic_region_continent_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_region_continent_list) | **GET** /basic/region/continent/list | List of continents.
*BasicApi* | [**get_basic_region_country_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_region_country_get) | **GET** /basic/region/country/get | Details for a country.
*BasicApi* | [**get_basic_region_country_get_by_code**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_region_country_get_by_code) | **GET** /basic/region/country/getByCode | Details for a country identified by code.
*BasicApi* | [**get_basic_region_country_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_region_country_list) | **GET** /basic/region/country/list | List of countries.
*BasicApi* | [**get_basic_region_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_region_get) | **GET** /basic/region/get | Details for a region.
*BasicApi* | [**get_basic_region_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_region_list) | **GET** /basic/region/list | List of regions.
*BasicApi* | [**get_basic_timezone_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_timezone_get) | **GET** /basic/timezone/get | Details of a timezone.
*BasicApi* | [**get_basic_timezone_get_by_name**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_timezone_get_by_name) | **GET** /basic/timezone/getByName | Details of a timezone identified by name.
*BasicApi* | [**get_basic_value_unit_alternative_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_value_unit_alternative_list) | **GET** /basic/valueUnit/alternative/list | List of alternative units.
*BasicApi* | [**get_basic_value_unit_currency_fractional_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_value_unit_currency_fractional_get) | **GET** /basic/valueUnit/currency/fractional/get | Details of a fractional currency.
*BasicApi* | [**get_basic_value_unit_currency_fractional_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_value_unit_currency_fractional_list) | **GET** /basic/valueUnit/currency/fractional/list | List of fractional currencies.
*BasicApi* | [**get_basic_value_unit_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_value_unit_get) | **GET** /basic/valueUnit/get | Details of a value unit.
*BasicApi* | [**post_basic_background_text_type_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#post_basic_background_text_type_list) | **POST** /basic/backgroundText/type/list | List of background text types.
*BasicApi* | [**post_basic_delivery_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#post_basic_delivery_list) | **POST** /basic/delivery/list | List of deliveries.
*BasicApi* | [**post_basic_market_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#post_basic_market_list) | **POST** /basic/market/list | List of markets.
*BasicApi* | [**post_basic_media_type_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#post_basic_media_type_list) | **POST** /basic/media/type/list | List of Internet media types.
*BasicApi* | [**post_basic_mic_operating_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#post_basic_mic_operating_list) | **POST** /basic/mic/operating/list | List of operating market identifier codes (MIC).
*BasicApi* | [**post_basic_timezone_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#post_basic_timezone_list) | **POST** /basic/timezone/list | List of timezones.
*BasicApi* | [**post_basic_value_unit_currency_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#post_basic_value_unit_currency_list) | **POST** /basic/valueUnit/currency/list | List of currencies.
*BasicApi* | [**post_basic_value_unit_currency_main_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#post_basic_value_unit_currency_main_list) | **POST** /basic/valueUnit/currency/main/list | List of main currencies.
*BasicApi* | [**post_basic_value_unit_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#post_basic_value_unit_list) | **POST** /basic/valueUnit/list | List of value units.
*CategoryApi* | [**get_category_dataset_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/CategoryApi.md#get_category_dataset_list) | **GET** /category/dataset/list | List of entitled category datasets.
*CategoryApi* | [**get_category_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/CategoryApi.md#get_category_get) | **GET** /category/get | Details of a category.
*CategoryApi* | [**get_category_instrument_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/CategoryApi.md#get_category_instrument_list) | **GET** /category/instrument/list | List of instruments where a specific dataset has assigned a given category.
*CategoryApi* | [**get_category_level_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/CategoryApi.md#get_category_level_get) | **GET** /category/level/get | Details of a category level.
*CategoryApi* | [**get_category_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/CategoryApi.md#get_category_list) | **GET** /category/list | List of categories.
*CategoryApi* | [**get_category_list_by_level**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/CategoryApi.md#get_category_list_by_level) | **GET** /category/listByLevel | List of categories assigned to a category level.
*CategoryApi* | [**get_category_list_by_system**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/CategoryApi.md#get_category_list_by_system) | **GET** /category/listBySystem | List of categories assigned to a category system.
*CategoryApi* | [**get_category_path_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/CategoryApi.md#get_category_path_get) | **GET** /category/path/get | Path from the first level to the level of a specific category.
*CategoryApi* | [**get_category_system_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/CategoryApi.md#get_category_system_get) | **GET** /category/system/get | Details of an entitled category system.
*CategoryApi* | [**get_category_system_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/CategoryApi.md#get_category_system_list) | **GET** /category/system/list | List of entitled category systems.
*CategoryApi* | [**get_category_system_type_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/CategoryApi.md#get_category_system_type_list) | **GET** /category/system/type/list | List of category system types.
*InstrumentApi* | [**get_instrument_background_text_list_by_instrument**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#get_instrument_background_text_list_by_instrument) | **GET** /instrument/backgroundText/listByInstrument | Background texts of an instrument.
*InstrumentApi* | [**get_instrument_compliance_property_list_by_instrument**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#get_instrument_compliance_property_list_by_instrument) | **GET** /instrument/complianceProperty/listByInstrument | Compliance properties of an instrument.
*InstrumentApi* | [**get_instrument_composite_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#get_instrument_composite_get) | **GET** /instrument/composite/get | Composite instrument and its components.
*InstrumentApi* | [**get_instrument_coupon_day_count_convention_type_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#get_instrument_coupon_day_count_convention_type_list) | **GET** /instrument/coupon/dayCountConvention/type/list | List of day count convention types.
*InstrumentApi* | [**get_instrument_coupon_interest_rate_type_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#get_instrument_coupon_interest_rate_type_list) | **GET** /instrument/coupon/interestRate/type/list | List of interest rate types.
*InstrumentApi* | [**get_instrument_coupon_key_data_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#get_instrument_coupon_key_data_get) | **GET** /instrument/coupon/keyData/get | Interest rate details for selected periods of an interest-bearing instrument.
*InstrumentApi* | [**get_instrument_coupon_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#get_instrument_coupon_list) | **GET** /instrument/coupon/list | List of coupons for an interest-bearing instrument.
*InstrumentApi* | [**get_instrument_cross_reference_get_by_isin**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#get_instrument_cross_reference_get_by_isin) | **GET** /instrument/crossReference/getByISIN | Translate ISIN to instrument.
*InstrumentApi* | [**get_instrument_cross_reference_get_by_wkn**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#get_instrument_cross_reference_get_by_wkn) | **GET** /instrument/crossReference/getByWKN | Translate WKN to instrument.
*InstrumentApi* | [**get_instrument_cross_reference_history_get_by_isin**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#get_instrument_cross_reference_history_get_by_isin) | **GET** /instrument/crossReference/history/getByISIN | ISIN to instrument translation history.
*InstrumentApi* | [**get_instrument_cross_reference_history_get_by_wkn**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#get_instrument_cross_reference_history_get_by_wkn) | **GET** /instrument/crossReference/history/getByWKN | WKN to instrument translation history.
*InstrumentApi* | [**get_instrument_exchange_rate_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#get_instrument_exchange_rate_get) | **GET** /instrument/exchangeRate/get | Retrieve an exchange rate instrument identifier.
*InstrumentApi* | [**get_instrument_exchange_rate_get_by_iso_code**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#get_instrument_exchange_rate_get_by_iso_code) | **GET** /instrument/exchangeRate/getByISOCode | Retrieve an exchange rate instrument identifier.
*InstrumentApi* | [**get_instrument_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#get_instrument_get) | **GET** /instrument/get | Basic data for an instrument.
*InstrumentApi* | [**get_instrument_get_by_notation**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#get_instrument_get_by_notation) | **GET** /instrument/getByNotation | Basic data for an instrument.
*InstrumentApi* | [**get_instrument_legal_entity_background_text_list_by_instrument**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#get_instrument_legal_entity_background_text_list_by_instrument) | **GET** /instrument/legalEntity/backgroundText/listByInstrument | Role-specific background texts of legal entities related to an instrument.
*InstrumentApi* | [**get_instrument_legal_entity_compliance_property_list_by_instrument**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#get_instrument_legal_entity_compliance_property_list_by_instrument) | **GET** /instrument/legalEntity/complianceProperty/listByInstrument | Role-specific compliance properties of legal entities related to an instrument.
*InstrumentApi* | [**get_instrument_mifid_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#get_instrument_mifid_get) | **GET** /instrument/mifid/get | MiFID II data for a financial instrument.
*InstrumentApi* | [**get_instrument_search_basic**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#get_instrument_search_basic) | **GET** /instrument/search/basic | Basic search for instruments.
*InstrumentApi* | [**post_instrument_background_text_type_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#post_instrument_background_text_type_list) | **POST** /instrument/backgroundText/type/list | List of background text types for instruments.
*InstrumentApi* | [**post_instrument_benchmark_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#post_instrument_benchmark_list) | **POST** /instrument/benchmark/list | List of benchmarks of a financial instrument.
*InstrumentApi* | [**post_instrument_category_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#post_instrument_category_list) | **POST** /instrument/category/list | List of categories assigned to a specific instrument the application is entitled to see.
*InstrumentApi* | [**post_instrument_compliance_property_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#post_instrument_compliance_property_list) | **POST** /instrument/complianceProperty/list | List of compliance properties for instruments.
*InstrumentApi* | [**post_instrument_cross_reference_list_by_isin**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#post_instrument_cross_reference_list_by_isin) | **POST** /instrument/crossReference/listByISIN | Translate a list of ISINs to instruments.
*InstrumentApi* | [**post_instrument_cross_reference_list_by_wkn**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#post_instrument_cross_reference_list_by_wkn) | **POST** /instrument/crossReference/listByWKN | Translate a list of WKNs to instruments.
*InstrumentApi* | [**post_instrument_notation_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#post_instrument_notation_list) | **POST** /instrument/notation/list | List of active, entitled notations for a set of instruments.
*InstrumentApi* | [**post_instrument_rating_grade_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#post_instrument_rating_grade_list) | **POST** /instrument/rating/grade/list | List of rating grades for a list of instruments.
*NotationApi* | [**get_notation_cross_reference_fact_set_identifier_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_cross_reference_fact_set_identifier_get) | **GET** /notation/crossReference/factSetIdentifier/get | Retrieve FactSet identifiers for a given notation.
*NotationApi* | [**get_notation_cross_reference_get_by_fact_set_market_symbol**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_cross_reference_get_by_fact_set_market_symbol) | **GET** /notation/crossReference/getByFactSetMarketSymbol | Translate a FactSet market symbol to a notation.
*NotationApi* | [**get_notation_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_get) | **GET** /notation/get | Basic data for a notation.
*NotationApi* | [**get_notation_key_figures_month_1_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_key_figures_month_1_get) | **GET** /notation/keyFigures/month/1/get | End-of-day (EOD) key figures for the time range of one month.
*NotationApi* | [**get_notation_key_figures_month_1_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_key_figures_month_1_list) | **GET** /notation/keyFigures/month/1/list | End-of-day (EOD) key figures for the time range of one month, for a list of notations.
*NotationApi* | [**get_notation_key_figures_month_3_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_key_figures_month_3_get) | **GET** /notation/keyFigures/month/3/get | End-of-day (EOD) key figures for the time range of three months.
*NotationApi* | [**get_notation_key_figures_month_3_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_key_figures_month_3_list) | **GET** /notation/keyFigures/month/3/list | End-of-day (EOD) key figures for the time range of three months, for a list of notations.
*NotationApi* | [**get_notation_key_figures_month_6_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_key_figures_month_6_get) | **GET** /notation/keyFigures/month/6/get | End-of-day (EOD) key figures for the time range of six months.
*NotationApi* | [**get_notation_key_figures_month_6_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_key_figures_month_6_list) | **GET** /notation/keyFigures/month/6/list | End-of-day (EOD) key figures for the time range of six months, for a list of notations.
*NotationApi* | [**get_notation_key_figures_week_1_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_key_figures_week_1_get) | **GET** /notation/keyFigures/week/1/get | End-of-day (EOD) key figures for the time range of one week.
*NotationApi* | [**get_notation_key_figures_week_1_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_key_figures_week_1_list) | **GET** /notation/keyFigures/week/1/list | End-of-day (EOD) key figures for the time range of one week, for a list of notations.
*NotationApi* | [**get_notation_key_figures_year_10_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_key_figures_year_10_get) | **GET** /notation/keyFigures/year/10/get | End-of-day (EOD) key figures for the time range of ten years.
*NotationApi* | [**get_notation_key_figures_year_10_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_key_figures_year_10_list) | **GET** /notation/keyFigures/year/10/list | End-of-day (EOD) key figures for the time range of ten years, for a list of notations.
*NotationApi* | [**get_notation_key_figures_year_1_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_key_figures_year_1_get) | **GET** /notation/keyFigures/year/1/get | End-of-day (EOD) key figures for the time range of one year.
*NotationApi* | [**get_notation_key_figures_year_1_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_key_figures_year_1_list) | **GET** /notation/keyFigures/year/1/list | End-of-day (EOD) key figures for the time range of one year, for a list of notations.
*NotationApi* | [**get_notation_key_figures_year_3_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_key_figures_year_3_get) | **GET** /notation/keyFigures/year/3/get | End-of-day (EOD) key figures for the time range of three years.
*NotationApi* | [**get_notation_key_figures_year_3_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_key_figures_year_3_list) | **GET** /notation/keyFigures/year/3/list | End-of-day (EOD) key figures for the time range of three years, for a list of notations.
*NotationApi* | [**get_notation_key_figures_year_5_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_key_figures_year_5_get) | **GET** /notation/keyFigures/year/5/get | End-of-day (EOD) key figures for the time range of five years.
*NotationApi* | [**get_notation_key_figures_year_5_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_key_figures_year_5_list) | **GET** /notation/keyFigures/year/5/list | End-of-day (EOD) key figures for the time range of five years, for a list of notations.
*NotationApi* | [**get_notation_key_figures_year_7_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_key_figures_year_7_get) | **GET** /notation/keyFigures/year/7/get | End-of-day (EOD) key figures for the time range of seven years.
*NotationApi* | [**get_notation_key_figures_year_7_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_key_figures_year_7_list) | **GET** /notation/keyFigures/year/7/list | End-of-day (EOD) key figures for the time range of seven years, for a list of notations.
*NotationApi* | [**get_notation_key_figures_year_to_date_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_key_figures_year_to_date_get) | **GET** /notation/keyFigures/yearToDate/get | End-of-day (EOD) key figures for the time range year-to-date (YTD)..
*NotationApi* | [**get_notation_key_figures_year_to_date_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_key_figures_year_to_date_list) | **GET** /notation/keyFigures/yearToDate/list | End-of-day (EOD) key figures for the time range year-to-date (YTD), for a list of notations..
*NotationApi* | [**get_notation_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_list) | **GET** /notation/list | Basic data for a list of notations.
*NotationApi* | [**get_notation_search_basic**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_search_basic) | **GET** /notation/search/basic | Basic search for notations.
*NotationApi* | [**get_notation_search_by_text_ranked_by_volume**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_search_by_text_ranked_by_volume) | **GET** /notation/searchByTextRankedByVolume | Basic search for notations.
*NotationApi* | [**get_notation_status_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_status_get) | **GET** /notation/status/get | Intraday trading status of a notation.
*NotationApi* | [**post_notation_cross_reference_fact_set_identifier_list_by_fact_set_identifier**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#post_notation_cross_reference_fact_set_identifier_list_by_fact_set_identifier) | **POST** /notation/crossReference/factSetIdentifier/listByFactSetIdentifier | Retrieve a list of notations for a given FactSet identifier.
*NotationApi* | [**post_notation_cross_reference_fact_set_identifier_list_by_instrument**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#post_notation_cross_reference_fact_set_identifier_list_by_instrument) | **POST** /notation/crossReference/factSetIdentifier/listByInstrument | Retrieve a list of FactSet identifiers for a given instrument.
*NotationApi* | [**post_notation_cross_reference_list_by_instrument**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#post_notation_cross_reference_list_by_instrument) | **POST** /notation/crossReference/listByInstrument | List of entitled notations.
*NotationApi* | [**post_notation_cross_reference_list_by_isin**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#post_notation_cross_reference_list_by_isin) | **POST** /notation/crossReference/listByISIN | List of entitled notations.
*NotationApi* | [**post_notation_cross_reference_list_by_symbol**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#post_notation_cross_reference_list_by_symbol) | **POST** /notation/crossReference/listBySymbol | List of entitled notations.
*NotationApi* | [**post_notation_market_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#post_notation_market_list) | **POST** /notation/market/list | List of markets with entitled notations.
*NotationApi* | [**post_notation_search_by_text**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#post_notation_search_by_text) | **POST** /notation/searchByText | Text-based search for notations.
*PricesApi* | [**get_prices_bid_ask_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PricesApi.md#get_prices_bid_ask_get) | **GET** /prices/bidAsk/get | Most recent bid and ask prices (best bid / offer) for a notation.
*PricesApi* | [**get_prices_bid_ask_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PricesApi.md#get_prices_bid_ask_list) | **GET** /prices/bidAsk/list | Most recent bid and ask prices (best bid / offer) for a list of notations.
*PricesApi* | [**get_prices_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PricesApi.md#get_prices_get) | **GET** /prices/get | Overview of trading on the most recent trading day, including the latest price, for a notation.
*PricesApi* | [**get_prices_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PricesApi.md#get_prices_list) | **GET** /prices/list | Overview of trading on the most recent trading day, including the latest price, for a list of notations.
*PricesApi* | [**get_prices_orderbook_aggregated_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PricesApi.md#get_prices_orderbook_aggregated_get) | **GET** /prices/orderbook/aggregated/get | Orderbook aggregated by price.
*PricesApi* | [**get_prices_orderbook_full_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PricesApi.md#get_prices_orderbook_full_get) | **GET** /prices/orderbook/full/get | Full orderbook
*PricesApi* | [**get_prices_trading_schedule_event_type_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PricesApi.md#get_prices_trading_schedule_event_type_list) | **GET** /prices/tradingSchedule/event/type/list | Trading schedule event types.
*PricesApi* | [**post_prices_trading_schedule_event_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PricesApi.md#post_prices_trading_schedule_event_list) | **POST** /prices/tradingSchedule/event/list | Sequence of market-related events.


## Documentation For Models

 - [AttributesMember](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/AttributesMember.md)
 - [CursorBasedPaginationOutputObject](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/CursorBasedPaginationOutputObject.md)
 - [CursorBasedPaginationOutputObjectWithoutTotal](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/CursorBasedPaginationOutputObjectWithoutTotal.md)
 - [ErrorMetaObject](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/ErrorMetaObject.md)
 - [ErrorObject](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/ErrorObject.md)
 - [InlineResponse200](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse200.md)
 - [InlineResponse2001](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2001.md)
 - [InlineResponse20010](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20010.md)
 - [InlineResponse20010Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20010Data.md)
 - [InlineResponse20011](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20011.md)
 - [InlineResponse20011Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20011Data.md)
 - [InlineResponse20012](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20012.md)
 - [InlineResponse20012Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20012Data.md)
 - [InlineResponse20013](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20013.md)
 - [InlineResponse20013Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20013Data.md)
 - [InlineResponse20013Kind](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20013Kind.md)
 - [InlineResponse20014](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20014.md)
 - [InlineResponse20014Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20014Data.md)
 - [InlineResponse20015](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20015.md)
 - [InlineResponse20015Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20015Data.md)
 - [InlineResponse20015DataNestedRegions](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20015DataNestedRegions.md)
 - [InlineResponse20016](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20016.md)
 - [InlineResponse20016Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20016Data.md)
 - [InlineResponse20017](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20017.md)
 - [InlineResponse20017Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20017Data.md)
 - [InlineResponse20017DataCountries](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20017DataCountries.md)
 - [InlineResponse20018](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20018.md)
 - [InlineResponse20018Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20018Data.md)
 - [InlineResponse20019](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20019.md)
 - [InlineResponse20019Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20019Data.md)
 - [InlineResponse20019DataSubdivisions](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20019DataSubdivisions.md)
 - [InlineResponse2001Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2001Data.md)
 - [InlineResponse2002](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2002.md)
 - [InlineResponse20020](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20020.md)
 - [InlineResponse20020Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20020Data.md)
 - [InlineResponse20020DataSubdivisions](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20020DataSubdivisions.md)
 - [InlineResponse20021](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20021.md)
 - [InlineResponse20021Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20021Data.md)
 - [InlineResponse20022](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20022.md)
 - [InlineResponse20022Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20022Data.md)
 - [InlineResponse20023](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20023.md)
 - [InlineResponse20023Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20023Data.md)
 - [InlineResponse20024](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20024.md)
 - [InlineResponse20024Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20024Data.md)
 - [InlineResponse20025](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20025.md)
 - [InlineResponse20025Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20025Data.md)
 - [InlineResponse20026](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20026.md)
 - [InlineResponse20026Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20026Data.md)
 - [InlineResponse20027](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20027.md)
 - [InlineResponse20027Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20027Data.md)
 - [InlineResponse20028](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20028.md)
 - [InlineResponse20028Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20028Data.md)
 - [InlineResponse20028DataMainCurrency](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20028DataMainCurrency.md)
 - [InlineResponse20029](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20029.md)
 - [InlineResponse20029Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20029Data.md)
 - [InlineResponse20029MainCurrency](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20029MainCurrency.md)
 - [InlineResponse2002Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2002Data.md)
 - [InlineResponse2003](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2003.md)
 - [InlineResponse20030](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20030.md)
 - [InlineResponse20030Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20030Data.md)
 - [InlineResponse20031](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20031.md)
 - [InlineResponse20031Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20031Data.md)
 - [InlineResponse20031DataLevel](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20031DataLevel.md)
 - [InlineResponse20031DataParent](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20031DataParent.md)
 - [InlineResponse20031DataParentLevel](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20031DataParentLevel.md)
 - [InlineResponse20031DataSystem](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20031DataSystem.md)
 - [InlineResponse20032](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20032.md)
 - [InlineResponse20032Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20032Data.md)
 - [InlineResponse20032DataCategories](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20032DataCategories.md)
 - [InlineResponse20033](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20033.md)
 - [InlineResponse20033Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20033Data.md)
 - [InlineResponse20033DataCategories](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20033DataCategories.md)
 - [InlineResponse20033DataParent](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20033DataParent.md)
 - [InlineResponse20033DataParent1](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20033DataParent1.md)
 - [InlineResponse20033Meta](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20033Meta.md)
 - [InlineResponse20034](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20034.md)
 - [InlineResponse20034Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20034Data.md)
 - [InlineResponse20034DataCategories](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20034DataCategories.md)
 - [InlineResponse20034DataLevel](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20034DataLevel.md)
 - [InlineResponse20034DataParent](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20034DataParent.md)
 - [InlineResponse20035](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20035.md)
 - [InlineResponse20035Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20035Data.md)
 - [InlineResponse20035Delivery](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20035Delivery.md)
 - [InlineResponse20035System](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20035System.md)
 - [InlineResponse20036](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20036.md)
 - [InlineResponse20036Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20036Data.md)
 - [InlineResponse20036Fsym](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20036Fsym.md)
 - [InlineResponse20036FsymSecurity](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20036FsymSecurity.md)
 - [InlineResponse20036Meta](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20036Meta.md)
 - [InlineResponse20037](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20037.md)
 - [InlineResponse20037Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20037Data.md)
 - [InlineResponse20037DataSystem](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20037DataSystem.md)
 - [InlineResponse20038](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20038.md)
 - [InlineResponse20038Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20038Data.md)
 - [InlineResponse20038DataCategories](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20038DataCategories.md)
 - [InlineResponse20039](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20039.md)
 - [InlineResponse20039Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20039Data.md)
 - [InlineResponse20039DataLevels](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20039DataLevels.md)
 - [InlineResponse20039DataType](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20039DataType.md)
 - [InlineResponse2003Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2003Data.md)
 - [InlineResponse2004](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2004.md)
 - [InlineResponse20040](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20040.md)
 - [InlineResponse20040Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20040Data.md)
 - [InlineResponse20041](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20041.md)
 - [InlineResponse20041Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20041Data.md)
 - [InlineResponse20042](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20042.md)
 - [InlineResponse20042Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20042Data.md)
 - [InlineResponse20042DataAssetClass](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20042DataAssetClass.md)
 - [InlineResponse20042DataNsin](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20042DataNsin.md)
 - [InlineResponse20042DataType](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20042DataType.md)
 - [InlineResponse20043](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20043.md)
 - [InlineResponse20043Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20043Data.md)
 - [InlineResponse20044](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20044.md)
 - [InlineResponse20044Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20044Data.md)
 - [InlineResponse20044Type](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20044Type.md)
 - [InlineResponse20045](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20045.md)
 - [InlineResponse20045Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20045Data.md)
 - [InlineResponse20046](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20046.md)
 - [InlineResponse20046Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20046Data.md)
 - [InlineResponse20046Notation](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20046Notation.md)
 - [InlineResponse20046NotationFsym](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20046NotationFsym.md)
 - [InlineResponse20046NotationFsymListing](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20046NotationFsymListing.md)
 - [InlineResponse20046NotationFsymRegional](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20046NotationFsymRegional.md)
 - [InlineResponse20046NotationInstrument](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20046NotationInstrument.md)
 - [InlineResponse20046Type](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20046Type.md)
 - [InlineResponse20047](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20047.md)
 - [InlineResponse20047Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20047Data.md)
 - [InlineResponse20047Dataset](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20047Dataset.md)
 - [InlineResponse20048](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20048.md)
 - [InlineResponse20048Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20048Data.md)
 - [InlineResponse20049](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20049.md)
 - [InlineResponse2004Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2004Data.md)
 - [InlineResponse2005](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2005.md)
 - [InlineResponse20050](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20050.md)
 - [InlineResponse20050Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20050Data.md)
 - [InlineResponse20050DataComponents](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20050DataComponents.md)
 - [InlineResponse20050DataNotation](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20050DataNotation.md)
 - [InlineResponse20050DataNotationInstrument](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20050DataNotationInstrument.md)
 - [InlineResponse20050DataNotationOperatingMIC](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20050DataNotationOperatingMIC.md)
 - [InlineResponse20050DataValueUnit](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20050DataValueUnit.md)
 - [InlineResponse20051](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20051.md)
 - [InlineResponse20051Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20051Data.md)
 - [InlineResponse20051DataCoupons](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20051DataCoupons.md)
 - [InlineResponse20051DataCurrency](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20051DataCurrency.md)
 - [InlineResponse20051DataInterestRate](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20051DataInterestRate.md)
 - [InlineResponse20051DataInterestRateAnnualized](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20051DataInterestRateAnnualized.md)
 - [InlineResponse20051DataInterestRatePeriodic](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20051DataInterestRatePeriodic.md)
 - [InlineResponse20051DataInterestRateType](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20051DataInterestRateType.md)
 - [InlineResponse20051DataPeriod](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20051DataPeriod.md)
 - [InlineResponse20052](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20052.md)
 - [InlineResponse20052Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20052Data.md)
 - [InlineResponse20053](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20053.md)
 - [InlineResponse20054](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20054.md)
 - [InlineResponse20054Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20054Data.md)
 - [InlineResponse20054DataDayCountConvention](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20054DataDayCountConvention.md)
 - [InlineResponse20054DataInterestRate](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20054DataInterestRate.md)
 - [InlineResponse20054DataInterestRateCurrent](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20054DataInterestRateCurrent.md)
 - [InlineResponse20054DataInterestRateCurrentAccruedInterest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20054DataInterestRateCurrentAccruedInterest.md)
 - [InlineResponse20054DataInterestRateCurrentType](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20054DataInterestRateCurrentType.md)
 - [InlineResponse20054DataInterestRateFinal](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20054DataInterestRateFinal.md)
 - [InlineResponse20054DataInterestRateInitial](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20054DataInterestRateInitial.md)
 - [InlineResponse20054DataOccurrence](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20054DataOccurrence.md)
 - [InlineResponse20054DataOccurrenceFrequency](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20054DataOccurrenceFrequency.md)
 - [InlineResponse20055](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20055.md)
 - [InlineResponse20055Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20055Data.md)
 - [InlineResponse20055DataValidity](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20055DataValidity.md)
 - [InlineResponse20056](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20056.md)
 - [InlineResponse20056Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20056Data.md)
 - [InlineResponse20056Status](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20056Status.md)
 - [InlineResponse20057](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20057.md)
 - [InlineResponse20057Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20057Data.md)
 - [InlineResponse20057Status](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20057Status.md)
 - [InlineResponse20058](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20058.md)
 - [InlineResponse20058Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20058Data.md)
 - [InlineResponse20059](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20059.md)
 - [InlineResponse20059Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20059Data.md)
 - [InlineResponse20059DataInstrument](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20059DataInstrument.md)
 - [InlineResponse2005Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2005Data.md)
 - [InlineResponse2006](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2006.md)
 - [InlineResponse20060](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20060.md)
 - [InlineResponse20060Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20060Data.md)
 - [InlineResponse20060LegalEntities](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20060LegalEntities.md)
 - [InlineResponse20060LegalEntitiesBackgroundTexts](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20060LegalEntitiesBackgroundTexts.md)
 - [InlineResponse20060LegalEntitiesBackgroundTextsType](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20060LegalEntitiesBackgroundTextsType.md)
 - [InlineResponse20061](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20061.md)
 - [InlineResponse20061Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20061Data.md)
 - [InlineResponse20061LegalEntities](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20061LegalEntities.md)
 - [InlineResponse20062](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062.md)
 - [InlineResponse20062Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062Data.md)
 - [InlineResponse20062DataCostsAndCharges](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndCharges.md)
 - [InlineResponse20062DataCostsAndChargesExAnte](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExAnte.md)
 - [InlineResponse20062DataCostsAndChargesExAnteDistributionFee](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExAnteDistributionFee.md)
 - [InlineResponse20062DataCostsAndChargesExAnteIncidentalCosts](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExAnteIncidentalCosts.md)
 - [InlineResponse20062DataCostsAndChargesExAnteItaly](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExAnteItaly.md)
 - [InlineResponse20062DataCostsAndChargesExAnteItalyOneOffMaximumFixedEntryCost](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExAnteItalyOneOffMaximumFixedEntryCost.md)
 - [InlineResponse20062DataCostsAndChargesExAnteItalyOneOffMaximumFixedExitCost](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExAnteItalyOneOffMaximumFixedExitCost.md)
 - [InlineResponse20062DataCostsAndChargesExAnteManagementFee](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExAnteManagementFee.md)
 - [InlineResponse20062DataCostsAndChargesExAnteOneOffEntryCost](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExAnteOneOffEntryCost.md)
 - [InlineResponse20062DataCostsAndChargesExAnteOneOffEntryCostValueUnit](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExAnteOneOffEntryCostValueUnit.md)
 - [InlineResponse20062DataCostsAndChargesExAnteOneOffMaximumAcquiredEntryCost](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExAnteOneOffMaximumAcquiredEntryCost.md)
 - [InlineResponse20062DataCostsAndChargesExAnteOneOffMaximumAcquiredExitCost](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExAnteOneOffMaximumAcquiredExitCost.md)
 - [InlineResponse20062DataCostsAndChargesExAnteOneOffMaximumExitCost](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExAnteOneOffMaximumExitCost.md)
 - [InlineResponse20062DataCostsAndChargesExAnteOneOffPriorRHPExitCost](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExAnteOneOffPriorRHPExitCost.md)
 - [InlineResponse20062DataCostsAndChargesExAnteOneOffTypicalExitCost](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExAnteOneOffTypicalExitCost.md)
 - [InlineResponse20062DataCostsAndChargesExAnteOngoingCosts](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExAnteOngoingCosts.md)
 - [InlineResponse20062DataCostsAndChargesExAnteTransactionCosts](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExAnteTransactionCosts.md)
 - [InlineResponse20062DataCostsAndChargesExPost](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExPost.md)
 - [InlineResponse20062DataCostsAndChargesExPostDistributionFee](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExPostDistributionFee.md)
 - [InlineResponse20062DataCostsAndChargesExPostIncidentalCosts](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExPostIncidentalCosts.md)
 - [InlineResponse20062DataCostsAndChargesExPostManagementFee](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExPostManagementFee.md)
 - [InlineResponse20062DataCostsAndChargesExPostOneOffEntryCost](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExPostOneOffEntryCost.md)
 - [InlineResponse20062DataCostsAndChargesExPostOneOffExitCost](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExPostOneOffExitCost.md)
 - [InlineResponse20062DataCostsAndChargesExPostOngoingCostAccumulated](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExPostOngoingCostAccumulated.md)
 - [InlineResponse20062DataCostsAndChargesExPostOngoingCosts](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExPostOngoingCosts.md)
 - [InlineResponse20062DataCostsAndChargesExPostTransactionCosts](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExPostTransactionCosts.md)
 - [InlineResponse20062DataDistributionChannel](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataDistributionChannel.md)
 - [InlineResponse20062DataGeneral](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataGeneral.md)
 - [InlineResponse20062DataGeneralCurrency](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataGeneralCurrency.md)
 - [InlineResponse20062DataGeneralFund](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataGeneralFund.md)
 - [InlineResponse20062DataGeneralFundDomicile](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataGeneralFundDomicile.md)
 - [InlineResponse20062DataGeneralGuarantor](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataGeneralGuarantor.md)
 - [InlineResponse20062DataGeneralIssuer](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataGeneralIssuer.md)
 - [InlineResponse20062DataGeneralLegalStructure](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataGeneralLegalStructure.md)
 - [InlineResponse20062DataGeneralManufacturer](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataGeneralManufacturer.md)
 - [InlineResponse20062DataGeneralType](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataGeneralType.md)
 - [InlineResponse20062DataTargetMarket](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataTargetMarket.md)
 - [InlineResponse20062DataTargetMarketAbilityToBearLosses](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataTargetMarketAbilityToBearLosses.md)
 - [InlineResponse20062DataTargetMarketClientObjectivesAndNeeds](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataTargetMarketClientObjectivesAndNeeds.md)
 - [InlineResponse20062DataTargetMarketClientObjectivesAndNeedsReturnProfile](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataTargetMarketClientObjectivesAndNeedsReturnProfile.md)
 - [InlineResponse20062DataTargetMarketClientObjectivesAndNeedsReturnProfileGermany](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataTargetMarketClientObjectivesAndNeedsReturnProfileGermany.md)
 - [InlineResponse20062DataTargetMarketInvestorType](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataTargetMarketInvestorType.md)
 - [InlineResponse20062DataTargetMarketKnowledgeAndExperience](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataTargetMarketKnowledgeAndExperience.md)
 - [InlineResponse20062DataTargetMarketKnowledgeAndExperienceGermany](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataTargetMarketKnowledgeAndExperienceGermany.md)
 - [InlineResponse20062DataTargetMarketRecommendedHoldingPeriod](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataTargetMarketRecommendedHoldingPeriod.md)
 - [InlineResponse20062DataTargetMarketRiskTolerance](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataTargetMarketRiskTolerance.md)
 - [InlineResponse20062DataTargetMarketRiskToleranceGermany](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataTargetMarketRiskToleranceGermany.md)
 - [InlineResponse20062DataTargetMarketRiskToleranceInternalRiskRating](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataTargetMarketRiskToleranceInternalRiskRating.md)
 - [InlineResponse20062DataTargetMarketRiskToleranceSpain](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataTargetMarketRiskToleranceSpain.md)
 - [InlineResponse20062DataTargetMarketRiskToleranceSri](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataTargetMarketRiskToleranceSri.md)
 - [InlineResponse20062DataTargetMarketRiskToleranceSrri](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataTargetMarketRiskToleranceSrri.md)
 - [InlineResponse20063](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20063.md)
 - [InlineResponse20063Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20063Data.md)
 - [InlineResponse20063Market](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20063Market.md)
 - [InlineResponse20063Notations](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20063Notations.md)
 - [InlineResponse20063Status](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20063Status.md)
 - [InlineResponse20063TradingVolume](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20063TradingVolume.md)
 - [InlineResponse20063TradingVolumeMonth1](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20063TradingVolumeMonth1.md)
 - [InlineResponse20063ValueUnit](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20063ValueUnit.md)
 - [InlineResponse20064](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20064.md)
 - [InlineResponse20064Current](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20064Current.md)
 - [InlineResponse20064Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20064Data.md)
 - [InlineResponse20064Previous](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20064Previous.md)
 - [InlineResponse20064Ratings](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20064Ratings.md)
 - [InlineResponse20064System](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20064System.md)
 - [InlineResponse20065](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20065.md)
 - [InlineResponse20065Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20065Data.md)
 - [InlineResponse20065DataInstrument](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20065DataInstrument.md)
 - [InlineResponse20065DataMarket](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20065DataMarket.md)
 - [InlineResponse20065DataValueUnit](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20065DataValueUnit.md)
 - [InlineResponse20066](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20066.md)
 - [InlineResponse20066Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20066Data.md)
 - [InlineResponse20066Status](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20066Status.md)
 - [InlineResponse20067](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20067.md)
 - [InlineResponse20067Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20067Data.md)
 - [InlineResponse20067DataInstrument](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20067DataInstrument.md)
 - [InlineResponse20067DataMarket](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20067DataMarket.md)
 - [InlineResponse20067DataValueUnit](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20067DataValueUnit.md)
 - [InlineResponse20068](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20068.md)
 - [InlineResponse20068Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20068Data.md)
 - [InlineResponse20068DataNotations](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20068DataNotations.md)
 - [InlineResponse20069](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20069.md)
 - [InlineResponse2006Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2006Data.md)
 - [InlineResponse2007](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2007.md)
 - [InlineResponse20070](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20070.md)
 - [InlineResponse20070Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20070Data.md)
 - [InlineResponse20070Instrument](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20070Instrument.md)
 - [InlineResponse20071](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20071.md)
 - [InlineResponse20071Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20071Data.md)
 - [InlineResponse20071DataInstrument](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20071DataInstrument.md)
 - [InlineResponse20071DataRegional](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20071DataRegional.md)
 - [InlineResponse20071DataRegionalListing](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20071DataRegionalListing.md)
 - [InlineResponse20072](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20072.md)
 - [InlineResponse20072Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20072Data.md)
 - [InlineResponse20072DataInstrument](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20072DataInstrument.md)
 - [InlineResponse20072DataListing](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20072DataListing.md)
 - [InlineResponse20072DataNotation](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20072DataNotation.md)
 - [InlineResponse20072DataRegional](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20072DataRegional.md)
 - [InlineResponse20073](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20073.md)
 - [InlineResponse20073Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20073Data.md)
 - [InlineResponse20074](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20074.md)
 - [InlineResponse20074Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20074Data.md)
 - [InlineResponse20074DataHigh](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20074DataHigh.md)
 - [InlineResponse20074DataLow](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20074DataLow.md)
 - [InlineResponse20074DataPerformance](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20074DataPerformance.md)
 - [InlineResponse20075](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20075.md)
 - [InlineResponse20075Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20075Data.md)
 - [InlineResponse20075Status](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20075Status.md)
 - [InlineResponse20076](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20076.md)
 - [InlineResponse20076Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20076Data.md)
 - [InlineResponse20076DataTradingVolume](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20076DataTradingVolume.md)
 - [InlineResponse20077](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20077.md)
 - [InlineResponse20077Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20077Data.md)
 - [InlineResponse20078](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20078.md)
 - [InlineResponse20078Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20078Data.md)
 - [InlineResponse20079](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20079.md)
 - [InlineResponse20079Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20079Data.md)
 - [InlineResponse2007Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2007Data.md)
 - [InlineResponse2008](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2008.md)
 - [InlineResponse20080](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20080.md)
 - [InlineResponse20080Country](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20080Country.md)
 - [InlineResponse20080Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20080Data.md)
 - [InlineResponse20080Group](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20080Group.md)
 - [InlineResponse20080Timezone](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20080Timezone.md)
 - [InlineResponse20080Type](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20080Type.md)
 - [InlineResponse20081](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20081.md)
 - [InlineResponse20081Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20081Data.md)
 - [InlineResponse20081DataMarket](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20081DataMarket.md)
 - [InlineResponse20082](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20082.md)
 - [InlineResponse20082Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20082Data.md)
 - [InlineResponse20082DataAccumulated](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20082DataAccumulated.md)
 - [InlineResponse20082DataCurrency](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20082DataCurrency.md)
 - [InlineResponse20082DataFirst](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20082DataFirst.md)
 - [InlineResponse20082DataHigh](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20082DataHigh.md)
 - [InlineResponse20082DataLatest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20082DataLatest.md)
 - [InlineResponse20082DataLatestPerformance](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20082DataLatestPerformance.md)
 - [InlineResponse20082DataLatestPerformanceIntraday](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20082DataLatestPerformanceIntraday.md)
 - [InlineResponse20082DataLow](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20082DataLow.md)
 - [InlineResponse20082DataMarket](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20082DataMarket.md)
 - [InlineResponse20082DataPreviousClose](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20082DataPreviousClose.md)
 - [InlineResponse20082DataValueUnit](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20082DataValueUnit.md)
 - [InlineResponse20083](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20083.md)
 - [InlineResponse20083Accumulated](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20083Accumulated.md)
 - [InlineResponse20083Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20083Data.md)
 - [InlineResponse20083First](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20083First.md)
 - [InlineResponse20083High](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20083High.md)
 - [InlineResponse20083Latest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20083Latest.md)
 - [InlineResponse20083LatestPerformance](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20083LatestPerformance.md)
 - [InlineResponse20083LatestPerformanceIntraday](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20083LatestPerformanceIntraday.md)
 - [InlineResponse20083Low](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20083Low.md)
 - [InlineResponse20083Market](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20083Market.md)
 - [InlineResponse20083PreviousClose](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20083PreviousClose.md)
 - [InlineResponse20083Status](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20083Status.md)
 - [InlineResponse20084](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20084.md)
 - [InlineResponse20084Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20084Data.md)
 - [InlineResponse20084DataAsk](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20084DataAsk.md)
 - [InlineResponse20084DataBid](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20084DataBid.md)
 - [InlineResponse20085](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20085.md)
 - [InlineResponse20085Ask](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20085Ask.md)
 - [InlineResponse20085Bid](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20085Bid.md)
 - [InlineResponse20085Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20085Data.md)
 - [InlineResponse20086](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20086.md)
 - [InlineResponse20086Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20086Data.md)
 - [InlineResponse20086DataAsks](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20086DataAsks.md)
 - [InlineResponse20087](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20087.md)
 - [InlineResponse20087Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20087Data.md)
 - [InlineResponse20087DataAsks](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20087DataAsks.md)
 - [InlineResponse20088](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20088.md)
 - [InlineResponse20088Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20088Data.md)
 - [InlineResponse20088DataEvents](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20088DataEvents.md)
 - [InlineResponse20088DataRange](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20088DataRange.md)
 - [InlineResponse20088DataType](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20088DataType.md)
 - [InlineResponse20088Meta](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20088Meta.md)
 - [InlineResponse20089](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20089.md)
 - [InlineResponse20089Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20089Data.md)
 - [InlineResponse2008Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2008Data.md)
 - [InlineResponse2008DataCountry](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2008DataCountry.md)
 - [InlineResponse2008DataGroup](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2008DataGroup.md)
 - [InlineResponse2008DataTimezone](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2008DataTimezone.md)
 - [InlineResponse2008DataType](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2008DataType.md)
 - [InlineResponse2009](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2009.md)
 - [InlineResponse20090](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20090.md)
 - [InlineResponse20090Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20090Data.md)
 - [InlineResponse20091](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20091.md)
 - [InlineResponse20091Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20091Data.md)
 - [InlineResponse20091Instrument](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20091Instrument.md)
 - [InlineResponse20091InstrumentNsin](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20091InstrumentNsin.md)
 - [InlineResponse20091Nsin](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20091Nsin.md)
 - [InlineResponse20091Price](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20091Price.md)
 - [InlineResponse20092](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20092.md)
 - [InlineResponse20092Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20092Data.md)
 - [InlineResponse20092Instrument](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20092Instrument.md)
 - [InlineResponse20092InstrumentAssetClass](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20092InstrumentAssetClass.md)
 - [InlineResponse20092InstrumentName](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20092InstrumentName.md)
 - [InlineResponse20092InstrumentNameDefault](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20092InstrumentNameDefault.md)
 - [InlineResponse20092TradingValue](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20092TradingValue.md)
 - [InlineResponse20092TradingValueAverage](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20092TradingValueAverage.md)
 - [InlineResponse20092ValueUnit](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20092ValueUnit.md)
 - [InlineResponse20093](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20093.md)
 - [InlineResponse20093Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20093Data.md)
 - [InlineResponse20093Instrument](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20093Instrument.md)
 - [InlineResponse2009Country](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2009Country.md)
 - [InlineResponse2009Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2009Data.md)
 - [InlineResponse2009Group](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2009Group.md)
 - [InlineResponse2009Meta](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2009Meta.md)
 - [InlineResponse2009Type](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2009Type.md)
 - [InlineResponse200Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse200Data.md)
 - [InlineResponse200Meta](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse200Meta.md)
 - [LanguageMember](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/LanguageMember.md)
 - [OffsetBasedPaginationOutputObject](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/OffsetBasedPaginationOutputObject.md)
 - [OffsetBasedPaginationOutputObjectWithoutTotal](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/OffsetBasedPaginationOutputObjectWithoutTotal.md)
 - [PartialOutputObject](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PartialOutputObject.md)
 - [PostBasicBackgroundTextTypeListRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicBackgroundTextTypeListRequest.md)
 - [PostBasicBackgroundTextTypeListRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicBackgroundTextTypeListRequestData.md)
 - [PostBasicBackgroundTextTypeListRequestDataFilter](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicBackgroundTextTypeListRequestDataFilter.md)
 - [PostBasicBackgroundTextTypeListRequestMeta](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicBackgroundTextTypeListRequestMeta.md)
 - [PostBasicDeliveryListRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicDeliveryListRequest.md)
 - [PostBasicDeliveryListRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicDeliveryListRequestData.md)
 - [PostBasicDeliveryListRequestDataFilter](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicDeliveryListRequestDataFilter.md)
 - [PostBasicDeliveryListRequestMeta](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicDeliveryListRequestMeta.md)
 - [PostBasicMarketListRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicMarketListRequest.md)
 - [PostBasicMarketListRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicMarketListRequestData.md)
 - [PostBasicMarketListRequestDataFilter](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicMarketListRequestDataFilter.md)
 - [PostBasicMarketListRequestDataFilterMarkets](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicMarketListRequestDataFilterMarkets.md)
 - [PostBasicMarketListRequestMeta](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicMarketListRequestMeta.md)
 - [PostBasicMarketListRequestMetaPagination](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicMarketListRequestMetaPagination.md)
 - [PostBasicMediaTypeListRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicMediaTypeListRequest.md)
 - [PostBasicMediaTypeListRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicMediaTypeListRequestData.md)
 - [PostBasicMediaTypeListRequestDataFilter](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicMediaTypeListRequestDataFilter.md)
 - [PostBasicMediaTypeListRequestMeta](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicMediaTypeListRequestMeta.md)
 - [PostBasicMicOperatingListRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicMicOperatingListRequest.md)
 - [PostBasicMicOperatingListRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicMicOperatingListRequestData.md)
 - [PostBasicMicOperatingListRequestDataFilter](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicMicOperatingListRequestDataFilter.md)
 - [PostBasicMicOperatingListRequestMeta](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicMicOperatingListRequestMeta.md)
 - [PostBasicTimezoneListRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicTimezoneListRequest.md)
 - [PostBasicTimezoneListRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicTimezoneListRequestData.md)
 - [PostBasicTimezoneListRequestDataFilter](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicTimezoneListRequestDataFilter.md)
 - [PostBasicValueUnitCurrencyListRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicValueUnitCurrencyListRequest.md)
 - [PostBasicValueUnitCurrencyMainListRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicValueUnitCurrencyMainListRequest.md)
 - [PostBasicValueUnitCurrencyMainListRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicValueUnitCurrencyMainListRequestData.md)
 - [PostBasicValueUnitCurrencyMainListRequestDataFilter](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicValueUnitCurrencyMainListRequestDataFilter.md)
 - [PostBasicValueUnitListRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicValueUnitListRequest.md)
 - [PostBasicValueUnitListRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicValueUnitListRequestData.md)
 - [PostBasicValueUnitListRequestDataFilter](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicValueUnitListRequestDataFilter.md)
 - [PostBasicValueUnitListRequestMeta](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicValueUnitListRequestMeta.md)
 - [PostInstrumentBackgroundTextTypeListRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentBackgroundTextTypeListRequest.md)
 - [PostInstrumentBackgroundTextTypeListRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentBackgroundTextTypeListRequestData.md)
 - [PostInstrumentBackgroundTextTypeListRequestDataFilter](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentBackgroundTextTypeListRequestDataFilter.md)
 - [PostInstrumentBackgroundTextTypeListRequestMeta](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentBackgroundTextTypeListRequestMeta.md)
 - [PostInstrumentBenchmarkListRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentBenchmarkListRequest.md)
 - [PostInstrumentBenchmarkListRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentBenchmarkListRequestData.md)
 - [PostInstrumentBenchmarkListRequestDataFilter](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentBenchmarkListRequestDataFilter.md)
 - [PostInstrumentCategoryListRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentCategoryListRequest.md)
 - [PostInstrumentCategoryListRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentCategoryListRequestData.md)
 - [PostInstrumentCategoryListRequestDataFilter](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentCategoryListRequestDataFilter.md)
 - [PostInstrumentCategoryListRequestDataFilterDataset](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentCategoryListRequestDataFilterDataset.md)
 - [PostInstrumentCategoryListRequestMeta](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentCategoryListRequestMeta.md)
 - [PostInstrumentCompliancePropertyListRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentCompliancePropertyListRequest.md)
 - [PostInstrumentCompliancePropertyListRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentCompliancePropertyListRequestData.md)
 - [PostInstrumentCompliancePropertyListRequestDataFilter](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentCompliancePropertyListRequestDataFilter.md)
 - [PostInstrumentCrossReferenceListByISINRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentCrossReferenceListByISINRequest.md)
 - [PostInstrumentCrossReferenceListByISINRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentCrossReferenceListByISINRequestData.md)
 - [PostInstrumentCrossReferenceListByWKNRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentCrossReferenceListByWKNRequest.md)
 - [PostInstrumentCrossReferenceListByWKNRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentCrossReferenceListByWKNRequestData.md)
 - [PostInstrumentNotationListRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentNotationListRequest.md)
 - [PostInstrumentNotationListRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentNotationListRequestData.md)
 - [PostInstrumentNotationListRequestDataFilter](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentNotationListRequestDataFilter.md)
 - [PostInstrumentNotationListRequestDataFilterMarket](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentNotationListRequestDataFilterMarket.md)
 - [PostInstrumentNotationListRequestDataFilterMarketOrder](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentNotationListRequestDataFilterMarketOrder.md)
 - [PostInstrumentNotationListRequestDataFilterMarketSelection](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentNotationListRequestDataFilterMarketSelection.md)
 - [PostInstrumentNotationListRequestDataFilterMarketSelectionExclude](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentNotationListRequestDataFilterMarketSelectionExclude.md)
 - [PostInstrumentNotationListRequestDataFilterMarketSelectionRestrict](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentNotationListRequestDataFilterMarketSelectionRestrict.md)
 - [PostInstrumentNotationListRequestDataFilterValueUnit](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentNotationListRequestDataFilterValueUnit.md)
 - [PostInstrumentNotationListRequestDataFilterValueUnitOrder](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentNotationListRequestDataFilterValueUnitOrder.md)
 - [PostInstrumentNotationListRequestDataFilterValueUnitSelection](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentNotationListRequestDataFilterValueUnitSelection.md)
 - [PostInstrumentNotationListRequestDataFilterValueUnitSelectionExclude](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentNotationListRequestDataFilterValueUnitSelectionExclude.md)
 - [PostInstrumentNotationListRequestDataFilterValueUnitSelectionRestrict](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentNotationListRequestDataFilterValueUnitSelectionRestrict.md)
 - [PostInstrumentNotationListRequestDataIdentifier](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentNotationListRequestDataIdentifier.md)
 - [PostInstrumentNotationListRequestMeta](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentNotationListRequestMeta.md)
 - [PostInstrumentRatingGradeListRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentRatingGradeListRequest.md)
 - [PostInstrumentRatingGradeListRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentRatingGradeListRequestData.md)
 - [PostInstrumentRatingGradeListRequestDataFilter](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentRatingGradeListRequestDataFilter.md)
 - [PostInstrumentRatingGradeListRequestDataFilterRatingSystem](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentRatingGradeListRequestDataFilterRatingSystem.md)
 - [PostNotationCrossReferenceFactSetIdentifierListByFactSetIdentifierRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationCrossReferenceFactSetIdentifierListByFactSetIdentifierRequest.md)
 - [PostNotationCrossReferenceFactSetIdentifierListByFactSetIdentifierRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationCrossReferenceFactSetIdentifierListByFactSetIdentifierRequestData.md)
 - [PostNotationCrossReferenceFactSetIdentifierListByInstrumentRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationCrossReferenceFactSetIdentifierListByInstrumentRequest.md)
 - [PostNotationCrossReferenceFactSetIdentifierListByInstrumentRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationCrossReferenceFactSetIdentifierListByInstrumentRequestData.md)
 - [PostNotationCrossReferenceListByISINRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationCrossReferenceListByISINRequest.md)
 - [PostNotationCrossReferenceListByISINRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationCrossReferenceListByISINRequestData.md)
 - [PostNotationCrossReferenceListByInstrumentRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationCrossReferenceListByInstrumentRequest.md)
 - [PostNotationCrossReferenceListByInstrumentRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationCrossReferenceListByInstrumentRequestData.md)
 - [PostNotationCrossReferenceListByInstrumentRequestDataFilter](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationCrossReferenceListByInstrumentRequestDataFilter.md)
 - [PostNotationCrossReferenceListByInstrumentRequestDataFilterMarkets](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationCrossReferenceListByInstrumentRequestDataFilterMarkets.md)
 - [PostNotationCrossReferenceListByInstrumentRequestDataFilterValueUnits](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationCrossReferenceListByInstrumentRequestDataFilterValueUnits.md)
 - [PostNotationCrossReferenceListByInstrumentRequestDataIdentifier](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationCrossReferenceListByInstrumentRequestDataIdentifier.md)
 - [PostNotationCrossReferenceListBySymbolRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationCrossReferenceListBySymbolRequest.md)
 - [PostNotationCrossReferenceListBySymbolRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationCrossReferenceListBySymbolRequestData.md)
 - [PostNotationMarketListRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationMarketListRequest.md)
 - [PostNotationMarketListRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationMarketListRequestData.md)
 - [PostNotationMarketListRequestDataFilter](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationMarketListRequestDataFilter.md)
 - [PostNotationMarketListRequestDataFilterAssetClass](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationMarketListRequestDataFilterAssetClass.md)
 - [PostNotationMarketListRequestDataFilterCountry](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationMarketListRequestDataFilterCountry.md)
 - [PostNotationMarketListRequestDataFilterGroup](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationMarketListRequestDataFilterGroup.md)
 - [PostNotationMarketListRequestDataFilterType](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationMarketListRequestDataFilterType.md)
 - [PostNotationMarketListRequestMeta](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationMarketListRequestMeta.md)
 - [PostNotationSearchByTextRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationSearchByTextRequest.md)
 - [PostNotationSearchByTextRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationSearchByTextRequestData.md)
 - [PostNotationSearchByTextRequestDataAssetClasses](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationSearchByTextRequestDataAssetClasses.md)
 - [PostNotationSearchByTextRequestDataMarket](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationSearchByTextRequestDataMarket.md)
 - [PostNotationSearchByTextRequestDataMarketOrder](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationSearchByTextRequestDataMarketOrder.md)
 - [PostNotationSearchByTextRequestDataText](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationSearchByTextRequestDataText.md)
 - [PostNotationSearchByTextRequestDataTradingValue](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationSearchByTextRequestDataTradingValue.md)
 - [PostNotationSearchByTextRequestDataTradingValueAverage](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationSearchByTextRequestDataTradingValueAverage.md)
 - [PostNotationSearchByTextRequestDataTradingValueAverageDays30](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationSearchByTextRequestDataTradingValueAverageDays30.md)
 - [PostNotationSearchByTextRequestDataTradingValueAverageDays30Maximum](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationSearchByTextRequestDataTradingValueAverageDays30Maximum.md)
 - [PostNotationSearchByTextRequestDataTradingValueAverageDays30Minimum](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationSearchByTextRequestDataTradingValueAverageDays30Minimum.md)
 - [PostNotationSearchByTextRequestDataValidation](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationSearchByTextRequestDataValidation.md)
 - [PostNotationSearchByTextRequestDataValidationMarket](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationSearchByTextRequestDataValidationMarket.md)
 - [PostNotationSearchByTextRequestDataValidationMarketPriority](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationSearchByTextRequestDataValidationMarketPriority.md)
 - [PostNotationSearchByTextRequestDataValidationMarketSelection](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationSearchByTextRequestDataValidationMarketSelection.md)
 - [PostNotationSearchByTextRequestDataValidationPrices](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationSearchByTextRequestDataValidationPrices.md)
 - [PostNotationSearchByTextRequestDataValidationPricesLatest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationSearchByTextRequestDataValidationPricesLatest.md)
 - [PostNotationSearchByTextRequestDataValidationPricesPrevious](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationSearchByTextRequestDataValidationPricesPrevious.md)
 - [PostNotationSearchByTextRequestDataValidationValueUnit](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationSearchByTextRequestDataValidationValueUnit.md)
 - [PostNotationSearchByTextRequestDataValidationValueUnitSelection](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationSearchByTextRequestDataValidationValueUnitSelection.md)
 - [PostNotationSearchByTextRequestMeta](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationSearchByTextRequestMeta.md)
 - [PostPricesTradingScheduleEventListRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostPricesTradingScheduleEventListRequest.md)
 - [PostPricesTradingScheduleEventListRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostPricesTradingScheduleEventListRequestData.md)
 - [PostPricesTradingScheduleEventListRequestDataFilter](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostPricesTradingScheduleEventListRequestDataFilter.md)
 - [PostPricesTradingScheduleEventListRequestDataFilterRange](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostPricesTradingScheduleEventListRequestDataFilterRange.md)
 - [PostPricesTradingScheduleEventListRequestDataIdentifier](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostPricesTradingScheduleEventListRequestDataIdentifier.md)
 - [PostPricesTradingScheduleEventListRequestMeta](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostPricesTradingScheduleEventListRequestMeta.md)
 - [PostPricesTradingScheduleEventListRequestMetaPagination](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostPricesTradingScheduleEventListRequestMetaPagination.md)
 - [StatusObject](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/StatusObject.md)


## Documentation For Authorization


## FactSetApiKey

- **Type**: HTTP basic authentication


## FactSetOAuth2

- **Type**: OAuth
- **Flow**: application
- **Authorization URL**: 
- **Scopes**: N/A


## Notes for Large OpenAPI documents
If the OpenAPI document is large, imports in fds.sdk.QuotesAPIforDigitalPortals.apis and fds.sdk.QuotesAPIforDigitalPortals.models may fail with a
RecursionError indicating the maximum recursion limit has been exceeded. In that case, there are a couple of solutions:

Solution 1:
Use specific imports for apis and models like:
- `from fds.sdk.QuotesAPIforDigitalPortals.api.default_api import DefaultApi`
- `from fds.sdk.QuotesAPIforDigitalPortals.model.pet import Pet`

Solution 2:
Before importing the package, adjust the maximum recursion limit as shown below:
```
import sys
sys.setrecursionlimit(1500)
import fds.sdk.QuotesAPIforDigitalPortals
from fds.sdk.QuotesAPIforDigitalPortals.apis import *
from fds.sdk.QuotesAPIforDigitalPortals.models import *
```

## Contributing

Please refer to the [contributing guide](../../../../CONTRIBUTING.md).

## Copyright

Copyright 2022 FactSet Research Systems Inc

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.




            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3",
    "name": "fds.sdk.QuotesAPIforDigitalPortals",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "FactSet,API,SDK",
    "author": "FactSet Research Systems",
    "author_email": "",
    "download_url": "",
    "platform": null,
    "description": "[![FactSet](https://raw.githubusercontent.com/factset/enterprise-sdk/main/docs/images/factset-logo.svg)](https://www.factset.com)\n\n# Quotes API for Digital Portals client library for Python\n\n[![PyPi](https://img.shields.io/pypi/v/fds.sdk.QuotesAPIforDigitalPortals)](https://pypi.org/project/fds.sdk.QuotesAPIforDigitalPortals/)\n[![Apache-2 license](https://img.shields.io/badge/license-Apache2-brightgreen.svg)](https://www.apache.org/licenses/LICENSE-2.0)\n\nThe Quotes API combines endpoints for retrieving security end-of-day, delayed, and realtime prices with performance key figures and basic\nreference data on the security and market level.\n\nThe API supports over 20 different price types for each quote and comes with basic search endpoints based on security identifiers and instrument names.\nMarket coverage is included in the *Sample Use Cases* section below.\n\nThe Digital Portal use case is focused on high-performance applications that are\n\n* serving millions of end-users,\n* accessible by client browsers via the internet,\n* supporting subscriptions for streamed updates out-of-the-box,\n* typically combining a wide variety of *for Digital Portals*-APIs into a highly use-case specific solution for customers,\n* integrated into complex infrastructures such as existing frontend frameworks, authentication services.\n\nAll APIs labelled *for Digital Portals* have been designed for direct use by client web applications and feature extreme low latency: The average\nresponse time across all endpoints is 30 ms whereas 99% of all requests are answered in close to under 300ms.\n\nSee the [Time Series API for Digital Portals](https://developer.factset.com/api-catalog/time-series-api-digital-portals) for direct access to\nprice histories, and the [News API for Digital Portals](https://developer.factset.com/api-catalog/news-api-digital-portals) for searching and\nfetching related news.\n\n\nThis Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:\n\n- API version: 2\n- Package version: 0.10.8\n- Build package: org.openapitools.codegen.languages.PythonClientCodegen\n\n## Requirements\n\n* Python >= 3.7\n\n## Installation\n\n### Poetry\n\n```shell\npoetry add fds.sdk.utils fds.sdk.QuotesAPIforDigitalPortals\n```\n\n### pip\n\n```shell\npip install fds.sdk.utils fds.sdk.QuotesAPIforDigitalPortals\n```\n\n## Usage\n\n1. [Generate authentication credentials](../../../../README.md#authentication).\n2. Setup Python environment.\n   1. Install and activate python 3.7+. If you're using [pyenv](https://github.com/pyenv/pyenv):\n\n      ```sh\n      pyenv install 3.9.7\n      pyenv shell 3.9.7\n      ```\n\n   2. (optional) [Install poetry](https://python-poetry.org/docs/#installation).\n3. [Install dependencies](#installation).\n4. Run the following:\n\n```python\nfrom fds.sdk.utils.authentication import ConfidentialClient\n\nimport fds.sdk.QuotesAPIforDigitalPortals\nfrom fds.sdk.QuotesAPIforDigitalPortals.api import basic_api\nfrom fds.sdk.QuotesAPIforDigitalPortals.models import *\nfrom dateutil.parser import parse as dateutil_parser\nfrom pprint import pprint\n\n# See configuration.py for a list of all supported configuration parameters.\n\n# Examples for each supported authentication method are below,\n# choose one that satisfies your use case.\n\n# (Preferred) OAuth 2.0: FactSetOAuth2\n# See https://github.com/FactSet/enterprise-sdk#oauth-20\n# for information on how to create the app-config.json file\n# See https://github.com/FactSet/enterprise-sdk-utils-python#authentication\n# for more information on using the ConfidentialClient class\nconfiguration = fds.sdk.QuotesAPIforDigitalPortals.Configuration(\n    fds_oauth_client=ConfidentialClient('/path/to/app-config.json')\n)\n\n# Basic authentication: FactSetApiKey\n# See https://github.com/FactSet/enterprise-sdk#api-key\n# for information how to create an API key\n# configuration = fds.sdk.QuotesAPIforDigitalPortals.Configuration(\n#     username='USERNAME-SERIAL',\n#     password='API-KEY'\n# )\n\n# Enter a context with an instance of the API client\nwith fds.sdk.QuotesAPIforDigitalPortals.ApiClient(configuration) as api_client:\n    # Create an instance of the API class\n    api_instance = basic_api.BasicApi(api_client)\n    # NOTE: The parameter variable defined below is just an example and may potentially contain non valid values. So please replace this with valid values.\n    attributes = [\n        \"_attributes_example\",\n    ] # [str] | Limit the attributes returned in the response to the specified set. (optional)\n\n    try:\n        # List of asset classes.\n        # example passing only required values which don't have defaults set\n        # and optional values\n        api_response = api_instance.get_basic_asset_class_list(attributes=attributes)\n\n        pprint(api_response)\n    except fds.sdk.QuotesAPIforDigitalPortals.ApiException as e:\n        print(\"Exception when calling BasicApi->get_basic_asset_class_list: %s\\n\" % e)\n\n    # # Get response, http status code and response headers\n    # try:\n    #     # List of asset classes.\n    #     api_response, http_status_code, response_headers = api_instance.get_basic_asset_class_list_with_http_info(attributes=attributes)\n\n\n    #     pprint(api_response)\n    #     pprint(http_status_code)\n    #     pprint(response_headers)\n    # except fds.sdk.QuotesAPIforDigitalPortals.ApiException as e:\n    #     print(\"Exception when calling BasicApi->get_basic_asset_class_list: %s\\n\" % e)\n\n    # # Get response asynchronous\n    # try:\n    #     # List of asset classes.\n    #     async_result = api_instance.get_basic_asset_class_list_async(attributes=attributes)\n    #     api_response = async_result.get()\n\n\n    #     pprint(api_response)\n    # except fds.sdk.QuotesAPIforDigitalPortals.ApiException as e:\n    #     print(\"Exception when calling BasicApi->get_basic_asset_class_list: %s\\n\" % e)\n\n    # # Get response, http status code and response headers asynchronous\n    # try:\n    #     # List of asset classes.\n    #     async_result = api_instance.get_basic_asset_class_list_with_http_info_async(attributes=attributes)\n    #     api_response, http_status_code, response_headers = async_result.get()\n\n\n    #     pprint(api_response)\n    #     pprint(http_status_code)\n    #     pprint(response_headers)\n    # except fds.sdk.QuotesAPIforDigitalPortals.ApiException as e:\n    #     print(\"Exception when calling BasicApi->get_basic_asset_class_list: %s\\n\" % e)\n\n```\n\n### Using Pandas\n\nTo convert an API response to a Pandas DataFrame, it is necessary to transform it first to a dictionary.\n```python\nimport pandas as pd\n\nresponse_dict = api_response.to_dict()['data']\n\nsimple_json_response = pd.DataFrame(response_dict)\nnested_json_response = pd.json_normalize(response_dict)\n```\n\n### Debugging\n\nThe SDK uses the standard library [`logging`](https://docs.python.org/3/library/logging.html#module-logging) module.\n\nSetting `debug` to `True` on an instance of the `Configuration` class sets the log-level of related packages to `DEBUG`\nand enables additional logging in Pythons [HTTP Client](https://docs.python.org/3/library/http.client.html).\n\n**Note**: This prints out sensitive information (e.g. the full request and response). Use with care.\n\n```python\nimport logging\nimport fds.sdk.QuotesAPIforDigitalPortals\n\nlogging.basicConfig(level=logging.DEBUG)\n\nconfiguration = fds.sdk.QuotesAPIforDigitalPortals.Configuration(...)\nconfiguration.debug = True\n```\n\n### Configure a Proxy\n\nYou can pass proxy settings to the Configuration class:\n\n* `proxy`: The URL of the proxy to use.\n* `proxy_headers`: a dictionary to pass additional headers to the proxy (e.g. `Proxy-Authorization`).\n\n```python\nimport fds.sdk.QuotesAPIforDigitalPortals\n\nconfiguration = fds.sdk.QuotesAPIforDigitalPortals.Configuration(\n    # ...\n    proxy=\"http://secret:password@localhost:5050\",\n    proxy_headers={\n        \"Custom-Proxy-Header\": \"Custom-Proxy-Header-Value\"\n    }\n)\n```\n\n### Custom SSL Certificate\n\nTLS/SSL certificate verification can be configured with the following Configuration parameters:\n\n* `ssl_ca_cert`: a path to the certificate to use for verification in `PEM` format.\n* `verify_ssl`: setting this to `False` disables the verification of certificates.\n  Disabling the verification is not recommended, but it might be useful during\n  local development or testing.\n\n```python\nimport fds.sdk.QuotesAPIforDigitalPortals\n\nconfiguration = fds.sdk.QuotesAPIforDigitalPortals.Configuration(\n    # ...\n    ssl_ca_cert='/path/to/ca.pem'\n)\n```\n\n\n## Documentation for API Endpoints\n\nAll URIs are relative to *https://api.factset.com/wealth/v1*\n\nClass | Method | HTTP request | Description\n------------ | ------------- | ------------- | -------------\n*BasicApi* | [**get_basic_asset_class_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_asset_class_list) | **GET** /basic/assetClass/list | List of asset classes.\n*BasicApi* | [**get_basic_benchmark_type_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_benchmark_type_list) | **GET** /basic/benchmark/type/list | List of benchmark types.\n*BasicApi* | [**get_basic_frequency_type_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_frequency_type_list) | **GET** /basic/frequency/type/list | List of frequency types.\n*BasicApi* | [**get_basic_language_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_language_get) | **GET** /basic/language/get | Details for a language.\n*BasicApi* | [**get_basic_language_get_by_code**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_language_get_by_code) | **GET** /basic/language/getByCode | Details for a language identified by code.\n*BasicApi* | [**get_basic_language_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_language_list) | **GET** /basic/language/list | List of languages.\n*BasicApi* | [**get_basic_market_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_market_get) | **GET** /basic/market/get | Details of a market.\n*BasicApi* | [**get_basic_market_group_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_market_group_list) | **GET** /basic/market/group/list | List of market groups.\n*BasicApi* | [**get_basic_market_type_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_market_type_list) | **GET** /basic/market/type/list | List of market types.\n*BasicApi* | [**get_basic_media_kind_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_media_kind_list) | **GET** /basic/media/kind/list | List of media kinds.\n*BasicApi* | [**get_basic_region_continent_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_region_continent_get) | **GET** /basic/region/continent/get | Details for a continent.\n*BasicApi* | [**get_basic_region_continent_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_region_continent_list) | **GET** /basic/region/continent/list | List of continents.\n*BasicApi* | [**get_basic_region_country_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_region_country_get) | **GET** /basic/region/country/get | Details for a country.\n*BasicApi* | [**get_basic_region_country_get_by_code**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_region_country_get_by_code) | **GET** /basic/region/country/getByCode | Details for a country identified by code.\n*BasicApi* | [**get_basic_region_country_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_region_country_list) | **GET** /basic/region/country/list | List of countries.\n*BasicApi* | [**get_basic_region_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_region_get) | **GET** /basic/region/get | Details for a region.\n*BasicApi* | [**get_basic_region_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_region_list) | **GET** /basic/region/list | List of regions.\n*BasicApi* | [**get_basic_timezone_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_timezone_get) | **GET** /basic/timezone/get | Details of a timezone.\n*BasicApi* | [**get_basic_timezone_get_by_name**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_timezone_get_by_name) | **GET** /basic/timezone/getByName | Details of a timezone identified by name.\n*BasicApi* | [**get_basic_value_unit_alternative_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_value_unit_alternative_list) | **GET** /basic/valueUnit/alternative/list | List of alternative units.\n*BasicApi* | [**get_basic_value_unit_currency_fractional_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_value_unit_currency_fractional_get) | **GET** /basic/valueUnit/currency/fractional/get | Details of a fractional currency.\n*BasicApi* | [**get_basic_value_unit_currency_fractional_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_value_unit_currency_fractional_list) | **GET** /basic/valueUnit/currency/fractional/list | List of fractional currencies.\n*BasicApi* | [**get_basic_value_unit_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#get_basic_value_unit_get) | **GET** /basic/valueUnit/get | Details of a value unit.\n*BasicApi* | [**post_basic_background_text_type_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#post_basic_background_text_type_list) | **POST** /basic/backgroundText/type/list | List of background text types.\n*BasicApi* | [**post_basic_delivery_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#post_basic_delivery_list) | **POST** /basic/delivery/list | List of deliveries.\n*BasicApi* | [**post_basic_market_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#post_basic_market_list) | **POST** /basic/market/list | List of markets.\n*BasicApi* | [**post_basic_media_type_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#post_basic_media_type_list) | **POST** /basic/media/type/list | List of Internet media types.\n*BasicApi* | [**post_basic_mic_operating_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#post_basic_mic_operating_list) | **POST** /basic/mic/operating/list | List of operating market identifier codes (MIC).\n*BasicApi* | [**post_basic_timezone_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#post_basic_timezone_list) | **POST** /basic/timezone/list | List of timezones.\n*BasicApi* | [**post_basic_value_unit_currency_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#post_basic_value_unit_currency_list) | **POST** /basic/valueUnit/currency/list | List of currencies.\n*BasicApi* | [**post_basic_value_unit_currency_main_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#post_basic_value_unit_currency_main_list) | **POST** /basic/valueUnit/currency/main/list | List of main currencies.\n*BasicApi* | [**post_basic_value_unit_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/BasicApi.md#post_basic_value_unit_list) | **POST** /basic/valueUnit/list | List of value units.\n*CategoryApi* | [**get_category_dataset_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/CategoryApi.md#get_category_dataset_list) | **GET** /category/dataset/list | List of entitled category datasets.\n*CategoryApi* | [**get_category_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/CategoryApi.md#get_category_get) | **GET** /category/get | Details of a category.\n*CategoryApi* | [**get_category_instrument_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/CategoryApi.md#get_category_instrument_list) | **GET** /category/instrument/list | List of instruments where a specific dataset has assigned a given category.\n*CategoryApi* | [**get_category_level_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/CategoryApi.md#get_category_level_get) | **GET** /category/level/get | Details of a category level.\n*CategoryApi* | [**get_category_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/CategoryApi.md#get_category_list) | **GET** /category/list | List of categories.\n*CategoryApi* | [**get_category_list_by_level**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/CategoryApi.md#get_category_list_by_level) | **GET** /category/listByLevel | List of categories assigned to a category level.\n*CategoryApi* | [**get_category_list_by_system**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/CategoryApi.md#get_category_list_by_system) | **GET** /category/listBySystem | List of categories assigned to a category system.\n*CategoryApi* | [**get_category_path_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/CategoryApi.md#get_category_path_get) | **GET** /category/path/get | Path from the first level to the level of a specific category.\n*CategoryApi* | [**get_category_system_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/CategoryApi.md#get_category_system_get) | **GET** /category/system/get | Details of an entitled category system.\n*CategoryApi* | [**get_category_system_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/CategoryApi.md#get_category_system_list) | **GET** /category/system/list | List of entitled category systems.\n*CategoryApi* | [**get_category_system_type_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/CategoryApi.md#get_category_system_type_list) | **GET** /category/system/type/list | List of category system types.\n*InstrumentApi* | [**get_instrument_background_text_list_by_instrument**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#get_instrument_background_text_list_by_instrument) | **GET** /instrument/backgroundText/listByInstrument | Background texts of an instrument.\n*InstrumentApi* | [**get_instrument_compliance_property_list_by_instrument**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#get_instrument_compliance_property_list_by_instrument) | **GET** /instrument/complianceProperty/listByInstrument | Compliance properties of an instrument.\n*InstrumentApi* | [**get_instrument_composite_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#get_instrument_composite_get) | **GET** /instrument/composite/get | Composite instrument and its components.\n*InstrumentApi* | [**get_instrument_coupon_day_count_convention_type_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#get_instrument_coupon_day_count_convention_type_list) | **GET** /instrument/coupon/dayCountConvention/type/list | List of day count convention types.\n*InstrumentApi* | [**get_instrument_coupon_interest_rate_type_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#get_instrument_coupon_interest_rate_type_list) | **GET** /instrument/coupon/interestRate/type/list | List of interest rate types.\n*InstrumentApi* | [**get_instrument_coupon_key_data_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#get_instrument_coupon_key_data_get) | **GET** /instrument/coupon/keyData/get | Interest rate details for selected periods of an interest-bearing instrument.\n*InstrumentApi* | [**get_instrument_coupon_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#get_instrument_coupon_list) | **GET** /instrument/coupon/list | List of coupons for an interest-bearing instrument.\n*InstrumentApi* | [**get_instrument_cross_reference_get_by_isin**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#get_instrument_cross_reference_get_by_isin) | **GET** /instrument/crossReference/getByISIN | Translate ISIN to instrument.\n*InstrumentApi* | [**get_instrument_cross_reference_get_by_wkn**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#get_instrument_cross_reference_get_by_wkn) | **GET** /instrument/crossReference/getByWKN | Translate WKN to instrument.\n*InstrumentApi* | [**get_instrument_cross_reference_history_get_by_isin**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#get_instrument_cross_reference_history_get_by_isin) | **GET** /instrument/crossReference/history/getByISIN | ISIN to instrument translation history.\n*InstrumentApi* | [**get_instrument_cross_reference_history_get_by_wkn**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#get_instrument_cross_reference_history_get_by_wkn) | **GET** /instrument/crossReference/history/getByWKN | WKN to instrument translation history.\n*InstrumentApi* | [**get_instrument_exchange_rate_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#get_instrument_exchange_rate_get) | **GET** /instrument/exchangeRate/get | Retrieve an exchange rate instrument identifier.\n*InstrumentApi* | [**get_instrument_exchange_rate_get_by_iso_code**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#get_instrument_exchange_rate_get_by_iso_code) | **GET** /instrument/exchangeRate/getByISOCode | Retrieve an exchange rate instrument identifier.\n*InstrumentApi* | [**get_instrument_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#get_instrument_get) | **GET** /instrument/get | Basic data for an instrument.\n*InstrumentApi* | [**get_instrument_get_by_notation**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#get_instrument_get_by_notation) | **GET** /instrument/getByNotation | Basic data for an instrument.\n*InstrumentApi* | [**get_instrument_legal_entity_background_text_list_by_instrument**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#get_instrument_legal_entity_background_text_list_by_instrument) | **GET** /instrument/legalEntity/backgroundText/listByInstrument | Role-specific background texts of legal entities related to an instrument.\n*InstrumentApi* | [**get_instrument_legal_entity_compliance_property_list_by_instrument**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#get_instrument_legal_entity_compliance_property_list_by_instrument) | **GET** /instrument/legalEntity/complianceProperty/listByInstrument | Role-specific compliance properties of legal entities related to an instrument.\n*InstrumentApi* | [**get_instrument_mifid_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#get_instrument_mifid_get) | **GET** /instrument/mifid/get | MiFID II data for a financial instrument.\n*InstrumentApi* | [**get_instrument_search_basic**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#get_instrument_search_basic) | **GET** /instrument/search/basic | Basic search for instruments.\n*InstrumentApi* | [**post_instrument_background_text_type_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#post_instrument_background_text_type_list) | **POST** /instrument/backgroundText/type/list | List of background text types for instruments.\n*InstrumentApi* | [**post_instrument_benchmark_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#post_instrument_benchmark_list) | **POST** /instrument/benchmark/list | List of benchmarks of a financial instrument.\n*InstrumentApi* | [**post_instrument_category_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#post_instrument_category_list) | **POST** /instrument/category/list | List of categories assigned to a specific instrument the application is entitled to see.\n*InstrumentApi* | [**post_instrument_compliance_property_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#post_instrument_compliance_property_list) | **POST** /instrument/complianceProperty/list | List of compliance properties for instruments.\n*InstrumentApi* | [**post_instrument_cross_reference_list_by_isin**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#post_instrument_cross_reference_list_by_isin) | **POST** /instrument/crossReference/listByISIN | Translate a list of ISINs to instruments.\n*InstrumentApi* | [**post_instrument_cross_reference_list_by_wkn**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#post_instrument_cross_reference_list_by_wkn) | **POST** /instrument/crossReference/listByWKN | Translate a list of WKNs to instruments.\n*InstrumentApi* | [**post_instrument_notation_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#post_instrument_notation_list) | **POST** /instrument/notation/list | List of active, entitled notations for a set of instruments.\n*InstrumentApi* | [**post_instrument_rating_grade_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InstrumentApi.md#post_instrument_rating_grade_list) | **POST** /instrument/rating/grade/list | List of rating grades for a list of instruments.\n*NotationApi* | [**get_notation_cross_reference_fact_set_identifier_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_cross_reference_fact_set_identifier_get) | **GET** /notation/crossReference/factSetIdentifier/get | Retrieve FactSet identifiers for a given notation.\n*NotationApi* | [**get_notation_cross_reference_get_by_fact_set_market_symbol**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_cross_reference_get_by_fact_set_market_symbol) | **GET** /notation/crossReference/getByFactSetMarketSymbol | Translate a FactSet market symbol to a notation.\n*NotationApi* | [**get_notation_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_get) | **GET** /notation/get | Basic data for a notation.\n*NotationApi* | [**get_notation_key_figures_month_1_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_key_figures_month_1_get) | **GET** /notation/keyFigures/month/1/get | End-of-day (EOD) key figures for the time range of one month.\n*NotationApi* | [**get_notation_key_figures_month_1_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_key_figures_month_1_list) | **GET** /notation/keyFigures/month/1/list | End-of-day (EOD) key figures for the time range of one month, for a list of notations.\n*NotationApi* | [**get_notation_key_figures_month_3_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_key_figures_month_3_get) | **GET** /notation/keyFigures/month/3/get | End-of-day (EOD) key figures for the time range of three months.\n*NotationApi* | [**get_notation_key_figures_month_3_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_key_figures_month_3_list) | **GET** /notation/keyFigures/month/3/list | End-of-day (EOD) key figures for the time range of three months, for a list of notations.\n*NotationApi* | [**get_notation_key_figures_month_6_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_key_figures_month_6_get) | **GET** /notation/keyFigures/month/6/get | End-of-day (EOD) key figures for the time range of six months.\n*NotationApi* | [**get_notation_key_figures_month_6_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_key_figures_month_6_list) | **GET** /notation/keyFigures/month/6/list | End-of-day (EOD) key figures for the time range of six months, for a list of notations.\n*NotationApi* | [**get_notation_key_figures_week_1_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_key_figures_week_1_get) | **GET** /notation/keyFigures/week/1/get | End-of-day (EOD) key figures for the time range of one week.\n*NotationApi* | [**get_notation_key_figures_week_1_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_key_figures_week_1_list) | **GET** /notation/keyFigures/week/1/list | End-of-day (EOD) key figures for the time range of one week, for a list of notations.\n*NotationApi* | [**get_notation_key_figures_year_10_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_key_figures_year_10_get) | **GET** /notation/keyFigures/year/10/get | End-of-day (EOD) key figures for the time range of ten years.\n*NotationApi* | [**get_notation_key_figures_year_10_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_key_figures_year_10_list) | **GET** /notation/keyFigures/year/10/list | End-of-day (EOD) key figures for the time range of ten years, for a list of notations.\n*NotationApi* | [**get_notation_key_figures_year_1_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_key_figures_year_1_get) | **GET** /notation/keyFigures/year/1/get | End-of-day (EOD) key figures for the time range of one year.\n*NotationApi* | [**get_notation_key_figures_year_1_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_key_figures_year_1_list) | **GET** /notation/keyFigures/year/1/list | End-of-day (EOD) key figures for the time range of one year, for a list of notations.\n*NotationApi* | [**get_notation_key_figures_year_3_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_key_figures_year_3_get) | **GET** /notation/keyFigures/year/3/get | End-of-day (EOD) key figures for the time range of three years.\n*NotationApi* | [**get_notation_key_figures_year_3_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_key_figures_year_3_list) | **GET** /notation/keyFigures/year/3/list | End-of-day (EOD) key figures for the time range of three years, for a list of notations.\n*NotationApi* | [**get_notation_key_figures_year_5_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_key_figures_year_5_get) | **GET** /notation/keyFigures/year/5/get | End-of-day (EOD) key figures for the time range of five years.\n*NotationApi* | [**get_notation_key_figures_year_5_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_key_figures_year_5_list) | **GET** /notation/keyFigures/year/5/list | End-of-day (EOD) key figures for the time range of five years, for a list of notations.\n*NotationApi* | [**get_notation_key_figures_year_7_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_key_figures_year_7_get) | **GET** /notation/keyFigures/year/7/get | End-of-day (EOD) key figures for the time range of seven years.\n*NotationApi* | [**get_notation_key_figures_year_7_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_key_figures_year_7_list) | **GET** /notation/keyFigures/year/7/list | End-of-day (EOD) key figures for the time range of seven years, for a list of notations.\n*NotationApi* | [**get_notation_key_figures_year_to_date_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_key_figures_year_to_date_get) | **GET** /notation/keyFigures/yearToDate/get | End-of-day (EOD) key figures for the time range year-to-date (YTD)..\n*NotationApi* | [**get_notation_key_figures_year_to_date_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_key_figures_year_to_date_list) | **GET** /notation/keyFigures/yearToDate/list | End-of-day (EOD) key figures for the time range year-to-date (YTD), for a list of notations..\n*NotationApi* | [**get_notation_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_list) | **GET** /notation/list | Basic data for a list of notations.\n*NotationApi* | [**get_notation_search_basic**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_search_basic) | **GET** /notation/search/basic | Basic search for notations.\n*NotationApi* | [**get_notation_search_by_text_ranked_by_volume**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_search_by_text_ranked_by_volume) | **GET** /notation/searchByTextRankedByVolume | Basic search for notations.\n*NotationApi* | [**get_notation_status_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#get_notation_status_get) | **GET** /notation/status/get | Intraday trading status of a notation.\n*NotationApi* | [**post_notation_cross_reference_fact_set_identifier_list_by_fact_set_identifier**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#post_notation_cross_reference_fact_set_identifier_list_by_fact_set_identifier) | **POST** /notation/crossReference/factSetIdentifier/listByFactSetIdentifier | Retrieve a list of notations for a given FactSet identifier.\n*NotationApi* | [**post_notation_cross_reference_fact_set_identifier_list_by_instrument**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#post_notation_cross_reference_fact_set_identifier_list_by_instrument) | **POST** /notation/crossReference/factSetIdentifier/listByInstrument | Retrieve a list of FactSet identifiers for a given instrument.\n*NotationApi* | [**post_notation_cross_reference_list_by_instrument**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#post_notation_cross_reference_list_by_instrument) | **POST** /notation/crossReference/listByInstrument | List of entitled notations.\n*NotationApi* | [**post_notation_cross_reference_list_by_isin**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#post_notation_cross_reference_list_by_isin) | **POST** /notation/crossReference/listByISIN | List of entitled notations.\n*NotationApi* | [**post_notation_cross_reference_list_by_symbol**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#post_notation_cross_reference_list_by_symbol) | **POST** /notation/crossReference/listBySymbol | List of entitled notations.\n*NotationApi* | [**post_notation_market_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#post_notation_market_list) | **POST** /notation/market/list | List of markets with entitled notations.\n*NotationApi* | [**post_notation_search_by_text**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/NotationApi.md#post_notation_search_by_text) | **POST** /notation/searchByText | Text-based search for notations.\n*PricesApi* | [**get_prices_bid_ask_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PricesApi.md#get_prices_bid_ask_get) | **GET** /prices/bidAsk/get | Most recent bid and ask prices (best bid / offer) for a notation.\n*PricesApi* | [**get_prices_bid_ask_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PricesApi.md#get_prices_bid_ask_list) | **GET** /prices/bidAsk/list | Most recent bid and ask prices (best bid / offer) for a list of notations.\n*PricesApi* | [**get_prices_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PricesApi.md#get_prices_get) | **GET** /prices/get | Overview of trading on the most recent trading day, including the latest price, for a notation.\n*PricesApi* | [**get_prices_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PricesApi.md#get_prices_list) | **GET** /prices/list | Overview of trading on the most recent trading day, including the latest price, for a list of notations.\n*PricesApi* | [**get_prices_orderbook_aggregated_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PricesApi.md#get_prices_orderbook_aggregated_get) | **GET** /prices/orderbook/aggregated/get | Orderbook aggregated by price.\n*PricesApi* | [**get_prices_orderbook_full_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PricesApi.md#get_prices_orderbook_full_get) | **GET** /prices/orderbook/full/get | Full orderbook\n*PricesApi* | [**get_prices_trading_schedule_event_type_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PricesApi.md#get_prices_trading_schedule_event_type_list) | **GET** /prices/tradingSchedule/event/type/list | Trading schedule event types.\n*PricesApi* | [**post_prices_trading_schedule_event_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PricesApi.md#post_prices_trading_schedule_event_list) | **POST** /prices/tradingSchedule/event/list | Sequence of market-related events.\n\n\n## Documentation For Models\n\n - [AttributesMember](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/AttributesMember.md)\n - [CursorBasedPaginationOutputObject](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/CursorBasedPaginationOutputObject.md)\n - [CursorBasedPaginationOutputObjectWithoutTotal](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/CursorBasedPaginationOutputObjectWithoutTotal.md)\n - [ErrorMetaObject](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/ErrorMetaObject.md)\n - [ErrorObject](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/ErrorObject.md)\n - [InlineResponse200](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse200.md)\n - [InlineResponse2001](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2001.md)\n - [InlineResponse20010](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20010.md)\n - [InlineResponse20010Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20010Data.md)\n - [InlineResponse20011](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20011.md)\n - [InlineResponse20011Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20011Data.md)\n - [InlineResponse20012](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20012.md)\n - [InlineResponse20012Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20012Data.md)\n - [InlineResponse20013](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20013.md)\n - [InlineResponse20013Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20013Data.md)\n - [InlineResponse20013Kind](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20013Kind.md)\n - [InlineResponse20014](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20014.md)\n - [InlineResponse20014Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20014Data.md)\n - [InlineResponse20015](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20015.md)\n - [InlineResponse20015Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20015Data.md)\n - [InlineResponse20015DataNestedRegions](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20015DataNestedRegions.md)\n - [InlineResponse20016](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20016.md)\n - [InlineResponse20016Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20016Data.md)\n - [InlineResponse20017](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20017.md)\n - [InlineResponse20017Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20017Data.md)\n - [InlineResponse20017DataCountries](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20017DataCountries.md)\n - [InlineResponse20018](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20018.md)\n - [InlineResponse20018Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20018Data.md)\n - [InlineResponse20019](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20019.md)\n - [InlineResponse20019Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20019Data.md)\n - [InlineResponse20019DataSubdivisions](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20019DataSubdivisions.md)\n - [InlineResponse2001Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2001Data.md)\n - [InlineResponse2002](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2002.md)\n - [InlineResponse20020](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20020.md)\n - [InlineResponse20020Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20020Data.md)\n - [InlineResponse20020DataSubdivisions](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20020DataSubdivisions.md)\n - [InlineResponse20021](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20021.md)\n - [InlineResponse20021Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20021Data.md)\n - [InlineResponse20022](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20022.md)\n - [InlineResponse20022Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20022Data.md)\n - [InlineResponse20023](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20023.md)\n - [InlineResponse20023Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20023Data.md)\n - [InlineResponse20024](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20024.md)\n - [InlineResponse20024Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20024Data.md)\n - [InlineResponse20025](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20025.md)\n - [InlineResponse20025Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20025Data.md)\n - [InlineResponse20026](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20026.md)\n - [InlineResponse20026Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20026Data.md)\n - [InlineResponse20027](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20027.md)\n - [InlineResponse20027Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20027Data.md)\n - [InlineResponse20028](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20028.md)\n - [InlineResponse20028Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20028Data.md)\n - [InlineResponse20028DataMainCurrency](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20028DataMainCurrency.md)\n - [InlineResponse20029](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20029.md)\n - [InlineResponse20029Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20029Data.md)\n - [InlineResponse20029MainCurrency](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20029MainCurrency.md)\n - [InlineResponse2002Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2002Data.md)\n - [InlineResponse2003](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2003.md)\n - [InlineResponse20030](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20030.md)\n - [InlineResponse20030Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20030Data.md)\n - [InlineResponse20031](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20031.md)\n - [InlineResponse20031Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20031Data.md)\n - [InlineResponse20031DataLevel](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20031DataLevel.md)\n - [InlineResponse20031DataParent](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20031DataParent.md)\n - [InlineResponse20031DataParentLevel](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20031DataParentLevel.md)\n - [InlineResponse20031DataSystem](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20031DataSystem.md)\n - [InlineResponse20032](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20032.md)\n - [InlineResponse20032Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20032Data.md)\n - [InlineResponse20032DataCategories](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20032DataCategories.md)\n - [InlineResponse20033](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20033.md)\n - [InlineResponse20033Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20033Data.md)\n - [InlineResponse20033DataCategories](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20033DataCategories.md)\n - [InlineResponse20033DataParent](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20033DataParent.md)\n - [InlineResponse20033DataParent1](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20033DataParent1.md)\n - [InlineResponse20033Meta](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20033Meta.md)\n - [InlineResponse20034](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20034.md)\n - [InlineResponse20034Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20034Data.md)\n - [InlineResponse20034DataCategories](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20034DataCategories.md)\n - [InlineResponse20034DataLevel](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20034DataLevel.md)\n - [InlineResponse20034DataParent](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20034DataParent.md)\n - [InlineResponse20035](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20035.md)\n - [InlineResponse20035Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20035Data.md)\n - [InlineResponse20035Delivery](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20035Delivery.md)\n - [InlineResponse20035System](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20035System.md)\n - [InlineResponse20036](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20036.md)\n - [InlineResponse20036Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20036Data.md)\n - [InlineResponse20036Fsym](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20036Fsym.md)\n - [InlineResponse20036FsymSecurity](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20036FsymSecurity.md)\n - [InlineResponse20036Meta](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20036Meta.md)\n - [InlineResponse20037](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20037.md)\n - [InlineResponse20037Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20037Data.md)\n - [InlineResponse20037DataSystem](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20037DataSystem.md)\n - [InlineResponse20038](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20038.md)\n - [InlineResponse20038Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20038Data.md)\n - [InlineResponse20038DataCategories](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20038DataCategories.md)\n - [InlineResponse20039](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20039.md)\n - [InlineResponse20039Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20039Data.md)\n - [InlineResponse20039DataLevels](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20039DataLevels.md)\n - [InlineResponse20039DataType](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20039DataType.md)\n - [InlineResponse2003Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2003Data.md)\n - [InlineResponse2004](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2004.md)\n - [InlineResponse20040](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20040.md)\n - [InlineResponse20040Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20040Data.md)\n - [InlineResponse20041](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20041.md)\n - [InlineResponse20041Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20041Data.md)\n - [InlineResponse20042](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20042.md)\n - [InlineResponse20042Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20042Data.md)\n - [InlineResponse20042DataAssetClass](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20042DataAssetClass.md)\n - [InlineResponse20042DataNsin](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20042DataNsin.md)\n - [InlineResponse20042DataType](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20042DataType.md)\n - [InlineResponse20043](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20043.md)\n - [InlineResponse20043Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20043Data.md)\n - [InlineResponse20044](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20044.md)\n - [InlineResponse20044Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20044Data.md)\n - [InlineResponse20044Type](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20044Type.md)\n - [InlineResponse20045](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20045.md)\n - [InlineResponse20045Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20045Data.md)\n - [InlineResponse20046](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20046.md)\n - [InlineResponse20046Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20046Data.md)\n - [InlineResponse20046Notation](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20046Notation.md)\n - [InlineResponse20046NotationFsym](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20046NotationFsym.md)\n - [InlineResponse20046NotationFsymListing](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20046NotationFsymListing.md)\n - [InlineResponse20046NotationFsymRegional](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20046NotationFsymRegional.md)\n - [InlineResponse20046NotationInstrument](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20046NotationInstrument.md)\n - [InlineResponse20046Type](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20046Type.md)\n - [InlineResponse20047](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20047.md)\n - [InlineResponse20047Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20047Data.md)\n - [InlineResponse20047Dataset](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20047Dataset.md)\n - [InlineResponse20048](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20048.md)\n - [InlineResponse20048Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20048Data.md)\n - [InlineResponse20049](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20049.md)\n - [InlineResponse2004Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2004Data.md)\n - [InlineResponse2005](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2005.md)\n - [InlineResponse20050](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20050.md)\n - [InlineResponse20050Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20050Data.md)\n - [InlineResponse20050DataComponents](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20050DataComponents.md)\n - [InlineResponse20050DataNotation](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20050DataNotation.md)\n - [InlineResponse20050DataNotationInstrument](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20050DataNotationInstrument.md)\n - [InlineResponse20050DataNotationOperatingMIC](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20050DataNotationOperatingMIC.md)\n - [InlineResponse20050DataValueUnit](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20050DataValueUnit.md)\n - [InlineResponse20051](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20051.md)\n - [InlineResponse20051Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20051Data.md)\n - [InlineResponse20051DataCoupons](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20051DataCoupons.md)\n - [InlineResponse20051DataCurrency](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20051DataCurrency.md)\n - [InlineResponse20051DataInterestRate](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20051DataInterestRate.md)\n - [InlineResponse20051DataInterestRateAnnualized](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20051DataInterestRateAnnualized.md)\n - [InlineResponse20051DataInterestRatePeriodic](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20051DataInterestRatePeriodic.md)\n - [InlineResponse20051DataInterestRateType](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20051DataInterestRateType.md)\n - [InlineResponse20051DataPeriod](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20051DataPeriod.md)\n - [InlineResponse20052](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20052.md)\n - [InlineResponse20052Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20052Data.md)\n - [InlineResponse20053](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20053.md)\n - [InlineResponse20054](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20054.md)\n - [InlineResponse20054Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20054Data.md)\n - [InlineResponse20054DataDayCountConvention](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20054DataDayCountConvention.md)\n - [InlineResponse20054DataInterestRate](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20054DataInterestRate.md)\n - [InlineResponse20054DataInterestRateCurrent](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20054DataInterestRateCurrent.md)\n - [InlineResponse20054DataInterestRateCurrentAccruedInterest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20054DataInterestRateCurrentAccruedInterest.md)\n - [InlineResponse20054DataInterestRateCurrentType](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20054DataInterestRateCurrentType.md)\n - [InlineResponse20054DataInterestRateFinal](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20054DataInterestRateFinal.md)\n - [InlineResponse20054DataInterestRateInitial](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20054DataInterestRateInitial.md)\n - [InlineResponse20054DataOccurrence](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20054DataOccurrence.md)\n - [InlineResponse20054DataOccurrenceFrequency](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20054DataOccurrenceFrequency.md)\n - [InlineResponse20055](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20055.md)\n - [InlineResponse20055Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20055Data.md)\n - [InlineResponse20055DataValidity](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20055DataValidity.md)\n - [InlineResponse20056](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20056.md)\n - [InlineResponse20056Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20056Data.md)\n - [InlineResponse20056Status](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20056Status.md)\n - [InlineResponse20057](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20057.md)\n - [InlineResponse20057Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20057Data.md)\n - [InlineResponse20057Status](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20057Status.md)\n - [InlineResponse20058](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20058.md)\n - [InlineResponse20058Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20058Data.md)\n - [InlineResponse20059](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20059.md)\n - [InlineResponse20059Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20059Data.md)\n - [InlineResponse20059DataInstrument](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20059DataInstrument.md)\n - [InlineResponse2005Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2005Data.md)\n - [InlineResponse2006](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2006.md)\n - [InlineResponse20060](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20060.md)\n - [InlineResponse20060Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20060Data.md)\n - [InlineResponse20060LegalEntities](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20060LegalEntities.md)\n - [InlineResponse20060LegalEntitiesBackgroundTexts](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20060LegalEntitiesBackgroundTexts.md)\n - [InlineResponse20060LegalEntitiesBackgroundTextsType](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20060LegalEntitiesBackgroundTextsType.md)\n - [InlineResponse20061](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20061.md)\n - [InlineResponse20061Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20061Data.md)\n - [InlineResponse20061LegalEntities](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20061LegalEntities.md)\n - [InlineResponse20062](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062.md)\n - [InlineResponse20062Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062Data.md)\n - [InlineResponse20062DataCostsAndCharges](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndCharges.md)\n - [InlineResponse20062DataCostsAndChargesExAnte](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExAnte.md)\n - [InlineResponse20062DataCostsAndChargesExAnteDistributionFee](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExAnteDistributionFee.md)\n - [InlineResponse20062DataCostsAndChargesExAnteIncidentalCosts](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExAnteIncidentalCosts.md)\n - [InlineResponse20062DataCostsAndChargesExAnteItaly](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExAnteItaly.md)\n - [InlineResponse20062DataCostsAndChargesExAnteItalyOneOffMaximumFixedEntryCost](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExAnteItalyOneOffMaximumFixedEntryCost.md)\n - [InlineResponse20062DataCostsAndChargesExAnteItalyOneOffMaximumFixedExitCost](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExAnteItalyOneOffMaximumFixedExitCost.md)\n - [InlineResponse20062DataCostsAndChargesExAnteManagementFee](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExAnteManagementFee.md)\n - [InlineResponse20062DataCostsAndChargesExAnteOneOffEntryCost](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExAnteOneOffEntryCost.md)\n - [InlineResponse20062DataCostsAndChargesExAnteOneOffEntryCostValueUnit](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExAnteOneOffEntryCostValueUnit.md)\n - [InlineResponse20062DataCostsAndChargesExAnteOneOffMaximumAcquiredEntryCost](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExAnteOneOffMaximumAcquiredEntryCost.md)\n - [InlineResponse20062DataCostsAndChargesExAnteOneOffMaximumAcquiredExitCost](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExAnteOneOffMaximumAcquiredExitCost.md)\n - [InlineResponse20062DataCostsAndChargesExAnteOneOffMaximumExitCost](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExAnteOneOffMaximumExitCost.md)\n - [InlineResponse20062DataCostsAndChargesExAnteOneOffPriorRHPExitCost](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExAnteOneOffPriorRHPExitCost.md)\n - [InlineResponse20062DataCostsAndChargesExAnteOneOffTypicalExitCost](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExAnteOneOffTypicalExitCost.md)\n - [InlineResponse20062DataCostsAndChargesExAnteOngoingCosts](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExAnteOngoingCosts.md)\n - [InlineResponse20062DataCostsAndChargesExAnteTransactionCosts](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExAnteTransactionCosts.md)\n - [InlineResponse20062DataCostsAndChargesExPost](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExPost.md)\n - [InlineResponse20062DataCostsAndChargesExPostDistributionFee](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExPostDistributionFee.md)\n - [InlineResponse20062DataCostsAndChargesExPostIncidentalCosts](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExPostIncidentalCosts.md)\n - [InlineResponse20062DataCostsAndChargesExPostManagementFee](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExPostManagementFee.md)\n - [InlineResponse20062DataCostsAndChargesExPostOneOffEntryCost](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExPostOneOffEntryCost.md)\n - [InlineResponse20062DataCostsAndChargesExPostOneOffExitCost](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExPostOneOffExitCost.md)\n - [InlineResponse20062DataCostsAndChargesExPostOngoingCostAccumulated](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExPostOngoingCostAccumulated.md)\n - [InlineResponse20062DataCostsAndChargesExPostOngoingCosts](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExPostOngoingCosts.md)\n - [InlineResponse20062DataCostsAndChargesExPostTransactionCosts](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataCostsAndChargesExPostTransactionCosts.md)\n - [InlineResponse20062DataDistributionChannel](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataDistributionChannel.md)\n - [InlineResponse20062DataGeneral](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataGeneral.md)\n - [InlineResponse20062DataGeneralCurrency](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataGeneralCurrency.md)\n - [InlineResponse20062DataGeneralFund](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataGeneralFund.md)\n - [InlineResponse20062DataGeneralFundDomicile](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataGeneralFundDomicile.md)\n - [InlineResponse20062DataGeneralGuarantor](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataGeneralGuarantor.md)\n - [InlineResponse20062DataGeneralIssuer](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataGeneralIssuer.md)\n - [InlineResponse20062DataGeneralLegalStructure](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataGeneralLegalStructure.md)\n - [InlineResponse20062DataGeneralManufacturer](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataGeneralManufacturer.md)\n - [InlineResponse20062DataGeneralType](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataGeneralType.md)\n - [InlineResponse20062DataTargetMarket](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataTargetMarket.md)\n - [InlineResponse20062DataTargetMarketAbilityToBearLosses](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataTargetMarketAbilityToBearLosses.md)\n - [InlineResponse20062DataTargetMarketClientObjectivesAndNeeds](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataTargetMarketClientObjectivesAndNeeds.md)\n - [InlineResponse20062DataTargetMarketClientObjectivesAndNeedsReturnProfile](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataTargetMarketClientObjectivesAndNeedsReturnProfile.md)\n - [InlineResponse20062DataTargetMarketClientObjectivesAndNeedsReturnProfileGermany](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataTargetMarketClientObjectivesAndNeedsReturnProfileGermany.md)\n - [InlineResponse20062DataTargetMarketInvestorType](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataTargetMarketInvestorType.md)\n - [InlineResponse20062DataTargetMarketKnowledgeAndExperience](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataTargetMarketKnowledgeAndExperience.md)\n - [InlineResponse20062DataTargetMarketKnowledgeAndExperienceGermany](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataTargetMarketKnowledgeAndExperienceGermany.md)\n - [InlineResponse20062DataTargetMarketRecommendedHoldingPeriod](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataTargetMarketRecommendedHoldingPeriod.md)\n - [InlineResponse20062DataTargetMarketRiskTolerance](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataTargetMarketRiskTolerance.md)\n - [InlineResponse20062DataTargetMarketRiskToleranceGermany](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataTargetMarketRiskToleranceGermany.md)\n - [InlineResponse20062DataTargetMarketRiskToleranceInternalRiskRating](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataTargetMarketRiskToleranceInternalRiskRating.md)\n - [InlineResponse20062DataTargetMarketRiskToleranceSpain](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataTargetMarketRiskToleranceSpain.md)\n - [InlineResponse20062DataTargetMarketRiskToleranceSri](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataTargetMarketRiskToleranceSri.md)\n - [InlineResponse20062DataTargetMarketRiskToleranceSrri](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20062DataTargetMarketRiskToleranceSrri.md)\n - [InlineResponse20063](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20063.md)\n - [InlineResponse20063Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20063Data.md)\n - [InlineResponse20063Market](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20063Market.md)\n - [InlineResponse20063Notations](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20063Notations.md)\n - [InlineResponse20063Status](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20063Status.md)\n - [InlineResponse20063TradingVolume](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20063TradingVolume.md)\n - [InlineResponse20063TradingVolumeMonth1](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20063TradingVolumeMonth1.md)\n - [InlineResponse20063ValueUnit](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20063ValueUnit.md)\n - [InlineResponse20064](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20064.md)\n - [InlineResponse20064Current](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20064Current.md)\n - [InlineResponse20064Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20064Data.md)\n - [InlineResponse20064Previous](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20064Previous.md)\n - [InlineResponse20064Ratings](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20064Ratings.md)\n - [InlineResponse20064System](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20064System.md)\n - [InlineResponse20065](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20065.md)\n - [InlineResponse20065Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20065Data.md)\n - [InlineResponse20065DataInstrument](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20065DataInstrument.md)\n - [InlineResponse20065DataMarket](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20065DataMarket.md)\n - [InlineResponse20065DataValueUnit](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20065DataValueUnit.md)\n - [InlineResponse20066](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20066.md)\n - [InlineResponse20066Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20066Data.md)\n - [InlineResponse20066Status](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20066Status.md)\n - [InlineResponse20067](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20067.md)\n - [InlineResponse20067Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20067Data.md)\n - [InlineResponse20067DataInstrument](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20067DataInstrument.md)\n - [InlineResponse20067DataMarket](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20067DataMarket.md)\n - [InlineResponse20067DataValueUnit](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20067DataValueUnit.md)\n - [InlineResponse20068](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20068.md)\n - [InlineResponse20068Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20068Data.md)\n - [InlineResponse20068DataNotations](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20068DataNotations.md)\n - [InlineResponse20069](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20069.md)\n - [InlineResponse2006Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2006Data.md)\n - [InlineResponse2007](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2007.md)\n - [InlineResponse20070](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20070.md)\n - [InlineResponse20070Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20070Data.md)\n - [InlineResponse20070Instrument](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20070Instrument.md)\n - [InlineResponse20071](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20071.md)\n - [InlineResponse20071Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20071Data.md)\n - [InlineResponse20071DataInstrument](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20071DataInstrument.md)\n - [InlineResponse20071DataRegional](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20071DataRegional.md)\n - [InlineResponse20071DataRegionalListing](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20071DataRegionalListing.md)\n - [InlineResponse20072](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20072.md)\n - [InlineResponse20072Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20072Data.md)\n - [InlineResponse20072DataInstrument](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20072DataInstrument.md)\n - [InlineResponse20072DataListing](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20072DataListing.md)\n - [InlineResponse20072DataNotation](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20072DataNotation.md)\n - [InlineResponse20072DataRegional](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20072DataRegional.md)\n - [InlineResponse20073](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20073.md)\n - [InlineResponse20073Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20073Data.md)\n - [InlineResponse20074](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20074.md)\n - [InlineResponse20074Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20074Data.md)\n - [InlineResponse20074DataHigh](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20074DataHigh.md)\n - [InlineResponse20074DataLow](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20074DataLow.md)\n - [InlineResponse20074DataPerformance](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20074DataPerformance.md)\n - [InlineResponse20075](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20075.md)\n - [InlineResponse20075Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20075Data.md)\n - [InlineResponse20075Status](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20075Status.md)\n - [InlineResponse20076](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20076.md)\n - [InlineResponse20076Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20076Data.md)\n - [InlineResponse20076DataTradingVolume](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20076DataTradingVolume.md)\n - [InlineResponse20077](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20077.md)\n - [InlineResponse20077Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20077Data.md)\n - [InlineResponse20078](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20078.md)\n - [InlineResponse20078Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20078Data.md)\n - [InlineResponse20079](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20079.md)\n - [InlineResponse20079Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20079Data.md)\n - [InlineResponse2007Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2007Data.md)\n - [InlineResponse2008](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2008.md)\n - [InlineResponse20080](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20080.md)\n - [InlineResponse20080Country](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20080Country.md)\n - [InlineResponse20080Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20080Data.md)\n - [InlineResponse20080Group](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20080Group.md)\n - [InlineResponse20080Timezone](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20080Timezone.md)\n - [InlineResponse20080Type](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20080Type.md)\n - [InlineResponse20081](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20081.md)\n - [InlineResponse20081Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20081Data.md)\n - [InlineResponse20081DataMarket](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20081DataMarket.md)\n - [InlineResponse20082](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20082.md)\n - [InlineResponse20082Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20082Data.md)\n - [InlineResponse20082DataAccumulated](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20082DataAccumulated.md)\n - [InlineResponse20082DataCurrency](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20082DataCurrency.md)\n - [InlineResponse20082DataFirst](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20082DataFirst.md)\n - [InlineResponse20082DataHigh](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20082DataHigh.md)\n - [InlineResponse20082DataLatest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20082DataLatest.md)\n - [InlineResponse20082DataLatestPerformance](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20082DataLatestPerformance.md)\n - [InlineResponse20082DataLatestPerformanceIntraday](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20082DataLatestPerformanceIntraday.md)\n - [InlineResponse20082DataLow](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20082DataLow.md)\n - [InlineResponse20082DataMarket](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20082DataMarket.md)\n - [InlineResponse20082DataPreviousClose](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20082DataPreviousClose.md)\n - [InlineResponse20082DataValueUnit](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20082DataValueUnit.md)\n - [InlineResponse20083](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20083.md)\n - [InlineResponse20083Accumulated](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20083Accumulated.md)\n - [InlineResponse20083Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20083Data.md)\n - [InlineResponse20083First](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20083First.md)\n - [InlineResponse20083High](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20083High.md)\n - [InlineResponse20083Latest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20083Latest.md)\n - [InlineResponse20083LatestPerformance](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20083LatestPerformance.md)\n - [InlineResponse20083LatestPerformanceIntraday](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20083LatestPerformanceIntraday.md)\n - [InlineResponse20083Low](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20083Low.md)\n - [InlineResponse20083Market](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20083Market.md)\n - [InlineResponse20083PreviousClose](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20083PreviousClose.md)\n - [InlineResponse20083Status](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20083Status.md)\n - [InlineResponse20084](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20084.md)\n - [InlineResponse20084Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20084Data.md)\n - [InlineResponse20084DataAsk](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20084DataAsk.md)\n - [InlineResponse20084DataBid](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20084DataBid.md)\n - [InlineResponse20085](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20085.md)\n - [InlineResponse20085Ask](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20085Ask.md)\n - [InlineResponse20085Bid](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20085Bid.md)\n - [InlineResponse20085Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20085Data.md)\n - [InlineResponse20086](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20086.md)\n - [InlineResponse20086Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20086Data.md)\n - [InlineResponse20086DataAsks](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20086DataAsks.md)\n - [InlineResponse20087](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20087.md)\n - [InlineResponse20087Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20087Data.md)\n - [InlineResponse20087DataAsks](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20087DataAsks.md)\n - [InlineResponse20088](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20088.md)\n - [InlineResponse20088Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20088Data.md)\n - [InlineResponse20088DataEvents](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20088DataEvents.md)\n - [InlineResponse20088DataRange](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20088DataRange.md)\n - [InlineResponse20088DataType](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20088DataType.md)\n - [InlineResponse20088Meta](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20088Meta.md)\n - [InlineResponse20089](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20089.md)\n - [InlineResponse20089Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20089Data.md)\n - [InlineResponse2008Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2008Data.md)\n - [InlineResponse2008DataCountry](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2008DataCountry.md)\n - [InlineResponse2008DataGroup](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2008DataGroup.md)\n - [InlineResponse2008DataTimezone](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2008DataTimezone.md)\n - [InlineResponse2008DataType](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2008DataType.md)\n - [InlineResponse2009](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2009.md)\n - [InlineResponse20090](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20090.md)\n - [InlineResponse20090Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20090Data.md)\n - [InlineResponse20091](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20091.md)\n - [InlineResponse20091Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20091Data.md)\n - [InlineResponse20091Instrument](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20091Instrument.md)\n - [InlineResponse20091InstrumentNsin](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20091InstrumentNsin.md)\n - [InlineResponse20091Nsin](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20091Nsin.md)\n - [InlineResponse20091Price](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20091Price.md)\n - [InlineResponse20092](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20092.md)\n - [InlineResponse20092Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20092Data.md)\n - [InlineResponse20092Instrument](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20092Instrument.md)\n - [InlineResponse20092InstrumentAssetClass](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20092InstrumentAssetClass.md)\n - [InlineResponse20092InstrumentName](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20092InstrumentName.md)\n - [InlineResponse20092InstrumentNameDefault](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20092InstrumentNameDefault.md)\n - [InlineResponse20092TradingValue](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20092TradingValue.md)\n - [InlineResponse20092TradingValueAverage](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20092TradingValueAverage.md)\n - [InlineResponse20092ValueUnit](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20092ValueUnit.md)\n - [InlineResponse20093](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20093.md)\n - [InlineResponse20093Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20093Data.md)\n - [InlineResponse20093Instrument](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse20093Instrument.md)\n - [InlineResponse2009Country](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2009Country.md)\n - [InlineResponse2009Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2009Data.md)\n - [InlineResponse2009Group](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2009Group.md)\n - [InlineResponse2009Meta](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2009Meta.md)\n - [InlineResponse2009Type](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse2009Type.md)\n - [InlineResponse200Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse200Data.md)\n - [InlineResponse200Meta](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/InlineResponse200Meta.md)\n - [LanguageMember](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/LanguageMember.md)\n - [OffsetBasedPaginationOutputObject](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/OffsetBasedPaginationOutputObject.md)\n - [OffsetBasedPaginationOutputObjectWithoutTotal](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/OffsetBasedPaginationOutputObjectWithoutTotal.md)\n - [PartialOutputObject](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PartialOutputObject.md)\n - [PostBasicBackgroundTextTypeListRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicBackgroundTextTypeListRequest.md)\n - [PostBasicBackgroundTextTypeListRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicBackgroundTextTypeListRequestData.md)\n - [PostBasicBackgroundTextTypeListRequestDataFilter](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicBackgroundTextTypeListRequestDataFilter.md)\n - [PostBasicBackgroundTextTypeListRequestMeta](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicBackgroundTextTypeListRequestMeta.md)\n - [PostBasicDeliveryListRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicDeliveryListRequest.md)\n - [PostBasicDeliveryListRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicDeliveryListRequestData.md)\n - [PostBasicDeliveryListRequestDataFilter](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicDeliveryListRequestDataFilter.md)\n - [PostBasicDeliveryListRequestMeta](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicDeliveryListRequestMeta.md)\n - [PostBasicMarketListRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicMarketListRequest.md)\n - [PostBasicMarketListRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicMarketListRequestData.md)\n - [PostBasicMarketListRequestDataFilter](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicMarketListRequestDataFilter.md)\n - [PostBasicMarketListRequestDataFilterMarkets](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicMarketListRequestDataFilterMarkets.md)\n - [PostBasicMarketListRequestMeta](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicMarketListRequestMeta.md)\n - [PostBasicMarketListRequestMetaPagination](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicMarketListRequestMetaPagination.md)\n - [PostBasicMediaTypeListRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicMediaTypeListRequest.md)\n - [PostBasicMediaTypeListRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicMediaTypeListRequestData.md)\n - [PostBasicMediaTypeListRequestDataFilter](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicMediaTypeListRequestDataFilter.md)\n - [PostBasicMediaTypeListRequestMeta](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicMediaTypeListRequestMeta.md)\n - [PostBasicMicOperatingListRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicMicOperatingListRequest.md)\n - [PostBasicMicOperatingListRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicMicOperatingListRequestData.md)\n - [PostBasicMicOperatingListRequestDataFilter](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicMicOperatingListRequestDataFilter.md)\n - [PostBasicMicOperatingListRequestMeta](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicMicOperatingListRequestMeta.md)\n - [PostBasicTimezoneListRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicTimezoneListRequest.md)\n - [PostBasicTimezoneListRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicTimezoneListRequestData.md)\n - [PostBasicTimezoneListRequestDataFilter](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicTimezoneListRequestDataFilter.md)\n - [PostBasicValueUnitCurrencyListRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicValueUnitCurrencyListRequest.md)\n - [PostBasicValueUnitCurrencyMainListRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicValueUnitCurrencyMainListRequest.md)\n - [PostBasicValueUnitCurrencyMainListRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicValueUnitCurrencyMainListRequestData.md)\n - [PostBasicValueUnitCurrencyMainListRequestDataFilter](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicValueUnitCurrencyMainListRequestDataFilter.md)\n - [PostBasicValueUnitListRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicValueUnitListRequest.md)\n - [PostBasicValueUnitListRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicValueUnitListRequestData.md)\n - [PostBasicValueUnitListRequestDataFilter](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicValueUnitListRequestDataFilter.md)\n - [PostBasicValueUnitListRequestMeta](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostBasicValueUnitListRequestMeta.md)\n - [PostInstrumentBackgroundTextTypeListRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentBackgroundTextTypeListRequest.md)\n - [PostInstrumentBackgroundTextTypeListRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentBackgroundTextTypeListRequestData.md)\n - [PostInstrumentBackgroundTextTypeListRequestDataFilter](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentBackgroundTextTypeListRequestDataFilter.md)\n - [PostInstrumentBackgroundTextTypeListRequestMeta](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentBackgroundTextTypeListRequestMeta.md)\n - [PostInstrumentBenchmarkListRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentBenchmarkListRequest.md)\n - [PostInstrumentBenchmarkListRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentBenchmarkListRequestData.md)\n - [PostInstrumentBenchmarkListRequestDataFilter](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentBenchmarkListRequestDataFilter.md)\n - [PostInstrumentCategoryListRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentCategoryListRequest.md)\n - [PostInstrumentCategoryListRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentCategoryListRequestData.md)\n - [PostInstrumentCategoryListRequestDataFilter](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentCategoryListRequestDataFilter.md)\n - [PostInstrumentCategoryListRequestDataFilterDataset](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentCategoryListRequestDataFilterDataset.md)\n - [PostInstrumentCategoryListRequestMeta](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentCategoryListRequestMeta.md)\n - [PostInstrumentCompliancePropertyListRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentCompliancePropertyListRequest.md)\n - [PostInstrumentCompliancePropertyListRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentCompliancePropertyListRequestData.md)\n - [PostInstrumentCompliancePropertyListRequestDataFilter](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentCompliancePropertyListRequestDataFilter.md)\n - [PostInstrumentCrossReferenceListByISINRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentCrossReferenceListByISINRequest.md)\n - [PostInstrumentCrossReferenceListByISINRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentCrossReferenceListByISINRequestData.md)\n - [PostInstrumentCrossReferenceListByWKNRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentCrossReferenceListByWKNRequest.md)\n - [PostInstrumentCrossReferenceListByWKNRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentCrossReferenceListByWKNRequestData.md)\n - [PostInstrumentNotationListRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentNotationListRequest.md)\n - [PostInstrumentNotationListRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentNotationListRequestData.md)\n - [PostInstrumentNotationListRequestDataFilter](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentNotationListRequestDataFilter.md)\n - [PostInstrumentNotationListRequestDataFilterMarket](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentNotationListRequestDataFilterMarket.md)\n - [PostInstrumentNotationListRequestDataFilterMarketOrder](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentNotationListRequestDataFilterMarketOrder.md)\n - [PostInstrumentNotationListRequestDataFilterMarketSelection](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentNotationListRequestDataFilterMarketSelection.md)\n - [PostInstrumentNotationListRequestDataFilterMarketSelectionExclude](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentNotationListRequestDataFilterMarketSelectionExclude.md)\n - [PostInstrumentNotationListRequestDataFilterMarketSelectionRestrict](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentNotationListRequestDataFilterMarketSelectionRestrict.md)\n - [PostInstrumentNotationListRequestDataFilterValueUnit](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentNotationListRequestDataFilterValueUnit.md)\n - [PostInstrumentNotationListRequestDataFilterValueUnitOrder](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentNotationListRequestDataFilterValueUnitOrder.md)\n - [PostInstrumentNotationListRequestDataFilterValueUnitSelection](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentNotationListRequestDataFilterValueUnitSelection.md)\n - [PostInstrumentNotationListRequestDataFilterValueUnitSelectionExclude](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentNotationListRequestDataFilterValueUnitSelectionExclude.md)\n - [PostInstrumentNotationListRequestDataFilterValueUnitSelectionRestrict](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentNotationListRequestDataFilterValueUnitSelectionRestrict.md)\n - [PostInstrumentNotationListRequestDataIdentifier](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentNotationListRequestDataIdentifier.md)\n - [PostInstrumentNotationListRequestMeta](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentNotationListRequestMeta.md)\n - [PostInstrumentRatingGradeListRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentRatingGradeListRequest.md)\n - [PostInstrumentRatingGradeListRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentRatingGradeListRequestData.md)\n - [PostInstrumentRatingGradeListRequestDataFilter](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentRatingGradeListRequestDataFilter.md)\n - [PostInstrumentRatingGradeListRequestDataFilterRatingSystem](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostInstrumentRatingGradeListRequestDataFilterRatingSystem.md)\n - [PostNotationCrossReferenceFactSetIdentifierListByFactSetIdentifierRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationCrossReferenceFactSetIdentifierListByFactSetIdentifierRequest.md)\n - [PostNotationCrossReferenceFactSetIdentifierListByFactSetIdentifierRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationCrossReferenceFactSetIdentifierListByFactSetIdentifierRequestData.md)\n - [PostNotationCrossReferenceFactSetIdentifierListByInstrumentRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationCrossReferenceFactSetIdentifierListByInstrumentRequest.md)\n - [PostNotationCrossReferenceFactSetIdentifierListByInstrumentRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationCrossReferenceFactSetIdentifierListByInstrumentRequestData.md)\n - [PostNotationCrossReferenceListByISINRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationCrossReferenceListByISINRequest.md)\n - [PostNotationCrossReferenceListByISINRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationCrossReferenceListByISINRequestData.md)\n - [PostNotationCrossReferenceListByInstrumentRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationCrossReferenceListByInstrumentRequest.md)\n - [PostNotationCrossReferenceListByInstrumentRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationCrossReferenceListByInstrumentRequestData.md)\n - [PostNotationCrossReferenceListByInstrumentRequestDataFilter](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationCrossReferenceListByInstrumentRequestDataFilter.md)\n - [PostNotationCrossReferenceListByInstrumentRequestDataFilterMarkets](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationCrossReferenceListByInstrumentRequestDataFilterMarkets.md)\n - [PostNotationCrossReferenceListByInstrumentRequestDataFilterValueUnits](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationCrossReferenceListByInstrumentRequestDataFilterValueUnits.md)\n - [PostNotationCrossReferenceListByInstrumentRequestDataIdentifier](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationCrossReferenceListByInstrumentRequestDataIdentifier.md)\n - [PostNotationCrossReferenceListBySymbolRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationCrossReferenceListBySymbolRequest.md)\n - [PostNotationCrossReferenceListBySymbolRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationCrossReferenceListBySymbolRequestData.md)\n - [PostNotationMarketListRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationMarketListRequest.md)\n - [PostNotationMarketListRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationMarketListRequestData.md)\n - [PostNotationMarketListRequestDataFilter](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationMarketListRequestDataFilter.md)\n - [PostNotationMarketListRequestDataFilterAssetClass](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationMarketListRequestDataFilterAssetClass.md)\n - [PostNotationMarketListRequestDataFilterCountry](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationMarketListRequestDataFilterCountry.md)\n - [PostNotationMarketListRequestDataFilterGroup](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationMarketListRequestDataFilterGroup.md)\n - [PostNotationMarketListRequestDataFilterType](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationMarketListRequestDataFilterType.md)\n - [PostNotationMarketListRequestMeta](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationMarketListRequestMeta.md)\n - [PostNotationSearchByTextRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationSearchByTextRequest.md)\n - [PostNotationSearchByTextRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationSearchByTextRequestData.md)\n - [PostNotationSearchByTextRequestDataAssetClasses](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationSearchByTextRequestDataAssetClasses.md)\n - [PostNotationSearchByTextRequestDataMarket](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationSearchByTextRequestDataMarket.md)\n - [PostNotationSearchByTextRequestDataMarketOrder](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationSearchByTextRequestDataMarketOrder.md)\n - [PostNotationSearchByTextRequestDataText](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationSearchByTextRequestDataText.md)\n - [PostNotationSearchByTextRequestDataTradingValue](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationSearchByTextRequestDataTradingValue.md)\n - [PostNotationSearchByTextRequestDataTradingValueAverage](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationSearchByTextRequestDataTradingValueAverage.md)\n - [PostNotationSearchByTextRequestDataTradingValueAverageDays30](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationSearchByTextRequestDataTradingValueAverageDays30.md)\n - [PostNotationSearchByTextRequestDataTradingValueAverageDays30Maximum](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationSearchByTextRequestDataTradingValueAverageDays30Maximum.md)\n - [PostNotationSearchByTextRequestDataTradingValueAverageDays30Minimum](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationSearchByTextRequestDataTradingValueAverageDays30Minimum.md)\n - [PostNotationSearchByTextRequestDataValidation](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationSearchByTextRequestDataValidation.md)\n - [PostNotationSearchByTextRequestDataValidationMarket](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationSearchByTextRequestDataValidationMarket.md)\n - [PostNotationSearchByTextRequestDataValidationMarketPriority](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationSearchByTextRequestDataValidationMarketPriority.md)\n - [PostNotationSearchByTextRequestDataValidationMarketSelection](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationSearchByTextRequestDataValidationMarketSelection.md)\n - [PostNotationSearchByTextRequestDataValidationPrices](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationSearchByTextRequestDataValidationPrices.md)\n - [PostNotationSearchByTextRequestDataValidationPricesLatest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationSearchByTextRequestDataValidationPricesLatest.md)\n - [PostNotationSearchByTextRequestDataValidationPricesPrevious](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationSearchByTextRequestDataValidationPricesPrevious.md)\n - [PostNotationSearchByTextRequestDataValidationValueUnit](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationSearchByTextRequestDataValidationValueUnit.md)\n - [PostNotationSearchByTextRequestDataValidationValueUnitSelection](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationSearchByTextRequestDataValidationValueUnitSelection.md)\n - [PostNotationSearchByTextRequestMeta](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostNotationSearchByTextRequestMeta.md)\n - [PostPricesTradingScheduleEventListRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostPricesTradingScheduleEventListRequest.md)\n - [PostPricesTradingScheduleEventListRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostPricesTradingScheduleEventListRequestData.md)\n - [PostPricesTradingScheduleEventListRequestDataFilter](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostPricesTradingScheduleEventListRequestDataFilter.md)\n - [PostPricesTradingScheduleEventListRequestDataFilterRange](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostPricesTradingScheduleEventListRequestDataFilterRange.md)\n - [PostPricesTradingScheduleEventListRequestDataIdentifier](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostPricesTradingScheduleEventListRequestDataIdentifier.md)\n - [PostPricesTradingScheduleEventListRequestMeta](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostPricesTradingScheduleEventListRequestMeta.md)\n - [PostPricesTradingScheduleEventListRequestMetaPagination](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/PostPricesTradingScheduleEventListRequestMetaPagination.md)\n - [StatusObject](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3/docs/StatusObject.md)\n\n\n## Documentation For Authorization\n\n\n## FactSetApiKey\n\n- **Type**: HTTP basic authentication\n\n\n## FactSetOAuth2\n\n- **Type**: OAuth\n- **Flow**: application\n- **Authorization URL**: \n- **Scopes**: N/A\n\n\n## Notes for Large OpenAPI documents\nIf the OpenAPI document is large, imports in fds.sdk.QuotesAPIforDigitalPortals.apis and fds.sdk.QuotesAPIforDigitalPortals.models may fail with a\nRecursionError indicating the maximum recursion limit has been exceeded. In that case, there are a couple of solutions:\n\nSolution 1:\nUse specific imports for apis and models like:\n- `from fds.sdk.QuotesAPIforDigitalPortals.api.default_api import DefaultApi`\n- `from fds.sdk.QuotesAPIforDigitalPortals.model.pet import Pet`\n\nSolution 2:\nBefore importing the package, adjust the maximum recursion limit as shown below:\n```\nimport sys\nsys.setrecursionlimit(1500)\nimport fds.sdk.QuotesAPIforDigitalPortals\nfrom fds.sdk.QuotesAPIforDigitalPortals.apis import *\nfrom fds.sdk.QuotesAPIforDigitalPortals.models import *\n```\n\n## Contributing\n\nPlease refer to the [contributing guide](../../../../CONTRIBUTING.md).\n\n## Copyright\n\nCopyright 2022 FactSet Research Systems Inc\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n    http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n\n\n\n",
    "bugtrack_url": null,
    "license": "Apache License, Version 2.0",
    "summary": "Quotes API for Digital Portals client library for Python",
    "version": "0.10.8",
    "project_urls": {
        "Homepage": "https://github.com/FactSet/enterprise-sdk/tree/main/code/python/QuotesAPIforDigitalPortals/v3"
    },
    "split_keywords": [
        "factset",
        "api",
        "sdk"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "50de81af62ca25021c561691b66ec0205bb4a1fe3306cf42b9947de8b9201b4f",
                "md5": "7b16fa23679920e032c5cc9a18395e92",
                "sha256": "ca9f965bd103a184623c1f897c7098900ef9597f58e380ff9b4e3c1916f4f9bb"
            },
            "downloads": -1,
            "filename": "fds.sdk.QuotesAPIforDigitalPortals-0.10.8-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "7b16fa23679920e032c5cc9a18395e92",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 1850285,
            "upload_time": "2023-06-06T16:18:07",
            "upload_time_iso_8601": "2023-06-06T16:18:07.172024Z",
            "url": "https://files.pythonhosted.org/packages/50/de/81af62ca25021c561691b66ec0205bb4a1fe3306cf42b9947de8b9201b4f/fds.sdk.QuotesAPIforDigitalPortals-0.10.8-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-06-06 16:18:07",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "FactSet",
    "github_project": "enterprise-sdk",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "fds.sdk.quotesapifordigitalportals"
}
        
Elapsed time: 0.07463s