diff --git a/.speakeasy/workflow.lock b/.speakeasy/workflow.lock
index 5b4ed507..d88654d8 100644
--- a/.speakeasy/workflow.lock
+++ b/.speakeasy/workflow.lock
@@ -2,8 +2,8 @@ speakeasyVersion: 1.752.0
sources:
Public:
sourceNamespace: public
- sourceRevisionDigest: sha256:7ffd2d116e23fc13f4a47363fdb2522a2c3899f632615bfc6bc9f2b2f1f7513d
- sourceBlobDigest: sha256:659ff5fb3d3647046a7414ac9019e47613d4967f8a0bf609a09802752a027b02
+ sourceRevisionDigest: sha256:fe6d0e72c251ab156499b1c77420f787de62a05d63b53404284e0b981e25fb2b
+ sourceBlobDigest: sha256:42b5f5bd6d8842e781d58c13fc4ac1734dd19b0bb7416d1dc02b7dc6f0b5b81b
tags:
- latest
- ea
@@ -11,24 +11,24 @@ targets:
public-csharp:
source: Public
sourceNamespace: public
- sourceRevisionDigest: sha256:7ffd2d116e23fc13f4a47363fdb2522a2c3899f632615bfc6bc9f2b2f1f7513d
- sourceBlobDigest: sha256:659ff5fb3d3647046a7414ac9019e47613d4967f8a0bf609a09802752a027b02
+ sourceRevisionDigest: sha256:fe6d0e72c251ab156499b1c77420f787de62a05d63b53404284e0b981e25fb2b
+ sourceBlobDigest: sha256:42b5f5bd6d8842e781d58c13fc4ac1734dd19b0bb7416d1dc02b7dc6f0b5b81b
codeSamplesNamespace: csharp
- codeSamplesRevisionDigest: sha256:834c3f21a3332342953ee75bb0e38eedf8120cfa77722e723d13a07526d3af71
+ codeSamplesRevisionDigest: sha256:1d4cfe2be6b20e81fdf1451f7e301892c074db40059eef2ca746e7d49575d1d6
public-java:
source: Public
sourceNamespace: public
- sourceRevisionDigest: sha256:7ffd2d116e23fc13f4a47363fdb2522a2c3899f632615bfc6bc9f2b2f1f7513d
- sourceBlobDigest: sha256:659ff5fb3d3647046a7414ac9019e47613d4967f8a0bf609a09802752a027b02
+ sourceRevisionDigest: sha256:fe6d0e72c251ab156499b1c77420f787de62a05d63b53404284e0b981e25fb2b
+ sourceBlobDigest: sha256:42b5f5bd6d8842e781d58c13fc4ac1734dd19b0bb7416d1dc02b7dc6f0b5b81b
codeSamplesNamespace: java
- codeSamplesRevisionDigest: sha256:605d0ed9ef151021de6321c923dc4024fb5875e22bb552dbc474c86763deeb11
+ codeSamplesRevisionDigest: sha256:1e551f8f80ece4379da42e220395aa5f9011290827c99eb803c559470c4f708a
public-typescript:
source: Public
sourceNamespace: public
- sourceRevisionDigest: sha256:7ffd2d116e23fc13f4a47363fdb2522a2c3899f632615bfc6bc9f2b2f1f7513d
- sourceBlobDigest: sha256:659ff5fb3d3647046a7414ac9019e47613d4967f8a0bf609a09802752a027b02
+ sourceRevisionDigest: sha256:fe6d0e72c251ab156499b1c77420f787de62a05d63b53404284e0b981e25fb2b
+ sourceBlobDigest: sha256:42b5f5bd6d8842e781d58c13fc4ac1734dd19b0bb7416d1dc02b7dc6f0b5b81b
codeSamplesNamespace: typescript
- codeSamplesRevisionDigest: sha256:3a3216a4b07624b60abecac693acb09b84d1043dcff9a17c031d9846c47d94d6
+ codeSamplesRevisionDigest: sha256:6ae332d1f00160933f171d94416fae572e1386c02881eb4fa72ab559d58b03b1
workflow:
workflowVersion: 1.0.0
speakeasyVersion: 1.752.0
diff --git a/cvent-public-spec/openapi.yaml b/cvent-public-spec/openapi.yaml
index 5522bf3e..75e1d67f 100644
--- a/cvent-public-spec/openapi.yaml
+++ b/cvent-public-spec/openapi.yaml
@@ -1,7 +1,7 @@
openapi: 3.0.2
info:
title: Cvent REST APIs
- description: "# Introduction\nThe Cvent API Platform is built around REST. We aim to provide intuitive endpoints that can be easily\ndiscovered to help leverage the Cvent platform for your event needs. The RESTful APIs outlined here\nuse JSON-encoded request and response format, along with HTTP codes, to convey processing status of\nrequests received. The Cvent resources are protected using OAuth2.\n\n# Getting Started\n\nIf you're new to the Cvent API Platform, start by reading our\n[Developer Quickstart](/docs/rest-api/tutorials/developer-quickstart) guide. This will\ngive you an overview of how to authenticate and make requests using our APIs.\n\n## Authentication\n\nThe Cvent REST API uses [OAuth2](https://oauth.net/2/) to authorize requests to the platform. The client\ncredentials authorization flow is supported.\n\n\n\nAuthorization code flow is only supported for planner users with the administrator role in Cvent. Developer users\ncannot use authorization code flow.\n\n\n\nHere's an example of using client credential flow to authorize. You'll supply your application's id and secret to\nmake a [Token](#operation/oauth2Token) request.\n\n```bash\ncurl --location --request POST '{hostName}/{version}/oauth2/token' \\\n--header 'Content-Type: application/x-www-form-urlencoded' \\\n--header 'Authorization: Basic {api_credentials}' \\\n--data-urlencode 'grant_type=client_credentials' \\\n--data-urlencode 'client_id={client_id}'\n```\n\n| Key | Description | Value |\n| :---------------- | :--------------------------------------------------- | :----------------------------------------------------------------------------------------------------------- |\n| {hostName} | https://api-platform.cvent.com | Location if you're account is in the North American datacenter |\n| | https://api-platform-eur.cvent.com | Location if you're account is in the European data center. |\n| {version} | ea | The version of the\_API\_you're using. Only `ea` is currently supported. |\n| {api_credentials} | {client_id}:{client_secret} in base64 encoded format | Supply your client id & client credentials in a\_base 64 encoded format. |\n| {client_id} | Retrieved from your\_application | Your\_application's client id. |\n| {client_secret} | Retrieved from your\_application | Your\_application's client secret. |\n\nOn a successful call, you'll receive the following response:\n\n```json\n{\n \"access_token\": \"{accessToken}\",\n \"expires_in\": 3600,\n \"token_type\": \"Bearer\"\n}\n```\n\nThis bearer token is valid for 3600 seconds (60 minutes) and must be used in subsequent calls.\n\n## Endpoints\n\nEndpoints start with `hostName` and `version`.\n\nThe `hostname` will depend on the region that your Cvent account is hosted in. Please see the table\nbelow to identify which hostname you should be using.\n\n| Region |\tHostname |\n|:--------------|:-----------------------------------|\n| North America\t| https://api-platform.cvent.com |\n| Europe | https://api-platform-eur.cvent.com |\n\nThe current `version` of the Cvent API is `ea`.\n\n## Rate Limits\n\nCvent APIs enforce rate limits to ensure platform stability. Your limits depend on your tier: Free,\nStandard, or Premium.\n\n
\n\n### Usage Tiers\n\n| Tier | Daily Calls | Calls per Second | Max Burst |\n| -------- | ----------- | ---------------- | --------- |\n| Free | 1,000 | 2 | 1 |\n| Standard | 15,000 | 10 | 10 |\n| Premium | 500,000 | 25 | 25 |\n\n- **Daily calls** define how many requests you can make in a 24-hour period. Quota\n resets at 12 midnight (+0 GMT).\n- **Calls per second** define how many requests you can make in a 1-second window.\n- **Max Burst** defines how many requests you can make at once.\n\nIf you are unsure what usage tier applies to your account, you can check via\n[Get Current Usage Tier](#operation/getUsageTier).\n\nPlease note that these limits may change as the Cvent API Platform evolves.\n\n
\n\n### Handling Rate Limits\n\nSometimes, you may exceed your rate limits. When this happens, the API will return a `429 Too Many Requests`. See\n[handling rate limits](/docs/rest-api/guides/handling-rate-limits) for best practices on how to handle this.\n\n## Pagination\n\nSome APIs use pagination to manage records. Each page of records has a token associated to identify it.\n\nIf an API uses pagination, you’ll find up to three tokens in the response:\n- **currentToken**: Describes the token of the current page.\n- **nextToken**: Provides a token for the next page of records, if one exists.\n- **previousToken**: Provides a token for the previous page of records, if one exists. Not all APIs will return\n this token.\n\nYou specify which page of records to view via the `token` parameter in your API call. To navigate through pages,\ntake the `nextToken` or `previousToken` value and pass it to your next call’s `token` parameter to get the\nrespective page of records. For example, if you made this request:\n\n```bash\ncurl -X GET {hostname}/{version}/contacts?limit=100 \\\n-H 'Accept: application/json' \\\n-H 'Authorization: Bearer {accessToken}'\n```\n\nThe response contains a paging array where you'll find the token information.\n\n```json\n{\n \"paging\": {\n \"currentToken\": \"90c5f062-76ad-4ea4-aa53-00eb698d9262\",\n \"nextToken\": \"3b2359a7-4583-40ed-8afd-67e5f15373d3\",\n \"limit\": 100,\n \"totalCount\": 102,\n \"_links\": {...}\n },\n \"data\": [...]\n}\n```\n\nTake the `nextToken` and use it in the `token` parameter on your subsequent call.\n\n```bash\ncurl -X GET {hostname}/{version}/contacts?limit=100&token=3b2359a7-4583-40ed-8afd-67e5f15373d3 \\\n-H 'Accept: application/json' \\\n-H 'Authorization: Bearer {accessToken}'\n```\n\nWhen the response doesn’t contain a `nextToken` field, you’ve reached the last page. Occasionally, you might\nencounter an empty page at the end of results. This typically happens when the results were evenly divisible.\nEnsure your client code handles the possibility of receiving an empty data array when using the `nextToken`.\n\n## Filtering\n\nUse filters to narrow down results. The filter follows the pattern\n`filter='field' comparisonType 'value'`. The value can be enclosed with single\nquotes (') or double quotes (\").\n\n```bash\nGET {hostName}/{version}/contacts?filter=lastName eq 'Smith'\n````\n\nTo correctly pass a single quote in the filter's value, use double quotes around\nthe string.\n\n```bash\nGET {hostName}/{version}/contacts?filter=lastName eq \"O'Keenan\"\n```\n\nTo correctly pass a double quote in the filter's value, use double quotes around\nthe string and add an escape character `\\` to each quote that is part of the\nstring.\n\n```bash\nGET {hostName}/{version}/events?filter=eventName eq \"\\\"Yearly\\\" Conference\"\n```\n\n## Versioning\n\nChange is inevitable in API development. Planning for it is crucial. We track\nboth backward-compatible and backward-incompatible changes.\n\n
\n\n### Backward Compatible Changes\n\nBackward compatible changes will be made often and are intended to avoid\nany adverse impact on our customers. It is highly advisable that when reading\nJSON payloads from Cvent, you are able to handle \"unknown\" attributes that\ncan be added over time. We consider the following changes backward-compatible:\n\n- Adding new resources\n- Adding new optional request parameters to existing operations\n- Adding new attributes to requests or responses\n- Changing the length or format (not type) of resource identifiers. For example, an ID can change from\n \"1234/1234\" to \"1234::1234\".\n- Increasing the length of string fields\n\n
\n\n### Backward Incompatible Changes\n\nBackward-incompatible changes are made infrequently, however, they can be\ndisruptive to consumers. Due to this, our APIs are versioned to avoid\ndisruptions to customers. We leverage a URI-based versioning scheme,\nwhich means that a version value is included in the Cvent API URL.\nWhen breaking changes occur, a new version of the API is made available\nwhile the existing version is deprecated but remains available for a\nlimited period of time. We consider the following backward-incompatible changes:\n\n- Adding a new required parameter (query string param or payload attribute)\n- Deleting API resources\n- Deleting any attribute from API responses\n- Changing the data type on any parameter or attribute\n\n## Standards\nAs you begin working with our APIs, it's essential to be aware of standards around\ncountry codes, time formats, and other important details that ensure smooth integration.\nLearn more about our [API Standards](/docs/rest-api/reference/api-standards)\n"
+ description: "# Introduction\nThe Cvent API Platform is built around REST. We aim to provide intuitive endpoints that can be easily\ndiscovered to help leverage the Cvent platform for your event needs. The RESTful APIs outlined here\nuse JSON-encoded request and response format, along with HTTP codes, to convey processing status of\nrequests received. The Cvent resources are protected using OAuth2.\n\n# Getting Started\n\nIf you're new to the Cvent API Platform, start by reading our\n[Developer Quickstart](https://developers.cvent.com/docs/rest-api/tutorials/developer-quickstart) guide. This will\ngive you an overview of how to authenticate and make requests using our APIs.\n\n## Authentication\n\nThe Cvent REST API uses [OAuth2](https://oauth.net/2/) to authorize requests to the platform. The client\ncredentials authorization flow is supported.\n\n\n\nAuthorization code flow is only supported for planner users with the administrator role in Cvent. Developer users\ncannot use authorization code flow.\n\n\n\nHere's an example of using client credential flow to authorize. You'll supply your application's id and secret to\nmake a [Token](#operation/oauth2Token) request.\n\n```bash\ncurl --location --request POST '{hostName}/{version}/oauth2/token' \\\n--header 'Content-Type: application/x-www-form-urlencoded' \\\n--header 'Authorization: Basic {api_credentials}' \\\n--data-urlencode 'grant_type=client_credentials' \\\n--data-urlencode 'client_id={client_id}'\n```\n\n| Key | Description | Value |\n| :---------------- | :--------------------------------------------------- | :----------------------------------------------------------------------------------------------------------- |\n| {hostName} | https://api-platform.cvent.com | Location if you're account is in the North American datacenter |\n| | https://api-platform-eur.cvent.com | Location if you're account is in the European data center. |\n| {version} | ea | The version of the\_API\_you're using. Only `ea` is currently supported. |\n| {api_credentials} | {client_id}:{client_secret} in base64 encoded format | Supply your client id & client credentials in a\_base 64 encoded format. |\n| {client_id} | Retrieved from your\_application | Your\_application's client id. |\n| {client_secret} | Retrieved from your\_application | Your\_application's client secret. |\n\nOn a successful call, you'll receive the following response:\n\n```json\n{\n \"access_token\": \"{accessToken}\",\n \"expires_in\": 3600,\n \"token_type\": \"Bearer\"\n}\n```\n\nThis bearer token is valid for 3600 seconds (60 minutes) and must be used in subsequent calls.\n\n## Endpoints\n\nEndpoints start with `hostName` and `version`.\n\nThe `hostname` will depend on the region that your Cvent account is hosted in. Please see the table\nbelow to identify which hostname you should be using.\n\n| Region |\tHostname |\n|:--------------|:-----------------------------------|\n| North America\t| https://api-platform.cvent.com |\n| Europe | https://api-platform-eur.cvent.com |\n\nThe current `version` of the Cvent API is `ea`.\n\n## Rate Limits\n\nCvent APIs enforce rate limits to ensure platform stability. Your limits depend on your tier: Free,\nStandard, or Premium.\n\n
\n\n### Usage Tiers\n\n| Tier | Daily Calls | Calls per Second | Max Burst |\n| -------- | ----------- | ---------------- | --------- |\n| Free | 1,000 | 2 | 1 |\n| Standard | 15,000 | 10 | 10 |\n| Premium | 500,000 | 25 | 25 |\n\n- **Daily calls** define how many requests you can make in a 24-hour period. Quota\n resets at 12 midnight (+0 GMT).\n- **Calls per second** define how many requests you can make in a 1-second window.\n- **Max Burst** defines how many requests you can make at once.\n\nIf you are unsure what usage tier applies to your account, you can check via\n[Get Current Usage Tier](#operation/getUsageTier).\n\nPlease note that these limits may change as the Cvent API Platform evolves.\n\n
\n\n### Handling Rate Limits\n\nSometimes, you may exceed your rate limits. When this happens, the API will return a `429 Too Many Requests`. See\n[handling rate limits](https://developers.cvent.com/docs/rest-api/guides/handling-rate-limits) for best practices on how to handle this.\n\n## Pagination\n\nSome APIs use pagination to manage records. Each page of records has a token associated to identify it.\n\nIf an API uses pagination, you’ll find up to three tokens in the response:\n- **currentToken**: Describes the token of the current page.\n- **nextToken**: Provides a token for the next page of records, if one exists.\n- **previousToken**: Provides a token for the previous page of records, if one exists. Not all APIs will return\n this token.\n\nYou specify which page of records to view via the `token` parameter in your API call. To navigate through pages,\ntake the `nextToken` or `previousToken` value and pass it to your next call’s `token` parameter to get the\nrespective page of records. For example, if you made this request:\n\n```bash\ncurl -X GET {hostname}/{version}/contacts?limit=100 \\\n-H 'Accept: application/json' \\\n-H 'Authorization: Bearer {accessToken}'\n```\n\nThe response contains a paging array where you'll find the token information.\n\n```json\n{\n \"paging\": {\n \"currentToken\": \"90c5f062-76ad-4ea4-aa53-00eb698d9262\",\n \"nextToken\": \"3b2359a7-4583-40ed-8afd-67e5f15373d3\",\n \"limit\": 100,\n \"totalCount\": 102,\n \"_links\": {...}\n },\n \"data\": [...]\n}\n```\n\nTake the `nextToken` and use it in the `token` parameter on your subsequent call.\n\n```bash\ncurl -X GET {hostname}/{version}/contacts?limit=100&token=3b2359a7-4583-40ed-8afd-67e5f15373d3 \\\n-H 'Accept: application/json' \\\n-H 'Authorization: Bearer {accessToken}'\n```\n\nWhen the response doesn’t contain a `nextToken` field, you’ve reached the last page. Occasionally, you might\nencounter an empty page at the end of results. This typically happens when the results were evenly divisible.\nEnsure your client code handles the possibility of receiving an empty data array when using the `nextToken`.\n\n## Filtering\n\nUse filters to narrow down results. The filter follows the pattern\n`filter='field' comparisonType 'value'`. The value can be enclosed with single\nquotes (') or double quotes (\").\n\n```bash\nGET {hostName}/{version}/contacts?filter=lastName eq 'Smith'\n````\n\nTo correctly pass a single quote in the filter's value, use double quotes around\nthe string.\n\n```bash\nGET {hostName}/{version}/contacts?filter=lastName eq \"O'Keenan\"\n```\n\nTo correctly pass a double quote in the filter's value, use double quotes around\nthe string and add an escape character `\\` to each quote that is part of the\nstring.\n\n```bash\nGET {hostName}/{version}/events?filter=eventName eq \"\\\"Yearly\\\" Conference\"\n```\n\n## Versioning\n\nChange is inevitable in API development. Planning for it is crucial. We track\nboth backward-compatible and backward-incompatible changes.\n\n
\n\n### Backward Compatible Changes\n\nBackward compatible changes will be made often and are intended to avoid\nany adverse impact on our customers. It is highly advisable that when reading\nJSON payloads from Cvent, you are able to handle \"unknown\" attributes that\ncan be added over time. We consider the following changes backward-compatible:\n\n- Adding new resources\n- Adding new optional request parameters to existing operations\n- Adding new attributes to requests or responses\n- Changing the length or format (not type) of resource identifiers. For example, an ID can change from\n \"1234/1234\" to \"1234::1234\".\n- Increasing the length of string fields\n\n
\n\n### Backward Incompatible Changes\n\nBackward-incompatible changes are made infrequently, however, they can be\ndisruptive to consumers. Due to this, our APIs are versioned to avoid\ndisruptions to customers. We leverage a URI-based versioning scheme,\nwhich means that a version value is included in the Cvent API URL.\nWhen breaking changes occur, a new version of the API is made available\nwhile the existing version is deprecated but remains available for a\nlimited period of time. We consider the following backward-incompatible changes:\n\n- Adding a new required parameter (query string param or payload attribute)\n- Deleting API resources\n- Deleting any attribute from API responses\n- Changing the data type on any parameter or attribute\n\n## Standards\nAs you begin working with our APIs, it's essential to be aware of standards around\ncountry codes, time formats, and other important details that ensure smooth integration.\nLearn more about our [API Standards](https://developers.cvent.com/docs/rest-api/reference/api-standards)\n"
contact:
name: Cvent Development Platform
url: https://developers.cvent.com/
@@ -1081,7 +1081,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -1442,7 +1442,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -1532,7 +1532,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -1642,7 +1642,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -1928,7 +1928,7 @@ paths:
description: |
Use the filter property in the request body to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -2231,7 +2231,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -2565,7 +2565,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -2631,7 +2631,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -3011,7 +3011,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -3064,7 +3064,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -3305,7 +3305,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -3558,7 +3558,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -3616,7 +3616,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -4675,7 +4675,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -5937,7 +5937,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -6515,7 +6515,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -6647,7 +6647,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -6980,7 +6980,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -7079,7 +7079,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -7525,7 +7525,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -9630,7 +9630,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -9760,7 +9760,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -9928,7 +9928,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -10027,7 +10027,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -10099,7 +10099,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -10281,7 +10281,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -11060,7 +11060,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -11141,7 +11141,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -11336,7 +11336,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -11373,7 +11373,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -11429,7 +11429,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -11527,7 +11527,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -11698,7 +11698,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -12390,7 +12390,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -12808,9 +12808,9 @@ paths:
- event/meeting-requests:write
summary: Create MR (Bulk)
description: |-
- Creates a collection of meeting requests for a given active form. For complex questions such as Meeting Room Requirements, Sleeping Room Requirements, or Budget Estimates, send the answer as a JSON-serialized string. See the question schema and the [Complex Questions Guide](/docs/rest-api/guides/meeting-request-complex-questions) for details.
+ Creates a collection of meeting requests for a given active form. For complex questions such as Meeting Room Requirements, Sleeping Room Requirements, or Budget Estimates, send the answer as a JSON-serialized string. See the question schema and the [Complex Questions Guide](https://developers.cvent.com/docs/rest-api/guides/meeting-request-complex-questions) for details.
- **Note:** If the meeting request form is configured to auto-create an event upon submission, the `event.id` field may not be populated in the response at the time of initial creation. Event creation is processed asynchronously after the meeting request is saved. To retrieve the associated event ID once it is available, poll the [Get MR](/documentation#tag/Meeting-Request/operation/getMeetingRequestById) endpoint.
+ **Note:** If the meeting request form is configured to auto-create an event upon submission, the `event.id` field may not be populated in the response at the time of initial creation. Event creation is processed asynchronously after the meeting request is saved. To retrieve the associated event ID once it is available, poll the [Get MR](https://developers.cvent.com/documentation#tag/Meeting-Request/operation/getMeetingRequestById) endpoint.
parameters:
- in: query
name: skipRequiredQuestionValidation
@@ -12858,9 +12858,9 @@ paths:
- event/meeting-requests:write
summary: Update MR (Bulk)
description: |-
- Updates a collection of meeting requests for a given form, adding information to the existing meeting requests. For complex questions such as Meeting Room Requirements, Sleeping Room Requirements, or Budget Estimates, send the answer as a JSON-serialized string. See the question schema and the [Complex Questions Guide](/docs/rest-api/guides/meeting-request-complex-questions) for details.
+ Updates a collection of meeting requests for a given form, adding information to the existing meeting requests. For complex questions such as Meeting Room Requirements, Sleeping Room Requirements, or Budget Estimates, send the answer as a JSON-serialized string. See the question schema and the [Complex Questions Guide](https://developers.cvent.com/docs/rest-api/guides/meeting-request-complex-questions) for details.
- **Note:** If the meeting request form is configured to auto-create an event upon submission, the `event.id` field may not be populated in the response at the time of the update. Event creation is processed asynchronously after the meeting request is saved. To retrieve the associated event ID once it is available, poll the [Get MR](/documentation#tag/Meeting-Request/operation/getMeetingRequestById) endpoint.
+ **Note:** If the meeting request form is configured to auto-create an event upon submission, the `event.id` field may not be populated in the response at the time of the update. Event creation is processed asynchronously after the meeting request is saved. To retrieve the associated event ID once it is available, poll the [Get MR](https://developers.cvent.com/documentation#tag/Meeting-Request/operation/getMeetingRequestById) endpoint.
parameters:
- in: query
name: skipRequiredQuestionValidation
@@ -13195,7 +13195,7 @@ paths:
- Authentication
summary: Token
description: |
- Obtains an Access Token, an ID Token, and optionally, a Refresh Token. Read the [Developer Quickstart](/docs/rest-api/tutorials/developer-quickstart) for an example request.
+ Obtains an Access Token, an ID Token, and optionally, a Refresh Token. Read the [Developer Quickstart](https://developers.cvent.com/docs/rest-api/tutorials/developer-quickstart) for an example request.
**Note:** The token endpoint returns refresh_token only when the grant_type is authorization_code.
operationId: oauth2Token
@@ -13440,7 +13440,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -14048,7 +14048,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -14287,7 +14287,7 @@ paths:
tags:
- Housing
summary: Get Reservation
- description: 'Get reservation details for the given reservation ID. Commonly used in response to [passkey callbacks](/docs/passkey/REST/callbacks). '
+ description: 'Get reservation details for the given reservation ID. Commonly used in response to [passkey callbacks](https://developers.cvent.com/docs/passkey/REST/callbacks). '
operationId: getReservation
security:
- OAuth2.clientCredentials:
@@ -14384,7 +14384,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -14463,7 +14463,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -15381,7 +15381,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -15534,7 +15534,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -16146,7 +16146,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -17154,7 +17154,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -17211,7 +17211,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -17323,7 +17323,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -17599,7 +17599,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -18405,7 +18405,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -18476,7 +18476,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -18749,7 +18749,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -18815,7 +18815,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -18873,7 +18873,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -19115,7 +19115,7 @@ paths:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -19644,7 +19644,7 @@ components:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -19675,7 +19675,7 @@ components:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -19976,7 +19976,7 @@ components:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -19993,7 +19993,7 @@ components:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -20012,7 +20012,7 @@ components:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -20035,7 +20035,7 @@ components:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -20428,7 +20428,7 @@ components:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -21445,7 +21445,7 @@ components:
description: |
Use filter query parameters to limit results
to data that matches your criteria. See
- [Filters](/docs/rest-api/reference/filters) for details.
+ [Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
@@ -26142,32 +26142,32 @@ components:
readOnly: true
AttendeeContactAudit:
title: AttendeeContactAudit
- description: Audit information for an attendee record. To get contact audit data, please use [Get Contact](/documentation#tag/Contacts/operation/getContactById).
+ description: Audit information for an attendee record. To get contact audit data, please use [Get Contact](https://developers.cvent.com/documentation#tag/Contacts/operation/getContactById).
type: object
properties:
created:
type: string
format: date-time
- description: 'The ISO 8601 zoned date time when an attendee record was created. Note: This field is deprecated. Please use the [Get Contact](/documentation#tag/Contacts/operation/getContactById) or [List Contact](/documentation#tag/Contacts/operation/listContacts) endpoints for contact audit details.'
+ description: 'The ISO 8601 zoned date time when an attendee record was created. Note: This field is deprecated. Please use the [Get Contact](https://developers.cvent.com/documentation#tag/Contacts/operation/getContactById) or [List Contact](https://developers.cvent.com/documentation#tag/Contacts/operation/listContacts) endpoints for contact audit details.'
readOnly: true
example: '2017-01-02T02:00:00Z'
deprecated: true
createdBy:
type: string
- description: 'The identifier of the user that created this attendee record. Note: This field is deprecated. Please use the [Get Contact](/documentation#tag/Contacts/operation/getContactById) or [List Contact](/documentation#tag/Contacts/operation/listContacts) endpoints for contact audit details.'
+ description: 'The identifier of the user that created this attendee record. Note: This field is deprecated. Please use the [Get Contact](https://developers.cvent.com/documentation#tag/Contacts/operation/getContactById) or [List Contact](https://developers.cvent.com/documentation#tag/Contacts/operation/listContacts) endpoints for contact audit details.'
readOnly: true
example: hporter
deprecated: true
lastModified:
type: string
format: date-time
- description: 'The ISO 8601 zoned date time when this attendee record was updated. Note: This field is deprecated. Please use the [Get Contact](/documentation#tag/Contacts/operation/getContactById) or [List Contact](/documentation#tag/Contacts/operation/listContacts) endpoints for contact audit details.'
+ description: 'The ISO 8601 zoned date time when this attendee record was updated. Note: This field is deprecated. Please use the [Get Contact](https://developers.cvent.com/documentation#tag/Contacts/operation/getContactById) or [List Contact](https://developers.cvent.com/documentation#tag/Contacts/operation/listContacts) endpoints for contact audit details.'
readOnly: true
example: '2019-02-12T03:00:00Z'
deprecated: true
lastModifiedBy:
type: string
- description: 'The identifier of the user that last updated this attendee record. Note: This field is deprecated. Please use the [Get Contact](/documentation#tag/Contacts/operation/getContactById) or [List Contact](/documentation#tag/Contacts/operation/listContacts) endpoints for contact audit details.'
+ description: 'The identifier of the user that last updated this attendee record. Note: This field is deprecated. Please use the [Get Contact](https://developers.cvent.com/documentation#tag/Contacts/operation/getContactById) or [List Contact](https://developers.cvent.com/documentation#tag/Contacts/operation/listContacts) endpoints for contact audit details.'
readOnly: true
example: hporter
deprecated: true
@@ -33848,7 +33848,7 @@ components:
readOnly: true
timezone:
type: string
- description: List of supported [timezones](/docs/rest-api/reference/api-standards#time-zones).
+ description: List of supported [timezones](https://developers.cvent.com/docs/rest-api/reference/api-standards#time-zones).
maxLength: 29
example: America/New_York
venues:
@@ -54617,7 +54617,7 @@ tags:
* Use [get bulk job](#operation/getBulkJobById) to track status
* Use [list bulk job results](#operation/listBulkJobResult) to get details of items uploaded
- For more details, see the [Bulk Job User Guide](/docs/rest-api/guides/bulk-api-user-guide).
+ For more details, see the [Bulk Job User Guide](https://developers.cvent.com/docs/rest-api/guides/bulk-api-user-guide).
**Note:** These bulk jobs have a TTL and will expire once they are complete or never ran. Bulk jobs will expire
1 week after creation, and this one week is refreshed when data is uploaded and the job is run. The Bulk Job
@@ -54712,7 +54712,7 @@ tags:
* **Housing Event.** An Passkey event where invitees will be able to register and book rooms.
* **Reservation Request.** Represents a request to book rooms in the housing event.
* **RegLink.** A feature that links Passkey events to your registration events, enabling you to sync data between the two events.
- * **Callback.** [Passkey's callback system](/docs/passkey/REST/callbacks) allows for a push notification to be sent to your system when a reservation is created, modified or cancelled.
+ * **Callback.** [Passkey's callback system](https://developers.cvent.com/docs/passkey/REST/callbacks) allows for a push notification to be sent to your system when a reservation is created, modified or cancelled.
- name: Housing Hotels
description: APIs for managing hotel-related operations.
- name: Leads
diff --git a/packages/csharp/.speakeasy/gen.lock b/packages/csharp/.speakeasy/gen.lock
index aa19ef8a..5a09c69b 100644
--- a/packages/csharp/.speakeasy/gen.lock
+++ b/packages/csharp/.speakeasy/gen.lock
@@ -1,12 +1,12 @@
lockVersion: 2.0.0
id: 3f6b1580-b75b-44d2-a95a-1b74729f1d26
management:
- docChecksum: 366f3963ef9a456f6e28208f71114563
+ docChecksum: 8bccf1f5577de0d50c061573c9b1f18c
docVersion: ea
speakeasyVersion: 1.752.0
generationVersion: 2.859.2
- releaseVersion: 1.5.0
- configChecksum: 498c4fb7640986ed72acd2c4d4444a96
+ releaseVersion: 1.5.1
+ configChecksum: cb0a8e727a5366541fdde25ce315a6df
published: true
persistentEdits:
generation_id: c50843e4-e393-4964-8f45-57aa92ab8994
@@ -589,7 +589,7 @@ trackedFiles:
docs/Models/Components/AttendeeAudienceSegmentAssociationsPaginatedResponse.md:
last_write_checksum: sha1:e2576d547b78618e13999af2f0dc242849dab257
docs/Models/Components/AttendeeContactInfo.md:
- last_write_checksum: sha1:6387640b0b2ef9bc60c9c42966d9839dd06e3c8f
+ last_write_checksum: sha1:d2f18c4f2e201735d3defa603f3b6138dbe5de90
docs/Models/Components/AttendeeContactMembership.md:
last_write_checksum: sha1:29c241e575eaff535eb3362c8ec596879328f952
docs/Models/Components/AttendeeContactType.md:
@@ -1901,7 +1901,7 @@ trackedFiles:
last_write_checksum: sha1:028b3fad1731054c1c0121eff026592f9365a230
pristine_git_object: 7cf45ae02a691d3135ab911d9d4a4aacfbaa594b
docs/Models/Components/Event1.md:
- last_write_checksum: sha1:1acb74e0ba218208b694aa4611acaed871ecdfcb
+ last_write_checksum: sha1:90b7e6907a23695b7f36a6f915fdbe518f76c31f
docs/Models/Components/Event12.md:
last_write_checksum: sha1:a3d902fc0fc911a90b6996ab5160766def3c7e41
docs/Models/Components/Event2.md:
@@ -2040,7 +2040,7 @@ trackedFiles:
last_write_checksum: sha1:c898ad32d40470cccf313e3dde5edec130bbb36f
docs/Models/Components/EventInput.md:
id: 786ba880c24a
- last_write_checksum: sha1:98e394d2d25a32df2b605d6df636e6267606678e
+ last_write_checksum: sha1:a0ac32c130e90c9df189e79b7dcc26c68de2984e
pristine_git_object: 8e06f2783f97a7acc147ccd28a966872c0e4ff9d
docs/Models/Components/EventJson.md:
last_write_checksum: sha1:fda4c9ab969b75f5fba39c374b9762f683049bd1
@@ -2224,11 +2224,11 @@ trackedFiles:
last_write_checksum: sha1:23f896a4804260bd325d56eb2dcdbe9868ae2478
docs/Models/Components/EventUpdate.md:
id: fe7892d3cb73
- last_write_checksum: sha1:aa9e31203591727a3265f9f39473b1441dccf652
+ last_write_checksum: sha1:d5d3d7ba6dfa748eebf09d4ee67a5524e9bc26e4
pristine_git_object: 400764ecaf2d5e9904052e489875278cd295f545
docs/Models/Components/EventUpdateInput.md:
id: 4534761ddce5
- last_write_checksum: sha1:1ad78effd661f5852656da145e3ea0a8c5cc3da4
+ last_write_checksum: sha1:48af378fd6b59cffd7bcb84c96ea3c5dd974a4ec
pristine_git_object: 96ec1ce27a79d33130cbd30886808f7d055672fd
docs/Models/Components/EventUpdateLookup.md:
id: aa6d5cebdadf
@@ -6022,7 +6022,7 @@ trackedFiles:
pristine_git_object: abd59aaa2aa8a97931f3f96d734602f006a111fb
docs/Models/Requests/GetAccountBudgetItemsRequest.md:
id: fc9de05a8ea6
- last_write_checksum: sha1:c70fe5bf11c3d2de7874ec4a349f79337f58e175
+ last_write_checksum: sha1:14d0f21c78caedcc4407008a484717415eaac405
pristine_git_object: 9309bba13fd77f81e8336f345abda3b317c970f4
docs/Models/Requests/GetAccountBudgetItemsResponse.md:
id: e894cfa995f1
@@ -6045,12 +6045,12 @@ trackedFiles:
last_write_checksum: sha1:f8377ba669022da24e9bf96884225158018988b0
pristine_git_object: 675141c3d20ac944ec1adba27e31737bf3b7b0ea
docs/Models/Requests/GetAccountVendorsRequest.md:
- last_write_checksum: sha1:031021cb8b206973b75704210a35acb5ca6fd4e8
+ last_write_checksum: sha1:87771bbd88051e1bb94807f958577ba57172cea3
docs/Models/Requests/GetAccountVendorsResponse.md:
last_write_checksum: sha1:804017474363abda84bea0af4ed1cb149bc0a166
docs/Models/Requests/GetAirActualDetailRequest.md:
id: 8e0a3f81414e
- last_write_checksum: sha1:fa871f764cf4baea283b327042bdc799441e96e3
+ last_write_checksum: sha1:8e61e1622341c062b41fe4cb82944e423a7be30b
pristine_git_object: 2cee237f7370c595c8272e62d940467262eaaf14
docs/Models/Requests/GetAirActualDetailResponse.md:
id: 86b12a771b31
@@ -6058,7 +6058,7 @@ trackedFiles:
pristine_git_object: 229eaa76cbc82decc8732aa9491c63d6caafc95b
docs/Models/Requests/GetAirRequestsRequest.md:
id: 92e07406b626
- last_write_checksum: sha1:49b15cfb848e159e6343c55f7acdfb46c26d0140
+ last_write_checksum: sha1:426c2875aa514d48878c1b8cbbdb3ceb4b74d359
pristine_git_object: 281c4255542041475a0a16b716911dee0cf8019d
docs/Models/Requests/GetAirRequestsResponse.md:
id: 63cf6f79f6a3
@@ -6066,14 +6066,14 @@ trackedFiles:
pristine_git_object: 4f09eff8bee0584ae70218e05b15a5c14981260d
docs/Models/Requests/GetAllEventSurveyResponsesRequest.md:
id: 0277d9fba9b3
- last_write_checksum: sha1:0d7ba7a3513c43b115765d1e51ee68f14868d145
+ last_write_checksum: sha1:b49b760c78da005494ede2667027a6162bab4151
pristine_git_object: 21a4dfb34a05961f61419e9c55cb0f953af33b70
docs/Models/Requests/GetAllEventSurveyResponsesResponse.md:
id: 77464789051c
last_write_checksum: sha1:7cce33b3e37a1a92a7bec9477b5963008b8836d1
pristine_git_object: 985d6754cf33dbfcd1deebb587596c206e8f885f
docs/Models/Requests/GetAlternateTravelAnswersRequest.md:
- last_write_checksum: sha1:586dc70902af0d0431a960c13cb3f8e558114f86
+ last_write_checksum: sha1:79faa722b700f29fe32181992950c30794d51c9f
docs/Models/Requests/GetAlternateTravelAnswersResponse.md:
last_write_checksum: sha1:5e0a0980126e96eab416d97938b44fcfea48715e
docs/Models/Requests/GetAppointmentAttendeeByIdRequest.md:
@@ -6206,7 +6206,7 @@ trackedFiles:
pristine_git_object: 0c96d8c69395bf82a44784b897eb080c2494f478
docs/Models/Requests/GetBudgetAllocationsRequest.md:
id: e9f13c40c630
- last_write_checksum: sha1:271ebe51efde480daf7c4a4b66428a291795d991
+ last_write_checksum: sha1:60c82c532092cbb3e96a8dc74f58740486738f0d
pristine_git_object: bd31e0aee61ff1d1bb68e65906a2738e3c957755
docs/Models/Requests/GetBudgetAllocationsResponse.md:
id: f569a858c261
@@ -6214,7 +6214,7 @@ trackedFiles:
pristine_git_object: e67b163e8c228938fa29630f01b1e0cf1ebe9869
docs/Models/Requests/GetBudgetItemsRequest.md:
id: ddbd31a6bd5f
- last_write_checksum: sha1:343d54a2dfeae475872cd9865f6d3ac190cdce17
+ last_write_checksum: sha1:7b4aa5c55116b8de47fec13989cff768c9cdb0a4
pristine_git_object: ae34a40e9389e4b7da8fd3e2b6e8565d05e298cc
docs/Models/Requests/GetBudgetItemsResponse.md:
id: 89889b0f2192
@@ -6238,7 +6238,7 @@ trackedFiles:
pristine_git_object: 14e78e34d581fffa055b10b842928ac5fb92b698
docs/Models/Requests/GetCardTransactionsRequest.md:
id: add0de787330
- last_write_checksum: sha1:3b3d6928d07ec75bb2d086bc8e9b3eb366b06312
+ last_write_checksum: sha1:802f4dd7626081fd7e09e5d2fc804a6cc0b672f3
pristine_git_object: 9e0e5ec86596627edec7ff851df5554e19e449dd
docs/Models/Requests/GetCardTransactionsResponse.md:
id: 09bae734e9fa
@@ -6246,7 +6246,7 @@ trackedFiles:
pristine_git_object: 66cc393dee56f9dfbf33a39e9e95b444e93d0696
docs/Models/Requests/GetCardsRequest.md:
id: 081ae73506f3
- last_write_checksum: sha1:e2908707d7335a4b9735c65f891fc1178c30375b
+ last_write_checksum: sha1:a8538c95f3e4d2590dafa8568ea18ebc9847530d
pristine_git_object: c88a4bba503a9c1bc253b84e06ccbecbfdbc1ed9
docs/Models/Requests/GetCardsResponse.md:
id: 552ba15f6b38
@@ -6322,7 +6322,7 @@ trackedFiles:
pristine_git_object: d0e16e65f6e8e757fab2af7ce4a6bffec9b025c9
docs/Models/Requests/GetCurrencyConversionRateRequest.md:
id: a263d4057acd
- last_write_checksum: sha1:5776f27cb78f5e67ab164c83b63ae03d4a6221ba
+ last_write_checksum: sha1:c4fad4057c25b8294dbe27bd3cbf5a87041ac79c
pristine_git_object: f6f99930856b7242ccc28c24902ba05feed965bc
docs/Models/Requests/GetCurrencyConversionRateResponse.md:
id: 0f63463965b9
@@ -6394,7 +6394,7 @@ trackedFiles:
pristine_git_object: 813819cb0faa7b635f049deb8c6ebaa050edc385
docs/Models/Requests/GetEventBudgetTotalsRequest.md:
id: 6a3533f52a3c
- last_write_checksum: sha1:b0c5e12065f81b0f14a5d6be9248d5f3859158bf
+ last_write_checksum: sha1:822dec06a273de4445e67f6d4833f675b37ca84c
pristine_git_object: 6e128379cd9003f46c93a74d103478ccdd9b3a8b
docs/Models/Requests/GetEventBudgetTotalsResponse.md:
id: d73c5f0eedf6
@@ -6426,7 +6426,7 @@ trackedFiles:
pristine_git_object: c069f087e6760a521e93e26cc5ca094c709ba6b9
docs/Models/Requests/GetEventFeaturesRequest.md:
id: 16d594240e8c
- last_write_checksum: sha1:82dc95e49fee0358ad312f2491d2f329528d6b79
+ last_write_checksum: sha1:6ad57b4bc6f958671802df675dc4a00b2e0fa2b8
pristine_git_object: 0f14c4cee17ba626e2b18f7ad1c094be93d552c7
docs/Models/Requests/GetEventFeaturesResponse.md:
id: 01ad978ca62a
@@ -6454,7 +6454,7 @@ trackedFiles:
pristine_git_object: ba6633016a0c4c874a70e66b76b6e63084ff691f
docs/Models/Requests/GetEventSurveyRespondentsRequest.md:
id: 26105359e9f3
- last_write_checksum: sha1:604f174093d3ec1ef1b6da6e71a1847b57a2734a
+ last_write_checksum: sha1:3c06ac560f7a6af527d9d1ebc56c5c19a1d80e2a
pristine_git_object: 21a9afa01dbd9877c01d90c7136dcf01ec8d5c95
docs/Models/Requests/GetEventSurveyRespondentsResponse.md:
id: 48c7187d3e33
@@ -6462,7 +6462,7 @@ trackedFiles:
pristine_git_object: e635cb6fe77bfe524c5d929a2d3295bb05a4a8d8
docs/Models/Requests/GetEventSurveyResponsesRequest.md:
id: ce6cab15ccb9
- last_write_checksum: sha1:090629e6e1522315408740ca29442b9d952dac34
+ last_write_checksum: sha1:b111e50ad65c0aa4e262e09ecd5f9eb84d97ad72
pristine_git_object: 6ed27146a531a3d9507e4bfde8b2dd01834bb9c2
docs/Models/Requests/GetEventSurveyResponsesResponse.md:
id: 45aead854441
@@ -6470,7 +6470,7 @@ trackedFiles:
pristine_git_object: 15dfa62e16611944212ab343bc155c3257d41ad0
docs/Models/Requests/GetEventSurveysRequest.md:
id: 3ecd459e30cf
- last_write_checksum: sha1:0227194f5d6569f2909c73477e7e3da83fd5eb54
+ last_write_checksum: sha1:8cec705a293b651bd6bbbf8b04a82f5134005dd2
pristine_git_object: f8259d1520df4e8c5a156fac6d89f205d857bd2a
docs/Models/Requests/GetEventSurveysResponse.md:
id: cc91d39ed3b9
@@ -6582,7 +6582,7 @@ trackedFiles:
pristine_git_object: 148df7eedbe1ffcc6411d62370fc150e57071483
docs/Models/Requests/GetHotelRequestsRequest.md:
id: 6dbca46fdff4
- last_write_checksum: sha1:ad943df57fcc26dc3f2f43587b38dcdab87886ed
+ last_write_checksum: sha1:1a68c99d641fbb041489b12e237888405759205c
pristine_git_object: 8fcce85920e9c00ebcacfc8c64aec3771396ffb2
docs/Models/Requests/GetHotelRequestsResponse.md:
id: a66094f67eec
@@ -6654,7 +6654,7 @@ trackedFiles:
pristine_git_object: 15477f5368ce27243fba3d360ea4b56954e9eb39
docs/Models/Requests/GetHousingReservationRequestsRequest.md:
id: e06ed406a21a
- last_write_checksum: sha1:9da4a078b8aa5d29df8b080ce9cb899c796e6b11
+ last_write_checksum: sha1:2917f20607e02262a9ec323d7bf876b1d48659bd
pristine_git_object: b45dfdf0bbcec810ddfa505b467f1a3e555c5ba0
docs/Models/Requests/GetHousingReservationRequestsResponse.md:
id: a98166c5824d
@@ -6662,7 +6662,7 @@ trackedFiles:
pristine_git_object: e693374270fa8b73ed2b9e717b7c280dcfea113d
docs/Models/Requests/GetHubMembersRequest.md:
id: 27afea3e5244
- last_write_checksum: sha1:6ec1e1a2c0112eeaeaabcb3b79f980c57dc81de7
+ last_write_checksum: sha1:73a54508ee1f54735bba2daf54437fb729d1bb8b
pristine_git_object: 24d85e68c88f0bc9e5387909392b61187e95f3b8
docs/Models/Requests/GetHubMembersResponse.md:
id: 76d729b7adff
@@ -6678,7 +6678,7 @@ trackedFiles:
pristine_git_object: ed986e304dfadb72f13182c809aef9d130d0b08e
docs/Models/Requests/GetLargeChoicesRequest.md:
id: 12d3f5aec60f
- last_write_checksum: sha1:73d6759ce2129bbede30ad3248150b79ac9ee958
+ last_write_checksum: sha1:588be3eac255fca7d5188327b4bd6e4714be52da
pristine_git_object: 50f5adf2bac1be8fb690a7db4632f42abd06b471
docs/Models/Requests/GetLargeChoicesResponse.md:
id: 5afe5d36bf41
@@ -6750,7 +6750,7 @@ trackedFiles:
pristine_git_object: ae076307b2104fc712ed3fd3ceba2e94f87032f7
docs/Models/Requests/GetOrderItemsRequest.md:
id: a41806ab30f2
- last_write_checksum: sha1:b16420c9fa8a43dca7edd08c8f8c32c553f0d6d0
+ last_write_checksum: sha1:c083d0e2d6153138d7791fde7d7b741a8c4672e6
pristine_git_object: baeea2ead8681e093bfe8b3eb1479efc193b4a53
docs/Models/Requests/GetOrderItemsResponse.md:
id: 15435ae16ff0
@@ -6758,7 +6758,7 @@ trackedFiles:
pristine_git_object: 1156091c74b6d8322078030ba4a052363a606c41
docs/Models/Requests/GetOrdersRequest.md:
id: 63455677e14c
- last_write_checksum: sha1:fc6f35f060c96788dcd1f7875e8783380a3cb4b6
+ last_write_checksum: sha1:72d6323f1a846cff673a648fa3aeb5dc7e3b0f5c
pristine_git_object: fb43d6ce15a97834a356eaea48e140940cb9e8ec
docs/Models/Requests/GetOrdersResponse.md:
id: 101b3e002536
@@ -6766,7 +6766,7 @@ trackedFiles:
pristine_git_object: 55333b4ec94f1d2262bc859aad1ba5186556aa88
docs/Models/Requests/GetPaymentsRequest.md:
id: 2a9e23fdd2ea
- last_write_checksum: sha1:0ea2c4346d7fa255d18d1728a29964c492664bef
+ last_write_checksum: sha1:bec1aa9136c1276fd9b6b72f97390d0b3a86e6ef
pristine_git_object: 48d839205c3f115d77c33d1a3dc44c15b30f3e81
docs/Models/Requests/GetPaymentsResponse.md:
id: b6cd133a4da0
@@ -6790,7 +6790,7 @@ trackedFiles:
pristine_git_object: bae7de5c6365168f3ce8748971e0851d7b93fc9c
docs/Models/Requests/GetQuestionsRequest.md:
id: 2ffb7edfd6a8
- last_write_checksum: sha1:6caea1ed8885c47d134ee8e9d1c03befcf89b150
+ last_write_checksum: sha1:73fc9f1b708f79dd65bc68ba782e0dfce1c41622
pristine_git_object: 2dcfa4a592f3be5f641fecebe79b6b8e2f9d0a7a
docs/Models/Requests/GetQuestionsResponse.md:
id: 981448d0d92c
@@ -6838,7 +6838,7 @@ trackedFiles:
pristine_git_object: e04fb7f45197dd99cccddf50a9d421d661649fae
docs/Models/Requests/GetRespondentsRequest.md:
id: 4389c509f683
- last_write_checksum: sha1:8b5042d000b720af674f3599f12c91d3b171f456
+ last_write_checksum: sha1:f3729e3b8da378842fc3101cad236d7e6920e58c
pristine_git_object: 096f18ff4651b2ba6e2a181864ff360efc158fba
docs/Models/Requests/GetRespondentsResponse.md:
id: 66f4050ceffc
@@ -6846,7 +6846,7 @@ trackedFiles:
pristine_git_object: fb1c5678cd73319facb367fa43744d0a73a8e571
docs/Models/Requests/GetResponsesRequest.md:
id: ba84d30b82df
- last_write_checksum: sha1:ee4ab8868ecbc7f18c7cc8a03085a3bd2c5df15f
+ last_write_checksum: sha1:f7b416daf79e6e37207ca8d3a7d2c044d0f6246a
pristine_git_object: 0fa17facdd9932dde693792e0163b6dd1493e541
docs/Models/Requests/GetResponsesResponse.md:
id: 1bce06fc2bd8
@@ -7022,7 +7022,7 @@ trackedFiles:
pristine_git_object: 32e3b91c7ceef5b6eb1b851038b8c53d28e7dc6d
docs/Models/Requests/GetStandardSurveyRespondentsRequest.md:
id: 0764ddc5d572
- last_write_checksum: sha1:6beb345a9bac7217a822b1fdc5de7a76cddb0b06
+ last_write_checksum: sha1:eec67d62ea6addea2d03dd71af135f82bc54a506
pristine_git_object: d0f6f37774b252d209c805b7d4c347ee164ca792
docs/Models/Requests/GetStandardSurveyRespondentsResponse.md:
id: 3c8585b2b258
@@ -7030,7 +7030,7 @@ trackedFiles:
pristine_git_object: 98edd1ac5215ca73e9daf96b771551676f0b968f
docs/Models/Requests/GetStandardSurveyResponsesRequest.md:
id: 758efaf3ded5
- last_write_checksum: sha1:359ac0d88a730fb9b35196ac1a17649fe4ce65e3
+ last_write_checksum: sha1:c8b94a26720d93599ed9dcea8b66b80980c83db6
pristine_git_object: c1beec62d6b76a8d35ca5578d25527a596783fd5
docs/Models/Requests/GetStandardSurveyResponsesResponse.md:
id: 6f8a798d73dd
@@ -7038,7 +7038,7 @@ trackedFiles:
pristine_git_object: b471d74b579692290f0c6132d44a29d5086ca004
docs/Models/Requests/GetStandardSurveysRequest.md:
id: 42823082b5ce
- last_write_checksum: sha1:49ef44ebe52b4b688d61148aa807202514818c2c
+ last_write_checksum: sha1:41c809b92ec2f224581b53766ff50f7dcfb226e3
pristine_git_object: 1dfebe23deb584a81f1893b57cae5fd31e59d1d1
docs/Models/Requests/GetStandardSurveysResponse.md:
id: 49a0d01d9f1d
@@ -7062,7 +7062,7 @@ trackedFiles:
pristine_git_object: 3c9edd52cb94a9a9b4da947bda7a4265c8e1943d
docs/Models/Requests/GetSurveyRequest.md:
id: 53d0885d77dc
- last_write_checksum: sha1:34ae11dd6ebabe2cd12c73a8980ce4550159492b
+ last_write_checksum: sha1:4b01d7df58e58440075ae91fbf07257dd344b788
pristine_git_object: e4d0b927c6cbf043e5d23608b40b5c6daa11bf98
docs/Models/Requests/GetSurveyResponse.md:
id: 990965c8db90
@@ -7086,7 +7086,7 @@ trackedFiles:
pristine_git_object: 26fcd6cf525c154d18e20a8390274600f8db2d78
docs/Models/Requests/GetTransactionItemsRequest.md:
id: dbff6316cb08
- last_write_checksum: sha1:9f6d1997261f0af8f3a9fce44b9c1f665a352a99
+ last_write_checksum: sha1:5155434d5de3d53b635b1c1ec6b12542355244dd
pristine_git_object: c4a258e058125189f0499baaefdaa51c334111fa
docs/Models/Requests/GetTransactionItemsResponse.md:
id: df356184b4c8
@@ -7094,7 +7094,7 @@ trackedFiles:
pristine_git_object: bd64d14f207fdbc5c44a2eeff6288c517cf9c9fd
docs/Models/Requests/GetTransactionsRequest.md:
id: 94b2490c5194
- last_write_checksum: sha1:03876d385c33c1a31f195333ee9795611e732cb7
+ last_write_checksum: sha1:a5b58afe3e03e4002e3f1a6d3145556da5825c18
pristine_git_object: 6d6bbc1d3cb530da95242de63796eba677390f8b
docs/Models/Requests/GetTransactionsResponse.md:
id: 952e18f58a30
@@ -7170,7 +7170,7 @@ trackedFiles:
pristine_git_object: a511b88725d86767afb0be0f0286c4291a242fc0
docs/Models/Requests/GetVideoViewsRequest.md:
id: 14adc10b0769
- last_write_checksum: sha1:5e0e37ac3d004418c48665616c7848fce680b09c
+ last_write_checksum: sha1:e4ad736d0ca1f541308a51daa42d99ebb90b6126
pristine_git_object: 5210668aa0ee518f41dcee4fe3507875cf5c66b8
docs/Models/Requests/GetVideoViewsResponse.md:
id: 1dc703322745
@@ -7261,19 +7261,19 @@ trackedFiles:
last_write_checksum: sha1:2d35dd91db8c4352dd99a004fbf46a88ee4110c9
pristine_git_object: 187301fb04f3048f5968cfc01b7cd3b36ed65d5c
docs/Models/Requests/ListAssociatedAudienceSegmentsRequest.md:
- last_write_checksum: sha1:d333e1f9922b86ecb9602189c8e990d242aea7f7
+ last_write_checksum: sha1:86563cb7331d8f82f996122771f3e2c05d3be730
docs/Models/Requests/ListAssociatedAudienceSegmentsResponse.md:
last_write_checksum: sha1:9381f17d9e66fd803679f8784bf95fafc784d906
docs/Models/Requests/ListAttendeeActivitiesRequest.md:
id: 8d1cbb4dbf2f
- last_write_checksum: sha1:5c026d9a13bce2c0796a238341ea3663657c6bad
+ last_write_checksum: sha1:7c6adb7beeba693a8db78c979d8c33aa1db747e2
pristine_git_object: 259322fef9e5dc4f2410aefd3fc96d9b8d8ac759
docs/Models/Requests/ListAttendeeActivitiesResponse.md:
id: c45b887d227a
last_write_checksum: sha1:967e2f4a52aae4e526af89a8412bc650b97de38f
pristine_git_object: e3fd3d663c57c17cc142e97a54f50f3eaf4ac061
docs/Models/Requests/ListAttendeeAudienceSegmentsRequest.md:
- last_write_checksum: sha1:b6c7699b9b26fbef067ca13c964fb0afc4a83d46
+ last_write_checksum: sha1:d66abfa07304a639b2376c431fc937316ac3cf8d
docs/Models/Requests/ListAttendeeAudienceSegmentsResponse.md:
last_write_checksum: sha1:b4150c097b7cbf9d44c0900a9f72ac1dd479ecb7
docs/Models/Requests/ListAttendeeInsightsRequest.md:
@@ -7286,7 +7286,7 @@ trackedFiles:
pristine_git_object: 4487f8018ad009389c2e32b48872a5d24a8bc394
docs/Models/Requests/ListAttendeeLinksRequest.md:
id: ed72a5fdb1bf
- last_write_checksum: sha1:1415805e350129e5d4e68cf295d52df1f949ee52
+ last_write_checksum: sha1:67921d3e4826504a2dcc3c40d6f0ab47b50e77be
pristine_git_object: 9165fa8cfdab3eb8bd5a4f588767040622f46f04
docs/Models/Requests/ListAttendeeLinksResponse.md:
id: 46ba4a03eb4e
@@ -7302,7 +7302,7 @@ trackedFiles:
pristine_git_object: 649ef8a999e30a452a69851936da0fc491e2786c
docs/Models/Requests/ListAttendeesRequest.md:
id: 5ed714be83ed
- last_write_checksum: sha1:dab6d084023bc3291eba3ae2a4d4c0a993a24a51
+ last_write_checksum: sha1:21a8b42f013d1154644d8251efca5cf18133ca84
pristine_git_object: 8767adaa9f7cffbf7a453c57442db4080b057dec
docs/Models/Requests/ListAttendeesResponse.md:
id: 5adf17fb442f
@@ -7310,7 +7310,7 @@ trackedFiles:
pristine_git_object: 5432a26dd41559abd4552124bddf7869be5f4e01
docs/Models/Requests/ListAudienceSegmentsPostFilterRequest.md:
id: c5738545c3b8
- last_write_checksum: sha1:9e5eedbca7075ffa63cf39ddb359d46064c96524
+ last_write_checksum: sha1:0f8ce7d1f2227c5b82f792872e630d7f9c1f1894
pristine_git_object: caf338ef94cd45109678de565b9cd3b35d1cba74
docs/Models/Requests/ListAudienceSegmentsPostFilterResponse.md:
id: 76bf6b947f30
@@ -7318,7 +7318,7 @@ trackedFiles:
pristine_git_object: 50d559a83bdc4b0f4f28d6ccffe1f3d59bf7b029
docs/Models/Requests/ListAudienceSegmentsRequest.md:
id: 2447381e3d1f
- last_write_checksum: sha1:b309db1761be6d1b08c1a48c0ee9c96b5a155957
+ last_write_checksum: sha1:33caa5072dd607fa7c68ec18e9d37c475c2835ef
pristine_git_object: a6c48d0aff22b66d92b4d05b7361b0d2925b730f
docs/Models/Requests/ListAudienceSegmentsResponse.md:
id: cce67cf18a3d
@@ -7366,7 +7366,7 @@ trackedFiles:
pristine_git_object: 0c153d375220fb75ab79dbc96b1f2d8c576b03eb
docs/Models/Requests/ListContactGroupsRequest.md:
id: e7e2bba2c24f
- last_write_checksum: sha1:0d51c779b77933d8423112f97d6d643de490b3a8
+ last_write_checksum: sha1:bee4467213bd5d3fffb4b1c2633a14653ac8fdc6
pristine_git_object: 16c7d77a50df237e9a74c9a11159e131abcd5ede
docs/Models/Requests/ListContactGroupsResponse.md:
id: deb17a4c92d2
@@ -7382,7 +7382,7 @@ trackedFiles:
pristine_git_object: cef92dd484e2fdb344887b531898f14dfd24d01f
docs/Models/Requests/ListContactTypesRequest.md:
id: 30def31a201b
- last_write_checksum: sha1:179dda73b69396c496569bbb5e722a2c541a4d34
+ last_write_checksum: sha1:f4cf43708273ffdf8199bfba9a24091bd18cf015
pristine_git_object: 934d53f7de74e4e2d74eb1c38a6f1762fbee9ea7
docs/Models/Requests/ListContactTypesResponse.md:
id: 2278a987fafe
@@ -7398,7 +7398,7 @@ trackedFiles:
pristine_git_object: 2be6b19cdbabb3c23575602c89a4b8c0687802f1
docs/Models/Requests/ListContactsRequest.md:
id: 5b245f0b001a
- last_write_checksum: sha1:c53caf78c8945d04155bf8913e09763195b98e0d
+ last_write_checksum: sha1:75a05fe300d0787235c8db919ec760a27b35bbe7
pristine_git_object: 7985cfa950254cae8df965cafaad9873262be386
docs/Models/Requests/ListContactsResponse.md:
id: 330c8fd11946
@@ -7414,7 +7414,7 @@ trackedFiles:
pristine_git_object: ae54ad7218e7c8d09446a61f53567dde2fae6c94
docs/Models/Requests/ListDiscountedAgendaItemsRequest.md:
id: a0bd5d34d5f6
- last_write_checksum: sha1:5afc1fa286ef476f8569e8cb0c8ee94e9ebdc26a
+ last_write_checksum: sha1:e7cec90fda7442aa1d199859a686e7fb9a45ac89
pristine_git_object: cc8df544e4049bf664212d7b5a019c0d3e93a567
docs/Models/Requests/ListDiscountedAgendaItemsResponse.md:
id: 6ac047d44136
@@ -7430,7 +7430,7 @@ trackedFiles:
pristine_git_object: d08a010c38b8109d24929b87db68565d8e443e11
docs/Models/Requests/ListDonationItemsRequest.md:
id: c74342a80fb9
- last_write_checksum: sha1:e68e6e80bed82366763d7517305b416f76611b8a
+ last_write_checksum: sha1:fa7819710d0fa0e6c176f35ad0b4450597d533ba
pristine_git_object: 9c6c868fa87946ef5eae0a90fd5e88bd295247ce
docs/Models/Requests/ListDonationItemsResponse.md:
id: 0fa53ac8e807
@@ -7438,7 +7438,7 @@ trackedFiles:
pristine_git_object: 4cd5ce13e34c59f72c578c28de864a585fb0abc0
docs/Models/Requests/ListDurationsRequest.md:
id: 367f3271cb55
- last_write_checksum: sha1:e72db27128391f2853f091d5dae30d52c2c049e0
+ last_write_checksum: sha1:c3974b3a441e2c5e25d72bd1f315521ea6ffee3d
pristine_git_object: 0f500808781fd6a601bac9bc63c4b9bba418bde4
docs/Models/Requests/ListDurationsResponse.md:
id: c411d4576816
@@ -7446,7 +7446,7 @@ trackedFiles:
pristine_git_object: 4d99bce406a463e7101161c747bcc4b15c2cfdea
docs/Models/Requests/ListEventDiscountsRequest.md:
id: 2bfa9ad3788c
- last_write_checksum: sha1:77c574e53b16897f83b47391d7ffdab50d977f9f
+ last_write_checksum: sha1:ffdf8a893029cf4d95f950e2768ede57230a2491
pristine_git_object: c58b910b1c9631252d010bfbbde21cad44cb73c9
docs/Models/Requests/ListEventDiscountsResponse.md:
id: e1e052370764
@@ -7485,7 +7485,7 @@ trackedFiles:
docs/Models/Requests/ListEventVouchersPostFilterResponse.md:
last_write_checksum: sha1:980ecf1907135ed711945c0d2fc9094df85760b0
docs/Models/Requests/ListEventVouchersRequest.md:
- last_write_checksum: sha1:e2c831ca608e2de34ed0325f0d8d64a37e8d4e31
+ last_write_checksum: sha1:02ed51f12bd80c0b4fe2401bc390a7ea9ebdbbc4
docs/Models/Requests/ListEventVouchersResponse.md:
last_write_checksum: sha1:2ddc7f570e352f44c38bf6890c6ff416b461e9fa
docs/Models/Requests/ListEventWeblinksRequest.md:
@@ -7538,7 +7538,7 @@ trackedFiles:
pristine_git_object: f8e02e4bc227dc4f1f7d7c07fcd44c519c483de2
docs/Models/Requests/ListExternalAttendeeActivitiesMetadataRequest.md:
id: 35ed2ad90719
- last_write_checksum: sha1:f69b31f13310c063289e87fa2ff5ff22b8e62eab
+ last_write_checksum: sha1:2057ec8f57685936ef280b30d7f59179aaec219b
pristine_git_object: 58847fc17e119b514149ef42f7ce5d35ac1634ab
docs/Models/Requests/ListExternalAttendeeActivitiesMetadataResponse.md:
id: 1d8e9a0351c1
@@ -7546,7 +7546,7 @@ trackedFiles:
pristine_git_object: f493edbc67d3cb4ea02a1f8364772ae21bd28882
docs/Models/Requests/ListFeeItemsRequest.md:
id: d945221bae4d
- last_write_checksum: sha1:5f574344588dce80835e00630612260111078289
+ last_write_checksum: sha1:14aa509b6aac43698121d8f0cb12f5dd882cefe4
pristine_git_object: bf4322fb2ede3807a9b1601f1faaefa844f53228
docs/Models/Requests/ListFeeItemsResponse.md:
id: 5ca386c8fd76
@@ -7554,7 +7554,7 @@ trackedFiles:
pristine_git_object: 8e08220562818eb54e994a46cfcdb4b1f0003d5a
docs/Models/Requests/ListHubsRequest.md:
id: 37f112f080b5
- last_write_checksum: sha1:f673bef847588b956fb2515985eed16b9300567c
+ last_write_checksum: sha1:e1352ad362922b7ad6ae0ed9ad6248073dced13d
pristine_git_object: 09819b89f9a129b3ae53f0d9123bfb7207af2eef
docs/Models/Requests/ListHubsResponse.md:
id: e17ab85a9d8b
@@ -7605,12 +7605,12 @@ trackedFiles:
docs/Models/Requests/ListMembershipItemsPostFilterResponse.md:
last_write_checksum: sha1:0ecaba664174572502730dd405452cb0642ab56b
docs/Models/Requests/ListMembershipItemsRequest.md:
- last_write_checksum: sha1:62e7884e1a7cce0b82f0b1bd82acaeb55e9ed140
+ last_write_checksum: sha1:67b4e9d7faef273255509a2c836f7e104b6fe65d
docs/Models/Requests/ListMembershipItemsResponse.md:
last_write_checksum: sha1:e1fe0d450ca567c7191bf890c778d00d869bf700
docs/Models/Requests/ListPlayersRequest.md:
id: b3704564d949
- last_write_checksum: sha1:a9b33dece3b28c43ff3a2954fdcfba133e18beb6
+ last_write_checksum: sha1:dc462d6c748d418e462c7a963b0e2e6b67be5e15
pristine_git_object: db0acc161e97ae27a35041b083239e056210f31d
docs/Models/Requests/ListPlayersResponse.md:
id: b2063e73b0bb
@@ -7634,7 +7634,7 @@ trackedFiles:
pristine_git_object: 2c6babab39a5218765c26dc997552dbc87ca4bfd
docs/Models/Requests/ListProgramItemsRequest.md:
id: 3c196799ad1a
- last_write_checksum: sha1:5a8dcfb6c48a72f6c842c5732c0cfe3ec4ca0c04
+ last_write_checksum: sha1:f579d712ffdf47ffccdcf18ca0c259541263798b
pristine_git_object: 9c844048a79f13d90105e0f34456b352f3bcf1c5
docs/Models/Requests/ListProgramItemsResponse.md:
id: 172b6a098dbc
@@ -7650,7 +7650,7 @@ trackedFiles:
pristine_git_object: 31762c987436a1cd2cff8b88691c3b528952f7f8
docs/Models/Requests/ListQuantityItemsRequest.md:
id: 46fac450fb37
- last_write_checksum: sha1:6003776d6a8487762977f5860c2bd0919d47a784
+ last_write_checksum: sha1:aa7c30a398b8383c67805c565892a84f8372d2e2
pristine_git_object: 1341f7ee33011930a52bfc556bd476802f0003ae
docs/Models/Requests/ListQuantityItemsResponse.md:
id: 4dd7ab2abe6b
@@ -7722,7 +7722,7 @@ trackedFiles:
pristine_git_object: c392c3d466b7155d87e2c354f5cc390252c04d32
docs/Models/Requests/ListSegmentAssociatedAttendeesRequest.md:
id: 574c80ed70a3
- last_write_checksum: sha1:d3fb95965448ebd62249a310fe660b0e52483ac4
+ last_write_checksum: sha1:0559f6702fbef4c56150c4324e7fce4905c5df21
pristine_git_object: 5444028ded9668c7dde7e5faca72576ca35020de
docs/Models/Requests/ListSegmentAssociatedAttendeesResponse.md:
id: 80ac1896f400
@@ -7730,7 +7730,7 @@ trackedFiles:
pristine_git_object: 646e4dfe89ad7d904b2dedff33d14f9dd4a88831
docs/Models/Requests/ListSessionDocsRequest.md:
id: 1dfbfaddd94d
- last_write_checksum: sha1:54b57ad58203a69014902db4b477abf48a88e07d
+ last_write_checksum: sha1:d654d9e9b149faab774d491f6cc73203a6469963
pristine_git_object: 86d6c4119f78f3af86ac419a168682dd90468505
docs/Models/Requests/ListSessionDocsResponse.md:
id: f99e3ab2b02e
@@ -7762,7 +7762,7 @@ trackedFiles:
pristine_git_object: 70243dcd3640a999c9d6887d1a34008420074c7b
docs/Models/Requests/ListSessionsCategoriesRequest.md:
id: 9df0feca03c4
- last_write_checksum: sha1:d8083a66022c305d3b67ebec532d4233158b22b5
+ last_write_checksum: sha1:668422f2bfcc7b83a52355097d2c99493fbcc8d0
pristine_git_object: 73fe105e87753fa2104f671a92589d3072afdbb6
docs/Models/Requests/ListSessionsCategoriesResponse.md:
id: 12f4c47a43fa
@@ -7794,7 +7794,7 @@ trackedFiles:
pristine_git_object: 9d750f338277c20cdd24358d0575c2ece130fd04
docs/Models/Requests/ListSessionsRequest.md:
id: 51686da9b884
- last_write_checksum: sha1:e58011db9f781d941b3d234e9866304114151649
+ last_write_checksum: sha1:94b09a5db643b92085b09bee482348b14994ccb1
pristine_git_object: 1bed497332862561665953c0535855694ffcdc47
docs/Models/Requests/ListSessionsResponse.md:
id: 955d0a06312b
@@ -7857,7 +7857,7 @@ trackedFiles:
last_write_checksum: sha1:d9e2e03c409631d424029ff1cb8a01f997aa671e
pristine_git_object: 47d25784d5d18650b8c922d600a85e1421d1bd59
docs/Models/Requests/ListTaxesRequest.md:
- last_write_checksum: sha1:736207ce273f8ddd54fbb33fa25ae11ad23b0f27
+ last_write_checksum: sha1:68b5b37332d73d498174f06f786be1e379ec3efb
docs/Models/Requests/ListTaxesResponse.md:
last_write_checksum: sha1:de96d4a50e2d9365f5b23e710075cd62f07ac3aa
docs/Models/Requests/ListTravelAccountsRequest.md:
@@ -7934,7 +7934,7 @@ trackedFiles:
pristine_git_object: 1786898eeeed59ed9a187fb30946aeb6682e4ced
docs/Models/Requests/ListVideosRequest.md:
id: 4055e7762de1
- last_write_checksum: sha1:de82d762ad564ef469e7b3af23f983a919fde905
+ last_write_checksum: sha1:0c484d9e3c5b2f954a624f0e579db2630e82692f
pristine_git_object: 2c3838ee50e3b1cb25ae4b0c307018892e271b91
docs/Models/Requests/ListVideosResponse.md:
id: c965fd523ab6
@@ -7942,7 +7942,7 @@ trackedFiles:
pristine_git_object: b366669122ed8a60b7a533fc97d3ba918d59b4de
docs/Models/Requests/ListWebcastAttendeeLinksRequest.md:
id: f8219f21f050
- last_write_checksum: sha1:9b367a3cca31e7d9d964cca63caee220227a1cbd
+ last_write_checksum: sha1:4ab9de15147fbf313867b1041c1e158692f3e0ac
pristine_git_object: 9dc30496869ab0690fb6bfcb9df6342cef1eb6e6
docs/Models/Requests/ListWebcastAttendeeLinksResponse.md:
id: 2d68ded4f2b5
@@ -7950,7 +7950,7 @@ trackedFiles:
pristine_git_object: a90fe675c8c3c40bc4410300b32f43ec6485b0b3
docs/Models/Requests/ListWebcastsRequest.md:
id: 2f47c7900aa1
- last_write_checksum: sha1:ca7dd6559f9670ddd96fb65110225fd53df3575e
+ last_write_checksum: sha1:7e0d8746dce82e875262d983ba47b62292581e5f
pristine_git_object: 617a122b033f55273c8a9c954fd034043f48700f
docs/Models/Requests/ListWebcastsResponse.md:
id: 5d3d59edd11e
@@ -8634,7 +8634,7 @@ trackedFiles:
pristine_git_object: ca970b43ca92e0cb8eddf9d0f04a072fcdee273b
docs/sdks/authentication/README.md:
id: 45be241adfc3
- last_write_checksum: sha1:6cf99d136f7546d4a6bfb831db30785d5b00ba91
+ last_write_checksum: sha1:5dfc5fe2e20659b041846cb82b263f05636b039c
pristine_git_object: 586c504af209b1e47863a88407340a87607a0c5c
docs/sdks/badgeprinterpools/README.md:
id: d73d6cce89d1
@@ -8650,7 +8650,7 @@ trackedFiles:
pristine_git_object: 53a91b2b68035039b16cd37290f8d218462eab15
docs/sdks/bulk/README.md:
id: fa4bd7a4682a
- last_write_checksum: sha1:0f13df3a85efe4a967994a13750efa618807a0a3
+ last_write_checksum: sha1:c68018a01a7c720eb07b4aa55b654b8be31b56be
pristine_git_object: 4d706fcb345914cfb1fa370fcb0fec8fae121e10
docs/sdks/campaigns/README.md:
id: 18dcc3c717ca
@@ -8726,7 +8726,7 @@ trackedFiles:
pristine_git_object: 226634479fc1c80c5445e0abd3906614f5ca218a
docs/sdks/housing/README.md:
id: 23d65d817ab8
- last_write_checksum: sha1:a6914f6206a725d7ca74929f012165376c20b2fc
+ last_write_checksum: sha1:c06752fc0f32cac1a806ba2228d273eec846e078
pristine_git_object: 4455010cbde3a3837c5ca2b707afac4aae2ac717
docs/sdks/housinghotels/README.md:
id: d04ff5412c59
@@ -8738,7 +8738,7 @@ trackedFiles:
pristine_git_object: e22b3188b967a497c5095aff8f03cab0310aaf43
docs/sdks/meetingrequest/README.md:
id: 4d8d5f5fd977
- last_write_checksum: sha1:cb1d5e29ca6471d698fa27c89e941577aa13dc3e
+ last_write_checksum: sha1:08fd909eb576d8b46e768769f126c88ef911acec
pristine_git_object: 2b7a21d84cc4510d71685da566e69b4eb2d138b3
docs/sdks/processform/README.md:
id: 0d23c161e66c
@@ -8838,7 +8838,7 @@ trackedFiles:
pristine_git_object: cd663f188cf769273acee47bf7512632946b0a54
src/Cvent/SDK/Authentication.cs:
id: f90a858273bd
- last_write_checksum: sha1:a709dba3177c99180c38ebf3c470bbd70e8801e5
+ last_write_checksum: sha1:af71ffdc2702a6fca339fa8ac719e22dad7daf58
pristine_git_object: 89f9c9b867bee5e72d6226bec1134e01912860ab
src/Cvent/SDK/BadgePrintJob.cs:
id: 6ad60f07c4b4
@@ -8854,7 +8854,7 @@ trackedFiles:
pristine_git_object: f3d3768b336679e9ba7578ed51e14fe50a8365de
src/Cvent/SDK/Bulk.cs:
id: ac2ca01debc8
- last_write_checksum: sha1:610336b4a08f3d8e9bcf2326c5c5e5e10150aa41
+ last_write_checksum: sha1:2d61ede8aa837ccf63a8e3df7011324d43cb958c
pristine_git_object: 91dd13b7d76cfc0f4f7cc59a924879f8f92b1d9b
src/Cvent/SDK/Campaigns.cs:
id: f425e065b945
@@ -8878,11 +8878,11 @@ trackedFiles:
pristine_git_object: 977cd7381c7598682830d6e4a64a85cb14130b98
src/Cvent/SDK/Cvent.SDK.csproj:
id: 7a55759bc2f0
- last_write_checksum: sha1:faaeaf32623b25b2712299c1d3f8208c83737f3f
+ last_write_checksum: sha1:1632fe6502f0460817513e8cb0ea90c4599cd02a
pristine_git_object: 711013944bc0505858b0b7cf177f166071b47593
src/Cvent/SDK/CventSDK.cs:
id: f7e1ad22cd8f
- last_write_checksum: sha1:cf66f968ccef0954b8b4723745f5635080e7a559
+ last_write_checksum: sha1:f562f86886b5c8aa1874f0b9cbb908ff0801e13f
pristine_git_object: 73b691f7e3fc8c29322c3bac6169519066a92685
src/Cvent/SDK/Discounts.cs:
id: 65ff3d7f6c89
@@ -8954,7 +8954,7 @@ trackedFiles:
pristine_git_object: e3ad1ac7b4dd624040e3f30514dfffb4e2b94155
src/Cvent/SDK/Housing.cs:
id: a10cf2ffbc7c
- last_write_checksum: sha1:33bca43217427ce8396e3710312d27507f9e3249
+ last_write_checksum: sha1:9b004d82b4cf015305509b3e04154a6d61b48590
pristine_git_object: 26397f09d75ba9d69843a3b969c292ee2407ae6d
src/Cvent/SDK/HousingHotels.cs:
id: 9249b2b9a6b5
@@ -8966,7 +8966,7 @@ trackedFiles:
pristine_git_object: dfcfb0f9b1c88569e9f6110dbee82dc25ff538ee
src/Cvent/SDK/MeetingRequest.cs:
id: 5f343c314bf6
- last_write_checksum: sha1:f9cb63dd3cef4b32d58e4cb02512cab93c542587
+ last_write_checksum: sha1:d05442fe826fb1aee9945645f857dbe49b5af891
pristine_git_object: ab4d871c869ae435b0148438a074c626d5bf7495
src/Cvent/SDK/Models/Callbacks/CreateContactHookContactTransactionCallbackResponse.cs:
id: bfa3f73d3233
@@ -9505,7 +9505,7 @@ trackedFiles:
src/Cvent/SDK/Models/Components/AttendeeAudienceSegmentAssociationsPaginatedResponse.cs:
last_write_checksum: sha1:33682762521dbe718f4ccc76379d02702d7c9d95
src/Cvent/SDK/Models/Components/AttendeeContactInfo.cs:
- last_write_checksum: sha1:9d79ed9fc4e71688399ec59b0c8ead6d88170080
+ last_write_checksum: sha1:b82a3572ee51c0251d4ce6f01780b4d7691696da
src/Cvent/SDK/Models/Components/AttendeeContactMembership.cs:
last_write_checksum: sha1:148111409776bbb5cefab2c998f5d0e64665342a
src/Cvent/SDK/Models/Components/AttendeeContactType.cs:
@@ -10817,7 +10817,7 @@ trackedFiles:
last_write_checksum: sha1:14b86fa0474fdf4ad4086deda148aa8b05bee7fe
pristine_git_object: f982dc2038682516d9bcff03c4c8531a6b35469e
src/Cvent/SDK/Models/Components/Event1.cs:
- last_write_checksum: sha1:5e55866cc6fcef452168cd8a635bb44167ea0469
+ last_write_checksum: sha1:70a76a68f543fc0a153cebc0e3d1b5fb0d5b205e
src/Cvent/SDK/Models/Components/Event12.cs:
last_write_checksum: sha1:2a80adab8a4d4db88eb5eead0504d980c5b78ac8
src/Cvent/SDK/Models/Components/Event2.cs:
@@ -10956,7 +10956,7 @@ trackedFiles:
last_write_checksum: sha1:672f680757a8ac030a980f0b47467f06bb797c5d
src/Cvent/SDK/Models/Components/EventInput.cs:
id: 7fe46952c48b
- last_write_checksum: sha1:8a8b7e18341536783af9ccde671799192c420152
+ last_write_checksum: sha1:1e14efb5b366d9689752d7fd58cf0c56be727afe
pristine_git_object: 3b581221c6734962cc3acb1c4cd406cdaa5404d1
src/Cvent/SDK/Models/Components/EventJson.cs:
last_write_checksum: sha1:1fde40afc94011afdba755e04133054b39f67950
@@ -11140,11 +11140,11 @@ trackedFiles:
last_write_checksum: sha1:883c295d33d99a9739f8adae6d32a39ffa04da6f
src/Cvent/SDK/Models/Components/EventUpdate.cs:
id: 81469efd695c
- last_write_checksum: sha1:ba3f3e7d3b3ee13f6b886e1eff080f4200287859
+ last_write_checksum: sha1:3609243893ddaf2b88c31c0c5be51965bb00f621
pristine_git_object: ed47c3f13b5fb02a2a69d392166af8b6fa23e09e
src/Cvent/SDK/Models/Components/EventUpdateInput.cs:
id: e8ee4482386e
- last_write_checksum: sha1:af8cff7fa7659183d2a6269e6c5425ab7afd5605
+ last_write_checksum: sha1:127f70315652975dd7028ffd24d333c303544258
pristine_git_object: 29f3a801bc6139fb4f0e763f609c470ab05f78c8
src/Cvent/SDK/Models/Components/EventUpdateLookup.cs:
id: 55d320b6e0fe
@@ -14950,7 +14950,7 @@ trackedFiles:
pristine_git_object: 0cb5acf40f189f3279251054a4835d32110bb83c
src/Cvent/SDK/Models/Requests/GetAccountBudgetItemsRequest.cs:
id: a1ba17baa4be
- last_write_checksum: sha1:711eee9ae49774bde10b5e0953ac9574a621b1c1
+ last_write_checksum: sha1:0c45e4c3b74e3c26eb90c4e1bc70ce65776cc81e
pristine_git_object: f5b811e448edec69f38023dfcb5ad1dde6542331
src/Cvent/SDK/Models/Requests/GetAccountBudgetItemsResponse.cs:
id: a00e873e7d31
@@ -14973,12 +14973,12 @@ trackedFiles:
last_write_checksum: sha1:be91345ed4251b6e49692b2314254bcc75b2cb4b
pristine_git_object: c328e98272441b53a2a13f003cf88ead1abbb64a
src/Cvent/SDK/Models/Requests/GetAccountVendorsRequest.cs:
- last_write_checksum: sha1:d5b01bed8ee6d771984e4103e16b1200fb08a43e
+ last_write_checksum: sha1:7f77b35dc5589031c21f6f9d5aa15132fd0ee953
src/Cvent/SDK/Models/Requests/GetAccountVendorsResponse.cs:
last_write_checksum: sha1:c125e37a0db7d74658e2d0ae0b2f6c73a0844480
src/Cvent/SDK/Models/Requests/GetAirActualDetailRequest.cs:
id: edb0b96bd695
- last_write_checksum: sha1:ed6b6d9391718e8feeede6e69150fc1a81026b53
+ last_write_checksum: sha1:c4b36c5eab642b76ec22cfbd71e2ea96ec9e1645
pristine_git_object: 2bec3ee479ba1292a1d1709d2b48796d74ef95e6
src/Cvent/SDK/Models/Requests/GetAirActualDetailResponse.cs:
id: 788e62c8b540
@@ -14986,7 +14986,7 @@ trackedFiles:
pristine_git_object: 968babefc75df87896ac7d1ffb3fbeb0da96ace6
src/Cvent/SDK/Models/Requests/GetAirRequestsRequest.cs:
id: 7ad9d782f655
- last_write_checksum: sha1:8f68367d9ab3e699183735668e8e32c735549ef4
+ last_write_checksum: sha1:6f72ed0b0e65da12cefacc9c285ef084f24d2f95
pristine_git_object: d7a7199f5c53134018918c3787364c4b5eb624d6
src/Cvent/SDK/Models/Requests/GetAirRequestsResponse.cs:
id: b63761589c6f
@@ -14994,14 +14994,14 @@ trackedFiles:
pristine_git_object: 5d56a24cc8ff2288a105fd8f5e66a8bd74287a8b
src/Cvent/SDK/Models/Requests/GetAllEventSurveyResponsesRequest.cs:
id: 5eb3256aa4fe
- last_write_checksum: sha1:81da8ef6811204743c5932f73217405b86a0218e
+ last_write_checksum: sha1:53b5d77d1c1cee10dbc2180442d85bdf5b2336bb
pristine_git_object: 9f6788e69a347ea8bd4e2fdc3dbca3caee2dad9f
src/Cvent/SDK/Models/Requests/GetAllEventSurveyResponsesResponse.cs:
id: 02ff57c7411c
last_write_checksum: sha1:9854f3b8186b1ebb2e4bbb97a0ef5c3079dd2825
pristine_git_object: 5c0131cf8afe504dd599e961274f1758fbf3e302
src/Cvent/SDK/Models/Requests/GetAlternateTravelAnswersRequest.cs:
- last_write_checksum: sha1:94bf2e9152e0f566ab15e2f820410afdd7506054
+ last_write_checksum: sha1:bb6dc3804b9376ce64bd56fb8df714fbf0967d3f
src/Cvent/SDK/Models/Requests/GetAlternateTravelAnswersResponse.cs:
last_write_checksum: sha1:1e84bb4fa8d1d130a0b98c1b95e4df6377e49691
src/Cvent/SDK/Models/Requests/GetAppointmentAttendeeByIdRequest.cs:
@@ -15134,7 +15134,7 @@ trackedFiles:
pristine_git_object: 0ca90a5629f23cfc9f82e843e2b0e9aa30d4d933
src/Cvent/SDK/Models/Requests/GetBudgetAllocationsRequest.cs:
id: d1f6553524df
- last_write_checksum: sha1:d2fbcaed3a51bef7387b05d4bdbb4e7e63a0d3ee
+ last_write_checksum: sha1:41b3f0551177f21443f378c9d2becff94697b820
pristine_git_object: ae0dca8affb9b91deca90ac493b6cc4b98892cbd
src/Cvent/SDK/Models/Requests/GetBudgetAllocationsResponse.cs:
id: 5fdead22e612
@@ -15142,7 +15142,7 @@ trackedFiles:
pristine_git_object: d6a76bdf2483040795e1d333344ea88794af629a
src/Cvent/SDK/Models/Requests/GetBudgetItemsRequest.cs:
id: 085e064a5ed6
- last_write_checksum: sha1:761627262e483e70eba17facb11a0470370ebe0f
+ last_write_checksum: sha1:431fd6aed0696e8cbce7327e52f8fb84f9ec8e0f
pristine_git_object: bb7b4ea09f35ce198522d4156150d71ec2a8ed4e
src/Cvent/SDK/Models/Requests/GetBudgetItemsResponse.cs:
id: b858ff5d45d7
@@ -15166,7 +15166,7 @@ trackedFiles:
pristine_git_object: 2a3201e75b1aaf10cead06d5235d5f7ead4a86c1
src/Cvent/SDK/Models/Requests/GetCardTransactionsRequest.cs:
id: 54b881d53ba8
- last_write_checksum: sha1:a898e64cd5379d3b57484efef94bd7d916ecf2f8
+ last_write_checksum: sha1:b962f295bb771adb888494d1af8547794b4dbcef
pristine_git_object: 6ffcaea45dd2cae247d6a17da69f845fb185ed47
src/Cvent/SDK/Models/Requests/GetCardTransactionsResponse.cs:
id: a47db341ffba
@@ -15174,7 +15174,7 @@ trackedFiles:
pristine_git_object: 46748c8db8e7cbdbecf2f74c5f4b0391ed7f92a5
src/Cvent/SDK/Models/Requests/GetCardsRequest.cs:
id: 017d06182be8
- last_write_checksum: sha1:205812a03f6a09d9e7a0881d91703f50e0e2913c
+ last_write_checksum: sha1:5b82afa8213fd0601982d77bb79933c3618e9674
pristine_git_object: cbec6d0f4beba15baf74a6bd85a3bfdc8e9127de
src/Cvent/SDK/Models/Requests/GetCardsResponse.cs:
id: 5f0ecfc81e8e
@@ -15250,7 +15250,7 @@ trackedFiles:
pristine_git_object: b84ff3a83e83fa6cdcfb1d5292d277273e5e5801
src/Cvent/SDK/Models/Requests/GetCurrencyConversionRateRequest.cs:
id: 173d89837ae4
- last_write_checksum: sha1:b8880b0d94544c0035dee8c3de66d9c579300ee0
+ last_write_checksum: sha1:1371f2d5e7318050cc585afab5a5c9af43730139
pristine_git_object: 6b8d73d6523902dc20809d506b515ce824b6d230
src/Cvent/SDK/Models/Requests/GetCurrencyConversionRateResponse.cs:
id: ba27cbd43e4d
@@ -15322,7 +15322,7 @@ trackedFiles:
pristine_git_object: 766a640fcdb4c00303e561e9511ef87677e0b30b
src/Cvent/SDK/Models/Requests/GetEventBudgetTotalsRequest.cs:
id: 4afe528e9a4b
- last_write_checksum: sha1:e27bc99744f84ce13aeaf5aae4f532a4b7804ab4
+ last_write_checksum: sha1:375e55672e12cc63a0c3647c88c9642248e91a48
pristine_git_object: b60f90edae49c76d6b32d5aaa98c2420edc713f1
src/Cvent/SDK/Models/Requests/GetEventBudgetTotalsResponse.cs:
id: dff300d321f7
@@ -15354,7 +15354,7 @@ trackedFiles:
pristine_git_object: 1e442987a786ea9e077a12e48f96c0736d4772be
src/Cvent/SDK/Models/Requests/GetEventFeaturesRequest.cs:
id: 9777280b83d6
- last_write_checksum: sha1:8c809eb4198096248e1219ccc1245c362e3ade99
+ last_write_checksum: sha1:209603a4ba443fd63be74672246b1e33aae8cf15
pristine_git_object: ded835ccecbcb3dd759e8160e0ae9f6927238587
src/Cvent/SDK/Models/Requests/GetEventFeaturesResponse.cs:
id: 1bc8aaef71d1
@@ -15382,7 +15382,7 @@ trackedFiles:
pristine_git_object: 71206224d18d4a49c4030657001ed065b228acce
src/Cvent/SDK/Models/Requests/GetEventSurveyRespondentsRequest.cs:
id: 056e2b10597b
- last_write_checksum: sha1:8442fe7fb443371af9314f5f0acb50968f618226
+ last_write_checksum: sha1:19bcac01a2c9fdb0032024f683732fb93bf30144
pristine_git_object: 5a71ae451f8ce65399bcfd7f820c1eb7d888e8d8
src/Cvent/SDK/Models/Requests/GetEventSurveyRespondentsResponse.cs:
id: ac83a925b594
@@ -15390,7 +15390,7 @@ trackedFiles:
pristine_git_object: 779eb42d4d9845f0e2c5ab14292cc6c2bbabbbfb
src/Cvent/SDK/Models/Requests/GetEventSurveyResponsesRequest.cs:
id: 97a112fa3c5d
- last_write_checksum: sha1:8f7a7cead654466009103a17e1cbae433790005b
+ last_write_checksum: sha1:e81cb1365a98630ce5ea39c73d974c31e624e642
pristine_git_object: 01f9169621e015ee539c33582848f1fa597af0e4
src/Cvent/SDK/Models/Requests/GetEventSurveyResponsesResponse.cs:
id: 5ff830b03b48
@@ -15398,7 +15398,7 @@ trackedFiles:
pristine_git_object: c364f840f69afff3788c5f149946a9415d35286f
src/Cvent/SDK/Models/Requests/GetEventSurveysRequest.cs:
id: 2ef0f1492a6e
- last_write_checksum: sha1:52da532ca8665e8d0866918f44fecd0b31f76bad
+ last_write_checksum: sha1:05642af9bcf39f145c285f65e03b5aa967039bdd
pristine_git_object: 75169a0d2d92937ed019381ac8851bcc130326a9
src/Cvent/SDK/Models/Requests/GetEventSurveysResponse.cs:
id: 348cf81b52ed
@@ -15510,7 +15510,7 @@ trackedFiles:
pristine_git_object: 3baee83d093aa30bf740a8682cf06526fc649455
src/Cvent/SDK/Models/Requests/GetHotelRequestsRequest.cs:
id: 67690318fe86
- last_write_checksum: sha1:ebdd07dda9796fc1591ffae5b66a3379faf98dc1
+ last_write_checksum: sha1:5f417e1ea0e568b632c448b35427cb9734adf8af
pristine_git_object: 555cba18d154f05af25fc1352f50cc8dc6630fa2
src/Cvent/SDK/Models/Requests/GetHotelRequestsResponse.cs:
id: 330cc75a626c
@@ -15582,7 +15582,7 @@ trackedFiles:
pristine_git_object: 464f7ce7c9b93a557ae462b1426171090760558c
src/Cvent/SDK/Models/Requests/GetHousingReservationRequestsRequest.cs:
id: 5dd9c1db4172
- last_write_checksum: sha1:04f269132df0f103d60901046892998d6f6cfbfb
+ last_write_checksum: sha1:42c6f663f3b1375df33e79951b3981f39ace8272
pristine_git_object: f7cf6b6f8e7b12984d8d0b59b85fb95702d252df
src/Cvent/SDK/Models/Requests/GetHousingReservationRequestsResponse.cs:
id: 1d17ae1a2e4c
@@ -15590,7 +15590,7 @@ trackedFiles:
pristine_git_object: 72304d049b000c8ac13ea82705971256b3c2dc02
src/Cvent/SDK/Models/Requests/GetHubMembersRequest.cs:
id: fb0c0c8a369f
- last_write_checksum: sha1:80a5ed79cf1bd1b80e3f78bbc88c913a0852d2ff
+ last_write_checksum: sha1:3571c3ba507e7658b17fc8c877a701db16af0357
pristine_git_object: 55d00739ba8badfc938f91d606323ff4d4f16ebc
src/Cvent/SDK/Models/Requests/GetHubMembersResponse.cs:
id: dee19f3f33a6
@@ -15606,7 +15606,7 @@ trackedFiles:
pristine_git_object: 6c3dbd27fc6e0e62aef92010697df68040c0bd19
src/Cvent/SDK/Models/Requests/GetLargeChoicesRequest.cs:
id: ea7074fd6374
- last_write_checksum: sha1:190225ee0d6c03b16da7e4cf2f178d9c94a2d8a8
+ last_write_checksum: sha1:af35525c3cf5e1be52eaeb23ef50675c482337bf
pristine_git_object: 025bfaa8b0726cdd95e8278f8a12a3da9acd9edb
src/Cvent/SDK/Models/Requests/GetLargeChoicesResponse.cs:
id: d2091cbde36c
@@ -15678,7 +15678,7 @@ trackedFiles:
pristine_git_object: 753806caac32c5d70d19fb9f85ed0abfbe40238c
src/Cvent/SDK/Models/Requests/GetOrderItemsRequest.cs:
id: 85efc730faa5
- last_write_checksum: sha1:255770f1af4e53e7424bd3dba161fe7eb9362192
+ last_write_checksum: sha1:8e253f884353005f12ed5ac89415658d905d4034
pristine_git_object: db26aa35d0a44c6bb056c9778d8584f6b4f7bc3a
src/Cvent/SDK/Models/Requests/GetOrderItemsResponse.cs:
id: d2689a626aab
@@ -15686,7 +15686,7 @@ trackedFiles:
pristine_git_object: 323332983fc231efcb15330563de5b5f1c0cb30c
src/Cvent/SDK/Models/Requests/GetOrdersRequest.cs:
id: 16910f1ae126
- last_write_checksum: sha1:4c83f8028eed1ae33a221348ed8c182255b0fac4
+ last_write_checksum: sha1:26de8246aad8efb0d69b5fdcf18475f78ee9b3ad
pristine_git_object: d9a5dbe0e280de03d66d29be80791eb25e6b7d05
src/Cvent/SDK/Models/Requests/GetOrdersResponse.cs:
id: dedf369b65bd
@@ -15694,7 +15694,7 @@ trackedFiles:
pristine_git_object: 9cb0185ea3d197f50d6b51b4d0a70625566261dd
src/Cvent/SDK/Models/Requests/GetPaymentsRequest.cs:
id: 08f6381ba073
- last_write_checksum: sha1:d067e2d386192c22cda4e5d534208d08232b4de6
+ last_write_checksum: sha1:18438964a24d27c12a107210589bf220384853c6
pristine_git_object: 109d1e1545403f45048f85875c74b5ac0515a2da
src/Cvent/SDK/Models/Requests/GetPaymentsResponse.cs:
id: 6efd5104d187
@@ -15718,7 +15718,7 @@ trackedFiles:
pristine_git_object: 3428aa2343faa11361f0cbce0194e10b29081336
src/Cvent/SDK/Models/Requests/GetQuestionsRequest.cs:
id: 2c141c27c83f
- last_write_checksum: sha1:cba3f4984efab5dc5d54e90df18566c06c90f539
+ last_write_checksum: sha1:6b7f7dee1741e542742f708eabfc16657327c590
pristine_git_object: 737657a4ee6be2a4ca4d076fff0b8f0ba10649b9
src/Cvent/SDK/Models/Requests/GetQuestionsResponse.cs:
id: 249401b81958
@@ -15766,7 +15766,7 @@ trackedFiles:
pristine_git_object: 278e868146c1e8f880e920f6a2c37dacb0169c3c
src/Cvent/SDK/Models/Requests/GetRespondentsRequest.cs:
id: 19a9bf3afc0e
- last_write_checksum: sha1:27ba517f465f5d04c5c1e6bf1f7286856943787d
+ last_write_checksum: sha1:ff9148d275831a5c5a2d7dcdf42fb60f71d04832
pristine_git_object: 36c329be7364d84a164895342a7942e69cfe8021
src/Cvent/SDK/Models/Requests/GetRespondentsResponse.cs:
id: 571bd85e3bac
@@ -15774,7 +15774,7 @@ trackedFiles:
pristine_git_object: 81f24b5af578990c56e2267d041eb5c2c9d3e0f8
src/Cvent/SDK/Models/Requests/GetResponsesRequest.cs:
id: c87ebe4f1810
- last_write_checksum: sha1:ac9371580e9bf403160c4ad5d057153b21a4d833
+ last_write_checksum: sha1:62a7b071072fd9d62ffac1d14383b7ddb237a870
pristine_git_object: ff5fa8f70303ffe52e03e624fe07fb7002f1dda2
src/Cvent/SDK/Models/Requests/GetResponsesResponse.cs:
id: 313c5aea324c
@@ -15950,7 +15950,7 @@ trackedFiles:
pristine_git_object: 8f6788fa32849419c5a9c44311735fc90de4af2d
src/Cvent/SDK/Models/Requests/GetStandardSurveyRespondentsRequest.cs:
id: 7c02e4f76107
- last_write_checksum: sha1:9e7537c5a194849db15e5ca5e053af027e9489f6
+ last_write_checksum: sha1:bf580edccb8fd360c9fea3e405b1bc1d38a806cc
pristine_git_object: 74ca3c8fc33be43f3ecb0e57fcced620ba8e4255
src/Cvent/SDK/Models/Requests/GetStandardSurveyRespondentsResponse.cs:
id: 53f62ab9522c
@@ -15958,7 +15958,7 @@ trackedFiles:
pristine_git_object: 2d9b07e0398511e43460398a39a4f526d6119b0f
src/Cvent/SDK/Models/Requests/GetStandardSurveyResponsesRequest.cs:
id: 1d3ac8a87293
- last_write_checksum: sha1:7b309c29f5438c5654cbfcfacc6821bd37323a34
+ last_write_checksum: sha1:e2a967399a70bfd8b1ffd6c92817bb49dcb02b18
pristine_git_object: 2ab33d9399ef294f54bc638157ac8613cb8fe3ec
src/Cvent/SDK/Models/Requests/GetStandardSurveyResponsesResponse.cs:
id: 961a1835e5fe
@@ -15966,7 +15966,7 @@ trackedFiles:
pristine_git_object: 787ce6346e15a212b4d6a53d60158f9b8b50bc69
src/Cvent/SDK/Models/Requests/GetStandardSurveysRequest.cs:
id: 51eb799f4f4a
- last_write_checksum: sha1:7b0c50019a6a53b001ba39fdba1e6c590ebf2be1
+ last_write_checksum: sha1:8779bd5ee2149cd15b4830f7c1a2a265773ff126
pristine_git_object: 807e60f2164593213a585fbc456230b454facc73
src/Cvent/SDK/Models/Requests/GetStandardSurveysResponse.cs:
id: 9950a39a31a0
@@ -15990,7 +15990,7 @@ trackedFiles:
pristine_git_object: 43648f6523fd2cd739bb367a9b4af191d4908522
src/Cvent/SDK/Models/Requests/GetSurveyRequest.cs:
id: 5cf4e4b8d704
- last_write_checksum: sha1:1aaa99e8dd09ebda4fcff7b8bec9618fe924e4d3
+ last_write_checksum: sha1:e21e24f668b2736aa1c0a271eeb2d74bd44aa429
pristine_git_object: 42414b7891526f0d3f36ad65411c843731ce548a
src/Cvent/SDK/Models/Requests/GetSurveyResponse.cs:
id: 1385cdf637c7
@@ -16014,7 +16014,7 @@ trackedFiles:
pristine_git_object: db3f5282caf1fa1be7774aab18b27ed62e0547e2
src/Cvent/SDK/Models/Requests/GetTransactionItemsRequest.cs:
id: 6a770b856f22
- last_write_checksum: sha1:f208e759748210922d3c6bc0e46ea6f81f363642
+ last_write_checksum: sha1:e5888f79dd64f279ed2ec51f1fff0c4f54a9f6e9
pristine_git_object: ef1160e5c0ec1571a81089d32bd5c38eca0ac3aa
src/Cvent/SDK/Models/Requests/GetTransactionItemsResponse.cs:
id: 463e303e7cce
@@ -16022,7 +16022,7 @@ trackedFiles:
pristine_git_object: 77946720d601437e5b5e4907bb32445d7a70da19
src/Cvent/SDK/Models/Requests/GetTransactionsRequest.cs:
id: 23a6a856603b
- last_write_checksum: sha1:c76319eb3b0034c49dae7e6e2a2f702b730bacc5
+ last_write_checksum: sha1:926c17498cf2e7b719a4e6fd12b18ae9e39e2957
pristine_git_object: 54a4f1dee7090a2719a70e886e049c3d8595dfde
src/Cvent/SDK/Models/Requests/GetTransactionsResponse.cs:
id: 513c782dacae
@@ -16098,7 +16098,7 @@ trackedFiles:
pristine_git_object: 939beae2f24c66480a6f7821d9a0f726f5e2c32c
src/Cvent/SDK/Models/Requests/GetVideoViewsRequest.cs:
id: b2f0d27eae9c
- last_write_checksum: sha1:5bb923e49ca1c98e4f694985d85ae1eed8d20dc0
+ last_write_checksum: sha1:3e65e6a60c0b1a0a54cc49bff1d37d887a74d906
pristine_git_object: 3163dff669045a2cfd05353a253b8a9abf5e7113
src/Cvent/SDK/Models/Requests/GetVideoViewsResponse.cs:
id: c2b1d5d1ef49
@@ -16189,19 +16189,19 @@ trackedFiles:
last_write_checksum: sha1:518ab0aac028c568da5d48fe03377b2b6e06ce51
pristine_git_object: d0ac7b5912a3721bc7c6fe8156fe66baa236b9f8
src/Cvent/SDK/Models/Requests/ListAssociatedAudienceSegmentsRequest.cs:
- last_write_checksum: sha1:cceefe5fedb02e690270c0d17786ef3dc13bcc69
+ last_write_checksum: sha1:fe6bd6e337cf9ac26dad01983fd8ad4371d07943
src/Cvent/SDK/Models/Requests/ListAssociatedAudienceSegmentsResponse.cs:
last_write_checksum: sha1:64f614478b7532ecc0300d85f4e4fac4603e2d61
src/Cvent/SDK/Models/Requests/ListAttendeeActivitiesRequest.cs:
id: 47b9ac3ef486
- last_write_checksum: sha1:dfabd1fd0068d128143d754258d5954240b8012d
+ last_write_checksum: sha1:c1ba4e4bada036b4d123ce489b6e6ad4cff11561
pristine_git_object: baad49aaf5462dda791f291f275f00149cd7ac1d
src/Cvent/SDK/Models/Requests/ListAttendeeActivitiesResponse.cs:
id: f3edb46f9703
last_write_checksum: sha1:fcd736d1f20d31b5bea05a801945ee0464ed14a6
pristine_git_object: 94dafa9c1f1ad91df93c45d58a889207f92101b6
src/Cvent/SDK/Models/Requests/ListAttendeeAudienceSegmentsRequest.cs:
- last_write_checksum: sha1:7b4cf398b6a84e19570c94a61d3e199f9c3187f4
+ last_write_checksum: sha1:4d6b1406167b2c4aed11c865008077cf44eeeea8
src/Cvent/SDK/Models/Requests/ListAttendeeAudienceSegmentsResponse.cs:
last_write_checksum: sha1:c4cec1b560c0f51294c5c5f577161ead60080c68
src/Cvent/SDK/Models/Requests/ListAttendeeInsightsRequest.cs:
@@ -16214,7 +16214,7 @@ trackedFiles:
pristine_git_object: 1d747ac75217fe984479f3dc730dba1a04082397
src/Cvent/SDK/Models/Requests/ListAttendeeLinksRequest.cs:
id: f898424e9f83
- last_write_checksum: sha1:a9965732a3a7b645bee842993ab8298fddeac004
+ last_write_checksum: sha1:878a2da3b8f746359029d79c00f8bd85338e1d23
pristine_git_object: 235b964e30a7237049f5057453ab9f747a817a50
src/Cvent/SDK/Models/Requests/ListAttendeeLinksResponse.cs:
id: 9807f3ba18c4
@@ -16230,7 +16230,7 @@ trackedFiles:
pristine_git_object: 50f6e5f8f0488073e4d2aa28d1c743c0e378c799
src/Cvent/SDK/Models/Requests/ListAttendeesRequest.cs:
id: df1f0065558e
- last_write_checksum: sha1:93e2a7cb8a0e4b9e9b3ac01a6538f33a488b1ff9
+ last_write_checksum: sha1:0dec883bb74722bfa3e1e025c1871b42468c9b73
pristine_git_object: ec412151b8bfd8df94c36dad4b3911072dbad1dc
src/Cvent/SDK/Models/Requests/ListAttendeesResponse.cs:
id: 11bc43f21fd6
@@ -16238,7 +16238,7 @@ trackedFiles:
pristine_git_object: 68169bee2adfbacd7d8e6796e9d1033b96c28d60
src/Cvent/SDK/Models/Requests/ListAudienceSegmentsPostFilterRequest.cs:
id: a8818f69db8c
- last_write_checksum: sha1:16c66e67957293ca4120d6923e00fd1fceec5656
+ last_write_checksum: sha1:93f7ab46553f6cedf327537f5b641ad5e314b26a
pristine_git_object: 2b03593ac08e8c74e7741ae126575f03fe7bab78
src/Cvent/SDK/Models/Requests/ListAudienceSegmentsPostFilterResponse.cs:
id: bad5976295ae
@@ -16246,7 +16246,7 @@ trackedFiles:
pristine_git_object: b0231ebb2940d12577d97f59c08b22f6af3bf4b4
src/Cvent/SDK/Models/Requests/ListAudienceSegmentsRequest.cs:
id: 8bfc008a3e89
- last_write_checksum: sha1:6d7968973ca5983411f60bb34b147cd5fd9431af
+ last_write_checksum: sha1:9dbc0304e803f975ad0d5cbb4ec1b1106b5d4a32
pristine_git_object: 22477a3de3345980264ef8c3c6a1cfbae61e9381
src/Cvent/SDK/Models/Requests/ListAudienceSegmentsResponse.cs:
id: 0dea602c5580
@@ -16294,7 +16294,7 @@ trackedFiles:
pristine_git_object: 47924ba89f2a9ff4f832e602161020bfdb2b2992
src/Cvent/SDK/Models/Requests/ListContactGroupsRequest.cs:
id: d81d14cfd58f
- last_write_checksum: sha1:dd4ba9bb803be16942e3cc30e043c39532f6d8cc
+ last_write_checksum: sha1:7ffe410f9286c1eebefaef720d6641e7de39223f
pristine_git_object: 15166940f1ee51a0fbc6b00a3b2065e914cfcfe5
src/Cvent/SDK/Models/Requests/ListContactGroupsResponse.cs:
id: 7d2dc9ba7485
@@ -16310,7 +16310,7 @@ trackedFiles:
pristine_git_object: 1174848d37ae7a4aef0b68b7ac0ba040976310f2
src/Cvent/SDK/Models/Requests/ListContactTypesRequest.cs:
id: 4a2fed16d2d7
- last_write_checksum: sha1:de7622223302a77e2aff01c1597939ed05a06888
+ last_write_checksum: sha1:f8b78bc28ab24337d1a6048c9d7cf082f034fd75
pristine_git_object: 8bd5f33b063646ae0535ffa5d9f7ef10598c9f54
src/Cvent/SDK/Models/Requests/ListContactTypesResponse.cs:
id: 0538d3dc200c
@@ -16326,7 +16326,7 @@ trackedFiles:
pristine_git_object: 20823d9167fea0456f281233d08441bc5e42faea
src/Cvent/SDK/Models/Requests/ListContactsRequest.cs:
id: 1a05e7942694
- last_write_checksum: sha1:6377647017c6a93a6da9d90e7720ca0710cc2b16
+ last_write_checksum: sha1:998db5102cbe02439d025c1e9986cb575bf8f629
pristine_git_object: 3244d0c1e56699226718f22f94361a12dd299098
src/Cvent/SDK/Models/Requests/ListContactsResponse.cs:
id: 8185fab3030e
@@ -16342,7 +16342,7 @@ trackedFiles:
pristine_git_object: 2b9a90ae5f5e98df87a1a03fd12d1df7ad3528f9
src/Cvent/SDK/Models/Requests/ListDiscountedAgendaItemsRequest.cs:
id: 2703db9843e3
- last_write_checksum: sha1:2b59fe73db37333678b237b10ca38bba963c41ed
+ last_write_checksum: sha1:0b6c3bf3eeb2f3c849058f2fa0eda1d40902577d
pristine_git_object: 9e23f7abeb92b6505479f61cd80efb7f452f6ce3
src/Cvent/SDK/Models/Requests/ListDiscountedAgendaItemsResponse.cs:
id: 609c56671c37
@@ -16358,7 +16358,7 @@ trackedFiles:
pristine_git_object: e43b6e51c263e5a6a15adb2479daf1e4979ebc22
src/Cvent/SDK/Models/Requests/ListDonationItemsRequest.cs:
id: 5110a39b511d
- last_write_checksum: sha1:1feefc1648624f06c4e089692580dfff3b54d9d1
+ last_write_checksum: sha1:e2a591f4e4614884936392b0befbab3b6914e573
pristine_git_object: a90991c803d8b4869eb9d974c33a9e4cede0fb8e
src/Cvent/SDK/Models/Requests/ListDonationItemsResponse.cs:
id: 7f39b8024639
@@ -16366,7 +16366,7 @@ trackedFiles:
pristine_git_object: 0f816e185c54053ec6ad54b21e40616679b823c7
src/Cvent/SDK/Models/Requests/ListDurationsRequest.cs:
id: 9e3b764ad998
- last_write_checksum: sha1:8eaf40209f0c84cab5c2efb08e079dd89691d232
+ last_write_checksum: sha1:feed7a01178483176fdf97f4c5825bb12d33c3aa
pristine_git_object: ed9eaef68cfeaf2d0cfb702a76d499c0a25ce781
src/Cvent/SDK/Models/Requests/ListDurationsResponse.cs:
id: 79b0c851bf03
@@ -16374,7 +16374,7 @@ trackedFiles:
pristine_git_object: 9bc812a9efcd03f2f4534ddb558b9975e85a5ff6
src/Cvent/SDK/Models/Requests/ListEventDiscountsRequest.cs:
id: 36edf818ce93
- last_write_checksum: sha1:81a66f88412377bf9c4ebc50644a63f0b1961155
+ last_write_checksum: sha1:fe01433ee1dc3359ae68b012ce6863f411a1d2fe
pristine_git_object: 3743349e71276c43ba7e2db4812662e58d4da40a
src/Cvent/SDK/Models/Requests/ListEventDiscountsResponse.cs:
id: 6068a4335374
@@ -16413,7 +16413,7 @@ trackedFiles:
src/Cvent/SDK/Models/Requests/ListEventVouchersPostFilterResponse.cs:
last_write_checksum: sha1:14e4df46d2912dfecbc29bbbdfffa794f5da91c9
src/Cvent/SDK/Models/Requests/ListEventVouchersRequest.cs:
- last_write_checksum: sha1:aa8b0d5989a550db6aee7a519be0ee6fb9365534
+ last_write_checksum: sha1:d1e9a8cb18bb1c12bdd0be1d58556dc0e9821bba
src/Cvent/SDK/Models/Requests/ListEventVouchersResponse.cs:
last_write_checksum: sha1:54b79c6e20d577d920d301b0cb764ad1bc94f666
src/Cvent/SDK/Models/Requests/ListEventWeblinksRequest.cs:
@@ -16466,7 +16466,7 @@ trackedFiles:
pristine_git_object: b02236407c53a836e0628f982e33900ab57c1c1c
src/Cvent/SDK/Models/Requests/ListExternalAttendeeActivitiesMetadataRequest.cs:
id: c1adcdc042b8
- last_write_checksum: sha1:02b76c67364dc1f0ef44c5645428731a8d40b32f
+ last_write_checksum: sha1:30b047e1e9ffd78644d6cf98c0e1f14f234e0f64
pristine_git_object: c81cf837693d56c6f0cfab5f9c4e98e7c63566c7
src/Cvent/SDK/Models/Requests/ListExternalAttendeeActivitiesMetadataResponse.cs:
id: 3d1d804f3534
@@ -16474,7 +16474,7 @@ trackedFiles:
pristine_git_object: 8fe80fb8c1eb3696636bbca8063c2f238ee5abc6
src/Cvent/SDK/Models/Requests/ListFeeItemsRequest.cs:
id: afb7126fc9f3
- last_write_checksum: sha1:3ea69c39889f00d97356c2b9aa7837e2a085ff18
+ last_write_checksum: sha1:fc3af90f8cb312f0c4ae1c6357b699596bc37d92
pristine_git_object: 445451595ad57a91a27d3185125bd7c268d9f6ce
src/Cvent/SDK/Models/Requests/ListFeeItemsResponse.cs:
id: 5b8e37d7c632
@@ -16482,7 +16482,7 @@ trackedFiles:
pristine_git_object: 65773410792cb1101810ae2c2906f501dfdb0ea7
src/Cvent/SDK/Models/Requests/ListHubsRequest.cs:
id: c4243383f060
- last_write_checksum: sha1:cb8156996b8afb877d43b3edd6252f2f2ba648be
+ last_write_checksum: sha1:d1515434e0fb03348c55830cee5bc5e7fd6febdf
pristine_git_object: b2a6e17f68aaa37c00fc39ff2604f72278e34463
src/Cvent/SDK/Models/Requests/ListHubsResponse.cs:
id: f72542116b45
@@ -16533,12 +16533,12 @@ trackedFiles:
src/Cvent/SDK/Models/Requests/ListMembershipItemsPostFilterResponse.cs:
last_write_checksum: sha1:00f3e28a2c7df0a80294e43d5cc28b84fcf9768b
src/Cvent/SDK/Models/Requests/ListMembershipItemsRequest.cs:
- last_write_checksum: sha1:733e9f3f55f2aa429198990b18fda1064d58810c
+ last_write_checksum: sha1:6df5b6f290224cc6034a866f9ea1f87d49819307
src/Cvent/SDK/Models/Requests/ListMembershipItemsResponse.cs:
last_write_checksum: sha1:3fdd04f1c3748bfed2f6ac047ba9d64b04a06b66
src/Cvent/SDK/Models/Requests/ListPlayersRequest.cs:
id: 726e4cba0ce6
- last_write_checksum: sha1:aed8ada53b20eea84384e6e2ed599fbf5545fc96
+ last_write_checksum: sha1:f0982b02863d34121c399472eb3f5bb9a9385a05
pristine_git_object: 8dddbbb21b0f528440f24aa834e1d1746dc75e2f
src/Cvent/SDK/Models/Requests/ListPlayersResponse.cs:
id: 16d66255fe60
@@ -16562,7 +16562,7 @@ trackedFiles:
pristine_git_object: b34b1e50480acfed0c807a37c8ae83f9181b3ea9
src/Cvent/SDK/Models/Requests/ListProgramItemsRequest.cs:
id: c387dc13f0cd
- last_write_checksum: sha1:b936d1f9f7d6f275cf2d241b04f3c93e0ca2f3c5
+ last_write_checksum: sha1:a4c44ca7d297f9904d8e0fb07c224fd4237b42b6
pristine_git_object: d04e6c596c7775ba72ca6c8b86f50d5cf39bab81
src/Cvent/SDK/Models/Requests/ListProgramItemsResponse.cs:
id: 95b392cd6326
@@ -16578,7 +16578,7 @@ trackedFiles:
pristine_git_object: 12a3de67b4d96b096c55f21d84ff7c58f5184c3d
src/Cvent/SDK/Models/Requests/ListQuantityItemsRequest.cs:
id: 430008e259b2
- last_write_checksum: sha1:af5542a6b2076500022e94e98f1d799e8efadaee
+ last_write_checksum: sha1:6992d14ee39beaa59ff274d1dbd7d78e416b8f80
pristine_git_object: 175f3b0c2448c5099acb7087fc13cfbcdddfef31
src/Cvent/SDK/Models/Requests/ListQuantityItemsResponse.cs:
id: bb5b05f95451
@@ -16650,7 +16650,7 @@ trackedFiles:
pristine_git_object: 91c717208e39941c311b3f23418aabc0b0141597
src/Cvent/SDK/Models/Requests/ListSegmentAssociatedAttendeesRequest.cs:
id: d3ebd8f77a80
- last_write_checksum: sha1:9613ba0134615fdf07227b63fd72db03d9df6dd2
+ last_write_checksum: sha1:4893fb88571d5e6cddea479608d060af9a549f58
pristine_git_object: feb050ebd6690c395af4ee217f07ea740cdcf01a
src/Cvent/SDK/Models/Requests/ListSegmentAssociatedAttendeesResponse.cs:
id: bd9affe20a2d
@@ -16658,7 +16658,7 @@ trackedFiles:
pristine_git_object: 645187142324754a4c2f0579ac0e60ef62cc5ae4
src/Cvent/SDK/Models/Requests/ListSessionDocsRequest.cs:
id: 432d412b4d46
- last_write_checksum: sha1:416147bf632f5182b72e2af25d55af80b9f3e5ee
+ last_write_checksum: sha1:aaccb2a1de29354c8091a703cfe4f56b6a49ee6d
pristine_git_object: 9681d6cb93ad2f0a6c111f0b88cf9daaf1146e34
src/Cvent/SDK/Models/Requests/ListSessionDocsResponse.cs:
id: c8b73b13b259
@@ -16690,7 +16690,7 @@ trackedFiles:
pristine_git_object: 5ffd679076b09f976b0684a071551f0070a0e516
src/Cvent/SDK/Models/Requests/ListSessionsCategoriesRequest.cs:
id: d817315a31e0
- last_write_checksum: sha1:7fde865278c2571103030e386285edc87cc1df67
+ last_write_checksum: sha1:038eb487463ab2348d67ab665d7caf35de519cfc
pristine_git_object: 97f186dbff7c0244e3adea7b006e18379f7f3b24
src/Cvent/SDK/Models/Requests/ListSessionsCategoriesResponse.cs:
id: 5e67bf241a5e
@@ -16722,7 +16722,7 @@ trackedFiles:
pristine_git_object: 06660bebcd4ec67648734f430559a26169d7e033
src/Cvent/SDK/Models/Requests/ListSessionsRequest.cs:
id: 3a2ea5f942fe
- last_write_checksum: sha1:a2a8634adacee09a5ec84d83282ae1ff835a1808
+ last_write_checksum: sha1:1a57f471f42118577e78990a6f9ab9609b8e1414
pristine_git_object: ee7480dae96debb6a929e0e00f5f7a8a68501ac4
src/Cvent/SDK/Models/Requests/ListSessionsResponse.cs:
id: 1164b2f8dff9
@@ -16785,7 +16785,7 @@ trackedFiles:
last_write_checksum: sha1:73bde4d1c748935b9a86c82578be81096bf38d73
pristine_git_object: a9044f14563c65b3733bfb15309882d901c41b29
src/Cvent/SDK/Models/Requests/ListTaxesRequest.cs:
- last_write_checksum: sha1:155b282d28aaf70ee8d3fb2d307761000dba9714
+ last_write_checksum: sha1:751ff0824b3a48892b69737b7facb0af8b8765f6
src/Cvent/SDK/Models/Requests/ListTaxesResponse.cs:
last_write_checksum: sha1:e76746c09298d97fd5c3d2b4438f09d6822803bf
src/Cvent/SDK/Models/Requests/ListTravelAccountsRequest.cs:
@@ -16862,7 +16862,7 @@ trackedFiles:
pristine_git_object: 8b395eece91eb2d2514e626a0b3e2034443290c1
src/Cvent/SDK/Models/Requests/ListVideosRequest.cs:
id: 7b956f5fafea
- last_write_checksum: sha1:f5af6a791fc4430339b1372dbb14e6576a332632
+ last_write_checksum: sha1:14bb6910db975177e4e155fc4e264f65d91db12b
pristine_git_object: 978f29c67f667e301a71cae08a42690fcfcae98d
src/Cvent/SDK/Models/Requests/ListVideosResponse.cs:
id: f51247d56e10
@@ -16870,7 +16870,7 @@ trackedFiles:
pristine_git_object: 2bc74540ba13b33b6eb84522da9ca9d88cb04b36
src/Cvent/SDK/Models/Requests/ListWebcastAttendeeLinksRequest.cs:
id: 13342a77b950
- last_write_checksum: sha1:1c777f85e494f54486f44596251228f257fef058
+ last_write_checksum: sha1:c9ea6a938b8f699465bc2dad8c89115d890edcf9
pristine_git_object: e02d79864f59cc9959eff5611037a1684b8cb17c
src/Cvent/SDK/Models/Requests/ListWebcastAttendeeLinksResponse.cs:
id: ee6734db223f
@@ -16878,7 +16878,7 @@ trackedFiles:
pristine_git_object: ded2dcab7a37d6c3df5f7c9606c645aa9c95d9c0
src/Cvent/SDK/Models/Requests/ListWebcastsRequest.cs:
id: 3373688e4141
- last_write_checksum: sha1:57dff2632a1f6837581ab32b6f9fbde6d5e2778f
+ last_write_checksum: sha1:2a6d50370641434fb0ba531f31b14ad6e15b3ad3
pristine_git_object: 00548cc75eb8c9bd9f83676cd4d85c16fba43f5f
src/Cvent/SDK/Models/Requests/ListWebcastsResponse.cs:
id: e8c26c67d6e1
@@ -17554,7 +17554,7 @@ trackedFiles:
last_write_checksum: sha1:a82d3b5c66346b08e9412b70e0c08ff88b6061ad
src/Cvent/SDK/SDKConfig.cs:
id: 7ad7086454a8
- last_write_checksum: sha1:42366007a8336632c790a24847989a1a9c5d4357
+ last_write_checksum: sha1:669d0c246ea078c0c4daaead7a34508b2c729e07
pristine_git_object: 796c23cd551fbe87f613d89d60ed25ac5fe0c54b
src/Cvent/SDK/Seating.cs:
id: 01c249fc2746
@@ -17610,7 +17610,7 @@ trackedFiles:
pristine_git_object: a75f770b33edd25c0fa4d4a77ab523da12d269ba
src/Cvent/SDK/Utils/Constants.cs:
id: 231d94d8a5dc
- last_write_checksum: sha1:df33405bd44b7b2aa92c05498e090e5fdc78f89f
+ last_write_checksum: sha1:49fe23e802ca4455ebe1ff3df6396c8ae6ea1d11
pristine_git_object: 0a54932893793a10e459afbc15920803cff3ed1e
src/Cvent/SDK/Utils/CventSDKHttpClient.cs:
id: 374fee4fdbaf
diff --git a/packages/csharp/.speakeasy/gen.yaml b/packages/csharp/.speakeasy/gen.yaml
index e4a9b5aa..07c54d7b 100644
--- a/packages/csharp/.speakeasy/gen.yaml
+++ b/packages/csharp/.speakeasy/gen.yaml
@@ -34,7 +34,7 @@ generation:
generateNewTests: true
skipResponseBodyAssertions: false
csharp:
- version: 1.5.0
+ version: 1.5.1
additionalDependencies: []
author: Cvent
baseErrorName: CventSDKException
diff --git a/packages/csharp/docs/Models/Components/AttendeeContactInfo.md b/packages/csharp/docs/Models/Components/AttendeeContactInfo.md
index 67123c43..6236e183 100644
--- a/packages/csharp/docs/Models/Components/AttendeeContactInfo.md
+++ b/packages/csharp/docs/Models/Components/AttendeeContactInfo.md
@@ -5,43 +5,43 @@ Information about attendee contact added to an event.
## Fields
-| Field | Type | Required | Description | Example |
-| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| ~~`Created`~~ | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
The ISO 8601 zoned date time when an attendee record was created. Note: This field is deprecated. Please use the [Get Contact](/documentation#tag/Contacts/operation/getContactById) or [List Contact](/documentation#tag/Contacts/operation/listContacts) endpoints for contact audit details. | 2017-01-02T02:00:00Z |
-| ~~`CreatedBy`~~ | *string* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
The identifier of the user that created this attendee record. Note: This field is deprecated. Please use the [Get Contact](/documentation#tag/Contacts/operation/getContactById) or [List Contact](/documentation#tag/Contacts/operation/listContacts) endpoints for contact audit details. | hporter |
-| ~~`LastModified`~~ | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
The ISO 8601 zoned date time when this attendee record was updated. Note: This field is deprecated. Please use the [Get Contact](/documentation#tag/Contacts/operation/getContactById) or [List Contact](/documentation#tag/Contacts/operation/listContacts) endpoints for contact audit details. | 2019-02-12T03:00:00Z |
-| ~~`LastModifiedBy`~~ | *string* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
The identifier of the user that last updated this attendee record. Note: This field is deprecated. Please use the [Get Contact](/documentation#tag/Contacts/operation/getContactById) or [List Contact](/documentation#tag/Contacts/operation/listContacts) endpoints for contact audit details. | hporter |
-| `Id` | *string* | :heavy_minus_sign: | The id of contact | |
-| `FirstName` | *string* | :heavy_minus_sign: | The first name of the contact | Henry |
-| `LastName` | *string* | :heavy_minus_sign: | The last name of the contact | Potterfield |
-| `MiddleName` | *string* | :heavy_minus_sign: | The middle name of the contact | A |
-| `Nickname` | *string* | :heavy_minus_sign: | The nickname of the contact. | Harry |
-| `Email` | *string* | :heavy_minus_sign: | The email address of the contact | h.potterfield@test.com |
-| `CcEmail` | *string* | :heavy_minus_sign: | An alternate email address of the contact that will be cc'd on all email communications | h.porter@tesing.com |
-| `Gender` | [Gender](../../Models/Components/Gender.md) | :heavy_minus_sign: | The gender of the contact. | Male |
-| `Company` | *string* | :heavy_minus_sign: | The company/organization the contact belongs to. | Cvent Inc. |
-| `Designation` | *string* | :heavy_minus_sign: | The designation of the contact | Event |
-| `Title` | *string* | :heavy_minus_sign: | The job title of the contact | Event Planner |
-| `Type` | [AttendeeContactType](../../Models/Components/AttendeeContactType.md) | :heavy_minus_sign: | Contains details related to the attendee's contact type. | |
-| ~~`Membership`~~ | [AttendeeContactMembership](../../Models/Components/AttendeeContactMembership.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
Attendee's contact membership information. Note: This field is deprecated. Previous documentation incorrectly listed support for this feature. | |
-| `PrimaryAddressType` | [AddressType](../../Models/Components/AddressType.md) | :heavy_minus_sign: | The type of address. | Home |
-| `HomeAddress` | [Address3](../../Models/Components/Address3.md) | :heavy_minus_sign: | Address details | |
-| `HomePhone` | *string* | :heavy_minus_sign: | Home phone number | 555-555-5555 |
-| `HomeFax` | *string* | :heavy_minus_sign: | Home FAX number | 555-555-5555 |
-| `WorkAddress` | [Address3](../../Models/Components/Address3.md) | :heavy_minus_sign: | Address details | |
-| `WorkPhone` | *string* | :heavy_minus_sign: | Work phone number | 555-555-5555 |
-| `WorkFax` | *string* | :heavy_minus_sign: | Work FAX number | 555-555-5555 |
-| `OptOut` | [OptOut](../../Models/Components/OptOut.md) | :heavy_minus_sign: | Opt-out choices. | |
-| `CustomFields` | List<[CustomFieldSchema](../../Models/Components/CustomFieldSchema.md)> | :heavy_minus_sign: | Collection of custom fields. | |
-| `SourceId` | *string* | :heavy_minus_sign: | This is a ID for the contact in an external system. NOTE: This value is expected to be unique for each contact within an account. Consider adding the external system name has part of the ID | system-a-00000000-0000-0000-0000-000000000000 |
-| `MobilePhone` | *string* | :heavy_minus_sign: | Mobile phone number | 555-555-5555 |
-| `Compliance` | List<[Models.Components.Compliance](../../Models/Components/Compliance.md)> | :heavy_minus_sign: | Detail related to compliance with the contact's privacy rights under various legislation. | |
-| `Prefix` | *string* | :heavy_minus_sign: | Used to denote what is traditionally a title of an individual. For example, Mr., Mrs., Dr., etc. | Dr. |
-| `Pager` | *string* | :heavy_minus_sign: | The pager number of the contact. | 555-555-5555 |
-| `Deleted` | *bool* | :heavy_minus_sign: | True indicates a contact is deleted. | false |
-| `Headline` | *string* | :heavy_minus_sign: | The headline of the contact's profile, which summarizes their professional experience and qualities. | Marketing Director Crafting Memorable Campaigns that Engage Audiences and Elevate Brands |
-| `PersonalWebsite` | *string* | :heavy_minus_sign: | A contact's personal website URL. | https://www.example.com |
-| `Biography` | *string* | :heavy_minus_sign: | A contact's biographical writeup. | I am a marketing professional with experience in event planning and brand strategy. |
-| ~~`Pronoun`~~ | *string* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
Represents the preferred pronoun of a contact. Deprecated. Use `pronouns` instead. | he/him/she/her/they/them |
-| `Pronouns` | *string* | :heavy_minus_sign: | Represents the preferred pronouns of a contact. | he/him/she/her/they/them |
-| `Links` | [ContactLinks](../../Models/Components/ContactLinks.md) | :heavy_minus_sign: | Collection of social media links for the contact. | |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| ~~`Created`~~ | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
The ISO 8601 zoned date time when an attendee record was created. Note: This field is deprecated. Please use the [Get Contact](https://developers.cvent.com/documentation#tag/Contacts/operation/getContactById) or [List Contact](https://developers.cvent.com/documentation#tag/Contacts/operation/listContacts) endpoints for contact audit details. | 2017-01-02T02:00:00Z |
+| ~~`CreatedBy`~~ | *string* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
The identifier of the user that created this attendee record. Note: This field is deprecated. Please use the [Get Contact](https://developers.cvent.com/documentation#tag/Contacts/operation/getContactById) or [List Contact](https://developers.cvent.com/documentation#tag/Contacts/operation/listContacts) endpoints for contact audit details. | hporter |
+| ~~`LastModified`~~ | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
The ISO 8601 zoned date time when this attendee record was updated. Note: This field is deprecated. Please use the [Get Contact](https://developers.cvent.com/documentation#tag/Contacts/operation/getContactById) or [List Contact](https://developers.cvent.com/documentation#tag/Contacts/operation/listContacts) endpoints for contact audit details. | 2019-02-12T03:00:00Z |
+| ~~`LastModifiedBy`~~ | *string* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
The identifier of the user that last updated this attendee record. Note: This field is deprecated. Please use the [Get Contact](https://developers.cvent.com/documentation#tag/Contacts/operation/getContactById) or [List Contact](https://developers.cvent.com/documentation#tag/Contacts/operation/listContacts) endpoints for contact audit details. | hporter |
+| `Id` | *string* | :heavy_minus_sign: | The id of contact | |
+| `FirstName` | *string* | :heavy_minus_sign: | The first name of the contact | Henry |
+| `LastName` | *string* | :heavy_minus_sign: | The last name of the contact | Potterfield |
+| `MiddleName` | *string* | :heavy_minus_sign: | The middle name of the contact | A |
+| `Nickname` | *string* | :heavy_minus_sign: | The nickname of the contact. | Harry |
+| `Email` | *string* | :heavy_minus_sign: | The email address of the contact | h.potterfield@test.com |
+| `CcEmail` | *string* | :heavy_minus_sign: | An alternate email address of the contact that will be cc'd on all email communications | h.porter@tesing.com |
+| `Gender` | [Gender](../../Models/Components/Gender.md) | :heavy_minus_sign: | The gender of the contact. | Male |
+| `Company` | *string* | :heavy_minus_sign: | The company/organization the contact belongs to. | Cvent Inc. |
+| `Designation` | *string* | :heavy_minus_sign: | The designation of the contact | Event |
+| `Title` | *string* | :heavy_minus_sign: | The job title of the contact | Event Planner |
+| `Type` | [AttendeeContactType](../../Models/Components/AttendeeContactType.md) | :heavy_minus_sign: | Contains details related to the attendee's contact type. | |
+| ~~`Membership`~~ | [AttendeeContactMembership](../../Models/Components/AttendeeContactMembership.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
Attendee's contact membership information. Note: This field is deprecated. Previous documentation incorrectly listed support for this feature. | |
+| `PrimaryAddressType` | [AddressType](../../Models/Components/AddressType.md) | :heavy_minus_sign: | The type of address. | Home |
+| `HomeAddress` | [Address3](../../Models/Components/Address3.md) | :heavy_minus_sign: | Address details | |
+| `HomePhone` | *string* | :heavy_minus_sign: | Home phone number | 555-555-5555 |
+| `HomeFax` | *string* | :heavy_minus_sign: | Home FAX number | 555-555-5555 |
+| `WorkAddress` | [Address3](../../Models/Components/Address3.md) | :heavy_minus_sign: | Address details | |
+| `WorkPhone` | *string* | :heavy_minus_sign: | Work phone number | 555-555-5555 |
+| `WorkFax` | *string* | :heavy_minus_sign: | Work FAX number | 555-555-5555 |
+| `OptOut` | [OptOut](../../Models/Components/OptOut.md) | :heavy_minus_sign: | Opt-out choices. | |
+| `CustomFields` | List<[CustomFieldSchema](../../Models/Components/CustomFieldSchema.md)> | :heavy_minus_sign: | Collection of custom fields. | |
+| `SourceId` | *string* | :heavy_minus_sign: | This is a ID for the contact in an external system. NOTE: This value is expected to be unique for each contact within an account. Consider adding the external system name has part of the ID | system-a-00000000-0000-0000-0000-000000000000 |
+| `MobilePhone` | *string* | :heavy_minus_sign: | Mobile phone number | 555-555-5555 |
+| `Compliance` | List<[Models.Components.Compliance](../../Models/Components/Compliance.md)> | :heavy_minus_sign: | Detail related to compliance with the contact's privacy rights under various legislation. | |
+| `Prefix` | *string* | :heavy_minus_sign: | Used to denote what is traditionally a title of an individual. For example, Mr., Mrs., Dr., etc. | Dr. |
+| `Pager` | *string* | :heavy_minus_sign: | The pager number of the contact. | 555-555-5555 |
+| `Deleted` | *bool* | :heavy_minus_sign: | True indicates a contact is deleted. | false |
+| `Headline` | *string* | :heavy_minus_sign: | The headline of the contact's profile, which summarizes their professional experience and qualities. | Marketing Director Crafting Memorable Campaigns that Engage Audiences and Elevate Brands |
+| `PersonalWebsite` | *string* | :heavy_minus_sign: | A contact's personal website URL. | https://www.example.com |
+| `Biography` | *string* | :heavy_minus_sign: | A contact's biographical writeup. | I am a marketing professional with experience in event planning and brand strategy. |
+| ~~`Pronoun`~~ | *string* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
Represents the preferred pronoun of a contact. Deprecated. Use `pronouns` instead. | he/him/she/her/they/them |
+| `Pronouns` | *string* | :heavy_minus_sign: | Represents the preferred pronouns of a contact. | he/him/she/her/they/them |
+| `Links` | [ContactLinks](../../Models/Components/ContactLinks.md) | :heavy_minus_sign: | Collection of social media links for the contact. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Event1.md b/packages/csharp/docs/Models/Components/Event1.md
index 0e64f229..0ae7790a 100644
--- a/packages/csharp/docs/Models/Components/Event1.md
+++ b/packages/csharp/docs/Models/Components/Event1.md
@@ -18,7 +18,7 @@ Represents an event.
| `CloseAfter` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The event will be closed for registration after this ISO 8601 formatted date and time. | 2020-02-01T23:59:00.000Z |
| `ArchiveAfter` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The event will be archived after this ISO 8601 formatted date and time. | 2020-05-07T12:00:00.000Z |
| `LaunchAfter` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The event will launch after this ISO 8601 formatted date and time. If the event has not yet launched, this field shows a date of 1/1/1900. | 2020-01-07T12:00:00.000Z |
-| `Timezone` | *string* | :heavy_check_mark: | List of supported [timezones](/docs/rest-api/reference/api-standards#time-zones). | America/New_York |
+| `Timezone` | *string* | :heavy_check_mark: | List of supported [timezones](https://developers.cvent.com/docs/rest-api/reference/api-standards#time-zones). | America/New_York |
| `Venues` | List<[VenueJson](../../Models/Components/VenueJson.md)> | :heavy_minus_sign: | Collection of venues. | |
| `ShowVenueLocation` | *bool* | :heavy_minus_sign: | True indicates the venue location is visible to guests for essential events. If used with other event types, the request returns a 400 error. | |
| `ShowPointOfContact` | *bool* | :heavy_minus_sign: | True indicates the venue location is visible to guests for essential events. If used with other event types, the request returns a 400 error. | |
diff --git a/packages/csharp/docs/Models/Components/EventInput.md b/packages/csharp/docs/Models/Components/EventInput.md
index 559980b2..21010ae2 100644
--- a/packages/csharp/docs/Models/Components/EventInput.md
+++ b/packages/csharp/docs/Models/Components/EventInput.md
@@ -12,7 +12,7 @@ Represents an event.
| `Description` | *string* | :heavy_minus_sign: | Detailed description of the event. | Cvent annual user conference. |
| `Start` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 formatted date and time when the event starts. | 2020-02-03T13:00:00.000Z |
| `End` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 formatted date and time when the event ends. | 2020-02-07T17:00:00.000Z |
-| `Timezone` | *string* | :heavy_check_mark: | List of supported [timezones](/docs/rest-api/reference/api-standards#time-zones). | America/New_York |
+| `Timezone` | *string* | :heavy_check_mark: | List of supported [timezones](https://developers.cvent.com/docs/rest-api/reference/api-standards#time-zones). | America/New_York |
| `Venues` | List<[VenueJsonInput](../../Models/Components/VenueJsonInput.md)> | :heavy_minus_sign: | Collection of venues. | |
| `ShowVenueLocation` | *bool* | :heavy_minus_sign: | True indicates the venue location is visible to guests for essential events. If used with other event types, the request returns a 400 error. | |
| `ShowPointOfContact` | *bool* | :heavy_minus_sign: | True indicates the venue location is visible to guests for essential events. If used with other event types, the request returns a 400 error. | |
diff --git a/packages/csharp/docs/Models/Components/EventUpdate.md b/packages/csharp/docs/Models/Components/EventUpdate.md
index c3581375..334974cc 100644
--- a/packages/csharp/docs/Models/Components/EventUpdate.md
+++ b/packages/csharp/docs/Models/Components/EventUpdate.md
@@ -18,7 +18,7 @@ Represents updates to an event.
| `CloseAfter` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The event will be closed for registration after this ISO 8601 formatted date and time. | 2020-02-01T23:59:00.000Z |
| `ArchiveAfter` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The event will be archived after this ISO 8601 formatted date and time. | 2020-05-07T12:00:00.000Z |
| `LaunchAfter` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The event will launch after this ISO 8601 formatted date and time. If the event has not yet launched, this field shows a date of 1/1/1900. | 2020-01-07T12:00:00.000Z |
-| `Timezone` | *string* | :heavy_check_mark: | List of supported [timezones](/docs/rest-api/reference/api-standards#time-zones). | America/New_York |
+| `Timezone` | *string* | :heavy_check_mark: | List of supported [timezones](https://developers.cvent.com/docs/rest-api/reference/api-standards#time-zones). | America/New_York |
| `Venues` | List<[VenueJson](../../Models/Components/VenueJson.md)> | :heavy_minus_sign: | Collection of venues. | |
| `ShowVenueLocation` | *bool* | :heavy_minus_sign: | True indicates the venue location is visible to guests for essential events. If used with other event types, the request returns a 400 error. | |
| `ShowPointOfContact` | *bool* | :heavy_minus_sign: | True indicates the venue location is visible to guests for essential events. If used with other event types, the request returns a 400 error. | |
diff --git a/packages/csharp/docs/Models/Components/EventUpdateInput.md b/packages/csharp/docs/Models/Components/EventUpdateInput.md
index 2059ed57..7cf792b4 100644
--- a/packages/csharp/docs/Models/Components/EventUpdateInput.md
+++ b/packages/csharp/docs/Models/Components/EventUpdateInput.md
@@ -14,7 +14,7 @@ Represents updates to an event.
| `End` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 formatted date and time when the event ends. | 2020-02-07T17:00:00.000Z |
| `CloseAfter` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The event will be closed for registration after this ISO 8601 formatted date and time. | 2020-02-01T23:59:00.000Z |
| `ArchiveAfter` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The event will be archived after this ISO 8601 formatted date and time. | 2020-05-07T12:00:00.000Z |
-| `Timezone` | *string* | :heavy_check_mark: | List of supported [timezones](/docs/rest-api/reference/api-standards#time-zones). | America/New_York |
+| `Timezone` | *string* | :heavy_check_mark: | List of supported [timezones](https://developers.cvent.com/docs/rest-api/reference/api-standards#time-zones). | America/New_York |
| `Venues` | List<[VenueJsonInput](../../Models/Components/VenueJsonInput.md)> | :heavy_minus_sign: | Collection of venues. | |
| `ShowVenueLocation` | *bool* | :heavy_minus_sign: | True indicates the venue location is visible to guests for essential events. If used with other event types, the request returns a 400 error. | |
| `ShowPointOfContact` | *bool* | :heavy_minus_sign: | True indicates the venue location is visible to guests for essential events. If used with other event types, the request returns a 400 error. | |
diff --git a/packages/csharp/docs/Models/Requests/GetAccountBudgetItemsRequest.md b/packages/csharp/docs/Models/Requests/GetAccountBudgetItemsRequest.md
index 0c26f109..ca92ad55 100644
--- a/packages/csharp/docs/Models/Requests/GetAccountBudgetItemsRequest.md
+++ b/packages/csharp/docs/Models/Requests/GetAccountBudgetItemsRequest.md
@@ -3,10 +3,10 @@
## Fields
-| Field | Type | Required | Description | Example |
-| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_check_mark: | Used to query records that have been modified after this time point. | 2017-01-02T02:00:00Z |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_check_mark: | Used to query records that have been modified before this point | 2017-01-02T02:00:00Z |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|:-----------------\|:-----------\|
\| event.id \| `eq`, `ne` \|
\| rfp.id \| `eq`, `ne` \|
\| budgetVersion.id \| `eq`, `ne` \|
\| id \| `eq`, `ne` \|
\| category.id \| `eq`, `ne` \|
\| category.name \| `eq`, `ne` \|
\| subCategory.id \| `eq`, `ne` \|
\| subCategory.name \| `eq`, `ne` \|
The following logical operators are supported for combining filters:
* and
* or
| event.id eq 'e7120b27-ca4c-46c1-b5de-cbe5ea0e26d5' and budgetVersion.id ne 'e7120b27-ca4c-46c1-b5de-cbe5ea0e26d5' |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_check_mark: | Used to query records that have been modified after this time point. | 2017-01-02T02:00:00Z |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_check_mark: | Used to query records that have been modified before this point | 2017-01-02T02:00:00Z |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|:-----------------\|:-----------\|
\| event.id \| `eq`, `ne` \|
\| rfp.id \| `eq`, `ne` \|
\| budgetVersion.id \| `eq`, `ne` \|
\| id \| `eq`, `ne` \|
\| category.id \| `eq`, `ne` \|
\| category.name \| `eq`, `ne` \|
\| subCategory.id \| `eq`, `ne` \|
\| subCategory.name \| `eq`, `ne` \|
The following logical operators are supported for combining filters:
* and
* or
| event.id eq 'e7120b27-ca4c-46c1-b5de-cbe5ea0e26d5' and budgetVersion.id ne 'e7120b27-ca4c-46c1-b5de-cbe5ea0e26d5' |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/GetAccountVendorsRequest.md b/packages/csharp/docs/Models/Requests/GetAccountVendorsRequest.md
index 8b533655..f4990187 100644
--- a/packages/csharp/docs/Models/Requests/GetAccountVendorsRequest.md
+++ b/packages/csharp/docs/Models/Requests/GetAccountVendorsRequest.md
@@ -3,10 +3,10 @@
## Fields
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|:--------------\|:-----------------------------------\|
\| id \| `eq`, `ne` \|
\| lastModified \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| active \| `eq`, `ne` \|
The following logical operators are supported for combining filters:
* and
* or
| active eq true and id eq '5b5a6e5c-1234-4af5-9d1f-9bcb9e7c1234' and lastModified ge '2025-01-01T00:00:00Z' |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|:--------------\|:-----------------------------------\|
\| id \| `eq`, `ne` \|
\| lastModified \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| active \| `eq`, `ne` \|
The following logical operators are supported for combining filters:
* and
* or
| active eq true and id eq '5b5a6e5c-1234-4af5-9d1f-9bcb9e7c1234' and lastModified ge '2025-01-01T00:00:00Z' |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/GetAirActualDetailRequest.md b/packages/csharp/docs/Models/Requests/GetAirActualDetailRequest.md
index cc5c8d6d..3a928d12 100644
--- a/packages/csharp/docs/Models/Requests/GetAirActualDetailRequest.md
+++ b/packages/csharp/docs/Models/Requests/GetAirActualDetailRequest.md
@@ -3,13 +3,13 @@
## Fields
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Expand` | List<[ExpandAirActualQuestionAnswer](../../Models/Components/ExpandAirActualQuestionAnswer.md)> | :heavy_minus_sign: | A list of fields to be expanded, returning additional information alongside the specified fields. The expanded entity is retrieved and displayed inline for each specified expansion field. The respective scopes for each expansion are required.
The following fields are expandable:
* airActualDetails.airActualAnswers.question (List Event Questions)
| airActualDetails.airActualAnswers.question |
-| `Sort` | *string* | :heavy_minus_sign: | The sort order passed as a parameter, used to control the order of the
search results as a priority ordered list of sorts
There are two orders:
* ascending: ASC
* descending: DESC
The following fields are sortable:
* airActualDetails.name
* airActualDetails.lastModified
where i <= limit
| airActualDetails.name:DESC,airActualDetails.lastModified:ASC |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Notes \|
\|------------------\|-------------------------------------\|------------------------------------------------\|
\| attendee.id \| `eq`, `ne` \| Limit: 17 fields can be passed in a filter \|
The following logical operators are supported for combining filters:
* or
| (attendee.id eq '76f2b9e2-fcce-4d93-be29-a008b76a050c') OR (attendee.id eq '16322408-bae8-4b29-a559-702d2023e13a') |
-| `Id` | *string* | :heavy_check_mark: | ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Expand` | List<[ExpandAirActualQuestionAnswer](../../Models/Components/ExpandAirActualQuestionAnswer.md)> | :heavy_minus_sign: | A list of fields to be expanded, returning additional information alongside the specified fields. The expanded entity is retrieved and displayed inline for each specified expansion field. The respective scopes for each expansion are required.
The following fields are expandable:
* airActualDetails.airActualAnswers.question (List Event Questions)
| airActualDetails.airActualAnswers.question |
+| `Sort` | *string* | :heavy_minus_sign: | The sort order passed as a parameter, used to control the order of the
search results as a priority ordered list of sorts
There are two orders:
* ascending: ASC
* descending: DESC
The following fields are sortable:
* airActualDetails.name
* airActualDetails.lastModified
where i <= limit
| airActualDetails.name:DESC,airActualDetails.lastModified:ASC |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Notes \|
\|------------------\|-------------------------------------\|------------------------------------------------\|
\| attendee.id \| `eq`, `ne` \| Limit: 17 fields can be passed in a filter \|
The following logical operators are supported for combining filters:
* or
| (attendee.id eq '76f2b9e2-fcce-4d93-be29-a008b76a050c') OR (attendee.id eq '16322408-bae8-4b29-a559-702d2023e13a') |
+| `Id` | *string* | :heavy_check_mark: | ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/GetAirRequestsRequest.md b/packages/csharp/docs/Models/Requests/GetAirRequestsRequest.md
index eea92af4..9986e4bd 100644
--- a/packages/csharp/docs/Models/Requests/GetAirRequestsRequest.md
+++ b/packages/csharp/docs/Models/Requests/GetAirRequestsRequest.md
@@ -3,13 +3,13 @@
## Fields
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Sort` | *string* | :heavy_minus_sign: | The sort order passed as a parameter, used to control the order of the
search results as a priority ordered list of sorts
There are two orders:
* ascending: ASC
* descending: DESC
The following fields are sortable:
* airRequestDetails.requesterFirstName
* airRequestDetails.requesterLastName
* airRequestDetails.lastModified
| airRequestDetails.requesterFirstName:DESC,airRequestDetails.requesterLastName:ASC |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Notes \|
\|------------------\|-------------------------------------\|------------------------------------------------\|
\| attendee.id \| `eq`, `ne` \| Limit: 17 fields can be passed in a filter \|
The following logical operators are supported for combining filters:
* or
| (attendee.id eq '76f2b9e2-fcce-4d93-be29-a008b76a050c') OR (attendee.id eq '16322408-bae8-4b29-a559-702d2023e13a') |
-| `Expand` | List<[ExpandAirRequestQuestionAnswer](../../Models/Components/ExpandAirRequestQuestionAnswer.md)> | :heavy_minus_sign: | A list of fields to be expanded, returning additional information alongside the specified fields. The expanded entity is retrieved and displayed inline for each specified expansion field. The respective scopes for each expansion are required.
The following fields are expandable:
* airRequestDetails.airRequestAnswers.question (List Event Questions)
| airRequestDetails.airRequestAnswers.question |
-| `Id` | *string* | :heavy_check_mark: | ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Sort` | *string* | :heavy_minus_sign: | The sort order passed as a parameter, used to control the order of the
search results as a priority ordered list of sorts
There are two orders:
* ascending: ASC
* descending: DESC
The following fields are sortable:
* airRequestDetails.requesterFirstName
* airRequestDetails.requesterLastName
* airRequestDetails.lastModified
| airRequestDetails.requesterFirstName:DESC,airRequestDetails.requesterLastName:ASC |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Notes \|
\|------------------\|-------------------------------------\|------------------------------------------------\|
\| attendee.id \| `eq`, `ne` \| Limit: 17 fields can be passed in a filter \|
The following logical operators are supported for combining filters:
* or
| (attendee.id eq '76f2b9e2-fcce-4d93-be29-a008b76a050c') OR (attendee.id eq '16322408-bae8-4b29-a559-702d2023e13a') |
+| `Expand` | List<[ExpandAirRequestQuestionAnswer](../../Models/Components/ExpandAirRequestQuestionAnswer.md)> | :heavy_minus_sign: | A list of fields to be expanded, returning additional information alongside the specified fields. The expanded entity is retrieved and displayed inline for each specified expansion field. The respective scopes for each expansion are required.
The following fields are expandable:
* airRequestDetails.airRequestAnswers.question (List Event Questions)
| airRequestDetails.airRequestAnswers.question |
+| `Id` | *string* | :heavy_check_mark: | ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/GetAllEventSurveyResponsesRequest.md b/packages/csharp/docs/Models/Requests/GetAllEventSurveyResponsesRequest.md
index 36ee20c6..9fa40a6c 100644
--- a/packages/csharp/docs/Models/Requests/GetAllEventSurveyResponsesRequest.md
+++ b/packages/csharp/docs/Models/Requests/GetAllEventSurveyResponsesRequest.md
@@ -3,10 +3,10 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|---------------\|-------------\|
\| id \| `eq`, `ne` \|
\| respondent.id \| `eq`, `ne` \|
\| session.id \| `eq`, `ne` \|
\| speaker.id \| `eq`, `ne` \|
\| question.id \| `eq`, `ne` \|
\| event.id \| `eq`, `ne` \|
| id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|---------------\|-------------\|
\| id \| `eq`, `ne` \|
\| respondent.id \| `eq`, `ne` \|
\| session.id \| `eq`, `ne` \|
\| speaker.id \| `eq`, `ne` \|
\| question.id \| `eq`, `ne` \|
\| event.id \| `eq`, `ne` \|
| id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/GetAlternateTravelAnswersRequest.md b/packages/csharp/docs/Models/Requests/GetAlternateTravelAnswersRequest.md
index 5af1b961..2f3615d8 100644
--- a/packages/csharp/docs/Models/Requests/GetAlternateTravelAnswersRequest.md
+++ b/packages/csharp/docs/Models/Requests/GetAlternateTravelAnswersRequest.md
@@ -3,11 +3,11 @@
## Fields
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Notes \|
\|------------------\|-------------------------------------\|------------------------------------------------\|
\| attendee.id \| `eq`, `ne` \| Limit: 17 fields can be passed in a filter \|
The following logical operators are supported for combining filters:
* or
| (attendee.id eq '76f2b9e2-fcce-4d93-be29-a008b76a050c') OR (attendee.id eq '16322408-bae8-4b29-a559-702d2023e13a') |
-| `Id` | *string* | :heavy_check_mark: | ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Notes \|
\|------------------\|-------------------------------------\|------------------------------------------------\|
\| attendee.id \| `eq`, `ne` \| Limit: 17 fields can be passed in a filter \|
The following logical operators are supported for combining filters:
* or
| (attendee.id eq '76f2b9e2-fcce-4d93-be29-a008b76a050c') OR (attendee.id eq '16322408-bae8-4b29-a559-702d2023e13a') |
+| `Id` | *string* | :heavy_check_mark: | ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/GetBudgetAllocationsRequest.md b/packages/csharp/docs/Models/Requests/GetBudgetAllocationsRequest.md
index e7a37994..bcb54d32 100644
--- a/packages/csharp/docs/Models/Requests/GetBudgetAllocationsRequest.md
+++ b/packages/csharp/docs/Models/Requests/GetBudgetAllocationsRequest.md
@@ -3,11 +3,11 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|:-----------------\|:-----------------------------\|
\| budgetVersion.id \| `eq` \|
\| budgetItem.id \| `eq` \|
\| category.id \| `eq`, `ne` \|
\| subcategory.id \| `eq`, `ne` \|
\| generalLedger.id \| `eq`, `ne` \|
\| value \| `lt`, `le`, `gt`, `ge`, `eq` \|
The following logical operators are supported for combining filters:
* and
* or
| category.id eq 'e9ee2669-65db-46f8-872c-dbafbf9b0e92' or value lt 1000 |
-| `Id` | *string* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|:-----------------\|:-----------------------------\|
\| budgetVersion.id \| `eq` \|
\| budgetItem.id \| `eq` \|
\| category.id \| `eq`, `ne` \|
\| subcategory.id \| `eq`, `ne` \|
\| generalLedger.id \| `eq`, `ne` \|
\| value \| `lt`, `le`, `gt`, `ge`, `eq` \|
The following logical operators are supported for combining filters:
* and
* or
| category.id eq 'e9ee2669-65db-46f8-872c-dbafbf9b0e92' or value lt 1000 |
+| `Id` | *string* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/GetBudgetItemsRequest.md b/packages/csharp/docs/Models/Requests/GetBudgetItemsRequest.md
index ae165e38..1f8a6b12 100644
--- a/packages/csharp/docs/Models/Requests/GetBudgetItemsRequest.md
+++ b/packages/csharp/docs/Models/Requests/GetBudgetItemsRequest.md
@@ -3,11 +3,11 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
-| `Id` | *string* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Notes \|
\|:--------------------\|:-----------------------------------\|:----------------------------------------------------------------------------------------------------------------------------------------------\|
\| id \| `eq` \| \|
\| costType \| `eq`, `ne` \| \|
\| category.id \| `eq`, `ne` \| \|
\| category.name \| `eq`, `ne` \| \|
\| subCategory.id \| `eq`, `ne` \| \|
\| subCategory.name \| `eq`, `ne` \| \|
\| status \| `eq`, `ne` \| \|
\| vendor.id \| `eq`, `ne` \| \|
\| vendor.name \| `eq`, `ne` \| \|
\| date \| `gt`, `ge`, `lt`, `le` \| \|
\| customFields.{uuid} \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \| \|
\| deleted \| `eq`, `ne` \| Budget items that are deleted are available for 3 months after deletion. After this, they are removed and no longer appear in search results. \|
The following logical operators are supported for combining filters:
* and
* or
| category.name eq 'Accommodation' and status ne 'Estimated' |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Id` | *string* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Notes \|
\|:--------------------\|:-----------------------------------\|:----------------------------------------------------------------------------------------------------------------------------------------------\|
\| id \| `eq` \| \|
\| costType \| `eq`, `ne` \| \|
\| category.id \| `eq`, `ne` \| \|
\| category.name \| `eq`, `ne` \| \|
\| subCategory.id \| `eq`, `ne` \| \|
\| subCategory.name \| `eq`, `ne` \| \|
\| status \| `eq`, `ne` \| \|
\| vendor.id \| `eq`, `ne` \| \|
\| vendor.name \| `eq`, `ne` \| \|
\| date \| `gt`, `ge`, `lt`, `le` \| \|
\| customFields.{uuid} \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \| \|
\| deleted \| `eq`, `ne` \| Budget items that are deleted are available for 3 months after deletion. After this, they are removed and no longer appear in search results. \|
The following logical operators are supported for combining filters:
* and
* or
| category.name eq 'Accommodation' and status ne 'Estimated' |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/GetCardTransactionsRequest.md b/packages/csharp/docs/Models/Requests/GetCardTransactionsRequest.md
index 71f2ee5f..e7a697a2 100644
--- a/packages/csharp/docs/Models/Requests/GetCardTransactionsRequest.md
+++ b/packages/csharp/docs/Models/Requests/GetCardTransactionsRequest.md
@@ -3,10 +3,10 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|:-------------------------------\|:-----------------------\|
\| event.id \| `eq` \|
\| type \| `eq`, `ne` \|
\| status \| `eq`, `ne` \|
\| fromDate \| `gt`, `ge` \|
\| toDate \| `lt`, `le` \|
\| reconciliations.reconciledDate \| `lt`, `le`, `gt`, `ge` \|
The following logical operators are supported for combining filters:
* and
* or
| event.id eq 'E05029A8-39F5-49DF-8450-2EB41B302421' and type ne 'Virtual' and status eq 'Active' or status eq 'Inactive' |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|:-------------------------------\|:-----------------------\|
\| event.id \| `eq` \|
\| type \| `eq`, `ne` \|
\| status \| `eq`, `ne` \|
\| fromDate \| `gt`, `ge` \|
\| toDate \| `lt`, `le` \|
\| reconciliations.reconciledDate \| `lt`, `le`, `gt`, `ge` \|
The following logical operators are supported for combining filters:
* and
* or
| event.id eq 'E05029A8-39F5-49DF-8450-2EB41B302421' and type ne 'Virtual' and status eq 'Active' or status eq 'Inactive' |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/GetCardsRequest.md b/packages/csharp/docs/Models/Requests/GetCardsRequest.md
index 7f2337c6..9dc82767 100644
--- a/packages/csharp/docs/Models/Requests/GetCardsRequest.md
+++ b/packages/csharp/docs/Models/Requests/GetCardsRequest.md
@@ -3,8 +3,8 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|:---------\|:----------\|
\| event.id \| `eq` \|
| event.id eq 'E05029A8-39F5-49DF-8450-2EB41B302421' |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|:---------\|:----------\|
\| event.id \| `eq` \|
| event.id eq 'E05029A8-39F5-49DF-8450-2EB41B302421' |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/GetCurrencyConversionRateRequest.md b/packages/csharp/docs/Models/Requests/GetCurrencyConversionRateRequest.md
index 8e0168fc..f84bc93d 100644
--- a/packages/csharp/docs/Models/Requests/GetCurrencyConversionRateRequest.md
+++ b/packages/csharp/docs/Models/Requests/GetCurrencyConversionRateRequest.md
@@ -3,11 +3,11 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Currency` | *string* | :heavy_check_mark: | The ISO 4217 standard format currency code. | USD |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|:----------\|:-----------------------------\|
\| id \| `eq` \|
\| startDate \| `gt`, `ge`, `lt`, `le`, `eq` \|
\| endDate \| `gt`, `ge`, `lt`, `le`, `eq` \|
The following logical operators are supported for combining filters:
* and
* or
| startDate eq '2020-02-07' |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Currency` | *string* | :heavy_check_mark: | The ISO 4217 standard format currency code. | USD |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|:----------\|:-----------------------------\|
\| id \| `eq` \|
\| startDate \| `gt`, `ge`, `lt`, `le`, `eq` \|
\| endDate \| `gt`, `ge`, `lt`, `le`, `eq` \|
The following logical operators are supported for combining filters:
* and
* or
| startDate eq '2020-02-07' |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/GetEventBudgetTotalsRequest.md b/packages/csharp/docs/Models/Requests/GetEventBudgetTotalsRequest.md
index 5754192c..c65cdaf4 100644
--- a/packages/csharp/docs/Models/Requests/GetEventBudgetTotalsRequest.md
+++ b/packages/csharp/docs/Models/Requests/GetEventBudgetTotalsRequest.md
@@ -3,11 +3,11 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|:----------------\|:-----------\|
\| version.id \| `eq` \|
\| version.name \| `eq` \|
\| version.default \| `eq`, `ne` \|
The following logical operators are supported for combining filters:
* and
* or
| version.name eq 'Test version' and version.id eq '1b3a755a-d440-498d-baab-30f45dae3cf5' |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Id` | *string* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|:----------------\|:-----------\|
\| version.id \| `eq` \|
\| version.name \| `eq` \|
\| version.default \| `eq`, `ne` \|
The following logical operators are supported for combining filters:
* and
* or
| version.name eq 'Test version' and version.id eq '1b3a755a-d440-498d-baab-30f45dae3cf5' |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/GetEventFeaturesRequest.md b/packages/csharp/docs/Models/Requests/GetEventFeaturesRequest.md
index 9c101052..8f7dadc3 100644
--- a/packages/csharp/docs/Models/Requests/GetEventFeaturesRequest.md
+++ b/packages/csharp/docs/Models/Requests/GetEventFeaturesRequest.md
@@ -3,10 +3,10 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Locale` | *string* | :heavy_minus_sign: | Locale code in IETF Language tag format. Indicates desired locale of return values. | en-US |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|---------\|-----------\|
\| enabled \| `eq` \|
| enabled eq 'true' |
-| `Id` | *string* | :heavy_check_mark: | Unique Id of an event | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Locale` | *string* | :heavy_minus_sign: | Locale code in IETF Language tag format. Indicates desired locale of return values. | en-US |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|---------\|-----------\|
\| enabled \| `eq` \|
| enabled eq 'true' |
+| `Id` | *string* | :heavy_check_mark: | Unique Id of an event | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/GetEventSurveyRespondentsRequest.md b/packages/csharp/docs/Models/Requests/GetEventSurveyRespondentsRequest.md
index 9efa830a..13cd9ce8 100644
--- a/packages/csharp/docs/Models/Requests/GetEventSurveyRespondentsRequest.md
+++ b/packages/csharp/docs/Models/Requests/GetEventSurveyRespondentsRequest.md
@@ -3,12 +3,12 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_check_mark: | Id of an event | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `SurveyId` | *string* | :heavy_check_mark: | Id of a survey or Id of a chapter in event survey | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|-------\|-------------\|
\| id \| `eq`, `ne` \|
| id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Id` | *string* | :heavy_check_mark: | Id of an event | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `SurveyId` | *string* | :heavy_check_mark: | Id of a survey or Id of a chapter in event survey | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|-------\|-------------\|
\| id \| `eq`, `ne` \|
| id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/GetEventSurveyResponsesRequest.md b/packages/csharp/docs/Models/Requests/GetEventSurveyResponsesRequest.md
index d4154709..a8665727 100644
--- a/packages/csharp/docs/Models/Requests/GetEventSurveyResponsesRequest.md
+++ b/packages/csharp/docs/Models/Requests/GetEventSurveyResponsesRequest.md
@@ -3,12 +3,12 @@
## Fields
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|---------------\|-------------\|
\| id \| `eq`, `ne` \|
\| respondent.id \| `eq`, `ne` \|
\| session.id \| `eq`, `ne` \|
\| speaker.id \| `eq`, `ne` \|
\| question.id \| `eq`, `ne` \|
| id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' |
-| `Id` | *string* | :heavy_check_mark: | Id of an event | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `SurveyId` | *string* | :heavy_check_mark: | Id of a survey or Id of a chapter in event survey | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|---------------\|-------------\|
\| id \| `eq`, `ne` \|
\| respondent.id \| `eq`, `ne` \|
\| session.id \| `eq`, `ne` \|
\| speaker.id \| `eq`, `ne` \|
\| question.id \| `eq`, `ne` \|
| id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' |
+| `Id` | *string* | :heavy_check_mark: | Id of an event | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `SurveyId` | *string* | :heavy_check_mark: | Id of a survey or Id of a chapter in event survey | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/GetEventSurveysRequest.md b/packages/csharp/docs/Models/Requests/GetEventSurveysRequest.md
index 79d4f835..146ca385 100644
--- a/packages/csharp/docs/Models/Requests/GetEventSurveysRequest.md
+++ b/packages/csharp/docs/Models/Requests/GetEventSurveysRequest.md
@@ -3,11 +3,11 @@
## Fields
-| Field | Type | Required | Description | Example |
-| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Notes \|
\|----------\|-------------\|--------------------------------\|
\| id \| `eq`, `ne` \| chapter ID of the event survey \|
\| type \| `eq`, `ne` \| \|
\| sessions \| `eq`, `ne` \| \|
The following logical operators are supported for combining filters:
* `and`
* `or`
| id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' and type eq 'Session Feedback' and sessions eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' or sessions eq '05ca6ae2-0dc3-487b-953e-86d6abbdf7d3' |
-| `Id` | *string* | :heavy_check_mark: | Id of an event | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Notes \|
\|----------\|-------------\|--------------------------------\|
\| id \| `eq`, `ne` \| chapter ID of the event survey \|
\| type \| `eq`, `ne` \| \|
\| sessions \| `eq`, `ne` \| \|
The following logical operators are supported for combining filters:
* `and`
* `or`
| id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' and type eq 'Session Feedback' and sessions eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' or sessions eq '05ca6ae2-0dc3-487b-953e-86d6abbdf7d3' |
+| `Id` | *string* | :heavy_check_mark: | Id of an event | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/GetHotelRequestsRequest.md b/packages/csharp/docs/Models/Requests/GetHotelRequestsRequest.md
index ad0dfe87..0edf85ec 100644
--- a/packages/csharp/docs/Models/Requests/GetHotelRequestsRequest.md
+++ b/packages/csharp/docs/Models/Requests/GetHotelRequestsRequest.md
@@ -3,13 +3,13 @@
## Fields
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Expand` | List<[ExpandHotelRequestQuestionAnswer](../../Models/Components/ExpandHotelRequestQuestionAnswer.md)> | :heavy_minus_sign: | A list of fields to be expanded, returning additional information alongside the specified fields. The expanded entity is retrieved and displayed inline for each specified expansion field. The respective scopes for each expansion are required.
The following fields are expandable:
* hotelRequestDetails.hotelRequestAnswers.question (List Event Questions)
| hotelRequestDetails.hotelRequestAnswers.question |
-| `Sort` | *string* | :heavy_minus_sign: | The sort order passed as a parameter, used to control the order of the
search results as a priority ordered list of sorts
There are two orders:
* ascending: ASC
* descending: DESC
The following fields are sortable:
* hotelRequestDetails.requesterFirstName
* hotelRequestDetails.requesterLastName
* hotelRequestDetails.lastModified
| hotelRequestDetails.requesterFirstName:DESC,hotelRequestDetails.requesterLastName:ASC |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Notes \|
\|------------------\|-------------------------------------\|------------------------------------------------\|
\| attendee.id \| `eq`, `ne` \| Limit: 17 fields can be passed in a filter \|
The following logical operators are supported for combining filters:
* or
| (attendee.id eq '76f2b9e2-fcce-4d93-be29-a008b76a050c') OR (attendee.id eq '16322408-bae8-4b29-a559-702d2023e13a') |
-| `Id` | *string* | :heavy_check_mark: | ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Expand` | List<[ExpandHotelRequestQuestionAnswer](../../Models/Components/ExpandHotelRequestQuestionAnswer.md)> | :heavy_minus_sign: | A list of fields to be expanded, returning additional information alongside the specified fields. The expanded entity is retrieved and displayed inline for each specified expansion field. The respective scopes for each expansion are required.
The following fields are expandable:
* hotelRequestDetails.hotelRequestAnswers.question (List Event Questions)
| hotelRequestDetails.hotelRequestAnswers.question |
+| `Sort` | *string* | :heavy_minus_sign: | The sort order passed as a parameter, used to control the order of the
search results as a priority ordered list of sorts
There are two orders:
* ascending: ASC
* descending: DESC
The following fields are sortable:
* hotelRequestDetails.requesterFirstName
* hotelRequestDetails.requesterLastName
* hotelRequestDetails.lastModified
| hotelRequestDetails.requesterFirstName:DESC,hotelRequestDetails.requesterLastName:ASC |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Notes \|
\|------------------\|-------------------------------------\|------------------------------------------------\|
\| attendee.id \| `eq`, `ne` \| Limit: 17 fields can be passed in a filter \|
The following logical operators are supported for combining filters:
* or
| (attendee.id eq '76f2b9e2-fcce-4d93-be29-a008b76a050c') OR (attendee.id eq '16322408-bae8-4b29-a559-702d2023e13a') |
+| `Id` | *string* | :heavy_check_mark: | ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/GetHousingReservationRequestsRequest.md b/packages/csharp/docs/Models/Requests/GetHousingReservationRequestsRequest.md
index 43ff00b5..8e83dc61 100644
--- a/packages/csharp/docs/Models/Requests/GetHousingReservationRequestsRequest.md
+++ b/packages/csharp/docs/Models/Requests/GetHousingReservationRequestsRequest.md
@@ -3,11 +3,11 @@
## Fields
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Notes \|
\|------------------\|-------------------------------------\|------------------------------------------------\|
\| attendee.id \| `eq`, `ne` \| Limit: 17 fields can be passed in a filter \|
The following logical operators are supported for combining filters:
* or
| (attendee.id eq '76f2b9e2-fcce-4d93-be29-a008b76a050c') OR (attendee.id eq '16322408-bae8-4b29-a559-702d2023e13a') |
-| `Id` | *string* | :heavy_check_mark: | ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Notes \|
\|------------------\|-------------------------------------\|------------------------------------------------\|
\| attendee.id \| `eq`, `ne` \| Limit: 17 fields can be passed in a filter \|
The following logical operators are supported for combining filters:
* or
| (attendee.id eq '76f2b9e2-fcce-4d93-be29-a008b76a050c') OR (attendee.id eq '16322408-bae8-4b29-a559-702d2023e13a') |
+| `Id` | *string* | :heavy_check_mark: | ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/GetHubMembersRequest.md b/packages/csharp/docs/Models/Requests/GetHubMembersRequest.md
index e1bb0f8e..7aeed5fb 100644
--- a/packages/csharp/docs/Models/Requests/GetHubMembersRequest.md
+++ b/packages/csharp/docs/Models/Requests/GetHubMembersRequest.md
@@ -3,10 +3,10 @@
## Fields
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `HubId` | *string* | :heavy_check_mark: | The identifier of an Events+ Hub | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|-------------------------\|------------\|
\| firstName \| `contains` \|
\| lastName \| `contains` \|
\| emailAddress \| `contains` \|
\| jobTitle \| `contains` \|
\| companyName \| `contains` \|
\| designation \| `contains` \|
\| workAddress.city \| `contains` \|
\| workAddress.state \| `contains` \|
\| workAddress.country \| `contains` \|
Limit for the number of fields that can be passed in a filter is 35.
The following logical operators are supported for combining filters:
* and
* or
| (firstName contains 'tim') and (lastName contains 'wood') |
-| `Sort` | *string* | :heavy_minus_sign: | The sort order passed as a parameter, used to control the order of the
search results as a priority ordered list of sorts
There are two orders:
* ascending: ASC
* descending: DESC
The following fields are sortable:
* firstName (member first name)
* lastName (member last name)
* emailAddress (member email address)
* jobTitle (member job title)
* designation (Designation of member)
* workAddress.city (Work City of member)
* workAddress.state (Work State of member)
* workAddress.country (Work Country of member)
* companyName (member company)
* registrationDate (member registration date)
* lastLoginDate (member last login date)
| firstName:ASC,lastName:ASC |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `HubId` | *string* | :heavy_check_mark: | The identifier of an Events+ Hub | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|-------------------------\|------------\|
\| firstName \| `contains` \|
\| lastName \| `contains` \|
\| emailAddress \| `contains` \|
\| jobTitle \| `contains` \|
\| companyName \| `contains` \|
\| designation \| `contains` \|
\| workAddress.city \| `contains` \|
\| workAddress.state \| `contains` \|
\| workAddress.country \| `contains` \|
Limit for the number of fields that can be passed in a filter is 35.
The following logical operators are supported for combining filters:
* and
* or
| (firstName contains 'tim') and (lastName contains 'wood') |
+| `Sort` | *string* | :heavy_minus_sign: | The sort order passed as a parameter, used to control the order of the
search results as a priority ordered list of sorts
There are two orders:
* ascending: ASC
* descending: DESC
The following fields are sortable:
* firstName (member first name)
* lastName (member last name)
* emailAddress (member email address)
* jobTitle (member job title)
* designation (Designation of member)
* workAddress.city (Work City of member)
* workAddress.state (Work State of member)
* workAddress.country (Work Country of member)
* companyName (member company)
* registrationDate (member registration date)
* lastLoginDate (member last login date)
| firstName:ASC,lastName:ASC |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/GetLargeChoicesRequest.md b/packages/csharp/docs/Models/Requests/GetLargeChoicesRequest.md
index c796565e..498eada4 100644
--- a/packages/csharp/docs/Models/Requests/GetLargeChoicesRequest.md
+++ b/packages/csharp/docs/Models/Requests/GetLargeChoicesRequest.md
@@ -3,8 +3,8 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|-------------\|-------------\|
\| id \| `eq`, `ne` \|
\| question.id \| `eq`, `ne` \|
| id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|-------------\|-------------\|
\| id \| `eq`, `ne` \|
\| question.id \| `eq`, `ne` \|
| id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/GetOrderItemsRequest.md b/packages/csharp/docs/Models/Requests/GetOrderItemsRequest.md
index 28a1dd1a..c768a6ae 100644
--- a/packages/csharp/docs/Models/Requests/GetOrderItemsRequest.md
+++ b/packages/csharp/docs/Models/Requests/GetOrderItemsRequest.md
@@ -3,12 +3,12 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_check_mark: | Unique ID of an Event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|--------------\|------------------------------------\|
\| id \| `eq`, `ne` \|
\| attendee.id \| `eq`, `ne` \|
\| event.id \| `eq`, `ne` \|
\| order.id \| `eq`, `ne` \|
\| product.id \| `eq`, `ne` \|
\| product.type \| `eq`, `ne` \|
\| created \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| lastModified \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
The following logical operators are supported for combining filters:
* and
* or
| attendee.id eq '78b3d72a-1851-46f4-a837-5f8613f4db83' AND (product.id eq '65322e75-076f-4070-a6e6-3315c581728d' OR product.id eq 'e1874067-a5ed-4111-ac8a-63de9aa18929') |
-| `Deleted` | *bool* | :heavy_minus_sign: | This sets whether or not to fetch deleted order items in the response. If set to true, the response will include records for the deleted order items.
| |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Id` | *string* | :heavy_check_mark: | Unique ID of an Event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|--------------\|------------------------------------\|
\| id \| `eq`, `ne` \|
\| attendee.id \| `eq`, `ne` \|
\| event.id \| `eq`, `ne` \|
\| order.id \| `eq`, `ne` \|
\| product.id \| `eq`, `ne` \|
\| product.type \| `eq`, `ne` \|
\| created \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| lastModified \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
The following logical operators are supported for combining filters:
* and
* or
| attendee.id eq '78b3d72a-1851-46f4-a837-5f8613f4db83' AND (product.id eq '65322e75-076f-4070-a6e6-3315c581728d' OR product.id eq 'e1874067-a5ed-4111-ac8a-63de9aa18929') |
+| `Deleted` | *bool* | :heavy_minus_sign: | This sets whether or not to fetch deleted order items in the response. If set to true, the response will include records for the deleted order items.
| |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/GetOrdersRequest.md b/packages/csharp/docs/Models/Requests/GetOrdersRequest.md
index d934224c..126d0f43 100644
--- a/packages/csharp/docs/Models/Requests/GetOrdersRequest.md
+++ b/packages/csharp/docs/Models/Requests/GetOrdersRequest.md
@@ -3,12 +3,12 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_check_mark: | Unique ID of an Event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|--------------\|------------------------------------\|
\| id \| `eq`, `ne` \|
\| attendee.id \| `eq`, `ne` \|
\| event.id \| `eq`, `ne` \|
\| type \| `eq`, `ne` \|
\| created \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| lastModified \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
The following logical operators are supported for combining filters:
* and
* or
| attendee.id eq '78b3d72a-1851-46f4-a837-5f8613f4db83' AND (type eq 'Online Charge' OR type eq 'Online Refund') |
-| `Deleted` | *bool* | :heavy_minus_sign: | This sets whether or not to fetch deleted orders in the response. If set to true, the response will include records for the deleted orders.
| |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Id` | *string* | :heavy_check_mark: | Unique ID of an Event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|--------------\|------------------------------------\|
\| id \| `eq`, `ne` \|
\| attendee.id \| `eq`, `ne` \|
\| event.id \| `eq`, `ne` \|
\| type \| `eq`, `ne` \|
\| created \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| lastModified \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
The following logical operators are supported for combining filters:
* and
* or
| attendee.id eq '78b3d72a-1851-46f4-a837-5f8613f4db83' AND (type eq 'Online Charge' OR type eq 'Online Refund') |
+| `Deleted` | *bool* | :heavy_minus_sign: | This sets whether or not to fetch deleted orders in the response. If set to true, the response will include records for the deleted orders.
| |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/GetPaymentsRequest.md b/packages/csharp/docs/Models/Requests/GetPaymentsRequest.md
index 9726cd0e..7d0ffc01 100644
--- a/packages/csharp/docs/Models/Requests/GetPaymentsRequest.md
+++ b/packages/csharp/docs/Models/Requests/GetPaymentsRequest.md
@@ -3,11 +3,11 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Notes \|
\|:-----------------\|:-----------------------\|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\|
\| budgetItem.id \| `eq` \| \|
\| id \| `eq` \| \|
\| budgetVersion.id \| `eq` \| \|
\| lastModified \| `gt`, `ge`, `lt`, `le` \| `lastModified` refers to the date the associated budget item was last modified. Filtering by `lastModified` returns payments linked to budget items modified within the specified date range. \|
The following logical operators are supported for combining filters:
* and
* or
| budgetItem.id eq '2c3a755a-d440-498d-baab-30f45dae3cf5' or id eq '1b3a755a-d440-498d-baab-30f45dae3cf5' |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Id` | *string* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Notes \|
\|:-----------------\|:-----------------------\|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\|
\| budgetItem.id \| `eq` \| \|
\| id \| `eq` \| \|
\| budgetVersion.id \| `eq` \| \|
\| lastModified \| `gt`, `ge`, `lt`, `le` \| `lastModified` refers to the date the associated budget item was last modified. Filtering by `lastModified` returns payments linked to budget items modified within the specified date range. \|
The following logical operators are supported for combining filters:
* and
* or
| budgetItem.id eq '2c3a755a-d440-498d-baab-30f45dae3cf5' or id eq '1b3a755a-d440-498d-baab-30f45dae3cf5' |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/GetQuestionsRequest.md b/packages/csharp/docs/Models/Requests/GetQuestionsRequest.md
index 223dbc73..080899b7 100644
--- a/packages/csharp/docs/Models/Requests/GetQuestionsRequest.md
+++ b/packages/csharp/docs/Models/Requests/GetQuestionsRequest.md
@@ -3,10 +3,10 @@
## Fields
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|------------\|------------------------------------\|
\| id \| `eq`, `ne` \|
\| survey.id \| `eq`, `ne` \|
\| code \| `eq`, `ne` \|
\| type \| `eq`, `ne` \|
\| chapter.id \| `eq`, `ne` \|
\| maxScore \| `eq`, `ne`, `gt`, `ge`, `lt`, `le` \|
| id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|------------\|------------------------------------\|
\| id \| `eq`, `ne` \|
\| survey.id \| `eq`, `ne` \|
\| code \| `eq`, `ne` \|
\| type \| `eq`, `ne` \|
\| chapter.id \| `eq`, `ne` \|
\| maxScore \| `eq`, `ne`, `gt`, `ge`, `lt`, `le` \|
| id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/GetRespondentsRequest.md b/packages/csharp/docs/Models/Requests/GetRespondentsRequest.md
index 2bf308b3..170e73aa 100644
--- a/packages/csharp/docs/Models/Requests/GetRespondentsRequest.md
+++ b/packages/csharp/docs/Models/Requests/GetRespondentsRequest.md
@@ -3,10 +3,10 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|-----------------------------\|------------------------------------\|
\| id \| `eq`, `ne` \|
\| survey.id \| `eq`, `ne` \|
\| event.id \| `eq`, `ne` \|
\| responseCode \| `eq`, `ne` \|
\| score \| `eq`, `ne`, `gt`, `ge`, `lt`, `le` \|
\| chapters.score \| `eq`, `gt`, `ge`, `lt`, `le` \|
\| chapters.evaluationResult \| `eq` \|
\| chapters.status \| `eq` \|
| id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|-----------------------------\|------------------------------------\|
\| id \| `eq`, `ne` \|
\| survey.id \| `eq`, `ne` \|
\| event.id \| `eq`, `ne` \|
\| responseCode \| `eq`, `ne` \|
\| score \| `eq`, `ne`, `gt`, `ge`, `lt`, `le` \|
\| chapters.score \| `eq`, `gt`, `ge`, `lt`, `le` \|
\| chapters.evaluationResult \| `eq` \|
\| chapters.status \| `eq` \|
| id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/GetResponsesRequest.md b/packages/csharp/docs/Models/Requests/GetResponsesRequest.md
index ece1b7c2..b457456a 100644
--- a/packages/csharp/docs/Models/Requests/GetResponsesRequest.md
+++ b/packages/csharp/docs/Models/Requests/GetResponsesRequest.md
@@ -3,10 +3,10 @@
## Fields
-| Field | Type | Required | Description | Example |
-| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Notes \|
\|---------------\|-------------\|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\|
\| id \| `eq`, `ne` \| \|
\| survey.id \| `eq` \| Use only survey.id to get responses for all questions in the survey. \|
\| respondent.id \| `eq`, `ne` \| Use only respondent.id to get responses for specific respondents. \|
\| event.id \| `eq` \| \|
\| session.id \| `eq` \| \|
\| question.id \| `eq` \| Use only question.id to get responses for specific questions, which may belong to one or more surveys. question.id can be combined with other fields by 'and' operator only. \|
\| chapter.id \| `eq` \| Use only chapter.id to get responses for all questions in the chapter of a particular survey. \|
\| attempt \| `eq` \| \|
The following logical operators are supported for combining filters:
* `and`
* `or`
**Usage:**
1. chapter.id and survey.id cannot be used in combination with any other fields.
2. Multiple chapter.id or survey.id values must be separated by `or` (not `and`). Example: `filter=chapter.id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' or chapter.id eq '1983f506-a4a5-4a05-b3f6-ff7f7afc58f1'`
3. question.id can be combined with other fields using `and` operator only.
| question.id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' or question.id eq '1983f506-a4a5-4a05-b3f6-ff7f7afc58f1' |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Notes \|
\|---------------\|-------------\|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\|
\| id \| `eq`, `ne` \| \|
\| survey.id \| `eq` \| Use only survey.id to get responses for all questions in the survey. \|
\| respondent.id \| `eq`, `ne` \| Use only respondent.id to get responses for specific respondents. \|
\| event.id \| `eq` \| \|
\| session.id \| `eq` \| \|
\| question.id \| `eq` \| Use only question.id to get responses for specific questions, which may belong to one or more surveys. question.id can be combined with other fields by 'and' operator only. \|
\| chapter.id \| `eq` \| Use only chapter.id to get responses for all questions in the chapter of a particular survey. \|
\| attempt \| `eq` \| \|
The following logical operators are supported for combining filters:
* `and`
* `or`
**Usage:**
1. chapter.id and survey.id cannot be used in combination with any other fields.
2. Multiple chapter.id or survey.id values must be separated by `or` (not `and`). Example: `filter=chapter.id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' or chapter.id eq '1983f506-a4a5-4a05-b3f6-ff7f7afc58f1'`
3. question.id can be combined with other fields using `and` operator only.
| question.id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' or question.id eq '1983f506-a4a5-4a05-b3f6-ff7f7afc58f1' |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/GetStandardSurveyRespondentsRequest.md b/packages/csharp/docs/Models/Requests/GetStandardSurveyRespondentsRequest.md
index fb75a059..b430c326 100644
--- a/packages/csharp/docs/Models/Requests/GetStandardSurveyRespondentsRequest.md
+++ b/packages/csharp/docs/Models/Requests/GetStandardSurveyRespondentsRequest.md
@@ -3,11 +3,11 @@
## Fields
-| Field | Type | Required | Description | Example |
-| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `SurveyId` | *string* | :heavy_check_mark: | Id of a survey or Id of a chapter in event survey | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|-------\|-------------\|
\| id \| `eq`, `ne` \|
The following logical operators are supported for combining filters:
* `and`
* `or`
| id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
+| `SurveyId` | *string* | :heavy_check_mark: | Id of a survey or Id of a chapter in event survey | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|-------\|-------------\|
\| id \| `eq`, `ne` \|
The following logical operators are supported for combining filters:
* `and`
* `or`
| id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/GetStandardSurveyResponsesRequest.md b/packages/csharp/docs/Models/Requests/GetStandardSurveyResponsesRequest.md
index ac93cfb6..bdbbfaf6 100644
--- a/packages/csharp/docs/Models/Requests/GetStandardSurveyResponsesRequest.md
+++ b/packages/csharp/docs/Models/Requests/GetStandardSurveyResponsesRequest.md
@@ -3,10 +3,10 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Max # Fields You Can Pass In Filter \| Usage \|
\|---------------\|-----------\|-------------------------------------\|---------------------------------------------------------------------------------------------------------------------\|
\| survey.id \| `eq` \| 1 \| Use only survey.id to get responses for all questions in the survey. \|
\| question.id \| `eq` \| 100 \| Use only question.id to get responses for specific questions, which may belong to different surveys or same survey. \|
\| respondent.id \| `eq` \| 100 \| Use only respondent.id to get responses for specific respondents. \|
The following logical operators are supported for combining filters:
* `and`
* `or`
**Usage:**
* question.id can be combined with respondent.id using `and` operator only.
* Multiple question.id/respondent.id values must be separated by `or`.
| question.id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' or question.id eq '1983f506-a4a5-4a05-b3f6-ff7f7afc58f1' |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Max # Fields You Can Pass In Filter \| Usage \|
\|---------------\|-----------\|-------------------------------------\|---------------------------------------------------------------------------------------------------------------------\|
\| survey.id \| `eq` \| 1 \| Use only survey.id to get responses for all questions in the survey. \|
\| question.id \| `eq` \| 100 \| Use only question.id to get responses for specific questions, which may belong to different surveys or same survey. \|
\| respondent.id \| `eq` \| 100 \| Use only respondent.id to get responses for specific respondents. \|
The following logical operators are supported for combining filters:
* `and`
* `or`
**Usage:**
* question.id can be combined with respondent.id using `and` operator only.
* Multiple question.id/respondent.id values must be separated by `or`.
| question.id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' or question.id eq '1983f506-a4a5-4a05-b3f6-ff7f7afc58f1' |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/GetStandardSurveysRequest.md b/packages/csharp/docs/Models/Requests/GetStandardSurveysRequest.md
index a4ec93bb..32cd25f8 100644
--- a/packages/csharp/docs/Models/Requests/GetStandardSurveysRequest.md
+++ b/packages/csharp/docs/Models/Requests/GetStandardSurveysRequest.md
@@ -3,10 +3,10 @@
## Fields
-| Field | Type | Required | Description | Example |
-| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|---------\|------------------------------------\|
\| status \| `eq`, `ne` \|
\| created \| `eq`, `ne`, `gt`, `ge`, `lt`, `le` \|
\| title \| `eq`, `ne` \|
\| code \| `eq`, `ne` \|
The following logical operators are supported for combining filters:
* `and`
* `or`
| status eq 'active' and created gt '2020-12-12T11:30:37.909Z' and title eq 'Survey Demo' and code ne 'NFWHF5DW46A' |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|---------\|------------------------------------\|
\| status \| `eq`, `ne` \|
\| created \| `eq`, `ne`, `gt`, `ge`, `lt`, `le` \|
\| title \| `eq`, `ne` \|
\| code \| `eq`, `ne` \|
The following logical operators are supported for combining filters:
* `and`
* `or`
| status eq 'active' and created gt '2020-12-12T11:30:37.909Z' and title eq 'Survey Demo' and code ne 'NFWHF5DW46A' |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/GetSurveyRequest.md b/packages/csharp/docs/Models/Requests/GetSurveyRequest.md
index ce78fc48..b824739b 100644
--- a/packages/csharp/docs/Models/Requests/GetSurveyRequest.md
+++ b/packages/csharp/docs/Models/Requests/GetSurveyRequest.md
@@ -3,10 +3,10 @@
## Fields
-| Field | Type | Required | Description | Example |
-| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|-------\|-------------\|
\| id \| `eq`, `ne` \|
\| type \| `eq`, `ne` \|
The following logical operators are supported for combining filters:
* `and`
* `or`
| id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' and type eq 'Standalone' |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|-------\|-------------\|
\| id \| `eq`, `ne` \|
\| type \| `eq`, `ne` \|
The following logical operators are supported for combining filters:
* `and`
* `or`
| id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' and type eq 'Standalone' |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/GetTransactionItemsRequest.md b/packages/csharp/docs/Models/Requests/GetTransactionItemsRequest.md
index e8b1b82a..d3416ac1 100644
--- a/packages/csharp/docs/Models/Requests/GetTransactionItemsRequest.md
+++ b/packages/csharp/docs/Models/Requests/GetTransactionItemsRequest.md
@@ -3,11 +3,11 @@
## Fields
-| Field | Type | Required | Description | Example |
-| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_check_mark: | Unique ID of an Event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|------------------------------------\|------------------------------------\|
\| id \| `eq`, `ne` \|
\| attendee.id \| `eq`, `ne` \|
\| event.id \| `eq`, `ne` \|
\| transaction.id \| `eq`, `ne` \|
\| transaction.processorTransactionId \| `eq`, `ne` \|
\| uniqueId \| `eq`, `ne` \|
\| created \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| lastModified \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
The following logical operators are supported for combining filters:
* and
* or
| attendee.id eq '78b3d72a-1851-46f4-a837-5f8613f4db83' AND (transaction.id eq '82da8c60-24f4-47d0-b6e2-429b18a4bb7c' OR transaction.id eq '034bb884-05de-4818-b9f9-5144495d5495') |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
+| `Id` | *string* | :heavy_check_mark: | Unique ID of an Event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|------------------------------------\|------------------------------------\|
\| id \| `eq`, `ne` \|
\| attendee.id \| `eq`, `ne` \|
\| event.id \| `eq`, `ne` \|
\| transaction.id \| `eq`, `ne` \|
\| transaction.processorTransactionId \| `eq`, `ne` \|
\| uniqueId \| `eq`, `ne` \|
\| created \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| lastModified \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
The following logical operators are supported for combining filters:
* and
* or
| attendee.id eq '78b3d72a-1851-46f4-a837-5f8613f4db83' AND (transaction.id eq '82da8c60-24f4-47d0-b6e2-429b18a4bb7c' OR transaction.id eq '034bb884-05de-4818-b9f9-5144495d5495') |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/GetTransactionsRequest.md b/packages/csharp/docs/Models/Requests/GetTransactionsRequest.md
index e6f6b4cf..bf951a1d 100644
--- a/packages/csharp/docs/Models/Requests/GetTransactionsRequest.md
+++ b/packages/csharp/docs/Models/Requests/GetTransactionsRequest.md
@@ -3,11 +3,11 @@
## Fields
-| Field | Type | Required | Description | Example |
-| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_check_mark: | Unique ID of an Event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|------------------------\|------------------------------------\|
\| id \| `eq`, `ne` \|
\| processorTransactionId \| `eq`, `ne` \|
\| attendee.id \| `eq`, `ne` \|
\| event.id \| `eq`, `ne` \|
\| success \| `eq`, `ne` \|
\| paymentType \| `eq`, `ne` \|
\| created \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| lastModified \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
The following logical operators are supported for combining filters:
* and
* or
| attendee.id eq 'f4af0b94-4427-46f8-bea0-b06af2a0af80' AND (paymentType eq 'Online Charge' OR paymentType eq 'Online Refund') |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
+| `Id` | *string* | :heavy_check_mark: | Unique ID of an Event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|------------------------\|------------------------------------\|
\| id \| `eq`, `ne` \|
\| processorTransactionId \| `eq`, `ne` \|
\| attendee.id \| `eq`, `ne` \|
\| event.id \| `eq`, `ne` \|
\| success \| `eq`, `ne` \|
\| paymentType \| `eq`, `ne` \|
\| created \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| lastModified \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
The following logical operators are supported for combining filters:
* and
* or
| attendee.id eq 'f4af0b94-4427-46f8-bea0-b06af2a0af80' AND (paymentType eq 'Online Charge' OR paymentType eq 'Online Refund') |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/GetVideoViewsRequest.md b/packages/csharp/docs/Models/Requests/GetVideoViewsRequest.md
index 4a418323..22457e67 100644
--- a/packages/csharp/docs/Models/Requests/GetVideoViewsRequest.md
+++ b/packages/csharp/docs/Models/Requests/GetVideoViewsRequest.md
@@ -3,10 +3,10 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Notes \|
\|------------------------\|-----------\|------------\|
\| contact.id \| `eq` \| \|
\| solution \| `eq` \| \|
\| device.type \| `eq` \| deprecated \|
\| device.operatingSystem \| `eq` \| deprecated \|
\| video.id \| `eq` \| \|
\| type \| `eq` \| \|
The filter query supports maximum three fields in a filter expression.
The following logical operators are supported for combining filters:
* and
| contact.id eq '123e4567-e89b-12d3-a456-426614174000' and solution eq 'EVENTS_PLUS' |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Notes \|
\|------------------------\|-----------\|------------\|
\| contact.id \| `eq` \| \|
\| solution \| `eq` \| \|
\| device.type \| `eq` \| deprecated \|
\| device.operatingSystem \| `eq` \| deprecated \|
\| video.id \| `eq` \| \|
\| type \| `eq` \| \|
The filter query supports maximum three fields in a filter expression.
The following logical operators are supported for combining filters:
* and
| contact.id eq '123e4567-e89b-12d3-a456-426614174000' and solution eq 'EVENTS_PLUS' |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListAssociatedAudienceSegmentsRequest.md b/packages/csharp/docs/Models/Requests/ListAssociatedAudienceSegmentsRequest.md
index e50dd169..8671a7c9 100644
--- a/packages/csharp/docs/Models/Requests/ListAssociatedAudienceSegmentsRequest.md
+++ b/packages/csharp/docs/Models/Requests/ListAssociatedAudienceSegmentsRequest.md
@@ -3,9 +3,9 @@
## Fields
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `AttendeeId` | *string* | :heavy_check_mark: | ID of an attendee. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | [Filter](../../Models/Components/Filter.md) | :heavy_check_mark: | Use the filter property in the request body to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|------------------\|-------------------------------------\|
\| segment.id \| `eq`, `in` \|
No logical operators are supported.
| |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `AttendeeId` | *string* | :heavy_check_mark: | ID of an attendee. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | [Filter](../../Models/Components/Filter.md) | :heavy_check_mark: | Use the filter property in the request body to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|------------------\|-------------------------------------\|
\| segment.id \| `eq`, `in` \|
No logical operators are supported.
| |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListAttendeeActivitiesRequest.md b/packages/csharp/docs/Models/Requests/ListAttendeeActivitiesRequest.md
index ecf3d0da..73152685 100644
--- a/packages/csharp/docs/Models/Requests/ListAttendeeActivitiesRequest.md
+++ b/packages/csharp/docs/Models/Requests/ListAttendeeActivitiesRequest.md
@@ -3,10 +3,10 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|----------------------\|------------------------------------\|
\| id \| `eq`, `ne` \|
\| created \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| event.id \| `eq`, `ne` \|
\| attendee.id \| `eq`, `ne` \|
\| type \| `eq`, `ne` \|
\| exhibitor.id \| `eq`, `ne` \|
\| session.id \| `eq`, `ne` \|
\| appointment.id \| `eq`, `ne` \|
\| speaker.id \| `eq`, `ne` \|
\| data.id \| `eq`, `ne` \|
\| name \| `eq`, `ne` \|
\| externalActivityDate \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| time \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
The following logical operators are supported for combining filters:
* and
* or
| type eq 'event.registered' or type eq 'session.enrolled' and (attendee.id eq 'uuid1' or attendee.id eq 'uuid2') |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|----------------------\|------------------------------------\|
\| id \| `eq`, `ne` \|
\| created \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| event.id \| `eq`, `ne` \|
\| attendee.id \| `eq`, `ne` \|
\| type \| `eq`, `ne` \|
\| exhibitor.id \| `eq`, `ne` \|
\| session.id \| `eq`, `ne` \|
\| appointment.id \| `eq`, `ne` \|
\| speaker.id \| `eq`, `ne` \|
\| data.id \| `eq`, `ne` \|
\| name \| `eq`, `ne` \|
\| externalActivityDate \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| time \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
The following logical operators are supported for combining filters:
* and
* or
| type eq 'event.registered' or type eq 'session.enrolled' and (attendee.id eq 'uuid1' or attendee.id eq 'uuid2') |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListAttendeeAudienceSegmentsRequest.md b/packages/csharp/docs/Models/Requests/ListAttendeeAudienceSegmentsRequest.md
index 5af96ca4..7a1227c3 100644
--- a/packages/csharp/docs/Models/Requests/ListAttendeeAudienceSegmentsRequest.md
+++ b/packages/csharp/docs/Models/Requests/ListAttendeeAudienceSegmentsRequest.md
@@ -3,9 +3,9 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `AttendeeId` | *string* | :heavy_check_mark: | ID of an attendee. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|------------------\|-------------------------------------\|
\| segment.id \| `eq`, `in` \|
No logical operators are supported.
| segment.id eq '313097a4-143d-11e5-9f99-d0a637ee0897' |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `AttendeeId` | *string* | :heavy_check_mark: | ID of an attendee. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|------------------\|-------------------------------------\|
\| segment.id \| `eq`, `in` \|
No logical operators are supported.
| segment.id eq '313097a4-143d-11e5-9f99-d0a637ee0897' |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListAttendeeLinksRequest.md b/packages/csharp/docs/Models/Requests/ListAttendeeLinksRequest.md
index 0fbb6925..d20ba655 100644
--- a/packages/csharp/docs/Models/Requests/ListAttendeeLinksRequest.md
+++ b/packages/csharp/docs/Models/Requests/ListAttendeeLinksRequest.md
@@ -3,10 +3,10 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|--------------\| -----------------------------------\|
\| id \| `eq`, `ne` \|
\| sourceId \| `eq`, `ne` \|
\| attendee.id \| `eq`, `ne` \|
\| webcast.id \| `eq`, `ne` \|
\| created \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| lastModified \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
| id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' and event.id eq '55ca6645-0dc3-487b-953e-86d6abbdf7d3' |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|--------------\| -----------------------------------\|
\| id \| `eq`, `ne` \|
\| sourceId \| `eq`, `ne` \|
\| attendee.id \| `eq`, `ne` \|
\| webcast.id \| `eq`, `ne` \|
\| created \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| lastModified \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
| id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' and event.id eq '55ca6645-0dc3-487b-953e-86d6abbdf7d3' |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListAttendeesRequest.md b/packages/csharp/docs/Models/Requests/ListAttendeesRequest.md
index 4fbcf52c..1043cb33 100644
--- a/packages/csharp/docs/Models/Requests/ListAttendeesRequest.md
+++ b/packages/csharp/docs/Models/Requests/ListAttendeesRequest.md
@@ -3,13 +3,13 @@
## Fields
-| Field | Type | Required | Description | Example |
-| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Expand` | List<[Expand](../../Models/Components/Expand.md)> | :heavy_minus_sign: | This endpoint allows you to request additional information as an expanded response using the expand query parameter.
The expanded entity is retrieved and displayed inline for each specified expand value.
An object contains the ID of a related object in its response properties. You can expand these objects,
along with others, in line using the expand query parameter.
You can expand multiple objects at the same time by identifying multiple items in the expand array.
The respective scopes for each expansion are required.
The following fields are expandable:
* answers.question
* **Scope**: event/events:read
* **Reference**: List Event Questions
* registrationType
* **Scope**: event/registration-types:read
* **Reference**: List Registration Types
| [
"answers.question",
"registrationType"
] |
-| `Sort` | *string* | :heavy_minus_sign: | The `sort` query parameter sorts items in the list of results and organizes them according to your preference.
There are two orders:
* ascending: ASC
* descending: DESC
The following fields are sortable:
* contact.firstName
* contact.lastName
* contact.title
* contact.company
* registeredAt
* checkIn
| contact.company:DESC,contact.title:ASC |
-| `IncludeDeletedGuests` | *bool* | :heavy_minus_sign: | True indicates the request should include deleted guests in the response. By default, deleted guests are excluded.
The `deletedGuest` filter has no effect unless this parameter is `true`.
| |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Notes \|
\|------------------\|-------------------------------------\|------------------------------------------\|
\| event.id \| `eq`, `ne` \| \|
\| id \| `eq`, `ne` \| \|
\| confirmationNumber \| `eq`, `ne` \| \|
\| checkedIn \| `eq`, `ne` \| \|
\| checkIn \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \| \|
\| checkOut \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \| \|
\| registrationPath.id \| `eq`, `ne` \| \|
\| invitationList.id \| `eq`, `ne` \| \|
\| registrationType.id \| `eq`, `ne`, `is null`, `is not null`, `is empty`, `is not empty` \| \|
\| referenceId \| `eq`, `ne` \| \|
\| externalReference.type \| `eq` \| \|
\| externalReference.id \| `eq` \| \|
\| externalReference.referenceId \| `eq` \| \|
\| note \| `eq`, `ne` \| \|
\| guest \| `eq`, `ne` \| \|
\| group.leader \| `eq`, `ne` \| \|
\| group.id \| `eq`, `ne` \| \|
\| unsubscribed \| `eq`, `ne` \| **DEPRECATED**: Please use PUT /attendees/{id}/email-subscriptions instead \|
\| registeredAt \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \| \|
\| registrationLastModified \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \| \|
\| invitedBy \| `eq`, `ne` \| \|
\| responseMethod \| `eq`, `ne` \| \|
\| status \| `eq`, `ne` \| \|
\| lastModified \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \| Will be updated when any field in the response has changed. Used by the 'before' and 'after' filters. \|
\| created \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \| \|
\| contact.id \| `eq`, `ne` \| \|
\| visibility \| `eq`, `ne` \| \|
\| contact.title \| `eq`, `ne`, `sw` \| \|
\| contact.company \| `eq`, `ne`, `sw` \| \|
\| contact.firstName \| `eq`, `ne`, `sw` \| \|
\| contact.lastName \| `eq`, `ne`, `sw` \| \|
\| answers.question.{question id} \| `eq`, `ne` \| \|
\| contact.email \| `eq`, `ne`, `sw` \| \|
\| attendeeLastModified \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \| Will be updated only when some field other than contact.* has changed. Not used by the 'before' and 'after' filters. \|
\| appointmentGroup.id \| `eq`, `ne` \| \|
\| contact.deleted \| `eq`, `ne` \| \|
\| primaryId \| `eq`, `ne` \| \|
\| deletedGuest \| `eq`, `ne` \| Filter returns guests marked as deleted. This filter works only when the query parameter `includeDeletedGuests` is `true`. \|
| contact.id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' or checkedIn eq 'true' |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Expand` | List<[Expand](../../Models/Components/Expand.md)> | :heavy_minus_sign: | This endpoint allows you to request additional information as an expanded response using the expand query parameter.
The expanded entity is retrieved and displayed inline for each specified expand value.
An object contains the ID of a related object in its response properties. You can expand these objects,
along with others, in line using the expand query parameter.
You can expand multiple objects at the same time by identifying multiple items in the expand array.
The respective scopes for each expansion are required.
The following fields are expandable:
* answers.question
* **Scope**: event/events:read
* **Reference**: List Event Questions
* registrationType
* **Scope**: event/registration-types:read
* **Reference**: List Registration Types
| [
"answers.question",
"registrationType"
] |
+| `Sort` | *string* | :heavy_minus_sign: | The `sort` query parameter sorts items in the list of results and organizes them according to your preference.
There are two orders:
* ascending: ASC
* descending: DESC
The following fields are sortable:
* contact.firstName
* contact.lastName
* contact.title
* contact.company
* registeredAt
* checkIn
| contact.company:DESC,contact.title:ASC |
+| `IncludeDeletedGuests` | *bool* | :heavy_minus_sign: | True indicates the request should include deleted guests in the response. By default, deleted guests are excluded.
The `deletedGuest` filter has no effect unless this parameter is `true`.
| |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Notes \|
\|------------------\|-------------------------------------\|------------------------------------------\|
\| event.id \| `eq`, `ne` \| \|
\| id \| `eq`, `ne` \| \|
\| confirmationNumber \| `eq`, `ne` \| \|
\| checkedIn \| `eq`, `ne` \| \|
\| checkIn \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \| \|
\| checkOut \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \| \|
\| registrationPath.id \| `eq`, `ne` \| \|
\| invitationList.id \| `eq`, `ne` \| \|
\| registrationType.id \| `eq`, `ne`, `is null`, `is not null`, `is empty`, `is not empty` \| \|
\| referenceId \| `eq`, `ne` \| \|
\| externalReference.type \| `eq` \| \|
\| externalReference.id \| `eq` \| \|
\| externalReference.referenceId \| `eq` \| \|
\| note \| `eq`, `ne` \| \|
\| guest \| `eq`, `ne` \| \|
\| group.leader \| `eq`, `ne` \| \|
\| group.id \| `eq`, `ne` \| \|
\| unsubscribed \| `eq`, `ne` \| **DEPRECATED**: Please use PUT /attendees/{id}/email-subscriptions instead \|
\| registeredAt \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \| \|
\| registrationLastModified \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \| \|
\| invitedBy \| `eq`, `ne` \| \|
\| responseMethod \| `eq`, `ne` \| \|
\| status \| `eq`, `ne` \| \|
\| lastModified \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \| Will be updated when any field in the response has changed. Used by the 'before' and 'after' filters. \|
\| created \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \| \|
\| contact.id \| `eq`, `ne` \| \|
\| visibility \| `eq`, `ne` \| \|
\| contact.title \| `eq`, `ne`, `sw` \| \|
\| contact.company \| `eq`, `ne`, `sw` \| \|
\| contact.firstName \| `eq`, `ne`, `sw` \| \|
\| contact.lastName \| `eq`, `ne`, `sw` \| \|
\| answers.question.{question id} \| `eq`, `ne` \| \|
\| contact.email \| `eq`, `ne`, `sw` \| \|
\| attendeeLastModified \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \| Will be updated only when some field other than contact.* has changed. Not used by the 'before' and 'after' filters. \|
\| appointmentGroup.id \| `eq`, `ne` \| \|
\| contact.deleted \| `eq`, `ne` \| \|
\| primaryId \| `eq`, `ne` \| \|
\| deletedGuest \| `eq`, `ne` \| Filter returns guests marked as deleted. This filter works only when the query parameter `includeDeletedGuests` is `true`. \|
| contact.id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' or checkedIn eq 'true' |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListAudienceSegmentsPostFilterRequest.md b/packages/csharp/docs/Models/Requests/ListAudienceSegmentsPostFilterRequest.md
index b2e29760..b646ba66 100644
--- a/packages/csharp/docs/Models/Requests/ListAudienceSegmentsPostFilterRequest.md
+++ b/packages/csharp/docs/Models/Requests/ListAudienceSegmentsPostFilterRequest.md
@@ -3,11 +3,11 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Sort` | *string* | :heavy_minus_sign: | The sort order passed as a parameter, used to control the order of the
search results as a priority ordered list of sorts. By default, data is sorted by lastModified ASC.
There are two orders:
* ascending: ASC
* descending: DESC
The following fields are sortable:
* name
* lastModified
* lastModifiedBy
* creationType
| lastModifiedBy:DESC |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `Filter` | [Filter](../../Models/Components/Filter.md) | :heavy_check_mark: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Notes \|
\|------------------\|-------------------------------------\|-------------------------------------------------------\|
\| event.id \| `eq`, `in` \| Filters the list of all segments present in an event. \|
\| id \| `eq`, `in` \| \|
\| deleted \| `eq` \| \|
\| creationType \| `eq`, `in` \| \|
The following logical operators are supported for combining filters:
* and
| |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Sort` | *string* | :heavy_minus_sign: | The sort order passed as a parameter, used to control the order of the
search results as a priority ordered list of sorts. By default, data is sorted by lastModified ASC.
There are two orders:
* ascending: ASC
* descending: DESC
The following fields are sortable:
* name
* lastModified
* lastModifiedBy
* creationType
| lastModifiedBy:DESC |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Filter` | [Filter](../../Models/Components/Filter.md) | :heavy_check_mark: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Notes \|
\|------------------\|-------------------------------------\|-------------------------------------------------------\|
\| event.id \| `eq`, `in` \| Filters the list of all segments present in an event. \|
\| id \| `eq`, `in` \| \|
\| deleted \| `eq` \| \|
\| creationType \| `eq`, `in` \| \|
The following logical operators are supported for combining filters:
* and
| |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListAudienceSegmentsRequest.md b/packages/csharp/docs/Models/Requests/ListAudienceSegmentsRequest.md
index 9b261cba..9cde940d 100644
--- a/packages/csharp/docs/Models/Requests/ListAudienceSegmentsRequest.md
+++ b/packages/csharp/docs/Models/Requests/ListAudienceSegmentsRequest.md
@@ -3,11 +3,11 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Sort` | *string* | :heavy_minus_sign: | The sort order passed as a parameter, used to control the order of the
search results as a priority ordered list of sorts. By default, data is sorted by lastModified ASC.
There are two orders:
* ascending: ASC
* descending: DESC
The following fields are sortable:
* name
* lastModified
* lastModifiedBy
* creationType
| lastModifiedBy:DESC |
-| `Filter` | *string* | :heavy_check_mark: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Notes \|
\|------------------\|-------------------------------------\|-------------------------------------------------------\|
\| event.id \| `eq`, `in` \| Filters the list of all segments present in an event. \|
\| id \| `eq`, `in` \| \|
\| deleted \| `eq` \| \|
\| creationType \| `eq`, `in` \| \|
The following logical operators are supported for combining filters:
* and
| event.id eq '103097a4-143d-11e5-9f99-d0a637ee0032' and id in ('313097a4-143d-11e5-9f99-d0a637ee0897','423097a4-143d-11e5-9f99-d0a637ee0897') and deleted eq 'false' and creationType eq 'MANUAL' |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Sort` | *string* | :heavy_minus_sign: | The sort order passed as a parameter, used to control the order of the
search results as a priority ordered list of sorts. By default, data is sorted by lastModified ASC.
There are two orders:
* ascending: ASC
* descending: DESC
The following fields are sortable:
* name
* lastModified
* lastModifiedBy
* creationType
| lastModifiedBy:DESC |
+| `Filter` | *string* | :heavy_check_mark: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Notes \|
\|------------------\|-------------------------------------\|-------------------------------------------------------\|
\| event.id \| `eq`, `in` \| Filters the list of all segments present in an event. \|
\| id \| `eq`, `in` \| \|
\| deleted \| `eq` \| \|
\| creationType \| `eq`, `in` \| \|
The following logical operators are supported for combining filters:
* and
| event.id eq '103097a4-143d-11e5-9f99-d0a637ee0032' and id in ('313097a4-143d-11e5-9f99-d0a637ee0897','423097a4-143d-11e5-9f99-d0a637ee0897') and deleted eq 'false' and creationType eq 'MANUAL' |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListContactGroupsRequest.md b/packages/csharp/docs/Models/Requests/ListContactGroupsRequest.md
index 2ff56eb7..f5e6747a 100644
--- a/packages/csharp/docs/Models/Requests/ListContactGroupsRequest.md
+++ b/packages/csharp/docs/Models/Requests/ListContactGroupsRequest.md
@@ -3,10 +3,10 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Notes \|
\|------------------\|-------------------------------------\|-------\|
\| name \| `eq`, `ne`, `sw`, `contains` \| \|
\| type \| `eq` \| Not supported with before or after parameters \|
The following logical operators are supported for combining filters:
* and
| name eq 'groupName' and type eq 'STANDARD' |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Notes \|
\|------------------\|-------------------------------------\|-------\|
\| name \| `eq`, `ne`, `sw`, `contains` \| \|
\| type \| `eq` \| Not supported with before or after parameters \|
The following logical operators are supported for combining filters:
* and
| name eq 'groupName' and type eq 'STANDARD' |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListContactTypesRequest.md b/packages/csharp/docs/Models/Requests/ListContactTypesRequest.md
index 666894e2..db7a7070 100644
--- a/packages/csharp/docs/Models/Requests/ListContactTypesRequest.md
+++ b/packages/csharp/docs/Models/Requests/ListContactTypesRequest.md
@@ -3,8 +3,8 @@
## Fields
-| Field | Type | Required | Description | Example |
-| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|------------------\|-------------------------------------\|
\| name \| `eq`, `ne`, `sw`, `contains` \|
No logical operators are supported on this endpoint, only one filter
can be passed in each request.
| name eq 'groupType' |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|------------------\|-------------------------------------\|
\| name \| `eq`, `ne`, `sw`, `contains` \|
No logical operators are supported on this endpoint, only one filter
can be passed in each request.
| name eq 'groupType' |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListContactsRequest.md b/packages/csharp/docs/Models/Requests/ListContactsRequest.md
index 83fb8df8..d69a7c8a 100644
--- a/packages/csharp/docs/Models/Requests/ListContactsRequest.md
+++ b/packages/csharp/docs/Models/Requests/ListContactsRequest.md
@@ -3,11 +3,11 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Notes \|
\|------------------\|-------------------------------------\|-------\|
\| id \| `eq`, `ne` \| \|
\| sourceId \| `eq`, `ne` \| \|
\| firstName \| `eq`, `ne`, `contains`, `sw` \| \|
\| lastName \| `eq`, `ne`, `contains`, `sw` \| \|
\| email \| `eq`, `ne`, `contains`, `sw` \| \|
\| ccEmail \| `eq`, `ne` \| \|
\| company \| `eq`, `ne` \| \|
\| type.id \| `eq`, `ne` \| \|
\| nickname \| `eq`, `ne` \| \|
\| title \| `eq`, `ne` \| \|
\| workPhone \| `eq`, `ne` \| \|
\| middleName \| `eq`, `ne` \| \|
\| mobilePhone \| `eq`, `ne` \| \|
\| homeFax \| `eq`, `ne` \| \|
\| designation \| `eq`, `ne` \| \|
\| homePhone \| `eq`, `ne` \| \|
\| pager \| `eq`, `ne` \| \|
\| workFax \| `eq`, `ne` \| \|
\| lastModifiedBy \| `eq`, `ne` \| \|
\| lastModified \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \| \|
\| created \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \| \|
\| createdBy \| `eq`, `ne` \| \|
\| workAddress.address1 \| `eq`, `ne` \| \|
\| workAddress.address2 \| `eq`, `ne` \| \|
\| workAddress.address3 \| `eq`, `ne` \| \|
\| workAddress.city \| `eq`, `ne` \| \|
\| workAddress.country \| `eq`, `ne` \| \|
\| homeAddress.address1 \| `eq`, `ne` \| \|
\| homeAddress.address2 \| `eq`, `ne` \| \|
\| homeAddress.address3 \| `eq`, `ne` \| \|
\| homeAddress.city \| `eq`, `ne` \| \|
\| homeAddress.country \| `eq`, `ne` \| \|
\| deleted \| `eq`, `ne` \| Filters for deleted contacts. To retrieve purged contacts, see the `includePurged` parameter. \|
\| customField.{uuid of custom field} \| `eq`, `ne`, `lt`, `le`, `gt`, `ge`, `sw`, `contains` \| \|
\| optOut.optedOut \| `eq`, `ne` \| \|
The following logical operators are supported for combining filters:
* and
* or
| firstName eq 'John' or lastName eq 'Anderson' |
-| `IncludePurged` | *bool* | :heavy_minus_sign: | True means purged contacts can be included in the response. Purged contacts contain only limited display data (`id`, `lastModified`, and `purged`). When true, the filter query parameter can only filter by the `id` field. The `before`, `after`, `limit`, and `token` query parameters are still valid query parameters to use with this parameter. If false, only contacts that have not been purged will be returned.
| |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Notes \|
\|------------------\|-------------------------------------\|-------\|
\| id \| `eq`, `ne` \| \|
\| sourceId \| `eq`, `ne` \| \|
\| firstName \| `eq`, `ne`, `contains`, `sw` \| \|
\| lastName \| `eq`, `ne`, `contains`, `sw` \| \|
\| email \| `eq`, `ne`, `contains`, `sw` \| \|
\| ccEmail \| `eq`, `ne` \| \|
\| company \| `eq`, `ne` \| \|
\| type.id \| `eq`, `ne` \| \|
\| nickname \| `eq`, `ne` \| \|
\| title \| `eq`, `ne` \| \|
\| workPhone \| `eq`, `ne` \| \|
\| middleName \| `eq`, `ne` \| \|
\| mobilePhone \| `eq`, `ne` \| \|
\| homeFax \| `eq`, `ne` \| \|
\| designation \| `eq`, `ne` \| \|
\| homePhone \| `eq`, `ne` \| \|
\| pager \| `eq`, `ne` \| \|
\| workFax \| `eq`, `ne` \| \|
\| lastModifiedBy \| `eq`, `ne` \| \|
\| lastModified \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \| \|
\| created \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \| \|
\| createdBy \| `eq`, `ne` \| \|
\| workAddress.address1 \| `eq`, `ne` \| \|
\| workAddress.address2 \| `eq`, `ne` \| \|
\| workAddress.address3 \| `eq`, `ne` \| \|
\| workAddress.city \| `eq`, `ne` \| \|
\| workAddress.country \| `eq`, `ne` \| \|
\| homeAddress.address1 \| `eq`, `ne` \| \|
\| homeAddress.address2 \| `eq`, `ne` \| \|
\| homeAddress.address3 \| `eq`, `ne` \| \|
\| homeAddress.city \| `eq`, `ne` \| \|
\| homeAddress.country \| `eq`, `ne` \| \|
\| deleted \| `eq`, `ne` \| Filters for deleted contacts. To retrieve purged contacts, see the `includePurged` parameter. \|
\| customField.{uuid of custom field} \| `eq`, `ne`, `lt`, `le`, `gt`, `ge`, `sw`, `contains` \| \|
\| optOut.optedOut \| `eq`, `ne` \| \|
The following logical operators are supported for combining filters:
* and
* or
| firstName eq 'John' or lastName eq 'Anderson' |
+| `IncludePurged` | *bool* | :heavy_minus_sign: | True means purged contacts can be included in the response. Purged contacts contain only limited display data (`id`, `lastModified`, and `purged`). When true, the filter query parameter can only filter by the `id` field. The `before`, `after`, `limit`, and `token` query parameters are still valid query parameters to use with this parameter. If false, only contacts that have not been purged will be returned.
| |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListDiscountedAgendaItemsRequest.md b/packages/csharp/docs/Models/Requests/ListDiscountedAgendaItemsRequest.md
index edc3f5cd..e87a2a3a 100644
--- a/packages/csharp/docs/Models/Requests/ListDiscountedAgendaItemsRequest.md
+++ b/packages/csharp/docs/Models/Requests/ListDiscountedAgendaItemsRequest.md
@@ -3,9 +3,9 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|------------------\|-------------------------------------\|
\| discount.id \| `eq`, `in` \|
\| type \| `eq`, `in` \|
The following logical operators are supported for combining filters:
* and
* or
| type eq 'AdmissionItem' and discount.id in ('1b01ae34-6970-41f2-a4e8-b4f39185dc15', '1b01ae34-6970-41f2-a4e8-b4f39185dc16') |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Id` | *string* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|------------------\|-------------------------------------\|
\| discount.id \| `eq`, `in` \|
\| type \| `eq`, `in` \|
The following logical operators are supported for combining filters:
* and
* or
| type eq 'AdmissionItem' and discount.id in ('1b01ae34-6970-41f2-a4e8-b4f39185dc15', '1b01ae34-6970-41f2-a4e8-b4f39185dc16') |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListDonationItemsRequest.md b/packages/csharp/docs/Models/Requests/ListDonationItemsRequest.md
index 9136ac19..8325c9b1 100644
--- a/packages/csharp/docs/Models/Requests/ListDonationItemsRequest.md
+++ b/packages/csharp/docs/Models/Requests/ListDonationItemsRequest.md
@@ -3,9 +3,9 @@
## Fields
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|-------------------\|-----------\|
\| id \| `in` \|
\| registrationTypes \| `in` \|
The following logical operators are supported for combining filters:
* and
| id in ('1b01ae34-6970-41f2-a4e8-b4f39185dc15', '1b01ae34-6970-41f2-a4e8-b4f39185dc16') and registrationTypes in ('1b01ae34-6970-41f2-a4e8-b4f39185dc28') |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Id` | *string* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|-------------------\|-----------\|
\| id \| `in` \|
\| registrationTypes \| `in` \|
The following logical operators are supported for combining filters:
* and
| id in ('1b01ae34-6970-41f2-a4e8-b4f39185dc15', '1b01ae34-6970-41f2-a4e8-b4f39185dc16') and registrationTypes in ('1b01ae34-6970-41f2-a4e8-b4f39185dc28') |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListDurationsRequest.md b/packages/csharp/docs/Models/Requests/ListDurationsRequest.md
index 7e9af531..3d22f8a2 100644
--- a/packages/csharp/docs/Models/Requests/ListDurationsRequest.md
+++ b/packages/csharp/docs/Models/Requests/ListDurationsRequest.md
@@ -3,11 +3,11 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of attendance duration records returned per page. | |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Sort` | *string* | :heavy_minus_sign: | The sort order passed as a parameter, used to control the order of the
search results as a priority ordered list of sorts
There are two orders:
* ascending: ASC
* descending: DESC
The following fields are sortable:
* event
* session
* attendee
* type
* firstSeen
* duration
* lastModified - default
| start:DESC,title:ASC |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|-------------\|------------------------------------\|
\| id \| `eq`, `ne` \|
\| event.id \| `eq`, `ne`, `in` \|
\| session.id \| `eq`, `ne`, `in` \|
\| attendee.id \| `eq`, `ne`, `in` \|
\| type \| `contains`, `eq`, `ne`, `in` \|
\| deleted \| `eq`, `ne` \|
\| firstSeen \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| lastSeen \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| duration \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| created \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
The following logical operators are supported for combining filters:
* and
* or
| firstSeen gt '2020-02-07T12:00:00.000Z' and session.id = '0e2f583e-62ae-40d8-9b5c-b8e67a6ba1ab' |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of attendance duration records returned per page. | |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Sort` | *string* | :heavy_minus_sign: | The sort order passed as a parameter, used to control the order of the
search results as a priority ordered list of sorts
There are two orders:
* ascending: ASC
* descending: DESC
The following fields are sortable:
* event
* session
* attendee
* type
* firstSeen
* duration
* lastModified - default
| start:DESC,title:ASC |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|-------------\|------------------------------------\|
\| id \| `eq`, `ne` \|
\| event.id \| `eq`, `ne`, `in` \|
\| session.id \| `eq`, `ne`, `in` \|
\| attendee.id \| `eq`, `ne`, `in` \|
\| type \| `contains`, `eq`, `ne`, `in` \|
\| deleted \| `eq`, `ne` \|
\| firstSeen \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| lastSeen \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| duration \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| created \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
The following logical operators are supported for combining filters:
* and
* or
| firstSeen gt '2020-02-07T12:00:00.000Z' and session.id = '0e2f583e-62ae-40d8-9b5c-b8e67a6ba1ab' |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListEventDiscountsRequest.md b/packages/csharp/docs/Models/Requests/ListEventDiscountsRequest.md
index 91a1205c..e2594ece 100644
--- a/packages/csharp/docs/Models/Requests/ListEventDiscountsRequest.md
+++ b/packages/csharp/docs/Models/Requests/ListEventDiscountsRequest.md
@@ -3,12 +3,12 @@
## Fields
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Sort` | *string* | :heavy_minus_sign: | The sort order passed as a parameter, used to control the order of the
search results as a priority ordered list of sorts.
There are two orders:
* ascending: ASC
* descending: DESC
The following fields are sortable:
* name
* code
* method.type
* effectiveTo
* effectiveFrom
* type
* level
| name:DESC,code:ASC |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|------------------\|-------------------------------------\|
\| id \| `in` \|
\| method.type \| `eq` \|
\| type \| `eq` \|
\| level \| `eq` \|
The following logical operators are supported for combining filters:
* and
* or
| id in ('1b01ae34-6970-41f2-a4e8-b4f39185dc15', '1b01ae34-6970-41f2-a4e8-b4f39185dc16') and method.type eq 'PERCENTAGE' |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Id` | *string* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Sort` | *string* | :heavy_minus_sign: | The sort order passed as a parameter, used to control the order of the
search results as a priority ordered list of sorts.
There are two orders:
* ascending: ASC
* descending: DESC
The following fields are sortable:
* name
* code
* method.type
* effectiveTo
* effectiveFrom
* type
* level
| name:DESC,code:ASC |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|------------------\|-------------------------------------\|
\| id \| `in` \|
\| method.type \| `eq` \|
\| type \| `eq` \|
\| level \| `eq` \|
The following logical operators are supported for combining filters:
* and
* or
| id in ('1b01ae34-6970-41f2-a4e8-b4f39185dc15', '1b01ae34-6970-41f2-a4e8-b4f39185dc16') and method.type eq 'PERCENTAGE' |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListEventVouchersRequest.md b/packages/csharp/docs/Models/Requests/ListEventVouchersRequest.md
index 2edb8522..6071713e 100644
--- a/packages/csharp/docs/Models/Requests/ListEventVouchersRequest.md
+++ b/packages/csharp/docs/Models/Requests/ListEventVouchersRequest.md
@@ -3,12 +3,12 @@
## Fields
-| Field | Type | Required | Description | Example |
-| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `Sort` | *string* | :heavy_minus_sign: | The sort order for the results, expressed as a priority-ordered list of field and direction pairs.
There are two sort directions:
* ascending: ASC
* descending: DESC
The following fields are sortable:
* code
When not provided, results are sorted by `code` ascending.
| code:ASC |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|-------\|-----------\|
\| id \| `in` \|
No logical operators are available.
| id in ('1800c9bd-b5f4-438a-a92c-ea1f59553a5c', '2900d8ce-c6f5-449b-b03d-fb2f60664b6d') |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
+| `Id` | *string* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Sort` | *string* | :heavy_minus_sign: | The sort order for the results, expressed as a priority-ordered list of field and direction pairs.
There are two sort directions:
* ascending: ASC
* descending: DESC
The following fields are sortable:
* code
When not provided, results are sorted by `code` ascending.
| code:ASC |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|-------\|-----------\|
\| id \| `in` \|
No logical operators are available.
| id in ('1800c9bd-b5f4-438a-a92c-ea1f59553a5c', '2900d8ce-c6f5-449b-b03d-fb2f60664b6d') |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListExternalAttendeeActivitiesMetadataRequest.md b/packages/csharp/docs/Models/Requests/ListExternalAttendeeActivitiesMetadataRequest.md
index 2d9fddbd..606b0508 100644
--- a/packages/csharp/docs/Models/Requests/ListExternalAttendeeActivitiesMetadataRequest.md
+++ b/packages/csharp/docs/Models/Requests/ListExternalAttendeeActivitiesMetadataRequest.md
@@ -3,10 +3,10 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|--------------\|------------------------------------\|
\| id \| `eq`, `ne` \|
\| name \| `eq`, `ne` \|
\| type \| `eq`, `ne` \|
\| created \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| lastModified \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
The following logical operators are supported for combining filters:
* and
* or
| id eq 'd94aff58-175d-41a5-9612-64e71202f8c3' and 'type eq 'event.external' and name ne 'social.media' and created ge '2021-03-15T09:33:13.750Z' and lastModified le '2021-03-15T09:33:13.750Z' |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|--------------\|------------------------------------\|
\| id \| `eq`, `ne` \|
\| name \| `eq`, `ne` \|
\| type \| `eq`, `ne` \|
\| created \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| lastModified \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
The following logical operators are supported for combining filters:
* and
* or
| id eq 'd94aff58-175d-41a5-9612-64e71202f8c3' and 'type eq 'event.external' and name ne 'social.media' and created ge '2021-03-15T09:33:13.750Z' and lastModified le '2021-03-15T09:33:13.750Z' |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListFeeItemsRequest.md b/packages/csharp/docs/Models/Requests/ListFeeItemsRequest.md
index 69c604af..be200ced 100644
--- a/packages/csharp/docs/Models/Requests/ListFeeItemsRequest.md
+++ b/packages/csharp/docs/Models/Requests/ListFeeItemsRequest.md
@@ -3,9 +3,9 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|-----------------------\|------------------------------------\|
\| id \| `eq`, `ne` \|
\| product.id \| `eq`, `ne` \|
\| generalLedgerCodes.id \| `eq`, `ne` \|
\| product.type \| `eq`, `ne` \|
\| created \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| lastModified \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
The following logical operators are supported for combining filters:
* and
* or
| id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' or product.id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d6' |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Id` | *string* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|-----------------------\|------------------------------------\|
\| id \| `eq`, `ne` \|
\| product.id \| `eq`, `ne` \|
\| generalLedgerCodes.id \| `eq`, `ne` \|
\| product.type \| `eq`, `ne` \|
\| created \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| lastModified \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
The following logical operators are supported for combining filters:
* and
* or
| id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' or product.id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d6' |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListHubsRequest.md b/packages/csharp/docs/Models/Requests/ListHubsRequest.md
index edd2618a..ede70e4a 100644
--- a/packages/csharp/docs/Models/Requests/ListHubsRequest.md
+++ b/packages/csharp/docs/Models/Requests/ListHubsRequest.md
@@ -3,8 +3,8 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|-------\|------------\|
\| id \| `eq`, `ne` \|
Limit for the number of fields that can be passed in a filter is 35.
The following logical operators are supported for combining filters:
* or
| (id eq '76f2b9e2-fcce-4d93-be29-a008b76a050c') OR (id eq '16322408-bae8-4b29-a559-702d2023e13a') |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|-------\|------------\|
\| id \| `eq`, `ne` \|
Limit for the number of fields that can be passed in a filter is 35.
The following logical operators are supported for combining filters:
* or
| (id eq '76f2b9e2-fcce-4d93-be29-a008b76a050c') OR (id eq '16322408-bae8-4b29-a559-702d2023e13a') |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListMembershipItemsRequest.md b/packages/csharp/docs/Models/Requests/ListMembershipItemsRequest.md
index 3f3be208..910fb3f0 100644
--- a/packages/csharp/docs/Models/Requests/ListMembershipItemsRequest.md
+++ b/packages/csharp/docs/Models/Requests/ListMembershipItemsRequest.md
@@ -3,9 +3,9 @@
## Fields
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|-------------------\|-----------\|
\| id \| `in` \|
\| registrationTypes \| `in` \|
The following logical operators are supported for combining filters:
* and
| id in ('1b01ae34-6970-41f2-a4e8-b4f39185dc15', '1b01ae34-6970-41f2-a4e8-b4f39185dc16') and registrationTypes in ('1b01ae34-6970-41f2-a4e8-b4f39185dc28') |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Id` | *string* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|-------------------\|-----------\|
\| id \| `in` \|
\| registrationTypes \| `in` \|
The following logical operators are supported for combining filters:
* and
| id in ('1b01ae34-6970-41f2-a4e8-b4f39185dc15', '1b01ae34-6970-41f2-a4e8-b4f39185dc16') and registrationTypes in ('1b01ae34-6970-41f2-a4e8-b4f39185dc28') |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListPlayersRequest.md b/packages/csharp/docs/Models/Requests/ListPlayersRequest.md
index 6ea2d796..543a27bb 100644
--- a/packages/csharp/docs/Models/Requests/ListPlayersRequest.md
+++ b/packages/csharp/docs/Models/Requests/ListPlayersRequest.md
@@ -3,10 +3,10 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|--------------\| -----------------------------------\|
\| webcast.id \| `eq`, `ne` \|
\| id \| `eq`, `ne` \|
\| created \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| lastModified \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
| webcast.id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|--------------\| -----------------------------------\|
\| webcast.id \| `eq`, `ne` \|
\| id \| `eq`, `ne` \|
\| created \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| lastModified \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
| webcast.id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListProgramItemsRequest.md b/packages/csharp/docs/Models/Requests/ListProgramItemsRequest.md
index 27425553..2b9350d6 100644
--- a/packages/csharp/docs/Models/Requests/ListProgramItemsRequest.md
+++ b/packages/csharp/docs/Models/Requests/ListProgramItemsRequest.md
@@ -3,8 +3,8 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|------------\|------------\|
\| id \| `eq`, `in` \|
\| session.id \| `eq`, `in` \|
\| event.id \| `eq` \|
The following logical operators are supported for combining filters:
* and
* or
| session.id in ('04ca6ae2-0dc3-487b-953e-86d6abbdf7d3', '34ca65e2-1dc3-487b-589e-839d8bbdf7d3') |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|------------\|------------\|
\| id \| `eq`, `in` \|
\| session.id \| `eq`, `in` \|
\| event.id \| `eq` \|
The following logical operators are supported for combining filters:
* and
* or
| session.id in ('04ca6ae2-0dc3-487b-953e-86d6abbdf7d3', '34ca65e2-1dc3-487b-589e-839d8bbdf7d3') |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListQuantityItemsRequest.md b/packages/csharp/docs/Models/Requests/ListQuantityItemsRequest.md
index e437d153..fe9d6ae1 100644
--- a/packages/csharp/docs/Models/Requests/ListQuantityItemsRequest.md
+++ b/packages/csharp/docs/Models/Requests/ListQuantityItemsRequest.md
@@ -3,9 +3,9 @@
## Fields
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|-------------------\|-----------\|
\| id \| `in` \|
\| registrationTypes \| `in` \|
The following logical operators are supported for combining filters:
* and
| id in ('1b01ae34-6970-41f2-a4e8-b4f39185dc15', '1b01ae34-6970-41f2-a4e8-b4f39185dc16') and registrationTypes in ('1b01ae34-6970-41f2-a4e8-b4f39185dc28') |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Id` | *string* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|-------------------\|-----------\|
\| id \| `in` \|
\| registrationTypes \| `in` \|
The following logical operators are supported for combining filters:
* and
| id in ('1b01ae34-6970-41f2-a4e8-b4f39185dc15', '1b01ae34-6970-41f2-a4e8-b4f39185dc16') and registrationTypes in ('1b01ae34-6970-41f2-a4e8-b4f39185dc28') |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListSegmentAssociatedAttendeesRequest.md b/packages/csharp/docs/Models/Requests/ListSegmentAssociatedAttendeesRequest.md
index 012d9cca..6cc6f161 100644
--- a/packages/csharp/docs/Models/Requests/ListSegmentAssociatedAttendeesRequest.md
+++ b/packages/csharp/docs/Models/Requests/ListSegmentAssociatedAttendeesRequest.md
@@ -3,12 +3,12 @@
## Fields
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `AudienceSegmentId` | *string* | :heavy_check_mark: | ID of an audience segment. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Notes \|
\|------------------\|-------------------------------------\|------------------------------------------\|
\| disassociated \| `eq` \| To use this filter, `includeDisassociated` query parameter must be true. \|
| disassociated eq 'false' |
-| `IncludeDisassociated` | *bool* | :heavy_minus_sign: | Use the `includeDisassociated` query parameter to include disassociated attendees in the result. Note: Disassociated attendees older than 30 days will not be returned in result.
| true |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `AudienceSegmentId` | *string* | :heavy_check_mark: | ID of an audience segment. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Notes \|
\|------------------\|-------------------------------------\|------------------------------------------\|
\| disassociated \| `eq` \| To use this filter, `includeDisassociated` query parameter must be true. \|
| disassociated eq 'false' |
+| `IncludeDisassociated` | *bool* | :heavy_minus_sign: | Use the `includeDisassociated` query parameter to include disassociated attendees in the result. Note: Disassociated attendees older than 30 days will not be returned in result.
| true |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListSessionDocsRequest.md b/packages/csharp/docs/Models/Requests/ListSessionDocsRequest.md
index 7d61202b..d952a991 100644
--- a/packages/csharp/docs/Models/Requests/ListSessionDocsRequest.md
+++ b/packages/csharp/docs/Models/Requests/ListSessionDocsRequest.md
@@ -3,9 +3,9 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
-| `Id` | *string* | :heavy_check_mark: | Unique Id of a session | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|------------------\|-------------------------------------\|
\| file.id \| `eq`, `ne` \|
The following logical operators are supported for combining filters:
* and
* or
| file.id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Id` | *string* | :heavy_check_mark: | Unique Id of a session | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|------------------\|-------------------------------------\|
\| file.id \| `eq`, `ne` \|
The following logical operators are supported for combining filters:
* and
* or
| file.id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListSessionsCategoriesRequest.md b/packages/csharp/docs/Models/Requests/ListSessionsCategoriesRequest.md
index 11b8eecc..920dd155 100644
--- a/packages/csharp/docs/Models/Requests/ListSessionsCategoriesRequest.md
+++ b/packages/csharp/docs/Models/Requests/ListSessionsCategoriesRequest.md
@@ -3,9 +3,9 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Sort` | *string* | :heavy_minus_sign: | The sort order passed as a parameter, used to control the order of the
search results as a priority ordered list of sorts
There are two orders:
* ascending: ASC
* descending: DESC
The following fields are sortable:
* name
| name:ASC |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|------------------\|-------------------------------------\|
\| id \| `eq`, `ne`, `in` \|
\| name \| `eq`, `ne`, `contains` \|
The following operators are available:
* and
* or
| name contains 'general' |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Sort` | *string* | :heavy_minus_sign: | The sort order passed as a parameter, used to control the order of the
search results as a priority ordered list of sorts
There are two orders:
* ascending: ASC
* descending: DESC
The following fields are sortable:
* name
| name:ASC |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|------------------\|-------------------------------------\|
\| id \| `eq`, `ne`, `in` \|
\| name \| `eq`, `ne`, `contains` \|
The following operators are available:
* and
* or
| name contains 'general' |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListSessionsRequest.md b/packages/csharp/docs/Models/Requests/ListSessionsRequest.md
index 2eb92f27..2d23bb00 100644
--- a/packages/csharp/docs/Models/Requests/ListSessionsRequest.md
+++ b/packages/csharp/docs/Models/Requests/ListSessionsRequest.md
@@ -3,12 +3,12 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Sort` | *string* | :heavy_minus_sign: | The sort order passed as a parameter, used to control the order of the
search results as a priority ordered list of sorts
There are two orders:
* ascending: ASC
* descending: DESC
The following fields are sortable:
* start
* end
* title
* includedSession
* category.name
* code
* relevance
* order
| start:DESC,order:ASC,title:ASC |
-| `Locale` | *string* | :heavy_minus_sign: | Locale code in IETF Language tag format. Indicates desired locale of return values. | en-US |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|------------------------------------\|----------------------------------------------\|
\| id \| `eq`, `ne`, `in` \|
\| status \| `eq`, `ne` \|
\| event.id \| `eq`, `ne` \|
\| title \| `eq`, `ne`, `contains`, `match` \|
\| code \| `eq`, `ne` \|
\| category.id \| `eq`, `ne` \|
\| category.name \| `eq`, `ne`, `contains` \|
\| start \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| end \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| description \| `eq`, `ne`, `contains` \|
\| capacity \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| location.id \| `eq`, `ne` \|
\| location.name \| `eq`, `ne`, `contains` \|
\| location.code \| `eq`, `ne` \|
\| includedSession \| `eq`, `ne` \|
\| enableWaitlist \| `eq`, `ne` \|
\| featured \| `eq`, `ne` \|
\| openForRegistration \| `eq`, `ne` \|
\| openForAttendeeHub \| `eq`, `ne` \|
\| virtual \| `eq`, `ne` \|
\| created \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| lastModified \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| registrationTypes \| `contains`, `in`, `is empty`, `is not empty` \|
\| customField.{uuid of custom field} \| `eq`, `ne`, `lt`, `le`, `gt`, `ge`, `sw`, `contains`, `in` \|
\| group.id \| `eq`, `ne` \|
\| admissionItems \| `contains`, `is empty`, `is not empty` \|
\| segments \| `contains`, `in`, `is empty`, `is not empty` \|
**Note:** If the "match" filter is passed, the endpoint will return a relevance score for each session in the list and, by default, sort results by relevance. Higher scores represent a higher relevance to the filter string.
The following logical operators are supported for combining filters:
* and
* or
| status eq 'active' or status eq 'closed' or event.id eq 'abc' or customField.{uuid of custom field} in ('abc','def') |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Sort` | *string* | :heavy_minus_sign: | The sort order passed as a parameter, used to control the order of the
search results as a priority ordered list of sorts
There are two orders:
* ascending: ASC
* descending: DESC
The following fields are sortable:
* start
* end
* title
* includedSession
* category.name
* code
* relevance
* order
| start:DESC,order:ASC,title:ASC |
+| `Locale` | *string* | :heavy_minus_sign: | Locale code in IETF Language tag format. Indicates desired locale of return values. | en-US |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|------------------------------------\|----------------------------------------------\|
\| id \| `eq`, `ne`, `in` \|
\| status \| `eq`, `ne` \|
\| event.id \| `eq`, `ne` \|
\| title \| `eq`, `ne`, `contains`, `match` \|
\| code \| `eq`, `ne` \|
\| category.id \| `eq`, `ne` \|
\| category.name \| `eq`, `ne`, `contains` \|
\| start \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| end \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| description \| `eq`, `ne`, `contains` \|
\| capacity \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| location.id \| `eq`, `ne` \|
\| location.name \| `eq`, `ne`, `contains` \|
\| location.code \| `eq`, `ne` \|
\| includedSession \| `eq`, `ne` \|
\| enableWaitlist \| `eq`, `ne` \|
\| featured \| `eq`, `ne` \|
\| openForRegistration \| `eq`, `ne` \|
\| openForAttendeeHub \| `eq`, `ne` \|
\| virtual \| `eq`, `ne` \|
\| created \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| lastModified \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| registrationTypes \| `contains`, `in`, `is empty`, `is not empty` \|
\| customField.{uuid of custom field} \| `eq`, `ne`, `lt`, `le`, `gt`, `ge`, `sw`, `contains`, `in` \|
\| group.id \| `eq`, `ne` \|
\| admissionItems \| `contains`, `is empty`, `is not empty` \|
\| segments \| `contains`, `in`, `is empty`, `is not empty` \|
**Note:** If the "match" filter is passed, the endpoint will return a relevance score for each session in the list and, by default, sort results by relevance. Higher scores represent a higher relevance to the filter string.
The following logical operators are supported for combining filters:
* and
* or
| status eq 'active' or status eq 'closed' or event.id eq 'abc' or customField.{uuid of custom field} in ('abc','def') |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListTaxesRequest.md b/packages/csharp/docs/Models/Requests/ListTaxesRequest.md
index 2ca72aa1..4080e0a5 100644
--- a/packages/csharp/docs/Models/Requests/ListTaxesRequest.md
+++ b/packages/csharp/docs/Models/Requests/ListTaxesRequest.md
@@ -3,9 +3,9 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|--------------\|------------------------------------\|
\| id \| `eq`, `in` \|
\| active \| `eq` \|
\| created \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| lastModified \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
The following logical operators are supported for combining filters:
* and
| id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Id` | *string* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|--------------\|------------------------------------\|
\| id \| `eq`, `in` \|
\| active \| `eq` \|
\| created \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| lastModified \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
The following logical operators are supported for combining filters:
* and
| id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListVideosRequest.md b/packages/csharp/docs/Models/Requests/ListVideosRequest.md
index 09c3510d..fe5b84b6 100644
--- a/packages/csharp/docs/Models/Requests/ListVideosRequest.md
+++ b/packages/csharp/docs/Models/Requests/ListVideosRequest.md
@@ -3,11 +3,11 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Notes \|
\|--------------\|------------\|----------------------------------\|
\| id \| `eq`, `ne` \| \|
\| events \| `eq`, `ne` \| \|
\| sessions \| `eq`, `ne` \| \|
\| exhibitors \| `eq`, `ne` \| \|
\| speakers \| `eq`, `ne` \| \|
\| source.id \| `eq`, `ne` \| \|
\| status \| `eq`, `ne` \| \|
\| tags \| `eq`, `ne` \| \|
\| recording.id \| `eq`, `ne` \| \|
\| event.id \| `eq`, `ne` \| deprecated, use `events` instead \|
The following logical operators are supported for combining filters:
* and
* or
| events eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' and source.id ne 'sampleWebcastSystemId' |
-| `Deleted` | *bool* | :heavy_minus_sign: | True means only videos marked as deleted will be queried. False means only non-deleted videos will be queried. | true |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Notes \|
\|--------------\|------------\|----------------------------------\|
\| id \| `eq`, `ne` \| \|
\| events \| `eq`, `ne` \| \|
\| sessions \| `eq`, `ne` \| \|
\| exhibitors \| `eq`, `ne` \| \|
\| speakers \| `eq`, `ne` \| \|
\| source.id \| `eq`, `ne` \| \|
\| status \| `eq`, `ne` \| \|
\| tags \| `eq`, `ne` \| \|
\| recording.id \| `eq`, `ne` \| \|
\| event.id \| `eq`, `ne` \| deprecated, use `events` instead \|
The following logical operators are supported for combining filters:
* and
* or
| events eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' and source.id ne 'sampleWebcastSystemId' |
+| `Deleted` | *bool* | :heavy_minus_sign: | True means only videos marked as deleted will be queried. False means only non-deleted videos will be queried. | true |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListWebcastAttendeeLinksRequest.md b/packages/csharp/docs/Models/Requests/ListWebcastAttendeeLinksRequest.md
index df1d6147..1ac266ab 100644
--- a/packages/csharp/docs/Models/Requests/ListWebcastAttendeeLinksRequest.md
+++ b/packages/csharp/docs/Models/Requests/ListWebcastAttendeeLinksRequest.md
@@ -3,11 +3,11 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_check_mark: | The identifier of the webcast. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|--------------\| -----------------------------------\|
\| id \| `eq`, `ne` \|
\| sourceId \| `eq`, `ne` \|
\| attendee.id \| `eq`, `ne` \|
\| created \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| lastModified \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
| id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Id` | *string* | :heavy_check_mark: | The identifier of the webcast. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|--------------\| -----------------------------------\|
\| id \| `eq`, `ne` \|
\| sourceId \| `eq`, `ne` \|
\| attendee.id \| `eq`, `ne` \|
\| created \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| lastModified \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
| id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListWebcastsRequest.md b/packages/csharp/docs/Models/Requests/ListWebcastsRequest.md
index 376baa74..0706bdfc 100644
--- a/packages/csharp/docs/Models/Requests/ListWebcastsRequest.md
+++ b/packages/csharp/docs/Models/Requests/ListWebcastsRequest.md
@@ -3,10 +3,10 @@
## Fields
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|----------------\|------------------------------------------\|
\| id \| `eq`, `ne` \|
\| event.id \| `eq`, `ne` \|
\| session.id \| `eq`, `ne`, `is empty`, `is not empty` \|
\| appointment.id \| `eq`, `ne`, `is empty`, `is not empty` \|
\| exhibitor.id \| `eq`, `ne`, `is empty`, `is not empty` \|
\| sourceId \| `eq`, `ne`, `is empty`, `is not empty` \|
\| solutionType \| `eq`, `ne` \|
\| provider \| `eq`, `ne` \|
\| type \| `eq`, `ne` \|
\| status \| `eq`, `ne` \|
\| meetingId \| `eq`, `ne` \|
\| created \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| lastModified \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| playerType \| `eq`, `ne` \|
| event.id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' and sourceId ne 'sampleWebcastSystemId' |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|----------------\|------------------------------------------\|
\| id \| `eq`, `ne` \|
\| event.id \| `eq`, `ne` \|
\| session.id \| `eq`, `ne`, `is empty`, `is not empty` \|
\| appointment.id \| `eq`, `ne`, `is empty`, `is not empty` \|
\| exhibitor.id \| `eq`, `ne`, `is empty`, `is not empty` \|
\| sourceId \| `eq`, `ne`, `is empty`, `is not empty` \|
\| solutionType \| `eq`, `ne` \|
\| provider \| `eq`, `ne` \|
\| type \| `eq`, `ne` \|
\| status \| `eq`, `ne` \|
\| meetingId \| `eq`, `ne` \|
\| created \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| lastModified \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| playerType \| `eq`, `ne` \|
| event.id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' and sourceId ne 'sampleWebcastSystemId' |
\ No newline at end of file
diff --git a/packages/csharp/docs/sdks/authentication/README.md b/packages/csharp/docs/sdks/authentication/README.md
index bc9dfef8..9564e895 100644
--- a/packages/csharp/docs/sdks/authentication/README.md
+++ b/packages/csharp/docs/sdks/authentication/README.md
@@ -66,7 +66,7 @@ var res = await sdk.Authentication.Oauth2AuthorizeAsync(req);
## Oauth2Token
-Obtains an Access Token, an ID Token, and optionally, a Refresh Token. Read the [Developer Quickstart](/docs/rest-api/tutorials/developer-quickstart) for an example request.
+Obtains an Access Token, an ID Token, and optionally, a Refresh Token. Read the [Developer Quickstart](https://developers.cvent.com/docs/rest-api/tutorials/developer-quickstart) for an example request.
**Note:** The token endpoint returns refresh_token only when the grant_type is authorization_code.
diff --git a/packages/csharp/docs/sdks/bulk/README.md b/packages/csharp/docs/sdks/bulk/README.md
index f986294b..48375d3e 100644
--- a/packages/csharp/docs/sdks/bulk/README.md
+++ b/packages/csharp/docs/sdks/bulk/README.md
@@ -11,7 +11,7 @@ Consumers of the bulk API will do the following:
* Use [get bulk job](#operation/getBulkJobById) to track status
* Use [list bulk job results](#operation/listBulkJobResult) to get details of items uploaded
-For more details, see the [Bulk Job User Guide](/docs/rest-api/guides/bulk-api-user-guide).
+For more details, see the [Bulk Job User Guide](https://developers.cvent.com/docs/rest-api/guides/bulk-api-user-guide).
**Note:** These bulk jobs have a TTL and will expire once they are complete or never ran. Bulk jobs will expire
1 week after creation, and this one week is refreshed when data is uploaded and the job is run. The Bulk Job
diff --git a/packages/csharp/docs/sdks/housing/README.md b/packages/csharp/docs/sdks/housing/README.md
index ff2cb3a2..aa79cf2a 100644
--- a/packages/csharp/docs/sdks/housing/README.md
+++ b/packages/csharp/docs/sdks/housing/README.md
@@ -15,7 +15,7 @@ If you need authentication credentials or have any questions regarding the RegLi
* **Housing Event.** An Passkey event where invitees will be able to register and book rooms.
* **Reservation Request.** Represents a request to book rooms in the housing event.
* **RegLink.** A feature that links Passkey events to your registration events, enabling you to sync data between the two events.
-* **Callback.** [Passkey's callback system](/docs/passkey/REST/callbacks) allows for a push notification to be sent to your system when a reservation is created, modified or cancelled.
+* **Callback.** [Passkey's callback system](https://developers.cvent.com/docs/passkey/REST/callbacks) allows for a push notification to be sent to your system when a reservation is created, modified or cancelled.
### Available Operations
@@ -1119,7 +1119,7 @@ var res = await sdk.Housing.CreateReservationAsync(req);
## GetReservation
-Get reservation details for the given reservation ID. Commonly used in response to [passkey callbacks](/docs/passkey/REST/callbacks).
+Get reservation details for the given reservation ID. Commonly used in response to [passkey callbacks](https://developers.cvent.com/docs/passkey/REST/callbacks).
### Example Usage
diff --git a/packages/csharp/docs/sdks/meetingrequest/README.md b/packages/csharp/docs/sdks/meetingrequest/README.md
index 22acf9c6..8d81ce26 100644
--- a/packages/csharp/docs/sdks/meetingrequest/README.md
+++ b/packages/csharp/docs/sdks/meetingrequest/README.md
@@ -174,9 +174,9 @@ var res = await sdk.MeetingRequest.GetMRFByIdAsync(req);
## CreateMeetingRequest
-Creates a collection of meeting requests for a given active form. For complex questions such as Meeting Room Requirements, Sleeping Room Requirements, or Budget Estimates, send the answer as a JSON-serialized string. See the question schema and the [Complex Questions Guide](/docs/rest-api/guides/meeting-request-complex-questions) for details.
+Creates a collection of meeting requests for a given active form. For complex questions such as Meeting Room Requirements, Sleeping Room Requirements, or Budget Estimates, send the answer as a JSON-serialized string. See the question schema and the [Complex Questions Guide](https://developers.cvent.com/docs/rest-api/guides/meeting-request-complex-questions) for details.
-**Note:** If the meeting request form is configured to auto-create an event upon submission, the `event.id` field may not be populated in the response at the time of initial creation. Event creation is processed asynchronously after the meeting request is saved. To retrieve the associated event ID once it is available, poll the [Get MR](/documentation#tag/Meeting-Request/operation/getMeetingRequestById) endpoint.
+**Note:** If the meeting request form is configured to auto-create an event upon submission, the `event.id` field may not be populated in the response at the time of initial creation. Event creation is processed asynchronously after the meeting request is saved. To retrieve the associated event ID once it is available, poll the [Get MR](https://developers.cvent.com/documentation#tag/Meeting-Request/operation/getMeetingRequestById) endpoint.
More about OAuth2 authorization code support for administrators
<#oauth2-auth-code-planner-admin>
@@ -241,9 +241,9 @@ var res = await sdk.MeetingRequest.CreateMeetingRequestAsync(req);
## UpdateMeetingRequest
-Updates a collection of meeting requests for a given form, adding information to the existing meeting requests. For complex questions such as Meeting Room Requirements, Sleeping Room Requirements, or Budget Estimates, send the answer as a JSON-serialized string. See the question schema and the [Complex Questions Guide](/docs/rest-api/guides/meeting-request-complex-questions) for details.
+Updates a collection of meeting requests for a given form, adding information to the existing meeting requests. For complex questions such as Meeting Room Requirements, Sleeping Room Requirements, or Budget Estimates, send the answer as a JSON-serialized string. See the question schema and the [Complex Questions Guide](https://developers.cvent.com/docs/rest-api/guides/meeting-request-complex-questions) for details.
-**Note:** If the meeting request form is configured to auto-create an event upon submission, the `event.id` field may not be populated in the response at the time of the update. Event creation is processed asynchronously after the meeting request is saved. To retrieve the associated event ID once it is available, poll the [Get MR](/documentation#tag/Meeting-Request/operation/getMeetingRequestById) endpoint.
+**Note:** If the meeting request form is configured to auto-create an event upon submission, the `event.id` field may not be populated in the response at the time of the update. Event creation is processed asynchronously after the meeting request is saved. To retrieve the associated event ID once it is available, poll the [Get MR](https://developers.cvent.com/documentation#tag/Meeting-Request/operation/getMeetingRequestById) endpoint.
More about OAuth2 authorization code support for administrators
<#oauth2-auth-code-planner-admin>
diff --git a/packages/csharp/src/Cvent/SDK/Authentication.cs b/packages/csharp/src/Cvent/SDK/Authentication.cs
index 958b2c9d..49920ba1 100644
--- a/packages/csharp/src/Cvent/SDK/Authentication.cs
+++ b/packages/csharp/src/Cvent/SDK/Authentication.cs
@@ -51,7 +51,7 @@ public Task Oauth2AuthorizeAsync(
/// Token.
///
///
- /// Obtains an Access Token, an ID Token, and optionally, a Refresh Token. Read the Developer Quickstart for an example request.
+ /// Obtains an Access Token, an ID Token, and optionally, a Refresh Token. Read the Developer Quickstart for an example request.
///
/// **Note:** The token endpoint returns refresh_token only when the grant_type is authorization_code.
///
@@ -236,7 +236,7 @@ public async Task Oauth2AuthorizeAsync(
/// Token.
///
///
- /// Obtains an Access Token, an ID Token, and optionally, a Refresh Token. Read the Developer Quickstart for an example request.
+ /// Obtains an Access Token, an ID Token, and optionally, a Refresh Token. Read the Developer Quickstart for an example request.
///
/// **Note:** The token endpoint returns refresh_token only when the grant_type is authorization_code.
///
diff --git a/packages/csharp/src/Cvent/SDK/Bulk.cs b/packages/csharp/src/Cvent/SDK/Bulk.cs
index 0dab672d..8a6784b3 100644
--- a/packages/csharp/src/Cvent/SDK/Bulk.cs
+++ b/packages/csharp/src/Cvent/SDK/Bulk.cs
@@ -34,7 +34,7 @@ namespace Cvent.SDK
/// * Use get bulk job to track status
/// * Use list bulk job results to get details of items uploaded
///
- /// For more details, see the Bulk Job User Guide.
+ /// For more details, see the Bulk Job User Guide.
///
/// **Note:** These bulk jobs have a TTL and will expire once they are complete or never ran. Bulk jobs will expire
/// 1 week after creation, and this one week is refreshed when data is uploaded and the job is run. The Bulk Job
@@ -181,7 +181,7 @@ public Task ListBulkJobResultAsync(
/// * Use get bulk job to track status
/// * Use list bulk job results to get details of items uploaded
///
- /// For more details, see the Bulk Job User Guide.
+ /// For more details, see the Bulk Job User Guide.
///
/// **Note:** These bulk jobs have a TTL and will expire once they are complete or never ran. Bulk jobs will expire
/// 1 week after creation, and this one week is refreshed when data is uploaded and the job is run. The Bulk Job
diff --git a/packages/csharp/src/Cvent/SDK/Cvent.SDK.csproj b/packages/csharp/src/Cvent/SDK/Cvent.SDK.csproj
index 1e6df09f..55268bd2 100644
--- a/packages/csharp/src/Cvent/SDK/Cvent.SDK.csproj
+++ b/packages/csharp/src/Cvent/SDK/Cvent.SDK.csproj
@@ -3,7 +3,7 @@
true
Cvent.SDK
- 1.5.0
+ 1.5.1
net8.0
Cvent
Copyright (c) Cvent 2026
diff --git a/packages/csharp/src/Cvent/SDK/CventSDK.cs b/packages/csharp/src/Cvent/SDK/CventSDK.cs
index 63cfcca9..2f36b96a 100644
--- a/packages/csharp/src/Cvent/SDK/CventSDK.cs
+++ b/packages/csharp/src/Cvent/SDK/CventSDK.cs
@@ -120,7 +120,7 @@ public interface ICventSDK
/// * Use get bulk job to track status
/// * Use list bulk job results to get details of items uploaded
///
- /// For more details, see the Bulk Job User Guide.
+ /// For more details, see the Bulk Job User Guide.
///
/// **Note:** These bulk jobs have a TTL and will expire once they are complete or never ran. Bulk jobs will expire
/// 1 week after creation, and this one week is refreshed when data is uploaded and the job is run. The Bulk Job
@@ -157,7 +157,7 @@ public interface ICventSDK
/// * **Housing Event.** An Passkey event where invitees will be able to register and book rooms.
/// * **Reservation Request.** Represents a request to book rooms in the housing event.
/// * **RegLink.** A feature that links Passkey events to your registration events, enabling you to sync data between the two events.
- /// * **Callback.** Passkey's callback system allows for a push notification to be sent to your system when a reservation is created, modified or cancelled.
+ /// * **Callback.** Passkey's callback system allows for a push notification to be sent to your system when a reservation is created, modified or cancelled.
///
public IHousing Housing { get; }
diff --git a/packages/csharp/src/Cvent/SDK/Housing.cs b/packages/csharp/src/Cvent/SDK/Housing.cs
index 7e8e2c75..a23655ab 100644
--- a/packages/csharp/src/Cvent/SDK/Housing.cs
+++ b/packages/csharp/src/Cvent/SDK/Housing.cs
@@ -36,7 +36,7 @@ namespace Cvent.SDK
/// * **Housing Event.** An Passkey event where invitees will be able to register and book rooms.
/// * **Reservation Request.** Represents a request to book rooms in the housing event.
/// * **RegLink.** A feature that links Passkey events to your registration events, enabling you to sync data between the two events.
- /// * **Callback.** Passkey's callback system allows for a push notification to be sent to your system when a reservation is created, modified or cancelled.
+ /// * **Callback.** Passkey's callback system allows for a push notification to be sent to your system when a reservation is created, modified or cancelled.
///
public interface IHousing
{
@@ -387,7 +387,7 @@ public Task CreateReservationAsync(
/// Get Reservation.
///
///
- /// Get reservation details for the given reservation ID. Commonly used in response to passkey callbacks.
+ /// Get reservation details for the given reservation ID. Commonly used in response to passkey callbacks.
///
/// A parameter.
/// The retry configuration to use for this operation.
@@ -455,7 +455,7 @@ public Task UpdateReservationSyncAsync(
/// * **Housing Event.** An Passkey event where invitees will be able to register and book rooms.
/// * **Reservation Request.** Represents a request to book rooms in the housing event.
/// * **RegLink.** A feature that links Passkey events to your registration events, enabling you to sync data between the two events.
- /// * **Callback.** Passkey's callback system allows for a push notification to be sent to your system when a reservation is created, modified or cancelled.
+ /// * **Callback.** Passkey's callback system allows for a push notification to be sent to your system when a reservation is created, modified or cancelled.
///
public class Housing : IHousing
{
@@ -3466,7 +3466,7 @@ public async Task CreateReservationAsync(
/// Get Reservation.
///
///
- /// Get reservation details for the given reservation ID. Commonly used in response to passkey callbacks.
+ /// Get reservation details for the given reservation ID. Commonly used in response to passkey callbacks.
///
/// A parameter.
/// The retry configuration to use for this operation.
diff --git a/packages/csharp/src/Cvent/SDK/MeetingRequest.cs b/packages/csharp/src/Cvent/SDK/MeetingRequest.cs
index 0d679707..caa2706e 100644
--- a/packages/csharp/src/Cvent/SDK/MeetingRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/MeetingRequest.cs
@@ -88,9 +88,9 @@ public Task GetMeetingRequestByEventIdAsync(
/// More about OAuth2 authorization code support for administrators
///
///
- /// Creates a collection of meeting requests for a given active form. For complex questions such as Meeting Room Requirements, Sleeping Room Requirements, or Budget Estimates, send the answer as a JSON-serialized string. See the question schema and the Complex Questions Guide for details.
+ /// Creates a collection of meeting requests for a given active form. For complex questions such as Meeting Room Requirements, Sleeping Room Requirements, or Budget Estimates, send the answer as a JSON-serialized string. See the question schema and the Complex Questions Guide for details.
///
- /// **Note:** If the meeting request form is configured to auto-create an event upon submission, the `event.id` field may not be populated in the response at the time of initial creation. Event creation is processed asynchronously after the meeting request is saved. To retrieve the associated event ID once it is available, poll the Get MR endpoint.
+ /// **Note:** If the meeting request form is configured to auto-create an event upon submission, the `event.id` field may not be populated in the response at the time of initial creation. Event creation is processed asynchronously after the meeting request is saved. To retrieve the associated event ID once it is available, poll the Get MR endpoint.
///
/// A parameter.
/// The retry configuration to use for this operation.
@@ -110,9 +110,9 @@ public Task CreateMeetingRequestAsync(
/// More about OAuth2 authorization code support for administrators
///
///
- /// Updates a collection of meeting requests for a given form, adding information to the existing meeting requests. For complex questions such as Meeting Room Requirements, Sleeping Room Requirements, or Budget Estimates, send the answer as a JSON-serialized string. See the question schema and the Complex Questions Guide for details.
+ /// Updates a collection of meeting requests for a given form, adding information to the existing meeting requests. For complex questions such as Meeting Room Requirements, Sleeping Room Requirements, or Budget Estimates, send the answer as a JSON-serialized string. See the question schema and the Complex Questions Guide for details.
///
- /// **Note:** If the meeting request form is configured to auto-create an event upon submission, the `event.id` field may not be populated in the response at the time of the update. Event creation is processed asynchronously after the meeting request is saved. To retrieve the associated event ID once it is available, poll the Get MR endpoint.
+ /// **Note:** If the meeting request form is configured to auto-create an event upon submission, the `event.id` field may not be populated in the response at the time of the update. Event creation is processed asynchronously after the meeting request is saved. To retrieve the associated event ID once it is available, poll the Get MR endpoint.
///
/// A parameter.
/// The retry configuration to use for this operation.
@@ -753,9 +753,9 @@ public async Task GetMRFByIdAsync(
/// More about OAuth2 authorization code support for administrators
///
///
- /// Creates a collection of meeting requests for a given active form. For complex questions such as Meeting Room Requirements, Sleeping Room Requirements, or Budget Estimates, send the answer as a JSON-serialized string. See the question schema and the Complex Questions Guide for details.
+ /// Creates a collection of meeting requests for a given active form. For complex questions such as Meeting Room Requirements, Sleeping Room Requirements, or Budget Estimates, send the answer as a JSON-serialized string. See the question schema and the Complex Questions Guide for details.
///
- /// **Note:** If the meeting request form is configured to auto-create an event upon submission, the `event.id` field may not be populated in the response at the time of initial creation. Event creation is processed asynchronously after the meeting request is saved. To retrieve the associated event ID once it is available, poll the Get MR endpoint.
+ /// **Note:** If the meeting request form is configured to auto-create an event upon submission, the `event.id` field may not be populated in the response at the time of initial creation. Event creation is processed asynchronously after the meeting request is saved. To retrieve the associated event ID once it is available, poll the Get MR endpoint.
///
/// A parameter.
/// The retry configuration to use for this operation.
@@ -928,9 +928,9 @@ public async Task CreateMeetingRequestAsync(
/// More about OAuth2 authorization code support for administrators
///
///
- /// Updates a collection of meeting requests for a given form, adding information to the existing meeting requests. For complex questions such as Meeting Room Requirements, Sleeping Room Requirements, or Budget Estimates, send the answer as a JSON-serialized string. See the question schema and the Complex Questions Guide for details.
+ /// Updates a collection of meeting requests for a given form, adding information to the existing meeting requests. For complex questions such as Meeting Room Requirements, Sleeping Room Requirements, or Budget Estimates, send the answer as a JSON-serialized string. See the question schema and the Complex Questions Guide for details.
///
- /// **Note:** If the meeting request form is configured to auto-create an event upon submission, the `event.id` field may not be populated in the response at the time of the update. Event creation is processed asynchronously after the meeting request is saved. To retrieve the associated event ID once it is available, poll the Get MR endpoint.
+ /// **Note:** If the meeting request form is configured to auto-create an event upon submission, the `event.id` field may not be populated in the response at the time of the update. Event creation is processed asynchronously after the meeting request is saved. To retrieve the associated event ID once it is available, poll the Get MR endpoint.
///
/// A parameter.
/// The retry configuration to use for this operation.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AttendeeContactInfo.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AttendeeContactInfo.cs
index 06c0c4df..34898c88 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/AttendeeContactInfo.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/AttendeeContactInfo.cs
@@ -21,28 +21,28 @@ namespace Cvent.SDK.Models.Components
public class AttendeeContactInfo
{
///
- /// The ISO 8601 zoned date time when an attendee record was created. Note: This field is deprecated. Please use the Get Contact or List Contact endpoints for contact audit details.
+ /// The ISO 8601 zoned date time when an attendee record was created. Note: This field is deprecated. Please use the Get Contact or List Contact endpoints for contact audit details.
///
[Obsolete("This field will be removed in a future release, please migrate away from it as soon as possible")]
[JsonProperty("created")]
public DateTime? Created { get; set; }
///
- /// The identifier of the user that created this attendee record. Note: This field is deprecated. Please use the Get Contact or List Contact endpoints for contact audit details.
+ /// The identifier of the user that created this attendee record. Note: This field is deprecated. Please use the Get Contact or List Contact endpoints for contact audit details.
///
[Obsolete("This field will be removed in a future release, please migrate away from it as soon as possible")]
[JsonProperty("createdBy")]
public string? CreatedBy { get; set; }
///
- /// The ISO 8601 zoned date time when this attendee record was updated. Note: This field is deprecated. Please use the Get Contact or List Contact endpoints for contact audit details.
+ /// The ISO 8601 zoned date time when this attendee record was updated. Note: This field is deprecated. Please use the Get Contact or List Contact endpoints for contact audit details.
///
[Obsolete("This field will be removed in a future release, please migrate away from it as soon as possible")]
[JsonProperty("lastModified")]
public DateTime? LastModified { get; set; }
///
- /// The identifier of the user that last updated this attendee record. Note: This field is deprecated. Please use the Get Contact or List Contact endpoints for contact audit details.
+ /// The identifier of the user that last updated this attendee record. Note: This field is deprecated. Please use the Get Contact or List Contact endpoints for contact audit details.
///
[Obsolete("This field will be removed in a future release, please migrate away from it as soon as possible")]
[JsonProperty("lastModifiedBy")]
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/Event1.cs b/packages/csharp/src/Cvent/SDK/Models/Components/Event1.cs
index e4f07267..a2823e40 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/Event1.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/Event1.cs
@@ -88,7 +88,7 @@ public class Event1
public DateTime? LaunchAfter { get; set; }
///
- /// List of supported timezones.
+ /// List of supported timezones.
///
[JsonProperty("timezone")]
public string Timezone { get; set; } = default!;
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/EventInput.cs b/packages/csharp/src/Cvent/SDK/Models/Components/EventInput.cs
index 67187bde..a3c78c81 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/EventInput.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/EventInput.cs
@@ -51,7 +51,7 @@ public class EventInput
public DateTime? End { get; set; }
///
- /// List of supported timezones.
+ /// List of supported timezones.
///
[JsonProperty("timezone")]
public string Timezone { get; set; } = default!;
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/EventUpdate.cs b/packages/csharp/src/Cvent/SDK/Models/Components/EventUpdate.cs
index e569183f..ae15f67f 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/EventUpdate.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/EventUpdate.cs
@@ -88,7 +88,7 @@ public class EventUpdate
public DateTime? LaunchAfter { get; set; }
///
- /// List of supported timezones.
+ /// List of supported timezones.
///
[JsonProperty("timezone")]
public string Timezone { get; set; } = default!;
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/EventUpdateInput.cs b/packages/csharp/src/Cvent/SDK/Models/Components/EventUpdateInput.cs
index 856c95fe..1c563236 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/EventUpdateInput.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/EventUpdateInput.cs
@@ -63,7 +63,7 @@ public class EventUpdateInput
public DateTime? ArchiveAfter { get; set; }
///
- /// List of supported timezones.
+ /// List of supported timezones.
///
[JsonProperty("timezone")]
public string Timezone { get; set; } = default!;
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/GetAccountBudgetItemsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/GetAccountBudgetItemsRequest.cs
index e39b2441..dc8fae51 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/GetAccountBudgetItemsRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/GetAccountBudgetItemsRequest.cs
@@ -42,7 +42,7 @@ public class GetAccountBudgetItemsRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/GetAccountVendorsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/GetAccountVendorsRequest.cs
index 82d389a2..4e236b52 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/GetAccountVendorsRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/GetAccountVendorsRequest.cs
@@ -42,7 +42,7 @@ public class GetAccountVendorsRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/GetAirActualDetailRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/GetAirActualDetailRequest.cs
index e585c94a..38104244 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/GetAirActualDetailRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/GetAirActualDetailRequest.cs
@@ -69,7 +69,7 @@ public class GetAirActualDetailRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/GetAirRequestsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/GetAirRequestsRequest.cs
index 87ed51a1..2bd980a8 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/GetAirRequestsRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/GetAirRequestsRequest.cs
@@ -60,7 +60,7 @@ public class GetAirRequestsRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/GetAllEventSurveyResponsesRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/GetAllEventSurveyResponsesRequest.cs
index 95eb5c58..39639ee2 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/GetAllEventSurveyResponsesRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/GetAllEventSurveyResponsesRequest.cs
@@ -42,7 +42,7 @@ public class GetAllEventSurveyResponsesRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/GetAlternateTravelAnswersRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/GetAlternateTravelAnswersRequest.cs
index aa9b595c..f254dcc2 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/GetAlternateTravelAnswersRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/GetAlternateTravelAnswersRequest.cs
@@ -42,7 +42,7 @@ public class GetAlternateTravelAnswersRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/GetBudgetAllocationsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/GetBudgetAllocationsRequest.cs
index 0603992d..27bebc07 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/GetBudgetAllocationsRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/GetBudgetAllocationsRequest.cs
@@ -42,7 +42,7 @@ public class GetBudgetAllocationsRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/GetBudgetItemsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/GetBudgetItemsRequest.cs
index 950f1d42..f59fa2f6 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/GetBudgetItemsRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/GetBudgetItemsRequest.cs
@@ -48,7 +48,7 @@ public class GetBudgetItemsRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/GetCardTransactionsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/GetCardTransactionsRequest.cs
index 351b0053..d15975e9 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/GetCardTransactionsRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/GetCardTransactionsRequest.cs
@@ -42,7 +42,7 @@ public class GetCardTransactionsRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/GetCardsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/GetCardsRequest.cs
index 37e99486..deaf39d3 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/GetCardsRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/GetCardsRequest.cs
@@ -29,7 +29,7 @@ public class GetCardsRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/GetCurrencyConversionRateRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/GetCurrencyConversionRateRequest.cs
index c8d0b906..7e306feb 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/GetCurrencyConversionRateRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/GetCurrencyConversionRateRequest.cs
@@ -48,7 +48,7 @@ public class GetCurrencyConversionRateRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/GetEventBudgetTotalsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/GetEventBudgetTotalsRequest.cs
index c112ac40..a20e4e85 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/GetEventBudgetTotalsRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/GetEventBudgetTotalsRequest.cs
@@ -48,7 +48,7 @@ public class GetEventBudgetTotalsRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/GetEventFeaturesRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/GetEventFeaturesRequest.cs
index 6904ac94..02c7b6d2 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/GetEventFeaturesRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/GetEventFeaturesRequest.cs
@@ -35,7 +35,7 @@ public class GetEventFeaturesRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/GetEventSurveyRespondentsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/GetEventSurveyRespondentsRequest.cs
index c4d24700..6d9ef086 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/GetEventSurveyRespondentsRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/GetEventSurveyRespondentsRequest.cs
@@ -54,7 +54,7 @@ public class GetEventSurveyRespondentsRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/GetEventSurveyResponsesRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/GetEventSurveyResponsesRequest.cs
index ca7dbd63..aab03855 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/GetEventSurveyResponsesRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/GetEventSurveyResponsesRequest.cs
@@ -42,7 +42,7 @@ public class GetEventSurveyResponsesRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/GetEventSurveysRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/GetEventSurveysRequest.cs
index cdfbcb4b..a5f5d9e9 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/GetEventSurveysRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/GetEventSurveysRequest.cs
@@ -42,7 +42,7 @@ public class GetEventSurveysRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/GetHotelRequestsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/GetHotelRequestsRequest.cs
index a0d252ea..a7d88584 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/GetHotelRequestsRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/GetHotelRequestsRequest.cs
@@ -69,7 +69,7 @@ public class GetHotelRequestsRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/GetHousingReservationRequestsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/GetHousingReservationRequestsRequest.cs
index 4a7f20dc..59a1ca5c 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/GetHousingReservationRequestsRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/GetHousingReservationRequestsRequest.cs
@@ -42,7 +42,7 @@ public class GetHousingReservationRequestsRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/GetHubMembersRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/GetHubMembersRequest.cs
index 009c1b31..047b5bd9 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/GetHubMembersRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/GetHubMembersRequest.cs
@@ -35,7 +35,7 @@ public class GetHubMembersRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/GetLargeChoicesRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/GetLargeChoicesRequest.cs
index c47325f0..11fc50f8 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/GetLargeChoicesRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/GetLargeChoicesRequest.cs
@@ -29,7 +29,7 @@ public class GetLargeChoicesRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/GetOrderItemsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/GetOrderItemsRequest.cs
index 28fec2c7..98d9d1dc 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/GetOrderItemsRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/GetOrderItemsRequest.cs
@@ -48,7 +48,7 @@ public class GetOrderItemsRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/GetOrdersRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/GetOrdersRequest.cs
index 8b4e6467..6eb20028 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/GetOrdersRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/GetOrdersRequest.cs
@@ -48,7 +48,7 @@ public class GetOrdersRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/GetPaymentsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/GetPaymentsRequest.cs
index 6c101857..e9aa53cc 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/GetPaymentsRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/GetPaymentsRequest.cs
@@ -48,7 +48,7 @@ public class GetPaymentsRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/GetQuestionsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/GetQuestionsRequest.cs
index 305d78c1..bff6535d 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/GetQuestionsRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/GetQuestionsRequest.cs
@@ -42,7 +42,7 @@ public class GetQuestionsRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/GetRespondentsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/GetRespondentsRequest.cs
index 6e8330c1..4d3e9b43 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/GetRespondentsRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/GetRespondentsRequest.cs
@@ -42,7 +42,7 @@ public class GetRespondentsRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/GetResponsesRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/GetResponsesRequest.cs
index 727d294f..f1d71159 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/GetResponsesRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/GetResponsesRequest.cs
@@ -42,7 +42,7 @@ public class GetResponsesRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/GetStandardSurveyRespondentsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/GetStandardSurveyRespondentsRequest.cs
index 95f78cb9..ee2cecf2 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/GetStandardSurveyRespondentsRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/GetStandardSurveyRespondentsRequest.cs
@@ -48,7 +48,7 @@ public class GetStandardSurveyRespondentsRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/GetStandardSurveyResponsesRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/GetStandardSurveyResponsesRequest.cs
index e9565ee5..966cb738 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/GetStandardSurveyResponsesRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/GetStandardSurveyResponsesRequest.cs
@@ -42,7 +42,7 @@ public class GetStandardSurveyResponsesRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/GetStandardSurveysRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/GetStandardSurveysRequest.cs
index 748610eb..c51d16b4 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/GetStandardSurveysRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/GetStandardSurveysRequest.cs
@@ -42,7 +42,7 @@ public class GetStandardSurveysRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/GetSurveyRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/GetSurveyRequest.cs
index 2422a126..c9273746 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/GetSurveyRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/GetSurveyRequest.cs
@@ -42,7 +42,7 @@ public class GetSurveyRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/GetTransactionItemsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/GetTransactionItemsRequest.cs
index 2bd10283..782757d5 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/GetTransactionItemsRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/GetTransactionItemsRequest.cs
@@ -48,7 +48,7 @@ public class GetTransactionItemsRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/GetTransactionsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/GetTransactionsRequest.cs
index 6ea4d28f..dc01b0f7 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/GetTransactionsRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/GetTransactionsRequest.cs
@@ -48,7 +48,7 @@ public class GetTransactionsRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/GetVideoViewsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/GetVideoViewsRequest.cs
index 4d35ba0e..2769c5b3 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/GetVideoViewsRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/GetVideoViewsRequest.cs
@@ -42,7 +42,7 @@ public class GetVideoViewsRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/ListAssociatedAudienceSegmentsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/ListAssociatedAudienceSegmentsRequest.cs
index b71fbf90..b37eff58 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/ListAssociatedAudienceSegmentsRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/ListAssociatedAudienceSegmentsRequest.cs
@@ -36,7 +36,7 @@ public class ListAssociatedAudienceSegmentsRequest
///
/// Use the filter property in the request body to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/ListAttendeeActivitiesRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/ListAttendeeActivitiesRequest.cs
index d1011fd5..e00655b4 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/ListAttendeeActivitiesRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/ListAttendeeActivitiesRequest.cs
@@ -42,7 +42,7 @@ public class ListAttendeeActivitiesRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/ListAttendeeAudienceSegmentsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/ListAttendeeAudienceSegmentsRequest.cs
index e5bd7524..922f6954 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/ListAttendeeAudienceSegmentsRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/ListAttendeeAudienceSegmentsRequest.cs
@@ -35,7 +35,7 @@ public class ListAttendeeAudienceSegmentsRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/ListAttendeeLinksRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/ListAttendeeLinksRequest.cs
index 9a6a764d..ab9cca82 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/ListAttendeeLinksRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/ListAttendeeLinksRequest.cs
@@ -42,7 +42,7 @@ public class ListAttendeeLinksRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/ListAttendeesRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/ListAttendeesRequest.cs
index c7725439..32682e33 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/ListAttendeesRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/ListAttendeesRequest.cs
@@ -90,7 +90,7 @@ public class ListAttendeesRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/ListAudienceSegmentsPostFilterRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/ListAudienceSegmentsPostFilterRequest.cs
index c58244d1..e27c2a0c 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/ListAudienceSegmentsPostFilterRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/ListAudienceSegmentsPostFilterRequest.cs
@@ -60,7 +60,7 @@ public class ListAudienceSegmentsPostFilterRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/ListAudienceSegmentsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/ListAudienceSegmentsRequest.cs
index 0d36eb3a..fd2bb280 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/ListAudienceSegmentsRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/ListAudienceSegmentsRequest.cs
@@ -47,7 +47,7 @@ public class ListAudienceSegmentsRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/ListContactGroupsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/ListContactGroupsRequest.cs
index 7e18471b..ba0ae951 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/ListContactGroupsRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/ListContactGroupsRequest.cs
@@ -42,7 +42,7 @@ public class ListContactGroupsRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/ListContactTypesRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/ListContactTypesRequest.cs
index 2fa72a93..fbe56716 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/ListContactTypesRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/ListContactTypesRequest.cs
@@ -29,7 +29,7 @@ public class ListContactTypesRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/ListContactsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/ListContactsRequest.cs
index 127bc803..3f9b6294 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/ListContactsRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/ListContactsRequest.cs
@@ -42,7 +42,7 @@ public class ListContactsRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/ListDiscountedAgendaItemsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/ListDiscountedAgendaItemsRequest.cs
index 16e29761..7588a2c9 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/ListDiscountedAgendaItemsRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/ListDiscountedAgendaItemsRequest.cs
@@ -35,7 +35,7 @@ public class ListDiscountedAgendaItemsRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/ListDonationItemsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/ListDonationItemsRequest.cs
index 88eab1df..843153f0 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/ListDonationItemsRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/ListDonationItemsRequest.cs
@@ -35,7 +35,7 @@ public class ListDonationItemsRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/ListDurationsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/ListDurationsRequest.cs
index d44b7ca2..d54ca101 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/ListDurationsRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/ListDurationsRequest.cs
@@ -62,7 +62,7 @@ public class ListDurationsRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/ListEventDiscountsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/ListEventDiscountsRequest.cs
index f02e4e9f..6b903f5a 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/ListEventDiscountsRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/ListEventDiscountsRequest.cs
@@ -56,7 +56,7 @@ public class ListEventDiscountsRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/ListEventVouchersRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/ListEventVouchersRequest.cs
index f30240aa..1f1db872 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/ListEventVouchersRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/ListEventVouchersRequest.cs
@@ -63,7 +63,7 @@ public class ListEventVouchersRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/ListExternalAttendeeActivitiesMetadataRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/ListExternalAttendeeActivitiesMetadataRequest.cs
index cc7ccefa..fe4f0aa0 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/ListExternalAttendeeActivitiesMetadataRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/ListExternalAttendeeActivitiesMetadataRequest.cs
@@ -42,7 +42,7 @@ public class ListExternalAttendeeActivitiesMetadataRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/ListFeeItemsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/ListFeeItemsRequest.cs
index 146d2f1f..89cccb3f 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/ListFeeItemsRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/ListFeeItemsRequest.cs
@@ -35,7 +35,7 @@ public class ListFeeItemsRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/ListHubsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/ListHubsRequest.cs
index c4db5688..982f2019 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/ListHubsRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/ListHubsRequest.cs
@@ -29,7 +29,7 @@ public class ListHubsRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/ListMembershipItemsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/ListMembershipItemsRequest.cs
index 57ae47c3..a94b179a 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/ListMembershipItemsRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/ListMembershipItemsRequest.cs
@@ -35,7 +35,7 @@ public class ListMembershipItemsRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/ListPlayersRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/ListPlayersRequest.cs
index 634bf91e..372caba8 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/ListPlayersRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/ListPlayersRequest.cs
@@ -42,7 +42,7 @@ public class ListPlayersRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/ListProgramItemsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/ListProgramItemsRequest.cs
index a60575a3..1c848369 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/ListProgramItemsRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/ListProgramItemsRequest.cs
@@ -29,7 +29,7 @@ public class ListProgramItemsRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/ListQuantityItemsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/ListQuantityItemsRequest.cs
index 2319b2fa..462effec 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/ListQuantityItemsRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/ListQuantityItemsRequest.cs
@@ -35,7 +35,7 @@ public class ListQuantityItemsRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/ListSegmentAssociatedAttendeesRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/ListSegmentAssociatedAttendeesRequest.cs
index 92bea894..c8468a21 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/ListSegmentAssociatedAttendeesRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/ListSegmentAssociatedAttendeesRequest.cs
@@ -48,7 +48,7 @@ public class ListSegmentAssociatedAttendeesRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/ListSessionDocsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/ListSessionDocsRequest.cs
index 3686e293..7e3ccb5d 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/ListSessionDocsRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/ListSessionDocsRequest.cs
@@ -35,7 +35,7 @@ public class ListSessionDocsRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/ListSessionsCategoriesRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/ListSessionsCategoriesRequest.cs
index 8277c9a4..027d7f8b 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/ListSessionsCategoriesRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/ListSessionsCategoriesRequest.cs
@@ -43,7 +43,7 @@ public class ListSessionsCategoriesRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/ListSessionsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/ListSessionsRequest.cs
index 30733577..1951d2d9 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/ListSessionsRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/ListSessionsRequest.cs
@@ -69,7 +69,7 @@ public class ListSessionsRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/ListTaxesRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/ListTaxesRequest.cs
index c90e066e..e7fd10f2 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/ListTaxesRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/ListTaxesRequest.cs
@@ -35,7 +35,7 @@ public class ListTaxesRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/ListVideosRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/ListVideosRequest.cs
index dfd0a6fd..f01034dd 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/ListVideosRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/ListVideosRequest.cs
@@ -42,7 +42,7 @@ public class ListVideosRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/ListWebcastAttendeeLinksRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/ListWebcastAttendeeLinksRequest.cs
index d3f1c98c..45e3cc45 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/ListWebcastAttendeeLinksRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/ListWebcastAttendeeLinksRequest.cs
@@ -48,7 +48,7 @@ public class ListWebcastAttendeeLinksRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/ListWebcastsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/ListWebcastsRequest.cs
index 83d3a814..fb88b19c 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/ListWebcastsRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/ListWebcastsRequest.cs
@@ -42,7 +42,7 @@ public class ListWebcastsRequest
///
/// Use filter query parameters to limit results
/// to data that matches your criteria. See
- /// Filters for details.
+ /// Filters for details.
///
/// Supported fields and operators are listed below:
///
diff --git a/packages/csharp/src/Cvent/SDK/SDKConfig.cs b/packages/csharp/src/Cvent/SDK/SDKConfig.cs
index f786d2b4..4a646ab4 100644
--- a/packages/csharp/src/Cvent/SDK/SDKConfig.cs
+++ b/packages/csharp/src/Cvent/SDK/SDKConfig.cs
@@ -46,7 +46,7 @@ public SDKConfig(ICventSDKHttpClient? client = null)
Client = client ?? new CventSDKHttpClient();
ServerUrl = "";
ServerIndex = 0;
- UserAgent = "speakeasy-sdk/csharp 1.5.0 2.859.2 ea Cvent.SDK";
+ UserAgent = "speakeasy-sdk/csharp 1.5.1 2.859.2 ea Cvent.SDK";
SecuritySource = null;
Hooks = new SDKHooks();
RetryConfig = null;
diff --git a/packages/csharp/src/Cvent/SDK/Utils/Constants.cs b/packages/csharp/src/Cvent/SDK/Utils/Constants.cs
index 00f67fc7..b60155cc 100644
--- a/packages/csharp/src/Cvent/SDK/Utils/Constants.cs
+++ b/packages/csharp/src/Cvent/SDK/Utils/Constants.cs
@@ -22,7 +22,7 @@ public static class Constants
///
/// The version of the SDK.
///
- public const string SdkVersion = "1.5.0";
+ public const string SdkVersion = "1.5.1";
///
/// The version of the SDK generator used to create this SDK.
diff --git a/packages/java/.speakeasy/gen.lock b/packages/java/.speakeasy/gen.lock
index 458077d2..f40adc3a 100644
--- a/packages/java/.speakeasy/gen.lock
+++ b/packages/java/.speakeasy/gen.lock
@@ -1,12 +1,12 @@
lockVersion: 2.0.0
id: 795b0bc6-b124-44d6-a714-d4fdbc56212b
management:
- docChecksum: 366f3963ef9a456f6e28208f71114563
+ docChecksum: 8bccf1f5577de0d50c061573c9b1f18c
docVersion: ea
speakeasyVersion: 1.752.0
generationVersion: 2.859.2
- releaseVersion: 1.5.0
- configChecksum: fd9e1826243ea7eb4392aeda17bead0f
+ releaseVersion: 1.5.1
+ configChecksum: c38892c4f315d488534ec8bc5e5bd521
published: true
persistentEdits:
generation_id: 6ad3309a-d2a1-4e74-a3ae-065e16d1999e
@@ -583,7 +583,7 @@ trackedFiles:
docs/models/components/AttendeeAudienceSegmentAssociationsPaginatedResponse.md:
last_write_checksum: sha1:27c604d76a8e4cb41b675bbb4cecb6fcd08fa5c7
docs/models/components/AttendeeContactInfo.md:
- last_write_checksum: sha1:9664d69135d1eebc164edeeab68a1386862f42a8
+ last_write_checksum: sha1:d5d839eb9f3bcc9c9c2e3e9cd1c4981a200a9b7b
docs/models/components/AttendeeContactMembership.md:
last_write_checksum: sha1:64d162abbb51639fdb7733e9d599650d8f914e01
docs/models/components/AttendeeContactType.md:
@@ -1895,7 +1895,7 @@ trackedFiles:
last_write_checksum: sha1:5851835e3497f510087bdda92324a12a002386ae
pristine_git_object: 9ce8bdfcda156eeba556af2f95b02f66a9b9ceab
docs/models/components/Event1.md:
- last_write_checksum: sha1:bf3ac7bb7556acc4cc31a93fc17abcee4c274bbb
+ last_write_checksum: sha1:4ab8f455b4bb966fa9f85890ba94e1407c8aa5d4
docs/models/components/Event12.md:
last_write_checksum: sha1:0d4983a839310cb94bebdc9d91ff39be9e146fff
docs/models/components/Event2.md:
@@ -2034,7 +2034,7 @@ trackedFiles:
last_write_checksum: sha1:37bbc81545cf122f335d7e4ff261af37fe7eab06
docs/models/components/EventInput.md:
id: "505336032273"
- last_write_checksum: sha1:84e9eb1962a9520635630e9dbc0bc5955c8ef657
+ last_write_checksum: sha1:fc80842ac3d7a330c470e84e3595b6385cf443dc
pristine_git_object: 891135a275f663a7d9393bc570d594391eb9ca44
docs/models/components/EventJson.md:
last_write_checksum: sha1:2e5284b7240a425f5855c96fb4bd920596895b47
@@ -2218,11 +2218,11 @@ trackedFiles:
last_write_checksum: sha1:65ba76c09081719b4125560245d86d6706033727
docs/models/components/EventUpdate.md:
id: 67528f16165b
- last_write_checksum: sha1:a8bccfdd6744c6d93cd8e0da1b78e27bba4347f6
+ last_write_checksum: sha1:45783809c785d602ee9ad88ed4153fb480a394ce
pristine_git_object: 7ae33e0cd6721a2e25170dc004195ea8cdc45395
docs/models/components/EventUpdateInput.md:
id: 5947df2c1cea
- last_write_checksum: sha1:fdc86debcbdf0f8e0eab43dafcecf53741c2bea3
+ last_write_checksum: sha1:5978dc852c1d26ecef22f4872c9d294c2b4eff9e
pristine_git_object: ffc5014312b975c79e71c51e7442d2b81af92161
docs/models/components/EventUpdateLookup.md:
id: 083575f546bb
@@ -6012,7 +6012,7 @@ trackedFiles:
pristine_git_object: fe73aa7a60e429097a75d48d3bd7134a1365cf9b
docs/models/operations/GetAccountBudgetItemsRequest.md:
id: c09b80db67f8
- last_write_checksum: sha1:abcbe9b040a06980bab8e9a5af38cc1c399d1595
+ last_write_checksum: sha1:4e5280534db3c55cfe81675ce86dff53c01d201c
pristine_git_object: 69045966cdbd01c78b2960ce162944cece60b35c
docs/models/operations/GetAccountBudgetItemsResponse.md:
id: 0c38d2ac6ed3
@@ -6035,12 +6035,12 @@ trackedFiles:
last_write_checksum: sha1:4b29ff1662bc76f73649ead758342a246afd5cd2
pristine_git_object: 63a06080a790915e7e1500e7903db1bad01ae0b6
docs/models/operations/GetAccountVendorsRequest.md:
- last_write_checksum: sha1:d01d376363a770a46b89430e3f5f4794b98b1f68
+ last_write_checksum: sha1:f5c61ceb4bff4d7e7dacef82f81786dab726a328
docs/models/operations/GetAccountVendorsResponse.md:
last_write_checksum: sha1:776e428bda02501d9a91a7df68b5906122efc465
docs/models/operations/GetAirActualDetailRequest.md:
id: b46d405156ff
- last_write_checksum: sha1:e8d20ff6c1042fc42de5cbfc6c798c170ae2a22b
+ last_write_checksum: sha1:8133e839c76284f4a1585314cc5626499ced9523
pristine_git_object: e9a62f37b6ee6632357eb35a5270047f878842a6
docs/models/operations/GetAirActualDetailResponse.md:
id: a440403b9697
@@ -6048,7 +6048,7 @@ trackedFiles:
pristine_git_object: 970c47cb1de97a0595745e9e4af02e0ca60ac486
docs/models/operations/GetAirRequestsRequest.md:
id: c88249ec3880
- last_write_checksum: sha1:c48edf054cece0bc25f1c85fd7292fb1f0c071f5
+ last_write_checksum: sha1:f9b241162b4ae49b1905f1f5300e72f65edc838d
pristine_git_object: 4dd2334dc9f0777229f55cf4dda05229ad385376
docs/models/operations/GetAirRequestsResponse.md:
id: dbb174f2c6da
@@ -6056,14 +6056,14 @@ trackedFiles:
pristine_git_object: 82c1491d037d39dc95d5bfa4c062f8ef1eefff01
docs/models/operations/GetAllEventSurveyResponsesRequest.md:
id: cf17ecf49452
- last_write_checksum: sha1:565de253c970b510267b12b5ae0c499a393622b7
+ last_write_checksum: sha1:20bc4039d1194a9122eed1b16b7c8580bac02fd0
pristine_git_object: 5a7debdf040cb9c3109846f57ce567e4778ccd30
docs/models/operations/GetAllEventSurveyResponsesResponse.md:
id: d81eaa61239b
last_write_checksum: sha1:7bee8aa4e232a9c6e93e4efbe402df741e97b005
pristine_git_object: f9edc9c6d523f1c7e776b0f58f62349b8e391c07
docs/models/operations/GetAlternateTravelAnswersRequest.md:
- last_write_checksum: sha1:207cd4beccfe936e459184f57a744ce3d84b0353
+ last_write_checksum: sha1:37ec3c90eca0e98ab9bc7e5642a4fe0d8f459939
docs/models/operations/GetAlternateTravelAnswersResponse.md:
last_write_checksum: sha1:3fb5dbdb9200c8e1c1cb5baba6511ea0724b6d80
docs/models/operations/GetAppointmentAttendeeByIdRequest.md:
@@ -6196,7 +6196,7 @@ trackedFiles:
pristine_git_object: 028b03dcff6f88111678f3c24916ecc4775f79f2
docs/models/operations/GetBudgetAllocationsRequest.md:
id: 7d7eed77f6a4
- last_write_checksum: sha1:817b040aaef64a0b5a645589f1ca0323e8bc2a1e
+ last_write_checksum: sha1:4301967906607c13d58cf3654e012fcaaf6ea333
pristine_git_object: 79988422248e3717944c8138778b1ec8697c1172
docs/models/operations/GetBudgetAllocationsResponse.md:
id: 0b84ec5ea114
@@ -6204,7 +6204,7 @@ trackedFiles:
pristine_git_object: b8ee79490fd42f1e51931b5aa868d8a7e1f573bd
docs/models/operations/GetBudgetItemsRequest.md:
id: 88ba84c690f3
- last_write_checksum: sha1:fc391396ebed69b860def8b2f43a5be27b6a5ae1
+ last_write_checksum: sha1:a27324ddf60666c99fb3fe03d9c561adee0ea679
pristine_git_object: 52a2e403b3adb758dbf453df239e29a6556e6acf
docs/models/operations/GetBudgetItemsResponse.md:
id: 7e9e381a6579
@@ -6228,7 +6228,7 @@ trackedFiles:
pristine_git_object: de8daf1654a6a9473682eb1b2b6701ea7c4c577f
docs/models/operations/GetCardTransactionsRequest.md:
id: 8cac48addd1a
- last_write_checksum: sha1:5b837b1c766abe35f7b63ff6266013ad7a18044a
+ last_write_checksum: sha1:6c344ca35a1c5ba607e9624f31127c17f9f1d255
pristine_git_object: 60d7357a308f9ce4356d2d79c8ad5cb9f12d64b3
docs/models/operations/GetCardTransactionsResponse.md:
id: f1e107d318f3
@@ -6236,7 +6236,7 @@ trackedFiles:
pristine_git_object: ca2d1bf82d0e2f4b1a3478850d008ff90605704b
docs/models/operations/GetCardsRequest.md:
id: 2460704d1b34
- last_write_checksum: sha1:8532460fa90b21d14397cb72ca2945b1e1668316
+ last_write_checksum: sha1:38365d1e0ff4e698cadebda65949d577e1d6ee0a
pristine_git_object: eed3cbef5474c8da7732a9ca6e41414ec4ad8acf
docs/models/operations/GetCardsResponse.md:
id: 1dcb5a256cef
@@ -6312,7 +6312,7 @@ trackedFiles:
pristine_git_object: 44a80ba0c14b39ea25d15e811235439ec99e2f92
docs/models/operations/GetCurrencyConversionRateRequest.md:
id: baf035114480
- last_write_checksum: sha1:98d3821b1b753e26265396b1a8bc81fa05c4ae59
+ last_write_checksum: sha1:787bc0ee12b174b7cf5498e9bf079c2f73160586
pristine_git_object: 2874ac5987ff42a14a2d48473d9f559a908ac250
docs/models/operations/GetCurrencyConversionRateResponse.md:
id: 35926a480528
@@ -6384,7 +6384,7 @@ trackedFiles:
pristine_git_object: bdccfa8df6d8f02073f1054c1a04c2ba60e925e1
docs/models/operations/GetEventBudgetTotalsRequest.md:
id: ff92b56a74e0
- last_write_checksum: sha1:0fcab2ba268e54533b51e5e60e89ee442268fc9b
+ last_write_checksum: sha1:9aab6ae9988f9174eada26b2873544fb934dc755
pristine_git_object: d6ee1164388ff583a1274152d1c2a96a95839e54
docs/models/operations/GetEventBudgetTotalsResponse.md:
id: 856d87617836
@@ -6416,7 +6416,7 @@ trackedFiles:
pristine_git_object: 478f33514832385d4dcc05d1a6d0c2504800597a
docs/models/operations/GetEventFeaturesRequest.md:
id: 100a01d83846
- last_write_checksum: sha1:912bd800cb449630c7772d7013758088cd5758cc
+ last_write_checksum: sha1:bec3ce0861278e55736d428852700df7a78b5d4c
pristine_git_object: fdef497692a715f65e03f39f66d389d17f59c745
docs/models/operations/GetEventFeaturesResponse.md:
id: 5d4f684cd2c8
@@ -6444,7 +6444,7 @@ trackedFiles:
pristine_git_object: 42cdff2768e0b61dc11c367dfd11293bd20040a4
docs/models/operations/GetEventSurveyRespondentsRequest.md:
id: 52e37df303d8
- last_write_checksum: sha1:a0cf87cb1033a571a4725ac6211657dd8f323619
+ last_write_checksum: sha1:9c409d0cbc8ddf30bb585e924451ab0f1ac89007
pristine_git_object: e0777917ef4f9258e7c86feb438bfe4456140def
docs/models/operations/GetEventSurveyRespondentsResponse.md:
id: 7f7273b40375
@@ -6452,7 +6452,7 @@ trackedFiles:
pristine_git_object: 162a189ccfad6b9ddf89787c0a67c1c9046b926e
docs/models/operations/GetEventSurveyResponsesRequest.md:
id: 49043bc950cc
- last_write_checksum: sha1:18a63c880ebe20c55ec30471108fed147c93dd6f
+ last_write_checksum: sha1:1a7a9d9cf4f1589d76300157db68a572ad17ebe1
pristine_git_object: e933503c91733815fe561924afa1f3e0cd1b1fac
docs/models/operations/GetEventSurveyResponsesResponse.md:
id: 53615107892c
@@ -6460,7 +6460,7 @@ trackedFiles:
pristine_git_object: e919b575034c53298a92d0b48c93ae74260f913c
docs/models/operations/GetEventSurveysRequest.md:
id: 22327e8bd6ef
- last_write_checksum: sha1:a0d9f0b9847aeca99faeba44942bc61e15cf64b1
+ last_write_checksum: sha1:5168a62a35595108c0bae400eff7bf0528f578fc
pristine_git_object: 35f95a57523ea36f0383f86a73554ac7916571ec
docs/models/operations/GetEventSurveysResponse.md:
id: 99f5e9a0d4d5
@@ -6572,7 +6572,7 @@ trackedFiles:
pristine_git_object: 66b507dab9b1efcbbc27f78f280c3ee837570f21
docs/models/operations/GetHotelRequestsRequest.md:
id: 004220d70385
- last_write_checksum: sha1:518bbdd099d3976b80c4dd9adb571dc9059075b5
+ last_write_checksum: sha1:840a267ca7554fce1a805263b4caf5faed7cdebb
pristine_git_object: 651413a9fa0789af24409fba769a874d4dadf37d
docs/models/operations/GetHotelRequestsResponse.md:
id: 0451c9eefc8c
@@ -6644,7 +6644,7 @@ trackedFiles:
pristine_git_object: 55fc59b35b5bd82f01c6e1ffad9271d0f075ef79
docs/models/operations/GetHousingReservationRequestsRequest.md:
id: 58bb08e5bf94
- last_write_checksum: sha1:547a78940ef1e14d3f0eb68407303b2ab9b672b5
+ last_write_checksum: sha1:508532fd4833e84f7ca6d4bf9105d969b249940b
pristine_git_object: 29447c0db1b736e7e406d1ff06ecaed55d5afd26
docs/models/operations/GetHousingReservationRequestsResponse.md:
id: 2a14f202c105
@@ -6652,7 +6652,7 @@ trackedFiles:
pristine_git_object: b05f92a3f925315d8376d1a42debeb35eee84ec8
docs/models/operations/GetHubMembersRequest.md:
id: beb42b90055c
- last_write_checksum: sha1:97375adb0bb41d4536bd791120cf96734dbdd72b
+ last_write_checksum: sha1:f571518ab9317d9e4fd412f1255adb434a5bc85b
pristine_git_object: 9cd9b5f8842a640fce84917626198dea0258f2a4
docs/models/operations/GetHubMembersResponse.md:
id: d81af0d1dcf2
@@ -6668,7 +6668,7 @@ trackedFiles:
pristine_git_object: 817b614e97069bfff0fd91b84677b7c4b2c5860d
docs/models/operations/GetLargeChoicesRequest.md:
id: df2abe3dd7a2
- last_write_checksum: sha1:f2de9a44de6b45d02a7d0d25db6160e833e86fde
+ last_write_checksum: sha1:b0b7fdca0a1af0fbd71495d960b650f7e364bc31
pristine_git_object: 809ba0b18b4d8928abf1f991505959cd7cc09b82
docs/models/operations/GetLargeChoicesResponse.md:
id: 14233ad963ad
@@ -6740,7 +6740,7 @@ trackedFiles:
pristine_git_object: 5e9b474bf167f032191030ee4c6cf6d4e46aad4e
docs/models/operations/GetOrderItemsRequest.md:
id: a25656afeb07
- last_write_checksum: sha1:98894a9b2edcb0ab92a8ff42b41699d661ecfcf2
+ last_write_checksum: sha1:b0d5001745b5862bc0c7620e1866c23e0cbb8717
pristine_git_object: d424717d05140064f94255d4d0749320c98e7e96
docs/models/operations/GetOrderItemsResponse.md:
id: 83078311e27e
@@ -6748,7 +6748,7 @@ trackedFiles:
pristine_git_object: 47ec363e2163120f228396fbeeff238cacfd7027
docs/models/operations/GetOrdersRequest.md:
id: 4a78962b4cc9
- last_write_checksum: sha1:75cca9be726d8553f6d98d7e06ab9045e572c55f
+ last_write_checksum: sha1:1bc92f7d538313c7b13cbea796d881e3bcabef3f
pristine_git_object: b47800d598e51e37490a79b16a163c050ca74e7f
docs/models/operations/GetOrdersResponse.md:
id: e25b42ff04a6
@@ -6756,7 +6756,7 @@ trackedFiles:
pristine_git_object: af2bc621818185bfcbf70d08be0246a2763e9196
docs/models/operations/GetPaymentsRequest.md:
id: 55d43e861498
- last_write_checksum: sha1:75f7637eafac4c8dd5c02b5fbf65338ae4300078
+ last_write_checksum: sha1:a72acbb0f0dd18037e08e4b643af6b79edf22eb8
pristine_git_object: 54736912741a02323e51bb133976a794e818eedd
docs/models/operations/GetPaymentsResponse.md:
id: e8fa463a5044
@@ -6780,7 +6780,7 @@ trackedFiles:
pristine_git_object: 5f91814da2aca838b45581e1a2344fa204bc7f1b
docs/models/operations/GetQuestionsRequest.md:
id: 483e8bc7618a
- last_write_checksum: sha1:5dcceee3600fe0037c0a01e4fdde1f2c057bf97a
+ last_write_checksum: sha1:0bd8eb05032b5bc4a2f89665e720c65a285c1b21
pristine_git_object: b4ec02d4c7160506064ee919358a39d49f3adca3
docs/models/operations/GetQuestionsResponse.md:
id: 3b06fefc5fb8
@@ -6828,7 +6828,7 @@ trackedFiles:
pristine_git_object: 687f254824c0fbc912a1bd49ec232f1fcad33985
docs/models/operations/GetRespondentsRequest.md:
id: 597bf44dc553
- last_write_checksum: sha1:0845deabb8afcad9a44247269110f28bbf2560e7
+ last_write_checksum: sha1:27df7cbfc0d2fe12ba8b7a027118139b6db40ab6
pristine_git_object: 5d552bb5dab37be79536fef581a9e683a4c23c47
docs/models/operations/GetRespondentsResponse.md:
id: d09bcca956df
@@ -6836,7 +6836,7 @@ trackedFiles:
pristine_git_object: e7f70c61bf1a6e8fd8889317b4506c386497a93c
docs/models/operations/GetResponsesRequest.md:
id: 3f115515c1ca
- last_write_checksum: sha1:c965a603fde674ed95f9833c0a064a334c4de040
+ last_write_checksum: sha1:dbe9d9c9b81234f53a98a4dff7e1fcc4930e6e62
pristine_git_object: 4ab7f0af10b5603648dac7940e1618e9f5455742
docs/models/operations/GetResponsesResponse.md:
id: 55567ca3797a
@@ -7012,7 +7012,7 @@ trackedFiles:
pristine_git_object: f2f043b26a1935c5753ea528ef095609a2861be8
docs/models/operations/GetStandardSurveyRespondentsRequest.md:
id: 05995d584933
- last_write_checksum: sha1:02f964a288de85d6041ed8d4b06c46f0dc750739
+ last_write_checksum: sha1:4bd102a9f78b8e6e4f07faed27d49be129866941
pristine_git_object: a96adc7a831000ea0786abaf8b4db650393576ee
docs/models/operations/GetStandardSurveyRespondentsResponse.md:
id: 51b3ccb5a116
@@ -7020,7 +7020,7 @@ trackedFiles:
pristine_git_object: 833a2c5cebc1fe69b5e0dd62f691a3a64e7d101d
docs/models/operations/GetStandardSurveyResponsesRequest.md:
id: 48109adaabec
- last_write_checksum: sha1:5b6cf32fc28acf2b6cb8cd806ec2f2bf7da4a81a
+ last_write_checksum: sha1:aead72998168d545bce2329d24b96d9fc6bc6a8d
pristine_git_object: 0b28c4be80bc91b991d8719e10dcd199ecba7521
docs/models/operations/GetStandardSurveyResponsesResponse.md:
id: f1e415c855cd
@@ -7028,7 +7028,7 @@ trackedFiles:
pristine_git_object: 6bef11196806c07843ffdf182f2c13799a283bf6
docs/models/operations/GetStandardSurveysRequest.md:
id: 73854bd9ce22
- last_write_checksum: sha1:e1f20f564f0aac559cba758f1f8e5f61063dff01
+ last_write_checksum: sha1:0cc224a0fef4aa69f2bf43917eeb9bd9c2299250
pristine_git_object: 6e9fb388b1d8c935a1201d8ec8256af55268e0db
docs/models/operations/GetStandardSurveysResponse.md:
id: fec6efe0cd0e
@@ -7052,7 +7052,7 @@ trackedFiles:
pristine_git_object: 6002714d592e35d9216fca7446453252547e3a8c
docs/models/operations/GetSurveyRequest.md:
id: fabc0c4ef4a6
- last_write_checksum: sha1:da08ed79b80f548676a48daa80dd132aec3febe1
+ last_write_checksum: sha1:984dbd3579d41429a82d3be9852f805f2f1d9694
pristine_git_object: 5c34c2f748bdc5d54640cd337425869ed0042d9f
docs/models/operations/GetSurveyResponse.md:
id: "886595498348"
@@ -7076,7 +7076,7 @@ trackedFiles:
pristine_git_object: 6eec623b42e0678952856b74bb2ce6436e9be997
docs/models/operations/GetTransactionItemsRequest.md:
id: 722ad19a5745
- last_write_checksum: sha1:7c59509defed9710d36b3454a55f939e0d1c4408
+ last_write_checksum: sha1:51396efcd57993b9b3af6a4d434920dddc53793d
pristine_git_object: a089b8f5409755d0e8cac0ede319a9072a64326d
docs/models/operations/GetTransactionItemsResponse.md:
id: 457c73da072e
@@ -7084,7 +7084,7 @@ trackedFiles:
pristine_git_object: 5bef20661b1170eb990c3fad902ef1c9a760f0b5
docs/models/operations/GetTransactionsRequest.md:
id: 0cbbd33ea548
- last_write_checksum: sha1:0920a44b6cc8af855e7f6551045445a9e641234b
+ last_write_checksum: sha1:0d8733c61953b2827204c2da724325e0d67bbeab
pristine_git_object: ef5ce5ec598288c9211dd778712d88256b7e28bf
docs/models/operations/GetTransactionsResponse.md:
id: 1599a00c3fc6
@@ -7160,7 +7160,7 @@ trackedFiles:
pristine_git_object: 4535e7cd63696b4c2191ad3f28f0d5cba2bfe6f1
docs/models/operations/GetVideoViewsRequest.md:
id: 73b1e6356b61
- last_write_checksum: sha1:f1af47732bb572b6c5c5597003f5b43f170245a2
+ last_write_checksum: sha1:8607c99b4f16315d72ab92893dd2e3c315824756
pristine_git_object: 589c93946396da92be31abf00360a369065a2bdf
docs/models/operations/GetVideoViewsResponse.md:
id: 1b91e9cd0a24
@@ -7251,19 +7251,19 @@ trackedFiles:
last_write_checksum: sha1:0ff8619a0b903efa7301236ba96234cfe68bbf3d
pristine_git_object: 74422aaa20e12827660799e6f0ac1a5c7be609dd
docs/models/operations/ListAssociatedAudienceSegmentsRequest.md:
- last_write_checksum: sha1:049356665a99d1d995519828d38ba26278908b50
+ last_write_checksum: sha1:eb121b7553ec89adea43d34e0e3fd7d0dbc9fbd4
docs/models/operations/ListAssociatedAudienceSegmentsResponse.md:
last_write_checksum: sha1:7711b7daad40bab4ec730da5983a9a60da699702
docs/models/operations/ListAttendeeActivitiesRequest.md:
id: 0d290e839f49
- last_write_checksum: sha1:0c8cb476235a089c8d7ab1ff4ce54f2f31439a34
+ last_write_checksum: sha1:42c48146ff477142cd34684278cb78381dc7c626
pristine_git_object: 7990af576253bfeb254cd153b9d721e0c005bcb7
docs/models/operations/ListAttendeeActivitiesResponse.md:
id: 126581ed8100
last_write_checksum: sha1:8ebdf5d40a5dc974925fce56617463c367ba41cb
pristine_git_object: 3098f8282a279bc718afe29d35c70d170c36afaf
docs/models/operations/ListAttendeeAudienceSegmentsRequest.md:
- last_write_checksum: sha1:ac544bfac1b4742692e379dce89dc8c5c7fae72c
+ last_write_checksum: sha1:96bc0987ce9117d1ada2dda4cfb283edacb53dd4
docs/models/operations/ListAttendeeAudienceSegmentsResponse.md:
last_write_checksum: sha1:ad2a06cfaf426e9782c999475fb5b47444f3d90e
docs/models/operations/ListAttendeeInsightsRequest.md:
@@ -7276,7 +7276,7 @@ trackedFiles:
pristine_git_object: 74bc1546a4459e3397c155b18ef9f435411727b5
docs/models/operations/ListAttendeeLinksRequest.md:
id: ae043893ff54
- last_write_checksum: sha1:187ecfe9b60fbb10bd4102be3989a0c508bb09c8
+ last_write_checksum: sha1:1fcc3c891addfeef54ce57e7a05f122fc9cbfbd5
pristine_git_object: b261842fa54c86c93124920962b4311b52525f15
docs/models/operations/ListAttendeeLinksResponse.md:
id: 1ebb4fd68499
@@ -7292,7 +7292,7 @@ trackedFiles:
pristine_git_object: 0bf976169268bea2876194df1d29be05a9a3dee8
docs/models/operations/ListAttendeesRequest.md:
id: d4fe1a9b4b30
- last_write_checksum: sha1:bfb2fa79548e555ba3518d3e12f75a760a5420cf
+ last_write_checksum: sha1:e49c7935230f1e77a3f395676f6c53e31f7031de
pristine_git_object: 3e8af6ddf64dcf7b01bc2d13459d7fc2668bb067
docs/models/operations/ListAttendeesResponse.md:
id: 7fda14352744
@@ -7300,7 +7300,7 @@ trackedFiles:
pristine_git_object: f392c13fa33962cd8ffb39b59d21c882fef9a935
docs/models/operations/ListAudienceSegmentsPostFilterRequest.md:
id: 67987aeb28c7
- last_write_checksum: sha1:1ad15bd4f69f30d1dbe3204dfde34cff71959f64
+ last_write_checksum: sha1:178523fa9a1185c19860d8108ed408e8ca1f16b7
pristine_git_object: a911ae36a896a91a8190d8c95a7aa186cbf74d28
docs/models/operations/ListAudienceSegmentsPostFilterResponse.md:
id: 4dff04146eee
@@ -7308,7 +7308,7 @@ trackedFiles:
pristine_git_object: 165b7d89628bfbc5c6c82c0211be3c12f74ed74a
docs/models/operations/ListAudienceSegmentsRequest.md:
id: 39a29593909b
- last_write_checksum: sha1:05377a8d906a6b9bd7fdf2c4cbfe4aade05012d3
+ last_write_checksum: sha1:ab8af1194f84f8e096b14dfb58d642a8ad8ad4aa
pristine_git_object: 16af661683c2056ddc4eb5f7e52cc645be87b4f7
docs/models/operations/ListAudienceSegmentsResponse.md:
id: ee162f10b120
@@ -7356,7 +7356,7 @@ trackedFiles:
pristine_git_object: 0130951fb1b1f1c8e69e80e7ee8809cd6d77df7f
docs/models/operations/ListContactGroupsRequest.md:
id: 34106c916a4c
- last_write_checksum: sha1:0e64b5faf48b7f07667d6113cf69dacfa866e977
+ last_write_checksum: sha1:cf17335da9f74ae4b53ce7cde7a7aa3342cfd360
pristine_git_object: 66311f6f675d7dc11f85ad828096f099fa6a730d
docs/models/operations/ListContactGroupsResponse.md:
id: ea7ed5cc1419
@@ -7372,7 +7372,7 @@ trackedFiles:
pristine_git_object: f6d3de70c0374d154972d0962532f729244dfbfd
docs/models/operations/ListContactTypesRequest.md:
id: e2e9f6e768b3
- last_write_checksum: sha1:83606108944f625598d00fbcce0cea1c04a1c4b2
+ last_write_checksum: sha1:112c7f07085cde6f103ad07637ff29a99537cd9a
pristine_git_object: 7439f89da7938d2865c7ea8d3a4e8866136083e3
docs/models/operations/ListContactTypesResponse.md:
id: f9483d767bb1
@@ -7388,7 +7388,7 @@ trackedFiles:
pristine_git_object: 5cb5604bdd3276abb042ab4dbae6ef96bc7ad289
docs/models/operations/ListContactsRequest.md:
id: cb8e44d4b300
- last_write_checksum: sha1:847566eda6ebc9f6b889e404b2535d801621206d
+ last_write_checksum: sha1:d2f13dfd27750aca0e518fff3183dfe1e71f72ef
pristine_git_object: 9316fdaeedeffc6c243709a3834d7052f0090024
docs/models/operations/ListContactsResponse.md:
id: 9bc941b79fb0
@@ -7404,7 +7404,7 @@ trackedFiles:
pristine_git_object: 9b3ad8445f6b2461e41ee4228a924d335c39d010
docs/models/operations/ListDiscountedAgendaItemsRequest.md:
id: d36bce39f354
- last_write_checksum: sha1:59fe846092d1799285b887bc46e6c90ff51542f9
+ last_write_checksum: sha1:b526411eac7ba467542641e0379e4b1b9923d7d4
pristine_git_object: 39f0c5eeacc69b8aa33cd9849b8ecae1141e1edb
docs/models/operations/ListDiscountedAgendaItemsResponse.md:
id: 58da87b94587
@@ -7420,7 +7420,7 @@ trackedFiles:
pristine_git_object: a7145ba6fd8a65fb8036fceeebbbe90cbba6b007
docs/models/operations/ListDonationItemsRequest.md:
id: 0ab03e22605c
- last_write_checksum: sha1:6ec2ad1a9cb8a38515d443df4f75eab528f3cd6a
+ last_write_checksum: sha1:f47ef8fbcebd373ae1a0661434ca06106eadea9d
pristine_git_object: 928a67da2cea4bb4ac50b6c32de29a7461d799a4
docs/models/operations/ListDonationItemsResponse.md:
id: 1c356f08c86d
@@ -7428,7 +7428,7 @@ trackedFiles:
pristine_git_object: f37a611f3df5b8901ef6726ddd720f6e39aa9558
docs/models/operations/ListDurationsRequest.md:
id: 7e93db493762
- last_write_checksum: sha1:1279b7e5e8efdc03ad2a78fb0ac42dd6c6a4953a
+ last_write_checksum: sha1:8518597b778c4e3534c8daf33327c99864f901ea
pristine_git_object: 6fbf33e5bd2d54ffb21e38c646eea9acd06bbd4c
docs/models/operations/ListDurationsResponse.md:
id: 0b5b37ab303f
@@ -7436,7 +7436,7 @@ trackedFiles:
pristine_git_object: c136e695a629fecd53af61f5c5b852390369efb9
docs/models/operations/ListEventDiscountsRequest.md:
id: 6b26d8d663c9
- last_write_checksum: sha1:3dd549d8e862deaf36cc9623f671a621dcbd0ef3
+ last_write_checksum: sha1:f727efdf7a0518eb235384db5308508da29ccb00
pristine_git_object: 3c9ae12cf88ce3ddba2536a847612ed6635f6f59
docs/models/operations/ListEventDiscountsResponse.md:
id: 321cb4a5b6c5
@@ -7475,7 +7475,7 @@ trackedFiles:
docs/models/operations/ListEventVouchersPostFilterResponse.md:
last_write_checksum: sha1:cf6be183032d4c8d247755002d7f407759f4d0db
docs/models/operations/ListEventVouchersRequest.md:
- last_write_checksum: sha1:5da7763dac92b05ed5661e3d39bc907fc95f31ed
+ last_write_checksum: sha1:d1e0162301f7770f0eb515c237dc4e10142c02b2
docs/models/operations/ListEventVouchersResponse.md:
last_write_checksum: sha1:61433df8f19613c9c4eccb95e2b67e2fc53ecb12
docs/models/operations/ListEventWeblinksRequest.md:
@@ -7528,7 +7528,7 @@ trackedFiles:
pristine_git_object: 32aca40e1c8d98bc68face96f5d59ab0ed9c9957
docs/models/operations/ListExternalAttendeeActivitiesMetadataRequest.md:
id: 66a48f5ad523
- last_write_checksum: sha1:7a5e122d749aa66147587a84c52a9588fe51774f
+ last_write_checksum: sha1:620829a9103c425208b9545635aee63cd4b63704
pristine_git_object: 3584965997d358d2863decfc8f196f279cfa6399
docs/models/operations/ListExternalAttendeeActivitiesMetadataResponse.md:
id: 665f60ab5276
@@ -7536,7 +7536,7 @@ trackedFiles:
pristine_git_object: a71c0257fc27abfa80e310bcf7c33da92683017d
docs/models/operations/ListFeeItemsRequest.md:
id: 96463b27a30d
- last_write_checksum: sha1:bcd04299511e1bab6787205c238b8a95372b3dc6
+ last_write_checksum: sha1:ea1906c26add24bfa681fedbca9409a19399f9e8
pristine_git_object: 5644c68f6804b1efba4f8f6d56d59f18b7b653ad
docs/models/operations/ListFeeItemsResponse.md:
id: f9960eae6969
@@ -7544,7 +7544,7 @@ trackedFiles:
pristine_git_object: a7effdc4583d1c444cbc23c2c75210f828ca08ef
docs/models/operations/ListHubsRequest.md:
id: 53ed28b2aa76
- last_write_checksum: sha1:62fbd24fc5f0e28b7bbb0d3ba6b59708dead037f
+ last_write_checksum: sha1:566b9e8750141ca39c0760f0559fb14cc120f0eb
pristine_git_object: 4bebd353773b223971e085cf411afb957668fd45
docs/models/operations/ListHubsResponse.md:
id: 231498e9654e
@@ -7595,12 +7595,12 @@ trackedFiles:
docs/models/operations/ListMembershipItemsPostFilterResponse.md:
last_write_checksum: sha1:163be866b0cff2dace5517977b83c7928deed4d3
docs/models/operations/ListMembershipItemsRequest.md:
- last_write_checksum: sha1:cda19bc81ac30233630e8b45d5eb3c65e1d022a1
+ last_write_checksum: sha1:ea2fa3448e886c4ef5a6887ed2a5a0b07498606d
docs/models/operations/ListMembershipItemsResponse.md:
last_write_checksum: sha1:0412b953f879d6be1e37642a4a7eb00466b1d8fe
docs/models/operations/ListPlayersRequest.md:
id: 037fc258074d
- last_write_checksum: sha1:b344d507d00e9e38e0799a3be72f038ad37f3447
+ last_write_checksum: sha1:683cb950fc4954f0e9c0d4ee2e4fff374c30991e
pristine_git_object: 3c37b36192357467fad8de19c79ce2f451965026
docs/models/operations/ListPlayersResponse.md:
id: 5a86b8440f00
@@ -7624,7 +7624,7 @@ trackedFiles:
pristine_git_object: a2824031a28bae57d82117a8a054bac2f3b1ec22
docs/models/operations/ListProgramItemsRequest.md:
id: 855e289f7a4f
- last_write_checksum: sha1:615111c80388c131cd4f740ffe0ed64fb8ab82df
+ last_write_checksum: sha1:10edc613df65c72441087769077fec8f03f110aa
pristine_git_object: 37104e96fdef8501bf33946e0e0061a2d8142dea
docs/models/operations/ListProgramItemsResponse.md:
id: f381e2bea27c
@@ -7640,7 +7640,7 @@ trackedFiles:
pristine_git_object: bae235d155f7c5bf25484faab41d3c8fcc4846e2
docs/models/operations/ListQuantityItemsRequest.md:
id: bb31eceac315
- last_write_checksum: sha1:597586c9014ec3f412dcafddb5972b1062423f7a
+ last_write_checksum: sha1:43a8080d3955b22e5cf9ed460525e054b19c791c
pristine_git_object: 75988de3e507b827ae364ab710373734c2b45f3c
docs/models/operations/ListQuantityItemsResponse.md:
id: 9164b87bec74
@@ -7712,7 +7712,7 @@ trackedFiles:
pristine_git_object: 0af60c0b68d6a9df9ee19a0a9f0975bdac11b7f0
docs/models/operations/ListSegmentAssociatedAttendeesRequest.md:
id: d278fa54be2a
- last_write_checksum: sha1:58b27eefdfb892315b962b9711f88f191af8ca0a
+ last_write_checksum: sha1:374a0fa76c3501e21fd7f65a84171621bf977477
pristine_git_object: 74edd0e1afdcc2d0cd5124685e88df23714da968
docs/models/operations/ListSegmentAssociatedAttendeesResponse.md:
id: 4d660d45e4f2
@@ -7720,7 +7720,7 @@ trackedFiles:
pristine_git_object: 3c93916534886c330b52e8c874ba4d5897787030
docs/models/operations/ListSessionDocsRequest.md:
id: e99e86a3e22a
- last_write_checksum: sha1:9ef3cca0b4c188b8e256d25b0879aa1e63b17ce2
+ last_write_checksum: sha1:25bb0675de16b97bafabcec27d90641df4ab74aa
pristine_git_object: bddab39b359eaf5df71c2d8f4c8731a9894d07de
docs/models/operations/ListSessionDocsResponse.md:
id: 59eac5232c10
@@ -7752,7 +7752,7 @@ trackedFiles:
pristine_git_object: 1cff06b93d0854828c60a1793c5881c798d2a55a
docs/models/operations/ListSessionsCategoriesRequest.md:
id: 0e4a54d59ef9
- last_write_checksum: sha1:f18fbb0a39375796f45d18d7087eb960cb7c39f7
+ last_write_checksum: sha1:7c60c01b123a4f0c1cb2de0e87fe3009e0b2c51a
pristine_git_object: 2f6ef95f2c20573c67d669193e05139a7478e696
docs/models/operations/ListSessionsCategoriesResponse.md:
id: ba20ee4fc631
@@ -7784,7 +7784,7 @@ trackedFiles:
pristine_git_object: fe1dcefd7a19bcec60bfd11c4e7151733ddea3d6
docs/models/operations/ListSessionsRequest.md:
id: e167ea2b6c37
- last_write_checksum: sha1:6d0cc03833217d12e890227ca88ef2f83edec0ea
+ last_write_checksum: sha1:38db080fd45eb7a6f37728ddd907e5493c887b87
pristine_git_object: e55e18f9dafa171cdff61da85b2ecfefa5e683d2
docs/models/operations/ListSessionsResponse.md:
id: c8dd164b9bed
@@ -7847,7 +7847,7 @@ trackedFiles:
last_write_checksum: sha1:edd0a0b73995e20718a000caaf318ee428062662
pristine_git_object: 3d59756d58fff884b9ee1d64534eb095b4d6cd4e
docs/models/operations/ListTaxesRequest.md:
- last_write_checksum: sha1:4f6b3abbc59008ec0d40b43f7764e8e293886d23
+ last_write_checksum: sha1:4ea081d2365c1e65cd537114be1276f9361b6efb
docs/models/operations/ListTaxesResponse.md:
last_write_checksum: sha1:06a0e17cf7e6bead51b4be1155ce42b2af98475f
docs/models/operations/ListTravelAccountsRequest.md:
@@ -7924,7 +7924,7 @@ trackedFiles:
pristine_git_object: bd8009e907d9bf31ce70e578016fdf51ecfb94f5
docs/models/operations/ListVideosRequest.md:
id: d344225bde3d
- last_write_checksum: sha1:758cfef6d946a7f4a69262e6864babadfcd23521
+ last_write_checksum: sha1:0aa41fa9a6be1b7b593552e439ed67e27cb5c1dd
pristine_git_object: 765fe7ad663363e505ef073399bb072376426a32
docs/models/operations/ListVideosResponse.md:
id: e576c673381e
@@ -7932,7 +7932,7 @@ trackedFiles:
pristine_git_object: ec3250bdc9269b507764728265c35843a0dfd24e
docs/models/operations/ListWebcastAttendeeLinksRequest.md:
id: 5e82a0194ef6
- last_write_checksum: sha1:73277da45d180f0dfef1fb10e60653c17e107e55
+ last_write_checksum: sha1:7330d7bb6a3d281239a843fe6d2bfeccb612c356
pristine_git_object: f0dc23af74b2113e688a7e73e77042357a0efb4f
docs/models/operations/ListWebcastAttendeeLinksResponse.md:
id: 2b86b3779f94
@@ -7940,7 +7940,7 @@ trackedFiles:
pristine_git_object: 9c7f1d0ee71e7a8114f6a1ca03e817e0bead7617
docs/models/operations/ListWebcastsRequest.md:
id: 40beda17f59d
- last_write_checksum: sha1:af01277171a3c0a0d4313504c48d8b23a7fb78c3
+ last_write_checksum: sha1:fc2b2bad30f783c2d7968a789b74db1c6e7165d1
pristine_git_object: 1de5527428cd37cf3f6d3f32356827c80abae989
docs/models/operations/ListWebcastsResponse.md:
id: 7c73392490c1
@@ -8624,7 +8624,7 @@ trackedFiles:
pristine_git_object: fe570960f8125e64c67cb596c370b7ef40138496
docs/sdks/authentication/README.md:
id: 45be241adfc3
- last_write_checksum: sha1:3982801645db3428f3ab9bb866c2d7b87428927c
+ last_write_checksum: sha1:9ea69c62b74101dc98ac08bfd7858caa82cbbc91
pristine_git_object: aa64908df261d71c915b045f47c747fd4514fd7d
docs/sdks/badgeprinterpools/README.md:
id: d73d6cce89d1
@@ -8640,7 +8640,7 @@ trackedFiles:
pristine_git_object: 8d01dfa38c11983a4f3a9c2f131fb0f8baf3da07
docs/sdks/bulk/README.md:
id: fa4bd7a4682a
- last_write_checksum: sha1:7828c4be14f57dbf245340aa66c88774311325f1
+ last_write_checksum: sha1:fd7f86b0ab817effb3a2062295a9c999abb897a7
pristine_git_object: 5d46b140151d54af34676b1f814f009e603239cf
docs/sdks/campaigns/README.md:
id: 18dcc3c717ca
@@ -8716,7 +8716,7 @@ trackedFiles:
pristine_git_object: 64614977cacbd8d9340bd37af4b21d6e245bfc14
docs/sdks/housing/README.md:
id: 23d65d817ab8
- last_write_checksum: sha1:428adca6f92a43a7131a4e3d1b2ce6a6c098e985
+ last_write_checksum: sha1:8b1fe24b9dea72f2895ff6f26a08cf440db5e8a5
pristine_git_object: 4211bb0d355200b83a1e58a261371acf7a12452d
docs/sdks/housinghotels/README.md:
id: d04ff5412c59
@@ -8728,7 +8728,7 @@ trackedFiles:
pristine_git_object: cef4027abf852decdaba1e2f5620e2af00029ca9
docs/sdks/meetingrequest/README.md:
id: 4d8d5f5fd977
- last_write_checksum: sha1:228823eb19d9bc13b107b5733bfe8b07fa29654f
+ last_write_checksum: sha1:25e346f72e405db820c507be68c6d494f31b14e5
pristine_git_object: 0179b4309efed6c06dc31e70ac235bf1de619337
docs/sdks/processform/README.md:
id: 0d23c161e66c
@@ -8804,7 +8804,7 @@ trackedFiles:
pristine_git_object: cda742065b0bb30407900c4d39885b8db164b9b4
gradle.properties:
id: 2afbb999f001
- last_write_checksum: sha1:653352cf89e5db23707b7968fdc61cab4c8fb932
+ last_write_checksum: sha1:747143ce2c8e310f3dbb69fd3b06a5b6a6400f0d
pristine_git_object: 6da141a8453a679109d12dba513b6d08b9e37fd5
gradle/wrapper/gradle-wrapper.jar:
id: ec27dae6e852
@@ -8860,7 +8860,7 @@ trackedFiles:
pristine_git_object: b2b365f2cfa45ec15f755c31450a1575079047eb
src/main/java/com/cvent/AsyncAuthentication.java:
id: 84ed7c96c944
- last_write_checksum: sha1:f281c8824390c926072e99b1dd2d2b7a963a5522
+ last_write_checksum: sha1:48aa8bbc862d68e08c1fd082fcaea9d259594921
pristine_git_object: 5fbc750712e5e29b816b3754bbccfb4f9766a2a7
src/main/java/com/cvent/AsyncBadgePrintJob.java:
id: 2a57a7a6b3f5
@@ -8876,7 +8876,7 @@ trackedFiles:
pristine_git_object: b6138971cb6024619d30854d7f1ab7e65d48065f
src/main/java/com/cvent/AsyncBulk.java:
id: eee11b7a19ef
- last_write_checksum: sha1:f93779c8ad2c4047904e09f53882143641dfaa11
+ last_write_checksum: sha1:6d4693f748c7c481e310058490ea296fe83060e1
pristine_git_object: c67834f0ef129141068f3a7236a5762ebdd9280f
src/main/java/com/cvent/AsyncCampaigns.java:
id: 35f09e5a2dca
@@ -8900,7 +8900,7 @@ trackedFiles:
pristine_git_object: d2750f4c1dd063e160ac8b42105e3350a77b9192
src/main/java/com/cvent/AsyncCventSDK.java:
id: 3d41ccbb3604
- last_write_checksum: sha1:beda926829e65f5dcca2c7d9bc137d0fedb75d78
+ last_write_checksum: sha1:6f3c6ab9a46963e36eeb19f879eceac04a223fdc
pristine_git_object: 91ab4b576419398d5dfa7189f6dbf60c8f32176b
src/main/java/com/cvent/AsyncDiscounts.java:
id: 0e60d514801e
@@ -8956,7 +8956,7 @@ trackedFiles:
pristine_git_object: 1463c39f94bb7111b27f69bddd24a287e68fd95b
src/main/java/com/cvent/AsyncHousing.java:
id: 4fee93962efc
- last_write_checksum: sha1:d1434fc337299b0f1f3b116f3a9dab328a1b3cdd
+ last_write_checksum: sha1:f3f4cf7586414ec28389f81b95abafe970d8839e
pristine_git_object: 3075e9758212e8459bb2a1ac2b50ff23841f2238
src/main/java/com/cvent/AsyncHousingHotels.java:
id: be2259657666
@@ -8968,7 +8968,7 @@ trackedFiles:
pristine_git_object: 63b9d69f51d89f8176ddd79b1609ec208b5a70f9
src/main/java/com/cvent/AsyncMeetingRequest.java:
id: c69c5b6c742d
- last_write_checksum: sha1:57bdaed195d10773211c30b88e92bf565856076f
+ last_write_checksum: sha1:38e1c4bda3d44db44ce93a518d429990d2e613b9
pristine_git_object: 2a363b46c900e245520578e3a2696ab46d5175e9
src/main/java/com/cvent/AsyncProcessForm.java:
id: e0cb23c12345
@@ -9060,7 +9060,7 @@ trackedFiles:
pristine_git_object: 70bd79714042b201ce12d06a85416ec310cf5e3a
src/main/java/com/cvent/Authentication.java:
id: 952786186a1b
- last_write_checksum: sha1:5729aabd56ad2ad529416306f63e8592d564c5fc
+ last_write_checksum: sha1:0b32d836c49c39bf46e2038dbba16261d1b7a1a4
pristine_git_object: 5c6a07d0cc986df4721a08c573d4635247f5f667
src/main/java/com/cvent/BadgePrintJob.java:
id: a6870d16ccad
@@ -9076,7 +9076,7 @@ trackedFiles:
pristine_git_object: cd2ebb717233e3f41777f6af2992a949ae1565cd
src/main/java/com/cvent/Bulk.java:
id: 26ad7bdd7d2b
- last_write_checksum: sha1:131c8d608d7155486a1ba473955e44e6bebd4360
+ last_write_checksum: sha1:024c83facb1005fd937f432c3e72059c1aebb88f
pristine_git_object: bc23e0ed53f5783fb649119a3d87b1add5044fc6
src/main/java/com/cvent/Campaigns.java:
id: 589167ff249c
@@ -9100,7 +9100,7 @@ trackedFiles:
pristine_git_object: fba7bb77908632105cf2fcbe226b002da7001b0e
src/main/java/com/cvent/CventSDK.java:
id: 4a420697fa3d
- last_write_checksum: sha1:7dfc5850e846e78b2cd5d64baac72328a8cfd9c3
+ last_write_checksum: sha1:fe1ccdc58ac9dd655c19819f479b611ae83b2f5b
pristine_git_object: 80c41313e2060978bc5d97ac0b629a1ec05252db
src/main/java/com/cvent/Discounts.java:
id: b320961e983a
@@ -9156,7 +9156,7 @@ trackedFiles:
pristine_git_object: f72e8694025a9793746917b7073f5de375f41d4a
src/main/java/com/cvent/Housing.java:
id: c0c7f22683c7
- last_write_checksum: sha1:06d8c1cef363dc81aec25e4dd747b8e054627e3b
+ last_write_checksum: sha1:2bf9a36f8b799d27c9ec623755c1282b46334063
pristine_git_object: 5d5698d83c5f70e796f015731adcbffefff197a6
src/main/java/com/cvent/HousingHotels.java:
id: 2c2bb7ca65ec
@@ -9168,7 +9168,7 @@ trackedFiles:
pristine_git_object: 222345c8cf03e2cfbb0656573fedbb8373253859
src/main/java/com/cvent/MeetingRequest.java:
id: 98502903c529
- last_write_checksum: sha1:ee22c23eae6659b8a59779f9333e7788c8bc4144
+ last_write_checksum: sha1:939cba13fd7ce6dc74079c711e611b2c022fdcc3
pristine_git_object: 7fac550da9fb7ddfccd9f9457297ff746a1cbf40
src/main/java/com/cvent/ProcessForm.java:
id: 37b1c5cc9454
@@ -9188,7 +9188,7 @@ trackedFiles:
last_write_checksum: sha1:0396671d6b0de814aaa27700f35eed30523c66ed
src/main/java/com/cvent/SDKConfiguration.java:
id: cdb9837839f5
- last_write_checksum: sha1:4a432d4ee49c86ea93aab3ee27c1ff869e076c12
+ last_write_checksum: sha1:f5f93b1b2e1f25cf4ed9a8be2a01422adc430ef4
pristine_git_object: 4b98b23f51bc18bad5890089f44055b6187ed9f0
src/main/java/com/cvent/Seating.java:
id: 70583b24bb9b
@@ -9795,7 +9795,7 @@ trackedFiles:
src/main/java/com/cvent/models/components/AttendeeAudienceSegmentAssociationsPaginatedResponse.java:
last_write_checksum: sha1:108ca2711383307946a2d28bac9eeb05ead80dbc
src/main/java/com/cvent/models/components/AttendeeContactInfo.java:
- last_write_checksum: sha1:84f092a6ab99bb30578fb841b3fd92ef36b57be7
+ last_write_checksum: sha1:f32aa7dcd77b17acbba735766b0516e625a42d02
src/main/java/com/cvent/models/components/AttendeeContactMembership.java:
last_write_checksum: sha1:f0dce922f5811531e8ca355cf754a7f2e053805d
src/main/java/com/cvent/models/components/AttendeeContactType.java:
@@ -11115,7 +11115,7 @@ trackedFiles:
last_write_checksum: sha1:4de44bbf84cfa2bd124171e4c11a921ff4c635f9
pristine_git_object: 164b5f9e7dc89be3540f98f1f7bd770af701dfaa
src/main/java/com/cvent/models/components/Event1.java:
- last_write_checksum: sha1:871a480c033b3ac12a5c1a52729800dbdb0008d2
+ last_write_checksum: sha1:ec8da7bc3a7917f897d8b4acf625b6028df8b0f3
src/main/java/com/cvent/models/components/Event12.java:
last_write_checksum: sha1:04f1610837848b8bd9ad8f72a780181f5a79b277
src/main/java/com/cvent/models/components/Event2.java:
@@ -11254,7 +11254,7 @@ trackedFiles:
last_write_checksum: sha1:92003270aee12f2aa95bf1a480a86ab585fe67d6
src/main/java/com/cvent/models/components/EventInput.java:
id: 51798981c8ce
- last_write_checksum: sha1:bfe63d41543167b9b62575ccbd7cffdd00592160
+ last_write_checksum: sha1:15121148e719e118e67bdba918cb7c08e933454e
pristine_git_object: 03dc33750837fe7bc302c5de6d3fb40233448e73
src/main/java/com/cvent/models/components/EventJson.java:
last_write_checksum: sha1:afe0ec5516f2fe65acb35c90627923d69882fdd8
@@ -11438,11 +11438,11 @@ trackedFiles:
last_write_checksum: sha1:6db35394f52954a1b62e7d08d95253b694d2d43d
src/main/java/com/cvent/models/components/EventUpdate.java:
id: 41eb20f603b1
- last_write_checksum: sha1:4c824d701b39c9fd9b8ab2a130088e34c252da53
+ last_write_checksum: sha1:4bcf9a0647f010482548c711382c4f28c7b86f87
pristine_git_object: f211848985ed27a23e1203742df7dd8f268f3f4b
src/main/java/com/cvent/models/components/EventUpdateInput.java:
id: 7d83d218d312
- last_write_checksum: sha1:9e17e5d2cd6ebd55d143286579e893b3b5d07120
+ last_write_checksum: sha1:002b39a9631a1371313ae73d597826653e802feb
pristine_git_object: d022ed83a9988ea4677b3267ffd6f728890c8369
src/main/java/com/cvent/models/components/EventUpdateLookup.java:
id: 0100741de2e8
@@ -17450,7 +17450,7 @@ trackedFiles:
pristine_git_object: 3677d525dccda331c0f71e7c8545ef78f0e895be
src/main/java/com/cvent/models/operations/GetAccountBudgetItemsRequest.java:
id: c1e96a0c4736
- last_write_checksum: sha1:41a7eecb110f3ecbec113d3a28ac1378f5b8f49f
+ last_write_checksum: sha1:81a1c2b28e063b59b791438a7f4f8bf89c1eeca9
pristine_git_object: 8ef9664d915953694f1d28ad542237d98ba21971
src/main/java/com/cvent/models/operations/GetAccountBudgetItemsRequestBuilder.java:
id: 570f17bc4ad2
@@ -17485,14 +17485,14 @@ trackedFiles:
last_write_checksum: sha1:27dd85a9dac3b3ab7cbb63d435bbd3bcae9a0600
pristine_git_object: f53ccab1bfbc2add52cdaf8d6fabb717d871e880
src/main/java/com/cvent/models/operations/GetAccountVendorsRequest.java:
- last_write_checksum: sha1:46d68a59b2ed998aa01ae97453e3da6bddb1ca87
+ last_write_checksum: sha1:e129ea350c9ff327def9650c7462d81eea795f7b
src/main/java/com/cvent/models/operations/GetAccountVendorsRequestBuilder.java:
last_write_checksum: sha1:2024ad865a531912dc835b2defdac79e29abe9fb
src/main/java/com/cvent/models/operations/GetAccountVendorsResponse.java:
last_write_checksum: sha1:21d3c7fcbcf4259b231df8727d3bb3eac0352fb5
src/main/java/com/cvent/models/operations/GetAirActualDetailRequest.java:
id: 2520b84afec6
- last_write_checksum: sha1:5aec1864e080640b36aade8781e5f90704fa201e
+ last_write_checksum: sha1:9956379daa5c10df1647305bf31b499926b97e83
pristine_git_object: 76adaea7d2bf4f8ba761cf4de83154d6a7fe2a5a
src/main/java/com/cvent/models/operations/GetAirActualDetailRequestBuilder.java:
id: fa8a241de0de
@@ -17504,7 +17504,7 @@ trackedFiles:
pristine_git_object: d057a75488a24e3b462f9b4671dae82e8eddb623
src/main/java/com/cvent/models/operations/GetAirRequestsRequest.java:
id: 170a77d23a5b
- last_write_checksum: sha1:5b5fc99ca1b17bbc0c3c0fb041b3e94d96124870
+ last_write_checksum: sha1:980e23c190f49b7929b97d1960b0f0149c19808e
pristine_git_object: 6f6bbb9ce7a048c8cc45cda880612b860aeb7d43
src/main/java/com/cvent/models/operations/GetAirRequestsRequestBuilder.java:
id: c89b338596f4
@@ -17516,7 +17516,7 @@ trackedFiles:
pristine_git_object: 28c4b1212114f15d12d95af6d3605f2b4d6598a1
src/main/java/com/cvent/models/operations/GetAllEventSurveyResponsesRequest.java:
id: 889c6a210f52
- last_write_checksum: sha1:7028542de70f696fd12169181da433b9f3fcf2dd
+ last_write_checksum: sha1:e75c5f9d17430ff8cf72d3905606d8cf802da324
pristine_git_object: c3b8b7d09b255d5570471f35c15041a7e03522d8
src/main/java/com/cvent/models/operations/GetAllEventSurveyResponsesRequestBuilder.java:
id: 7ad01bfe76c2
@@ -17527,7 +17527,7 @@ trackedFiles:
last_write_checksum: sha1:d7695c10a780e2749a05141966b88a6126fe8810
pristine_git_object: 2bdd36cfaa22c3bf9722823d6cf23dc22af2748b
src/main/java/com/cvent/models/operations/GetAlternateTravelAnswersRequest.java:
- last_write_checksum: sha1:6afc58474ef710b5c9714b3e3cd01e3cd17d2bfe
+ last_write_checksum: sha1:652c1a93054810129824027bc5622e19c693c404
src/main/java/com/cvent/models/operations/GetAlternateTravelAnswersRequestBuilder.java:
last_write_checksum: sha1:ae7c24675c259b92c23be5b6c887a18ed6d917d7
src/main/java/com/cvent/models/operations/GetAlternateTravelAnswersResponse.java:
@@ -17726,7 +17726,7 @@ trackedFiles:
pristine_git_object: e4759cad23819516bb92cec3bb00c28b419f6de1
src/main/java/com/cvent/models/operations/GetBudgetAllocationsRequest.java:
id: 30521be3166c
- last_write_checksum: sha1:a18391b63da62a1c792f1ae34b9933f86d7ca4d9
+ last_write_checksum: sha1:e0f6ba4585023e307b2626cd5fc6337823b52d83
pristine_git_object: 2527f93dfe58302061b37423694555494b80a865
src/main/java/com/cvent/models/operations/GetBudgetAllocationsRequestBuilder.java:
id: 33b64caff9fb
@@ -17738,7 +17738,7 @@ trackedFiles:
pristine_git_object: 9e8c04dfcb99fd4b62f5cf0cbae841853eac4683
src/main/java/com/cvent/models/operations/GetBudgetItemsRequest.java:
id: 4249c32a36cb
- last_write_checksum: sha1:b50ff17e808c34f99ab53c9d114c820ae5267726
+ last_write_checksum: sha1:a48b88046620a19acf9b38c5680762630c960eb6
pristine_git_object: fa209e351815f97b3f445e3ed3ed8429b4944cd2
src/main/java/com/cvent/models/operations/GetBudgetItemsRequestBuilder.java:
id: 4a0bb8bf2865
@@ -17774,7 +17774,7 @@ trackedFiles:
pristine_git_object: f1264260f4ec8b5d9c7e358bf45caa84c9254e1e
src/main/java/com/cvent/models/operations/GetCardTransactionsRequest.java:
id: b4c03da1bd48
- last_write_checksum: sha1:2840bd17197ce23a24ac2710e1b9a52df18e8c62
+ last_write_checksum: sha1:e10ffcdf5b595217d5ffcb16fe27e876778d6c26
pristine_git_object: 20e141b29875c07f40a1a987f3c135225024bd75
src/main/java/com/cvent/models/operations/GetCardTransactionsRequestBuilder.java:
id: e5aa2cbdeb6b
@@ -17786,7 +17786,7 @@ trackedFiles:
pristine_git_object: 4312eaf45bdfc9f33a6db64a5b6173b6baafdf4a
src/main/java/com/cvent/models/operations/GetCardsRequest.java:
id: 98af7b30c0fc
- last_write_checksum: sha1:6ba83c468faae3c7d298cf62c2ce21e205d34715
+ last_write_checksum: sha1:6e47d06d3e2976c7dea9d317ed692543e310232b
pristine_git_object: 6d6bda48d8585a4cdfc74cd5ce83d7030b1c6470
src/main/java/com/cvent/models/operations/GetCardsRequestBuilder.java:
id: f98af6e41bc7
@@ -17902,7 +17902,7 @@ trackedFiles:
pristine_git_object: 3e3db7def6fbf4e6949ad00a018b234a87429b47
src/main/java/com/cvent/models/operations/GetCurrencyConversionRateRequest.java:
id: c029817a9299
- last_write_checksum: sha1:e223c11d51d750d4caddff72233b01f6ee920c11
+ last_write_checksum: sha1:a0e288a33fe98d60739eeee3d8a1cc7ab95df984
pristine_git_object: d97950306d783f0498d78b301c0990007348c6d7
src/main/java/com/cvent/models/operations/GetCurrencyConversionRateRequestBuilder.java:
id: 2d56ef5dfb50
@@ -18010,7 +18010,7 @@ trackedFiles:
pristine_git_object: ac9cf45748e39e5162866fdb01d1e67bf852b63a
src/main/java/com/cvent/models/operations/GetEventBudgetTotalsRequest.java:
id: 969ff86efbb2
- last_write_checksum: sha1:11ba3ddc796abe86b9f85435ac110c0245f45515
+ last_write_checksum: sha1:4ee20f97ae4e162576976d66d49e3119037bfc97
pristine_git_object: ff6278a203fdec054a102062e4fd14dcb205d5a3
src/main/java/com/cvent/models/operations/GetEventBudgetTotalsRequestBuilder.java:
id: 112cc716a3e2
@@ -18058,7 +18058,7 @@ trackedFiles:
pristine_git_object: 5ead768b2d933ce9e6c8ab72f61d86565957b294
src/main/java/com/cvent/models/operations/GetEventFeaturesRequest.java:
id: 7dfa9a447496
- last_write_checksum: sha1:09d2a83fad70c8773dbe305fb8bab5b3c0e362fd
+ last_write_checksum: sha1:0d719307b09dd5f29edc3d21f80193a743bb46f2
pristine_git_object: 124f230716182ba321ac24ab5da17729cfd48bfc
src/main/java/com/cvent/models/operations/GetEventFeaturesRequestBuilder.java:
id: 247078be1953
@@ -18100,7 +18100,7 @@ trackedFiles:
pristine_git_object: 17c4a5106472d1b78b6e269da2962a6818d22470
src/main/java/com/cvent/models/operations/GetEventSurveyRespondentsRequest.java:
id: 9d1bab4dde61
- last_write_checksum: sha1:7d235f25ff4dd0a71646d7d019293dad2801fd7e
+ last_write_checksum: sha1:4cdfdb82b9d2fdb4ddfb59e9beca728a67a78750
pristine_git_object: 721a91fcc00d934aedcadb0968eed92f73fb9cbf
src/main/java/com/cvent/models/operations/GetEventSurveyRespondentsRequestBuilder.java:
id: 7f9a3ce0b7f0
@@ -18112,7 +18112,7 @@ trackedFiles:
pristine_git_object: fc05157acd5e529d163a5492cb7eb809f0a2f61a
src/main/java/com/cvent/models/operations/GetEventSurveyResponsesRequest.java:
id: ab91f4aa3764
- last_write_checksum: sha1:59841c2d1c596210d3f41e93f28a1ebc1284f288
+ last_write_checksum: sha1:229d30c6dfba1d7561ceb14b581a7acc21775aba
pristine_git_object: 0d02370c31ae5029ecce00c9ec0896778874110f
src/main/java/com/cvent/models/operations/GetEventSurveyResponsesRequestBuilder.java:
id: de748f9e73b4
@@ -18124,7 +18124,7 @@ trackedFiles:
pristine_git_object: c7063fe309d33e66433377ec3c5113a1730ed800
src/main/java/com/cvent/models/operations/GetEventSurveysRequest.java:
id: 95de4eda6cf7
- last_write_checksum: sha1:97e2b096eb3d4fcd759ee78f51ba410b537f6072
+ last_write_checksum: sha1:07b3aeb06bc885e6a279f7a1b6df3f61b3bca9e6
pristine_git_object: 0ce5861782439b23d410d57ce07517f42bda76b1
src/main/java/com/cvent/models/operations/GetEventSurveysRequestBuilder.java:
id: 8715e8606653
@@ -18292,7 +18292,7 @@ trackedFiles:
pristine_git_object: 6fcc3292aea6d77824f344b9dc99a3aefae89c5b
src/main/java/com/cvent/models/operations/GetHotelRequestsRequest.java:
id: f6bea4bba1ab
- last_write_checksum: sha1:66f771a2e20d5d639bb60829de81f2c76248c59b
+ last_write_checksum: sha1:b2beb13ad83120df5ea52e86cff993731f0d5847
pristine_git_object: 87136338dd511b2bce0d73bed86b8bba784ca00e
src/main/java/com/cvent/models/operations/GetHotelRequestsRequestBuilder.java:
id: 2a30982258c9
@@ -18400,7 +18400,7 @@ trackedFiles:
pristine_git_object: 331c2e3d396b68f873ee124547a3129bfe18ffb5
src/main/java/com/cvent/models/operations/GetHousingReservationRequestsRequest.java:
id: 96db659bc313
- last_write_checksum: sha1:cfe1ad3b83b31630d1dd4efaa8e02fefb06f2e75
+ last_write_checksum: sha1:aa26dd2e58cf6527884dd7d3fb7942eb76002a0f
pristine_git_object: 7f95bd7251d6c270bce7208cc0152dcb1592c5df
src/main/java/com/cvent/models/operations/GetHousingReservationRequestsRequestBuilder.java:
id: f7aac72253a5
@@ -18412,7 +18412,7 @@ trackedFiles:
pristine_git_object: f5d9a290bf4ab4f4201b906527969cb9ba58fd7a
src/main/java/com/cvent/models/operations/GetHubMembersRequest.java:
id: 14882d2e7634
- last_write_checksum: sha1:30526cc3ed51c35e0d9c515a1a776241066c1c1f
+ last_write_checksum: sha1:cf510ca73aff780d4ae2466f42a54e949c9fd386
pristine_git_object: aa60709b78bbceb05b5ac81983ce93eae5cac007
src/main/java/com/cvent/models/operations/GetHubMembersRequestBuilder.java:
id: f8dcd338475b
@@ -18436,7 +18436,7 @@ trackedFiles:
pristine_git_object: 5529e48bd7eecc43af96042283837b6f3342fc27
src/main/java/com/cvent/models/operations/GetLargeChoicesRequest.java:
id: 345295e081b3
- last_write_checksum: sha1:007a2339d025fb044d33602c8ffa56ed5522350a
+ last_write_checksum: sha1:0b79ea444dbed5b021f59fef7a0b45d1732e334d
pristine_git_object: 781a88f69b76e87768caffac322cb30ebe8ada1d
src/main/java/com/cvent/models/operations/GetLargeChoicesRequestBuilder.java:
id: 0e359ea599b3
@@ -18544,7 +18544,7 @@ trackedFiles:
pristine_git_object: 44dd8d8cffda1d48ec1ba84cb369a75f6afad122
src/main/java/com/cvent/models/operations/GetOrderItemsRequest.java:
id: a2d1a4bd88bf
- last_write_checksum: sha1:2d994fd56df0a38613b9802a8e3f9e3aa18a572c
+ last_write_checksum: sha1:b51d43b22a3d2dfdb12ad94e74d527c994d7ef68
pristine_git_object: 56b1ec27f74ed3b7d876bb039ca9e935a0cbfc0a
src/main/java/com/cvent/models/operations/GetOrderItemsRequestBuilder.java:
id: 685f6df041b6
@@ -18556,7 +18556,7 @@ trackedFiles:
pristine_git_object: 3326b99ef5e764c19e69e4856e79918e78629db8
src/main/java/com/cvent/models/operations/GetOrdersRequest.java:
id: 98ec161e52f0
- last_write_checksum: sha1:c5caa60dcc2157817b23544d7e3fc48f80ac26a4
+ last_write_checksum: sha1:9b966649190955083deb2b76433bf11a1d8736fd
pristine_git_object: 361fcfd0e385703834f4cde89300a0cf088262cb
src/main/java/com/cvent/models/operations/GetOrdersRequestBuilder.java:
id: 53f5cf9164fa
@@ -18568,7 +18568,7 @@ trackedFiles:
pristine_git_object: 6f5d89adfac8c9ef43b5e35b0e66c2b0f3aebf6f
src/main/java/com/cvent/models/operations/GetPaymentsRequest.java:
id: 10229801105f
- last_write_checksum: sha1:31889ee790bf63e8b521e8989ca753db252ba705
+ last_write_checksum: sha1:751f1e03715d783efa9d9b90498fecad24a18800
pristine_git_object: fd88a59c88dd72eadd2b5b432f999a6c823f5df9
src/main/java/com/cvent/models/operations/GetPaymentsRequestBuilder.java:
id: 389799e5aff2
@@ -18604,7 +18604,7 @@ trackedFiles:
pristine_git_object: 6b2ae604fe7fedeae7daf69c703a63f37379882e
src/main/java/com/cvent/models/operations/GetQuestionsRequest.java:
id: 332511b805c4
- last_write_checksum: sha1:c59671717443fb61a5c00dfda14112b08f949e46
+ last_write_checksum: sha1:a3cf8a62387c2634bff29d104259f73bbb8737c0
pristine_git_object: 9d260ec020a5e67497b9b1b07e558b5b42967d4d
src/main/java/com/cvent/models/operations/GetQuestionsRequestBuilder.java:
id: 1113f6360927
@@ -18678,7 +18678,7 @@ trackedFiles:
pristine_git_object: b07c384b46dacc9a7d814c5f5b5eaeaf02fb2163
src/main/java/com/cvent/models/operations/GetRespondentsRequest.java:
id: ff67aa44f446
- last_write_checksum: sha1:8cb017b2c55e68fa53691b5e585c3f47b9807d5f
+ last_write_checksum: sha1:ab2a1f43363d21d376bb9cd8f2686fcd7590c7ca
pristine_git_object: b9f4822d7001a8f916de9e0bdca030262853e475
src/main/java/com/cvent/models/operations/GetRespondentsRequestBuilder.java:
id: 9efebb83a672
@@ -18690,7 +18690,7 @@ trackedFiles:
pristine_git_object: 46f80826ceb1492d1a6f2868f49d4585adca76b0
src/main/java/com/cvent/models/operations/GetResponsesRequest.java:
id: a814a8ebec03
- last_write_checksum: sha1:4516a9c21535063dcf8c2fd3ad4b6f6bfb737dda
+ last_write_checksum: sha1:5aec4404dbcd2afd14edbcf7d9b60d7c5c58adbf
pristine_git_object: d820066bd5c0c60afe0a3c5fc0d23af4c8336531
src/main/java/com/cvent/models/operations/GetResponsesRequestBuilder.java:
id: c6432065aea0
@@ -18958,7 +18958,7 @@ trackedFiles:
pristine_git_object: b5da70d97b8fcc7f0e91fac60986f43453080b39
src/main/java/com/cvent/models/operations/GetStandardSurveyRespondentsRequest.java:
id: 2e7faeadc65f
- last_write_checksum: sha1:045698a260247048f047a185959b0b2508b05a38
+ last_write_checksum: sha1:bc92580cd7caa663e0d9898cdb580acccdacbdaa
pristine_git_object: ba5413fbbb1ce293040c22a3e1b33fe2ac5823c7
src/main/java/com/cvent/models/operations/GetStandardSurveyRespondentsRequestBuilder.java:
id: 7e90c4090019
@@ -18970,7 +18970,7 @@ trackedFiles:
pristine_git_object: a7b32d12b1ba8497250d0dae475db48c7fd28ba9
src/main/java/com/cvent/models/operations/GetStandardSurveyResponsesRequest.java:
id: ecfe4070d6b8
- last_write_checksum: sha1:c3f70c69247f6d5ee1be15c8c1f5c314da3ae58e
+ last_write_checksum: sha1:72f4a0bea77403933ded04d3313677d8e31d395a
pristine_git_object: 48892555e4ad4ee0a4fe934ce80e017acec1160e
src/main/java/com/cvent/models/operations/GetStandardSurveyResponsesRequestBuilder.java:
id: 5e66d3fd22b7
@@ -18982,7 +18982,7 @@ trackedFiles:
pristine_git_object: 8c023babf40d04cade42349b76ce7227097564f7
src/main/java/com/cvent/models/operations/GetStandardSurveysRequest.java:
id: 02d3573f6b71
- last_write_checksum: sha1:dd3eb7e87d233f6f12589e33294c5a0b64b2d8fa
+ last_write_checksum: sha1:cf82c28fd6343849494903fc4b46af593b0dd088
pristine_git_object: 57f7633ebe80f0292e61dd0da30b134e474f018a
src/main/java/com/cvent/models/operations/GetStandardSurveysRequestBuilder.java:
id: 46a9fc0f0ebe
@@ -19018,7 +19018,7 @@ trackedFiles:
pristine_git_object: 853c5fe1b329a0c41df7e90a73a199b7ac41e0b1
src/main/java/com/cvent/models/operations/GetSurveyRequest.java:
id: fda29776ea43
- last_write_checksum: sha1:5363a795bace495edf3a1599161b678a5df04355
+ last_write_checksum: sha1:6066f2b2aabce07d619f2b81952844ad029f7c9f
pristine_git_object: d30a12219ed29d8417a930a7aa89d93cc1d39e81
src/main/java/com/cvent/models/operations/GetSurveyRequestBuilder.java:
id: 3807d22a288a
@@ -19054,7 +19054,7 @@ trackedFiles:
pristine_git_object: adb1cc94fc84babbc1f9f15dd430fb967282f45d
src/main/java/com/cvent/models/operations/GetTransactionItemsRequest.java:
id: 1da41ceca63f
- last_write_checksum: sha1:930779293c082ffa17ffee07288e8c7815475bf5
+ last_write_checksum: sha1:56e9547c0b6fd49b5ff7a09b6fc3cdf710407683
pristine_git_object: 040a4ff34eff1580e885f6aa244cfeb156d0ebf8
src/main/java/com/cvent/models/operations/GetTransactionItemsRequestBuilder.java:
id: 83680630d81f
@@ -19066,7 +19066,7 @@ trackedFiles:
pristine_git_object: 0a0023dcaa3760a055d9c4685cdb075fae554195
src/main/java/com/cvent/models/operations/GetTransactionsRequest.java:
id: 086434f32999
- last_write_checksum: sha1:78b6ab0d2e6dbed02be436eacf7201a628f5a8bc
+ last_write_checksum: sha1:69d9ef44f27fffa5a97e509e27adf04943e2baaf
pristine_git_object: a242166f96b3f89e74a3b0a5fe71d1a080775a0a
src/main/java/com/cvent/models/operations/GetTransactionsRequestBuilder.java:
id: 2ae64f7c36a8
@@ -19182,7 +19182,7 @@ trackedFiles:
pristine_git_object: 41aad1e31abb6db13852df58b502274ca408c95f
src/main/java/com/cvent/models/operations/GetVideoViewsRequest.java:
id: c166cfc952bd
- last_write_checksum: sha1:5fafcc1ddcfcc32264f49cbc9e8674b580fecef6
+ last_write_checksum: sha1:fd321f1283f3deb342ef413416da37d779f1e27e
pristine_git_object: c864949322ce5dc31f2cd69af71f80ea498a0856
src/main/java/com/cvent/models/operations/GetVideoViewsRequestBuilder.java:
id: ff270184a2ef
@@ -19317,14 +19317,14 @@ trackedFiles:
last_write_checksum: sha1:fd5861a928f934d9cca1d13f08bce2232e28b4f4
pristine_git_object: 2a78a91e758e4498645c49904744d8c381ae733c
src/main/java/com/cvent/models/operations/ListAssociatedAudienceSegmentsRequest.java:
- last_write_checksum: sha1:bffe25653fdb3ce415fde3eebe0339100e7a3221
+ last_write_checksum: sha1:3d714dfab659bfc0c5555c5a3f2022d3436a39bd
src/main/java/com/cvent/models/operations/ListAssociatedAudienceSegmentsRequestBuilder.java:
last_write_checksum: sha1:74b5b28e3abc372316e6b51fe62595ff132dd825
src/main/java/com/cvent/models/operations/ListAssociatedAudienceSegmentsResponse.java:
last_write_checksum: sha1:d65756c21065d5101b8b79cce65f563cd5eaaf90
src/main/java/com/cvent/models/operations/ListAttendeeActivitiesRequest.java:
id: 96b99942f81f
- last_write_checksum: sha1:3258d19503f8d957182d526eb681583583187964
+ last_write_checksum: sha1:6bd54f322acf2064252949acbd02800eb3371daf
pristine_git_object: a154da805b5fb40e8c826eb22c24a0e150d567f6
src/main/java/com/cvent/models/operations/ListAttendeeActivitiesRequestBuilder.java:
id: ad703da240fb
@@ -19335,7 +19335,7 @@ trackedFiles:
last_write_checksum: sha1:ac72bc1dce7a5094f682a39cdbc6e38dabbb45b4
pristine_git_object: d184b615f806f23d5a2244d8bab6391a934f92e1
src/main/java/com/cvent/models/operations/ListAttendeeAudienceSegmentsRequest.java:
- last_write_checksum: sha1:fe6e635d03a80d86e31763246eb7e91b13edb995
+ last_write_checksum: sha1:7f152ca5a10410b4701e0ad222e7a3fc961796d8
src/main/java/com/cvent/models/operations/ListAttendeeAudienceSegmentsRequestBuilder.java:
last_write_checksum: sha1:9bf55e841b4a0bac9c9c232afe42c5d122961208
src/main/java/com/cvent/models/operations/ListAttendeeAudienceSegmentsResponse.java:
@@ -19354,7 +19354,7 @@ trackedFiles:
pristine_git_object: cbafe32c6c150512f13d6e9110476fe82e46e20b
src/main/java/com/cvent/models/operations/ListAttendeeLinksRequest.java:
id: 6e8041ce7021
- last_write_checksum: sha1:82b7d0195fc1feb3fe09a75a53fbbd6acedbf10b
+ last_write_checksum: sha1:69ef3e399fc7cefad675144a017bf6e7b3bfd519
pristine_git_object: 0276dd71e081488862642c402c8325f2d7014904
src/main/java/com/cvent/models/operations/ListAttendeeLinksRequestBuilder.java:
id: 3ecdf3334df0
@@ -19378,7 +19378,7 @@ trackedFiles:
pristine_git_object: fe4e7923fce41445e9ba79fb621699f334460990
src/main/java/com/cvent/models/operations/ListAttendeesRequest.java:
id: 20acb36cb19c
- last_write_checksum: sha1:25ba8a973285eaa2508f479b3cda79ea18260c39
+ last_write_checksum: sha1:3329d510a6802dafe4fbfad6367608779c488eaf
pristine_git_object: be13a74a913947ab79882e656ab219b61d349717
src/main/java/com/cvent/models/operations/ListAttendeesRequestBuilder.java:
id: 9d79ec3fc623
@@ -19390,7 +19390,7 @@ trackedFiles:
pristine_git_object: 72aad959b556348606af970d465b41ed64cc2729
src/main/java/com/cvent/models/operations/ListAudienceSegmentsPostFilterRequest.java:
id: 93614aa3c530
- last_write_checksum: sha1:3b564facff13c33e18d7d1ebaf4dc2a5a54f7ae2
+ last_write_checksum: sha1:c5dedcaa19e7c20501e22115904240d893551d10
pristine_git_object: 57dd520b0d063d87fabb194d4abf6c0f1258ee15
src/main/java/com/cvent/models/operations/ListAudienceSegmentsPostFilterRequestBuilder.java:
id: 7adc5a43124b
@@ -19402,7 +19402,7 @@ trackedFiles:
pristine_git_object: 110e7320de578f45da549f3900bac8aa650ffaee
src/main/java/com/cvent/models/operations/ListAudienceSegmentsRequest.java:
id: dfb33fd0fe32
- last_write_checksum: sha1:fe180ebdae4f2e8a5590b04aef208d3960169ef1
+ last_write_checksum: sha1:6067bf908e0f1dfb4502e1e04f0ef4d5b4e7621d
pristine_git_object: 655b5adfb3f9cdcc57fe8a987919a9dfa3bface2
src/main/java/com/cvent/models/operations/ListAudienceSegmentsRequestBuilder.java:
id: 009656c92fa9
@@ -19474,7 +19474,7 @@ trackedFiles:
pristine_git_object: cb4bc9efecd4d85be0066182e3a97d2fe03e24de
src/main/java/com/cvent/models/operations/ListContactGroupsRequest.java:
id: 187562b63a9e
- last_write_checksum: sha1:763512b03ca481fe7de1c359a5633506efb663bc
+ last_write_checksum: sha1:232697ca16de16df10f89a20ee9a2ae5e28fb77a
pristine_git_object: 84e506c996a7a840ab1e25f42d1eb5fd5be17c33
src/main/java/com/cvent/models/operations/ListContactGroupsRequestBuilder.java:
id: 15c7c4b0f1f3
@@ -19498,7 +19498,7 @@ trackedFiles:
pristine_git_object: 9970e33a01d80167dbf73cfbcf012e559e4b7bd6
src/main/java/com/cvent/models/operations/ListContactTypesRequest.java:
id: 2c88194e86d9
- last_write_checksum: sha1:c8706faa2e61c96136548837c8948efb8819460a
+ last_write_checksum: sha1:ba7d950bdac1c14a1bd6e8b2ebea80273e077c3e
pristine_git_object: ff42f194619cb4c7ef60d299bf12df8b3ae355f9
src/main/java/com/cvent/models/operations/ListContactTypesRequestBuilder.java:
id: adbfbcb2db7a
@@ -19522,7 +19522,7 @@ trackedFiles:
pristine_git_object: 6f0d3209627ffe90498436d237c1445d26be74ba
src/main/java/com/cvent/models/operations/ListContactsRequest.java:
id: 095db9f63246
- last_write_checksum: sha1:ba6e658ba16f55443fa1c227829e56b3976ad20d
+ last_write_checksum: sha1:1f9d8236f69995d8ea4d288ae9af5458d2a5df92
pristine_git_object: 95733cc8ec3bbaf1ad97be3ae2faafc7652c89da
src/main/java/com/cvent/models/operations/ListContactsRequestBuilder.java:
id: 97307a3eb1e9
@@ -19546,7 +19546,7 @@ trackedFiles:
pristine_git_object: 95a0327602dcbdc10b400c75996771b2d2384d75
src/main/java/com/cvent/models/operations/ListDiscountedAgendaItemsRequest.java:
id: 034d1513bd11
- last_write_checksum: sha1:5a80fc06d3992ea8914a732be4316db6cac25233
+ last_write_checksum: sha1:f69164d46c32cf6636d412ac36d299da91eb4885
pristine_git_object: a2ad7534e596c042df2483308ffe3154c1244fd9
src/main/java/com/cvent/models/operations/ListDiscountedAgendaItemsRequestBuilder.java:
id: ea81087d8493
@@ -19570,7 +19570,7 @@ trackedFiles:
pristine_git_object: c9a31ba9d97c18dde370d1dbcb97700b2435a36a
src/main/java/com/cvent/models/operations/ListDonationItemsRequest.java:
id: a32dbe04d4cb
- last_write_checksum: sha1:8f273458f7abba465515462fcee79ef0482c5c6e
+ last_write_checksum: sha1:b51286d6ac3488489dabd6b5e736bb3bbe4e171a
pristine_git_object: fdcf1aece2a56208b3769dd70a842164255de872
src/main/java/com/cvent/models/operations/ListDonationItemsRequestBuilder.java:
id: 3eedc3535cb4
@@ -19582,7 +19582,7 @@ trackedFiles:
pristine_git_object: fcdfe10334173ab485f0cc9b75e6592f66ea6787
src/main/java/com/cvent/models/operations/ListDurationsRequest.java:
id: 9451239af488
- last_write_checksum: sha1:abe62dfa559d29696f0dbe7395653967f18aa766
+ last_write_checksum: sha1:e636879d3d45c0c3de4c257eda24cbc680a9c6f3
pristine_git_object: 1d194e6850287377518ddafa720731764f001099
src/main/java/com/cvent/models/operations/ListDurationsRequestBuilder.java:
id: e210091b13ca
@@ -19594,7 +19594,7 @@ trackedFiles:
pristine_git_object: ec41dea4b3bf70975dcc54d6d832ec48e403212e
src/main/java/com/cvent/models/operations/ListEventDiscountsRequest.java:
id: 1f23500ffc68
- last_write_checksum: sha1:8ea1e14e4f04d67e18ae634792c76f93c0b9fc8b
+ last_write_checksum: sha1:ad64b9007c25432c8295e57062f8ce98a5a6d06d
pristine_git_object: 7b120594b86940f8a55313e8b5ee32f4b5734761
src/main/java/com/cvent/models/operations/ListEventDiscountsRequestBuilder.java:
id: 88909a583aba
@@ -19653,7 +19653,7 @@ trackedFiles:
src/main/java/com/cvent/models/operations/ListEventVouchersPostFilterResponse.java:
last_write_checksum: sha1:225338ad255569c5ae639fb953fa896a651d40e2
src/main/java/com/cvent/models/operations/ListEventVouchersRequest.java:
- last_write_checksum: sha1:8839c1f2c64b694f19b5a6da1c1b95e7cfd5ba45
+ last_write_checksum: sha1:fa2947bfa00ca789a305e0ee0305057fa7a3838d
src/main/java/com/cvent/models/operations/ListEventVouchersRequestBuilder.java:
last_write_checksum: sha1:ea52b07be0a2e190097bb69aab0803bfbd53fc3c
src/main/java/com/cvent/models/operations/ListEventVouchersResponse.java:
@@ -19732,7 +19732,7 @@ trackedFiles:
pristine_git_object: 33c396f5a179c54611b14c060b4a6af8c555ff1a
src/main/java/com/cvent/models/operations/ListExternalAttendeeActivitiesMetadataRequest.java:
id: a8af656e53a5
- last_write_checksum: sha1:f2d42f24ece937610ed4dd66340680e832529690
+ last_write_checksum: sha1:d1f4a69c488e093a35715ea949cd0f0dfed83930
pristine_git_object: 228b00f830f6ca013a3139bc67002e21124f2404
src/main/java/com/cvent/models/operations/ListExternalAttendeeActivitiesMetadataRequestBuilder.java:
id: adc74b586a1b
@@ -19744,7 +19744,7 @@ trackedFiles:
pristine_git_object: fa7ad5e7468efd7ac689bca1a2cf8d360198ba5b
src/main/java/com/cvent/models/operations/ListFeeItemsRequest.java:
id: 7ba704e55e69
- last_write_checksum: sha1:5755322f243def48ee05a28aaafb04eef09f9e69
+ last_write_checksum: sha1:ab281606221c75e21ca33e920b7e63c01d38e42b
pristine_git_object: 21a3e516e24c96eb35200bcb9bb84e32c1c10ffb
src/main/java/com/cvent/models/operations/ListFeeItemsRequestBuilder.java:
id: 8fe3cdaccc83
@@ -19756,7 +19756,7 @@ trackedFiles:
pristine_git_object: 20fc959055e3e46f290c9dfbde870c7e9f0910f7
src/main/java/com/cvent/models/operations/ListHubsRequest.java:
id: 3e486a4b4929
- last_write_checksum: sha1:4573375f290a3e89f3be75f0c0c49ee46614f2cd
+ last_write_checksum: sha1:9cdfc3b1ae784d1c25dfc0b9fe2d7a11719dc972
pristine_git_object: c16baf13ba6a9821d0eeda9e5a9a38a605e29188
src/main/java/com/cvent/models/operations/ListHubsRequestBuilder.java:
id: 19948486639e
@@ -19833,14 +19833,14 @@ trackedFiles:
src/main/java/com/cvent/models/operations/ListMembershipItemsPostFilterResponse.java:
last_write_checksum: sha1:6297e7c1fe51693b21a840b771f529e094676f57
src/main/java/com/cvent/models/operations/ListMembershipItemsRequest.java:
- last_write_checksum: sha1:0e2ba77f103db5ddb84c38689ef9708aafd539ff
+ last_write_checksum: sha1:45855a0b0f274aa0c447d04b31da632850f598c0
src/main/java/com/cvent/models/operations/ListMembershipItemsRequestBuilder.java:
last_write_checksum: sha1:d49adedd7d7b4002c34cb0eb2c011c4bf392e732
src/main/java/com/cvent/models/operations/ListMembershipItemsResponse.java:
last_write_checksum: sha1:1348d03aa46c4663511491abddb46e95a143312f
src/main/java/com/cvent/models/operations/ListPlayersRequest.java:
id: 31ff58fecbc3
- last_write_checksum: sha1:2ce7a3ff31dc93f97fd709a1947e4eb38799d4a9
+ last_write_checksum: sha1:c1722923138b34fe42e567bf6c00d7b420e63b24
pristine_git_object: 6b8f0962adad6c12390dc1579a4934815459bb3a
src/main/java/com/cvent/models/operations/ListPlayersRequestBuilder.java:
id: 288bada73561
@@ -19876,7 +19876,7 @@ trackedFiles:
pristine_git_object: 3ab6d55a237403f438390848aa649a7f263a2736
src/main/java/com/cvent/models/operations/ListProgramItemsRequest.java:
id: e125d35d11f7
- last_write_checksum: sha1:933a51d267da8d96ae04eeaa939ff06e8544a88b
+ last_write_checksum: sha1:fb27fbe01f0859f829f033d3087d70a08aaec409
pristine_git_object: f22d839864da066a1d335c397cb3bdf09ae0436b
src/main/java/com/cvent/models/operations/ListProgramItemsRequestBuilder.java:
id: e2bc0623ff71
@@ -19900,7 +19900,7 @@ trackedFiles:
pristine_git_object: 7e7a297d80a9d088c7c64e539be186aee84aab13
src/main/java/com/cvent/models/operations/ListQuantityItemsRequest.java:
id: 732755a8a5b3
- last_write_checksum: sha1:02483a65b1d4fc57a660e0e000b94393a8d03838
+ last_write_checksum: sha1:9552e16e3b670eca9bd49e00ff3038c67d67391d
pristine_git_object: 8d5800ec52b5199751bf1fa77a889a74791c84fe
src/main/java/com/cvent/models/operations/ListQuantityItemsRequestBuilder.java:
id: 946c64d036ba
@@ -20008,7 +20008,7 @@ trackedFiles:
pristine_git_object: e94d9871604edab551ec1afcfffb33f647c17890
src/main/java/com/cvent/models/operations/ListSegmentAssociatedAttendeesRequest.java:
id: d95626f43338
- last_write_checksum: sha1:23780fbda690403f1c333e7b846d55be53713e50
+ last_write_checksum: sha1:34c1c179b2fafabdd2f1ea24284d6fbb8d7ae3b2
pristine_git_object: ddbec61f4c542ace1abdda3e0603d0dced03c06b
src/main/java/com/cvent/models/operations/ListSegmentAssociatedAttendeesRequestBuilder.java:
id: 7326a19f09b7
@@ -20020,7 +20020,7 @@ trackedFiles:
pristine_git_object: c8bc5c83d101284efa969a54c589fef913b0106d
src/main/java/com/cvent/models/operations/ListSessionDocsRequest.java:
id: 58cfd3dce9bd
- last_write_checksum: sha1:906592254db575ef4000a078f160b4119660eaed
+ last_write_checksum: sha1:5f1a49bd5829da1ef51e3435fb602d717bad900c
pristine_git_object: 2ad0ae72c1d5f6f1ac8f03e4b7d11a46b7f44c10
src/main/java/com/cvent/models/operations/ListSessionDocsRequestBuilder.java:
id: 971445985d4f
@@ -20068,7 +20068,7 @@ trackedFiles:
pristine_git_object: e0e9ca29d2a15cc4cd3961773ebd7c50ef61845e
src/main/java/com/cvent/models/operations/ListSessionsCategoriesRequest.java:
id: dc3d6d634467
- last_write_checksum: sha1:57dfc62e568954143a1e1f78c72bc50896910a9b
+ last_write_checksum: sha1:da55b5294fe2e18f4f7a037b1e9a09fb8da24c16
pristine_git_object: 1e9a1c294d708e56866a640662bfa72b326fe2f9
src/main/java/com/cvent/models/operations/ListSessionsCategoriesRequestBuilder.java:
id: 5410cbe9b595
@@ -20116,7 +20116,7 @@ trackedFiles:
pristine_git_object: 44b52574d1d4e74d07777037cfbed9879ff8bd90
src/main/java/com/cvent/models/operations/ListSessionsRequest.java:
id: 23449529e569
- last_write_checksum: sha1:6fe28108aa65e5967d2efeabe8a2aa7c14263ff3
+ last_write_checksum: sha1:ac5d255c6c682b432ce1fd9d0710993f165f91d0
pristine_git_object: 5f2f4bcb64b1d828ea67e98dd120d4bed7f6a381
src/main/java/com/cvent/models/operations/ListSessionsRequestBuilder.java:
id: aa6855cc47ba
@@ -20211,7 +20211,7 @@ trackedFiles:
last_write_checksum: sha1:78d4874ea55d2b24e50be75939a87cf3acb10201
pristine_git_object: e1ee5e172315541a58be3bc8bcae97dfa4c17f79
src/main/java/com/cvent/models/operations/ListTaxesRequest.java:
- last_write_checksum: sha1:7ddea849b193cd6acd4fb8c25bdcf1f37e3df279
+ last_write_checksum: sha1:0b6bd9c29b32ed9182abbdf14bbc5e679416d204
src/main/java/com/cvent/models/operations/ListTaxesRequestBuilder.java:
last_write_checksum: sha1:b13cf2150f9c8daee1a2d36649eb3fdd481417e2
src/main/java/com/cvent/models/operations/ListTaxesResponse.java:
@@ -20326,7 +20326,7 @@ trackedFiles:
pristine_git_object: 0045a803d33697a3ab8540b03d5bf22c386071d4
src/main/java/com/cvent/models/operations/ListVideosRequest.java:
id: a5d79a66cb23
- last_write_checksum: sha1:696146118d226d238c2c753ad74f1e5fce2e1cce
+ last_write_checksum: sha1:f0ec6622c6c1e536048a49d7c8dbc48533981c49
pristine_git_object: feeef5b81cfb99092be65ecd607c12db77c88b42
src/main/java/com/cvent/models/operations/ListVideosRequestBuilder.java:
id: 48b5f71ab8a1
@@ -20338,7 +20338,7 @@ trackedFiles:
pristine_git_object: e638b7b92fbea77caece0504f01923fada52c9b3
src/main/java/com/cvent/models/operations/ListWebcastAttendeeLinksRequest.java:
id: 61b9ec49290f
- last_write_checksum: sha1:6a74dbe6a9f61bbfc24c4c7d2feaa54945136960
+ last_write_checksum: sha1:863345126bba8fca691e5d9654e8a950e6eb0966
pristine_git_object: 6dc1c5f6f5da2bb52a92733c3aaac42104f06d81
src/main/java/com/cvent/models/operations/ListWebcastAttendeeLinksRequestBuilder.java:
id: c8d8c1b9dd2a
@@ -20350,7 +20350,7 @@ trackedFiles:
pristine_git_object: eb5b9cf96cf2e7dbeb288541d3e27d956cf0ee8a
src/main/java/com/cvent/models/operations/ListWebcastsRequest.java:
id: 48760ce7ba3d
- last_write_checksum: sha1:86e0b53a60e5306816c0b25a56794ce03b57077e
+ last_write_checksum: sha1:25e1b2905d9e0398bff7ccbb4953d14f861a8cdd
pristine_git_object: d4b4a34c28cfb05a752662376ad0decf28e28805
src/main/java/com/cvent/models/operations/ListWebcastsRequestBuilder.java:
id: 5485819aabb9
diff --git a/packages/java/.speakeasy/gen.yaml b/packages/java/.speakeasy/gen.yaml
index 41f83386..df50aa76 100644
--- a/packages/java/.speakeasy/gen.yaml
+++ b/packages/java/.speakeasy/gen.yaml
@@ -34,7 +34,7 @@ generation:
generateNewTests: true
skipResponseBodyAssertions: false
java:
- version: 1.5.0
+ version: 1.5.1
additionalDependencies: []
additionalPlugins: []
artifactID: sdk
diff --git a/packages/java/README.md b/packages/java/README.md
index c177a742..cd859ccf 100644
--- a/packages/java/README.md
+++ b/packages/java/README.md
@@ -44,7 +44,7 @@ The samples below show how a published SDK artifact is used:
Gradle:
```groovy
-implementation 'com.cvent:sdk:1.5.0'
+implementation 'com.cvent:sdk:1.5.1'
```
Maven:
@@ -52,7 +52,7 @@ Maven:
com.cvent
sdk
- 1.5.0
+ 1.5.1
```
diff --git a/packages/java/docs/models/components/AttendeeContactInfo.md b/packages/java/docs/models/components/AttendeeContactInfo.md
index 10e75c25..5ba0496d 100644
--- a/packages/java/docs/models/components/AttendeeContactInfo.md
+++ b/packages/java/docs/models/components/AttendeeContactInfo.md
@@ -5,43 +5,43 @@ Information about attendee contact added to an event.
## Fields
-| Field | Type | Required | Description | Example |
-| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| ~~`created`~~ | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
The ISO 8601 zoned date time when an attendee record was created. Note: This field is deprecated. Please use the [Get Contact](/documentation#tag/Contacts/operation/getContactById) or [List Contact](/documentation#tag/Contacts/operation/listContacts) endpoints for contact audit details. | 2017-01-02T02:00:00Z |
-| ~~`createdBy`~~ | *Optional\* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
The identifier of the user that created this attendee record. Note: This field is deprecated. Please use the [Get Contact](/documentation#tag/Contacts/operation/getContactById) or [List Contact](/documentation#tag/Contacts/operation/listContacts) endpoints for contact audit details. | hporter |
-| ~~`lastModified`~~ | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
The ISO 8601 zoned date time when this attendee record was updated. Note: This field is deprecated. Please use the [Get Contact](/documentation#tag/Contacts/operation/getContactById) or [List Contact](/documentation#tag/Contacts/operation/listContacts) endpoints for contact audit details. | 2019-02-12T03:00:00Z |
-| ~~`lastModifiedBy`~~ | *Optional\* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
The identifier of the user that last updated this attendee record. Note: This field is deprecated. Please use the [Get Contact](/documentation#tag/Contacts/operation/getContactById) or [List Contact](/documentation#tag/Contacts/operation/listContacts) endpoints for contact audit details. | hporter |
-| `id` | *Optional\* | :heavy_minus_sign: | The id of contact | |
-| `firstName` | *Optional\* | :heavy_minus_sign: | The first name of the contact | Henry |
-| `lastName` | *Optional\* | :heavy_minus_sign: | The last name of the contact | Potterfield |
-| `middleName` | *Optional\* | :heavy_minus_sign: | The middle name of the contact | A |
-| `nickname` | *Optional\* | :heavy_minus_sign: | The nickname of the contact. | Harry |
-| `email` | *Optional\* | :heavy_minus_sign: | The email address of the contact | h.potterfield@test.com |
-| `ccEmail` | *Optional\* | :heavy_minus_sign: | An alternate email address of the contact that will be cc'd on all email communications | h.porter@tesing.com |
-| `gender` | [Optional\](../../models/components/Gender.md) | :heavy_minus_sign: | The gender of the contact. | Male |
-| `company` | *Optional\* | :heavy_minus_sign: | The company/organization the contact belongs to. | Cvent Inc. |
-| `designation` | *Optional\* | :heavy_minus_sign: | The designation of the contact | Event |
-| `title` | *Optional\* | :heavy_minus_sign: | The job title of the contact | Event Planner |
-| `type` | [Optional\](../../models/components/AttendeeContactType.md) | :heavy_minus_sign: | Contains details related to the attendee's contact type. | |
-| ~~`membership`~~ | [Optional\](../../models/components/AttendeeContactMembership.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
Attendee's contact membership information. Note: This field is deprecated. Previous documentation incorrectly listed support for this feature. | |
-| `primaryAddressType` | [Optional\](../../models/components/AddressType.md) | :heavy_minus_sign: | The type of address. | Home |
-| `homeAddress` | [Optional\](../../models/components/Address3.md) | :heavy_minus_sign: | Address details | |
-| `homePhone` | *Optional\* | :heavy_minus_sign: | Home phone number | 555-555-5555 |
-| `homeFax` | *Optional\* | :heavy_minus_sign: | Home FAX number | 555-555-5555 |
-| `workAddress` | [Optional\](../../models/components/Address3.md) | :heavy_minus_sign: | Address details | |
-| `workPhone` | *Optional\* | :heavy_minus_sign: | Work phone number | 555-555-5555 |
-| `workFax` | *Optional\* | :heavy_minus_sign: | Work FAX number | 555-555-5555 |
-| `optOut` | [Optional\](../../models/components/OptOut.md) | :heavy_minus_sign: | Opt-out choices. | |
-| `customFields` | List\<[CustomFieldSchema](../../models/components/CustomFieldSchema.md)> | :heavy_minus_sign: | Collection of custom fields. | |
-| `sourceId` | *Optional\* | :heavy_minus_sign: | This is a ID for the contact in an external system. NOTE: This value is expected to be unique for each contact within an account. Consider adding the external system name has part of the ID | system-a-00000000-0000-0000-0000-000000000000 |
-| `mobilePhone` | *Optional\* | :heavy_minus_sign: | Mobile phone number | 555-555-5555 |
-| `compliance` | List\<[Compliance](../../models/components/Compliance.md)> | :heavy_minus_sign: | Detail related to compliance with the contact's privacy rights under various legislation. | |
-| `prefix` | *Optional\* | :heavy_minus_sign: | Used to denote what is traditionally a title of an individual. For example, Mr., Mrs., Dr., etc. | Dr. |
-| `pager` | *Optional\* | :heavy_minus_sign: | The pager number of the contact. | 555-555-5555 |
-| `deleted` | *Optional\* | :heavy_minus_sign: | True indicates a contact is deleted. | false |
-| `headline` | *Optional\* | :heavy_minus_sign: | The headline of the contact's profile, which summarizes their professional experience and qualities. | Marketing Director Crafting Memorable Campaigns that Engage Audiences and Elevate Brands |
-| `personalWebsite` | *Optional\* | :heavy_minus_sign: | A contact's personal website URL. | https://www.example.com |
-| `biography` | *Optional\* | :heavy_minus_sign: | A contact's biographical writeup. | I am a marketing professional with experience in event planning and brand strategy. |
-| ~~`pronoun`~~ | *Optional\* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
Represents the preferred pronoun of a contact. Deprecated. Use `pronouns` instead. | he/him/she/her/they/them |
-| `pronouns` | *Optional\* | :heavy_minus_sign: | Represents the preferred pronouns of a contact. | he/him/she/her/they/them |
-| `links` | [Optional\](../../models/components/ContactLinks.md) | :heavy_minus_sign: | Collection of social media links for the contact. | |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| ~~`created`~~ | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
The ISO 8601 zoned date time when an attendee record was created. Note: This field is deprecated. Please use the [Get Contact](https://developers.cvent.com/documentation#tag/Contacts/operation/getContactById) or [List Contact](https://developers.cvent.com/documentation#tag/Contacts/operation/listContacts) endpoints for contact audit details. | 2017-01-02T02:00:00Z |
+| ~~`createdBy`~~ | *Optional\* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
The identifier of the user that created this attendee record. Note: This field is deprecated. Please use the [Get Contact](https://developers.cvent.com/documentation#tag/Contacts/operation/getContactById) or [List Contact](https://developers.cvent.com/documentation#tag/Contacts/operation/listContacts) endpoints for contact audit details. | hporter |
+| ~~`lastModified`~~ | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
The ISO 8601 zoned date time when this attendee record was updated. Note: This field is deprecated. Please use the [Get Contact](https://developers.cvent.com/documentation#tag/Contacts/operation/getContactById) or [List Contact](https://developers.cvent.com/documentation#tag/Contacts/operation/listContacts) endpoints for contact audit details. | 2019-02-12T03:00:00Z |
+| ~~`lastModifiedBy`~~ | *Optional\* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
The identifier of the user that last updated this attendee record. Note: This field is deprecated. Please use the [Get Contact](https://developers.cvent.com/documentation#tag/Contacts/operation/getContactById) or [List Contact](https://developers.cvent.com/documentation#tag/Contacts/operation/listContacts) endpoints for contact audit details. | hporter |
+| `id` | *Optional\* | :heavy_minus_sign: | The id of contact | |
+| `firstName` | *Optional\* | :heavy_minus_sign: | The first name of the contact | Henry |
+| `lastName` | *Optional\* | :heavy_minus_sign: | The last name of the contact | Potterfield |
+| `middleName` | *Optional\* | :heavy_minus_sign: | The middle name of the contact | A |
+| `nickname` | *Optional\* | :heavy_minus_sign: | The nickname of the contact. | Harry |
+| `email` | *Optional\* | :heavy_minus_sign: | The email address of the contact | h.potterfield@test.com |
+| `ccEmail` | *Optional\* | :heavy_minus_sign: | An alternate email address of the contact that will be cc'd on all email communications | h.porter@tesing.com |
+| `gender` | [Optional\](../../models/components/Gender.md) | :heavy_minus_sign: | The gender of the contact. | Male |
+| `company` | *Optional\* | :heavy_minus_sign: | The company/organization the contact belongs to. | Cvent Inc. |
+| `designation` | *Optional\* | :heavy_minus_sign: | The designation of the contact | Event |
+| `title` | *Optional\* | :heavy_minus_sign: | The job title of the contact | Event Planner |
+| `type` | [Optional\](../../models/components/AttendeeContactType.md) | :heavy_minus_sign: | Contains details related to the attendee's contact type. | |
+| ~~`membership`~~ | [Optional\](../../models/components/AttendeeContactMembership.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
Attendee's contact membership information. Note: This field is deprecated. Previous documentation incorrectly listed support for this feature. | |
+| `primaryAddressType` | [Optional\](../../models/components/AddressType.md) | :heavy_minus_sign: | The type of address. | Home |
+| `homeAddress` | [Optional\](../../models/components/Address3.md) | :heavy_minus_sign: | Address details | |
+| `homePhone` | *Optional\* | :heavy_minus_sign: | Home phone number | 555-555-5555 |
+| `homeFax` | *Optional\* | :heavy_minus_sign: | Home FAX number | 555-555-5555 |
+| `workAddress` | [Optional\](../../models/components/Address3.md) | :heavy_minus_sign: | Address details | |
+| `workPhone` | *Optional\* | :heavy_minus_sign: | Work phone number | 555-555-5555 |
+| `workFax` | *Optional\* | :heavy_minus_sign: | Work FAX number | 555-555-5555 |
+| `optOut` | [Optional\](../../models/components/OptOut.md) | :heavy_minus_sign: | Opt-out choices. | |
+| `customFields` | List\<[CustomFieldSchema](../../models/components/CustomFieldSchema.md)> | :heavy_minus_sign: | Collection of custom fields. | |
+| `sourceId` | *Optional\* | :heavy_minus_sign: | This is a ID for the contact in an external system. NOTE: This value is expected to be unique for each contact within an account. Consider adding the external system name has part of the ID | system-a-00000000-0000-0000-0000-000000000000 |
+| `mobilePhone` | *Optional\* | :heavy_minus_sign: | Mobile phone number | 555-555-5555 |
+| `compliance` | List\<[Compliance](../../models/components/Compliance.md)> | :heavy_minus_sign: | Detail related to compliance with the contact's privacy rights under various legislation. | |
+| `prefix` | *Optional\* | :heavy_minus_sign: | Used to denote what is traditionally a title of an individual. For example, Mr., Mrs., Dr., etc. | Dr. |
+| `pager` | *Optional\* | :heavy_minus_sign: | The pager number of the contact. | 555-555-5555 |
+| `deleted` | *Optional\* | :heavy_minus_sign: | True indicates a contact is deleted. | false |
+| `headline` | *Optional\* | :heavy_minus_sign: | The headline of the contact's profile, which summarizes their professional experience and qualities. | Marketing Director Crafting Memorable Campaigns that Engage Audiences and Elevate Brands |
+| `personalWebsite` | *Optional\* | :heavy_minus_sign: | A contact's personal website URL. | https://www.example.com |
+| `biography` | *Optional\* | :heavy_minus_sign: | A contact's biographical writeup. | I am a marketing professional with experience in event planning and brand strategy. |
+| ~~`pronoun`~~ | *Optional\* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
Represents the preferred pronoun of a contact. Deprecated. Use `pronouns` instead. | he/him/she/her/they/them |
+| `pronouns` | *Optional\* | :heavy_minus_sign: | Represents the preferred pronouns of a contact. | he/him/she/her/they/them |
+| `links` | [Optional\](../../models/components/ContactLinks.md) | :heavy_minus_sign: | Collection of social media links for the contact. | |
\ No newline at end of file
diff --git a/packages/java/docs/models/components/Event1.md b/packages/java/docs/models/components/Event1.md
index 2ed9ce94..4073bd25 100644
--- a/packages/java/docs/models/components/Event1.md
+++ b/packages/java/docs/models/components/Event1.md
@@ -18,7 +18,7 @@ Represents an event.
| `closeAfter` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | The event will be closed for registration after this ISO 8601 formatted date and time. | 2020-02-01T23:59:00.000Z |
| `archiveAfter` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | The event will be archived after this ISO 8601 formatted date and time. | 2020-05-07T12:00:00.000Z |
| `launchAfter` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | The event will launch after this ISO 8601 formatted date and time. If the event has not yet launched, this field shows a date of 1/1/1900. | 2020-01-07T12:00:00.000Z |
-| `timezone` | *String* | :heavy_check_mark: | List of supported [timezones](/docs/rest-api/reference/api-standards#time-zones). | America/New_York |
+| `timezone` | *String* | :heavy_check_mark: | List of supported [timezones](https://developers.cvent.com/docs/rest-api/reference/api-standards#time-zones). | America/New_York |
| `venues` | List\<[VenueJson](../../models/components/VenueJson.md)> | :heavy_minus_sign: | Collection of venues. | |
| `showVenueLocation` | *Optional\* | :heavy_minus_sign: | True indicates the venue location is visible to guests for essential events. If used with other event types, the request returns a 400 error. | |
| `showPointOfContact` | *Optional\* | :heavy_minus_sign: | True indicates the venue location is visible to guests for essential events. If used with other event types, the request returns a 400 error. | |
diff --git a/packages/java/docs/models/components/EventInput.md b/packages/java/docs/models/components/EventInput.md
index b4686a65..0ea53eb2 100644
--- a/packages/java/docs/models/components/EventInput.md
+++ b/packages/java/docs/models/components/EventInput.md
@@ -12,7 +12,7 @@ Represents an event.
| `description` | *Optional\* | :heavy_minus_sign: | Detailed description of the event. | Cvent annual user conference. |
| `start` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | The ISO 8601 formatted date and time when the event starts. | 2020-02-03T13:00:00.000Z |
| `end` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | The ISO 8601 formatted date and time when the event ends. | 2020-02-07T17:00:00.000Z |
-| `timezone` | *String* | :heavy_check_mark: | List of supported [timezones](/docs/rest-api/reference/api-standards#time-zones). | America/New_York |
+| `timezone` | *String* | :heavy_check_mark: | List of supported [timezones](https://developers.cvent.com/docs/rest-api/reference/api-standards#time-zones). | America/New_York |
| `venues` | List\<[VenueJsonInput](../../models/components/VenueJsonInput.md)> | :heavy_minus_sign: | Collection of venues. | |
| `showVenueLocation` | *Optional\* | :heavy_minus_sign: | True indicates the venue location is visible to guests for essential events. If used with other event types, the request returns a 400 error. | |
| `showPointOfContact` | *Optional\* | :heavy_minus_sign: | True indicates the venue location is visible to guests for essential events. If used with other event types, the request returns a 400 error. | |
diff --git a/packages/java/docs/models/components/EventUpdate.md b/packages/java/docs/models/components/EventUpdate.md
index ade10e0e..4de81f68 100644
--- a/packages/java/docs/models/components/EventUpdate.md
+++ b/packages/java/docs/models/components/EventUpdate.md
@@ -18,7 +18,7 @@ Represents updates to an event.
| `closeAfter` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | The event will be closed for registration after this ISO 8601 formatted date and time. | 2020-02-01T23:59:00.000Z |
| `archiveAfter` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | The event will be archived after this ISO 8601 formatted date and time. | 2020-05-07T12:00:00.000Z |
| `launchAfter` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | The event will launch after this ISO 8601 formatted date and time. If the event has not yet launched, this field shows a date of 1/1/1900. | 2020-01-07T12:00:00.000Z |
-| `timezone` | *String* | :heavy_check_mark: | List of supported [timezones](/docs/rest-api/reference/api-standards#time-zones). | America/New_York |
+| `timezone` | *String* | :heavy_check_mark: | List of supported [timezones](https://developers.cvent.com/docs/rest-api/reference/api-standards#time-zones). | America/New_York |
| `venues` | List\<[VenueJson](../../models/components/VenueJson.md)> | :heavy_minus_sign: | Collection of venues. | |
| `showVenueLocation` | *Optional\* | :heavy_minus_sign: | True indicates the venue location is visible to guests for essential events. If used with other event types, the request returns a 400 error. | |
| `showPointOfContact` | *Optional\* | :heavy_minus_sign: | True indicates the venue location is visible to guests for essential events. If used with other event types, the request returns a 400 error. | |
diff --git a/packages/java/docs/models/components/EventUpdateInput.md b/packages/java/docs/models/components/EventUpdateInput.md
index 7416c935..7016844f 100644
--- a/packages/java/docs/models/components/EventUpdateInput.md
+++ b/packages/java/docs/models/components/EventUpdateInput.md
@@ -14,7 +14,7 @@ Represents updates to an event.
| `end` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | The ISO 8601 formatted date and time when the event ends. | 2020-02-07T17:00:00.000Z |
| `closeAfter` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | The event will be closed for registration after this ISO 8601 formatted date and time. | 2020-02-01T23:59:00.000Z |
| `archiveAfter` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | The event will be archived after this ISO 8601 formatted date and time. | 2020-05-07T12:00:00.000Z |
-| `timezone` | *String* | :heavy_check_mark: | List of supported [timezones](/docs/rest-api/reference/api-standards#time-zones). | America/New_York |
+| `timezone` | *String* | :heavy_check_mark: | List of supported [timezones](https://developers.cvent.com/docs/rest-api/reference/api-standards#time-zones). | America/New_York |
| `venues` | List\<[VenueJsonInput](../../models/components/VenueJsonInput.md)> | :heavy_minus_sign: | Collection of venues. | |
| `showVenueLocation` | *Optional\* | :heavy_minus_sign: | True indicates the venue location is visible to guests for essential events. If used with other event types, the request returns a 400 error. | |
| `showPointOfContact` | *Optional\* | :heavy_minus_sign: | True indicates the venue location is visible to guests for essential events. If used with other event types, the request returns a 400 error. | |
diff --git a/packages/java/docs/models/operations/GetAccountBudgetItemsRequest.md b/packages/java/docs/models/operations/GetAccountBudgetItemsRequest.md
index 610ae225..bdbf70e4 100644
--- a/packages/java/docs/models/operations/GetAccountBudgetItemsRequest.md
+++ b/packages/java/docs/models/operations/GetAccountBudgetItemsRequest.md
@@ -3,10 +3,10 @@
## Fields
-| Field | Type | Required | Description | Example |
-| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `after` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_check_mark: | Used to query records that have been modified after this time point. | 2017-01-02T02:00:00Z |
-| `before` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_check_mark: | Used to query records that have been modified before this point | 2017-01-02T02:00:00Z |
-| `limit` | *Optional\* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `token` | *Optional\* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `filter` | *Optional\* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|:-----------------\|:-----------\|
\| event.id \| `eq`, `ne` \|
\| rfp.id \| `eq`, `ne` \|
\| budgetVersion.id \| `eq`, `ne` \|
\| id \| `eq`, `ne` \|
\| category.id \| `eq`, `ne` \|
\| category.name \| `eq`, `ne` \|
\| subCategory.id \| `eq`, `ne` \|
\| subCategory.name \| `eq`, `ne` \|
The following logical operators are supported for combining filters:
* and
* or
| event.id eq 'e7120b27-ca4c-46c1-b5de-cbe5ea0e26d5' and budgetVersion.id ne 'e7120b27-ca4c-46c1-b5de-cbe5ea0e26d5' |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
+| `after` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_check_mark: | Used to query records that have been modified after this time point. | 2017-01-02T02:00:00Z |
+| `before` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_check_mark: | Used to query records that have been modified before this point | 2017-01-02T02:00:00Z |
+| `limit` | *Optional\* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `token` | *Optional\* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `filter` | *Optional\* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|:-----------------\|:-----------\|
\| event.id \| `eq`, `ne` \|
\| rfp.id \| `eq`, `ne` \|
\| budgetVersion.id \| `eq`, `ne` \|
\| id \| `eq`, `ne` \|
\| category.id \| `eq`, `ne` \|
\| category.name \| `eq`, `ne` \|
\| subCategory.id \| `eq`, `ne` \|
\| subCategory.name \| `eq`, `ne` \|
The following logical operators are supported for combining filters:
* and
* or
| event.id eq 'e7120b27-ca4c-46c1-b5de-cbe5ea0e26d5' and budgetVersion.id ne 'e7120b27-ca4c-46c1-b5de-cbe5ea0e26d5' |
\ No newline at end of file
diff --git a/packages/java/docs/models/operations/GetAccountVendorsRequest.md b/packages/java/docs/models/operations/GetAccountVendorsRequest.md
index bdb547e1..c858f503 100644
--- a/packages/java/docs/models/operations/GetAccountVendorsRequest.md
+++ b/packages/java/docs/models/operations/GetAccountVendorsRequest.md
@@ -3,10 +3,10 @@
## Fields
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `after` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `before` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `limit` | *Optional\* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `token` | *Optional\* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `filter` | *Optional\* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|:--------------\|:-----------------------------------\|
\| id \| `eq`, `ne` \|
\| lastModified \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| active \| `eq`, `ne` \|
The following logical operators are supported for combining filters:
* and
* or
| active eq true and id eq '5b5a6e5c-1234-4af5-9d1f-9bcb9e7c1234' and lastModified ge '2025-01-01T00:00:00Z' |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `after` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `before` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `limit` | *Optional\* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `token` | *Optional\* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `filter` | *Optional\* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|:--------------\|:-----------------------------------\|
\| id \| `eq`, `ne` \|
\| lastModified \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| active \| `eq`, `ne` \|
The following logical operators are supported for combining filters:
* and
* or
| active eq true and id eq '5b5a6e5c-1234-4af5-9d1f-9bcb9e7c1234' and lastModified ge '2025-01-01T00:00:00Z' |
\ No newline at end of file
diff --git a/packages/java/docs/models/operations/GetAirActualDetailRequest.md b/packages/java/docs/models/operations/GetAirActualDetailRequest.md
index 8424743a..6a63b235 100644
--- a/packages/java/docs/models/operations/GetAirActualDetailRequest.md
+++ b/packages/java/docs/models/operations/GetAirActualDetailRequest.md
@@ -3,13 +3,13 @@
## Fields
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `after` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `before` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `limit` | *Optional\* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `token` | *Optional\* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `expand` | List\<[ExpandAirActualQuestionAnswer](../../models/components/ExpandAirActualQuestionAnswer.md)> | :heavy_minus_sign: | A list of fields to be expanded, returning additional information alongside the specified fields. The expanded entity is retrieved and displayed inline for each specified expansion field. The respective scopes for each expansion are required.
The following fields are expandable:
* airActualDetails.airActualAnswers.question (List Event Questions)
| airActualDetails.airActualAnswers.question |
-| `sort` | *Optional\* | :heavy_minus_sign: | The sort order passed as a parameter, used to control the order of the
search results as a priority ordered list of sorts
There are two orders:
* ascending: ASC
* descending: DESC
The following fields are sortable:
* airActualDetails.name
* airActualDetails.lastModified
where i <= limit
| airActualDetails.name:DESC,airActualDetails.lastModified:ASC |
-| `filter` | *Optional\* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Notes \|
\|------------------\|-------------------------------------\|------------------------------------------------\|
\| attendee.id \| `eq`, `ne` \| Limit: 17 fields can be passed in a filter \|
The following logical operators are supported for combining filters:
* or
| (attendee.id eq '76f2b9e2-fcce-4d93-be29-a008b76a050c') OR (attendee.id eq '16322408-bae8-4b29-a559-702d2023e13a') |
-| `id` | *String* | :heavy_check_mark: | ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `after` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `before` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `limit` | *Optional\* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `token` | *Optional\* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `expand` | List\<[ExpandAirActualQuestionAnswer](../../models/components/ExpandAirActualQuestionAnswer.md)> | :heavy_minus_sign: | A list of fields to be expanded, returning additional information alongside the specified fields. The expanded entity is retrieved and displayed inline for each specified expansion field. The respective scopes for each expansion are required.
The following fields are expandable:
* airActualDetails.airActualAnswers.question (List Event Questions)
| airActualDetails.airActualAnswers.question |
+| `sort` | *Optional\* | :heavy_minus_sign: | The sort order passed as a parameter, used to control the order of the
search results as a priority ordered list of sorts
There are two orders:
* ascending: ASC
* descending: DESC
The following fields are sortable:
* airActualDetails.name
* airActualDetails.lastModified
where i <= limit
| airActualDetails.name:DESC,airActualDetails.lastModified:ASC |
+| `filter` | *Optional\* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Notes \|
\|------------------\|-------------------------------------\|------------------------------------------------\|
\| attendee.id \| `eq`, `ne` \| Limit: 17 fields can be passed in a filter \|
The following logical operators are supported for combining filters:
* or
| (attendee.id eq '76f2b9e2-fcce-4d93-be29-a008b76a050c') OR (attendee.id eq '16322408-bae8-4b29-a559-702d2023e13a') |
+| `id` | *String* | :heavy_check_mark: | ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
diff --git a/packages/java/docs/models/operations/GetAirRequestsRequest.md b/packages/java/docs/models/operations/GetAirRequestsRequest.md
index 020a851d..57b6b8f1 100644
--- a/packages/java/docs/models/operations/GetAirRequestsRequest.md
+++ b/packages/java/docs/models/operations/GetAirRequestsRequest.md
@@ -3,13 +3,13 @@
## Fields
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `after` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `before` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `limit` | *Optional\* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `token` | *Optional\* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `sort` | *Optional\* | :heavy_minus_sign: | The sort order passed as a parameter, used to control the order of the
search results as a priority ordered list of sorts
There are two orders:
* ascending: ASC
* descending: DESC
The following fields are sortable:
* airRequestDetails.requesterFirstName
* airRequestDetails.requesterLastName
* airRequestDetails.lastModified
| airRequestDetails.requesterFirstName:DESC,airRequestDetails.requesterLastName:ASC |
-| `filter` | *Optional\* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Notes \|
\|------------------\|-------------------------------------\|------------------------------------------------\|
\| attendee.id \| `eq`, `ne` \| Limit: 17 fields can be passed in a filter \|
The following logical operators are supported for combining filters:
* or
| (attendee.id eq '76f2b9e2-fcce-4d93-be29-a008b76a050c') OR (attendee.id eq '16322408-bae8-4b29-a559-702d2023e13a') |
-| `expand` | List\<[ExpandAirRequestQuestionAnswer](../../models/components/ExpandAirRequestQuestionAnswer.md)> | :heavy_minus_sign: | A list of fields to be expanded, returning additional information alongside the specified fields. The expanded entity is retrieved and displayed inline for each specified expansion field. The respective scopes for each expansion are required.
The following fields are expandable:
* airRequestDetails.airRequestAnswers.question (List Event Questions)
| airRequestDetails.airRequestAnswers.question |
-| `id` | *String* | :heavy_check_mark: | ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `after` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `before` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `limit` | *Optional\* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `token` | *Optional\* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `sort` | *Optional\* | :heavy_minus_sign: | The sort order passed as a parameter, used to control the order of the
search results as a priority ordered list of sorts
There are two orders:
* ascending: ASC
* descending: DESC
The following fields are sortable:
* airRequestDetails.requesterFirstName
* airRequestDetails.requesterLastName
* airRequestDetails.lastModified
| airRequestDetails.requesterFirstName:DESC,airRequestDetails.requesterLastName:ASC |
+| `filter` | *Optional\* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Notes \|
\|------------------\|-------------------------------------\|------------------------------------------------\|
\| attendee.id \| `eq`, `ne` \| Limit: 17 fields can be passed in a filter \|
The following logical operators are supported for combining filters:
* or
| (attendee.id eq '76f2b9e2-fcce-4d93-be29-a008b76a050c') OR (attendee.id eq '16322408-bae8-4b29-a559-702d2023e13a') |
+| `expand` | List\<[ExpandAirRequestQuestionAnswer](../../models/components/ExpandAirRequestQuestionAnswer.md)> | :heavy_minus_sign: | A list of fields to be expanded, returning additional information alongside the specified fields. The expanded entity is retrieved and displayed inline for each specified expansion field. The respective scopes for each expansion are required.
The following fields are expandable:
* airRequestDetails.airRequestAnswers.question (List Event Questions)
| airRequestDetails.airRequestAnswers.question |
+| `id` | *String* | :heavy_check_mark: | ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
diff --git a/packages/java/docs/models/operations/GetAllEventSurveyResponsesRequest.md b/packages/java/docs/models/operations/GetAllEventSurveyResponsesRequest.md
index 58c07ef7..984cb31c 100644
--- a/packages/java/docs/models/operations/GetAllEventSurveyResponsesRequest.md
+++ b/packages/java/docs/models/operations/GetAllEventSurveyResponsesRequest.md
@@ -3,10 +3,10 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `after` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `before` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `limit` | *Optional\* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `token` | *Optional\* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `filter` | *Optional\* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|---------------\|-------------\|
\| id \| `eq`, `ne` \|
\| respondent.id \| `eq`, `ne` \|
\| session.id \| `eq`, `ne` \|
\| speaker.id \| `eq`, `ne` \|
\| question.id \| `eq`, `ne` \|
\| event.id \| `eq`, `ne` \|
| id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `after` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `before` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `limit` | *Optional\* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `token` | *Optional\* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `filter` | *Optional\* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|---------------\|-------------\|
\| id \| `eq`, `ne` \|
\| respondent.id \| `eq`, `ne` \|
\| session.id \| `eq`, `ne` \|
\| speaker.id \| `eq`, `ne` \|
\| question.id \| `eq`, `ne` \|
\| event.id \| `eq`, `ne` \|
| id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' |
\ No newline at end of file
diff --git a/packages/java/docs/models/operations/GetAlternateTravelAnswersRequest.md b/packages/java/docs/models/operations/GetAlternateTravelAnswersRequest.md
index 6eb6e50b..93ec1dd9 100644
--- a/packages/java/docs/models/operations/GetAlternateTravelAnswersRequest.md
+++ b/packages/java/docs/models/operations/GetAlternateTravelAnswersRequest.md
@@ -3,11 +3,11 @@
## Fields
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `after` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `before` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `limit` | *Optional\* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `token` | *Optional\* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `filter` | *Optional\* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Notes \|
\|------------------\|-------------------------------------\|------------------------------------------------\|
\| attendee.id \| `eq`, `ne` \| Limit: 17 fields can be passed in a filter \|
The following logical operators are supported for combining filters:
* or
| (attendee.id eq '76f2b9e2-fcce-4d93-be29-a008b76a050c') OR (attendee.id eq '16322408-bae8-4b29-a559-702d2023e13a') |
-| `id` | *String* | :heavy_check_mark: | ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `after` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `before` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `limit` | *Optional\* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `token` | *Optional\* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `filter` | *Optional\* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Notes \|
\|------------------\|-------------------------------------\|------------------------------------------------\|
\| attendee.id \| `eq`, `ne` \| Limit: 17 fields can be passed in a filter \|
The following logical operators are supported for combining filters:
* or
| (attendee.id eq '76f2b9e2-fcce-4d93-be29-a008b76a050c') OR (attendee.id eq '16322408-bae8-4b29-a559-702d2023e13a') |
+| `id` | *String* | :heavy_check_mark: | ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
diff --git a/packages/java/docs/models/operations/GetBudgetAllocationsRequest.md b/packages/java/docs/models/operations/GetBudgetAllocationsRequest.md
index 78531c65..58343eca 100644
--- a/packages/java/docs/models/operations/GetBudgetAllocationsRequest.md
+++ b/packages/java/docs/models/operations/GetBudgetAllocationsRequest.md
@@ -3,11 +3,11 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
-| `after` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `before` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `limit` | *Optional\* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `token` | *Optional\* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `filter` | *Optional\* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|:-----------------\|:-----------------------------\|
\| budgetVersion.id \| `eq` \|
\| budgetItem.id \| `eq` \|
\| category.id \| `eq`, `ne` \|
\| subcategory.id \| `eq`, `ne` \|
\| generalLedger.id \| `eq`, `ne` \|
\| value \| `lt`, `le`, `gt`, `ge`, `eq` \|
The following logical operators are supported for combining filters:
* and
* or
| category.id eq 'e9ee2669-65db-46f8-872c-dbafbf9b0e92' or value lt 1000 |
-| `id` | *String* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `after` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `before` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `limit` | *Optional\* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `token` | *Optional\* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `filter` | *Optional\* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|:-----------------\|:-----------------------------\|
\| budgetVersion.id \| `eq` \|
\| budgetItem.id \| `eq` \|
\| category.id \| `eq`, `ne` \|
\| subcategory.id \| `eq`, `ne` \|
\| generalLedger.id \| `eq`, `ne` \|
\| value \| `lt`, `le`, `gt`, `ge`, `eq` \|
The following logical operators are supported for combining filters:
* and
* or
| category.id eq 'e9ee2669-65db-46f8-872c-dbafbf9b0e92' or value lt 1000 |
+| `id` | *String* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
diff --git a/packages/java/docs/models/operations/GetBudgetItemsRequest.md b/packages/java/docs/models/operations/GetBudgetItemsRequest.md
index 2be281cd..f4bd012a 100644
--- a/packages/java/docs/models/operations/GetBudgetItemsRequest.md
+++ b/packages/java/docs/models/operations/GetBudgetItemsRequest.md
@@ -3,11 +3,11 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
-| `id` | *String* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `after` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `before` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `limit` | *Optional\* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `token` | *Optional\* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `filter` | *Optional\* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Notes \|
\|:--------------------\|:-----------------------------------\|:----------------------------------------------------------------------------------------------------------------------------------------------\|
\| id \| `eq` \| \|
\| costType \| `eq`, `ne` \| \|
\| category.id \| `eq`, `ne` \| \|
\| category.name \| `eq`, `ne` \| \|
\| subCategory.id \| `eq`, `ne` \| \|
\| subCategory.name \| `eq`, `ne` \| \|
\| status \| `eq`, `ne` \| \|
\| vendor.id \| `eq`, `ne` \| \|
\| vendor.name \| `eq`, `ne` \| \|
\| date \| `gt`, `ge`, `lt`, `le` \| \|
\| customFields.{uuid} \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \| \|
\| deleted \| `eq`, `ne` \| Budget items that are deleted are available for 3 months after deletion. After this, they are removed and no longer appear in search results. \|
The following logical operators are supported for combining filters:
* and
* or
| category.name eq 'Accommodation' and status ne 'Estimated' |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `id` | *String* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `after` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `before` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `limit` | *Optional\* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `token` | *Optional\* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `filter` | *Optional\* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Notes \|
\|:--------------------\|:-----------------------------------\|:----------------------------------------------------------------------------------------------------------------------------------------------\|
\| id \| `eq` \| \|
\| costType \| `eq`, `ne` \| \|
\| category.id \| `eq`, `ne` \| \|
\| category.name \| `eq`, `ne` \| \|
\| subCategory.id \| `eq`, `ne` \| \|
\| subCategory.name \| `eq`, `ne` \| \|
\| status \| `eq`, `ne` \| \|
\| vendor.id \| `eq`, `ne` \| \|
\| vendor.name \| `eq`, `ne` \| \|
\| date \| `gt`, `ge`, `lt`, `le` \| \|
\| customFields.{uuid} \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \| \|
\| deleted \| `eq`, `ne` \| Budget items that are deleted are available for 3 months after deletion. After this, they are removed and no longer appear in search results. \|
The following logical operators are supported for combining filters:
* and
* or
| category.name eq 'Accommodation' and status ne 'Estimated' |
\ No newline at end of file
diff --git a/packages/java/docs/models/operations/GetCardTransactionsRequest.md b/packages/java/docs/models/operations/GetCardTransactionsRequest.md
index 5e6cf10b..a1b5cdf5 100644
--- a/packages/java/docs/models/operations/GetCardTransactionsRequest.md
+++ b/packages/java/docs/models/operations/GetCardTransactionsRequest.md
@@ -3,10 +3,10 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `after` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `before` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `limit` | *Optional\* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `token` | *Optional\* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `filter` | *Optional\* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|:-------------------------------\|:-----------------------\|
\| event.id \| `eq` \|
\| type \| `eq`, `ne` \|
\| status \| `eq`, `ne` \|
\| fromDate \| `gt`, `ge` \|
\| toDate \| `lt`, `le` \|
\| reconciliations.reconciledDate \| `lt`, `le`, `gt`, `ge` \|
The following logical operators are supported for combining filters:
* and
* or
| event.id eq 'E05029A8-39F5-49DF-8450-2EB41B302421' and type ne 'Virtual' and status eq 'Active' or status eq 'Inactive' |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `after` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `before` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `limit` | *Optional\* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `token` | *Optional\* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `filter` | *Optional\* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|:-------------------------------\|:-----------------------\|
\| event.id \| `eq` \|
\| type \| `eq`, `ne` \|
\| status \| `eq`, `ne` \|
\| fromDate \| `gt`, `ge` \|
\| toDate \| `lt`, `le` \|
\| reconciliations.reconciledDate \| `lt`, `le`, `gt`, `ge` \|
The following logical operators are supported for combining filters:
* and
* or
| event.id eq 'E05029A8-39F5-49DF-8450-2EB41B302421' and type ne 'Virtual' and status eq 'Active' or status eq 'Inactive' |
\ No newline at end of file
diff --git a/packages/java/docs/models/operations/GetCardsRequest.md b/packages/java/docs/models/operations/GetCardsRequest.md
index fb16fcb8..67260731 100644
--- a/packages/java/docs/models/operations/GetCardsRequest.md
+++ b/packages/java/docs/models/operations/GetCardsRequest.md
@@ -3,8 +3,8 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `limit` | *Optional\* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `token` | *Optional\* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `filter` | *Optional\* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|:---------\|:----------\|
\| event.id \| `eq` \|
| event.id eq 'E05029A8-39F5-49DF-8450-2EB41B302421' |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `limit` | *Optional\* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `token` | *Optional\* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `filter` | *Optional\* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|:---------\|:----------\|
\| event.id \| `eq` \|
| event.id eq 'E05029A8-39F5-49DF-8450-2EB41B302421' |
\ No newline at end of file
diff --git a/packages/java/docs/models/operations/GetCurrencyConversionRateRequest.md b/packages/java/docs/models/operations/GetCurrencyConversionRateRequest.md
index 5b5d812d..cca0a123 100644
--- a/packages/java/docs/models/operations/GetCurrencyConversionRateRequest.md
+++ b/packages/java/docs/models/operations/GetCurrencyConversionRateRequest.md
@@ -3,11 +3,11 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `currency` | *String* | :heavy_check_mark: | The ISO 4217 standard format currency code. | USD |
-| `limit` | *Optional\* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `token` | *Optional\* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `after` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `before` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `filter` | *Optional\* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|:----------\|:-----------------------------\|
\| id \| `eq` \|
\| startDate \| `gt`, `ge`, `lt`, `le`, `eq` \|
\| endDate \| `gt`, `ge`, `lt`, `le`, `eq` \|
The following logical operators are supported for combining filters:
* and
* or
| startDate eq '2020-02-07' |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `currency` | *String* | :heavy_check_mark: | The ISO 4217 standard format currency code. | USD |
+| `limit` | *Optional\* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `token` | *Optional\* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `after` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `before` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `filter` | *Optional\* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|:----------\|:-----------------------------\|
\| id \| `eq` \|
\| startDate \| `gt`, `ge`, `lt`, `le`, `eq` \|
\| endDate \| `gt`, `ge`, `lt`, `le`, `eq` \|
The following logical operators are supported for combining filters:
* and
* or
| startDate eq '2020-02-07' |
\ No newline at end of file
diff --git a/packages/java/docs/models/operations/GetEventBudgetTotalsRequest.md b/packages/java/docs/models/operations/GetEventBudgetTotalsRequest.md
index beb2d3f1..a861e67f 100644
--- a/packages/java/docs/models/operations/GetEventBudgetTotalsRequest.md
+++ b/packages/java/docs/models/operations/GetEventBudgetTotalsRequest.md
@@ -3,11 +3,11 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `id` | *String* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `after` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `before` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `limit` | *Optional\* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `token` | *Optional\* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `filter` | *Optional\* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|:----------------\|:-----------\|
\| version.id \| `eq` \|
\| version.name \| `eq` \|
\| version.default \| `eq`, `ne` \|
The following logical operators are supported for combining filters:
* and
* or
| version.name eq 'Test version' and version.id eq '1b3a755a-d440-498d-baab-30f45dae3cf5' |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `id` | *String* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `after` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `before` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `limit` | *Optional\* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `token` | *Optional\* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `filter` | *Optional\* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|:----------------\|:-----------\|
\| version.id \| `eq` \|
\| version.name \| `eq` \|
\| version.default \| `eq`, `ne` \|
The following logical operators are supported for combining filters:
* and
* or
| version.name eq 'Test version' and version.id eq '1b3a755a-d440-498d-baab-30f45dae3cf5' |
\ No newline at end of file
diff --git a/packages/java/docs/models/operations/GetEventFeaturesRequest.md b/packages/java/docs/models/operations/GetEventFeaturesRequest.md
index fcdec6e1..e6eb8cbb 100644
--- a/packages/java/docs/models/operations/GetEventFeaturesRequest.md
+++ b/packages/java/docs/models/operations/GetEventFeaturesRequest.md
@@ -3,10 +3,10 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `limit` | *Optional\* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `token` | *Optional\* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `locale` | *Optional\* | :heavy_minus_sign: | Locale code in IETF Language tag format. Indicates desired locale of return values. | en-US |
-| `filter` | *Optional\* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|---------\|-----------\|
\| enabled \| `eq` \|
| enabled eq 'true' |
-| `id` | *String* | :heavy_check_mark: | Unique Id of an event | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `limit` | *Optional\* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `token` | *Optional\* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `locale` | *Optional\* | :heavy_minus_sign: | Locale code in IETF Language tag format. Indicates desired locale of return values. | en-US |
+| `filter` | *Optional\* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|---------\|-----------\|
\| enabled \| `eq` \|
| enabled eq 'true' |
+| `id` | *String* | :heavy_check_mark: | Unique Id of an event | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
diff --git a/packages/java/docs/models/operations/GetEventSurveyRespondentsRequest.md b/packages/java/docs/models/operations/GetEventSurveyRespondentsRequest.md
index c8853920..cbb4429a 100644
--- a/packages/java/docs/models/operations/GetEventSurveyRespondentsRequest.md
+++ b/packages/java/docs/models/operations/GetEventSurveyRespondentsRequest.md
@@ -3,12 +3,12 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `id` | *String* | :heavy_check_mark: | Id of an event | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `surveyId` | *String* | :heavy_check_mark: | Id of a survey or Id of a chapter in event survey | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `after` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `before` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `limit` | *Optional\* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `token` | *Optional\* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `filter` | *Optional\* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|-------\|-------------\|
\| id \| `eq`, `ne` \|
| id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `id` | *String* | :heavy_check_mark: | Id of an event | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `surveyId` | *String* | :heavy_check_mark: | Id of a survey or Id of a chapter in event survey | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `after` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `before` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `limit` | *Optional\* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `token` | *Optional\* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `filter` | *Optional\* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|-------\|-------------\|
\| id \| `eq`, `ne` \|
| id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' |
\ No newline at end of file
diff --git a/packages/java/docs/models/operations/GetEventSurveyResponsesRequest.md b/packages/java/docs/models/operations/GetEventSurveyResponsesRequest.md
index f1e5f093..f01f8056 100644
--- a/packages/java/docs/models/operations/GetEventSurveyResponsesRequest.md
+++ b/packages/java/docs/models/operations/GetEventSurveyResponsesRequest.md
@@ -3,12 +3,12 @@
## Fields
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `after` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `before` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `limit` | *Optional\* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `token` | *Optional\* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `filter` | *Optional\* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|---------------\|-------------\|
\| id \| `eq`, `ne` \|
\| respondent.id \| `eq`, `ne` \|
\| session.id \| `eq`, `ne` \|
\| speaker.id \| `eq`, `ne` \|
\| question.id \| `eq`, `ne` \|
| id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' |
-| `id` | *String* | :heavy_check_mark: | Id of an event | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `surveyId` | *String* | :heavy_check_mark: | Id of a survey or Id of a chapter in event survey | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `after` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `before` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `limit` | *Optional\* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `token` | *Optional\* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `filter` | *Optional\* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](https://developers.cvent.com/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|---------------\|-------------\|
\| id \| `eq`, `ne` \|
\| respondent.id \| `eq`, `ne` \|
\| session.id \| `eq`, `ne` \|
\| speaker.id \| `eq`, `ne` \|
\| question.id \| `eq`, `ne` \|
| id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' |
+| `id` | *String* | :heavy_check_mark: | Id of an event | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `surveyId` | *String* | :heavy_check_mark: | Id of a survey or Id of a chapter in event survey | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
diff --git a/packages/java/docs/models/operations/GetEventSurveysRequest.md b/packages/java/docs/models/operations/GetEventSurveysRequest.md
index 90b3be3d..0070f20e 100644
--- a/packages/java/docs/models/operations/GetEventSurveysRequest.md
+++ b/packages/java/docs/models/operations/GetEventSurveysRequest.md
@@ -3,11 +3,11 @@
## Fields
-| Field | Type | Required | Description | Example |
-| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `after` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
-| `before` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `limit` | *Optional\* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `token` | *Optional\* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `filter` | *Optional\* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \| Notes \|
\|----------\|-------------\|--------------------------------\|
\| id \| `eq`, `ne` \| chapter ID of the event survey \|
\| type \| `eq`, `ne` \| \|
\| sessions \| `eq`, `ne` \| \|
The following logical operators are supported for combining filters:
* `and`
* `or`
| id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' and type eq 'Session Feedback' and sessions eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' or sessions eq '05ca6ae2-0dc3-487b-953e-86d6abbdf7d3' |
-| `id` | *String* | :heavy_check_mark: | Id of an event | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
+| `after` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `before` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `limit` | *Optional\* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `token` | *Optional\* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `filter` | *Optional\* | :heavy_minus_sign: | Use filter query parameters to limit results