diff --git a/.speakeasy/workflow.lock b/.speakeasy/workflow.lock
index 094114c8..5b4ed507 100644
--- a/.speakeasy/workflow.lock
+++ b/.speakeasy/workflow.lock
@@ -2,8 +2,8 @@ speakeasyVersion: 1.752.0
sources:
Public:
sourceNamespace: public
- sourceRevisionDigest: sha256:c422cb0b4b22af7921782ebe78e0f17092f7b0f3e4dfe6a1a8367366d72462aa
- sourceBlobDigest: sha256:a9f07f00e14f09eb970fb1311cb3b8e3ad95f85a09c6f72b3c938039bb100093
+ sourceRevisionDigest: sha256:7ffd2d116e23fc13f4a47363fdb2522a2c3899f632615bfc6bc9f2b2f1f7513d
+ sourceBlobDigest: sha256:659ff5fb3d3647046a7414ac9019e47613d4967f8a0bf609a09802752a027b02
tags:
- latest
- ea
@@ -11,18 +11,24 @@ targets:
public-csharp:
source: Public
sourceNamespace: public
- sourceRevisionDigest: sha256:c422cb0b4b22af7921782ebe78e0f17092f7b0f3e4dfe6a1a8367366d72462aa
- sourceBlobDigest: sha256:a9f07f00e14f09eb970fb1311cb3b8e3ad95f85a09c6f72b3c938039bb100093
+ sourceRevisionDigest: sha256:7ffd2d116e23fc13f4a47363fdb2522a2c3899f632615bfc6bc9f2b2f1f7513d
+ sourceBlobDigest: sha256:659ff5fb3d3647046a7414ac9019e47613d4967f8a0bf609a09802752a027b02
+ codeSamplesNamespace: csharp
+ codeSamplesRevisionDigest: sha256:834c3f21a3332342953ee75bb0e38eedf8120cfa77722e723d13a07526d3af71
public-java:
source: Public
sourceNamespace: public
- sourceRevisionDigest: sha256:c422cb0b4b22af7921782ebe78e0f17092f7b0f3e4dfe6a1a8367366d72462aa
- sourceBlobDigest: sha256:a9f07f00e14f09eb970fb1311cb3b8e3ad95f85a09c6f72b3c938039bb100093
+ sourceRevisionDigest: sha256:7ffd2d116e23fc13f4a47363fdb2522a2c3899f632615bfc6bc9f2b2f1f7513d
+ sourceBlobDigest: sha256:659ff5fb3d3647046a7414ac9019e47613d4967f8a0bf609a09802752a027b02
+ codeSamplesNamespace: java
+ codeSamplesRevisionDigest: sha256:605d0ed9ef151021de6321c923dc4024fb5875e22bb552dbc474c86763deeb11
public-typescript:
source: Public
sourceNamespace: public
- sourceRevisionDigest: sha256:c422cb0b4b22af7921782ebe78e0f17092f7b0f3e4dfe6a1a8367366d72462aa
- sourceBlobDigest: sha256:a9f07f00e14f09eb970fb1311cb3b8e3ad95f85a09c6f72b3c938039bb100093
+ sourceRevisionDigest: sha256:7ffd2d116e23fc13f4a47363fdb2522a2c3899f632615bfc6bc9f2b2f1f7513d
+ sourceBlobDigest: sha256:659ff5fb3d3647046a7414ac9019e47613d4967f8a0bf609a09802752a027b02
+ codeSamplesNamespace: typescript
+ codeSamplesRevisionDigest: sha256:3a3216a4b07624b60abecac693acb09b84d1043dcff9a17c031d9846c47d94d6
workflow:
workflowVersion: 1.0.0
speakeasyVersion: 1.752.0
diff --git a/cvent-public-spec/openapi.yaml b/cvent-public-spec/openapi.yaml
index 8a3cc5d1..5522bf3e 100644
--- a/cvent-public-spec/openapi.yaml
+++ b/cvent-public-spec/openapi.yaml
@@ -749,7 +749,7 @@ paths:
'404':
$ref: '#/components/responses/NotFound1'
'422':
- $ref: '#/components/responses/UnprocessableEntity14'
+ $ref: '#/components/responses/UnprocessableEntity10'
'429':
$ref: '#/components/responses/TooManyRequests1'
deprecated: false
@@ -794,7 +794,7 @@ paths:
'404':
$ref: '#/components/responses/NotFound1'
'422':
- $ref: '#/components/responses/UnprocessableEntity14'
+ $ref: '#/components/responses/UnprocessableEntity10'
'429':
$ref: '#/components/responses/TooManyRequests1'
deprecated: false
@@ -1079,35 +1079,28 @@ paths:
in: query
required: false
description: |
- A filter string passed in the body of the request, narrows search results and supports the combination of logical and comparison operators.
- The filter adheres to the pattern filter='field' comparisonType 'value'.
+ Use filter query parameters to limit results
+ to data that matches your criteria. See
+ [Filters](/docs/rest-api/reference/filters) for details.
- There are eight comparison types that can be used in filter expressions:
- * equal: eq
- * not equal: ne
- * greater than: gt
- * greater or equal: ge
- * less than: lt
- * less than or equal: le
- * starts with: sw
- * contains a value: contains
- * includes value(s): in
+ Supported fields and operators are listed below:
- The following fields are filterable:
- * 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)
+ | 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 operators are available:
- * and
- * or
+ The following logical operators are supported for combining filters:
+ * and
+ * or
schema:
type: string
example: firstSeen gt '2020-02-07T12:00:00.000Z' and session.id = '0e2f583e-62ae-40d8-9b5c-b8e67a6ba1ab'
@@ -2164,7 +2157,7 @@ paths:
'403':
$ref: '#/components/responses/Forbidden1'
'422':
- $ref: '#/components/responses/UnprocessableEntity14'
+ $ref: '#/components/responses/UnprocessableEntity10'
'429':
$ref: '#/components/responses/TooManyRequests1'
externalDocs:
@@ -2347,7 +2340,7 @@ paths:
'404':
$ref: '#/components/responses/NotFound1'
'422':
- $ref: '#/components/responses/UnprocessableEntity14'
+ $ref: '#/components/responses/UnprocessableEntity10'
'429':
$ref: '#/components/responses/TooManyRequests1'
externalDocs:
@@ -2450,7 +2443,7 @@ paths:
'404':
$ref: '#/components/responses/NotFound1'
'422':
- $ref: '#/components/responses/UnprocessableEntity14'
+ $ref: '#/components/responses/UnprocessableEntity10'
'429':
$ref: '#/components/responses/TooManyRequests1'
externalDocs:
@@ -2711,15 +2704,15 @@ paths:
schema:
$ref: '#/components/schemas/bulk-job-with-data'
'400':
- $ref: '#/components/responses/BadRequest32'
+ $ref: '#/components/responses/BadRequest26'
'401':
- $ref: '#/components/responses/Unauthorized32'
+ $ref: '#/components/responses/Unauthorized26'
'403':
- $ref: '#/components/responses/Forbidden32'
+ $ref: '#/components/responses/Forbidden26'
'409':
$ref: '#/components/responses/JobLimitExceeded'
'429':
- $ref: '#/components/responses/TooManyRequests31'
+ $ref: '#/components/responses/TooManyRequests26'
deprecated: false
/bulk-jobs/{id}:
parameters:
@@ -2742,15 +2735,15 @@ paths:
schema:
$ref: '#/components/schemas/bulk-job'
'400':
- $ref: '#/components/responses/BadRequest32'
+ $ref: '#/components/responses/BadRequest26'
'401':
- $ref: '#/components/responses/Unauthorized32'
+ $ref: '#/components/responses/Unauthorized26'
'403':
- $ref: '#/components/responses/Forbidden32'
+ $ref: '#/components/responses/Forbidden26'
'404':
- $ref: '#/components/responses/NotFound32'
+ $ref: '#/components/responses/NotFound26'
'429':
- $ref: '#/components/responses/TooManyRequests31'
+ $ref: '#/components/responses/TooManyRequests26'
/bulk-jobs/{id}/cancel:
parameters:
- $ref: '#/components/parameters/uuid1'
@@ -2772,15 +2765,15 @@ paths:
schema:
$ref: '#/components/schemas/bulk-job'
'400':
- $ref: '#/components/responses/BadRequest32'
+ $ref: '#/components/responses/BadRequest26'
'401':
- $ref: '#/components/responses/Unauthorized32'
+ $ref: '#/components/responses/Unauthorized26'
'403':
- $ref: '#/components/responses/Forbidden32'
+ $ref: '#/components/responses/Forbidden26'
'404':
- $ref: '#/components/responses/NotFound32'
+ $ref: '#/components/responses/NotFound26'
'429':
- $ref: '#/components/responses/TooManyRequests31'
+ $ref: '#/components/responses/TooManyRequests26'
/bulk-jobs/{id}/data:
parameters:
- $ref: '#/components/parameters/uuid1'
@@ -2813,17 +2806,17 @@ paths:
schema:
$ref: '#/components/schemas/bulk-data-upload-response'
'400':
- $ref: '#/components/responses/BadRequest32'
+ $ref: '#/components/responses/BadRequest26'
'401':
- $ref: '#/components/responses/Unauthorized32'
+ $ref: '#/components/responses/Unauthorized26'
'403':
- $ref: '#/components/responses/Forbidden32'
+ $ref: '#/components/responses/Forbidden26'
'404':
- $ref: '#/components/responses/NotFound32'
+ $ref: '#/components/responses/NotFound26'
'409':
$ref: '#/components/responses/DataLimitExceeded'
'429':
- $ref: '#/components/responses/TooManyRequests31'
+ $ref: '#/components/responses/TooManyRequests26'
/bulk-jobs/{id}/results:
parameters:
- $ref: '#/components/parameters/uuid1'
@@ -2866,15 +2859,15 @@ paths:
schema:
$ref: '#/components/schemas/bulk-results-paginated-response'
'400':
- $ref: '#/components/responses/BadRequest32'
+ $ref: '#/components/responses/BadRequest26'
'401':
- $ref: '#/components/responses/Unauthorized32'
+ $ref: '#/components/responses/Unauthorized26'
'403':
- $ref: '#/components/responses/Forbidden32'
+ $ref: '#/components/responses/Forbidden26'
'404':
- $ref: '#/components/responses/NotFound32'
+ $ref: '#/components/responses/NotFound26'
'429':
- $ref: '#/components/responses/TooManyRequests31'
+ $ref: '#/components/responses/TooManyRequests26'
/bulk-jobs/{id}/run:
parameters:
- $ref: '#/components/parameters/uuid1'
@@ -2899,17 +2892,17 @@ paths:
schema:
$ref: '#/components/schemas/bulk-job'
'400':
- $ref: '#/components/responses/BadRequest32'
+ $ref: '#/components/responses/BadRequest26'
'401':
- $ref: '#/components/responses/Unauthorized32'
+ $ref: '#/components/responses/Unauthorized26'
'403':
- $ref: '#/components/responses/Forbidden32'
+ $ref: '#/components/responses/Forbidden26'
'404':
- $ref: '#/components/responses/NotFound32'
+ $ref: '#/components/responses/NotFound26'
'409':
$ref: '#/components/responses/JobLimitExceeded'
'429':
- $ref: '#/components/responses/TooManyRequests31'
+ $ref: '#/components/responses/TooManyRequests26'
/campaigns:
get:
summary: List eMarketing Campaigns
@@ -5984,25 +5977,28 @@ paths:
schema:
type: string
description: |
- Filters are used to narrow the results returned and support a combination of logical and comparison
- operators.
+ Filters narrow results returned based on the criteria you supply.
- The filter adheres to the pattern `filter='field' comparisonType 'value'`.
+ Filters follow the pattern `filter='field' operator 'value'`.
- These are the comparison types that can be used in filter expressions:
- - equals to: eq
- - match any of the values in the list: in
+ The following comparison operators are supported:
+ - `eq`: equals to
+ - `in`: match any of the values in the list
- The following operators can be used:
- - or
+ The following fields are supported:
- The following fields are filterable:
- * `channel.id` (eq/in)
+ | Field | Operators |
+ |------------------|------------------------------------|
+ | channel.id | `eq`, `in` |
+
+ The following logical operators are supported for combining filters:
+ - `or`
+
+ **Examples:**
- Examples:
- - Filter channel IDs:
- * `filter=channel.id in ('production_group_0cb93bab-32d2-4f82-b430-e1911f2348ac', 'production_group_f6dfb98a-c734-487c-97e1-7c7a09a9125f')`
- * `filter=channel.id eq 'production_attendee_616241fd-e97d-48c5-8c4b-4b926f50e8c3' or channel.id eq 'production_group_616241fd-e97d-48c5-8c4b-4b926f50e8c3'`
+ Filter channel IDs:
+ * `filter=channel.id in ('production_group_0cb93bab-32d2-4f82-b430-e1911f2348ac', 'production_group_f6dfb98a-c734-487c-97e1-7c7a09a9125f')`
+ * `filter=channel.id eq 'production_attendee_616241fd-e97d-48c5-8c4b-4b926f50e8c3' or channel.id eq 'production_group_616241fd-e97d-48c5-8c4b-4b926f50e8c3'`
responses:
'200':
description: Successfully retrieved the list of members.
@@ -9033,7 +9029,7 @@ paths:
'404':
$ref: '#/components/responses/NotFound1'
'422':
- $ref: '#/components/responses/UnprocessableEntity14'
+ $ref: '#/components/responses/UnprocessableEntity10'
'429':
$ref: '#/components/responses/TooManyRequests1'
externalDocs:
@@ -9490,7 +9486,7 @@ paths:
'404':
$ref: '#/components/responses/NotFound1'
'422':
- $ref: '#/components/responses/UnprocessableEntity14'
+ $ref: '#/components/responses/UnprocessableEntity10'
'429':
$ref: '#/components/responses/TooManyRequests1'
externalDocs:
@@ -9572,7 +9568,7 @@ paths:
'404':
$ref: '#/components/responses/NotFound1'
'422':
- $ref: '#/components/responses/UnprocessableEntity14'
+ $ref: '#/components/responses/UnprocessableEntity10'
'429':
$ref: '#/components/responses/TooManyRequests1'
externalDocs:
@@ -11676,6 +11672,146 @@ paths:
externalDocs:
description: More about OAuth2 authorization code support for administrators
url: '#oauth2-auth-code-planner-admin'
+ /events/{id}/vouchers:
+ get:
+ summary: List Event Vouchers
+ operationId: listEventVouchers
+ tags:
+ - Events
+ security:
+ - OAuth2.clientCredentials:
+ - event/vouchers:read
+ - OAuth2.authorizationCode:
+ - event/vouchers:read
+ description: |
+ Retrieves a paginated list of vouchers set up for a specific event.
+ parameters:
+ - $ref: '#/components/parameters/eventId2'
+ - $ref: '#/components/parameters/limit'
+ - $ref: '#/components/parameters/token'
+ - $ref: '#/components/parameters/before'
+ - $ref: '#/components/parameters/after'
+ - $ref: '#/components/parameters/voucherSort'
+ - name: filter
+ in: query
+ required: false
+ description: |
+ 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.
+ schema:
+ type: string
+ example: id in ('1800c9bd-b5f4-438a-a92c-ea1f59553a5c', '2900d8ce-c6f5-449b-b03d-fb2f60664b6d')
+ responses:
+ '200':
+ description: Successfully retrieved a paginated list of vouchers.
+ headers: {}
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/vouchers-paginated-response'
+ '400':
+ $ref: '#/components/responses/BadRequest1'
+ '401':
+ $ref: '#/components/responses/Unauthorized1'
+ '403':
+ $ref: '#/components/responses/Forbidden1'
+ '404':
+ $ref: '#/components/responses/NotFound1'
+ '429':
+ $ref: '#/components/responses/TooManyRequests1'
+ /events/{id}/vouchers/filter:
+ post:
+ summary: List Event Vouchers (Filter)
+ operationId: listEventVouchersPostFilter
+ tags:
+ - Events
+ security:
+ - OAuth2.clientCredentials:
+ - event/vouchers:read
+ - OAuth2.authorizationCode:
+ - event/vouchers:read
+ description: |
+ Retrieves a paginated list of vouchers configured for an event using a filter provided in the body of the request.
+ parameters:
+ - $ref: '#/components/parameters/eventId2'
+ - $ref: '#/components/parameters/limit'
+ - $ref: '#/components/parameters/token'
+ - $ref: '#/components/parameters/before'
+ - $ref: '#/components/parameters/after'
+ - $ref: '#/components/parameters/voucherSort'
+ requestBody:
+ description: |
+ See the `filter` parameter in [List Event Vouchers](#operation/listEventVouchers) for full filtering information.
+ required: false
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/filter'
+ example:
+ filter: id in ('1800c9bd-b5f4-438a-a92c-ea1f59553a5c', '2900d8ce-c6f5-449b-b03d-fb2f60664b6d')
+ responses:
+ '200':
+ description: Successfully retrieved a paginated list of vouchers.
+ headers: {}
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/vouchers-paginated-response'
+ '400':
+ $ref: '#/components/responses/BadRequest1'
+ '401':
+ $ref: '#/components/responses/Unauthorized1'
+ '403':
+ $ref: '#/components/responses/Forbidden1'
+ '404':
+ $ref: '#/components/responses/NotFound1'
+ '429':
+ $ref: '#/components/responses/TooManyRequests1'
+ /events/{id}/vouchers/{voucherId}/attendees:
+ get:
+ summary: List Voucher Attendees
+ operationId: listEventVoucherAttendees
+ tags:
+ - Events
+ security:
+ - OAuth2.clientCredentials:
+ - event/vouchers:read
+ - OAuth2.authorizationCode:
+ - event/vouchers:read
+ description: |
+ Retrieves a paginated list of attendees who have redeemed a specific voucher for the given event.
+ parameters:
+ - $ref: '#/components/parameters/eventId2'
+ - $ref: '#/components/parameters/voucherId'
+ - $ref: '#/components/parameters/limit'
+ - $ref: '#/components/parameters/token'
+ responses:
+ '200':
+ description: Successfully retrieved a paginated list of attendees for the voucher.
+ headers: {}
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/attendees-paginated-response'
+ '400':
+ $ref: '#/components/responses/BadRequest1'
+ '401':
+ $ref: '#/components/responses/Unauthorized1'
+ '403':
+ $ref: '#/components/responses/Forbidden1'
+ '404':
+ $ref: '#/components/responses/NotFound1'
+ '429':
+ $ref: '#/components/responses/TooManyRequests1'
/events/{id}/weblinks:
parameters:
- $ref: '#/components/parameters/id10'
@@ -12646,7 +12782,7 @@ paths:
'404':
$ref: '#/components/responses/NotFound1'
'422':
- $ref: '#/components/responses/UnprocessableEntity14'
+ $ref: '#/components/responses/UnprocessableEntity10'
'429':
$ref: '#/components/responses/TooManyRequests1'
deprecated: false
@@ -14859,13 +14995,13 @@ paths:
'200':
$ref: '#/components/responses/UsersGroupsResponse'
'400':
- $ref: '#/components/responses/BadRequest23'
+ $ref: '#/components/responses/BadRequest18'
'401':
- $ref: '#/components/responses/Unauthorized23'
+ $ref: '#/components/responses/Unauthorized18'
'403':
- $ref: '#/components/responses/Forbidden23'
+ $ref: '#/components/responses/Forbidden18'
'429':
- $ref: '#/components/responses/TooManyRequests22'
+ $ref: '#/components/responses/TooManyRequests18'
externalDocs:
description: More about OAuth2 authorization code support for administrators
url: '#oauth2-auth-code-planner-admin'
@@ -14885,11 +15021,11 @@ paths:
'200':
$ref: '#/components/responses/ResourceTypes'
'401':
- $ref: '#/components/responses/Unauthorized23'
+ $ref: '#/components/responses/Unauthorized18'
'403':
- $ref: '#/components/responses/Forbidden23'
+ $ref: '#/components/responses/Forbidden18'
'429':
- $ref: '#/components/responses/TooManyRequests22'
+ $ref: '#/components/responses/TooManyRequests18'
externalDocs:
description: More about OAuth2 authorization code support for administrators
url: '#oauth2-auth-code-planner-admin'
@@ -14915,15 +15051,15 @@ paths:
schema:
$ref: '#/components/schemas/ResourceType'
'400':
- $ref: '#/components/responses/BadRequest23'
+ $ref: '#/components/responses/BadRequest18'
'401':
- $ref: '#/components/responses/Unauthorized23'
+ $ref: '#/components/responses/Unauthorized18'
'403':
- $ref: '#/components/responses/Forbidden23'
+ $ref: '#/components/responses/Forbidden18'
'404':
- $ref: '#/components/responses/NotFound23'
+ $ref: '#/components/responses/NotFound18'
'429':
- $ref: '#/components/responses/TooManyRequests22'
+ $ref: '#/components/responses/TooManyRequests18'
externalDocs:
description: More about OAuth2 authorization code support for administrators
url: '#oauth2-auth-code-planner-admin'
@@ -14943,11 +15079,11 @@ paths:
'200':
$ref: '#/components/responses/UsersSchemaResponse'
'401':
- $ref: '#/components/responses/Unauthorized23'
+ $ref: '#/components/responses/Unauthorized18'
'403':
- $ref: '#/components/responses/Forbidden23'
+ $ref: '#/components/responses/Forbidden18'
'429':
- $ref: '#/components/responses/TooManyRequests22'
+ $ref: '#/components/responses/TooManyRequests18'
externalDocs:
description: More about OAuth2 authorization code support for administrators
url: '#oauth2-auth-code-planner-admin'
@@ -14973,15 +15109,15 @@ paths:
schema:
$ref: '#/components/schemas/UsersSchema'
'400':
- $ref: '#/components/responses/BadRequest23'
+ $ref: '#/components/responses/BadRequest18'
'401':
- $ref: '#/components/responses/Unauthorized23'
+ $ref: '#/components/responses/Unauthorized18'
'403':
- $ref: '#/components/responses/Forbidden23'
+ $ref: '#/components/responses/Forbidden18'
'404':
- $ref: '#/components/responses/NotFound23'
+ $ref: '#/components/responses/NotFound18'
'429':
- $ref: '#/components/responses/TooManyRequests22'
+ $ref: '#/components/responses/TooManyRequests18'
externalDocs:
description: More about OAuth2 authorization code support for administrators
url: '#oauth2-auth-code-planner-admin'
@@ -15001,11 +15137,11 @@ paths:
'200':
$ref: '#/components/responses/ServiceProviderConfig'
'401':
- $ref: '#/components/responses/Unauthorized23'
+ $ref: '#/components/responses/Unauthorized18'
'403':
- $ref: '#/components/responses/Forbidden23'
+ $ref: '#/components/responses/Forbidden18'
'429':
- $ref: '#/components/responses/TooManyRequests22'
+ $ref: '#/components/responses/TooManyRequests18'
externalDocs:
description: More about OAuth2 authorization code support for administrators
url: '#oauth2-auth-code-planner-admin'
@@ -15034,15 +15170,15 @@ paths:
schema:
$ref: '#/components/schemas/User'
'400':
- $ref: '#/components/responses/BadRequest23'
+ $ref: '#/components/responses/BadRequest18'
'401':
- $ref: '#/components/responses/Unauthorized23'
+ $ref: '#/components/responses/Unauthorized18'
'403':
- $ref: '#/components/responses/Forbidden23'
+ $ref: '#/components/responses/Forbidden18'
'409':
- $ref: '#/components/responses/Conflict14'
+ $ref: '#/components/responses/Conflict11'
'429':
- $ref: '#/components/responses/TooManyRequests22'
+ $ref: '#/components/responses/TooManyRequests18'
externalDocs:
description: More about OAuth2 authorization code support for administrators
url: '#oauth2-auth-code-planner-admin'
@@ -15098,13 +15234,13 @@ paths:
schema:
$ref: '#/components/schemas/Users'
'400':
- $ref: '#/components/responses/BadRequest23'
+ $ref: '#/components/responses/BadRequest18'
'401':
- $ref: '#/components/responses/Unauthorized23'
+ $ref: '#/components/responses/Unauthorized18'
'403':
- $ref: '#/components/responses/Forbidden23'
+ $ref: '#/components/responses/Forbidden18'
'429':
- $ref: '#/components/responses/TooManyRequests22'
+ $ref: '#/components/responses/TooManyRequests18'
externalDocs:
description: More about OAuth2 authorization code support for administrators
url: '#oauth2-auth-code-planner-admin'
@@ -15130,15 +15266,15 @@ paths:
schema:
$ref: '#/components/schemas/User'
'400':
- $ref: '#/components/responses/BadRequest23'
+ $ref: '#/components/responses/BadRequest18'
'401':
- $ref: '#/components/responses/Unauthorized23'
+ $ref: '#/components/responses/Unauthorized18'
'403':
- $ref: '#/components/responses/Forbidden23'
+ $ref: '#/components/responses/Forbidden18'
'404':
- $ref: '#/components/responses/NotFound23'
+ $ref: '#/components/responses/NotFound18'
'429':
- $ref: '#/components/responses/TooManyRequests22'
+ $ref: '#/components/responses/TooManyRequests18'
externalDocs:
description: More about OAuth2 authorization code support for administrators
url: '#oauth2-auth-code-planner-admin'
@@ -15168,15 +15304,15 @@ paths:
schema:
$ref: '#/components/schemas/User'
'400':
- $ref: '#/components/responses/BadRequest23'
+ $ref: '#/components/responses/BadRequest18'
'401':
- $ref: '#/components/responses/Unauthorized23'
+ $ref: '#/components/responses/Unauthorized18'
'403':
- $ref: '#/components/responses/Forbidden23'
+ $ref: '#/components/responses/Forbidden18'
'404':
- $ref: '#/components/responses/NotFound23'
+ $ref: '#/components/responses/NotFound18'
'429':
- $ref: '#/components/responses/TooManyRequests22'
+ $ref: '#/components/responses/TooManyRequests18'
externalDocs:
description: More about OAuth2 authorization code support for administrators
url: '#oauth2-auth-code-planner-admin'
@@ -15198,13 +15334,13 @@ paths:
description: Successfully deleted a User.
headers: {}
'401':
- $ref: '#/components/responses/Unauthorized23'
+ $ref: '#/components/responses/Unauthorized18'
'403':
- $ref: '#/components/responses/Forbidden23'
+ $ref: '#/components/responses/Forbidden18'
'404':
- $ref: '#/components/responses/NotFound23'
+ $ref: '#/components/responses/NotFound18'
'429':
- $ref: '#/components/responses/TooManyRequests22'
+ $ref: '#/components/responses/TooManyRequests18'
externalDocs:
description: More about OAuth2 authorization code support for administrators
url: '#oauth2-auth-code-planner-admin'
@@ -17514,6 +17650,7 @@ paths:
security:
- OAuth2.clientCredentials:
- business-transient/travel-accounts:read
+ - business-travel/travel-accounts:read
parameters:
- $ref: '#/components/parameters/after'
- $ref: '#/components/parameters/before'
@@ -17580,6 +17717,7 @@ paths:
security:
- OAuth2.clientCredentials:
- business-transient/travel-accounts:read
+ - business-travel/travel-accounts:read
responses:
'200':
description: Successfully retrieved a Travel Account.
@@ -17638,6 +17776,7 @@ paths:
security:
- OAuth2.clientCredentials:
- business-transient/travel-programs:read
+ - business-travel/travel-programs:read
parameters:
- $ref: '#/components/parameters/after'
- $ref: '#/components/parameters/before'
@@ -17670,6 +17809,7 @@ paths:
security:
- OAuth2.clientCredentials:
- business-transient/travel-program-questions:read
+ - business-travel/travel-program-questions:read
parameters:
- $ref: '#/components/parameters/after'
- $ref: '#/components/parameters/before'
@@ -17705,6 +17845,7 @@ paths:
security:
- OAuth2.clientCredentials:
- business-transient/travel-programs:read
+ - business-travel/travel-programs:read
responses:
'200':
description: Successfully retrieved a Travel Program.
@@ -17735,6 +17876,7 @@ paths:
security:
- OAuth2.clientCredentials:
- business-transient/travel-program-questions:read
+ - business-travel/travel-program-questions:read
parameters:
- $ref: '#/components/parameters/after'
- $ref: '#/components/parameters/before'
@@ -17771,6 +17913,7 @@ paths:
security:
- OAuth2.clientCredentials:
- business-transient/travel-program-questions:read
+ - business-travel/travel-program-questions:read
responses:
'200':
description: Successfully retrieved a travel program question.
@@ -17799,6 +17942,8 @@ paths:
security:
- OAuth2.clientCredentials:
- business-transient/proposals:read
+ - OAuth2.authorizationCode:
+ - business-transient/proposals:read
parameters:
- $ref: '#/components/parameters/after'
- $ref: '#/components/parameters/before'
@@ -17831,6 +17976,8 @@ paths:
security:
- OAuth2.clientCredentials:
- business-transient/bids:read
+ - OAuth2.authorizationCode:
+ - business-transient/bids:read
parameters:
- $ref: '#/components/parameters/after'
- $ref: '#/components/parameters/before'
@@ -17895,6 +18042,8 @@ paths:
security:
- OAuth2.clientCredentials:
- business-transient/proposals:read
+ - OAuth2.authorizationCode:
+ - business-transient/proposals:read
responses:
'200':
description: Successfully retrieved a travel proposal.
@@ -18254,30 +18403,28 @@ paths:
in: query
required: false
description: |
- A filter query string narrows search results and supports the combination of logical and comparison operators.
- The filter adheres to the pattern filter='field' comparisonType 'value'.
+ Use filter query parameters to limit results
+ to data that matches your criteria. See
+ [Filters](/docs/rest-api/reference/filters) for details.
- There are six comparison types that can be used in filter expressions:
- * equal: eq
- * not equal: ne
- * greater than: gt
- * greater or equal: ge
- * less than: lt
- * less than or equal: le
+ Supported fields and operators are listed below:
- The following fields are filterable:
- * 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)
+ | 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 filterable fields have been deprecated, use the plural form above:
- * event.id (eq|ne)
+ The following logical operators are supported for combining filters:
+ * and
+ * or
schema:
type: string
example: events eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' and source.id ne 'sampleWebcastSystemId'
@@ -18327,22 +18474,24 @@ paths:
in: query
required: false
description: |
- A filter query string narrows search results and supports the combination of logical and comparison operators.
- The filter adheres to the pattern filter='field' comparisonType 'value'.
- The filter query supports maximum three fields in filter expression.
+ Use filter query parameters to limit results
+ to data that matches your criteria. See
+ [Filters](/docs/rest-api/reference/filters) for details.
- There is one comparison type that can be used in filter expressions:
- * equal: eq
+ Supported fields and operators are listed below:
- The following fields are filterable:
- * contact.id (eq)
- * solution (eq)
- * device.type (eq) [deprecated]
- * device.operatingSystem (eq) [deprecated]
- * video.id (eq)
- * type (eq)
+ | Field | Operators | Notes |
+ |------------------------|-----------|------------|
+ | contact.id | `eq` | |
+ | solution | `eq` | |
+ | device.type | `eq` | deprecated |
+ | device.operatingSystem | `eq` | deprecated |
+ | video.id | `eq` | |
+ | type | `eq` | |
- The following operators are available:
+ The filter query supports maximum three fields in a filter expression.
+
+ The following logical operators are supported for combining filters:
* and
schema:
type: string
@@ -20508,7 +20657,7 @@ components:
in: path
required: true
schema:
- $ref: '#/components/schemas/uuid-property'
+ $ref: '#/components/schemas/UUIDProperty'
registrationPackId:
in: path
name: registrationPackId
@@ -21046,7 +21195,7 @@ components:
description: The identifier of a video text track.
required: true
schema:
- $ref: '#/components/schemas/uuid-property'
+ $ref: '#/components/schemas/UUIDProperty'
token:
name: token
in: query
@@ -21231,7 +21380,7 @@ components:
required: true
in: path
schema:
- $ref: '#/components/schemas/uuid-property'
+ $ref: '#/components/schemas/UUIDProperty'
travelProposalId:
description: Unique ID of a travel proposal.
example: 413c5cc2-cb77-4082-9131-bab73fde5834
@@ -21239,7 +21388,7 @@ components:
required: true
in: path
schema:
- $ref: '#/components/schemas/uuid-property'
+ $ref: '#/components/schemas/UUIDProperty'
type:
name: type
in: path
@@ -21316,8 +21465,33 @@ components:
name: videoId
description: The identifier of a video.
required: true
+ schema:
+ $ref: '#/components/schemas/UUIDProperty'
+ voucherId:
+ in: path
+ name: voucherId
+ description: Unique ID of a voucher.
+ required: true
schema:
$ref: '#/components/schemas/uuid-property'
+ voucherSort:
+ name: sort
+ in: query
+ required: false
+ description: |
+ 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.
+ schema:
+ type: string
+ example: code:ASC
weblinkId:
in: path
name: weblinkId
@@ -21351,23 +21525,23 @@ components:
content:
application/json:
schema:
- $ref: '#/components/schemas/error-response'
+ $ref: '#/components/schemas/ErrorResponse'
example:
code: 400
message: Bad Request
- BadRequest23:
+ BadRequest18:
description: Bad request
content:
application/json:
schema:
- $ref: '#/components/schemas/error-response.json17'
+ $ref: '#/components/schemas/error-response.json12'
example:
schemas:
- urn:ietf:params:scim:api:messages:2.0:Error
status: 400
detail: Request is unparsable, syntactically incorrect, or violates schema.
scimType: invalidSyntax
- BadRequest32:
+ BadRequest26:
description: Bad request
content:
application/json:
@@ -21384,16 +21558,16 @@ components:
content:
application/json:
schema:
- $ref: '#/components/schemas/error-response'
+ $ref: '#/components/schemas/ErrorResponse'
example:
code: 409
message: Conflict
- Conflict14:
+ Conflict11:
description: The request conflicts with current state of the target resource
content:
application/json:
schema:
- $ref: '#/components/schemas/error-response.json17'
+ $ref: '#/components/schemas/error-response.json12'
example:
schemas:
- urn:ietf:params:scim:api:messages:2.0:Error
@@ -21426,22 +21600,22 @@ components:
content:
application/json:
schema:
- $ref: '#/components/schemas/error-response'
+ $ref: '#/components/schemas/ErrorResponse'
example:
code: 403
message: Access Forbidden
- Forbidden23:
+ Forbidden18:
description: You do not have access to the resource
content:
application/json:
schema:
- $ref: '#/components/schemas/error-response.json17'
+ $ref: '#/components/schemas/error-response.json12'
example:
schemas:
- urn:ietf:params:scim:api:messages:2.0:Error
status: 403
detail: User is Forbidden to make this request
- Forbidden32:
+ Forbidden26:
description: You do not have access to the resource
content:
application/json:
@@ -21479,22 +21653,22 @@ components:
content:
application/json:
schema:
- $ref: '#/components/schemas/error-response'
+ $ref: '#/components/schemas/ErrorResponse'
example:
code: 404
message: Not found
- NotFound23:
+ NotFound18:
description: Resource not found
content:
application/json:
schema:
- $ref: '#/components/schemas/error-response.json17'
+ $ref: '#/components/schemas/error-response.json12'
example:
schemas:
- urn:ietf:params:scim:api:messages:2.0:Error
status: 404
detail: HTTP 404 Not Found
- NotFound32:
+ NotFound26:
description: Resource not found
content:
application/json:
@@ -21529,22 +21703,22 @@ components:
content:
application/json:
schema:
- $ref: '#/components/schemas/error-response'
+ $ref: '#/components/schemas/ErrorResponse'
example:
code: 429
message: Limit Exceeded
- TooManyRequests22:
+ TooManyRequests18:
description: Too Many Requests
content:
application/json:
schema:
- $ref: '#/components/schemas/error-response.json17'
+ $ref: '#/components/schemas/error-response.json12'
example:
schemas:
- urn:ietf:params:scim:api:messages:2.0:Error
status: 429
detail: Too Many Requests
- TooManyRequests31:
+ TooManyRequests26:
description: Too many requests
content:
application/json:
@@ -21555,29 +21729,29 @@ components:
content:
application/json:
schema:
- $ref: '#/components/schemas/error-response'
+ $ref: '#/components/schemas/ErrorResponse'
example:
code: 401
message: Unauthorized
- Unauthorized23:
+ Unauthorized18:
description: Bad or expired token
content:
application/json:
schema:
- $ref: '#/components/schemas/error-response.json17'
+ $ref: '#/components/schemas/error-response.json12'
example:
schemas:
- urn:ietf:params:scim:api:messages:2.0:Error
status: 401
detail: Request failed authentication/authorization process
scimType: invalidValue
- Unauthorized32:
+ Unauthorized26:
description: Bad or expired token
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
- UnprocessableEntity14:
+ UnprocessableEntity10:
description: Was not able to process the request.
content:
application/json:
@@ -21691,7 +21865,7 @@ components:
id:
$ref: '#/components/schemas/organization-id.json'
stub:
- $ref: '#/components/schemas/Organization/properties/stub/allOf/0'
+ $ref: '#/components/schemas/Organization1/properties/stub/allOf/0'
number:
$ref: '#/components/schemas/organization-number.json'
- readOnly: true
@@ -21793,9 +21967,9 @@ components:
example: hporter
properties:
event:
- $ref: '#/components/schemas/event.json2'
+ $ref: '#/components/schemas/event.json1'
rfp:
- $ref: '#/components/schemas/rfp-id.json1'
+ $ref: '#/components/schemas/rfp-id.json'
budgetVersion:
$ref: '#/components/schemas/budget-version-id.json'
id:
@@ -22860,20 +23034,7 @@ components:
type: number
example: 15
currency:
- $ref: '#/components/schemas/currency.json2'
- additional-choice.json:
- title: additionalChoice
- description: Contains text of additional choice i.e notApplicableAnswer choice or otherAnswer choice.
- type: object
- properties:
- text:
- type: string
- description: Display text of additional choice.
- example: Dietary Restriction - Other
- shortText:
- type: string
- description: Name of additional choice text in reporting.
- example: Dietary Preference - Other Allergies
+ $ref: '#/components/schemas/currency.json1'
additional-guest-fees.json:
title: AdditionalGuestFees
description: Details about additional fees for extra guests.
@@ -22893,14 +23054,18 @@ components:
type: number
example: 20
AdditionalChoice:
- title: Additional Choice
- description: Contains text of additional choice
+ title: additionalChoice
+ description: Contains text of additional choice i.e notApplicableAnswer choice or otherAnswer choice.
type: object
properties:
text:
type: string
- description: Text Value of additional choice
- example: Not Applicable or Other
+ description: Display text of additional choice.
+ example: Dietary Restriction - Other
+ shortText:
+ type: string
+ description: Name of additional choice text in reporting.
+ example: Dietary Preference - Other Allergies
additionalChoice.json:
title: additionalChoice
description: Contains text of additional choice i.e N/A choice or otherAnswer choice
@@ -22914,7 +23079,60 @@ components:
type: string
description: Reporting value of additional choice text
example: N/A or Other Reporting value
+ AdditionalChoice1:
+ title: Additional Choice
+ description: Contains text of additional choice
+ type: object
+ properties:
+ text:
+ type: string
+ description: Text Value of additional choice
+ example: Not Applicable or Other
+ Address:
+ title: Address
+ description: Contact address details.
+ type: object
+ allOf:
+ - $ref: '#/components/schemas/BaseAddress'
+ properties:
+ region:
+ type: string
+ description: The name of the state/province/region of the address.
+ readOnly: true
+ example: Texas
+ regionCode:
+ type: string
+ description: The abbreviation of the state/province/region of the address.
+ minLength: 2
+ maxLength: 10
+ example: TX
+ country:
+ type: string
+ description: Name of the country of the address.
+ readOnly: true
+ example: United States of America
Address-1:
+ type: object
+ title: Address
+ description: Address details.
+ required:
+ - city
+ - countryCode
+ properties:
+ countryCode:
+ type: string
+ description: ISO 3166 code for the country.
+ example: US
+ city:
+ type: string
+ maxLength: 100
+ description: The name of the city.
+ example: Austin
+ regionCode:
+ type: string
+ description: ISO 3166-2 code for the state/province/region.
+ example: US-AL
+ Address-11:
title: Address
description: Schema for address information
type: object
@@ -22952,14 +23170,6 @@ components:
description: ISO 3166 two-letter (alpha-2) country code
example: US
address-type.json:
- title: AddressType
- enum:
- - Home
- - Work
- type: string
- description: The type of address.
- example: Home
- address-type.json1:
title: AddressType
description: The type of the address.
enum:
@@ -22968,84 +23178,6 @@ components:
type: string
example: work
address.json:
- title: Address
- description: Contact address details.
- type: object
- allOf:
- - title: Base Address
- description: Base Address Model
- type: object
- properties:
- address1:
- type: string
- maxLength: 40
- description: The first line of an address.
- example: Cvent Inc.
- address2:
- type: string
- maxLength: 40
- description: The second line of an address.
- example: 4001 West Parmer Lane
- address3:
- type: string
- maxLength: 40
- description: The third line of an address.
- example: PO Box 123
- city:
- type: string
- maxLength: 40
- description: The name of the city.
- example: Austin
- countryCode:
- type: string
- maxLength: 3
- minLength: 2
- description: ISO 3166 two-letter (alpha-2) country code.
- example: US
- postalCode:
- type: string
- maxLength: 25
- description: Postal code (also known as zipcode) of the address.
- example: '78727'
- properties:
- region:
- type: string
- description: The name of the state/province/region of the address.
- readOnly: true
- example: Texas
- regionCode:
- type: string
- description: The abbreviation of the state/province/region of the address.
- minLength: 2
- maxLength: 10
- example: TX
- country:
- type: string
- description: Name of the country of the address.
- readOnly: true
- example: United States of America
- address.json-0:
- type: object
- title: Address
- description: Address details.
- required:
- - city
- - countryCode
- properties:
- countryCode:
- type: string
- description: ISO 3166 code for the country.
- example: US
- city:
- type: string
- maxLength: 100
- description: The name of the city.
- example: Austin
- regionCode:
- type: string
- description: ISO 3166-2 code for the state/province/region.
- example: US-AL
- address.json2:
title: Address
description: Address details. Required to create/update a guest's reservation if the hotel/event requires an address in reservations.
type: object
@@ -23082,7 +23214,7 @@ components:
description: ISO 3166 alpha-2 country code.
type: string
example: US
- address.json3:
+ address.json1:
title: Address
description: A physical address.
type: object
@@ -23128,7 +23260,7 @@ components:
maxLength: 2
minLength: 2
example: US
- address.json4:
+ address.json2:
title: Address
description: Address
type: object
@@ -23137,7 +23269,7 @@ components:
- primary
properties:
type:
- $ref: '#/components/schemas/address-type.json1'
+ $ref: '#/components/schemas/address-type.json'
streetAddress:
type: string
description: The street address of the user.
@@ -23165,53 +23297,7 @@ components:
description: True indicates the address is primary.
example: true
default: false
- address.json5:
- title: Address
- description: Address details.
- type: object
- properties:
- address1:
- description: Address line 1.
- type: string
- maxLength: 45
- example: 717 N Harwood St
- address2:
- description: Address line 2.
- type: string
- maxLength: 45
- example: Suite 2800
- city:
- description: City name.
- type: string
- maxLength: 50
- example: Dallas
- region:
- description: Region name.
- type: string
- maxLength: 50
- example: Texas
- regionCode:
- description: Region code.
- type: string
- maxLength: 3
- example: TX
- postalCode:
- description: Postal code.
- type: string
- maxLength: 16
- example: '75201'
- country:
- description: Country name.
- type: string
- maxLength: 50
- example: United States
- countryCode:
- description: ISO 3166 alpha-2 country code.
- type: string
- maxLength: 2
- minLength: 2
- example: US
- Address1:
+ Address3:
title: Address
description: Address details
type: object
@@ -23246,7 +23332,7 @@ components:
minimum: -180
maximum: 180
example: -97
- Address2:
+ Address4:
title: Address
type: object
description: An object representing an address with various properties.
@@ -23275,7 +23361,7 @@ components:
type: string
description: Name of the country for example, 'United States'
example: United States of America
- Address3:
+ Address5:
title: Address
description: Address of the hotel.
type: object
@@ -23298,6 +23384,52 @@ components:
description: Name of the country.
readOnly: true
example: United States of America
+ Address6:
+ title: Address
+ description: Address details.
+ type: object
+ properties:
+ address1:
+ description: Address line 1.
+ type: string
+ maxLength: 45
+ example: 717 N Harwood St
+ address2:
+ description: Address line 2.
+ type: string
+ maxLength: 45
+ example: Suite 2800
+ city:
+ description: City name.
+ type: string
+ maxLength: 50
+ example: Dallas
+ region:
+ description: Region name.
+ type: string
+ maxLength: 50
+ example: Texas
+ regionCode:
+ description: Region code.
+ type: string
+ maxLength: 3
+ example: TX
+ postalCode:
+ description: Postal code.
+ type: string
+ maxLength: 16
+ example: '75201'
+ country:
+ description: Country name.
+ type: string
+ maxLength: 50
+ example: United States
+ countryCode:
+ description: ISO 3166 alpha-2 country code.
+ type: string
+ maxLength: 2
+ minLength: 2
+ example: US
AddressType:
title: AddressType
enum:
@@ -23366,7 +23498,22 @@ components:
description: The choices to display if the associated source custom field choice is selected. Leave empty to have no choices displayed.
minItems: 0
maxItems: 100
- agenda-item-setup.json:
+ AgendaItem1:
+ title: Agenda Item
+ description: Represents the associated agenda item of a discount.
+ type: object
+ properties:
+ id:
+ type: string
+ format: uuid
+ description: A unique identifier of the agenda item.
+ example: 14ca6ae2-0dc3-487b-953e-86d6abbdf6d4
+ readOnly: true
+ type:
+ $ref: '#/components/schemas/EntityType1'
+ discount:
+ $ref: '#/components/schemas/UUID'
+ AgendaItemSetup:
type: string
title: AgendaItemSetup
description: Setup type for the agenda.
@@ -23397,7 +23544,7 @@ components:
- THEATER
- T_SHAPED
- U_SHAPED
- agenda-item-type.json:
+ AgendaItemType:
type: string
title: AgendaItemType
description: Type of the agenda.
@@ -23421,21 +23568,6 @@ components:
- SPEAKER_ROOM
- STORAGE_ROOM
- TEARDOWN
- AgendaItem1:
- title: Agenda Item
- description: Represents the associated agenda item of a discount.
- type: object
- properties:
- id:
- type: string
- format: uuid
- description: A unique identifier of the agenda item.
- example: 14ca6ae2-0dc3-487b-953e-86d6abbdf6d4
- readOnly: true
- type:
- $ref: '#/components/schemas/EntityType1'
- discount:
- $ref: '#/components/schemas/UUID'
AGeneralLedgerCodeUsedToCategorizeFinancialDataWhichHelpsBusinessesAnalyzeAndReportOnTheirFinancialActivity:
title: A general ledger code. Used to categorize financial data, which helps businesses analyze and report on their financial activity.
description: A general ledger code associated to a fee.
@@ -23843,7 +23975,7 @@ components:
$ref: '#/components/schemas/AlternateQuestion'
answer:
$ref: '#/components/schemas/AlternateAnswer'
- amenity-type.json:
+ AmenityType:
title: Amenity Type
enum:
- included_amenity
@@ -23975,7 +24107,7 @@ components:
description: A question answer.
type: object
allOf:
- - $ref: '#/components/schemas/question.json3/allOf/0'
+ - $ref: '#/components/schemas/question.json2/allOf/0'
properties:
type:
type: string
@@ -24534,7 +24666,7 @@ components:
questions:
type: array
items:
- $ref: '#/components/schemas/custom-field.json1'
+ $ref: '#/components/schemas/custom-field.json'
description: Collection of custom questions asked to participants of the appointment.
Appointment1:
title: Appointment
@@ -24556,7 +24688,7 @@ components:
description: The ID of the appointment group.
format: uuid
example: bf183d50-56ad-454b-8b9f-06d8e923e1fd
- asset-location.json:
+ AssetLocation:
title: Asset Location
description: A URL associated with the asset.
required:
@@ -24579,16 +24711,6 @@ components:
type: string
description: A unique identifier of the registration path.
example: 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3
- attachment-source.json:
- type: string
- title: AttachmentSource
- description: The source from where the attachment was uploaded.
- enum:
- - FILE_COPY_ADMIN_LIBRARY
- - FILE_UPLOAD_LINK_URL
- - FILE_UPLOAD_TO_CUSTOM_DRIVE
- - FILE_UPLOAD_TO_TEMP_LOCATION
- - USER_DOCUMENT_LINK_URL
attachment.json1:
title: Attachment
description: A message attachment.
@@ -24601,6 +24723,16 @@ components:
type: string
format: uri
example: https://foo.com/a/picture/of/a/cat.jpg
+ AttachmentSource:
+ type: string
+ title: AttachmentSource
+ description: The source from where the attachment was uploaded.
+ enum:
+ - FILE_COPY_ADMIN_LIBRARY
+ - FILE_UPLOAD_LINK_URL
+ - FILE_UPLOAD_TO_CUSTOM_DRIVE
+ - FILE_UPLOAD_TO_TEMP_LOCATION
+ - USER_DOCUMENT_LINK_URL
attempt.json:
title: Survey Attempt
type: integer
@@ -25104,21 +25236,6 @@ components:
items:
$ref: '#/components/schemas/attendee-audience-segment-association.json'
description: Collection of audience segment associations for the attendee.
- attendee-contact-type.json:
- title: AttendeeContactType
- type: object
- description: Contains details related to the attendee's contact type.
- properties:
- id:
- type: string
- format: uuid
- description: The unique identifier of the contact type
- example: 861B51EC-AA7E-475F-B38D-4C8E35C47D63
- name:
- type: string
- description: A descriptive name for the contact type
- example: VIP Member
- readOnly: true
attendee-credit-type.json:
title: AttendeeCreditType
description: 'Represents the entity that granted the credit. Event: This credit was granted by an event. Session: This credit was granted by a session.'
@@ -25232,7 +25349,7 @@ components:
description: Description of the engagement score.
example: A score to capture engagement for general attendees.
event:
- $ref: '#/components/schemas/event.json6'
+ $ref: '#/components/schemas/event.json5'
default:
type: boolean
description: True indicates this is the default engagement score in the event.
@@ -25652,6 +25769,18 @@ components:
format: uuid
example: 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3
description: Attendee id
+ Attendee2:
+ type: object
+ description: The reference to the attendee. Contains only the ID of the attendee.
+ title: Attendee
+ required:
+ - id
+ properties:
+ id:
+ type: string
+ format: uuid
+ description: Attendee ID.
+ example: 5b0e8d1f-8fd6-4ebe-977a-602b4a1f9c43
Attendee3:
title: Attendee
description: Representation of the attendee
@@ -25914,7 +26043,7 @@ components:
primaryAddressType:
$ref: '#/components/schemas/AddressType'
homeAddress:
- $ref: '#/components/schemas/Address1'
+ $ref: '#/components/schemas/Address3'
homePhone:
type: string
description: Home phone number
@@ -25926,7 +26055,7 @@ components:
maxLength: 30
example: 555-555-5555
workAddress:
- $ref: '#/components/schemas/Address1'
+ $ref: '#/components/schemas/Address3'
workPhone:
type: string
description: Work phone number
@@ -26264,6 +26393,22 @@ components:
Note: The responseMethod can only be set if the invitee's status is No Response.
example: Self-Responded
+ attendees-paginated-response:
+ title: Attendees Paginated Response
+ required:
+ - data
+ - paging
+ type: object
+ description: A paginated response containing a list of attendees who have redeemed a voucher.
+ properties:
+ paging:
+ $ref: '#/components/schemas/Paging'
+ data:
+ maxItems: 200
+ type: array
+ items:
+ $ref: '#/components/schemas/Attendee2'
+ description: Collection of attendees who have redeemed the voucher.
AttendeeStatus:
title: AttendeeStatus
enum:
@@ -26417,7 +26562,7 @@ components:
type: object
properties:
event:
- $ref: '#/components/schemas/event.json1'
+ $ref: '#/components/schemas/event.json'
name:
type: string
description: Name of the audience segment. Must be unique in the event where the segment exists.
@@ -26442,7 +26587,7 @@ components:
type: object
properties:
event:
- $ref: '#/components/schemas/event.json1'
+ $ref: '#/components/schemas/event.json'
name:
type: string
description: Name of the audience segment. Must be unique in the event where the segment exists.
@@ -26501,7 +26646,49 @@ components:
items:
$ref: '#/components/schemas/audience-segment-response'
description: Collection of audience segments.
- audio-track-status.json:
+ audio-track:
+ title: AudioTrack
+ description: The audio track.
+ type: object
+ required:
+ - video
+ - type
+ - language
+ allOf:
+ - $ref: '#/components/schemas/Audit'
+ properties:
+ video:
+ $ref: '#/components/schemas/VideoAssetID'
+ type:
+ $ref: '#/components/schemas/AudioTrackType'
+ language:
+ type: string
+ description: IETF language tag for the audio track.
+ maxLength: 35
+ example: en-US
+ variant:
+ $ref: '#/components/schemas/AudioTrackVariant'
+ default:
+ description: True indicates this is the default audio track.
+ type: boolean
+ default: false
+ duration:
+ type: integer
+ description: Audio track duration (in milliseconds).
+ example: 3600000
+ status:
+ $ref: '#/components/schemas/AudioTrackStatus'
+ audio-tracks-response:
+ title: AudioTracksResponse
+ description: The response from a request to get the list of audio tracks.
+ type: object
+ properties:
+ data:
+ type: array
+ items:
+ $ref: '#/components/schemas/existing-audio-track'
+ description: Collection of audio tracks.
+ AudioTrackStatus:
title: AudioTrackStatus
enum:
- Started
@@ -26515,7 +26702,7 @@ components:
type: string
description: Denotes the status of an audio track. Started indicates the request to upload in the API was submitted, and the URL you'll upload an audio track to was returned. Uploaded indicates that the upload was completed. Scanning indicates a virus scan is happening in a quarantine location; Scanned indicates a successful virus scan. Syncing indicates a complete virus scan, and now transcoding has begun. Rejected indicates a failed virus scan. Error indicates there was a problem processing the audio track. Available indicates the audio track is available for use.
example: Started
- audio-track-type.json:
+ AudioTrackType:
title: AudioTrackType
enum:
- asf
@@ -26531,7 +26718,7 @@ components:
type: string
description: Denotes the file format of the audio track.
example: mp3
- audio-track-variant.json:
+ AudioTrackVariant:
title: AudioTrackVariant
enum:
- Main
@@ -26543,16 +26730,6 @@ components:
default: Alternate
description: Denotes the variant of an audio track. Main is the primary audio track for this video. Alternate is a possible alternative to the main track. Commentary is a commentary on the primary audio or video track, e.g. a director's commentary. Dub is a translated version of the main audio track. Descriptive is an audio description of a video track.
example: Alternate
- audio-tracks-response:
- title: AudioTracksResponse
- description: The response from a request to get the list of audio tracks.
- type: object
- properties:
- data:
- type: array
- items:
- $ref: '#/components/schemas/existing-audio-track'
- description: Collection of audio tracks.
Audit:
title: Audit
description: Audit information
@@ -26682,7 +26859,7 @@ components:
taxStructure:
$ref: '#/components/schemas/tax-structure.json'
currency:
- $ref: '#/components/schemas/currency.json2'
+ $ref: '#/components/schemas/currency.json1'
maxGuests:
$ref: '#/components/schemas/max-guests.json'
minLengthOfStay:
@@ -26784,7 +26961,7 @@ components:
attendee:
$ref: '#/components/schemas/Attendee1'
event:
- $ref: '#/components/schemas/Event2'
+ $ref: '#/components/schemas/Event3'
badge-paginated-response:
title: BadgeListResponse
type: object
@@ -26984,7 +27161,7 @@ components:
type: object
properties:
question:
- $ref: '#/components/schemas/question.json3/allOf/0'
+ $ref: '#/components/schemas/question.json2/allOf/0'
answers:
type: array
items:
@@ -27044,25 +27221,7 @@ components:
title: ErrorResponse
description: Represents an error response with additional details of cascading error messages.
allOf:
- - title: ErrorResponseBase
- type: object
- description: Represents an error response with no additional details.
- required:
- - code
- - message
- properties:
- code:
- type: integer
- description: The HTTP status code representing the error.
- example: 400
- message:
- type: string
- description: A brief description of the error.
- example: Bad Request
- target:
- type: string
- description: The target resource of the error.
- example: example target
+ - $ref: '#/components/schemas/ErrorResponseBase'
type: object
required:
- code
@@ -27071,9 +27230,9 @@ components:
details:
type: array
items:
- $ref: '#/components/schemas/baseErrorResponse/allOf/0'
+ $ref: '#/components/schemas/ErrorResponseBase'
description: Additional details of cascading error messages.
- bid-item-status-type.json:
+ BidItemStatusType:
title: Bid Item Status Type
enum:
- requested
@@ -27083,7 +27242,7 @@ components:
type: string
description: The status of the item in negotiation. e.g. The corporation might mark an item as delete_requested, and the hotel, if they agree, can update the item to deleted.
example: requested
- bid-status-type.json:
+ BidStatusType:
title: Bid Status Type
enum:
- in_progress
@@ -27092,7 +27251,7 @@ components:
type: string
description: Bid stay type.
default: in_progress
- bid-stay-type.json:
+ BidStayType:
title: Bid Stay Type
enum:
- daily
@@ -27100,7 +27259,25 @@ components:
type: string
description: Bid stay type.
default: daily
- billing-details.json-0:
+ BillingAddress:
+ title: Billing Address
+ description: Billing Address Details
+ type: object
+ allOf:
+ - $ref: '#/components/schemas/BaseAddress'
+ properties:
+ region:
+ type: string
+ description: The name of the state/province/region of the address.
+ maxLength: 50
+ example: Texas
+ regionCode:
+ type: string
+ description: The abbreviation of the state/province/region of the address.
+ minLength: 2
+ maxLength: 10
+ example: TX
+ BillingDetails-1:
title: BillingDetails
description: Billing details for RFP.
type: object
@@ -27118,7 +27295,7 @@ components:
maxLength: 2500
example: Request use of LOI or Express Agreement.
rebateType:
- $ref: '#/components/schemas/rebate-type.json'
+ $ref: '#/components/schemas/RebateType'
acceptingRebatesAndIncentives:
type: boolean
description: True indicates that rebates and incentives are accepted, applicable only for citywide RFPs.
@@ -27129,24 +27306,6 @@ components:
minimum: 0
maximum: 999999
example: 10
- BillingAddress:
- title: Billing Address
- description: Billing Address Details
- type: object
- allOf:
- - $ref: '#/components/schemas/BaseAddress'
- properties:
- region:
- type: string
- description: The name of the state/province/region of the address.
- maxLength: 50
- example: Texas
- regionCode:
- type: string
- description: The abbreviation of the state/province/region of the address.
- minLength: 2
- maxLength: 10
- example: TX
booking-website-link.json:
type: object
title: BookingWebsiteLink
@@ -27191,7 +27350,7 @@ components:
attendee:
$ref: '#/components/schemas/Attendee1'
event:
- $ref: '#/components/schemas/Event2'
+ $ref: '#/components/schemas/Event3'
exhibitor:
$ref: '#/components/schemas/Exhibitor'
booth-staff-response:
@@ -27226,7 +27385,7 @@ components:
type: object
properties:
paging:
- $ref: '#/components/schemas/paging-no-total-count.json2'
+ $ref: '#/components/schemas/paging-no-total-count.json'
data:
type: array
items:
@@ -27272,7 +27431,7 @@ components:
description: Unique ID of the product.
example: 2A941E55-3367-4C50-B21B-B6A7613DFB23
emailType:
- $ref: '#/components/schemas/email-type.json3'
+ $ref: '#/components/schemas/email-type.json1'
emailId:
type: string
format: uuid
@@ -27301,7 +27460,7 @@ components:
maxLength: 50
example: Northern Hotel Group
address:
- $ref: '#/components/schemas/address.json3'
+ $ref: '#/components/schemas/address.json1'
deleted:
type: boolean
description: True indicates the brand is deleted.
@@ -27320,9 +27479,9 @@ components:
items:
$ref: '#/components/schemas/brand'
description: Collection of brands and their related details.
- bride-groom-type.json-0:
+ BrideGroomType:
title: BrideGroomType
- description: Bride groom type.
+ description: BrideGroomType
type: string
enum:
- BRIDE
@@ -28419,7 +28578,7 @@ components:
param2: param2Value
additionalProperties: true
additionalProperties: false
- business-type.json:
+ business-type:
title: Business Type
enum:
- corporate
@@ -28500,7 +28659,7 @@ components:
items:
$ref: '#/components/schemas/campaign-data.json'
description: A list of all campaigns.
- cancellation-details.json:
+ CancellationDetails:
title: CancellationDetails
description: Information about cancellation of RFP.
type: object
@@ -28511,7 +28670,7 @@ components:
description: The ISO 8601 date time (in UTC) when RFP was cancelled.
example: '2021-01-13T14:06:20.080Z'
reason:
- $ref: '#/components/schemas/cancelled-reason.json-0'
+ $ref: '#/components/schemas/CancelledReason-1'
comments:
type: string
description: Additional comments while cancelling the RFP.
@@ -28533,7 +28692,7 @@ components:
- EPIDEMIC_OR_PANDEMIC
- NATURAL_DISASTER
- POLITICAL_OR_CIVIL_UNREST
- cancelled-reason.json-0:
+ CancelledReason-1:
title: CancelledReason
description: Reason for cancelling the RFP.
type: string
@@ -28924,20 +29083,18 @@ components:
example: 00000000-0000-0000-0000-000000000000
creditCard:
$ref: '#/components/schemas/credit-card-response.json'
- category-id-name.json:
- title: SpeakerCategory
- description: A defined speaker category.
+ Category:
+ title: Category
+ description: A question category.
type: object
- required:
- - id
+ allOf:
+ - $ref: '#/components/schemas/TextField'
properties:
- id:
- $ref: '#/components/schemas/uuid-property'
- name:
- type: string
- description: The name of the speaker category
- maxLength: 50
- example: Presenters
+ required:
+ type: boolean
+ default: false
+ description: True indicates the category is mandatory for answer.
+ example: true
category-items-cost.json:
type: object
title: CategoryItemsCost
@@ -28956,20 +29113,8 @@ components:
type: array
description: List of categories.
items:
- $ref: '#/components/schemas/category.json1'
+ $ref: '#/components/schemas/category.json'
category.json:
- title: Category
- description: A question category.
- type: object
- allOf:
- - $ref: '#/components/schemas/text-field.json'
- properties:
- required:
- type: boolean
- default: false
- description: True indicates the category is mandatory for answer.
- example: true
- category.json1:
type: object
title: Category
description: A category of items.
@@ -28991,12 +29136,12 @@ components:
description: List of items in this category.
items:
$ref: '#/components/schemas/item.json'
- category.json2:
+ category.json1:
title: Category
description: A survey category.
type: object
allOf:
- - $ref: '#/components/schemas/text-field.json1'
+ - $ref: '#/components/schemas/text-field.json'
properties:
required:
type: boolean
@@ -29043,7 +29188,7 @@ components:
type: string
example: NorthernHotels
address:
- $ref: '#/components/schemas/address.json3'
+ $ref: '#/components/schemas/address.json1'
deleted:
type: boolean
description: True indicates the chain is deleted.
@@ -29291,16 +29436,16 @@ components:
example: 4000
Choice:
title: Choice
- description: A schema representing a choice object
+ description: A question choice.
type: object
allOf:
- - $ref: '#/components/schemas/BaseChoice'
+ - $ref: '#/components/schemas/TextField'
properties:
label:
type: string
- description: Label of choice
+ description: Label of choice.
example: Choice A
- choice-sort-order.json:
+ choice-sort-order:
type: string
description: 'The sort order for the choices. `AToZ`: sorted alphabetically in ascending order. `AsEntered`: Sorted in the order they were added, oldest choices first. `Random`: Random sort.'
enum:
@@ -29331,29 +29476,18 @@ components:
description: The type for the event question choice.
default: StandardChoice
example: StandardChoice
- choice.json:
- title: Choice
- description: A question choice.
- type: object
- allOf:
- - $ref: '#/components/schemas/text-field.json'
- properties:
- label:
- type: string
- description: Label of choice.
- example: Choice A
- choice.json2:
+ choice.json1:
title: Choice
description: A survey choice.
type: object
allOf:
- - $ref: '#/components/schemas/text-field.json1'
+ - $ref: '#/components/schemas/text-field.json'
properties:
label:
type: string
description: Label of choice
example: Choice A
- choice.json3:
+ choice.json2:
title: Choice
type: object
description: This is used to denote the choice of custom field.
@@ -29370,6 +29504,17 @@ components:
description: The text for the custom field choice.
example: What is your current designation?
minLength: 1
+ Choice1:
+ title: Choice
+ description: A schema representing a choice object
+ type: object
+ allOf:
+ - $ref: '#/components/schemas/BaseChoice'
+ properties:
+ label:
+ type: string
+ description: Label of choice
+ example: Choice A
choices-display-type.json:
title: DisplayType
description: Display type indicating how to display the choices on UI. For 'Choice - Single Answer' custom field type, this defaults to Dropdown. For 'Choice - Multiple Answers' custom field type, this defaults to MultiSelectBox.
@@ -29379,7 +29524,7 @@ components:
- Vertical
- Horizontal
- MultiSelectBox
- comment-type.json:
+ CommentType:
title: Comment Type
enum:
- promotions
@@ -29486,7 +29631,7 @@ components:
attendee:
$ref: '#/components/schemas/attendee.json'
question:
- $ref: '#/components/schemas/question.json1'
+ $ref: '#/components/schemas/question.json'
attachments:
type: array
description: A collection of attachments that are associated with this message.
@@ -29558,44 +29703,6 @@ components:
- VIDEO_CENTER_MEMBER
- RESPONDENT
- NOT_SET
- compliance.json:
- title: Compliance
- description: Privacy compliance fields for a contact.
- type: object
- properties:
- creationTime:
- type: string
- format: date-time
- description: Date-time (in GMT) when privacy compliance details were created for the contact.
- example: '2021-03-08T17:30:01.727Z'
- complianceScope:
- type: string
- description: Scope of privacy compliance.
- example: CCPA
- enum:
- - CCPA
- action:
- type: string
- description: Action to take for a compliance request.
- example: DO_NOT_SELL
- enum:
- - DO_NOT_SELL
- - OK_TO_SELL
- createdBy:
- type: string
- description: Denotes how the compliance request was created.
- example: PLANNER
- enum:
- - ATTENDEE
- - PLANNER
- - IMPORT
- - SOAP_API
- - REST_API
- - MARKETO
- - SALEFORCE
- - VIDEO_CENTER_MEMBER
- - RESPONDENT
- - NOT_SET
composite-value.json:
title: CompositeValue
description: |-
@@ -29646,203 +29753,7 @@ components:
description: Represents a contact that has been created and has an id.
type: object
allOf:
- - title: Contact
- description: Represents a contact and their related information.
- type: object
- allOf:
- - $ref: '#/components/schemas/contact-group/allOf/0'
- properties:
- firstName:
- type: string
- description: The first name of the contact.
- maxLength: 30
- example: Henry
- lastName:
- type: string
- description: The last name of the contact.
- maxLength: 50
- example: Potterfield
- middleName:
- type: string
- description: The middle name of the contact.
- maxLength: 30
- example: A
- nickname:
- type: string
- description: The nickname of the contact.
- maxLength: 30
- example: Harry
- email:
- type: string
- format: email
- description: The email address of the contact.
- minLength: 6
- maxLength: 80
- example: h.potterfield@test.com
- ccEmail:
- type: string
- format: email
- description: An alternate email address of the contact that can be cc'd on email communications.
- minLength: 6
- maxLength: 80
- example: h.porter@tesing.com
- gender:
- $ref: '#/components/schemas/gender.json'
- company:
- type: string
- description: The company/organization the contact belongs to.
- maxLength: 100
- example: Cvent Inc.
- designation:
- type: string
- description: The designation of the contact, typically an award or credential.
- maxLength: 30
- example: CPA
- title:
- type: string
- description: The job title of the contact.
- maxLength: 100
- example: Event Planner
- type:
- $ref: '#/components/schemas/attendee-contact-type.json'
- membership:
- $ref: '#/components/schemas/membership.json'
- primaryAddressType:
- $ref: '#/components/schemas/address-type.json'
- homeAddress:
- $ref: '#/components/schemas/address.json'
- homePhone:
- type: string
- description: The phone number of the contact at their place of residence.
- maxLength: 30
- example: 555-555-5555
- homeFax:
- type: string
- description: The fax number of the contact at their place of residence.
- maxLength: 30
- example: 555-555-5555
- workAddress:
- $ref: '#/components/schemas/address.json'
- workPhone:
- type: string
- description: The phone number of the contact at their place of work.
- maxLength: 30
- example: 555-555-5555
- workFax:
- type: string
- description: The fax number of the contact at their place of work.
- maxLength: 30
- example: 555-555-5555
- customFields:
- type: array
- items:
- $ref: '#/components/schemas/custom-field'
- description: Collection of custom fields.
- readOnly: true
- sourceId:
- description: '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 as part of the ID.'
- type: string
- maxLength: 50
- example: system-a-00000000-0000-0000-0000-000000000000
- mobilePhone:
- type: string
- description: The contact's mobile phone number.
- maxLength: 30
- example: 555-555-5555
- compliance:
- type: array
- items:
- $ref: '#/components/schemas/compliance.json'
- description: Detail related to compliance with the contact's privacy rights under various legislation.
- readOnly: true
- prefix:
- type: string
- description: Denotes what is traditionally a title of an individual.
- maxLength: 30
- example: Mr.
- pager:
- type: string
- description: The pager number of the contact.
- maxLength: 30
- example: 555-555-5555
- deleted:
- type: boolean
- description: True indicates a contact is deleted. Deleted contacts still have their data retained, but the contact is inactive.
- default: false
- example: false
- readOnly: true
- purged:
- type: boolean
- description: True indicates a contact is purged. Purged contacts have only partial data retained, and will be permanently deleted in 30 days.
- default: false
- example: false
- readOnly: true
- optOut:
- $ref: '#/components/schemas/opt-out.json'
- npi:
- type: string
- description: Unique 10-digit identification number issued by the Centers for Medicare and Medicaid Services for health care providers in the United States.
- minLength: 10
- maxLength: 10
- example: '5555555555'
- _links:
- $ref: '#/components/schemas/contact-links.json'
- dateOfBirth:
- type: string
- format: date
- description: |-
- The date of birth of the contact.
-
- Reading and writing of this field require the `event/contacts:read-sensitive` and `event/contacts:write-sensitive` scopes respectively.
- example: '1990-01-01'
- passportNumber:
- type: string
- description: |-
- The passport number of the contact.
-
- Reading and writing of this field require the `event/contacts:read-sensitive` and `event/contacts:write-sensitive` scopes respectively. This field has been deprecated. Instead, use the passport.number field.
- example: '123456789'
- maxLength: 100
- deprecated: true
- passport:
- $ref: '#/components/schemas/passport.json'
- socialSecurityNumber:
- type: string
- description: |-
- The social security number of the contact.
-
- Reading and writing of this field require the `event/contacts:read-sensitive` and `event/contacts:write-sensitive` scopes respectively.
- example: 123-45-6789
- maxLength: 11
- nationalIdentificationNumber:
- type: string
- example: '123456789'
- description: |-
- The national identification number of the contact.
-
- Reading and writing of this field require the `event/contacts:read-sensitive` and `event/contacts:write-sensitive` scopes respectively.
- maxLength: 25
- headline:
- type: string
- description: The headline of the contact's profile, which summarizes their professional experience and qualities.
- example: Marketing Director Crafting Memorable Campaigns that Engage Audiences and Elevate Brands
- maxLength: 2500
- personalWebsite:
- type: string
- description: A contact's personal website URL.
- format: uri
- example: https://www.example.com
- maxLength: 2500
- biography:
- type: string
- description: A contact's biographical writeup.
- example: I am a marketing professional with experience in event planning and brand strategy.
- maxLength: 2500
- pronouns:
- type: string
- description: Represents the preferred pronouns of a contact.
- example: he/him/she/her/they/them
- maxLength: 50
+ - $ref: '#/components/schemas/Contact'
properties:
id:
type: string
@@ -29862,20 +29773,268 @@ components:
format: uuid
description: ID of the event where the contact was created, applicable when contact snapshot is enabled for an event.
readOnly: true
+ Contact:
+ title: Contact
+ description: Represents a contact and their related information.
+ type: object
+ allOf:
+ - $ref: '#/components/schemas/Audit'
+ properties:
+ firstName:
+ type: string
+ description: The first name of the contact.
+ maxLength: 30
+ example: Henry
+ lastName:
+ type: string
+ description: The last name of the contact.
+ maxLength: 50
+ example: Potterfield
+ middleName:
+ type: string
+ description: The middle name of the contact.
+ maxLength: 30
+ example: A
+ nickname:
+ type: string
+ description: The nickname of the contact.
+ maxLength: 30
+ example: Harry
+ email:
+ type: string
+ format: email
+ description: The email address of the contact.
+ minLength: 6
+ maxLength: 80
+ example: h.potterfield@test.com
+ ccEmail:
+ type: string
+ format: email
+ description: An alternate email address of the contact that can be cc'd on email communications.
+ minLength: 6
+ maxLength: 80
+ example: h.porter@tesing.com
+ gender:
+ $ref: '#/components/schemas/Gender'
+ company:
+ type: string
+ description: The company/organization the contact belongs to.
+ maxLength: 100
+ example: Cvent Inc.
+ designation:
+ type: string
+ description: The designation of the contact, typically an award or credential.
+ maxLength: 30
+ example: CPA
+ title:
+ type: string
+ description: The job title of the contact.
+ maxLength: 100
+ example: Event Planner
+ type:
+ $ref: '#/components/schemas/AttendeeContactType'
+ membership:
+ $ref: '#/components/schemas/ContactMembership'
+ primaryAddressType:
+ $ref: '#/components/schemas/AddressType'
+ homeAddress:
+ $ref: '#/components/schemas/Address'
+ homePhone:
+ type: string
+ description: The phone number of the contact at their place of residence.
+ maxLength: 30
+ example: 555-555-5555
+ homeFax:
+ type: string
+ description: The fax number of the contact at their place of residence.
+ maxLength: 30
+ example: 555-555-5555
+ workAddress:
+ $ref: '#/components/schemas/Address'
+ workPhone:
+ type: string
+ description: The phone number of the contact at their place of work.
+ maxLength: 30
+ example: 555-555-5555
+ workFax:
+ type: string
+ description: The fax number of the contact at their place of work.
+ maxLength: 30
+ example: 555-555-5555
+ customFields:
+ type: array
+ items:
+ $ref: '#/components/schemas/custom-field'
+ description: Collection of custom fields.
+ readOnly: true
+ sourceId:
+ description: '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 as part of the ID.'
+ type: string
+ maxLength: 50
+ example: system-a-00000000-0000-0000-0000-000000000000
+ mobilePhone:
+ type: string
+ description: The contact's mobile phone number.
+ maxLength: 30
+ example: 555-555-5555
+ compliance:
+ type: array
+ items:
+ $ref: '#/components/schemas/Compliance'
+ description: Detail related to compliance with the contact's privacy rights under various legislation.
+ readOnly: true
+ prefix:
+ type: string
+ description: Denotes what is traditionally a title of an individual.
+ maxLength: 30
+ example: Mr.
+ pager:
+ type: string
+ description: The pager number of the contact.
+ maxLength: 30
+ example: 555-555-5555
+ deleted:
+ type: boolean
+ description: True indicates a contact is deleted. Deleted contacts still have their data retained, but the contact is inactive.
+ default: false
+ example: false
+ readOnly: true
+ purged:
+ type: boolean
+ description: True indicates a contact is purged. Purged contacts have only partial data retained, and will be permanently deleted in 30 days.
+ default: false
+ example: false
+ readOnly: true
+ optOut:
+ $ref: '#/components/schemas/ContactOptOut'
+ npi:
+ type: string
+ description: Unique 10-digit identification number issued by the Centers for Medicare and Medicaid Services for health care providers in the United States.
+ minLength: 10
+ maxLength: 10
+ example: '5555555555'
+ _links:
+ $ref: '#/components/schemas/ContactLinks'
+ dateOfBirth:
+ type: string
+ format: date
+ description: |-
+ The date of birth of the contact.
+
+ Reading and writing of this field require the `event/contacts:read-sensitive` and `event/contacts:write-sensitive` scopes respectively.
+ example: '1990-01-01'
+ passportNumber:
+ type: string
+ description: |-
+ The passport number of the contact.
+
+ Reading and writing of this field require the `event/contacts:read-sensitive` and `event/contacts:write-sensitive` scopes respectively. This field has been deprecated. Instead, use the passport.number field.
+ example: '123456789'
+ maxLength: 100
+ deprecated: true
+ passport:
+ $ref: '#/components/schemas/Passport'
+ socialSecurityNumber:
+ type: string
+ description: |-
+ The social security number of the contact.
+
+ Reading and writing of this field require the `event/contacts:read-sensitive` and `event/contacts:write-sensitive` scopes respectively.
+ example: 123-45-6789
+ maxLength: 11
+ nationalIdentificationNumber:
+ type: string
+ example: '123456789'
+ description: |-
+ The national identification number of the contact.
+
+ Reading and writing of this field require the `event/contacts:read-sensitive` and `event/contacts:write-sensitive` scopes respectively.
+ maxLength: 25
+ headline:
+ type: string
+ description: The headline of the contact's profile, which summarizes their professional experience and qualities.
+ example: Marketing Director Crafting Memorable Campaigns that Engage Audiences and Elevate Brands
+ maxLength: 2500
+ personalWebsite:
+ type: string
+ description: A contact's personal website URL.
+ format: uri
+ example: https://www.example.com
+ maxLength: 2500
+ biography:
+ type: string
+ description: A contact's biographical writeup.
+ example: I am a marketing professional with experience in event planning and brand strategy.
+ maxLength: 2500
+ pronouns:
+ type: string
+ description: Represents the preferred pronouns of a contact.
+ example: he/him/she/her/they/them
+ maxLength: 50
+ Contact-1:
+ title: Contact
+ description: Contact details of planner.
+ type: object
+ required:
+ - firstName
+ - lastName
+ - email
+ - phone
+ - organizationName
+ properties:
+ firstName:
+ type: string
+ maxLength: 50
+ description: The first name of the planner.
+ example: James
+ lastName:
+ type: string
+ maxLength: 50
+ description: The last name of the planner.
+ example: West
+ email:
+ type: string
+ format: email
+ maxLength: 80
+ description: Email address of the planner.
+ example: jwest@example.com
+ address:
+ $ref: '#/components/schemas/Address-1'
+ commissionRate:
+ type: number
+ description: Rate of commission chargeable by the planner. Precision up to 2 decimal places is accepted.
+ minimum: 0
+ maximum: 100
+ example: 10.75
+ commissionable:
+ type: boolean
+ description: True indicates commission is to be charged from supplier.
+ phone:
+ type: string
+ description: Phone number of the planner.
+ maxLength: 30
+ example: 555-555-5555
+ organizationName:
+ type: string
+ maxLength: 100
+ description: Name of the organization.
+ example: Five Star Planners Inc.
+ thirdPartyPlanner:
+ type: boolean
+ description: True indicates planner is a third party planner.
+ preferredContactMethods:
+ type: array
+ description: List of preferred contact methods for the planner.
+ minItems: 1
+ maxItems: 5
+ items:
+ $ref: '#/components/schemas/ContactMethods'
+ example:
+ - CVENT
contact-bulk-create:
type: array
items:
- $ref: '#/components/schemas/contact-create-request.json'
- contact-bulk-item.json:
- title: ContactBulkResponseItem
- description: This entity is used to represent a single item that is returned as part of a Bulk request call.
- allOf:
- - $ref: '#/components/schemas/custom-field-bulk-item.json/allOf/0'
- properties:
- data:
- anyOf:
- - $ref: '#/components/schemas/contact-update/allOf/0'
- - $ref: '#/components/schemas/error-response'
+ $ref: '#/components/schemas/ContactCreate'
contact-bulk-patch:
type: array
items:
@@ -29885,7 +30044,7 @@ components:
description: List of contacts to create or update.
type: array
items:
- $ref: '#/components/schemas/contact-bulk-item.json'
+ $ref: '#/components/schemas/ContactBulkResponseItem'
contact-bulk-update:
type: array
items:
@@ -29916,31 +30075,6 @@ components:
minLength: 6
maxLength: 80
example: h.potterfield@test.com
- contact-create-request.json:
- title: ContactCreate
- description: This entity is used to represent a single item that is posted for a contact create
- allOf:
- - title: CreateContact
- description: Represents a contact to be created.
- type: object
- allOf:
- - $ref: '#/components/schemas/contact/allOf/0'
- properties:
- parentId:
- deprecated: true
- type: string
- format: uuid
- description: ID of the parent contact, applicable with contact snapshot. This field has been deprecated. If the event has contact snapshot enabled, snapshot will be automatically created through the Add attendees API.
- event:
- deprecated: true
- description: Event ID
- type: object
- properties:
- id:
- deprecated: true
- type: string
- format: uuid
- description: ID of the event where the contact was created, applicable when contact snapshot is enabled for an event. This field has been deprecated. If the event has contact snapshot enabled, snapshot will be automatically created through the Add attendees API.
contact-field.json:
title: Contact Field
description: Contains contact data. For example, a User's email address.
@@ -30021,32 +30155,7 @@ components:
- name
description: A group of contacts.
allOf:
- - title: Audit
- description: Audit information
- type: object
- properties:
- created:
- type: string
- format: date-time
- description: The ISO 8601 zoned date time when this record was created.
- readOnly: true
- example: '2017-01-02T02:00:00Z'
- createdBy:
- type: string
- description: The identifier of the user that created this record.
- readOnly: true
- example: hporter
- lastModified:
- type: string
- format: date-time
- description: The ISO 8601 zoned date time when this record was updated.
- readOnly: true
- example: '2019-02-12T03:00:00Z'
- lastModifiedBy:
- type: string
- description: The identifier of the user that last updated this record.
- readOnly: true
- example: hporter
+ - $ref: '#/components/schemas/Audit'
type: object
properties:
id:
@@ -30068,14 +30177,14 @@ components:
description: Full description of the contact group.
example: long description
type:
- $ref: '#/components/schemas/contact-group-type.json'
+ $ref: '#/components/schemas/ContactGroupType'
note:
deprecated: true
type: string
description: Moved to internalNote in the DistributionListInfo object. The note field only applies to Distribution List.
example: Sample internal note
distributionListInfo:
- $ref: '#/components/schemas/distribution-list-info.json'
+ $ref: '#/components/schemas/DistributionListInfo'
contact-group-paginated-response:
title: ContactGroupPaginatedResponse
description: The response from a request to get the list of contact groups. This includes the paging object as well as the collection of contact-groups.
@@ -30085,62 +30194,24 @@ components:
type: object
properties:
paging:
- $ref: '#/components/schemas/paging.json'
+ $ref: '#/components/schemas/Paging'
data:
type: array
items:
$ref: '#/components/schemas/contact-group'
description: Collection of contact groups.
- contact-group-type.json:
- title: ContactGroupType
- enum:
- - BLACKLIST
- - DISTRIBUTION_LIST
- - STANDARD
- type: string
- description: Type of contact group. `BLACKLIST` are contacts that are not allowed to register for your events. `DISTRIBUTION_LIST` is a group of contacts you plan to send eMarketing emails to. `STANDARD` is a multi-purpose group for organizing contacts.
- example: STANDARD
- default: STANDARD
contact-history-paginated-response:
title: ContactHistoryPaginatedResponse
description: The response of a request to get the change history for a specific contact.
type: object
properties:
paging:
- $ref: '#/components/schemas/paging.json'
+ $ref: '#/components/schemas/Paging'
data:
description: Collection of change histories for a specific contact.
type: array
items:
- $ref: '#/components/schemas/contact-history.json'
- contact-history.json:
- title: ContactHistory
- description: A single instance of change for a specific contact in the contact's change history.
- type: object
- properties:
- updatedFieldName:
- description: The name of a field that was changed and tracked by this single instance of change in contact change history.
- type: string
- example: Last Name
- oldValue:
- description: The old value of a field that was changed.
- type: string
- example: Wilson
- newValue:
- description: The new value of a field that was changed.
- type: string
- example: James
- updatedThroughName:
- $ref: '#/components/schemas/updated-through-name-property.json'
- updatedDate:
- description: The ISO 8601 formatted date-time when the associated contact, of this single instance of change in contact change history, was updated.
- type: string
- format: date-time
- example: '2023-08-03T14:51:00.777Z'
- updatedBy:
- description: The name of a person who updated a contact that is associated with this single instance of change in contact change history.
- type: string
- example: John Doe
+ $ref: '#/components/schemas/ContactHistory'
contact-id-paginated-response:
title: ContactIdPaginatedResponse
description: The response from a request to get the ids of contacts in a contact group or relationship. This includes the paging object as well as the collection of contact ids.
@@ -30150,23 +30221,12 @@ components:
type: object
properties:
paging:
- $ref: '#/components/schemas/paging.json'
+ $ref: '#/components/schemas/Paging'
data:
type: array
items:
- $ref: '#/components/schemas/id.json'
+ $ref: '#/components/schemas/IdOnlyEntity'
description: Collection of contact ids.
- contact-id.json:
- title: ContactId
- description: A contact id.
- required:
- - id
- type: object
- properties:
- id:
- type: string
- format: uuid
- description: The ID of the contact.
contact-information.json:
title: ContactInformation
description: Primary contact details associated with the entity.
@@ -30210,29 +30270,6 @@ components:
maxLength: 1000
description: Any additional contact-related notes or instructions.
example: Available only during business hours (9 AM – 6 PM IST).
- contact-links.json:
- title: ContactLinks
- type: object
- description: Collection of social media links for the contact.
- properties:
- twitterUrl:
- $ref: '#/components/schemas/link.json'
- facebookUrl:
- $ref: '#/components/schemas/link.json'
- linkedInUrl:
- $ref: '#/components/schemas/link.json'
- profilePicture:
- type: object
- description: Reference to a profile picture.
- title: Link
- required:
- - href
- readOnly: true
- properties:
- href:
- type: string
- description: The url of the contact's profile picture
- example: https://cvent.com/picture123
contact-merge:
title: ContactMergeRequest
description: This entity represents a request to merge one or two contacts with another 'main' contact.
@@ -30253,12 +30290,12 @@ components:
events:
type: array
items:
- $ref: '#/components/schemas/event-contact-id.json'
+ $ref: '#/components/schemas/EventContactId'
description: For each event (designated by event id), choose a contact id whose linked attendee will be associated with the resulting merged contact. Use whenever at least two contacts exist as attendees in a single event.
surveys:
type: array
items:
- $ref: '#/components/schemas/survey-contact-id.json'
+ $ref: '#/components/schemas/SurveyContactId'
description: For each survey (designated by survey id), choose a contact id whose linked respondent will be associated with the resulting merged contact. Use whenever at least two contacts exist as respondents in a single survey.
relatedContacts:
type: string
@@ -30267,71 +30304,22 @@ components:
contactFields:
type: array
items:
- $ref: '#/components/schemas/contact-merge-field.json'
+ $ref: '#/components/schemas/ContactMergeField'
description: Specify which contact to use values from for any contact field.
- contact-merge-field.json:
- title: ContactMergeField
- description: A pair of a contact field name and a contact id.
- required:
- - fieldName
- - contactId
- type: object
- properties:
- fieldName:
- type: string
- example: firstName
- description: The name of a contact field.
- contactId:
- type: string
- format: uuid
- description: ID of the contact.
- example: a45a3341-d30f-4bd9-bfd8-fbcdae37f0f2
- contact-methods.json:
- title: ContactMethods
- description: Medium for contacting the person.
- type: string
- enum:
- - CVENT
- - EMAIL
- - FAX
- - MOBILE
- - PHONE
contact-obfuscation-status:
title: ContactObfuscationStatus
description: Model representing an obfuscation status of a contact.
type: object
properties:
status:
- $ref: '#/components/schemas/contact-obfuscation-status-type.json'
+ $ref: '#/components/schemas/ContactObfuscationStatusType'
obfuscateId:
type: string
format: uuid
description: The obfuscation job identifier.
readOnly: true
contact:
- $ref: '#/components/schemas/contact-id.json'
- contact-obfuscation-status-type.json:
- title: ContactObfuscationStatusType
- enum:
- - INITIATED
- - QUEUED
- - PROCESSING
- - COMPLETED
- - FAILED
- type: string
- description: |-
- Status of the request to obfuscate a contact.
-
- INITIATED - The obfuscation request has been received.
-
- QUEUED - The obfuscation request is currently waiting in the queue to be executed.
-
- PROCESSING - The obfuscation request is currently being processed.
-
- COMPLETED - The obfuscation request is complete.
-
- FAILED - The obfuscation request failed due to an error.
- example: INITIATED
+ $ref: '#/components/schemas/ContactId'
contact-paginated-response:
title: ContactPaginatedResponse
description: The response from a request to get the list of contacts. This includes the paging object as well as the collection of contacts.
@@ -30341,11 +30329,11 @@ components:
type: object
properties:
paging:
- $ref: '#/components/schemas/paging.json'
+ $ref: '#/components/schemas/Paging'
data:
type: array
items:
- $ref: '#/components/schemas/contact-update/allOf/0'
+ $ref: '#/components/schemas/contact'
description: Collection of contacts.
contact-patch:
title: ContactPatch
@@ -30353,7 +30341,7 @@ components:
required:
- id
allOf:
- - $ref: '#/components/schemas/contact-update/allOf/0'
+ - $ref: '#/components/schemas/contact'
- properties:
company: {}
title: {}
@@ -30405,48 +30393,13 @@ components:
type: object
properties:
paging:
- $ref: '#/components/schemas/paging.json'
+ $ref: '#/components/schemas/Paging'
data:
type: array
items:
- $ref: '#/components/schemas/contact-type.json'
+ $ref: '#/components/schemas/ContactType'
description: Collection of contact types.
contact-type.json:
- title: ContactType
- description: This entity represents a contact type at contact level.
- required:
- - id
- - code
- - name
- type: object
- properties:
- id:
- type: string
- format: uuid
- description: The ID of the contact type.
- readOnly: true
- code:
- type: string
- description: The contact type code. Must be unique in the account.
- readOnly: true
- maxLength: 30
- example: VIP
- name:
- type: string
- description: Name of the contact type.
- maxLength: 50
- example: VIP Attendee
- description:
- type: string
- description: Description of the contact type.
- maxLength: 2500
- example: Very important attendee.
- active:
- type: boolean
- description: Indicates whether the contact type is active.
- example: true
- readOnly: true
- contact-type.json1:
type: string
title: ContactType
description: The contact types used for the proposal.
@@ -30460,97 +30413,14 @@ components:
required:
- id
allOf:
- - title: ExistingContact
- description: Represents a contact that has been created and has an id.
- type: object
- allOf:
- - $ref: '#/components/schemas/contact/allOf/0'
- properties:
- id:
- type: string
- format: uuid
- description: The ID of the contact.
- parentId:
- type: string
- format: uuid
- description: ID of the parent contact, applicable with contact snapshot.
- readOnly: true
- event:
- description: Event ID
- type: object
- properties:
- id:
- type: string
- format: uuid
- description: ID of the event where the contact was created, applicable when contact snapshot is enabled for an event.
- readOnly: true
- contact.json-0:
- title: Contact
- description: Contact details of planner.
- type: object
- required:
- - firstName
- - lastName
- - email
- - phone
- - organizationName
- properties:
- firstName:
- type: string
- maxLength: 50
- description: The first name of the planner.
- example: James
- lastName:
- type: string
- maxLength: 50
- description: The last name of the planner.
- example: West
- email:
- type: string
- format: email
- maxLength: 80
- description: Email address of the planner.
- example: jwest@example.com
- address:
- $ref: '#/components/schemas/address.json-0'
- commissionRate:
- type: number
- description: Rate of commission chargeable by the planner. Precision up to 2 decimal places is accepted.
- minimum: 0
- maximum: 100
- example: 10.75
- commissionable:
- type: boolean
- description: True indicates commission is to be charged from supplier.
- phone:
- type: string
- description: Phone number of the planner.
- maxLength: 30
- example: 555-555-5555
- organizationName:
- type: string
- maxLength: 100
- description: Name of the organization.
- example: Five Star Planners Inc.
- thirdPartyPlanner:
- type: boolean
- description: True indicates planner is a third party planner.
- preferredContactMethods:
- type: array
- description: List of preferred contact methods for the planner.
- minItems: 1
- maxItems: 5
- items:
- $ref: '#/components/schemas/contact-methods.json'
- example:
- - CVENT
- contact.json1:
+ - $ref: '#/components/schemas/contact'
+ contact.json:
title: Contact
description: The contact details.
type: object
properties:
contactType:
- $ref: '#/components/schemas/contact-type.json1'
+ $ref: '#/components/schemas/contact-type.json'
firstName:
type: string
maxLength: 50
@@ -30637,7 +30507,7 @@ components:
maxLength: 255
description: Additional notes of the contact.
example: Available between 8am - 5pm.
- contact.json2:
+ Contact2:
title: Contact
type: object
description: The contact details who watched a video
@@ -30647,6 +30517,70 @@ components:
format: uuid
description: The unique ID of the contact who watched a video.
example: 123e4567-e89b-12d3-a456-426614174000
+ ContactBulkResponseItem:
+ title: ContactBulkResponseItem
+ description: This entity is used to represent a single item that is returned as part of a Bulk request call.
+ allOf:
+ - $ref: '#/components/schemas/BulkResponseItem'
+ properties:
+ data:
+ anyOf:
+ - $ref: '#/components/schemas/contact'
+ - $ref: '#/components/schemas/ErrorResponse'
+ ContactCreate:
+ title: ContactCreate
+ description: This entity is used to represent a single item that is posted for a contact create
+ allOf:
+ - $ref: '#/components/schemas/CreateContact'
+ ContactGroupType:
+ title: ContactGroupType
+ enum:
+ - BLACKLIST
+ - DISTRIBUTION_LIST
+ - STANDARD
+ type: string
+ description: Type of contact group. `BLACKLIST` are contacts that are not allowed to register for your events. `DISTRIBUTION_LIST` is a group of contacts you plan to send eMarketing emails to. `STANDARD` is a multi-purpose group for organizing contacts.
+ example: STANDARD
+ default: STANDARD
+ ContactHistory:
+ title: ContactHistory
+ description: A single instance of change for a specific contact in the contact's change history.
+ type: object
+ properties:
+ updatedFieldName:
+ description: The name of a field that was changed and tracked by this single instance of change in contact change history.
+ type: string
+ example: Last Name
+ oldValue:
+ description: The old value of a field that was changed.
+ type: string
+ example: Wilson
+ newValue:
+ description: The new value of a field that was changed.
+ type: string
+ example: James
+ updatedThroughName:
+ $ref: '#/components/schemas/UpdatedThroughNameProperty'
+ updatedDate:
+ description: The ISO 8601 formatted date-time when the associated contact, of this single instance of change in contact change history, was updated.
+ type: string
+ format: date-time
+ example: '2023-08-03T14:51:00.777Z'
+ updatedBy:
+ description: The name of a person who updated a contact that is associated with this single instance of change in contact change history.
+ type: string
+ example: John Doe
+ ContactId:
+ title: ContactId
+ description: A contact id.
+ required:
+ - id
+ type: object
+ properties:
+ id:
+ type: string
+ format: uuid
+ description: The ID of the contact.
ContactLinks:
title: ContactLinks
type: object
@@ -30683,6 +30617,152 @@ components:
$ref: '#/components/schemas/Link'
instagramUrl:
$ref: '#/components/schemas/Link'
+ ContactMembership:
+ title: ContactMembership
+ description: Contact Membership information
+ type: object
+ readOnly: true
+ properties:
+ type:
+ type: string
+ description: The type of membership the contact has signed up for.
+ maxLength: 300
+ example: Corporate Sponsor
+ plan:
+ type: string
+ description: Describes the specific plan the contact has signed up for.
+ maxLength: 300
+ example: Gold Level
+ joined:
+ type: string
+ format: date
+ description: The ISO-8601 formatted date the contact began their membership.
+ readOnly: true
+ example: '2017-02-10'
+ expiration:
+ type: string
+ format: date
+ description: The ISO-8601 formatted date the contact's membership will expire.
+ readOnly: true
+ example: '2020-02-09'
+ lastRenewal:
+ type: string
+ format: date
+ description: The ISO-8601 formatted date the contact last renewed their membership.
+ readOnly: true
+ example: '2019-02-08'
+ amountDue:
+ type: number
+ description: The amount currently due for this membership.
+ readOnly: true
+ minimum: 0
+ example: 50.5
+ listInDirectory:
+ type: boolean
+ description: Indicates if the member details should be included in the member directory.
+ example: false
+ ContactMergeField:
+ title: ContactMergeField
+ description: A pair of a contact field name and a contact id.
+ required:
+ - fieldName
+ - contactId
+ type: object
+ properties:
+ fieldName:
+ type: string
+ example: firstName
+ description: The name of a contact field.
+ contactId:
+ type: string
+ format: uuid
+ description: ID of the contact.
+ example: a45a3341-d30f-4bd9-bfd8-fbcdae37f0f2
+ ContactMethods:
+ title: ContactMethods
+ description: Medium for contacting the person.
+ type: string
+ enum:
+ - CVENT
+ - EMAIL
+ - FAX
+ - MOBILE
+ - PHONE
+ ContactObfuscationStatusType:
+ title: ContactObfuscationStatusType
+ enum:
+ - INITIATED
+ - QUEUED
+ - PROCESSING
+ - COMPLETED
+ - FAILED
+ type: string
+ description: |-
+ Status of the request to obfuscate a contact.
+
+ INITIATED - The obfuscation request has been received.
+
+ QUEUED - The obfuscation request is currently waiting in the queue to be executed.
+
+ PROCESSING - The obfuscation request is currently being processed.
+
+ COMPLETED - The obfuscation request is complete.
+
+ FAILED - The obfuscation request failed due to an error.
+ example: INITIATED
+ ContactOptOut:
+ title: ContactOptOut
+ description: Details of an opt-out for a Contact.
+ type: object
+ properties:
+ optedOut:
+ type: boolean
+ default: false
+ description: Used to denote if a contact has opted-out of receiving system generated emails.
+ example: false
+ date:
+ type: string
+ format: date-time
+ description: The ISO 8601 zoned date time when this contact was opted-out. This value can change if the contact opts out multiple times.
+ readOnly: true
+ example: '2019-02-12T03:00:00Z'
+ by:
+ $ref: '#/components/schemas/OptoutBy'
+ ContactType:
+ title: ContactType
+ description: This entity represents a contact type at contact level.
+ required:
+ - id
+ - code
+ - name
+ type: object
+ properties:
+ id:
+ type: string
+ format: uuid
+ description: The ID of the contact type.
+ readOnly: true
+ code:
+ type: string
+ description: The contact type code. Must be unique in the account.
+ readOnly: true
+ maxLength: 30
+ example: VIP
+ name:
+ type: string
+ description: Name of the contact type.
+ maxLength: 50
+ example: VIP Attendee
+ description:
+ type: string
+ description: Description of the contact type.
+ maxLength: 2500
+ example: Very important attendee.
+ active:
+ type: boolean
+ description: Indicates whether the contact type is active.
+ example: true
+ readOnly: true
country-code.json:
title: Country Code
type: string
@@ -31129,6 +31209,28 @@ components:
mapping:
DISCOUNT_CODE: '#/components/schemas/CreateUpdateDiscountCodeResponse'
VOLUME_DISCOUNT: '#/components/schemas/ExistingVolumeDiscount'
+ CreateContact:
+ title: CreateContact
+ description: Represents a contact to be created.
+ type: object
+ allOf:
+ - $ref: '#/components/schemas/Contact'
+ properties:
+ parentId:
+ deprecated: true
+ type: string
+ format: uuid
+ description: ID of the parent contact, applicable with contact snapshot. This field has been deprecated. If the event has contact snapshot enabled, snapshot will be automatically created through the Add attendees API.
+ event:
+ deprecated: true
+ description: Event ID
+ type: object
+ properties:
+ id:
+ deprecated: true
+ type: string
+ format: uuid
+ description: ID of the event where the contact was created, applicable when contact snapshot is enabled for an event. This field has been deprecated. If the event has contact snapshot enabled, snapshot will be automatically created through the Add attendees API.
CreateUpdateDiscountCode:
title: Create Update Discount Code
description: Representation of a discount code to be created or updated.
@@ -31506,6 +31608,11 @@ components:
example: USD
default: USD
currency.json1:
+ description: ISO 4217 currency code.
+ title: Currency
+ type: string
+ example: USD
+ currency.json2:
title: Currency
type: string
description: The ISO 4217 standard format currency code used for RFPs.
@@ -31677,123 +31784,20 @@ components:
- SCR
- ZMW
- ZWL
- currency.json2:
- description: ISO 4217 currency code.
- title: Currency
- type: string
- example: USD
custom-field:
title: CustomField
description: A Custom Field
type: object
allOf:
- - title: CustomFieldBase
- description: Base schema for Custom Field - allows type to be customized by extending schemas
- required:
- - id
- - value
- type: object
- properties:
- id:
- type: string
- description: The unique ID representing this custom field.
- format: uuid
- name:
- type: string
- description: The actual text of the custom field.
- example: What is your favorite color?
- readOnly: true
- value:
- type: array
- uniqueItems: true
- items:
- type: string
- description: A question answer value
- maxLength: 16000
- description: The set of answers or possible answers to a question.
- example:
- - Choice C
- - Choice A
- order:
- type: integer
- description: The order of this question in the bigger list of questions.
- example: 1
- readOnly: true
+ - $ref: '#/components/schemas/CustomFieldBase'
properties:
type:
description: The type of data collected by a custom field.
type: string
allOf:
- - title: CustomFieldType
- enum:
- - AutoIncrement
- - ConsentQuestion
- - Currency
- - Decimal
- - Date
- - DateTime
- - Email
- - FileUpload
- - FreeText
- - General
- - MultiChoice
- - MultiSelect
- - Number
- - OpenEndedDateTime
- - OpenEndedText
- - SingleChoice
- - SingleSelect
- - USPhoneNumber
- - Unknown
- type: string
- description: The type of data collected by a custom field.
- example: General
+ - $ref: '#/components/schemas/CustomFieldType'
- readOnly: true
example: MultiSelect
- custom-field-bulk-item.json:
- title: CustomFieldBulkResponseItem
- description: This entity is used to represent a single item that is returned as part of a Bulk request call.
- allOf:
- - title: BulkResponseItem
- description: Represents a single item that is returned as part of a Bulk request call.
- type: object
- required:
- - status
- - data
- properties:
- data:
- type: object
- description: The data returned for a single item in the bulk request call.
- example:
- event_id: 1234
- attendee_count: 50
- additionalProperties: true
- status:
- type: integer
- description: http status code representing processing status of a single item
- example: 400
- message:
- type: string
- description: Quick description of what happened with processing
- example: Example error message.
- request:
- type: object
- description: The processed request tied to this response. This field is only sent when processing fails.
- example:
- operation: PUT
- headers:
- header1: header1Value
- header2: header2Value
- queryParams:
- param1: param1Value
- param2: param2Value
- additionalProperties: true
- additionalProperties: false
- properties:
- data:
- anyOf:
- - $ref: '#/components/schemas/custom-field'
- - $ref: '#/components/schemas/error-response'
custom-field-category.json:
title: CustomFieldCategory
enum:
@@ -31811,7 +31815,7 @@ components:
type: string
description: This is used to denote the category of a custom field.
example: Contact
- custom-field-type.json1:
+ custom-field-type.json:
title: CustomFieldType
enum:
- Open Ended Text - Date/Time
@@ -31823,7 +31827,7 @@ components:
type: string
description: This is used to denote the type of data collected by a custom field. Auto-Increment custom fields are read only.
example: Open Ended Text - One Line
- custom-field.json1:
+ custom-field.json:
title: CustomField
description: A Custom Field
required:
@@ -31885,7 +31889,7 @@ components:
description: The order of this question in the bigger list of questions.
example: 1
readOnly: true
- custom-field.json2:
+ custom-field.json1:
title: CustomField
description: A survey custom field.
required:
@@ -31933,7 +31937,7 @@ components:
example:
- Green
- Blue
- custom-field.json3:
+ custom-field.json2:
title: CustomField
description: A Custom Field
type: object
@@ -32069,7 +32073,7 @@ components:
default: true
example: true
type:
- $ref: '#/components/schemas/custom-field-type.json1'
+ $ref: '#/components/schemas/custom-field-type.json'
details:
type: object
description: Type-specific details of the custom-field.
@@ -32134,7 +32138,7 @@ components:
choices:
type: array
items:
- $ref: '#/components/schemas/choice.json3'
+ $ref: '#/components/schemas/choice.json2'
description: Choices of custom fields.
displayType:
$ref: '#/components/schemas/choices-display-type.json'
@@ -32223,28 +32227,6 @@ components:
description: Custom field 6.
type: string
example: CustomField6
- custom-question-answer.json-0:
- title: Travel Proposal Custom Question
- description: Represents custom question associated with a travel proposal.
- type: object
- properties:
- question:
- title: Question
- description: Travel account that the proposal is responding to.
- type: object
- properties:
- id:
- title: Question ID
- description: The unique ID of the question.
- type: string
- format: uuid
- example: 565ceabb-786a-4a6d-8c85-e2fccc867e88
- answer:
- title: Answer
- description: Hotel's answer to the program's custom question.
- type: string
- maxLength: 4000
- example: No.
Customer:
title: Customer
description: The definition of a Cvent Customer. This is an independent contractual business unit underneath an Organization. The contractual agreements between different Customers underneath the same Organization can differ. A Customer may associate to 0 to many Cvent Core Accounts.
@@ -32409,6 +32391,38 @@ components:
- $ref: '#/components/schemas/CustomFieldType'
- readOnly: true
example: MultiSelect
+ CustomFieldAnswers:
+ title: RfpCustomField
+ description: This object contains RFP custom fields attributes only.
+ type: object
+ properties:
+ customField:
+ title: ExpandableCustomObject
+ properties:
+ id:
+ type: string
+ format: uuid
+ description: Unique identifier for custom field.
+ example: 50dc08af-24a9-4d01-84be-3d43133dc945
+ type: object
+ readOnly: true
+ description: |-
+ An object containing custom field data. By default, contains only the field ID.
+
+ This is an **expandable** object. When requested via the `expand` query parameter with value `customField`, this object expands to include all properties of a custom field definition.
+
+ See the `expand` parameter documentation and refer to the [Get Custom Field](#tag/Custom-Fields/operation/getCustomField) API for the complete expanded schema.
+ answers:
+ type: array
+ description: List of answers for the RFP custom field.
+ maxItems: 100
+ items:
+ type: string
+ description: Answer String
+ example: Choice 1
+ required:
+ - customField
+ - answers
CustomFieldBase:
title: CustomFieldBase
description: Base schema for Custom Field - allows type to be customized by extending schemas
@@ -32467,7 +32481,7 @@ components:
type: string
description: The type of data collected by a custom field.
example: General
- date-answer-format.json:
+ date-answer-format:
type: string
description: 'The answer format that a given date is stored in. `Date`: Answer format is stored in Date format. `DateTime`: Answer format is stored in DateTime format. `Time`: Answer format is stored in Time format.'
enum:
@@ -32475,7 +32489,38 @@ components:
- DateTime
- Time
default: DateTime
- date-pattern.json-0:
+ date-time-display-format.json:
+ title: DateTimeDisplayFormat
+ enum:
+ - DateAndTimeMonthFirst12HourTime
+ - DateAndTimeMonthFirst24HourTime
+ - DateOnlyMonthFirst
+ - DateAndTimeDayFirst12HourTime
+ - DateAndTimeDayFirst24HourTime
+ - DateOnlyDayFirst
+ type: string
+ description: This is used to denote the display format type of date time type custom field.
+ example: DateOnlyMonthFirst
+ date-type.json:
+ type: string
+ title: DateType
+ description: The date types used for the proposal, 'PREFERRED' have the highest priority. Values prefixed with 'ALTERNATE_' are decreasing in priority (e.g., ALTERNATE_1 has higher priority than 'ALTERNATE_2 and so on).
+ enum:
+ - PREFERRED
+ - ALTERNATE_1
+ - ALTERNATE_2
+ - ALTERNATE_3
+ - ALTERNATE_4
+ - ALTERNATE_5
+ - ALTERNATE_6
+ - ALTERNATE_7
+ - ALTERNATE_8
+ - ALTERNATE_9
+ - ALTERNATE_10
+ - ALTERNATE_11
+ - ALTERNATE_12
+ default: PREFERRED
+ DatePattern-1:
title: DatePattern
description: Date pattern for days on which event can occur. Used when dateMode is DATE_PATTERN.
required:
@@ -32509,15 +32554,15 @@ components:
type: array
description: Days of the week when event can start.
items:
- $ref: '#/components/schemas/day-of-week.json-0'
+ $ref: '#/components/schemas/DayOfWeek'
generatedDates:
type: array
maxItems: 200
description: List of dates generated based on the date pattern.
readOnly: true
items:
- $ref: '#/components/schemas/dates.json-0'
- date-requirements.json-0:
+ $ref: '#/components/schemas/Dates-1'
+ DateRequirements-1:
title: DateRequirements
description: Date requirements for the event.
required:
@@ -32525,52 +32570,21 @@ components:
type: object
properties:
mode:
- $ref: '#/components/schemas/rfp-date-mode.json-0'
+ $ref: '#/components/schemas/RfpDateMode'
alternateDates:
type: array
minItems: 1
maxItems: 12
description: List of dates for the event. Can be used to provide set of alternate event dates when mode is ALTERNATE_DATE.
items:
- $ref: '#/components/schemas/dates.json-0'
+ $ref: '#/components/schemas/Dates-1'
pattern:
- $ref: '#/components/schemas/date-pattern.json-0'
+ $ref: '#/components/schemas/DatePattern-1'
availabilityRangeRequired:
type: boolean
description: True indicates that the event requires a range of availability dates.
default: false
- date-time-display-format.json:
- title: DateTimeDisplayFormat
- enum:
- - DateAndTimeMonthFirst12HourTime
- - DateAndTimeMonthFirst24HourTime
- - DateOnlyMonthFirst
- - DateAndTimeDayFirst12HourTime
- - DateAndTimeDayFirst24HourTime
- - DateOnlyDayFirst
- type: string
- description: This is used to denote the display format type of date time type custom field.
- example: DateOnlyMonthFirst
- date-type.json1:
- type: string
- title: DateType
- description: The date types used for the proposal, 'PREFERRED' have the highest priority. Values prefixed with 'ALTERNATE_' are decreasing in priority (e.g., ALTERNATE_1 has higher priority than 'ALTERNATE_2 and so on).
- enum:
- - PREFERRED
- - ALTERNATE_1
- - ALTERNATE_2
- - ALTERNATE_3
- - ALTERNATE_4
- - ALTERNATE_5
- - ALTERNATE_6
- - ALTERNATE_7
- - ALTERNATE_8
- - ALTERNATE_9
- - ALTERNATE_10
- - ALTERNATE_11
- - ALTERNATE_12
- default: PREFERRED
- dates.json-0:
+ Dates-1:
title: Dates
description: Dates on which event will occur.
type: object
@@ -32600,9 +32614,9 @@ components:
maxLength: 2500
description: A note detailing the requirements for the dates.
example: Flexible dates
- day-of-week.json-0:
+ DayOfWeek:
title: DayOfWeek
- description: Day of week.
+ description: DayOfWeek
type: string
enum:
- SUNDAY
@@ -32647,15 +32661,7 @@ components:
type: string
description: The name of device used to capture lead
example: North Gate
- device-type.json:
- title: DeviceType
- description: The device used to watch the video. Videos can be viewed on desktop, mobile or tablet.
- type: string
- enum:
- - DESKTOP
- - MOBILE
- - TABLET
- device.json:
+ Device1:
title: Device
type: object
description: The device details used to watched a video. This field has been deprecated.
@@ -32667,11 +32673,19 @@ components:
maxLength: 100
example: CA1.b4c5061e36fa60ebc5aad0ccea95f900b34794ecad49e965eaa94f7c534dec83
type:
- $ref: '#/components/schemas/device-type.json'
+ $ref: '#/components/schemas/DeviceType'
operatingSystem:
type: string
description: The device's operating system.
example: Mac OS
+ DeviceType:
+ title: DeviceType
+ description: The device used to watch the video. Videos can be viewed on desktop, mobile or tablet.
+ type: string
+ enum:
+ - DESKTOP
+ - MOBILE
+ - TABLET
discount-agenda-items-paginated-response:
title: Discount Agenda Items Paginated Response
required:
@@ -32898,7 +32912,7 @@ components:
title: DisplayRate
type: number
example: 150
- display-type.json:
+ display-type:
type: string
description: 'The type of display for the field. `Bar`: It is associated with choice questions type. `DropDown`: It is associated with drop down type questions. `Horizontal`: It is associated with horizontal type questions. `List`: It is associated with list type questions. `MultiSelectBox`: It is associated with multi select box type questions. `Vertical`: It is associated with vertical type questions.'
enum:
@@ -32908,7 +32922,7 @@ components:
- List
- MultiSelectBox
- Vertical
- distance.json1:
+ distance.json:
description: Distance information.
title: Distance
type: object
@@ -32930,21 +32944,21 @@ components:
- Yards
- Blocks
example: Kilometers
- distribution-list-info.json:
+ DistributionListInfo:
title: DistributionListInfo
description: Model representing a distribution list info. Only required if the contact group type is DISTRIBUTION_LIST.
type: object
properties:
securityType:
- $ref: '#/components/schemas/distribution-list-security-type.json'
+ $ref: '#/components/schemas/DistributionListSecurityType'
internalNote:
description: Internal note for Distribution Lists.
type: string
maxLength: 300
example: Sample distribution list internal note
status:
- $ref: '#/components/schemas/distribution-list-status.json'
- distribution-list-security-type.json:
+ $ref: '#/components/schemas/DistributionListStatus'
+ DistributionListSecurityType:
title: DistributionListSecurityType
enum:
- PRIVATE
@@ -32952,7 +32966,7 @@ components:
- PUBLIC
type: string
description: Type of distribution list security. For a public list, contacts can sign up themselves. For a semi-private list, contacts can add themselves, but a planner must approve their membership before they can receive emails. For a private list, only planners can add contacts. Contacts can always remove themselves from lists on the Manage Profile page.
- distribution-list-status.json:
+ DistributionListStatus:
title: DistributionListStatus
enum:
- PENDING
@@ -32962,7 +32976,12 @@ components:
description: Type of distribution list status.
readOnly: true
example: PENDING
- document-type.json-0:
+ DocumentId:
+ title: DocumentId
+ description: The unique identifier for a document.
+ type: string
+ format: uuid
+ DocumentType-1:
type: string
title: DocumentType
readOnly: true
@@ -33001,11 +33020,6 @@ components:
- WMV
- XLS
- XLSX
- DocumentId:
- title: DocumentId
- description: The unique identifier for a document.
- type: string
- format: uuid
donation-items-paginated-response:
title: Donation Items Paginated Response
required:
@@ -33147,6 +33161,9 @@ components:
- LIVE
- ON_DEMAND
- API
+ - MANUAL
+ - IMPORT
+ - EVENTAPP
type: string
description: Describes how the duration was obtained.
example: API
@@ -33254,7 +33271,7 @@ components:
- $ref: '#/components/schemas/Audit'
properties:
event:
- $ref: '#/components/schemas/Event2'
+ $ref: '#/components/schemas/Event3'
exhibitor:
$ref: '#/components/schemas/Exhibitor'
lead:
@@ -33329,7 +33346,7 @@ components:
description: Recipient address of the email.
example: example@example.com
type:
- $ref: '#/components/schemas/email-type.json3'
+ $ref: '#/components/schemas/email-type.json1'
sent:
type: string
description: The ISO 8601 zoned date time when this email was sent.
@@ -33477,7 +33494,7 @@ components:
items:
$ref: '#/components/schemas/email-template-data.json'
description: A list of all email templates data for an unique campaign that will help the planner to select specific email and send.
- email-type.json1:
+ email-type.json:
title: Email Type
description: The type of the email.
enum:
@@ -33486,7 +33503,7 @@ components:
type: string
example: work
default: work
- email-type.json3:
+ email-type.json1:
title: EmailType
enum:
- Invitation
@@ -33564,7 +33581,7 @@ components:
- primary
properties:
type:
- $ref: '#/components/schemas/email-type.json1'
+ $ref: '#/components/schemas/email-type.json'
value:
type: string
description: The email of the user.
@@ -33588,7 +33605,7 @@ components:
format: uuid
example: a150f1ee-6c54-4b01-90e6-d701748f0851
description: The unique ID of the email to be sent.
- encoding-profile.json:
+ EncodingProfile:
title: EncodingProfile
enum:
- Planner
@@ -33642,7 +33659,7 @@ components:
items:
$ref: '#/components/schemas/error-response/allOf/0'
description: Additional details of cascading error messages.
- error-response.json17:
+ error-response.json12:
title: ErrorResponse
description: The error response.
type: object
@@ -33916,7 +33933,7 @@ components:
type: array
readOnly: true
items:
- $ref: '#/components/schemas/custom-field.json3'
+ $ref: '#/components/schemas/custom-field.json2'
description: Collection of custom fields.
category:
type: object
@@ -33941,7 +33958,7 @@ components:
maxLength: 30
example: Meet up
type:
- $ref: '#/components/schemas/event-type.json1'
+ $ref: '#/components/schemas/event-type.json'
_links:
$ref: '#/components/schemas/event-links.json'
created:
@@ -33974,6 +33991,16 @@ components:
description: The name of the user who last modified the event.
readOnly: true
example: Jane Doe
+ Event-1:
+ title: Event
+ description: Event details.
+ type: object
+ properties:
+ id:
+ type: string
+ format: uuid
+ description: Unique identifier for the event linked with the RFP, if any.
+ example: 50dc08af-24a9-4d01-84be-3d43133dc945
event-activity-details.json:
title: Event Activity Detail
description: Details for an event activity.
@@ -34140,22 +34167,6 @@ components:
items:
$ref: '#/components/schemas/event-budget-cost-detail.json'
description: The list of cost details.
- event-contact-id.json:
- title: EventContactId
- description: A pair of event and contact id.
- required:
- - eventId
- - contactId
- type: object
- properties:
- eventId:
- type: string
- format: uuid
- description: ID of the event.
- contactId:
- type: string
- format: uuid
- description: ID of the contact.
event-copy:
title: EventCopy
description: Represents directives for the event copy operation.
@@ -34291,7 +34302,7 @@ components:
type: object
properties:
paging:
- $ref: '#/components/schemas/paging.json19'
+ $ref: '#/components/schemas/paging.json2'
data:
type: array
items:
@@ -34408,14 +34419,6 @@ components:
readOnly: true
description: URL of the feature's webpage.
example: https://cvent.me/XX51b9
- event-format-type.json-0:
- title: EventFormatType
- description: Event format type.
- type: string
- enum:
- - IN_PERSON
- - HYBRID
- - VIRTUAL
event-format.json:
title: Event Format
enum:
@@ -34431,13 +34434,7 @@ components:
description: The related event object.
properties:
id:
- $ref: '#/components/schemas/EventId'
- event-id.json:
- title: EventId
- description: The unique identifier for an event.
- type: string
- format: uuid
- example: 2ef03846-fced-4ce3-a077-d64ca891a4b1
+ $ref: '#/components/schemas/EventId1'
event-id1:
title: Event ID
description: The UUID identifier for an Event.
@@ -34467,15 +34464,6 @@ components:
href: https://cvent.com
registration:
href: https://cvent.com
- event-lite.json:
- required:
- - id
- type: object
- title: EventLite
- description: The unique identifier of an event.
- properties:
- id:
- $ref: '#/components/schemas/event-id.json'
event-paginated-response:
title: EventPaginatedResponse
description: Represents a paginated collection of event objects.
@@ -34578,7 +34566,7 @@ components:
format: uuid
example: 06ca5ae2-0dc3-487b-953e-86d6abbdf7d3
type:
- $ref: '#/components/schemas/question-type.json3'
+ $ref: '#/components/schemas/question-type.json2'
internalNote:
type: string
description: Optional description to provide additional context of the question.
@@ -34726,7 +34714,7 @@ components:
description: An event survey question.
type: object
allOf:
- - $ref: '#/components/schemas/question.json2/allOf/0'
+ - $ref: '#/components/schemas/question.json1/allOf/0'
properties:
survey:
$ref: '#/components/schemas/uuid.json'
@@ -34812,7 +34800,7 @@ components:
description: Source IDs track respondents in an external system integrated with the Cvent survey.
properties:
event:
- $ref: '#/components/schemas/event.json4'
+ $ref: '#/components/schemas/event.json3'
attendee:
description: Associated attendee.
type: object
@@ -34893,7 +34881,7 @@ components:
readOnly: true
properties:
event:
- $ref: '#/components/schemas/event.json4'
+ $ref: '#/components/schemas/event.json3'
survey:
$ref: '#/components/schemas/uuid.json'
session:
@@ -34977,7 +34965,242 @@ components:
items:
$ref: '#/components/schemas/event-survey.json'
description: Collection of event surveys.
- event-type.json-0:
+ event-type.json:
+ title: EventType
+ enum:
+ - Celebration
+ - Conference
+ - CventEssentials
+ - CventWebinar
+ - Dinner
+ - Forum
+ - FundraiserBenefit
+ - Holiday
+ - IncentiveTrip
+ - Meeting
+ - OtherGeneral
+ - PoliticalEvent
+ - Reunion
+ - SaveTheDate
+ - Seminar
+ - SimpleEvent
+ - SportsEvent
+ - TradeShow
+ - TrainingSession
+ - Webinar
+ type: string
+ description: 'Type of event being created. The following event types are not supported: Cvent Webinar, Cvent Essentials.'
+ example: Conference
+ event-update:
+ title: Event Update
+ description: Represents updates to an event.
+ type: object
+ allOf:
+ - $ref: '#/components/schemas/event'
+ properties:
+ closeAfter:
+ type: string
+ format: date-time
+ description: The event will be closed for registration after this ISO 8601 formatted date and time.
+ example: '2020-02-01T23:59:00.000Z'
+ readOnly: false
+ archiveAfter:
+ type: string
+ format: date-time
+ description: The event will be archived after this ISO 8601 formatted date and time.
+ example: '2020-05-07T12:00:00.000Z'
+ readOnly: false
+ capacity:
+ type: integer
+ description: The maximum number of individuals that can attend the event. Only used for events with the registration feature.
+ example: 50
+ readOnly: false
+ event-weblink.json:
+ title: EventWeblink
+ description: Metadata for an event weblink.
+ type: object
+ properties:
+ name:
+ type: string
+ maxLength: 50
+ description: Name of the weblink, used by planners to identify the weblinks in their event.
+ example: VIP Registration
+ url:
+ type: string
+ format: uri
+ description: Short URL of the webpage.
+ example: https://cvent.me/XX51b9
+ landingPage:
+ type: string
+ description: The name of the webpage attendees will be directed to when using the weblink.
+ example: Registration
+ locale:
+ $ref: '#/components/schemas/locale.json'
+ event-weblinks-paginated-response:
+ title: EventWeblinksPaginatedResponse
+ description: Paginated collection of event weblinks.
+ required:
+ - data
+ - paging
+ type: object
+ properties:
+ paging:
+ type: object
+ allOf:
+ - properties:
+ limit:
+ description: The number of records to return on the page, not to exceed 100.
+ example: 100
+ - $ref: '#/components/schemas/paging.json'
+ data:
+ type: array
+ items:
+ $ref: '#/components/schemas/event-weblink.json'
+ description: Collection of event weblinks.
+ event.json:
+ title: Event
+ required:
+ - id
+ description: ID of the event.
+ type: object
+ properties:
+ id:
+ type: string
+ format: uuid
+ description: UUID of the event.
+ example: 103097a4-143d-11e5-9f99-d0a637ee0032
+ event.json1:
+ type: object
+ properties:
+ id:
+ type: string
+ description: Identifier of a particular Event.
+ format: uuid
+ example: 3d808ee8-94f8-4f3a-9ad1-6b23f4e4c329
+ description: Event ID Information.
+ event.json3:
+ title: Event
+ type: object
+ description: Detail object of an event which is associated to a survey.
+ properties:
+ id:
+ type: string
+ format: uuid
+ example: 9463c74e-18c6-401a-a710-ae0f485bf059
+ description: Id of the associated event
+ readOnly: true
+ event.json5:
+ title: Event
+ description: An event reference used in attendee insights to identify the event context for engagement data
+ type: object
+ required:
+ - id
+ properties:
+ id:
+ type: string
+ format: uuid
+ description: A unique identifier (UUID) for the event where the engagement score applies
+ example: 04cb6ae2-0dc3-487b-953e-86d6abbdf7d3
+ event.json6:
+ title: Event
+ description: Details of the event.
+ type: object
+ required:
+ - id
+ properties:
+ id:
+ type: string
+ format: uuid
+ example: a150f1ee-6c54-4b01-90e6-d701748f0851
+ description: The unique ID of the event.
+ Event3:
+ description: The Associated Event.
+ title: Event
+ type: object
+ required:
+ - id
+ properties:
+ id:
+ type: string
+ format: uuid
+ example: 3db28cfc-db22-11eb-8d19-0242ac130003
+ description: Event id
+ EventContactId:
+ title: EventContactId
+ description: A pair of event and contact id.
+ required:
+ - eventId
+ - contactId
+ type: object
+ properties:
+ eventId:
+ type: string
+ format: uuid
+ description: ID of the event.
+ contactId:
+ type: string
+ format: uuid
+ description: ID of the contact.
+ EventFormatType:
+ title: EventFormatType
+ description: Event format type.
+ type: string
+ enum:
+ - IN_PERSON
+ - HYBRID
+ - VIRTUAL
+ EventId:
+ title: EventId
+ description: The unique identifier for an event.
+ type: string
+ format: uuid
+ example: 2ef03846-fced-4ce3-a077-d64ca891a4b1
+ EventId1:
+ title: EventId
+ description: The unique identifier for an event
+ type: string
+ format: uuid
+ example: 78842378-5d83-11ee-8c99-0242ac120002
+ EventLite:
+ required:
+ - id
+ type: object
+ title: EventLite
+ description: The unique identifier of an event.
+ properties:
+ id:
+ $ref: '#/components/schemas/EventId'
+ EventOrganization-1:
+ title: EventOrganization
+ description: Details of organization which is hosting the event.
+ type: object
+ required:
+ - name
+ - type
+ properties:
+ organization:
+ $ref: '#/components/schemas/Organization'
+ confidentialProfile:
+ type: boolean
+ description: True indicates organization profile has to be kept confidential.
+ industry:
+ $ref: '#/components/schemas/Industry-1'
+ name:
+ type: string
+ description: Name of the organization hosting the event.
+ maxLength: 100
+ example: Cvent Inc.
+ type:
+ $ref: '#/components/schemas/OrganizationType-1'
+ address:
+ $ref: '#/components/schemas/Address-1'
+ eventsPerYear:
+ type: integer
+ description: Number of events per year.
+ minimum: 0
+ maximum: 999999
+ example: 450
+ EventType-1:
title: EventType
description: Event type.
type: string
@@ -35004,182 +35227,6 @@ components:
- TRAINING
- WEDDING
- OTHER
- event-type.json1:
- title: EventType
- enum:
- - Celebration
- - Conference
- - CventEssentials
- - CventWebinar
- - Dinner
- - Forum
- - FundraiserBenefit
- - Holiday
- - IncentiveTrip
- - Meeting
- - OtherGeneral
- - PoliticalEvent
- - Reunion
- - SaveTheDate
- - Seminar
- - SimpleEvent
- - SportsEvent
- - TradeShow
- - TrainingSession
- - Webinar
- type: string
- description: 'Type of event being created. The following event types are not supported: Cvent Webinar, Cvent Essentials.'
- example: Conference
- event-update:
- title: Event Update
- description: Represents updates to an event.
- type: object
- allOf:
- - $ref: '#/components/schemas/event'
- properties:
- closeAfter:
- type: string
- format: date-time
- description: The event will be closed for registration after this ISO 8601 formatted date and time.
- example: '2020-02-01T23:59:00.000Z'
- readOnly: false
- archiveAfter:
- type: string
- format: date-time
- description: The event will be archived after this ISO 8601 formatted date and time.
- example: '2020-05-07T12:00:00.000Z'
- readOnly: false
- capacity:
- type: integer
- description: The maximum number of individuals that can attend the event. Only used for events with the registration feature.
- example: 50
- readOnly: false
- event-weblink.json:
- title: EventWeblink
- description: Metadata for an event weblink.
- type: object
- properties:
- name:
- type: string
- maxLength: 50
- description: Name of the weblink, used by planners to identify the weblinks in their event.
- example: VIP Registration
- url:
- type: string
- format: uri
- description: Short URL of the webpage.
- example: https://cvent.me/XX51b9
- landingPage:
- type: string
- description: The name of the webpage attendees will be directed to when using the weblink.
- example: Registration
- locale:
- $ref: '#/components/schemas/locale.json'
- event-weblinks-paginated-response:
- title: EventWeblinksPaginatedResponse
- description: Paginated collection of event weblinks.
- required:
- - data
- - paging
- type: object
- properties:
- paging:
- type: object
- allOf:
- - properties:
- limit:
- description: The number of records to return on the page, not to exceed 100.
- example: 100
- - $ref: '#/components/schemas/paging.json'
- data:
- type: array
- items:
- $ref: '#/components/schemas/event-weblink.json'
- description: Collection of event weblinks.
- event.json-0:
- title: Event
- description: Event details.
- type: object
- properties:
- id:
- type: string
- format: uuid
- description: Unique identifier for the event linked with the RFP, if any.
- example: 50dc08af-24a9-4d01-84be-3d43133dc945
- event.json1:
- title: Event
- required:
- - id
- description: ID of the event.
- type: object
- properties:
- id:
- type: string
- format: uuid
- description: UUID of the event.
- example: 103097a4-143d-11e5-9f99-d0a637ee0032
- event.json2:
- type: object
- properties:
- id:
- type: string
- description: Identifier of a particular Event.
- format: uuid
- example: 3d808ee8-94f8-4f3a-9ad1-6b23f4e4c329
- description: Event ID Information.
- event.json4:
- title: Event
- type: object
- description: Detail object of an event which is associated to a survey.
- properties:
- id:
- type: string
- format: uuid
- example: 9463c74e-18c6-401a-a710-ae0f485bf059
- description: Id of the associated event
- readOnly: true
- event.json6:
- title: Event
- description: An event reference used in attendee insights to identify the event context for engagement data
- type: object
- required:
- - id
- properties:
- id:
- type: string
- format: uuid
- description: A unique identifier (UUID) for the event where the engagement score applies
- example: 04cb6ae2-0dc3-487b-953e-86d6abbdf7d3
- event.json8:
- title: Event
- description: Details of the event.
- type: object
- required:
- - id
- properties:
- id:
- type: string
- format: uuid
- example: a150f1ee-6c54-4b01-90e6-d701748f0851
- description: The unique ID of the event.
- Event2:
- description: The Associated Event.
- title: Event
- type: object
- required:
- - id
- properties:
- id:
- type: string
- format: uuid
- example: 3db28cfc-db22-11eb-8d19-0242ac130003
- description: Event id
- EventId:
- title: EventId
- description: The unique identifier for an event
- type: string
- format: uuid
- example: 78842378-5d83-11ee-8c99-0242ac120002
Exhibitor:
description: The Associated Exhibitor.
title: Exhibitor
@@ -35350,7 +35397,7 @@ components:
- $ref: '#/components/schemas/Audit'
properties:
event:
- $ref: '#/components/schemas/Event2'
+ $ref: '#/components/schemas/Event3'
name:
type: string
description: Name of the exhibitor category
@@ -35424,7 +35471,7 @@ components:
- required
properties:
event:
- $ref: '#/components/schemas/Event2'
+ $ref: '#/components/schemas/Event3'
text:
type: string
description: The actual text of the exhibitor question.
@@ -35449,9 +35496,9 @@ components:
minItems: 1
maxItems: 100
notApplicableAnswer:
- $ref: '#/components/schemas/AdditionalChoice'
+ $ref: '#/components/schemas/AdditionalChoice1'
otherAnswer:
- $ref: '#/components/schemas/AdditionalChoice'
+ $ref: '#/components/schemas/AdditionalChoice1'
answerFormat:
$ref: '#/components/schemas/exhibitor-answer-format'
answerLimits:
@@ -35502,7 +35549,7 @@ components:
- name
properties:
event:
- $ref: '#/components/schemas/Event2'
+ $ref: '#/components/schemas/Event3'
name:
type: string
description: Name of the exhibitor. Cvent suggests limiting this to a maximum of 200 characters for optimal results.
@@ -35527,7 +35574,7 @@ components:
type: string
example: Taj Mahal
address:
- $ref: '#/components/schemas/Address2'
+ $ref: '#/components/schemas/Address4'
email:
type: string
format: email
@@ -35644,7 +35691,7 @@ components:
question:
$ref: '#/components/schemas/UUID'
event:
- $ref: '#/components/schemas/Event2'
+ $ref: '#/components/schemas/Event3'
exhibitor:
$ref: '#/components/schemas/Exhibitor'
answers:
@@ -35823,37 +35870,7 @@ components:
required:
- id
allOf:
- - title: AudioTrack
- description: The audio track.
- type: object
- required:
- - video
- - type
- - language
- allOf:
- - $ref: '#/components/schemas/sync-job/allOf/0'
- properties:
- video:
- $ref: '#/components/schemas/video-asset-id.json'
- type:
- $ref: '#/components/schemas/audio-track-type.json'
- language:
- type: string
- description: IETF language tag for the audio track.
- maxLength: 35
- example: en-US
- variant:
- $ref: '#/components/schemas/audio-track-variant.json'
- default:
- description: True indicates this is the default audio track.
- type: boolean
- default: false
- duration:
- type: integer
- description: Audio track duration (in milliseconds).
- example: 3600000
- status:
- $ref: '#/components/schemas/audio-track-status.json'
+ - $ref: '#/components/schemas/audio-track'
properties:
id:
title: Audio Track ID
@@ -35863,7 +35880,7 @@ components:
description: The identifier of an audio track.
readOnly: true
url:
- $ref: '#/components/schemas/asset-location.json'
+ $ref: '#/components/schemas/AssetLocation'
existing-badge-print-job:
title: ExistingBadgePrintJob
description: Badge Print Job.
@@ -35977,7 +35994,7 @@ components:
default: true
example: true
type:
- $ref: '#/components/schemas/custom-field-type.json1'
+ $ref: '#/components/schemas/custom-field-type.json'
details:
type: object
description: Type-specific details of the custom-field.
@@ -36099,6 +36116,9 @@ components:
- LIVE
- ON_DEMAND
- API
+ - MANUAL
+ - IMPORT
+ - EVENTAPP
type: string
description: Describes how the duration was obtained.
example: API
@@ -36498,7 +36518,7 @@ components:
type: number
example: 830
currency:
- $ref: '#/components/schemas/currency.json2'
+ $ref: '#/components/schemas/currency.json1'
bookingSite:
$ref: '#/components/schemas/booking-website-link.json'
callCenter:
@@ -36688,92 +36708,7 @@ components:
description: An existing, event speaker.
type: object
allOf:
- - title: Speaker
- description: An event speaker.
- type: object
- required:
- - firstName
- - lastName
- - event
- allOf:
- - $ref: '#/components/schemas/speaker/allOf/0'
- properties:
- event:
- type: object
- properties:
- id:
- type: string
- format: uuid
- description: Event ID.
- description: The event the speaker is linked to.
- firstName:
- type: string
- description: The speaker's first name.
- maxLength: 30
- example: Barbra
- lastName:
- type: string
- description: The speaker's last name.
- maxLength: 50
- example: Smith
- code:
- type: string
- description: The unique code associated with the speaker in an event
- maxLength: 30
- example: sbarbra
- email:
- type: string
- format: email
- description: The speaker's email address
- maxLength: 80
- minLength: 6
- example: barbrasmith@cvent.com
- prefix:
- type: string
- description: Used to denote what is traditionally a title of an individual. For example, Mr., Mrs., Dr., etc.
- maxLength: 30
- example: Dr.
- designation:
- type: string
- description: The speaker's Designation
- maxLength: 30
- example: PhD
- company:
- type: string
- description: The company to which the speaker is associated
- maxLength: 100
- example: Cvent
- title:
- type: string
- description: The speaker's title
- maxLength: 100
- example: Lead Engineer
- category:
- $ref: '#/components/schemas/category-id-name.json'
- links:
- $ref: '#/components/schemas/contact-links.json'
- visibility:
- type: boolean
- description: Indicates if a given speaker should be displayed on Event Website
- default: true
- example: false
- biography:
- type: string
- description: The speaker's biography
- maxLength: 2500
- example: Presentation and Speaking voice expert, Barbara is a highly regarded coach and facilitator
- internalNote:
- type: string
- description: The Internal Note of the speaker
- maxLength: 300
- example: Barbara is multilingual
- featured:
- type: boolean
- description: Indicates if a given speaker is a featured speaker
- default: false
- example: false
- relevance:
- $ref: '#/components/schemas/relevance.json'
+ - $ref: '#/components/schemas/speaker'
properties:
id:
type: string
@@ -36803,15 +36738,7 @@ components:
description: An existing speaker category.
type: object
allOf:
- - title: SpeakerCategory
- description: A speaker category.
- type: object
- properties:
- name:
- type: string
- description: The name of the speaker category
- maxLength: 50
- example: Presenters
+ - $ref: '#/components/schemas/speaker-category'
required:
- id
properties:
@@ -36912,54 +36839,7 @@ components:
required:
- id
allOf:
- - title: Video
- description: Event video.
- type: object
- allOf:
- - $ref: '#/components/schemas/video/allOf/0'
- properties:
- type:
- $ref: '#/components/schemas/video-type.json'
- event:
- title: UUID
- required:
- - id
- type: object
- properties:
- id:
- title: UUID Property
- description: The ID of an event.
- type: string
- format: uuid
- example: 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3
- description: Event video asset was created with. This field has been deprecated. Use events instead.
- deprecated: true
- hlsInputs:
- type: array
- description: List of locations for HLS recordings that will be combined to form a new video. This field has been deprecated. Use hlsInputsWithClips instead.
- items:
- type: string
- default: []
- deprecated: true
- hlsInputsWithClips:
- type: array
- items:
- $ref: '#/components/schemas/hls-input-with-clips.json'
- description: A list of input object locations & clip information for HTTP Live Streaming (HLS) recordings. Used to trim & stitch all inputs together to form a new video.
- recording:
- title: Recording details
- description: Recording details of video to be transcoded
- required:
- - id
- type: object
- properties:
- id:
- description: Entity ID of recording.
- type: string
- format: uuid
- example: 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3
- encodingProfile:
- $ref: '#/components/schemas/encoding-profile.json'
+ - $ref: '#/components/schemas/video'
properties:
id:
title: Video ID
@@ -36968,7 +36848,7 @@ components:
format: uuid
example: 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3
url:
- $ref: '#/components/schemas/asset-location.json'
+ $ref: '#/components/schemas/AssetLocation'
size:
type: integer
format: int64
@@ -36980,21 +36860,21 @@ components:
description: Sessions associated with the video asset.
type: array
items:
- $ref: '#/components/schemas/uuid-property'
+ $ref: '#/components/schemas/UUIDProperty'
maxItems: 50
readOnly: true
exhibitors:
description: Exhibitors associated with the video asset.
type: array
items:
- $ref: '#/components/schemas/uuid-property'
+ $ref: '#/components/schemas/UUIDProperty'
maxItems: 50
readOnly: true
speakers:
description: Speakers associated with the video asset.
type: array
items:
- $ref: '#/components/schemas/uuid-property'
+ $ref: '#/components/schemas/UUIDProperty'
maxItems: 50
readOnly: true
uploadStarted:
@@ -37019,72 +36899,12 @@ components:
description: Response schema for GET/List endpoints, extending ExistingVideo and adding errors/warnings.
type: object
allOf:
- - title: ExistingVideo
- description: Existing event video.
- type: object
- required:
- - id
- allOf:
- - $ref: '#/components/schemas/existing-video/allOf/0'
- properties:
- id:
- title: Video ID
- description: The identifier of a video.
- type: string
- format: uuid
- example: 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3
- url:
- $ref: '#/components/schemas/asset-location.json'
- size:
- type: integer
- format: int64
- maximum: 10737418240
- description: File size in bytes for the video asset.
- example: 32768
- readOnly: true
- sessions:
- description: Sessions associated with the video asset.
- type: array
- items:
- $ref: '#/components/schemas/uuid-property'
- maxItems: 50
- readOnly: true
- exhibitors:
- description: Exhibitors associated with the video asset.
- type: array
- items:
- $ref: '#/components/schemas/uuid-property'
- maxItems: 50
- readOnly: true
- speakers:
- description: Speakers associated with the video asset.
- type: array
- items:
- $ref: '#/components/schemas/uuid-property'
- maxItems: 50
- readOnly: true
- uploadStarted:
- type: string
- format: date-time
- description: The ISO 8601 zoned date time when the upload started.
- example: '2024-01-05T15:30:00Z'
- readOnly: true
- uploadCompleted:
- type: string
- format: date-time
- description: The ISO 8601 zoned date time when the uploaded ended.
- example: '2024-01-05T15:35:00Z'
- readOnly: true
- parent:
- type: string
- format: uuid
- description: The ID of the video this was created from.
- readOnly: true
+ - $ref: '#/components/schemas/existing-video'
properties:
errors:
- $ref: '#/components/schemas/video-errors.json'
+ $ref: '#/components/schemas/VideoErrors'
warnings:
- $ref: '#/components/schemas/video-warnings.json'
+ $ref: '#/components/schemas/VideoWarnings'
existing-video-text-track:
title: ExistingVideoTextTrack
description: An existing video text track.
@@ -37093,43 +36913,7 @@ components:
- id
- status
allOf:
- - title: VideoTextTrack
- description: Video text track
- type: object
- required:
- - language
- - kind
- allOf:
- - $ref: '#/components/schemas/sync-job/allOf/0'
- properties:
- video:
- $ref: '#/components/schemas/video-asset-id.json'
- label:
- type: string
- description: Name of the text track.
- maxLength: 300
- example: English
- language:
- type: string
- description: IETF language tag for the text track.
- maxLength: 35
- example: en-US
- kind:
- $ref: '#/components/schemas/video-text-track-kind.json'
- published:
- description: True means that this text track has been published for your client.
- type: boolean
- default: true
- default:
- description: True indicates this is the default text track. Each kind of text track can have a separate default assigned.
- type: boolean
- default: false
- status:
- $ref: '#/components/schemas/video-text-track-status.json'
- autoGenerated:
- description: True indicates this text track was generated via machine transcription of the audio.
- type: boolean
- default: false
+ - $ref: '#/components/schemas/video-text-track'
properties:
id:
title: Video text track ID
@@ -37139,7 +36923,7 @@ components:
description: The identifier of a video text track.
readOnly: true
url:
- $ref: '#/components/schemas/asset-location.json'
+ $ref: '#/components/schemas/AssetLocation'
errorMessage:
description: A message indicating the error processing the text track, if any.
type: string
@@ -37212,7 +36996,7 @@ components:
description: Unique id of the video
example: '6188806885001'
status:
- $ref: '#/components/schemas/video-status.json1'
+ $ref: '#/components/schemas/video-status.json'
duration:
type: integer
description: Video duration (milliseconds)
@@ -37717,7 +37501,7 @@ components:
type: string
description: Type of the external system.
example: Cvent Salesforce App
- fair-season-type.json:
+ FairSeasonType:
title: Fair Season Type
enum:
- negotiated
@@ -37907,67 +37691,57 @@ components:
example:
- a64b648e-b7b0-4031-8f8a-8d5e0919b936
- f590f1ee-6c54-4b01-90e6-d701748f0851
- field-type.json:
- title: FieldType
- enum:
- - DateTime
- - MultiChoice
- - Number
- - SingleChoice
- - Text
- type: string
- description: 'Determines the required format for a field. `DateTime`: Data is in date-time format. `MultiChoice`: Data is one or more options from a list. `Number`: Data is a number. `SingleChoice`: Data is a a single option from a list. `Text`: Data is free-text input.'
- field-type.json2:
- title: FieldType
- enum:
- - SingleChoice
- - MultiChoice
- - DateTime
- - Number
- - Text
- type: string
- description: Field Type
- example: SingleChoice
- readOnly: true
- field.json:
+ Field:
title: Field
description: A question field.
type: object
allOf:
- - $ref: '#/components/schemas/text-field.json'
+ - $ref: '#/components/schemas/TextField'
properties:
type:
- $ref: '#/components/schemas/field-type.json'
+ $ref: '#/components/schemas/FieldType'
choices:
type: array
description: List of choices for this field.
items:
- $ref: '#/components/schemas/choice.json'
+ $ref: '#/components/schemas/Choice'
minItems: 1
maxItems: 100
notApplicableAnswer:
- $ref: '#/components/schemas/additional-choice.json'
+ $ref: '#/components/schemas/AdditionalChoice'
otherAnswer:
- $ref: '#/components/schemas/additional-choice.json'
+ $ref: '#/components/schemas/AdditionalChoice'
required:
type: boolean
default: false
description: True indicates this is a mandatory question field.
example: true
- field.json2:
+ field-type.json:
+ title: FieldType
+ enum:
+ - SingleChoice
+ - MultiChoice
+ - DateTime
+ - Number
+ - Text
+ type: string
+ description: Field Type
+ example: SingleChoice
+ readOnly: true
+ field.json:
title: Field
description: A survey field.
type: object
allOf:
- - $ref: '#/components/schemas/text-field.json1'
+ - $ref: '#/components/schemas/text-field.json'
properties:
type:
- $ref: '#/components/schemas/field-type.json2'
+ $ref: '#/components/schemas/field-type.json'
choices:
type: array
description: List of choices for this field.
items:
- $ref: '#/components/schemas/choice.json2'
+ $ref: '#/components/schemas/choice.json1'
notApplicableAnswer:
$ref: '#/components/schemas/additionalChoice.json'
otherAnswer:
@@ -37977,6 +37751,16 @@ components:
default: false
description: Is this a mandatory field
example: true
+ FieldType:
+ title: FieldType
+ enum:
+ - DateTime
+ - MultiChoice
+ - Number
+ - SingleChoice
+ - Text
+ type: string
+ description: 'Determines the required format for a field. `DateTime`: Data is in date-time format. `MultiChoice`: Data is one or more options from a list. `Number`: Data is a number. `SingleChoice`: Data is a a single option from a list. `Text`: Data is free-text input.'
file:
description: Content of exhibitor file.
title: File Request
@@ -37985,7 +37769,7 @@ components:
- $ref: '#/components/schemas/Audit'
properties:
event:
- $ref: '#/components/schemas/Event2'
+ $ref: '#/components/schemas/Event3'
exhibitor:
$ref: '#/components/schemas/Exhibitor'
displayName:
@@ -38193,7 +37977,7 @@ components:
- GoingToEvent
- NotApplicable
example: LeavingEvent
- format-type.json:
+ format-type:
title: Format Type
enum:
- gbta2013
@@ -38220,16 +38004,6 @@ components:
type: string
description: The gender of the contact.
example: Male
- gender.json:
- title: Gender
- enum:
- - Male
- - Female
- - Non-binary
- - Rather not say
- type: string
- description: The gender of the contact.
- example: Male
Gender1:
title: Gender
description: Gender of the requester.
@@ -38367,36 +38141,6 @@ components:
format: uuid
description: Unique identifier of a guest.
example: 07c1cf32-a603-4736-8b77-749c3cee3107
- guest-room-occupancy-per-room-type.json:
- title: GuestRoomOccupancyPerRoomType
- description: Room occupancy for a room type.
- type: object
- properties:
- occupancy:
- $ref: '#/components/schemas/guest-room-occupancy.json'
- type:
- $ref: '#/components/schemas/guest-room-type.json'
- guest-room-occupancy.json:
- title: GuestRoomOccupancy
- description: 'Guest room occupancy. `SINGLE`: Single occupant. `DOUBLE`: Two occupants. `TRIPLE`: Three occupants. `QUAD`: Four occupants. '
- type: string
- enum:
- - SINGLE
- - DOUBLE
- - TRIPLE
- - QUAD
- example: SINGLE
- guest-room-type.json:
- title: GuestRoomType
- description: 'Guest room type. `ANY`: Room can be any type. `SINGLE`: Room with one bed. `DOUBLE`: Room with two beds. `SUITE`: Room is an entire suite. `STAFF`: Room is for staff.'
- type: string
- enum:
- - ANY
- - SINGLE
- - DOUBLE
- - SUITE
- - STAFF
- example: DOUBLE
guest.json:
description: Guest details.
title: Guest
@@ -38458,10 +38202,40 @@ components:
type: string
example: (231)-213-1222
homeAddress:
- $ref: '#/components/schemas/address.json2'
+ $ref: '#/components/schemas/address.json'
paymentInfo:
$ref: '#/components/schemas/payment-info.json'
- hls-input-with-clips.json:
+ GuestRoomOccupancy:
+ title: GuestRoomOccupancy
+ description: 'Guest room occupancy. `SINGLE`: Single occupant. `DOUBLE`: Two occupants. `TRIPLE`: Three occupants. `QUAD`: Four occupants. '
+ type: string
+ enum:
+ - SINGLE
+ - DOUBLE
+ - TRIPLE
+ - QUAD
+ example: SINGLE
+ GuestRoomOccupancyPerRoomType:
+ title: GuestRoomOccupancyPerRoomType
+ description: Room occupancy for a room type.
+ type: object
+ properties:
+ occupancy:
+ $ref: '#/components/schemas/GuestRoomOccupancy'
+ type:
+ $ref: '#/components/schemas/GuestRoomType'
+ GuestRoomType:
+ title: GuestRoomType
+ description: 'Guest room type. `ANY`: Room can be any type. `SINGLE`: Room with one bed. `DOUBLE`: Room with two beds. `SUITE`: Room is an entire suite. `STAFF`: Room is for staff.'
+ type: string
+ enum:
+ - ANY
+ - SINGLE
+ - DOUBLE
+ - SUITE
+ - STAFF
+ example: DOUBLE
+ HlsInputWithClips:
title: HlsInputWithClips
description: HTTP Live Streaming input and clips.
type: object
@@ -38474,7 +38248,7 @@ components:
description: Clips for the HLS recording.
type: array
items:
- $ref: '#/components/schemas/video-clip.json'
+ $ref: '#/components/schemas/VideoClip'
hook:
title: Hook
description: A hook with a callback URI.
@@ -38808,7 +38582,7 @@ components:
description: Specifies who the hotel will charge incidental (extra) room expenses, like room service or long-distance calling.
example: exceptions noted here.
hotelAddress:
- $ref: '#/components/schemas/Address3'
+ $ref: '#/components/schemas/Address5'
hotelRoomRates:
type: array
description: Collection of hotel room rates the requester has taken.
@@ -39039,7 +38813,7 @@ components:
items:
$ref: '#/components/schemas/planner.json1'
currency:
- $ref: '#/components/schemas/currency.json2'
+ $ref: '#/components/schemas/currency.json1'
roomsSortType:
$ref: '#/components/schemas/rooms-sort-type.json'
housing-event-hotel:
@@ -39088,7 +38862,7 @@ components:
rating:
$ref: '#/components/schemas/hotel-rating.json'
address:
- $ref: '#/components/schemas/address.json2'
+ $ref: '#/components/schemas/address.json'
housing-event-hotels-list:
type: object
title: HotelsList
@@ -39453,7 +39227,7 @@ components:
type: string
description: Name of the object
example: Sample Object name
- id.json:
+ IdOnlyEntity:
title: Id only entity
description: An entity which only has an id.
required:
@@ -39472,7 +39246,7 @@ components:
- $ref: '#/components/schemas/booking-website-link.json/allOf/0'
example:
href: https://example.com/content/example.jpg
- industry.json-0:
+ Industry-1:
title: Industry
description: Industry
type: string
@@ -39539,7 +39313,7 @@ components:
type: object
properties:
paging:
- $ref: '#/components/schemas/paging.json19'
+ $ref: '#/components/schemas/paging.json2'
data:
type: array
items:
@@ -39775,7 +39549,7 @@ components:
- $ref: '#/components/schemas/Audit'
properties:
event:
- $ref: '#/components/schemas/Event2'
+ $ref: '#/components/schemas/Event3'
exhibitor:
$ref: '#/components/schemas/Exhibitor'
attendee:
@@ -39813,13 +39587,13 @@ components:
maxLength: 30
example: 555-555-5555
homeAddress:
- $ref: '#/components/schemas/Address-1'
+ $ref: '#/components/schemas/Address-11'
homePhone:
type: string
description: Home phone number of the lead
example: 555-555-5555
workAddress:
- $ref: '#/components/schemas/Address-1'
+ $ref: '#/components/schemas/Address-11'
workPhone:
type: string
description: Work Phone number of the lead
@@ -39964,7 +39738,7 @@ components:
description: A question answer.
type: object
allOf:
- - $ref: '#/components/schemas/question.json3/allOf/0'
+ - $ref: '#/components/schemas/question.json2/allOf/0'
properties:
type:
type: string
@@ -39976,34 +39750,12 @@ components:
type: object
properties:
question:
- $ref: '#/components/schemas/question.json3'
+ $ref: '#/components/schemas/question.json2'
answers:
type: array
description: List of answers.
items:
$ref: '#/components/schemas/lead-qualified-answer.json'
- lead-source-section.json:
- title: LeadSourceSection
- description: Represents lead source section details, which is a sub area of source generating the RFP.
- type: object
- properties:
- id:
- type: string
- format: uuid
- description: Unique identifier for sub area of source generating the RFP. Details about this lead source section can be fetched using lead source section API.
- example: 40dc08af-24a9-4d01-84be-3d43133dc945
- lead-source.json:
- title: LeadSource
- description: Lead source details.
- type: object
- properties:
- id:
- type: string
- format: uuid
- description: Unique identifier for source generating the RFP. Details about this lead source can be fetched using lead source API.
- example: 50dc08af-24a9-4d01-84be-3d43133dc945
- section:
- $ref: '#/components/schemas/lead-source-section.json'
LeadQualificationAnswers:
title: Lead Qualification Answers
description: This JSON schema file represents lead qualification answers
@@ -40019,7 +39771,7 @@ components:
question:
$ref: '#/components/schemas/UUID'
event:
- $ref: '#/components/schemas/Event2'
+ $ref: '#/components/schemas/Event3'
exhibitor:
$ref: '#/components/schemas/Exhibitor'
lead:
@@ -40042,7 +39794,7 @@ components:
example: 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3
description: Lead Qualification Question id
event:
- $ref: '#/components/schemas/Event2'
+ $ref: '#/components/schemas/Event3'
exhibitor:
$ref: '#/components/schemas/Exhibitor'
type:
@@ -40063,11 +39815,11 @@ components:
type: array
description: List of available choices for the question
items:
- $ref: '#/components/schemas/Choice'
+ $ref: '#/components/schemas/Choice1'
notApplicableAnswer:
- $ref: '#/components/schemas/AdditionalChoice'
+ $ref: '#/components/schemas/AdditionalChoice1'
otherAnswers:
- $ref: '#/components/schemas/AdditionalChoice'
+ $ref: '#/components/schemas/AdditionalChoice1'
required:
type: boolean
description: A boolean indicating whether the question is mandatory or not
@@ -40088,6 +39840,28 @@ components:
$ref: '#/components/schemas/Lead'
description: Collection of leads.
description: A paginated response of leads.
+ LeadSource:
+ title: LeadSource
+ description: Lead source details.
+ type: object
+ properties:
+ id:
+ type: string
+ format: uuid
+ description: Unique identifier for source generating the RFP. Details about this lead source can be fetched using lead source API.
+ example: 50dc08af-24a9-4d01-84be-3d43133dc945
+ section:
+ $ref: '#/components/schemas/LeadSourceSection'
+ LeadSourceSection:
+ title: LeadSourceSection
+ description: Represents lead source section details, which is a sub area of source generating the RFP.
+ type: object
+ properties:
+ id:
+ type: string
+ format: uuid
+ description: Unique identifier for sub area of source generating the RFP. Details about this lead source section can be fetched using lead source section API.
+ example: 40dc08af-24a9-4d01-84be-3d43133dc945
LegDetail:
title: LegDetail
description: Representation of a leg detail in air request.
@@ -40320,7 +40094,7 @@ components:
format: uuid
example: 9463c74e-18c6-401a-a710-ae0f485bf059
description: Loop Choice ID.
- management-level-type.json1:
+ ManagementLevelType1:
title: Management Level Type
enum:
- global
@@ -40337,9 +40111,14 @@ components:
example: 2
minimum: 1
maximum: 10
- measurement-unit.json-0:
+ MeasurementUnit:
title: MeasurementUnit
- description: Measurement unit.
+ description: |-
+ Unit of measurement for area or space.
+
+ Values:
+ - `SQUARE_FEET` — Square Feet
+ - `SQUARE_METERS` — Square Meters
type: string
enum:
- SQUARE_FEET
@@ -40788,7 +40567,7 @@ components:
example: What is your favorite color?
readOnly: true
type:
- $ref: '#/components/schemas/question-type.json1'
+ $ref: '#/components/schemas/question-type.json'
value:
type: array
uniqueItems: true
@@ -41149,50 +40928,6 @@ components:
Anniversary: '#/components/schemas/Anniversary'
Calendar: '#/components/schemas/Calendar'
description: Collection of membership items.
- membership.json:
- title: ContactMembership
- description: Contact Membership information
- type: object
- readOnly: true
- properties:
- type:
- type: string
- description: The type of membership the contact has signed up for.
- maxLength: 300
- example: Corporate Sponsor
- plan:
- type: string
- description: Describes the specific plan the contact has signed up for.
- maxLength: 300
- example: Gold Level
- joined:
- type: string
- format: date
- description: The ISO-8601 formatted date the contact began their membership.
- readOnly: true
- example: '2017-02-10'
- expiration:
- type: string
- format: date
- description: The ISO-8601 formatted date the contact's membership will expire.
- readOnly: true
- example: '2020-02-09'
- lastRenewal:
- type: string
- format: date
- description: The ISO-8601 formatted date the contact last renewed their membership.
- readOnly: true
- example: '2019-02-08'
- amountDue:
- type: number
- description: The amount currently due for this membership.
- readOnly: true
- minimum: 0
- example: 50.5
- listInDirectory:
- type: boolean
- description: Indicates if the member details should be included in the member directory.
- example: false
message-recipients-paginated-response:
title: Paginated Channel Members Response
description: The response matching the filter criteria for the list of channel members.
@@ -41202,13 +40937,13 @@ components:
type: object
properties:
paging:
- $ref: '#/components/schemas/paging.json'
+ $ref: '#/components/schemas/Paging'
data:
type: array
items:
- $ref: '#/components/schemas/message-recipients-response.json'
+ $ref: '#/components/schemas/MessageRecipientResponse'
description: Collection of channel members.
- message-recipients-response.json:
+ MessageRecipientResponse:
title: Message Recipient Response
description: Members of the channel who received a message.
type: object
@@ -41372,15 +41107,15 @@ components:
type: number
example: 150
currency:
- $ref: '#/components/schemas/currency.json2'
- numeric-answer-format.json:
+ $ref: '#/components/schemas/currency.json1'
+ numeric-answer-format:
type: string
description: The answer format that a given number is stored in.
enum:
- Currency
- Decimal
- Number
- offering-cost-type.json-0:
+ OfferingCostType-1:
title: OfferingCostType
description: Cost type associated with organizing and hosting events and meetings.
type: string
@@ -41447,24 +41182,6 @@ components:
- STORAGE
- TEARDOWN
- TOTAL_FB_MINIMUM
- opt-out.json:
- title: ContactOptOut
- description: Details of an opt-out for a Contact.
- type: object
- properties:
- optedOut:
- type: boolean
- default: false
- description: Used to denote if a contact has opted-out of receiving system generated emails.
- example: false
- date:
- type: string
- format: date-time
- description: The ISO 8601 zoned date time when this contact was opted-out. This value can change if the contact opts out multiple times.
- readOnly: true
- example: '2019-02-12T03:00:00Z'
- by:
- $ref: '#/components/schemas/optout-by.json'
optout-by.json:
title: OptoutBy
enum:
@@ -41484,6 +41201,25 @@ components:
description: This is used to denote how a contact is opt'd out of Cvent system.
example: Account User
readOnly: true
+ OptoutBy:
+ title: OptoutBy
+ enum:
+ - Abuse Complaint
+ - Account User
+ - API
+ - Contact Self Opt-Out
+ - Cvent Support
+ - Hard Bounce
+ - Import
+ - Invitee Self Unsubscribe
+ - Multiple Bounce
+ - Respondent Self Unsubscribe
+ - Temporary Block
+ - Cvent Salesforce App
+ type: string
+ description: This is used to denote how a contact is opt'd out of Cvent system.
+ example: Account User
+ readOnly: true
Order:
type: object
description: Represents an order. Contains only the ID of the order.
@@ -41729,6 +41465,30 @@ components:
description: This is used to denote the type of order made by an attendee.
example: Online Refund
Organization:
+ title: Organization
+ description: Organization details.
+ type: object
+ properties:
+ id:
+ type: string
+ format: uuid
+ description: Unique identifier for the organization.
+ example: 50dc08af-24a9-4d01-84be-3d43133dc945
+ organization-id.json:
+ title: Organization Id
+ type: integer
+ description: The globally unique numeric identifier which represents this organization.
+ example: 123
+ readOnly: true
+ organization-number.json:
+ title: Organization Number
+ type: string
+ description: The globally unique numeric identifier represented as a string.
+ minLength: 1
+ maxLength: 100
+ example: '1234'
+ readOnly: true
+ Organization1:
title: Organization
description: The definition of a Cvent Organization. This is the overseeing entity representing the entire enterprise Cvent is in business with. An Organization has 1 to many Customers associated to it, which represent different lines of business within the organization.
required:
@@ -41773,21 +41533,7 @@ components:
maxLength: 1000
default: ''
example: Additional details about this organization.
- organization-id.json:
- title: Organization Id
- type: integer
- description: The globally unique numeric identifier which represents this organization.
- example: 123
- readOnly: true
- organization-number.json:
- title: Organization Number
- type: string
- description: The globally unique numeric identifier represented as a string.
- minLength: 1
- maxLength: 100
- example: '1234'
- readOnly: true
- organization-type.json-0:
+ OrganizationType-1:
title: OrganizationType
description: Organization type.
type: string
@@ -41801,16 +41547,6 @@ components:
- MILITARY
- OTHER
- NON_PROFIT
- organization.json:
- title: Organization
- description: Organization details.
- type: object
- properties:
- id:
- type: string
- format: uuid
- description: Unique identifier for the organization.
- example: 50dc08af-24a9-4d01-84be-3d43133dc945
OSSAudit:
title: OSS-Audit
description: OSS Audit information
@@ -41870,7 +41606,7 @@ components:
type: string
example: No Comment
maxLength: 250
- package-pricing-preference.json:
+ PackagePricingPreference:
title: PackagePricingPreference
description: Represents different preferences by planner for pricing packages response that supplier has to provide. NO_PREFERENCE means no pricing package information is need, OPTIONAL means it's not mandatory to provide pricing preference, and REQUIRED means package information is mandatory to be provided by supplier.
type: string
@@ -41922,36 +41658,36 @@ components:
type: object
properties:
paging:
- $ref: '#/components/schemas/paging.json'
+ $ref: '#/components/schemas/Paging'
data:
description: List of internal documents linked to an RFP.
type: array
items:
- $ref: '#/components/schemas/rfp-internal-document.json-0'
+ $ref: '#/components/schemas/RfpInternalDocument'
PaginatedRfpAgendaItems:
title: PaginatedRfpAgendaItems
description: Paginated list of agenda items associated with an RFP.
type: object
properties:
paging:
- $ref: '#/components/schemas/paging.json'
+ $ref: '#/components/schemas/Paging'
data:
description: List of agenda items associated with an RFP.
type: array
items:
- $ref: '#/components/schemas/rfp-agenda-item.json'
+ $ref: '#/components/schemas/RfpAgendaItem'
PaginatedRfpAgendaItemsSchedule:
title: PaginatedRfpAgendaItemsSchedule
description: Paginated list of agenda items schedule attached to an RFP.
type: object
properties:
paging:
- $ref: '#/components/schemas/paging.json'
+ $ref: '#/components/schemas/Paging'
data:
description: List of agenda items schedule attached to an RFP.
type: array
items:
- $ref: '#/components/schemas/rfp-agenda-item-schedule-with-id.json'
+ $ref: '#/components/schemas/RfpAgendaItemScheduleWithId'
PaginatedRfpAttachments:
title: PaginatedRFPAttachments
description: Paginated list of RFP attachments.
@@ -41961,11 +41697,11 @@ components:
- data
properties:
paging:
- $ref: '#/components/schemas/paging.json'
+ $ref: '#/components/schemas/Paging'
data:
type: array
items:
- $ref: '#/components/schemas/rfp-attachment.json'
+ $ref: '#/components/schemas/RfpAttachment'
description: List of attachments added on an RFP.
PaginatedRfpCustomField:
title: PaginatedRfpCustomField
@@ -41973,24 +41709,24 @@ components:
type: object
properties:
paging:
- $ref: '#/components/schemas/paging.json'
+ $ref: '#/components/schemas/Paging'
data:
description: List of RFP custom fields linked to an RFP.
type: array
items:
- $ref: '#/components/schemas/rfp-custom-field.json'
+ $ref: '#/components/schemas/CustomFieldAnswers'
PaginatedRfpQuestions:
title: PaginatedRfpQuestions
description: Paginated response containing questions associated to an RFP.
type: object
properties:
paging:
- $ref: '#/components/schemas/paging.json'
+ $ref: '#/components/schemas/Paging'
data:
description: List of questions associated to an RFP.
type: array
items:
- $ref: '#/components/schemas/rfp-question.json'
+ $ref: '#/components/schemas/RfpQuestion'
PaginatedRfpRecipientsHistory:
title: PaginatedRfpRecipientsHistory
description: Paginated response containing logs of all the recipients that were copied on an RFP.
@@ -42000,11 +41736,11 @@ components:
- data
properties:
paging:
- $ref: '#/components/schemas/paging.json'
+ $ref: '#/components/schemas/Paging'
data:
type: array
items:
- $ref: '#/components/schemas/rfp-recipient-log-entry.json'
+ $ref: '#/components/schemas/RfpRecipientLogEntry'
description: List of RFP recipient logs.
PaginatedRfpSuppliers:
title: PaginatedRfpSuppliers
@@ -42015,11 +41751,11 @@ components:
- data
properties:
paging:
- $ref: '#/components/schemas/paging.json'
+ $ref: '#/components/schemas/Paging'
data:
type: array
items:
- $ref: '#/components/schemas/rfp-supplier.json'
+ $ref: '#/components/schemas/RfpSupplier'
description: List of RFP suppliers.
pagination-links.json:
title: PaginationLinks
@@ -42072,7 +41808,7 @@ components:
example: 2
_links:
$ref: '#/components/schemas/PaginationLinks'
- paging-no-total-count.json2:
+ paging-no-total-count.json:
title: Paging
required:
- _links
@@ -42126,7 +41862,7 @@ components:
example: 2
_links:
$ref: '#/components/schemas/pagination-links.json'
- paging.json19:
+ paging.json2:
title: Paging
required:
- _links
@@ -42181,7 +41917,7 @@ components:
type: string
description: Denotes if a participant is a host or attendee of an appointment.
example: Attendee
- passport.json:
+ Passport:
title: Passport
description: This entity represents a contact's passport information.
type: object
@@ -42265,7 +42001,7 @@ components:
type: string
example: Gustav Schultz
address:
- $ref: '#/components/schemas/address.json2'
+ $ref: '#/components/schemas/address.json'
phone:
description: Phone number.
type: string
@@ -43007,7 +42743,7 @@ components:
type: array
deprecated: true
items:
- $ref: '#/components/schemas/custom-field.json3'
+ $ref: '#/components/schemas/custom-field.json2'
description: Collection of custom fields.
readOnly: true
sourceId:
@@ -43191,7 +42927,7 @@ components:
type: string
description: This is used to denote the type of a video player
example: Cvent Video Player
- policy-value-type.json:
+ PolicyValueType:
title: Policy Value Type
enum:
- selection_list
@@ -43526,21 +43262,6 @@ components:
$ref: '#/components/schemas/program-item-session-document'
description: Collection of Session Program Item Documents.
maxItems: 200
- program-item-id.json:
- title: ProgramItemId
- description: The unique identifier for a program item.
- type: string
- format: uuid
- example: 221984b2-9e3e-4c1c-8ef4-306b1b75fa3e
- program-item-lite.json:
- required:
- - id
- type: object
- title: ProgramItemLite
- description: The unique identifier of a program item.
- properties:
- id:
- $ref: '#/components/schemas/program-item-id.json'
program-item-paginated-response:
title: ProgramItemPaginatedResponse
description: The response from a request to get the list of session program items.
@@ -43603,7 +43324,7 @@ components:
type: object
properties:
paging:
- $ref: '#/components/schemas/paging.json'
+ $ref: '#/components/schemas/Paging'
data:
type: array
items:
@@ -43657,13 +43378,28 @@ components:
description: The program item associated with the session.
properties:
id:
- $ref: '#/components/schemas/ProgramItemId'
+ $ref: '#/components/schemas/ProgramItemId1'
ProgramItemId:
+ title: ProgramItemId
+ description: The unique identifier for a program item.
+ type: string
+ format: uuid
+ example: 221984b2-9e3e-4c1c-8ef4-306b1b75fa3e
+ ProgramItemId1:
title: ProgramItemId
description: The unique identifier for a program item
type: string
format: uuid
example: 788426ac-5d83-11ee-8c99-0242ac120002
+ ProgramItemLite:
+ required:
+ - id
+ type: object
+ title: ProgramItemLite
+ description: The unique identifier of a program item.
+ properties:
+ id:
+ $ref: '#/components/schemas/ProgramItemId'
property:
title: property
description: Details of the property
@@ -43745,7 +43481,7 @@ components:
example: USD
description: The ISO 4217 standard format currency code specified for the property.
address:
- $ref: '#/components/schemas/address.json3'
+ $ref: '#/components/schemas/address.json1'
externalCodes:
type: array
items:
@@ -43821,7 +43557,7 @@ components:
example: false
readOnly: true
bedTypeCode:
- $ref: '#/components/schemas/room-bed-type.json1'
+ $ref: '#/components/schemas/room-bed-type.json'
numberOfBeds:
type: integer
description: The number of beds in the room.
@@ -43871,7 +43607,7 @@ components:
description: The proposal date.
properties:
dateType:
- $ref: '#/components/schemas/date-type.json1'
+ $ref: '#/components/schemas/date-type.json'
startDate:
type: string
format: date
@@ -43882,7 +43618,7 @@ components:
format: date
description: The end date of the event.
example: '2021-01-13'
- proposal-status-type.json:
+ proposal-status-type:
title: Proposal Status Type
enum:
- participation_requested
@@ -43985,7 +43721,7 @@ components:
example: All invoices must be paid in 30 days.
deprecated: true
currencyCode:
- $ref: '#/components/schemas/currency.json1'
+ $ref: '#/components/schemas/currency.json2'
commissionableBid:
type: boolean
description: True indicates this is a commissionable bid.
@@ -44024,12 +43760,12 @@ components:
type: array
description: List of all contacts.
items:
- $ref: '#/components/schemas/contact.json1'
+ $ref: '#/components/schemas/contact.json'
plannerContacts:
type: array
description: List of all planner contacts.
items:
- $ref: '#/components/schemas/contact.json1'
+ $ref: '#/components/schemas/contact.json'
meetingRoom:
$ref: '#/components/schemas/meeting-room.json'
transaction:
@@ -44085,7 +43821,7 @@ components:
type: object
properties:
distance:
- $ref: '#/components/schemas/distance.json1'
+ $ref: '#/components/schemas/distance.json'
mapMessage:
description: Message shown on map.
type: string
@@ -44214,7 +43950,7 @@ components:
description: A question, defined by the program, for the supplier to answer as part of their proposal.
type: object
allOf:
- - $ref: '#/components/schemas/travel-account/allOf/0'
+ - $ref: '#/components/schemas/Audit'
properties:
id:
title: Question ID
@@ -44234,11 +43970,11 @@ components:
example: true
description: Is this question required by default?
responseType:
- $ref: '#/components/schemas/question-response-type.json'
+ $ref: '#/components/schemas/QuestionResponseType'
responseDataType:
- $ref: '#/components/schemas/question-response-data-type.json'
+ $ref: '#/components/schemas/QuestionResponseDataType'
responseFormat:
- $ref: '#/components/schemas/question-response-format.json'
+ $ref: '#/components/schemas/QuestionResponseFormat'
responseChoices:
title: Response Choices
description: A list of options for the question. This only applies when responseType is 'choice'
@@ -44250,14 +43986,6 @@ components:
- American
- French
- Other
- question-classification-type.json:
- type: string
- title: QuestionClassificationType
- description: 'Indicates the types of RFP that can be assigned this custom question. `MEETING_ROOM`: Meeting room type RFPs can be assigned this custom question. `GUEST_ROOM`: Guest room type RFPs can be assigned this custom question. `ALL_RFPS`: All RFPs can be assigned this custom question.'
- enum:
- - MEETING_ROOM
- - GUEST_ROOM
- - ALL_RFPS
question-detail.json:
title: QuestionDetail
description: The question asked in a session.
@@ -44286,91 +44014,25 @@ components:
type: object
properties:
paging:
- $ref: '#/components/schemas/paging.json'
+ $ref: '#/components/schemas/Paging'
data:
type: array
items:
$ref: '#/components/schemas/question'
description: Collection of Questions.
- question-response-data-type.json:
- title: Question Response Data Type
- enum:
- - text
- - date
- - date_time
- - time
- - number
- - email
- - boolean
- type: string
- description: Code representing the expected data type of the question response.
- example: text
- question-response-format.json:
- title: Question Response Format
- enum:
- - lower_case
- - proper_case
- - upper_case
- type: string
- description: Code representing the format the text of the response will be in.
- example: proper_case
- question-response-type.json:
- title: Question Response Type
- enum:
- - single
- - choice
- type: string
- description: Code representing the type of response supported. Single represents a simple single value response, and choice means the user will be given a set of options for selection.
- example: choice
question-response.json:
title: QuestionResponse
description: A Question response.
type: object
properties:
question:
- $ref: '#/components/schemas/question.json3'
+ $ref: '#/components/schemas/question.json2'
answers:
type: array
description: List of answers.
items:
$ref: '#/components/schemas/answer.json1'
- question-section.json:
- title: Question Section
- enum:
- - program_client
- - program_g_and_m
- type: string
- description: Code representing the section where the question belongs. Currently, program_client (client specific) and program_g_and_m (group and meeting) are supported.
- example: program_client
question-type.json:
- title: QuestionType
- enum:
- - CommentBox
- - DateTime
- - FileUpload
- - Form
- - LargeChoices
- - MatrixMultiChoice
- - MatrixRating
- - MatrixSideBySide
- - MatrixSingleChoice
- - MatrixSpreadSheet
- - MultiChoice
- - NetPromoter
- - Number
- - NumberAllocation
- - OpenEndedDateTime
- - OpenEndedNumeric
- - OpenEndedTextCommentBox
- - OpenEndedTextOneLine
- - RankOrder
- - Rating
- - SingleChoice
- - Text
- type: string
- description: The type of question. See [this article](https://support.cvent.com/s/communityarticle/Survey-Adding-Questions) for details on each enum.
- example: SingleChoice
- question-type.json1:
title: QuestionType
enum:
- AutoIncrement
@@ -44396,7 +44058,7 @@ components:
description: Denotes the type of data collected by a question.
example: SingleSelect
readOnly: true
- question-type.json2:
+ question-type.json1:
title: QuestionType
enum:
- SingleChoice
@@ -44421,7 +44083,7 @@ components:
description: Question Type.
example: SingleChoice
readOnly: true
- question-type.json3:
+ question-type.json2:
title: Question Type
description: This object represents the type of a question
type: string
@@ -44435,59 +44097,7 @@ components:
- FileUpload
- MatrixSinglePerRow
- MatrixMultiPerRow
- question-with-program-id.json:
- title: Travel Program Question
- description: A question, defined by the program, for the supplier to answer as part of their proposal.
- type: object
- allOf:
- - $ref: '#/components/schemas/travel-account/allOf/0'
- properties:
- travelProgram:
- title: Travel Program
- description: Travel program that the question belongs to.
- type: object
- properties:
- id:
- title: Travel Program ID
- description: The unique ID of the travel program.
- type: string
- format: uuid
- example: ddc61444-45c7-4e1d-9fdd-07713c8baf9b
- id:
- title: Question ID
- description: The unique ID of the question.
- type: string
- format: uuid
- example: 76c461cb-77f6-40b3-acc8-db44452f11c4
- text:
- title: Question Text
- description: The text of the question.
- type: string
- maxLength: 300
- example: What type of food is served in the hotel restaurant?
- required:
- title: Required
- type: boolean
- example: true
- description: Is this question required by default?
- responseType:
- $ref: '#/components/schemas/question-response-type.json'
- responseDataType:
- $ref: '#/components/schemas/question-response-data-type.json'
- responseFormat:
- $ref: '#/components/schemas/question-response-format.json'
- responseChoices:
- title: Response Choices
- description: A list of options for the question. This only applies when responseType is 'choice'
- type: array
- items:
- type: string
- example:
- - Mexican
- - American
- - French
- - Other
- question.json1:
+ question.json:
title: Question
description: Question details
required:
@@ -44514,7 +44124,7 @@ components:
type: string
description: The answer text.
example: Sample answer.
- question.json2:
+ question.json1:
title: Question
description: A survey question.
type: object
@@ -44552,22 +44162,22 @@ components:
description: Question Code
example: 4l6x
type:
- $ref: '#/components/schemas/question-type.json2'
+ $ref: '#/components/schemas/question-type.json1'
choices:
type: array
description: List of choices for the question.
items:
- $ref: '#/components/schemas/choice.json2'
+ $ref: '#/components/schemas/choice.json1'
categories:
type: array
description: List of categories for the question.
items:
- $ref: '#/components/schemas/category.json2'
+ $ref: '#/components/schemas/category.json1'
subCategories:
type: array
description: List of sub categories for matrix side-by-side questions
items:
- $ref: '#/components/schemas/text-field.json1'
+ $ref: '#/components/schemas/text-field.json'
notApplicableAnswer:
$ref: '#/components/schemas/additionalChoice.json'
otherAnswer:
@@ -44585,7 +44195,7 @@ components:
type: array
description: List of fields for form/matrix questions
items:
- $ref: '#/components/schemas/field.json2'
+ $ref: '#/components/schemas/field.json'
maxScore:
type: number
description: Max possible score
@@ -44599,7 +44209,7 @@ components:
$ref: '#/components/schemas/uuid.json'
chapter:
$ref: '#/components/schemas/uuid.json'
- question.json3:
+ question.json2:
title: Question
type: object
description: The question that was answered.
@@ -44622,6 +44232,185 @@ components:
type: string
description: Question code.
example: CODE_A
+ QuestionClassificationType:
+ type: string
+ title: QuestionClassificationType
+ description: 'Indicates the types of RFP that can be assigned this custom question. `MEETING_ROOM`: Meeting room type RFPs can be assigned this custom question. `GUEST_ROOM`: Guest room type RFPs can be assigned this custom question. `ALL_RFPS`: All RFPs can be assigned this custom question.'
+ enum:
+ - MEETING_ROOM
+ - GUEST_ROOM
+ - ALL_RFPS
+ QuestionCommon:
+ title: QuestionCommon
+ description: Base model with common properties for a question.
+ type: object
+ allOf:
+ - $ref: '#/components/schemas/Audit'
+ properties:
+ id:
+ type: string
+ format: uuid
+ description: Unique identifier of the question.
+ readOnly: true
+ text:
+ type: string
+ description: Text value of the question field. Displays to users in the UI.
+ example: Are you spending any significant time offsite and need transportation?
+ shortText:
+ type: string
+ description: Concise version or abbreviation of the question text. Set by the planner to simplify presentation of the question in reports.
+ example: Needs offsite transportation?
+ htmlText:
+ type: string
+ description: Html of the question.
+ example: Question Html
+ maxLength: 5000
+ code:
+ type: string
+ description: Question code is unique identifier for every questions within a survey (can be same across surveys). This code is used in reporting and in question and answer data tags for emails. With every new question a random question code is generated.
+ example: 4l6x
+ maxLength: 30
+ type:
+ $ref: '#/components/schemas/QuestionType'
+ choices:
+ type: array
+ description: List of choices for the question.
+ items:
+ $ref: '#/components/schemas/Choice'
+ maxItems: 100
+ categories:
+ type: array
+ description: List of categories for the question.
+ items:
+ $ref: '#/components/schemas/Category'
+ maxItems: 100
+ subCategories:
+ type: array
+ description: List of sub categories for matrix side-by-side questions.
+ items:
+ $ref: '#/components/schemas/TextField'
+ maxItems: 100
+ notApplicableAnswer:
+ $ref: '#/components/schemas/AdditionalChoice'
+ otherAnswer:
+ $ref: '#/components/schemas/AdditionalChoice'
+ comments:
+ type: string
+ description: Text Value of Comments Input box placeholder.
+ example: Comments Text
+ maxLength: 16000
+ required:
+ type: boolean
+ default: false
+ description: True indicates this is a mandatory question field.
+ example: true
+ fields:
+ type: array
+ description: List of fields for form/matrix questions.
+ items:
+ $ref: '#/components/schemas/Field'
+ maxItems: 100
+ maxScore:
+ type: number
+ description: Max possible score.
+ example: 20
+ minimum: 0
+ totalSum:
+ type: integer
+ description: Total configured sum of all choices for number allocation question.
+ example: 45
+ choiceSortOrder:
+ $ref: '#/components/schemas/choice-sort-order'
+ displayType:
+ $ref: '#/components/schemas/display-type'
+ minSelection:
+ type: integer
+ description: Minimum number of choices that must be selected.
+ example: 1
+ default: 0
+ maxSelection:
+ type: integer
+ description: Maximum number of choices that can be selected.
+ example: 3
+ default: 0
+ minDate:
+ type: string
+ format: date
+ description: The earliest date that can be selected, starting from or after this date.
+ example: '2020-01-01'
+ maxDate:
+ type: string
+ format: date
+ description: The latest date that can be selected, up to or before this date.
+ example: '2020-12-31'
+ showDateSelector:
+ type: boolean
+ description: Indicates if this is a date range question.
+ example: true
+ showCurrentDate:
+ type: boolean
+ description: Indicates if the current date should be shown.
+ example: true
+ dateAnswerFormat:
+ $ref: '#/components/schemas/date-answer-format'
+ numericAnswerFormat:
+ $ref: '#/components/schemas/numeric-answer-format'
+ unitLabel:
+ type: string
+ description: Label to add before or after textbox.
+ example: miles
+ unitPosition:
+ $ref: '#/components/schemas/unit-position'
+ minLength:
+ type: integer
+ description: Minimum number of characters that must be entered.
+ example: 5
+ default: 0
+ maxLength:
+ type: integer
+ description: Maximum number of characters that can be entered.
+ example: 100
+ default: 500
+ textAnswerFormat:
+ $ref: '#/components/schemas/text-answer-format'
+ customAnswerFormat:
+ type: object
+ description: An object that contains custom answer format data.
+ properties:
+ id:
+ type: integer
+ description: The unique identifier of the custom answer format for the account.
+ example: 104
+ QuestionResponseDataType:
+ title: Question Response Data Type
+ enum:
+ - text
+ - date
+ - date_time
+ - time
+ - number
+ - email
+ - boolean
+ type: string
+ description: Code representing the expected data type of the question response.
+ example: text
+ QuestionResponseFormat:
+ title: Question Response Format
+ enum:
+ - lower_case
+ - proper_case
+ - upper_case
+ type: string
+ description: Code representing the format the text of the response will be in.
+ example: proper_case
+ QuestionResponseType:
+ title: Question Response Type
+ enum:
+ - single
+ - choice
+ type: string
+ description: Code representing the type of response supported. Single represents a simple single value response, and choice means the user will be given a set of options for selection.
+ example: choice
questions-paginated-response:
title: SurveyQuestionsPaginatedResponse
description: Response include paging and collection of questions of surveys
@@ -44635,7 +44424,7 @@ components:
data:
type: array
items:
- $ref: '#/components/schemas/question.json2'
+ $ref: '#/components/schemas/question.json1'
description: Collection of questions for surveys.
questions-paginated-response1:
title: Travel Program Questions Paginated Response
@@ -44643,13 +44432,49 @@ components:
type: object
properties:
paging:
- $ref: '#/components/schemas/paging.json'
+ $ref: '#/components/schemas/Paging'
data:
type: array
items:
- $ref: '#/components/schemas/question-with-program-id.json'
+ $ref: '#/components/schemas/TravelProgramQuestion'
description: Collection of Questions.
- rate-level-type.json:
+ QuestionSection:
+ title: Question Section
+ enum:
+ - program_client
+ - program_g_and_m
+ type: string
+ description: Code representing the section where the question belongs. Currently, program_client (client specific) and program_g_and_m (group and meeting) are supported.
+ example: program_client
+ QuestionType:
+ title: QuestionType
+ enum:
+ - CommentBox
+ - DateTime
+ - FileUpload
+ - Form
+ - LargeChoices
+ - MatrixMultiChoice
+ - MatrixRating
+ - MatrixSideBySide
+ - MatrixSingleChoice
+ - MatrixSpreadSheet
+ - MultiChoice
+ - NetPromoter
+ - Number
+ - NumberAllocation
+ - OpenEndedDateTime
+ - OpenEndedNumeric
+ - OpenEndedTextCommentBox
+ - OpenEndedTextOneLine
+ - RankOrder
+ - Rating
+ - SingleChoice
+ - Text
+ type: string
+ description: The type of question. See [this article](https://support.cvent.com/s/communityarticle/Survey-Adding-Questions) for details on each enum.
+ example: SingleChoice
+ RateLevelType:
title: Rate Level Type
enum:
- corporate
@@ -44658,7 +44483,7 @@ components:
type: string
description: Rate level
example: corporate
- rate-review-status-type.json:
+ RateReviewStatusType:
title: Rate Review Status Type
enum:
- requested
@@ -44667,7 +44492,7 @@ components:
- rejected
type: string
description: The rate review status of the proposal
- rate-type.json:
+ RateType:
title: Rate Type
enum:
- fixed
@@ -44676,39 +44501,13 @@ components:
type: string
description: Rate type.
default: fixed
- rebate-type.json:
+ RebateType:
title: RebateType
description: Rebate type for specifying the rebate value on citywide RFPs. If rebateType is `BY_AMOUNT`, the rebate value will be in decimal format. If rebateType is `BY_PERCENTAGE`, the rebate value will represent a percentage.
type: string
enum:
- BY_AMOUNT
- BY_PERCENTAGE
- recipient-info.json-0:
- title: RecipientInfo
- description: Represents the details of the RFP recipient.
- type: object
- properties:
- order:
- type: integer
- description: The position at which this recipient will be displayed.
- maximum: 3
- minimum: 1
- example: 2
- type:
- $ref: '#/components/schemas/recipient-type.json-0'
- value:
- type: string
- maxLength: 100
- description: If the recipient is ACCOUNT_USER or ACCOUNT_USER_GROUP, this field holds their unique ID. If the recipient is EMAIL, this field holds the email provided by the user.
- example: janeDoe@example.com
- recipient-type.json-0:
- title: Recipient Type
- description: Type of Recipient
- type: string
- enum:
- - EMAIL
- - ACCOUNT_USER
- - ACCOUNT_USER_GROUP
recipient.json:
title: Recipient
type: object
@@ -44731,6 +44530,24 @@ components:
type: string
description: Email address of the recipient.
example: brett.lawler@example.com
+ RecipientInfo:
+ title: RecipientInfo
+ description: Represents the details of the RFP recipient.
+ type: object
+ properties:
+ order:
+ type: integer
+ description: The position at which this recipient will be displayed.
+ maximum: 3
+ minimum: 1
+ example: 2
+ type:
+ $ref: '#/components/schemas/RecipientType'
+ value:
+ type: string
+ maxLength: 100
+ description: If the recipient is ACCOUNT_USER or ACCOUNT_USER_GROUP, this field holds their unique ID. If the recipient is EMAIL, this field holds the email provided by the user.
+ example: janeDoe@example.com
recipients-data.json:
title: Recipients Data
description: Recipient data contains the recipient's details like ID, name and status of email sent to that recipient.
@@ -44778,6 +44595,14 @@ components:
type: string
description: The error description describes the reason of a failed email.
example: Recipient does not exist.
+ RecipientType:
+ title: Recipient Type
+ description: Type of Recipient
+ type: string
+ enum:
+ - EMAIL
+ - ACCOUNT_USER
+ - ACCOUNT_USER_GROUP
reconciliation-status.json:
title: ReconciliationStatus
enum:
@@ -44786,6 +44611,24 @@ components:
type: string
description: This is used to denote the reconciliation status for a transaction.
example: Reconciled
+ ReferenceToRFP:
+ type: object
+ title: Reference to RFP
+ description: Reference to an RFP (Request For Proposal) by its ID.
+ required:
+ - id
+ properties:
+ id:
+ $ref: '#/components/schemas/RFPID'
+ ReferenceToSupplier:
+ type: object
+ title: Reference to Supplier
+ description: Reference to a supplier by its ID.
+ required:
+ - id
+ properties:
+ id:
+ $ref: '#/components/schemas/SupplierId'
RefundPolicy:
title: RefundPolicy
description: Refund policy associated to a fee.
@@ -44845,7 +44688,7 @@ components:
description: A registration pack defining the registration type capacity allocations for an exhibitor at an event.
properties:
event:
- $ref: '#/components/schemas/Event2'
+ $ref: '#/components/schemas/Event3'
exhibitor:
$ref: '#/components/schemas/Exhibitor'
capacities:
@@ -44870,7 +44713,7 @@ components:
example: 50f4f0df-0c2d-4e6b-8e68-e1413b6917f5
description: Registration pack id
event:
- $ref: '#/components/schemas/Event2'
+ $ref: '#/components/schemas/Event3'
exhibitor:
$ref: '#/components/schemas/Exhibitor'
capacities:
@@ -45007,13 +44850,6 @@ components:
exclusiveMinimum: true
example: 2.3
minimum: 0
- relevance.json:
- title: Relevance
- description: Returned when the `match` filter is applied. Indicates how relevant the `match` filter term is to the search result. Larger numbers represent higher relevance with respect to other search results in the request. Null if no `match` filter is provided.
- type: number
- exclusiveMinimum: true
- example: 2.3
- minimum: 0
reportingField.json:
title: Virtual card reporting field and value.
description: Reporting fields and values for a virtual card.
@@ -45054,7 +44890,7 @@ components:
example: What is your favorite color?
readOnly: true
type:
- $ref: '#/components/schemas/question-type.json1'
+ $ref: '#/components/schemas/question-type.json'
value:
type: array
uniqueItems: true
@@ -45545,7 +45381,7 @@ components:
- $ref: '#/components/schemas/event-survey-respondent/allOf/0'
properties:
event:
- $ref: '#/components/schemas/event.json4'
+ $ref: '#/components/schemas/event.json3'
contact:
$ref: '#/components/schemas/uuid.json'
attendee:
@@ -45705,152 +45541,7 @@ components:
required:
- id
allOf:
- - title: RfpRequest
- description: Request body for creating or updating an RFP.
- type: object
- required:
- - needsGuestRooms
- - needsMeetingSpace
- allOf:
- - $ref: '#/components/schemas/RfpRequest/allOf/0'
- properties:
- needsMeetingSpace:
- type: boolean
- description: True indicates meeting space is needed for event.
- needsGuestRooms:
- type: boolean
- description: True indicates guest rooms are needed for event.
- description:
- type: string
- description: Description of RFP.
- minLength: 0
- maxLength: 2500
- example: Planning to host company's annual event in an outdoor location.
- dateRequirements:
- $ref: '#/components/schemas/date-requirements.json-0'
- rfpEvent:
- $ref: '#/components/schemas/rfp-event.json'
- agendaStartDate:
- type: string
- format: date
- description: The ISO 8601 date representing the start date of agenda.
- example: '2025-10-13'
- contact:
- $ref: '#/components/schemas/contact.json-0'
- rfpEventOrganization:
- $ref: '#/components/schemas/rfp-event-organization.json'
- decisionFactors:
- type: string
- description: Decision factors based on which RFP will be awarded. These can be price, location, or quality of service.
- minLength: 0
- maxLength: 2500
- example: Price, location, and quality of service.
- citywideEvent:
- type: boolean
- description: True indicates event is city wide and might require multiple venues.
- responseDueDate:
- type: string
- format: date
- description: The ISO 8601 date by when the response for RFP is expected from suppliers.
- example: '2016-10-13'
- decisionDate:
- type: string
- format: date
- description: The ISO 8601 date by which RFP will be awarded.
- example: '2016-10-13'
- billingDetails:
- $ref: '#/components/schemas/billing-details.json-0'
- internalNote:
- type: string
- description: Internal note for planners. This note is not shared with suppliers.
- minLength: 0
- maxLength: 300
- example: Don't award this RFP to the same venue as last year.
- currencyCode:
- type: string
- description: The ISO 4217 standard format currency code.
- format: ^[A-Z]{3}$
- example: USD
- measurementUnit:
- $ref: '#/components/schemas/measurement-unit.json-0'
- requiredCostItems:
- type: array
- description: This contains cost items which are marked as required for suppliers in the RFP.
- maxItems: 100
- items:
- $ref: '#/components/schemas/offering-cost-type.json-0'
- example:
- - BREAK_AM
- - BREAK_PM
- hiddenCostItems:
- type: array
- description: This contains cost items which are marked as not needed for suppliers in the RFP.
- maxItems: 100
- items:
- $ref: '#/components/schemas/offering-cost-type.json-0'
- example:
- - BREAK_DRINKS_ONLY
- - BREAK_SNACKS_AND_DRINKS
- forwardable:
- type: boolean
- description: True indicates suppliers added on the RFP should be allowed to forward the RFP.
- cvbForwardLimit:
- type: integer
- minimum: 0
- maximum: 99999
- description: Limits the number of venues that a CVB (Convention and Visitors Bureau) can forward an RFP to.
- example: 5
- allowEmailNotifications:
- type: boolean
- description: True indicates email notifications are allowed for this RFP.
- notificationRecipients:
- type: array
- description: This contains recipients who would get notified every time a new response is received back from the suppliers
- maxItems: 3
- items:
- $ref: '#/components/schemas/recipient-info.json-0'
- example:
- - order: 1
- type: EMAIL
- value: johnDoe@example.com
- - order: 2
- type: ACCOUNT_USER
- value: 50dc08af-24a9-4d01-84be-3d43133dc945
- - order: 3
- type: ACCOUNT_USER_GROUP
- value: 70de07af-24a9-4d01-84be-3d43133dc932
- shareAwardDetails:
- type: boolean
- description: True indicates award details can be shared with other suppliers added in RFP.
- leadSource:
- $ref: '#/components/schemas/lead-source.json'
- sourceId:
- type: string
- minLength: 0
- maxLength: 100
- description: Unique identifier for RFPs originating from outside Cvent network provided by source system where RFP was created.
- example: '123456'
- showcaseEnabled:
- type: boolean
- description: True indicates showcase is enabled for this RFP.
- autoAddToShowcaseEnabled:
- type: boolean
- description: True indicates that the RFP will be automatically added to showcase in case there is a low response rate.
- destinationExpertsRequiredOnProposal:
- type: boolean
- description: True indicates suppliers are required to copy the destination experts (i.e. CVB/DMC) on the proposal that is sent back through Cvent.
- weddingDetails:
- $ref: '#/components/schemas/wedding-details.json-0'
- needsCatering:
- type: boolean
- description: True indicates catering is required.
- default: false
- packagePricingPreference:
- $ref: '#/components/schemas/package-pricing-preference.json'
- feeTransparencyEnabled:
- type: boolean
- description: True indicates RFP was created with fee transparency enabled.
- default: false
+ - $ref: '#/components/schemas/RfpRequest'
properties:
id:
type: string
@@ -45864,9 +45555,9 @@ components:
description: Unique code of RFP.
example: JBNJN7BGJ5J
status:
- $ref: '#/components/schemas/rfp-status.json-0'
+ $ref: '#/components/schemas/RfpStatus-1'
type:
- $ref: '#/components/schemas/rfp-type.json-0'
+ $ref: '#/components/schemas/RfpType-1'
approvedBy:
type: string
readOnly: true
@@ -45886,7 +45577,7 @@ components:
description: True indicates RFP is approved.
example: true
cancellationDetails:
- $ref: '#/components/schemas/cancellation-details.json'
+ $ref: '#/components/schemas/CancellationDetails'
lastSentDateTime:
type: string
format: date-time
@@ -45931,44 +45622,33 @@ components:
readOnly: true
description: Represents the AI generation source for the RFP. This field is set during RFP creation and cannot be modified afterwards.
example: MCP-Visual Studio Code/1.107.1
- rfp-agenda-item-schedule-with-id.json:
+ rfp-id.json:
type: object
- title: RfpAgendaItemScheduleWithId
- description: Contains RFP specific agenda items schedule information with agenda item id.
- allOf:
- - $ref: '#/components/schemas/rfp-agenda-item-schedule.json'
properties:
id:
type: string
+ description: Identifier of a particular RFP.
format: uuid
- readOnly: true
- description: Unique ID of the agenda item.
- example: 50dc08af-24a9-4d01-84be-3d43133dc945
- rfp-agenda-item-schedule.json:
+ example: 3d808ee8-94f8-4f3a-9ad1-6b23f4e4c329
+ description: RFP ID Information.
+ rfp-summary.json:
+ description: Schema for Rfp details associated with this proposal.
type: object
- title: RfpAgendaItemSchedule
- description: Schedule information for an RFP agenda item.
- required:
- - dayNumber
+ title: RfpSummary
properties:
- dayNumber:
- type: integer
- description: Day number relative to start of event on which the agenda item occurs.
- example: 1
- date:
+ id:
type: string
- format: date
- readOnly: true
- description: The ISO 8601 date of the agenda item.
- example: '2021-07-03'
- rfp-agenda-item.json:
+ format: uuid
+ description: The unique ID of the RFP this proposal is associated with.
+ example: 385b9a4c-3f00-4b67-99ca-8dddc82a95b5
+ RfpAgendaItem:
type: object
title: RfpAgendaItem
description: Agenda item associated with an RFP.
required:
- id
allOf:
- - $ref: '#/components/schemas/RfpAgendaItem/allOf/0'
+ - $ref: '#/components/schemas/RfpAgendaItemRequest'
properties:
id:
type: string
@@ -45988,7 +45668,109 @@ components:
format: uuid
description: Unique identifier for the attachment.
example: 50dc08af-24a9-4d01-84be-3d43133dc945
- rfp-attachment.json:
+ RfpAgendaItemRequest:
+ type: object
+ title: RfpAgendaItemRequest
+ description: Request body for creating or updating an RFP agenda item.
+ required:
+ - number
+ - schedules
+ allOf:
+ - $ref: '#/components/schemas/Audit'
+ properties:
+ name:
+ type: string
+ description: The name of the agenda item.
+ minLength: 0
+ maxLength: 50
+ example: Agenda Item 1
+ type:
+ $ref: '#/components/schemas/AgendaItemType'
+ setup:
+ $ref: '#/components/schemas/AgendaItemSetup'
+ note:
+ type: string
+ description: The note sent along with agenda item.
+ minLength: 0
+ maxLength: 2500
+ example: This is a sample comment for this agenda item.
+ startTime:
+ type: string
+ description: The start time of the agenda item in 24-hour format (HH:mm:ss). This represents the local time at event location. For RFPs spanning multiple time zones, this time applies uniformly in each location's respective timezone (e.g., 13:00:00 means 1 PM local time at every venue).
+ example: '10:00:00'
+ endTime:
+ type: string
+ description: The end time of the agenda item in 24-hour format (HH:mm:ss). This represents the local time at event location. For RFPs spanning multiple time zones, this time applies uniformly in each location's respective timezone (e.g., 14:00:00 means 2 PM local time at every venue).
+ example: '10:30:00'
+ roomSize:
+ type: integer
+ minimum: 0
+ description: The required room size. It is specified in the default measurement unit of the RFP. Use GET RFP API to get the default measurement unit.
+ example: 1000
+ attendeeCount:
+ type: integer
+ minimum: 1
+ maximum: 49999
+ description: Expected number of people attending the agenda.
+ example: 10000
+ roomInfoRequired:
+ type: boolean
+ description: True indicates room information like type, description is required.
+ example: false
+ twentyFourHourHold:
+ type: boolean
+ description: True indicates that twenty four hour hold is required.
+ example: true
+ locatedAtPrimaryEventVenue:
+ type: boolean
+ description: True indicates that agenda location is at primary event venue.
+ example: false
+ rfpMeal:
+ $ref: '#/components/schemas/RfpMeal'
+ number:
+ type: integer
+ description: The sequence number of the agenda item.
+ minimum: 1
+ maximum: 49999
+ example: 5
+ schedules:
+ type: array
+ minItems: 1
+ maxItems: 150
+ description: List of dates when this agenda item is scheduled.
+ items:
+ $ref: '#/components/schemas/RfpAgendaItemSchedule'
+ RfpAgendaItemSchedule:
+ type: object
+ title: RfpAgendaItemSchedule
+ description: Schedule information for an RFP agenda item.
+ required:
+ - dayNumber
+ properties:
+ dayNumber:
+ type: integer
+ description: Day number relative to start of event on which the agenda item occurs.
+ example: 1
+ date:
+ type: string
+ format: date
+ readOnly: true
+ description: The ISO 8601 date of the agenda item.
+ example: '2021-07-03'
+ RfpAgendaItemScheduleWithId:
+ type: object
+ title: RfpAgendaItemScheduleWithId
+ description: Contains RFP specific agenda items schedule information with agenda item id.
+ allOf:
+ - $ref: '#/components/schemas/RfpAgendaItemSchedule'
+ properties:
+ id:
+ type: string
+ format: uuid
+ readOnly: true
+ description: Unique ID of the agenda item.
+ example: 50dc08af-24a9-4d01-84be-3d43133dc945
+ RfpAttachment:
type: object
title: RfpAttachment
description: This object contains Rfp specific attachments attributes.
@@ -46014,7 +45796,7 @@ components:
example: 777835
readOnly: true
type:
- $ref: '#/components/schemas/document-type.json-0'
+ $ref: '#/components/schemas/DocumentType-1'
secure:
type: boolean
description: True indicates the attachment is uploaded behind a secured URL.
@@ -46036,7 +45818,7 @@ components:
example: image/jpeg
readOnly: true
source:
- $ref: '#/components/schemas/attachment-source.json'
+ $ref: '#/components/schemas/AttachmentSource'
relativePath:
type: string
description: The file path pointing to where the attachment is stored in Cvent. This path is relative to the base URL of the storage system and omits the root address.
@@ -46073,82 +45855,20 @@ components:
type: boolean
description: True indicates the attachment is selected for the supplier whose ID is present in supplier.id field.
example: true
- rfp-custom-field.json:
- title: RfpCustomField
- description: This object contains RFP custom fields attributes only.
- type: object
- properties:
- customField:
- title: ExpandableCustomObject
- properties:
- id:
- type: string
- format: uuid
- description: Unique identifier for custom field.
- example: 50dc08af-24a9-4d01-84be-3d43133dc945
- type: object
- readOnly: true
- description: |-
- An object containing custom field data. By default, contains only the field ID.
-
- This is an **expandable** object. When requested via the `expand` query parameter with value `customField`, this object expands to include all properties of a custom field definition.
-
- See the `expand` parameter documentation and refer to the [Get Custom Field](#tag/Custom-Fields/operation/getCustomField) API for the complete expanded schema.
- answers:
- type: array
- description: List of answers for the RFP custom field.
- maxItems: 100
- items:
- type: string
- description: Answer String
- example: Choice 1
- required:
- - customField
- - answers
- rfp-date-mode.json-0:
+ RfpDateMode:
title: RfpDateMode
- description: Way of specifying dates for the event.
+ description: RfpDateMode
type: string
enum:
- ALTERNATE_DATE
- DATE_PATTERN
- rfp-event-organization.json:
- title: EventOrganization
- description: Details of organization which is hosting the event.
- type: object
- required:
- - name
- - type
- properties:
- organization:
- $ref: '#/components/schemas/organization.json'
- confidentialProfile:
- type: boolean
- description: True indicates organization profile has to be kept confidential.
- industry:
- $ref: '#/components/schemas/industry.json-0'
- name:
- type: string
- description: Name of the organization hosting the event.
- maxLength: 100
- example: Cvent Inc.
- type:
- $ref: '#/components/schemas/organization-type.json-0'
- address:
- $ref: '#/components/schemas/address.json-0'
- eventsPerYear:
- type: integer
- description: Number of events per year.
- minimum: 0
- maximum: 999999
- example: 450
- rfp-event.json:
+ RfpEvent:
title: RfpEvent
description: RFP event details.
type: object
properties:
event:
- $ref: '#/components/schemas/event.json-0'
+ $ref: '#/components/schemas/Event-1'
name:
type: string
description: Name of the event linked with the RFP.
@@ -46172,9 +45892,9 @@ components:
description: True indicates that the event is associated with an external meeting request.
example: true
type:
- $ref: '#/components/schemas/event-type.json-0'
+ $ref: '#/components/schemas/EventType-1'
totalMeetingSpaceRequired:
- $ref: '#/components/schemas/space-area.json-0'
+ $ref: '#/components/schemas/SpaceArea'
audioVisualNeeds:
type: string
description: Audio visual requirements.
@@ -46204,14 +45924,14 @@ components:
maxLength: 30
example: XVYMP8970S
largestMeetingSpaceRequired:
- $ref: '#/components/schemas/space-area.json-0'
+ $ref: '#/components/schemas/SpaceArea'
meetingRequestId:
type: string
format: uuid
description: Unique identifier for meeting request associated with the event.
example: 50dc08af-24a9-4d01-84be-3d43133dc945
formatType:
- $ref: '#/components/schemas/event-format-type.json-0'
+ $ref: '#/components/schemas/EventFormatType'
virtualAttendeesPerDay:
type: integer
description: Number of virtual attendees per day.
@@ -46236,22 +45956,57 @@ components:
maximum: 999999999
description: Budget for food and beverage.
example: 1000
- rfp-id.json:
+ RfpGuestRooms:
+ title: RfpGuestRooms
+ description: Guest Room Requirements
+ type: object
+ properties:
+ totalRooms:
+ description: Sum of the number of rooms required each night across all the nights for the event.
+ type: integer
+ readOnly: true
+ example: 24
+ minimum: 0
+ maximum: 9999000
+ peakRooms:
+ description: The number of rooms required during peak nights.
+ type: integer
+ readOnly: true
+ example: 24
+ minimum: 0
+ maximum: 49995
+ occupancies:
+ description: Occupancies for every room type.
+ type: array
+ items:
+ $ref: '#/components/schemas/GuestRoomOccupancyPerRoomType'
+ minItems: 0
+ maxItems: 5
+ checkInDate:
+ type: string
+ format: date
+ description: The ISO 8601 check-in date.
+ example: '2025-10-13'
+ roomBlocks:
+ description: List of room blocks required.
+ type: array
+ items:
+ $ref: '#/components/schemas/RoomBlock'
+ minItems: 0
+ maxItems: 200
+ additionalInformation:
+ type: string
+ description: Additional Info (if any).
+ example: 2 Executive suites are mandatory.
+ minLength: 0
+ maxLength: 2500
+ RFPID:
title: RFP ID
description: A unique identifier for an RFP
type: string
format: uuid
example: a0f3116a-4dd8-4923-b778-188cbe00a68f
- rfp-id.json1:
- type: object
- properties:
- id:
- type: string
- description: Identifier of a particular RFP.
- format: uuid
- example: 3d808ee8-94f8-4f3a-9ad1-6b23f4e4c329
- description: RFP ID Information.
- rfp-internal-document.json-0:
+ RfpInternalDocument:
type: object
title: RfpInternalDocument
description: This object contains RFP specific internal documents attributes only.
@@ -46289,12 +46044,44 @@ components:
description: URL of the document if `secure` is false. This field is null if `secure` is true.
example: https://custom.cvent.com/0B7DEF22676A4434982BDAD2D6EC591F/files/supplier/0713cef78d4e4d818899d4522022d5ad/73ab2e3054fd4321a5e0f846a7adb0d7.jpg
type:
- $ref: '#/components/schemas/document-type.json-0'
+ $ref: '#/components/schemas/DocumentType-1'
mimeType:
type: string
description: The content type of the document.
example: image/jpeg
- rfp-meal.json:
+ RfpLeadSource:
+ type: object
+ title: RfpLeadSource
+ description: Lead source of the RFP.
+ properties:
+ id:
+ type: string
+ format: uuid
+ readOnly: true
+ description: The unique identifier of the lead source.
+ example: f56a51a4-84b0-46c9-a612-716dc95a1c96
+ name:
+ type: string
+ description: Name of the lead source.
+ maxLength: 100
+ example: Cvent Supplier Network
+ RfpLeadSourceSection:
+ type: object
+ title: RfpLeadSourceSection
+ description: Lead source section of the RFP.
+ properties:
+ id:
+ type: string
+ format: uuid
+ readOnly: true
+ description: The unique identifier of the lead source section.
+ example: f56a51a4-84b0-46c9-a612-716dc95a1c96
+ name:
+ type: string
+ description: Name of the lead source section.
+ maxLength: 200
+ example: Cvent Supplier Network
+ RfpMeal:
type: string
title: RfpMeal
description: Meal type offered during the agenda.
@@ -46312,14 +46099,14 @@ components:
- LUNCH_PLATED
- RECEPTION_HEAVY_HORS_D_OEUVRES
- RECEPTION_LIGHT_APPETIZERS
- rfp-past-event.json:
+ RfpPastEvent:
type: object
title: RfpPastEvent
description: This object includes information about past events hosted by the planner.
required:
- id
allOf:
- - $ref: '#/components/schemas/RfpPastEvent/allOf/0'
+ - $ref: '#/components/schemas/RfpPastEventRequest'
properties:
id:
type: string
@@ -46327,38 +46114,101 @@ components:
readOnly: true
description: Unique ID for the event detail.
example: f56a51a4-84b0-46c9-a612-716dc95a1c96
- rfp-question.json:
+ RfpPastEventRequest:
+ type: object
+ title: RfpPastEventRequest
+ description: Request body for creating or updating an RFP past event.
+ properties:
+ venueName:
+ type: string
+ description: Name of the venue where the event was hosted.
+ maxLength: 100
+ example: Delta Inn by Supreme Hotels
+ city:
+ type: string
+ description: Name of the city where the event was hosted.
+ maxLength: 40
+ example: New Delhi
+ stateProvince:
+ type: string
+ description: ISO 3166-2 code for name of the state or province where the event was hosted.
+ example: US-AL
+ date:
+ type: string
+ description: Free form text field for the planner to provide details on the event date.
+ maxLength: 100
+ example: First week of January 2024
+ attendeeCount:
+ type: integer
+ description: Number of event attendees.
+ minimum: 0
+ maximum: 999999
+ example: 500
+ guestRoomsPickedUp:
+ type: integer
+ description: Count of rooms picked up by planners for use during the event.
+ minimum: 0
+ maximum: 999999
+ example: 500
+ guestRoomsBlocked:
+ type: integer
+ description: Count of rooms blocked by planner for the event.
+ minimum: 0
+ maximum: 999999
+ example: 500
+ foodBeverageSpend:
+ type: string
+ description: Expenditure on food and beverage.
+ maxLength: 50
+ example: 3,000 dollars
+ notes:
+ type: string
+ description: Any other information about the event.
+ maxLength: 2500
+ example: This was the 25th event hosted by Alpha Planners.
+ RfpPastEvents:
+ title: RFP Past Events
+ description: List of past RFP events.
+ type: object
+ properties:
+ data:
+ type: array
+ items:
+ $ref: '#/components/schemas/RfpPastEvent'
+ maxItems: 3
+ description: List of past events saved on RFP by planner.
+ RfpQuestion:
title: RfpQuestion
description: Question associated with an RFP.
type: object
allOf:
- - $ref: '#/components/schemas/RfpQuestion/allOf/0'
+ - $ref: '#/components/schemas/QuestionCommon'
properties:
supplierTypes:
type: array
description: List of supplier types that can view the question on the RFP.
items:
- $ref: '#/components/schemas/supplier-type.json'
+ $ref: '#/components/schemas/SupplierType'
uniqueItems: true
example:
- CVB
- HOTEL
classificationType:
- $ref: '#/components/schemas/question-classification-type.json'
+ $ref: '#/components/schemas/QuestionClassificationType'
order:
type: integer
description: Determines the display order for questions on the RFP. Questions with smaller values appear first.
example: 1
minimum: 1
standardQuestion:
- $ref: '#/components/schemas/standard-question.json'
+ $ref: '#/components/schemas/StandardQuestion'
aiQuestionGenerationSource:
type: string
maxLength: 100
readOnly: true
description: Represents the AI generation source for the custom question on RFP. This field is set during question creation and cannot be modified afterwards.
example: MCP-Visual Studio Code/1.107.1
- rfp-recipient-log-entry.json:
+ RfpRecipientLogEntry:
type: object
title: RfpRecipientLogEntry
description: Contains the log entry when the recipient was copied on an RFP.
@@ -46386,7 +46236,7 @@ components:
description: True indicates that the recipient was added by the National Sales Office.
example: false
targetType:
- $ref: '#/components/schemas/target-type.json'
+ $ref: '#/components/schemas/TargetType'
sendDateTime:
type: string
format: date-time
@@ -46401,7 +46251,154 @@ components:
format: uuid
description: The unique identifier of the message.
example: a1c776ab-51ee-44a7-8720-b3dfc44d689b
- rfp-response-reason.json:
+ RfpRequest:
+ title: RfpRequest
+ description: Request body for creating or updating an RFP.
+ type: object
+ required:
+ - needsGuestRooms
+ - needsMeetingSpace
+ allOf:
+ - $ref: '#/components/schemas/Audit'
+ properties:
+ needsMeetingSpace:
+ type: boolean
+ description: True indicates meeting space is needed for event.
+ needsGuestRooms:
+ type: boolean
+ description: True indicates guest rooms are needed for event.
+ description:
+ type: string
+ description: Description of RFP.
+ minLength: 0
+ maxLength: 2500
+ example: Planning to host company's annual event in an outdoor location.
+ dateRequirements:
+ $ref: '#/components/schemas/DateRequirements-1'
+ rfpEvent:
+ $ref: '#/components/schemas/RfpEvent'
+ agendaStartDate:
+ type: string
+ format: date
+ description: The ISO 8601 date representing the start date of agenda.
+ example: '2025-10-13'
+ contact:
+ $ref: '#/components/schemas/Contact-1'
+ rfpEventOrganization:
+ $ref: '#/components/schemas/EventOrganization-1'
+ decisionFactors:
+ type: string
+ description: Decision factors based on which RFP will be awarded. These can be price, location, or quality of service.
+ minLength: 0
+ maxLength: 2500
+ example: Price, location, and quality of service.
+ citywideEvent:
+ type: boolean
+ description: True indicates event is city wide and might require multiple venues.
+ responseDueDate:
+ type: string
+ format: date
+ description: The ISO 8601 date by when the response for RFP is expected from suppliers.
+ example: '2016-10-13'
+ decisionDate:
+ type: string
+ format: date
+ description: The ISO 8601 date by which RFP will be awarded.
+ example: '2016-10-13'
+ billingDetails:
+ $ref: '#/components/schemas/BillingDetails-1'
+ internalNote:
+ type: string
+ description: Internal note for planners. This note is not shared with suppliers.
+ minLength: 0
+ maxLength: 300
+ example: Don't award this RFP to the same venue as last year.
+ currencyCode:
+ type: string
+ description: The ISO 4217 standard format currency code.
+ format: ^[A-Z]{3}$
+ example: USD
+ measurementUnit:
+ $ref: '#/components/schemas/MeasurementUnit'
+ requiredCostItems:
+ type: array
+ description: This contains cost items which are marked as required for suppliers in the RFP.
+ maxItems: 100
+ items:
+ $ref: '#/components/schemas/OfferingCostType-1'
+ example:
+ - BREAK_AM
+ - BREAK_PM
+ hiddenCostItems:
+ type: array
+ description: This contains cost items which are marked as not needed for suppliers in the RFP.
+ maxItems: 100
+ items:
+ $ref: '#/components/schemas/OfferingCostType-1'
+ example:
+ - BREAK_DRINKS_ONLY
+ - BREAK_SNACKS_AND_DRINKS
+ forwardable:
+ type: boolean
+ description: True indicates suppliers added on the RFP should be allowed to forward the RFP.
+ cvbForwardLimit:
+ type: integer
+ minimum: 0
+ maximum: 99999
+ description: Limits the number of venues that a CVB (Convention and Visitors Bureau) can forward an RFP to.
+ example: 5
+ allowEmailNotifications:
+ type: boolean
+ description: True indicates email notifications are allowed for this RFP.
+ notificationRecipients:
+ type: array
+ description: This contains recipients who would get notified every time a new response is received back from the suppliers
+ maxItems: 3
+ items:
+ $ref: '#/components/schemas/RecipientInfo'
+ example:
+ - order: 1
+ type: EMAIL
+ value: johnDoe@example.com
+ - order: 2
+ type: ACCOUNT_USER
+ value: 50dc08af-24a9-4d01-84be-3d43133dc945
+ - order: 3
+ type: ACCOUNT_USER_GROUP
+ value: 70de07af-24a9-4d01-84be-3d43133dc932
+ shareAwardDetails:
+ type: boolean
+ description: True indicates award details can be shared with other suppliers added in RFP.
+ leadSource:
+ $ref: '#/components/schemas/LeadSource'
+ sourceId:
+ type: string
+ minLength: 0
+ maxLength: 100
+ description: Unique identifier for RFPs originating from outside Cvent network provided by source system where RFP was created.
+ example: '123456'
+ showcaseEnabled:
+ type: boolean
+ description: True indicates showcase is enabled for this RFP.
+ autoAddToShowcaseEnabled:
+ type: boolean
+ description: True indicates that the RFP will be automatically added to showcase in case there is a low response rate.
+ destinationExpertsRequiredOnProposal:
+ type: boolean
+ description: True indicates suppliers are required to copy the destination experts (i.e. CVB/DMC) on the proposal that is sent back through Cvent.
+ weddingDetails:
+ $ref: '#/components/schemas/WeddingDetails-1'
+ needsCatering:
+ type: boolean
+ description: True indicates catering is required.
+ default: false
+ packagePricingPreference:
+ $ref: '#/components/schemas/PackagePricingPreference'
+ feeTransparencyEnabled:
+ type: boolean
+ description: True indicates RFP was created with fee transparency enabled.
+ default: false
+ RfpResponseReason:
title: RfpResponseReason
description: Reason given for a response to an RFP.
type: string
@@ -46448,7 +46445,7 @@ components:
- VENUE_TEMPORARILY_CLOSED
- VENUE_TOO_SMALL
example: GUEST_ROOMS_NO_LONGER_AVAILABLE
- rfp-status.json-0:
+ RfpStatus-1:
title: RfpStatus
readOnly: true
description: Represents state of the RFP.
@@ -46461,35 +46458,23 @@ components:
- HISTORIC
- CANCELLED
- DELETED
- rfp-summary.json:
- description: Schema for Rfp details associated with this proposal.
- type: object
- title: RfpSummary
- properties:
- id:
- type: string
- format: uuid
- description: The unique ID of the RFP this proposal is associated with.
- example: 385b9a4c-3f00-4b67-99ca-8dddc82a95b5
- rfp-supplier.json:
+ RfpSupplier:
type: object
title: RfpSupplier
description: Supplier data for an RFP.
- required:
- - supplier
allOf:
- - $ref: '#/components/schemas/RfpRequest/allOf/0'
+ - $ref: '#/components/schemas/Audit'
properties:
supplier:
type: object
description: The supplier associated with the RFP.
allOf:
- - $ref: '#/components/schemas/RfpSupplier/properties/supplier/allOf/0'
+ - $ref: '#/components/schemas/ReferenceToSupplier'
readOnly: true
rfp:
type: object
allOf:
- - $ref: '#/components/schemas/RfpSupplier/properties/rfp/allOf/0'
+ - $ref: '#/components/schemas/ReferenceToRFP'
readOnly: true
externalSupplier:
type: object
@@ -46500,10 +46485,11 @@ components:
maxLength: 100
description: The name of the external supplier.
example: ABC Corp
+ readOnly: true
associatedAdvertisements:
type: object
allOf:
- - $ref: '#/components/schemas/RfpSupplier/properties/associatedAdvertisements/allOf/0'
+ - $ref: '#/components/schemas/SupplierAssociatedAds'
readOnly: true
proposalInProgress:
type: boolean
@@ -46515,11 +46501,11 @@ components:
description: Internal note by planner for supplier. This is not visible to the supplier.
maxLength: 300
example: Don't award this RFP to the same venue as last year.
+ readOnly: true
leadSource:
type: object
allOf:
- - $ref: '#/components/schemas/lead-source.json'
- readOnly: true
+ - $ref: '#/components/schemas/LeadSource'
largestMeetingRoomMet:
type: boolean
description: True indicates the largest meeting room criteria is met.
@@ -46549,6 +46535,7 @@ components:
maxLength: 300
description: Recommendations added by planner for supplier.
example: The staff should be courteous.
+ readOnly: true
shortlistOrder:
type: integer
description: Shortlisted order for the supplier.
@@ -46568,7 +46555,7 @@ components:
status:
type: string
allOf:
- - $ref: '#/components/schemas/RfpSupplier/properties/status/allOf/0'
+ - $ref: '#/components/schemas/RfpSupplierStatus'
readOnly: true
statusChangedDateTime:
type: string
@@ -46585,7 +46572,7 @@ components:
response:
type: object
allOf:
- - $ref: '#/components/schemas/RfpSupplier/properties/response/allOf/0'
+ - $ref: '#/components/schemas/SupplierResponse'
readOnly: true
externalProposalId:
type: string
@@ -46628,7 +46615,24 @@ components:
description: True indicates the RFP was sent to NSO (National Sales Office) associated with supplier.
example: false
readOnly: true
- rfp-type.json-0:
+ RfpSupplierStatus:
+ title: RfpSupplierStatus
+ description: The RFP's current status with respect to the supplier.
+ type: string
+ enum:
+ - AWAITING_PROPOSAL
+ - AWARDED
+ - CANCELLED
+ - DECLINED
+ - FORWARDED
+ - NO_RESPONSE
+ - NOT_SENT
+ - RECEIPT_CONFIRMED
+ - SUBMITTED_PROPOSAL
+ - TURNED_DOWN
+ - WITHDRAWN
+ example: AWAITING_PROPOSAL
+ RfpType-1:
title: RfpType
description: RFP types based on event requirements.
type: string
@@ -46638,957 +46642,96 @@ components:
- GUEST_ROOMS_ONLY
- RESTAURANT_RFP
- SERVICE_PROVIDER
- RfpAgendaItem:
+ room-attendee-type.json:
+ title: RoomAttendeeType
+ description: Attendee type details specific to room.
type: object
- title: RfpAgendaItem
- description: Agenda item associated with an RFP.
- required:
- - id
allOf:
- - type: object
- title: RfpAgendaItemRequest
- description: Request body for creating or updating an RFP agenda item.
- required:
- - number
- - schedules
- allOf:
- - $ref: '#/components/schemas/RfpRequest/allOf/0'
- properties:
- name:
- type: string
- description: The name of the agenda item.
- minLength: 0
- maxLength: 50
- example: Agenda Item 1
- type:
- $ref: '#/components/schemas/agenda-item-type.json'
- setup:
- $ref: '#/components/schemas/agenda-item-setup.json'
- note:
- type: string
- description: The note sent along with agenda item.
- minLength: 0
- maxLength: 2500
- example: This is a sample comment for this agenda item.
- startTime:
- type: string
- description: The start time of the agenda item in 24-hour format (HH:mm:ss). This represents the local time at event location. For RFPs spanning multiple time zones, this time applies uniformly in each location's respective timezone (e.g., 13:00:00 means 1 PM local time at every venue).
- example: '10:00:00'
- endTime:
- type: string
- description: The end time of the agenda item in 24-hour format (HH:mm:ss). This represents the local time at event location. For RFPs spanning multiple time zones, this time applies uniformly in each location's respective timezone (e.g., 14:00:00 means 2 PM local time at every venue).
- example: '10:30:00'
- roomSize:
- type: integer
- minimum: 0
- description: The required room size. It is specified in the default measurement unit of the RFP. Use GET RFP API to get the default measurement unit.
- example: 1000
- attendeeCount:
- type: integer
- minimum: 1
- maximum: 49999
- description: Expected number of people attending the agenda.
- example: 10000
- roomInfoRequired:
- type: boolean
- description: True indicates room information like type, description is required.
- example: false
- twentyFourHourHold:
- type: boolean
- description: True indicates that twenty four hour hold is required.
- example: true
- locatedAtPrimaryEventVenue:
- type: boolean
- description: True indicates that agenda location is at primary event venue.
- example: false
- rfpMeal:
- $ref: '#/components/schemas/rfp-meal.json'
- number:
- type: integer
- description: The sequence number of the agenda item.
- minimum: 1
- maximum: 49999
- example: 5
- schedules:
- type: array
- minItems: 1
- maxItems: 150
- description: List of dates when this agenda item is scheduled.
- items:
- $ref: '#/components/schemas/rfp-agenda-item-schedule.json'
- properties:
- id:
- type: string
- format: uuid
- readOnly: true
- description: Unique ID of the agenda item.
- example: f56a51a4-84b0-46c9-a612-716dc95a1c96
- agendaBuilderAttachment:
- type: object
- description: Attachment whose data was used to create the agenda item.
- readOnly: true
- required:
- - id
- properties:
- id:
- type: string
- format: uuid
- description: Unique identifier for the attachment.
- example: 50dc08af-24a9-4d01-84be-3d43133dc945
- RfpGuestRooms:
- title: RfpGuestRooms
- description: Guest Room Requirements
- type: object
+ - $ref: '#/components/schemas/attendee-type.json'
properties:
- totalRooms:
- description: Sum of the number of rooms required each night across all the nights for the event.
- type: integer
- readOnly: true
- example: 24
- minimum: 0
- maximum: 9999000
- peakRooms:
- description: The number of rooms required during peak nights.
- type: integer
- readOnly: true
- example: 24
- minimum: 0
- maximum: 49995
- occupancies:
- description: Occupancies for every room type.
- type: array
- items:
- $ref: '#/components/schemas/guest-room-occupancy-per-room-type.json'
- minItems: 0
- maxItems: 5
- checkInDate:
+ cancelPolicy:
+ description: Room cancellation policy for the attendee types.
type: string
- format: date
- description: The ISO 8601 check-in date.
- example: '2025-10-13'
- roomBlocks:
- description: List of room blocks required.
- type: array
- items:
- $ref: '#/components/schemas/room-block.json'
- minItems: 0
- maxItems: 200
- additionalInformation:
+ example: If you wish to cancel your reservation, please do so 72 hours prior to your arrival date.
+ taxPolicy:
+ description: Room tax policy for the attendee types.
type: string
- description: Additional Info (if any).
- example: 2 Executive suites are mandatory.
- minLength: 0
- maxLength: 2500
- RfpLeadSource:
+ example: New York State Sales Tax is currently 8.875% per night.
+ room-bed-type.json:
+ title: Room bed type
+ enum:
+ - sofa_bed
+ - double
+ - full
+ - king
+ - murphy
+ - queen
+ - run_of_house
+ - single
+ - twin
+ type: string
+ description: Code representing the bed type.
+ example: queen
+ room-id.json:
type: object
- title: RfpLeadSource
- description: Lead source of the RFP.
+ title: RoomId
+ description: Contains unique ID of the room.
+ required:
+ - id
properties:
id:
- type: string
- format: uuid
- readOnly: true
- description: The unique identifier of the lead source.
- example: f56a51a4-84b0-46c9-a612-716dc95a1c96
- name:
- type: string
- description: Name of the lead source.
- maxLength: 100
- example: Cvent Supplier Network
- RfpLeadSourceSection:
+ description: The unique ID of the room.
+ type: integer
+ example: 11549984
+ room-info.json:
+ title: RoomInfo
type: object
- title: RfpLeadSourceSection
- description: Lead source section of the RFP.
+ description: Room information.
+ allOf:
+ - $ref: '#/components/schemas/room-id.json'
properties:
- id:
- type: string
- format: uuid
- readOnly: true
- description: The unique identifier of the lead source section.
- example: f56a51a4-84b0-46c9-a612-716dc95a1c96
name:
+ description: Room name.
type: string
- description: Name of the lead source section.
- maxLength: 200
- example: Cvent Supplier Network
- RfpPastEvent:
+ example: King
+ readOnly: true
+ room-inventory.json:
+ description: Room inventory details for single night.
type: object
- title: RfpPastEvent
- description: This object includes information about past events hosted by the planner.
required:
- - id
+ - housingEvent
+ - hotel
+ - roomType
+ - date
allOf:
- - type: object
- title: RfpPastEventRequest
- description: Request body for creating or updating an RFP past event.
+ - description: Inventory details for single night.
+ type: object
+ required:
+ - rate
+ - currentBlock
+ - pickup
+ - available
properties:
- venueName:
- type: string
- description: Name of the venue where the event was hosted.
- maxLength: 100
- example: Delta Inn by Supreme Hotels
- city:
- type: string
- description: Name of the city where the event was hosted.
- maxLength: 40
- example: New Delhi
- stateProvince:
- type: string
- description: ISO 3166-2 code for name of the state or province where the event was hosted.
- example: US-AL
- date:
- type: string
- description: Free form text field for the planner to provide details on the event date.
- maxLength: 100
- example: First week of January 2024
- attendeeCount:
+ hideRates:
+ description: Indicates if rates are hidden on booking site for this night.
+ type: boolean
+ example: false
+ rate:
+ $ref: '#/components/schemas/night-rate.json'
+ originalBlock:
+ description: Number of inventory blocked on event creation.
type: integer
- description: Number of event attendees.
+ example: 100
minimum: 0
- maximum: 999999
- example: 500
- guestRoomsPickedUp:
+ currentBlock:
+ description: Current inventory number.
type: integer
- description: Count of rooms picked up by planners for use during the event.
+ example: 150
minimum: 0
- maximum: 999999
- example: 500
- guestRoomsBlocked:
+ pickup:
+ description: Number of rooms sold.
type: integer
- description: Count of rooms blocked by planner for the event.
- minimum: 0
- maximum: 999999
- example: 500
- foodBeverageSpend:
- type: string
- description: Expenditure on food and beverage.
- maxLength: 50
- example: 3,000 dollars
- notes:
- type: string
- description: Any other information about the event.
- maxLength: 2500
- example: This was the 25th event hosted by Alpha Planners.
- properties:
- id:
- type: string
- format: uuid
- readOnly: true
- description: Unique ID for the event detail.
- example: f56a51a4-84b0-46c9-a612-716dc95a1c96
- RfpPastEvents:
- title: RFP Past Events
- description: List of past RFP events.
- type: object
- properties:
- data:
- type: array
- items:
- $ref: '#/components/schemas/rfp-past-event.json'
- maxItems: 3
- description: List of past events saved on RFP by planner.
- RfpQuestion:
- title: RfpQuestion
- description: Question associated with an RFP.
- type: object
- allOf:
- - title: QuestionCommon
- description: Base model with common properties for a question.
- type: object
- allOf:
- - $ref: '#/components/schemas/RfpRequest/allOf/0'
- properties:
- id:
- type: string
- format: uuid
- description: Unique identifier of the question.
- readOnly: true
- text:
- type: string
- description: Text value of the question field. Displays to users in the UI.
- example: Are you spending any significant time offsite and need transportation?
- shortText:
- type: string
- description: Concise version or abbreviation of the question text. Set by the planner to simplify presentation of the question in reports.
- example: Needs offsite transportation?
- htmlText:
- type: string
- description: Html of the question.
- example: Question Html
- maxLength: 5000
- code:
- type: string
- description: Question code is unique identifier for every questions within a survey (can be same across surveys). This code is used in reporting and in question and answer data tags for emails. With every new question a random question code is generated.
- example: 4l6x
- maxLength: 30
- type:
- $ref: '#/components/schemas/question-type.json'
- choices:
- type: array
- description: List of choices for the question.
- items:
- $ref: '#/components/schemas/choice.json'
- maxItems: 100
- categories:
- type: array
- description: List of categories for the question.
- items:
- $ref: '#/components/schemas/category.json'
- maxItems: 100
- subCategories:
- type: array
- description: List of sub categories for matrix side-by-side questions.
- items:
- $ref: '#/components/schemas/text-field.json'
- maxItems: 100
- notApplicableAnswer:
- $ref: '#/components/schemas/additional-choice.json'
- otherAnswer:
- $ref: '#/components/schemas/additional-choice.json'
- comments:
- type: string
- description: Text Value of Comments Input box placeholder.
- example: Comments Text
- maxLength: 16000
- required:
- type: boolean
- default: false
- description: True indicates this is a mandatory question field.
- example: true
- fields:
- type: array
- description: List of fields for form/matrix questions.
- items:
- $ref: '#/components/schemas/field.json'
- maxItems: 100
- maxScore:
- type: number
- description: Max possible score.
- example: 20
- minimum: 0
- totalSum:
- type: integer
- description: Total configured sum of all choices for number allocation question.
- example: 45
- choiceSortOrder:
- $ref: '#/components/schemas/choice-sort-order.json'
- displayType:
- $ref: '#/components/schemas/display-type.json'
- minSelection:
- type: integer
- description: Minimum number of choices that must be selected.
- example: 1
- default: 0
- maxSelection:
- type: integer
- description: Maximum number of choices that can be selected.
- example: 3
- default: 0
- minDate:
- type: string
- format: date
- description: The earliest date that can be selected, starting from or after this date.
- example: '2020-01-01'
- maxDate:
- type: string
- format: date
- description: The latest date that can be selected, up to or before this date.
- example: '2020-12-31'
- showDateSelector:
- type: boolean
- description: Indicates if this is a date range question.
- example: true
- showCurrentDate:
- type: boolean
- description: Indicates if the current date should be shown.
- example: true
- dateAnswerFormat:
- $ref: '#/components/schemas/date-answer-format.json'
- numericAnswerFormat:
- $ref: '#/components/schemas/numeric-answer-format.json'
- unitLabel:
- type: string
- description: Label to add before or after textbox.
- example: miles
- unitPosition:
- $ref: '#/components/schemas/unit-position.json'
- minLength:
- type: integer
- description: Minimum number of characters that must be entered.
- example: 5
- default: 0
- maxLength:
- type: integer
- description: Maximum number of characters that can be entered.
- example: 100
- default: 500
- textAnswerFormat:
- $ref: '#/components/schemas/text-answer-format.json'
- customAnswerFormat:
- type: object
- description: An object that contains custom answer format data.
- properties:
- id:
- type: integer
- description: The unique identifier of the custom answer format for the account.
- example: 104
- properties:
- supplierTypes:
- type: array
- description: List of supplier types that can view the question on the RFP.
- items:
- $ref: '#/components/schemas/supplier-type.json'
- uniqueItems: true
- example:
- - CVB
- - HOTEL
- classificationType:
- $ref: '#/components/schemas/question-classification-type.json'
- order:
- type: integer
- description: Determines the display order for questions on the RFP. Questions with smaller values appear first.
- example: 1
- minimum: 1
- standardQuestion:
- $ref: '#/components/schemas/standard-question.json'
- aiQuestionGenerationSource:
- type: string
- maxLength: 100
- readOnly: true
- description: Represents the AI generation source for the custom question on RFP. This field is set during question creation and cannot be modified afterwards.
- example: MCP-Visual Studio Code/1.107.1
- RfpRequest:
- title: RfpRequest
- description: Request body for creating or updating an RFP.
- type: object
- required:
- - needsGuestRooms
- - needsMeetingSpace
- allOf:
- - title: Audit
- description: Audit information
- type: object
- properties:
- created:
- type: string
- format: date-time
- description: The ISO 8601 zoned date time when this record was created.
- readOnly: true
- example: '2017-01-02T02:00:00Z'
- createdBy:
- type: string
- description: The identifier of the user that created this record.
- readOnly: true
- example: hporter
- lastModified:
- type: string
- format: date-time
- description: The ISO 8601 zoned date time when this record was updated.
- readOnly: true
- example: '2019-02-12T03:00:00Z'
- lastModifiedBy:
- type: string
- description: The identifier of the user that last updated this record.
- readOnly: true
- example: hporter
- properties:
- needsMeetingSpace:
- type: boolean
- description: True indicates meeting space is needed for event.
- needsGuestRooms:
- type: boolean
- description: True indicates guest rooms are needed for event.
- description:
- type: string
- description: Description of RFP.
- minLength: 0
- maxLength: 2500
- example: Planning to host company's annual event in an outdoor location.
- dateRequirements:
- $ref: '#/components/schemas/date-requirements.json-0'
- rfpEvent:
- $ref: '#/components/schemas/rfp-event.json'
- agendaStartDate:
- type: string
- format: date
- description: The ISO 8601 date representing the start date of agenda.
- example: '2025-10-13'
- contact:
- $ref: '#/components/schemas/contact.json-0'
- rfpEventOrganization:
- $ref: '#/components/schemas/rfp-event-organization.json'
- decisionFactors:
- type: string
- description: Decision factors based on which RFP will be awarded. These can be price, location, or quality of service.
- minLength: 0
- maxLength: 2500
- example: Price, location, and quality of service.
- citywideEvent:
- type: boolean
- description: True indicates event is city wide and might require multiple venues.
- responseDueDate:
- type: string
- format: date
- description: The ISO 8601 date by when the response for RFP is expected from suppliers.
- example: '2016-10-13'
- decisionDate:
- type: string
- format: date
- description: The ISO 8601 date by which RFP will be awarded.
- example: '2016-10-13'
- billingDetails:
- $ref: '#/components/schemas/billing-details.json-0'
- internalNote:
- type: string
- description: Internal note for planners. This note is not shared with suppliers.
- minLength: 0
- maxLength: 300
- example: Don't award this RFP to the same venue as last year.
- currencyCode:
- type: string
- description: The ISO 4217 standard format currency code.
- format: ^[A-Z]{3}$
- example: USD
- measurementUnit:
- $ref: '#/components/schemas/measurement-unit.json-0'
- requiredCostItems:
- type: array
- description: This contains cost items which are marked as required for suppliers in the RFP.
- maxItems: 100
- items:
- $ref: '#/components/schemas/offering-cost-type.json-0'
- example:
- - BREAK_AM
- - BREAK_PM
- hiddenCostItems:
- type: array
- description: This contains cost items which are marked as not needed for suppliers in the RFP.
- maxItems: 100
- items:
- $ref: '#/components/schemas/offering-cost-type.json-0'
- example:
- - BREAK_DRINKS_ONLY
- - BREAK_SNACKS_AND_DRINKS
- forwardable:
- type: boolean
- description: True indicates suppliers added on the RFP should be allowed to forward the RFP.
- cvbForwardLimit:
- type: integer
- minimum: 0
- maximum: 99999
- description: Limits the number of venues that a CVB (Convention and Visitors Bureau) can forward an RFP to.
- example: 5
- allowEmailNotifications:
- type: boolean
- description: True indicates email notifications are allowed for this RFP.
- notificationRecipients:
- type: array
- description: This contains recipients who would get notified every time a new response is received back from the suppliers
- maxItems: 3
- items:
- $ref: '#/components/schemas/recipient-info.json-0'
- example:
- - order: 1
- type: EMAIL
- value: johnDoe@example.com
- - order: 2
- type: ACCOUNT_USER
- value: 50dc08af-24a9-4d01-84be-3d43133dc945
- - order: 3
- type: ACCOUNT_USER_GROUP
- value: 70de07af-24a9-4d01-84be-3d43133dc932
- shareAwardDetails:
- type: boolean
- description: True indicates award details can be shared with other suppliers added in RFP.
- leadSource:
- $ref: '#/components/schemas/lead-source.json'
- sourceId:
- type: string
- minLength: 0
- maxLength: 100
- description: Unique identifier for RFPs originating from outside Cvent network provided by source system where RFP was created.
- example: '123456'
- showcaseEnabled:
- type: boolean
- description: True indicates showcase is enabled for this RFP.
- autoAddToShowcaseEnabled:
- type: boolean
- description: True indicates that the RFP will be automatically added to showcase in case there is a low response rate.
- destinationExpertsRequiredOnProposal:
- type: boolean
- description: True indicates suppliers are required to copy the destination experts (i.e. CVB/DMC) on the proposal that is sent back through Cvent.
- weddingDetails:
- $ref: '#/components/schemas/wedding-details.json-0'
- needsCatering:
- type: boolean
- description: True indicates catering is required.
- default: false
- packagePricingPreference:
- $ref: '#/components/schemas/package-pricing-preference.json'
- feeTransparencyEnabled:
- type: boolean
- description: True indicates RFP was created with fee transparency enabled.
- default: false
- RfpSupplier:
- type: object
- title: RfpSupplier
- description: Supplier data for an RFP.
- required:
- - supplier
- allOf:
- - $ref: '#/components/schemas/RfpRequest/allOf/0'
- properties:
- supplier:
- type: object
- description: The supplier associated with the RFP.
- allOf:
- - type: object
- title: Reference to Supplier
- description: Reference to a supplier by its ID.
- required:
- - id
- properties:
- id:
- $ref: '#/components/schemas/supplier-id.json'
- readOnly: true
- rfp:
- type: object
- allOf:
- - type: object
- title: Reference to RFP
- description: Reference to an RFP (Request For Proposal) by its ID.
- required:
- - id
- properties:
- id:
- $ref: '#/components/schemas/rfp-id.json'
- readOnly: true
- externalSupplier:
- type: object
- description: External supplier associated with the RFP. If planners cannot find a supplier in Cvent, they can add the supplier by providing the name when awarding the RFP.
- properties:
- name:
- type: string
- maxLength: 100
- description: The name of the external supplier.
- example: ABC Corp
- associatedAdvertisements:
- type: object
- allOf:
- - title: SupplierAssociatedAds
- description: Ads clicked by planner while adding supplier on RFP.
- type: object
- properties:
- firstClicked:
- type: object
- allOf:
- - description: First advertisement for the supplier which planner clicked.
- - title: SupplierAd
- description: Supplier Advertisement.
- type: object
- properties:
- code:
- type: string
- maxLength: 30
- description: Unique code generated for the supplier advertisement.
- example: RXBMLPSP
- lastClicked:
- type: object
- allOf:
- - description: Last advertisement for the supplier which planner clicked.
- - $ref: '#/components/schemas/RfpSupplier/properties/associatedAdvertisements/allOf/0/properties/firstClicked/allOf/1'
- readOnly: true
- proposalInProgress:
- type: boolean
- description: True indicates that proposal creation is in progress by supplier.
- example: true
- readOnly: true
- internalNote:
- type: string
- description: Internal note by planner for supplier. This is not visible to the supplier.
- maxLength: 300
- example: Don't award this RFP to the same venue as last year.
- leadSource:
- type: object
- allOf:
- - $ref: '#/components/schemas/lead-source.json'
- readOnly: true
- largestMeetingRoomMet:
- type: boolean
- description: True indicates the largest meeting room criteria is met.
- example: true
- readOnly: true
- numberOfGuestRoomsMet:
- type: boolean
- description: True indicates the number of guest rooms criteria is met.
- example: true
- readOnly: true
- totalMeetingSpaceMet:
- type: boolean
- description: True indicates the total meeting space criteria is met.
- example: true
- readOnly: true
- promotion:
- type: object
- description: Promotion applied by planner while adding supplier on RFP.
- properties:
- id:
- type: string
- format: uuid
- description: The unique identifier of the promotion.
- example: 41cc09ag-61a0-5e21-942e-2d41232dc923
- recommendationNote:
- type: string
- maxLength: 300
- description: Recommendations added by planner for supplier.
- example: The staff should be courteous.
- shortlistOrder:
- type: integer
- description: Shortlisted order for the supplier.
- maximum: 50
- example: 45
- readOnly: true
- showcase:
- type: boolean
- description: True indicates the supplier was added by using RFP showcase feature.
- example: true
- readOnly: true
- starred:
- type: boolean
- description: True indicates the RFP is starred by supplier. This is not visible to the planner.
- example: false
- readOnly: true
- status:
- type: string
- allOf:
- - title: RfpSupplierStatus
- description: The RFP's current status with respect to the supplier.
- type: string
- enum:
- - AWAITING_PROPOSAL
- - AWARDED
- - CANCELLED
- - DECLINED
- - FORWARDED
- - NO_RESPONSE
- - NOT_SENT
- - RECEIPT_CONFIRMED
- - SUBMITTED_PROPOSAL
- - TURNED_DOWN
- - WITHDRAWN
- example: AWAITING_PROPOSAL
- readOnly: true
- statusChangedDateTime:
- type: string
- format: date-time
- description: The ISO 8601 date time (in UTC) when the status was last changed.
- example: '2017-01-02T02:59:59.999Z'
- readOnly: true
- responder:
- type: string
- description: Name of the recipient associated with supplier who responded to the RFP.
- maxLength: 80
- example: John Doe
- readOnly: true
- response:
- type: object
- allOf:
- - title: SupplierResponse
- description: Contains response from supplier on an RFP.
- type: object
- properties:
- dateTime:
- type: string
- format: date-time
- description: The ISO 8601 date time (in UTC) when the response was sent by supplier.
- example: '2017-02-02T03:19:19.991Z'
- reason:
- $ref: '#/components/schemas/rfp-response-reason.json'
- comment:
- type: string
- description: Comment for the response reason.
- maxLength: 2500
- example: We are unable to accommodate the request on the required dates. Please let us know if we can help with any other dates.
- readOnly: true
- externalProposalId:
- type: string
- maxLength: 50
- description: Unique identifier for proposal created by supplier in the external system where it originated.
- example: '143227'
- readOnly: true
- externalId:
- type: string
- maxLength: 50
- description: Unique identifier for RFP in the external system where it originated.
- example: '234123'
- readOnly: true
- forwardId:
- type: string
- format: uuid
- description: The unique identifier generated when supplier forwards the RFP to other suppliers.
- example: d024cc04-adf1-443c-854a-97ab9f5a14b2
- readOnly: true
- lastSentDateTime:
- type: string
- format: date-time
- description: The ISO 8601 date time (in UTC) when the RFP was last sent to the supplier.
- example: '2017-01-02T02:59:59.999Z'
- readOnly: true
- lastViewedDateTime:
- type: string
- format: date-time
- description: The ISO 8601 date time (in UTC) when the RFP was last viewed by the supplier.
- example: '2017-01-02T02:59:59.999Z'
- readOnly: true
- sentDateTime:
- type: string
- format: date-time
- description: The ISO 8601 date time (in UTC) when the RFP was originally sent to the supplier.
- example: '2017-01-02T02:59:59.999Z'
- readOnly: true
- sentToNso:
- type: boolean
- description: True indicates the RFP was sent to NSO (National Sales Office) associated with supplier.
- example: false
- readOnly: true
- room-attendee-type.json:
- title: RoomAttendeeType
- description: Attendee type details specific to room.
- type: object
- allOf:
- - $ref: '#/components/schemas/attendee-type.json'
- properties:
- cancelPolicy:
- description: Room cancellation policy for the attendee types.
- type: string
- example: If you wish to cancel your reservation, please do so 72 hours prior to your arrival date.
- taxPolicy:
- description: Room tax policy for the attendee types.
- type: string
- example: New York State Sales Tax is currently 8.875% per night.
- room-bed-type.json1:
- title: Room bed type
- enum:
- - sofa_bed
- - double
- - full
- - king
- - murphy
- - queen
- - run_of_house
- - single
- - twin
- type: string
- description: Code representing the bed type.
- example: queen
- room-block-details.json:
- title: RoomBlockDetails
- description: Contains details related to room allotment for a room type.
- type: object
- properties:
- quantity:
- type: integer
- description: Quantity of rooms required.
- minimum: 0
- maximum: 9999
- example: 24
- type:
- $ref: '#/components/schemas/guest-room-type.json'
- room-block.json:
- title: RoomBlock
- description: Contains details related to room allotment for a day.
- type: object
- properties:
- id:
- type: string
- format: uuid
- description: Unique identifier for the room block.
- readOnly: true
- example: 1f6193da-e12b-4638-b1e2-13dd60d0adeb
- date:
- type: string
- format: date
- description: The ISO 8601 date when the rooms are required.
- readOnly: true
- example: '2025-10-13'
- dayNumber:
- type: integer
- description: Counter for day number.
- example: 3
- totalRooms:
- type: integer
- description: Total number of rooms required for the day.
- readOnly: true
- example: 24
- minimum: 0
- maximum: 49995
- details:
- type: array
- description: Contains detail of quantity required for each room type.
- items:
- $ref: '#/components/schemas/room-block-details.json'
- minItems: 0
- maxItems: 5
- room-id.json:
- type: object
- title: RoomId
- description: Contains unique ID of the room.
- required:
- - id
- properties:
- id:
- description: The unique ID of the room.
- type: integer
- example: 11549984
- room-info.json:
- title: RoomInfo
- type: object
- description: Room information.
- allOf:
- - $ref: '#/components/schemas/room-id.json'
- properties:
- name:
- description: Room name.
- type: string
- example: King
- readOnly: true
- room-inventory.json:
- description: Room inventory details for single night.
- type: object
- required:
- - housingEvent
- - hotel
- - roomType
- - date
- allOf:
- - description: Inventory details for single night.
- type: object
- required:
- - rate
- - currentBlock
- - pickup
- - available
- properties:
- hideRates:
- description: Indicates if rates are hidden on booking site for this night.
- type: boolean
- example: false
- rate:
- $ref: '#/components/schemas/night-rate.json'
- originalBlock:
- description: Number of inventory blocked on event creation.
- type: integer
- example: 100
- minimum: 0
- currentBlock:
- description: Current inventory number.
- type: integer
- example: 150
- minimum: 0
- pickup:
- description: Number of rooms sold.
- type: integer
- example: 50
+ example: 50
minimum: 0
finalPickup:
description: Reported number of sold rooms.
@@ -47692,6 +46835,54 @@ components:
description: The unique ID of the room type.
type: integer
example: 11549984
+ RoomBlock:
+ title: RoomBlock
+ description: Contains details related to room allotment for a day.
+ type: object
+ properties:
+ id:
+ type: string
+ format: uuid
+ description: Unique identifier for the room block.
+ readOnly: true
+ example: 1f6193da-e12b-4638-b1e2-13dd60d0adeb
+ date:
+ type: string
+ format: date
+ description: The ISO 8601 date when the rooms are required.
+ readOnly: true
+ example: '2025-10-13'
+ dayNumber:
+ type: integer
+ description: Counter for day number.
+ example: 3
+ totalRooms:
+ type: integer
+ description: Total number of rooms required for the day.
+ readOnly: true
+ example: 24
+ minimum: 0
+ maximum: 49995
+ details:
+ type: array
+ description: Contains detail of quantity required for each room type.
+ items:
+ $ref: '#/components/schemas/RoomBlockDetails'
+ minItems: 0
+ maxItems: 5
+ RoomBlockDetails:
+ title: RoomBlockDetails
+ description: Contains details related to room allotment for a room type.
+ type: object
+ properties:
+ quantity:
+ type: integer
+ description: Quantity of rooms required.
+ minimum: 0
+ maximum: 9999
+ example: 24
+ type:
+ $ref: '#/components/schemas/GuestRoomType'
rooms-sort-type.json:
description: 'Rooms sort type. CustomOrder: A user-defined sort order. PriceAscending: Data sorted with lowest price first. PriceDescending: Data sorted by highest price first.'
type: string
@@ -47793,7 +46984,7 @@ components:
description: Attendee ID
description: The attendee with points in this engagement score.
event:
- $ref: '#/components/schemas/event.json6'
+ $ref: '#/components/schemas/event.json5'
points:
type: integer
default: 0
@@ -47979,7 +47170,7 @@ components:
type: object
properties:
event:
- $ref: '#/components/schemas/event.json8'
+ $ref: '#/components/schemas/event.json6'
email:
$ref: '#/components/schemas/email.json2'
resendToPreviousRecipients:
@@ -48052,7 +47243,7 @@ components:
- attendeeResponse
properties:
event:
- $ref: '#/components/schemas/event.json8'
+ $ref: '#/components/schemas/event.json6'
email:
$ref: '#/components/schemas/email.json2'
resendToPreviousRecipients:
@@ -48246,7 +47437,7 @@ components:
description: The related session object.
properties:
id:
- $ref: '#/components/schemas/SessionId'
+ $ref: '#/components/schemas/SessionId1'
session-bulk-checkin:
title: SessionBulkCheckin
description: Represents a list of session check-ins.
@@ -48399,21 +47590,6 @@ components:
description: Display this file to the public
example: true
readOnly: true
- session-id.json:
- title: SessionId
- description: The unique identifier for a session.
- type: string
- format: uuid
- example: 832cb481-74c5-4859-ba21-bbb5be8b86e0
- session-lite.json:
- required:
- - id
- type: object
- title: SessionLite
- description: The unique identifier of a session.
- properties:
- id:
- $ref: '#/components/schemas/session-id.json'
session-location:
title: SessionLocation
type: object
@@ -48534,27 +47710,12 @@ components:
type: object
properties:
paging:
- $ref: '#/components/schemas/paging.json'
+ $ref: '#/components/schemas/Paging'
data:
type: array
items:
- $ref: '#/components/schemas/session-speaker.json'
+ $ref: '#/components/schemas/SessionSpeaker'
description: Collection of a session's speakers.
- session-speaker.json:
- title: SessionSpeaker
- description: A session speaker
- type: object
- properties:
- id:
- $ref: '#/components/schemas/uuid-property'
- session:
- $ref: '#/components/schemas/session-lite.json'
- category:
- $ref: '#/components/schemas/category-id-name.json'
- order:
- type: integer
- description: The order of the speaker in a session.
- example: 1
session-status.json:
title: SessionStatus
type: string
@@ -48697,7 +47858,7 @@ components:
customFields:
type: array
items:
- $ref: '#/components/schemas/custom-field.json3'
+ $ref: '#/components/schemas/custom-field.json2'
description: Collection of custom fields.
SessionBase:
title: SessionBase
@@ -48892,11 +48053,26 @@ components:
id:
$ref: '#/components/schemas/DocumentId'
SessionId:
+ title: SessionId
+ description: The unique identifier for a session.
+ type: string
+ format: uuid
+ example: 832cb481-74c5-4859-ba21-bbb5be8b86e0
+ SessionId1:
title: SessionId
description: The unique identifier for a session
type: string
format: uuid
example: 78842aee-5d83-11ee-8c99-0242ac120002
+ SessionLite:
+ required:
+ - id
+ type: object
+ title: SessionLite
+ description: The unique identifier of a session.
+ properties:
+ id:
+ $ref: '#/components/schemas/SessionId'
sessions-attendance-response.json:
title: SessionsAttendance
description: Represents session attendance details.
@@ -49003,6 +48179,21 @@ components:
items:
$ref: '#/components/schemas/session'
description: Collection of sessions.
+ SessionSpeaker:
+ title: SessionSpeaker
+ description: A session speaker
+ type: object
+ properties:
+ id:
+ $ref: '#/components/schemas/uuid-property'
+ session:
+ $ref: '#/components/schemas/SessionLite'
+ category:
+ $ref: '#/components/schemas/SpeakerCategory'
+ order:
+ type: integer
+ description: The order of the speaker in a session.
+ example: 1
SessionStatus:
title: SessionStatus
enum:
@@ -49031,7 +48222,7 @@ components:
description: The sleeping room block.
properties:
proposalDateType:
- $ref: '#/components/schemas/date-type.json1'
+ $ref: '#/components/schemas/date-type.json'
sleepingRoomType:
$ref: '#/components/schemas/sleeping-room-type.json'
date:
@@ -49095,7 +48286,7 @@ components:
description: The sleeping room.
properties:
proposalDateType:
- $ref: '#/components/schemas/date-type.json1'
+ $ref: '#/components/schemas/date-type.json'
checkInDate:
type: string
format: date
@@ -49171,6 +48362,14 @@ components:
$ref: '#/components/schemas/Link'
websiteUrl:
$ref: '#/components/schemas/Link'
+ Solution:
+ title: Solution
+ description: The solution where the video exists. Attendee Hub and Events+ represent two different solutions where the video can be found.
+ type: string
+ enum:
+ - ATTENDEE_HUB
+ - EVENTS_PLUS
+ example: EVENTS_PLUS
solution-type.json:
title: SolutionType
enum:
@@ -49184,15 +48383,7 @@ components:
description: This is used to denote the solution type to be used for webcast. The 'Cvent Video Conferencing' refers to the video experience which links out the Attendee hub whereas 'Embedded Cvent Video Conferencing' refers to the video experience within the Attendee hub.
readOnly: true
example: External Platform
- solution.json:
- title: Solution
- description: The solution where the video exists. Attendee Hub and Events+ represent two different solutions where the video can be found.
- type: string
- enum:
- - ATTENDEE_HUB
- - EVENTS_PLUS
- example: EVENTS_PLUS
- space-area.json-0:
+ SpaceArea:
title: SpaceArea
description: Space area divisons.
type: string
@@ -49280,32 +48471,7 @@ components:
- lastName
- event
allOf:
- - title: Audit
- description: Audit information
- type: object
- properties:
- created:
- type: string
- format: date-time
- description: The ISO 8601 zoned date time when this record was created.
- readOnly: true
- example: '2017-01-02T02:00:00Z'
- createdBy:
- type: string
- description: The identifier of the user that created this record.
- readOnly: true
- example: hporter
- lastModified:
- type: string
- format: date-time
- description: The ISO 8601 zoned date time when this record was updated.
- readOnly: true
- example: '2019-02-12T03:00:00Z'
- lastModifiedBy:
- type: string
- description: The identifier of the user that last updated this record.
- readOnly: true
- example: hporter
+ - $ref: '#/components/schemas/Audit'
properties:
event:
type: object
@@ -49358,9 +48524,9 @@ components:
maxLength: 100
example: Lead Engineer
category:
- $ref: '#/components/schemas/category-id-name.json'
+ $ref: '#/components/schemas/SpeakerCategory'
links:
- $ref: '#/components/schemas/contact-links.json'
+ $ref: '#/components/schemas/ContactLinks'
visibility:
type: boolean
description: Indicates if a given speaker should be displayed on Event Website
@@ -49382,7 +48548,7 @@ components:
default: false
example: false
relevance:
- $ref: '#/components/schemas/relevance.json'
+ $ref: '#/components/schemas/Relevance'
speaker-category:
title: SpeakerCategory
description: A speaker category.
@@ -49402,7 +48568,7 @@ components:
type: object
properties:
paging:
- $ref: '#/components/schemas/paging.json'
+ $ref: '#/components/schemas/Paging'
data:
type: array
items:
@@ -49417,7 +48583,7 @@ components:
type: object
properties:
paging:
- $ref: '#/components/schemas/paging.json'
+ $ref: '#/components/schemas/Paging'
data:
type: array
items:
@@ -49460,21 +48626,6 @@ components:
description: Display this file to the public
example: true
readOnly: true
- speaker-id.json:
- title: SpeakerId
- description: The unique identifier for a speaker.
- type: string
- format: uuid
- example: 6077a9f1-a230-40cd-9e32-b493a84aaa80
- speaker-lite.json:
- required:
- - id
- type: object
- title: SpeakerLite
- description: The unique identifier of a speaker.
- properties:
- id:
- $ref: '#/components/schemas/speaker-id.json'
speaker-paginated-response:
title: SpeakerPaginatedResponse
description: The response from a request to get the list of speakers. This includes the paging object as well as the collection of speakers.
@@ -49484,7 +48635,7 @@ components:
type: object
properties:
paging:
- $ref: '#/components/schemas/paging.json'
+ $ref: '#/components/schemas/Paging'
data:
type: array
items:
@@ -49500,7 +48651,7 @@ components:
- speaker
- programItem
allOf:
- - $ref: '#/components/schemas/speaker/allOf/0'
+ - $ref: '#/components/schemas/Audit'
properties:
id:
description: ID of the speaker to program item relationship.
@@ -49509,13 +48660,13 @@ components:
example: 38db6ae2-0dc3-487b-953e-86d6abbdf7d3
readOnly: true
event:
- $ref: '#/components/schemas/event-lite.json'
+ $ref: '#/components/schemas/EventLite'
session:
- $ref: '#/components/schemas/session-lite.json'
+ $ref: '#/components/schemas/SessionLite'
speaker:
- $ref: '#/components/schemas/speaker-lite.json'
+ $ref: '#/components/schemas/SpeakerLite'
programItem:
- $ref: '#/components/schemas/program-item-lite.json'
+ $ref: '#/components/schemas/ProgramItemLite'
speaker-session-paginated-response:
title: SpeakerSessionPaginatedResponse
description: The response from a request to get the list of speaker sessions. This includes the paging object as well as the collection of speaker sessions.
@@ -49544,11 +48695,31 @@ components:
type: string
description: Name of the speaker.
example: Henry Ford
+ SpeakerCategory:
+ title: SpeakerCategory
+ description: A defined speaker category.
+ type: object
+ required:
+ - id
+ properties:
+ id:
+ $ref: '#/components/schemas/uuid-property'
+ name:
+ type: string
+ description: The name of the speaker category
+ maxLength: 50
+ example: Presenters
SpeakerId:
title: SpeakerId
description: The unique identifier for a speaker.
type: string
format: uuid
+ example: 6077a9f1-a230-40cd-9e32-b493a84aaa80
+ SpeakerId1:
+ title: SpeakerId
+ description: The unique identifier for a speaker.
+ type: string
+ format: uuid
SpeakerLite:
required:
- id
@@ -49558,6 +48729,15 @@ components:
properties:
id:
$ref: '#/components/schemas/SpeakerId'
+ SpeakerLite1:
+ required:
+ - id
+ type: object
+ title: SpeakerLite
+ description: The unique identifier of a speaker.
+ properties:
+ id:
+ $ref: '#/components/schemas/SpeakerId1'
SpeakerSession:
title: SpeakerSession
type: object
@@ -49566,7 +48746,7 @@ components:
id:
$ref: '#/components/schemas/uuid-property'
speaker:
- $ref: '#/components/schemas/SpeakerLite'
+ $ref: '#/components/schemas/SpeakerLite1'
category:
$ref: '#/components/schemas/NamedObject'
sponsorship-level-list-response:
@@ -49602,7 +48782,7 @@ components:
- $ref: '#/components/schemas/Audit'
properties:
event:
- $ref: '#/components/schemas/Event2'
+ $ref: '#/components/schemas/Event3'
name:
type: string
description: Name of the sponsorship level
@@ -49788,7 +48968,7 @@ components:
type: array
deprecated: true
items:
- $ref: '#/components/schemas/custom-field.json3'
+ $ref: '#/components/schemas/custom-field.json2'
description: Collection of custom fields.
readOnly: true
sourceId:
@@ -49824,16 +49004,6 @@ components:
description: The identifier of the user that last updated this record.
readOnly: true
example: hporter
- standard-question.json:
- title: StandardQuestion
- description: Standard questions are selected from a predefined list of Cvent questions that can be used in an RFP.
- type: object
- properties:
- id:
- type: string
- format: uuid
- description: Unique identifier for standard question.
- example: 50dc08af-24a9-4d01-84be-3d43133dc945
standard-survey-email-template-response:
title: StandardSurveyEmailTemplates
description: A standard survey email template
@@ -49925,7 +49095,7 @@ components:
description: A standard survey question.
type: object
allOf:
- - $ref: '#/components/schemas/question.json2/allOf/0'
+ - $ref: '#/components/schemas/question.json1/allOf/0'
properties:
survey:
$ref: '#/components/schemas/uuid.json'
@@ -50079,7 +49249,7 @@ components:
customFields:
type: array
items:
- $ref: '#/components/schemas/custom-field.json2'
+ $ref: '#/components/schemas/custom-field.json1'
description: Collection of survey custom fields.
standard-surveys-paginated-response:
title: StandardSurveysPaginatedResponse
@@ -50096,6 +49266,16 @@ components:
required:
- paging
- data
+ StandardQuestion:
+ title: StandardQuestion
+ description: Standard questions are selected from a predefined list of Cvent questions that can be used in an RFP.
+ type: object
+ properties:
+ id:
+ type: string
+ format: uuid
+ description: Unique identifier for standard question.
+ example: 50dc08af-24a9-4d01-84be-3d43133dc945
state-province.json:
type: string
title: StateProvince
@@ -50943,12 +50123,6 @@ components:
description: In case of Event Survey this represents Survey Status and in case of Standard Survey this represents Chapter Status
example: In Progress
readOnly: true
- supplier-id.json:
- title: SupplierId
- type: string
- format: uuid
- description: The unique identifier of a supplier.
- example: 50dc08af-24a9-4d01-84be-3d43133dc945
supplier-summary.json:
description: Represents a summary of supplier information associated with current proposal.
type: object
@@ -50966,7 +50140,7 @@ components:
title: Supplier
properties:
type:
- $ref: '#/components/schemas/supplier-type.json1'
+ $ref: '#/components/schemas/supplier-type.json'
properties:
id:
type: string
@@ -50981,100 +50155,69 @@ components:
mapping:
VENUE: '#/components/schemas/supplier-summary.json/properties/supplier/oneOf/0'
supplier-type.json:
- title: SupplierType
- description: 'Type of supplier. `CONVENTION_AND_CONFERENCE_CENTER`: Supplier of large event venues such as convention centers, conference centers, and exposition halls. `CVB`: CVBs (Convention and Visitors Bureau) are suppliers that assist in the promotion and facilitation of tourism, conventions, and events in their respective areas. `HOTEL`: Suppliers that are hotels or resorts. `OTHER`: Suppliers that do not fall under other categories.'
- type: string
- enum:
- - CONVENTION_AND_CONFERENCE_CENTER
- - CVB
- - HOTEL
- - OTHER
- supplier-type.json1:
title: SupplierType
description: "The supplier's type. VENUE: A hotel, convention and visitors bureau (CVB), or other location for an event."
type: string
enum:
- VENUE
default: VENUE
- SupplierDeleteResponse:
- title: SupplierDeleteResponseBulk
- description: This entity is used to represent a supplier that was deleted from planner Rfp.
- allOf:
- - title: BulkResponseItem
- description: Represents a single item that is returned as part of a Bulk request call.
+ SupplierAd:
+ title: SupplierAd
+ description: Supplier Advertisement.
+ type: object
+ properties:
+ code:
+ type: string
+ maxLength: 30
+ description: Unique code generated for the supplier advertisement.
+ example: RXBMLPSP
+ SupplierAssociatedAds:
+ title: SupplierAssociatedAds
+ description: Ads clicked by planner while adding supplier on RFP.
+ type: object
+ properties:
+ firstClicked:
type: object
- required:
- - status
- - data
- properties:
- data:
- type: object
- description: The data returned for a single item in the bulk request call.
- example:
- event_id: 1234
- attendee_count: 50
- additionalProperties: true
- status:
- type: integer
- description: http status code representing processing status of a single item
- example: 400
- message:
- type: string
- description: Quick description of what happened with processing
- example: Example error message.
- request:
- type: object
- description: The processed request tied to this response. This field is only sent when processing fails.
- example:
- operation: PUT
- headers:
- header1: header1Value
- header2: header2Value
- queryParams:
- param1: param1Value
- param2: param2Value
- additionalProperties: true
- additionalProperties: false
+ allOf:
+ - description: First advertisement for the supplier which planner clicked.
+ - $ref: '#/components/schemas/SupplierAd'
+ lastClicked:
+ type: object
+ allOf:
+ - description: Last advertisement for the supplier which planner clicked.
+ - $ref: '#/components/schemas/SupplierAd'
+ SupplierId:
+ title: SupplierId
+ type: string
+ format: uuid
+ description: The unique identifier of a supplier.
+ example: 50dc08af-24a9-4d01-84be-3d43133dc945
+ SupplierResponse:
+ title: SupplierResponse
+ description: Contains response from supplier on an RFP.
+ type: object
properties:
- data:
- oneOf:
- - title: UUID Property
- description: A string that has to be a format matching the industry standard uuid
- type: string
- format: uuid
- example: 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3
- - title: ErrorResponse
- description: Represents an error response with additional details of cascading error messages.
- allOf:
- - title: ErrorResponseBase
- type: object
- description: Represents an error response with no additional details.
- required:
- - code
- - message
- properties:
- code:
- type: integer
- description: The HTTP status code representing the error.
- example: 400
- message:
- type: string
- description: A brief description of the error.
- example: Bad Request
- target:
- type: string
- description: The target resource of the error.
- example: example target
- type: object
- required:
- - code
- - message
- properties:
- details:
- type: array
- items:
- $ref: '#/components/schemas/SupplierDeleteResponse/properties/data/oneOf/1/allOf/0'
- description: Additional details of cascading error messages.
+ dateTime:
+ type: string
+ format: date-time
+ description: The ISO 8601 date time (in UTC) when the response was sent by supplier.
+ example: '2017-02-02T03:19:19.991Z'
+ reason:
+ $ref: '#/components/schemas/RfpResponseReason'
+ comment:
+ type: string
+ description: Comment for the response reason.
+ maxLength: 2500
+ example: We are unable to accommodate the request on the required dates. Please let us know if we can help with any other dates.
+ SupplierType:
+ title: SupplierType
+ description: 'Type of supplier. `CONVENTION_AND_CONFERENCE_CENTER`: Supplier of large event venues such as convention centers, conference centers, and exposition halls. `CVB`: CVBs (Convention and Visitors Bureau) are suppliers that assist in the promotion and facilitation of tourism, conventions, and events in their respective areas. `HOTEL`: Suppliers that are hotels or resorts. `OTHER`: Suppliers that do not fall under other categories.'
+ type: string
+ enum:
+ - CONVENTION_AND_CONFERENCE_CENTER
+ - CVB
+ - HOTEL
+ - OTHER
survey-author.json:
title: SurveyAuthor
description: Author of the survey
@@ -51103,22 +50246,6 @@ components:
minLength: 6
maxLength: 80
example: dummyemail@cvent.com
- survey-contact-id.json:
- title: SurveyContactId
- description: A pair of survey and contact id.
- required:
- - surveyId
- - contactId
- type: object
- properties:
- surveyId:
- type: string
- format: uuid
- description: ID of the survey
- contactId:
- type: string
- format: uuid
- description: ID of the contact
survey-response.json:
title: SurveyResponse
description: A survey response.
@@ -51218,8 +50345,24 @@ components:
type: array
uniqueItems: true
items:
- $ref: '#/components/schemas/event.json4'
+ $ref: '#/components/schemas/event.json3'
description: List of events with which this survey is linked.
+ SurveyContactId:
+ title: SurveyContactId
+ description: A pair of survey and contact id.
+ required:
+ - surveyId
+ - contactId
+ type: object
+ properties:
+ surveyId:
+ type: string
+ format: uuid
+ description: ID of the survey
+ contactId:
+ type: string
+ format: uuid
+ description: ID of the contact
surveys-paginated-response:
title: SurveysPaginatedResponse
description: The response from a request to get the list of surveys. This includes the paging object as well as the collection of surveys.
@@ -51252,49 +50395,6 @@ components:
format: date-time
description: The date and time when the usage plan is scheduled to revert to a previous plan. This field is only present when the usage plan is scheduled to revert to a previous plan. The date and time cannot be more than 14 days from the current date.
example: '2023-10-01T12:00:00Z'
- sync-job:
- title: SyncJob
- description: The model representing a sync job
- type: object
- allOf:
- - title: Audit
- description: Audit information
- type: object
- properties:
- created:
- type: string
- format: date-time
- description: The ISO 8601 zoned date time when this record was created.
- readOnly: true
- example: '2017-01-02T02:00:00Z'
- createdBy:
- type: string
- description: The identifier of the user that created this record.
- readOnly: true
- example: hporter
- lastModified:
- type: string
- format: date-time
- description: The ISO 8601 zoned date time when this record was updated.
- readOnly: true
- example: '2019-02-12T03:00:00Z'
- lastModifiedBy:
- type: string
- description: The identifier of the user that last updated this record.
- readOnly: true
- example: hporter
- properties:
- batchSize:
- type: integer
- default: 100
- maximum: 100
- description: The number of records that should be synchronized at a time from the source system.
- accountNum:
- type: string
- description: Account Num (alphanumeric) associated with the video asset
- example: ABC123
- event:
- $ref: '#/components/schemas/uuid.json'
table-assignment-paginated-response:
title: TableAssignmentPaginatedResponse
description: The response from a request to get the table assignment.
@@ -51343,7 +50443,7 @@ components:
items:
$ref: '#/components/schemas/existing-table-with-seats'
description: A list of event tables
- target-type.json:
+ TargetType:
title: TargetType
description: The target type can either refer to the type of recipient or the type of action that made the recipient a participant in the RFP process.
type: string
@@ -51492,21 +50592,6 @@ components:
$ref: '#/components/schemas/tax-and-fee.json'
minItems: 0
maxItems: 15
- tax-type.json:
- title: Tax Type
- enum:
- - city_tax
- - lodging_tax
- - occupancy_tax
- - service_fee
- - state_tax
- - vat_tax
- - vatfb_tax
- - other_tax
- - resort_fee
- type: string
- description: Bid tax type.
- example: city_tax
taxes-paginated-response:
title: TaxesResponse
required:
@@ -51544,7 +50629,22 @@ components:
type: number
description: Default tax rate for the schedule, expressed as a percentage.
example: 8.875
- text-answer-format.json:
+ TaxType:
+ title: Tax Type
+ enum:
+ - city_tax
+ - lodging_tax
+ - occupancy_tax
+ - service_fee
+ - state_tax
+ - vat_tax
+ - vatfb_tax
+ - other_tax
+ - resort_fee
+ type: string
+ description: Bid tax type.
+ example: city_tax
+ text-answer-format:
description: 'Text answer format. Used for `OpenEndedTextOneLine` question types.`CustomFormat`: Answers must follow a planner defined custom format. `EmailAddress`: Answers must follow the pattern of an email address. `General`: Answers can be any string. `USPhoneNumber`: Answers must be formatted as a phone number.'
type: string
enum:
@@ -51564,13 +50664,13 @@ components:
readOnly: true
text:
type: string
- description: Text value of the field. Displays to users in the UI.
- example: Are you spending any significant time offsite and need transportation?
+ description: text Value of the Field
+ example: Field value
shortText:
type: string
- description: Concise version or abbreviation of the question text. Set by the planner to simplify presentation of the question in reports.
- example: Needs offsite transportation?
- text-field.json1:
+ description: Reporting value of the Category, Its like a custom abbreviation
+ example: Category 1 Reporting value
+ TextField:
title: TextField
description: A survey text field.
type: object
@@ -51582,13 +50682,13 @@ components:
readOnly: true
text:
type: string
- description: text Value of the Field
- example: Field value
+ description: Text value of the field. Displays to users in the UI.
+ example: Are you spending any significant time offsite and need transportation?
shortText:
type: string
- description: Reporting value of the Category, Its like a custom abbreviation
- example: Category 1 Reporting value
- thumbnail-status.json:
+ description: Concise version or abbreviation of the question text. Set by the planner to simplify presentation of the question in reports.
+ example: Needs offsite transportation?
+ ThumbnailStatus:
title: ThumbnailStatus
enum:
- Started
@@ -51599,7 +50699,7 @@ components:
type: string
description: Denotes the status of a thumbnail. Started indicates the request to upload in the API was submitted, and the URL you'll upload a thumbnail to was returned. Uploaded indicates that the upload was completed. Processing indicates that a virus scan is in progress. Available indicates the thumbnail passed the scan and is ready for use. Rejected indicates there was a problem processing the thumbnail.
example: Started
- thumbnail-type.json:
+ ThumbnailType:
title: ThumbnailType
enum:
- bmp
@@ -51946,32 +51046,7 @@ components:
description: Travel account details.
type: object
allOf:
- - title: Audit
- description: Audit information
- type: object
- properties:
- created:
- type: string
- format: date-time
- description: The ISO 8601 zoned date time when this record was created.
- readOnly: true
- example: '2017-01-02T02:00:00Z'
- createdBy:
- type: string
- description: The identifier of the user that created this record.
- readOnly: true
- example: hporter
- lastModified:
- type: string
- format: date-time
- description: The ISO 8601 zoned date time when this record was updated.
- readOnly: true
- example: '2019-02-12T03:00:00Z'
- lastModifiedBy:
- type: string
- description: The identifier of the user that last updated this record.
- readOnly: true
- example: hporter
+ - $ref: '#/components/schemas/Audit'
properties:
id:
title: Account ID
@@ -51986,7 +51061,7 @@ components:
description: The name of the travel account.
example: Test Corporation
type:
- $ref: '#/components/schemas/travel-account-type.json'
+ $ref: '#/components/schemas/TravelAccountType'
certified:
title: Certified?
description: Is this a certified travel account?
@@ -51996,7 +51071,7 @@ components:
title: Addresses
type: array
items:
- $ref: '#/components/schemas/address.json5'
+ $ref: '#/components/schemas/Address6'
description: List of addresses associated with the travel account.
travel-account-paginated-response:
title: Travel account paginated response
@@ -52004,7 +51079,7 @@ components:
type: object
properties:
paging:
- $ref: '#/components/schemas/paging.json'
+ $ref: '#/components/schemas/Paging'
data:
type: array
items:
@@ -52032,7 +51107,7 @@ components:
description: The name of the travel account.
example: Test Corporation
managementLevel:
- $ref: '#/components/schemas/management-level-type.json1'
+ $ref: '#/components/schemas/ManagementLevelType1'
active:
title: Active?
type: boolean
@@ -52061,13 +51136,374 @@ components:
type: object
properties:
paging:
- $ref: '#/components/schemas/paging.json'
+ $ref: '#/components/schemas/Paging'
+ data:
+ type: array
+ items:
+ $ref: '#/components/schemas/travel-account-supplier-account'
+ description: Collection of suppliers travel accounts and their related details.
+ travel-departure-arrival.json:
+ title: TravelDepartureArrival
+ type: object
+ description: Common object that holds travel departure/arrival information.
+ properties:
+ time:
+ description: The ISO 8601 formatted date.
+ type: string
+ format: date-time
+ example: '2024-12-01T00:00:00Z'
+ carrier:
+ description: ICAO code.
+ type: string
+ example: JBU
+ maxLength: 3
+ carrierNumber:
+ description: Carrier number.
+ type: string
+ example: '12345'
+ maxLength: 32
+ travel-details.json:
+ title: TravelDetails
+ type: object
+ description: Common object that holds travel details information.
+ properties:
+ arrival:
+ $ref: '#/components/schemas/travel-departure-arrival.json'
+ departure:
+ $ref: '#/components/schemas/travel-departure-arrival.json'
+ additionalInformation:
+ description: Additional information about travel.
+ type: string
+ example: Additional Information
+ maxLength: 1000
+ travel-program:
+ title: Travel Program
+ description: Travel program details.
+ type: object
+ allOf:
+ - $ref: '#/components/schemas/Audit'
+ properties:
+ id:
+ title: Program ID
+ description: The unique ID of the travel program.
+ type: string
+ format: uuid
+ example: 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3
+ name:
+ title: Program Name
+ type: string
+ maxLength: 60
+ description: The name of the travel program.
+ example: Test Program
+ contractPeriod:
+ title: Originating Contract Period
+ description: The contract year in which the travel program originated.
+ type: integer
+ example: 2023
+ type:
+ $ref: '#/components/schemas/TravelProgramType'
+ format:
+ $ref: '#/components/schemas/TravelProgramFormatType'
+ status:
+ $ref: '#/components/schemas/TravelProgramStatus'
+ travelAccount:
+ title: Travel Account
+ description: Travel account that the program belongs to.
+ type: object
+ properties:
+ id:
+ title: Travel Account ID
+ description: The unique ID of the travel account.
+ type: string
+ format: uuid
+ example: 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3
+ stayType:
+ $ref: '#/components/schemas/TravelProgramStayType'
+ startDate:
+ title: Start Date
+ description: The ISO 8601 formatted start date (in GMT) of the travel program.
+ type: string
+ format: date
+ example: '2024-01-01'
+ endDate:
+ title: End Date
+ description: The ISO 8601 formatted end date (in GMT) of the travel program.
+ type: string
+ format: date
+ example: '2024-12-31'
+ dueDate:
+ title: Due Date
+ description: The ISO 8601 formatted due date (in GMT) of the travel program.
+ type: string
+ format: date
+ example: '2023-11-13'
+ closeoutDate:
+ title: Closeout Date
+ description: The ISO 8601 formatted decision date (in GMT) of the travel program.
+ type: string
+ format: date
+ example: '2023-11-13'
+ questions:
+ title: Questions
+ description: A list of program specific questions for the supplier to answer as part of their proposal.
+ type: array
+ items:
+ $ref: '#/components/schemas/TravelProgramQuestion-1'
+ travel-program-paginated-response:
+ title: Travel program paginated response
+ description: A paginated list of travel programs.
+ type: object
+ properties:
+ paging:
+ $ref: '#/components/schemas/Paging'
+ data:
+ type: array
+ items:
+ $ref: '#/components/schemas/travel-program'
+ description: Collection of travel programs and their related details.
+ travel-proposal:
+ title: Travel Proposal
+ type: object
+ description: Represents travel proposals. Travel proposals are created by the travel supplier in response to a travel account's program.
+ allOf:
+ - $ref: '#/components/schemas/Audit'
+ properties:
+ id:
+ title: Proposal ID
+ description: The unique ID of the travel proposal.
+ type: string
+ format: uuid
+ example: 3e2a8614-7d52-442e-8c4f-a6a18ed9ac4d
+ readOnly: true
+ supplierProperty:
+ title: Supplier Property
+ description: Supplier property that the proposal is tied to.
+ type: object
+ properties:
+ id:
+ title: Supplier Property ID
+ description: The unique ID of the supplier property.
+ type: string
+ format: uuid
+ example: a1c79ba8-9553-4fb0-80bd-66adac1b2f5d
+ travelProgram:
+ title: Travel Program
+ description: Travel program that the proposal is in response to.
+ type: object
+ properties:
+ id:
+ title: Travel Program ID
+ description: The unique ID of the travel program.
+ type: string
+ format: uuid
+ example: ddc61444-45c7-4e1d-9fdd-07713c8baf9b
+ contractPeriod:
+ type: integer
+ example: 2021
+ description: Contract period of the proposal. The year the contract begins.
+ status:
+ $ref: '#/components/schemas/proposal-status-type'
+ deleted:
+ type: boolean
+ default: false
+ description: True indicates the proposal is deleted.
+ rateReviewStatus:
+ $ref: '#/components/schemas/RateReviewStatusType'
+ businessType:
+ $ref: '#/components/schemas/business-type'
+ format:
+ $ref: '#/components/schemas/format-type'
+ documentRead:
+ type: boolean
+ default: false
+ description: True indicates the documents been read by the supply-side.
+ rejectReasonCode:
+ type: string
+ maxLength: 30
+ example: Other
+ description: Reason the reject/decline action was performed. Used for certain actions/statuses.
+ rejectComment:
+ type: string
+ maxLength: 2000
+ example: other reasons
+ description: Comments regarding the reasoning for the reject/decline action. This only comes into play for certain actions/statuses.
+ submitDate:
+ type: string
+ format: date-time
+ description: The ISO 8601 datetime when proposal was submitted by the hotel.
+ example: '2030-02-10T00:00:00.000Z'
+ negotiationRound:
+ type: integer
+ description: The current round of negotiations.
+ example: 1
+ negotiationDueDate:
+ type: string
+ format: date-time
+ description: The ISO 8601 datetime when the negotiation response is due.
+ example: '2030-02-10T00:00:00.000Z'
+ roomNightConsumption:
+ type: integer
+ description: Client room nights produced at property from January 1 through June 30.
+ example: 100
+ draft:
+ type: boolean
+ description: True indicates this proposal is a draft copy that is not sent to the other party.
+ bids:
+ type: array
+ description: Collection of bid IDs attached to the proposal.
+ items:
+ $ref: '#/components/schemas/TravelProposalBid'
+ customQuestionAnswers:
+ type: array
+ description: Collection of custom questions.
+ items:
+ $ref: '#/components/schemas/TravelProposalCustomQuestion'
+ groupAndMeeting:
+ $ref: '#/components/schemas/TravelProposalGroupAndMeeting'
+ proposalDisposition:
+ $ref: '#/components/schemas/TravelProposalDisposition'
+ travel-proposal-bid:
+ title: Travel Proposal Bid
+ type: object
+ description: A travel proposal bid rate plan that is being proposed to a customer.
+ properties:
+ travelProposal:
+ description: The travel proposal that the bid belongs to.
+ type: object
+ properties:
+ id:
+ title: Travel Proposal ID
+ description: The ID of the travel proposal.
+ type: string
+ format: uuid
+ example: a91187db-d3c2-4035-b696-1d77fb1ab9d8
+ id:
+ title: Bid ID
+ description: The unique ID of the bid.
+ type: string
+ format: uuid
+ example: 3e2a8614-7d52-442e-8c4f-a6a18ed9ac4d
+ readOnly: true
+ stayType:
+ $ref: '#/components/schemas/BidStayType'
+ order:
+ type: integer
+ default: 1
+ example: 1
+ description: The order of the bid compared to other bids of the same stay type. This is used to distinguish between extended stay 1 vs extended stay 2.
+ status:
+ $ref: '#/components/schemas/BidStatusType'
+ name:
+ type: string
+ minLength: 3
+ maxLength: 60
+ description: Name given to the bid.
+ example: My Corporate Bid
+ rate:
+ $ref: '#/components/schemas/TravelProposalBidRate'
+ marketCode:
+ type: string
+ description: The market code given to the rate plan / bid by the supplier.
+ maxLength: 10
+ example: mc12
+ currencyCode:
+ type: string
+ minLength: 3
+ maxLength: 3
+ example: USD
+ description: The ISO 4217 currency code used for the rates and other monetary values in the bid.
+ weekendDays:
+ type: array
+ description: Days of the week that are considered weekend days, to apply weekend rates. Does not apply when format is GBTA2013.
+ items:
+ $ref: '#/components/schemas/TravelBidWeekendDays'
+ lra:
+ type: boolean
+ default: true
+ description: Does the bid include LRA (Last Room Availability) rates?
+ nlra:
+ type: boolean
+ default: true
+ description: Does the bid include non-LRA rates?
+ fairDateLra:
+ type: boolean
+ default: true
+ description: Are the fair date rates LRA (Last Room Availability)?
+ internalNote:
+ type: string
+ maxLength: 3000
+ example: ''
+ description: Additional comments passed from the domain-level rate plan.
+ comments:
+ type: array
+ description: Additional Info
+ items:
+ $ref: '#/components/schemas/TravelBidComment'
+ maxItems: 5
+ roomTypes:
+ type: array
+ description: Room Types associated with the bid
+ items:
+ $ref: '#/components/schemas/TravelBidRoom'
+ maxItems: 99
+ seasons:
+ type: array
+ description: Seasons associated with the bid
+ items:
+ $ref: '#/components/schemas/TravelBidSeason'
+ maxItems: 99
+ discounts:
+ type: array
+ description: Dynamic discounts associated with the bid
+ items:
+ $ref: '#/components/schemas/TravelBidDiscount'
+ maxItems: 99
+ fairSeasons:
+ type: array
+ description: Fair seasons associated with the bid
+ items:
+ $ref: '#/components/schemas/TravelBidFairSeason'
+ maxItems: 99
+ amenities:
+ type: array
+ description: Amenities associated with the bid
+ items:
+ $ref: '#/components/schemas/TravelBidAmenity'
+ policies:
+ type: array
+ description: Policies associated with the bid
+ items:
+ $ref: '#/components/schemas/TravelBidPolicy'
+ taxesAndFees:
+ type: array
+ description: Taxes & fees associated with the bid
+ items:
+ $ref: '#/components/schemas/TravelBidTaxAndFee'
+ travel-proposal-bid-paginated-response:
+ title: Travel Proposal Paginated Response
+ description: A paginated list of travel proposals.
+ type: object
+ properties:
+ paging:
+ $ref: '#/components/schemas/Paging'
data:
type: array
items:
- $ref: '#/components/schemas/travel-account-supplier-account'
- description: Collection of suppliers travel accounts and their related details.
- travel-account-type.json:
+ $ref: '#/components/schemas/travel-proposal-bid'
+ description: Paginated list of business transient proposal bids.
+ travel-proposal-paginated-response:
+ title: Travel Proposal Paginated Response
+ description: A paginated list of travel proposals.
+ type: object
+ properties:
+ paging:
+ $ref: '#/components/schemas/Paging'
+ data:
+ type: array
+ items:
+ $ref: '#/components/schemas/travel-proposal'
+ description: Paginated list of business transient proposals.
+ TravelAccountType:
title: Travel Account Type
enum:
- corporate
@@ -52076,53 +51512,13 @@ components:
type: string
description: Code representing the travel account type.
example: corporate
- travel-amenity.json:
- title: Travel Proposal Group And Meeting Amenity
- description: Group and meeting amenity info.
- type: object
- properties:
- lcdIncluded:
- type: boolean
- description: True indicates a liquid crystal display (LCD) is included in the amenity.
- lcdPrice:
- type: number
- minimum: 0.01
- maximum: 9999999999.99
- description: Price of the liquid crystal display (LCD).
- example: 100
- screenIncluded:
- type: boolean
- description: True indicates a screen is included in the amenity.
- screenPrice:
- type: number
- minimum: 0.01
- maximum: 9999999999.99
- description: Price of the screen.
- example: 100
- hsiaIncluded:
- type: boolean
- description: True indicates high speed internet access is included in the amenity.
- hsiaPrice:
- type: number
- minimum: 0.01
- maximum: 9999999999.99
- description: Price of high speed internet access (HSIA).
- example: 100
- complementaryParkingIncluded:
- type: boolean
- description: True indicates parking is included in the amenity.
- whatCompanyProvidesAVEquipment:
- type: string
- maxLength: 100
- description: Name of company providing AV equipment.
- example: Some company
- travel-bid-amenity.json:
+ TravelBidAmenity:
title: Travel Bid Amenity
type: object
description: Amenity details for a travel bid.
properties:
type:
- $ref: '#/components/schemas/amenity-type.json'
+ $ref: '#/components/schemas/AmenityType'
code:
type: string
minLength: 1
@@ -52163,20 +51559,20 @@ components:
description: Additional notes on the amenity.
example: Valet parking is available for all guests.
status:
- $ref: '#/components/schemas/bid-item-status-type.json'
- travel-bid-comment.json:
+ $ref: '#/components/schemas/BidItemStatusType'
+ TravelBidComment:
title: Travel Bid Comment
type: object
description: A comment on a travel bid.
properties:
commentType:
- $ref: '#/components/schemas/comment-type.json'
+ $ref: '#/components/schemas/CommentType'
comment:
description: The text of the comment.
type: string
maxLength: 3000
example: This is a high value client.
- travel-bid-discount.json:
+ TravelBidDiscount:
title: Travel Bid Discount
type: object
description: Discount for a travel bid.
@@ -52199,8 +51595,22 @@ components:
description: Discount percentage for the dynamic rate.
example: 10
status:
- $ref: '#/components/schemas/bid-item-status-type.json'
- travel-bid-disposition-accepted-room.json:
+ $ref: '#/components/schemas/BidItemStatusType'
+ TravelBidDisposition:
+ title: Travel Bid Disposition
+ type: object
+ description: Represents bid disposition details.
+ properties:
+ bid:
+ $ref: '#/components/schemas/TravelProposalBid'
+ acceptedBidRooms:
+ type: array
+ description: List of accepted bid rooms.
+ items:
+ $ref: '#/components/schemas/TravelBidDispositionAcceptedRoom'
+ rateType:
+ $ref: '#/components/schemas/RateType'
+ TravelBidDispositionAcceptedRoom:
title: Travel Bid Disposition Accepted Room
type: object
description: Represents bid disposition's accepted room.
@@ -52226,21 +51636,48 @@ components:
description: Indicates whether the NLRA rates are accepted.
type: boolean
example: true
- travel-bid-disposition.json:
- title: Travel Bid Disposition
+ TravelBidFairSeason:
+ title: Travel Bid Fair Season
type: object
- description: Represents bid disposition details.
+ description: The fair season for a travel bid.
properties:
- bid:
- $ref: '#/components/schemas/travel-proposal-bid-id.json'
- acceptedBidRooms:
+ type:
+ $ref: '#/components/schemas/FairSeasonType'
+ name:
+ type: string
+ maxLength: 20
+ description: Fair season name.
+ example: Fair season 1
+ startDate:
+ type: string
+ format: date
+ description: The ISO 8601 start date of the fair season.
+ example: '2021-07-13'
+ endDate:
+ type: string
+ format: date
+ description: The ISO 8601 end date of the fair season.
+ example: '2021-07-13'
+ minLengthOfStay:
+ type: integer
+ minimum: 1
+ maximum: 999
+ description: Minimum length of stay for the fair season.
+ example: 1
+ releasePeriod:
+ type: integer
+ minimum: 1
+ maximum: 999
+ description: Release period for the fair season. Release period is the minimum number of days between the booking being made and the earliest arrival date.
+ example: 1
+ rates:
type: array
- description: List of accepted bid rooms.
+ description: Collection of rates for the fair season.
items:
- $ref: '#/components/schemas/travel-bid-disposition-accepted-room.json'
- rateType:
- $ref: '#/components/schemas/rate-type.json'
- travel-bid-fair-season-rate.json:
+ $ref: '#/components/schemas/TravelBidFairSeasonRate'
+ status:
+ $ref: '#/components/schemas/BidItemStatusType'
+ TravelBidFairSeasonRate:
title: Travel Bid Fair Season Rate
type: object
description: The negotiated rates for a property room during the fair season.
@@ -52287,49 +51724,8 @@ components:
description: The number of rooms allotted at the negotiated rate.
example: 100
status:
- $ref: '#/components/schemas/bid-item-status-type.json'
- travel-bid-fair-season.json:
- title: Travel Bid Fair Season
- type: object
- description: The fair season for a travel bid.
- properties:
- type:
- $ref: '#/components/schemas/fair-season-type.json'
- name:
- type: string
- maxLength: 20
- description: Fair season name.
- example: Fair season 1
- startDate:
- type: string
- format: date
- description: The ISO 8601 start date of the fair season.
- example: '2021-07-13'
- endDate:
- type: string
- format: date
- description: The ISO 8601 end date of the fair season.
- example: '2021-07-13'
- minLengthOfStay:
- type: integer
- minimum: 1
- maximum: 999
- description: Minimum length of stay for the fair season.
- example: 1
- releasePeriod:
- type: integer
- minimum: 1
- maximum: 999
- description: Release period for the fair season. Release period is the minimum number of days between the booking being made and the earliest arrival date.
- example: 1
- rates:
- type: array
- description: Collection of rates for the fair season.
- items:
- $ref: '#/components/schemas/travel-bid-fair-season-rate.json'
- status:
- $ref: '#/components/schemas/bid-item-status-type.json'
- travel-bid-policy.json:
+ $ref: '#/components/schemas/BidItemStatusType'
+ TravelBidPolicy:
title: Travel Bid Policy
type: object
description: A policy that is associated with a travel bid.
@@ -52353,7 +51749,7 @@ components:
description: The value of the policy.
example: 24h
valueType:
- $ref: '#/components/schemas/policy-value-type.json'
+ $ref: '#/components/schemas/PolicyValueType'
included:
type: boolean
default: false
@@ -52364,27 +51760,8 @@ components:
description: Additional notes on the policy.
example: The cancellation period is 24 hours.
status:
- $ref: '#/components/schemas/bid-item-status-type.json'
- travel-bid-rate.json:
- title: Travel Proposal Bid Rate
- type: object
- description: The rate (cost) information for a travel bid.
- properties:
- level:
- $ref: '#/components/schemas/rate-level-type.json'
- type:
- $ref: '#/components/schemas/rate-type.json'
- planCode:
- type: string
- description: The code given to the bid (also called rate plan) by the supplier.
- maxLength: 10
- example: rp123
- tier:
- type: string
- description: The rate tier given to the bid (also called rate plan) by the supplier.
- maxLength: 10
- example: tier1
- travel-bid-room.json:
+ $ref: '#/components/schemas/BidItemStatusType'
+ TravelBidRoom:
title: Travel Bid Room
type: object
description: A room in a travel bid.
@@ -52411,8 +51788,52 @@ components:
description: The order of the room in the bid.
example: 1
status:
- $ref: '#/components/schemas/bid-item-status-type.json'
- travel-bid-season-rate.json:
+ $ref: '#/components/schemas/BidItemStatusType'
+ TravelBidSeason:
+ title: Travel Bid Season
+ type: object
+ description: Season details for a travel bid.
+ properties:
+ name:
+ type: string
+ maxLength: 20
+ description: Season name.
+ example: Season 1
+ startDate:
+ type: string
+ format: date
+ description: The ISO 8601 start date of the season.
+ example: '2021-07-13'
+ endDate:
+ type: string
+ format: date
+ description: The ISO 8601 end date of the season.
+ example: '2021-07-13'
+ releasePeriod:
+ type: integer
+ minimum: 1
+ maximum: 999
+ example: 1
+ description: Number of release periods.
+ weekendReleasePeriod:
+ type: integer
+ minimum: 1
+ maximum: 999
+ example: 2
+ description: Number of weekend release periods.
+ rates:
+ type: array
+ description: Collection of rates for the season.
+ items:
+ $ref: '#/components/schemas/TravelBidSeasonRate'
+ weekendRates:
+ type: array
+ description: Collection of weekend rates for the season.
+ items:
+ $ref: '#/components/schemas/TravelBidSeasonRate'
+ status:
+ $ref: '#/components/schemas/BidItemStatusType'
+ TravelBidSeasonRate:
title: Travel Bid Season Rate
description: The negotiated rates for a property room during a specific season.
type: object
@@ -52471,58 +51892,14 @@ components:
description: The number of rooms allotted at the negotiated rate.
example: 100
status:
- $ref: '#/components/schemas/bid-item-status-type.json'
- travel-bid-season.json:
- title: Travel Bid Season
- type: object
- description: Season details for a travel bid.
- properties:
- name:
- type: string
- maxLength: 20
- description: Season name.
- example: Season 1
- startDate:
- type: string
- format: date
- description: The ISO 8601 start date of the season.
- example: '2021-07-13'
- endDate:
- type: string
- format: date
- description: The ISO 8601 end date of the season.
- example: '2021-07-13'
- releasePeriod:
- type: integer
- minimum: 1
- maximum: 999
- example: 1
- description: Number of release periods.
- weekendReleasePeriod:
- type: integer
- minimum: 1
- maximum: 999
- example: 2
- description: Number of weekend release periods.
- rates:
- type: array
- description: Collection of rates for the season.
- items:
- $ref: '#/components/schemas/travel-bid-season-rate.json'
- weekendRates:
- type: array
- description: Collection of weekend rates for the season.
- items:
- $ref: '#/components/schemas/travel-bid-season-rate.json'
- status:
- $ref: '#/components/schemas/bid-item-status-type.json'
- travel-bid-tax-fee.json:
+ $ref: '#/components/schemas/BidItemStatusType'
+ TravelBidTaxAndFee:
title: Travel Bid Tax and Fee
description: A tax or fee associated with a travel bid.
type: object
properties:
code:
- $ref: '#/components/schemas/tax-type.json'
+ $ref: '#/components/schemas/TaxType'
amount:
type: number
description: The amount of the tax/fee. This may be a percent or monetary value depending on the value in `percent`.
@@ -52543,8 +51920,8 @@ components:
description: Additional notes on the tax/fee.
example: This is a tax
status:
- $ref: '#/components/schemas/bid-item-status-type.json'
- travel-bid-weekend-day.json:
+ $ref: '#/components/schemas/BidItemStatusType'
+ TravelBidWeekendDays:
title: Travel Bid Weekend Days
enum:
- Monday
@@ -52557,228 +51934,67 @@ components:
type: string
description: Days considered weekend days for pricing purposes in the travel bid.
example: Sunday
- travel-break-out-room.json:
- title: Travel Proposal Group And Meeting Break Out Room
- description: Break-out room information.
- type: object
- properties:
- 10PersonRoomIncluded:
- type: boolean
- description: True indicates a 10 person room is included.
- price10PersonRoom:
- type: number
- minimum: 0.01
- maximum: 9999999999.99
- description: Price for 10 person room.
- example: 100
- 25PersonRoomIncluded:
- type: boolean
- description: True indicates a 25 person room included.
- price25PersonRoom:
- type: number
- minimum: 0.01
- maximum: 9999999999.99
- description: Price for 25 person room.
- example: 100
- permanentBoardRoomSetUp:
- type: boolean
- description: True indicates there is a permanent board room set up.
- travel-day-delegate-rate.json:
- title: Travel Proposal Group And Meeting Day Delegate Rate
- description: Day delegate rate information. This represents the costs for hosting meeting at the venue for a half or full day.
- type: object
- properties:
- fullDay10To50People:
- type: number
- minimum: 0.01
- maximum: 9999999999.99
- description: Full day delegate rate for 10 to 50 people.
- example: 100
- fullDay51To100People:
- type: number
- minimum: 0.01
- maximum: 9999999999.99
- description: Full day delegate rate for 51 to 100 people.
- example: 200
- halfDay10To50People:
- type: number
- minimum: 0.01
- maximum: 9999999999.99
- description: Half day delegate rate for 10 to 50 people.
- example: 50
- halfDay51To100People:
- type: number
- minimum: 0.01
- maximum: 9999999999.99
- description: Half day delegate rate for 51 to 100 people.
- example: 100
- travel-departure-arrival.json:
- title: TravelDepartureArrival
- type: object
- description: Common object that holds travel departure/arrival information.
- properties:
- time:
- description: The ISO 8601 formatted date.
- type: string
- format: date-time
- example: '2024-12-01T00:00:00Z'
- carrier:
- description: ICAO code.
- type: string
- example: JBU
- maxLength: 3
- carrierNumber:
- description: Carrier number.
- type: string
- example: '12345'
- maxLength: 32
- travel-details.json:
- title: TravelDetails
- type: object
- description: Common object that holds travel details information.
- properties:
- arrival:
- $ref: '#/components/schemas/travel-departure-arrival.json'
- departure:
- $ref: '#/components/schemas/travel-departure-arrival.json'
- additionalInformation:
- description: Additional information about travel.
- type: string
- example: Additional Information
- maxLength: 1000
- travel-group-and-meeting.json:
- title: Travel Proposal Group and Meeting
- description: Group and meeting information.
- type: object
- properties:
- runOfHouseRate:
- $ref: '#/components/schemas/travel-run-of-house-rate.json'
- dayDelegateRate:
- $ref: '#/components/schemas/travel-day-delegate-rate.json'
- taxAndServiceCharge:
- $ref: '#/components/schemas/travel-tax-and-service-charge.json'
- meetingRoomBasicInformation:
- $ref: '#/components/schemas/travel-meeting-room-basic-info.json'
- amenity:
- $ref: '#/components/schemas/travel-amenity.json'
- breakOutRoom:
- $ref: '#/components/schemas/travel-break-out-room.json'
- travel-meeting-room-basic-info.json:
- title: Travel Proposal Group And Meeting Meeting Room Basic Information
- description: Meeting room basic information.
- type: object
- properties:
- largestMeetingRoom:
- type: integer
- minimum: 1
- maximum: 9999999999
- description: Size of the largest meeting room. Units of measurement determined by `unitOfMeasurement` field.
- example: 1000
- unitOfMeasurement:
- type: string
- maxLength: 50
- example: sq.ft.
- description: Unit of measurement of the `largestMeetingRoom`'s size.
- meetingRooms:
- type: integer
- minimum: 1
- maximum: 9999999999
- description: Total number of meeting rooms.
- example: 10
- travel-program:
- title: Travel Program
- description: Travel program details.
+ TravelProgramFormatType:
+ title: Travel Program Format Type
+ enum:
+ - gbta2013
+ - universal
+ type: string
+ description: Code representing the format of the travel program.
+ example: gbta2013
+ TravelProgramQuestion:
+ title: Travel Program Question
+ description: A question, defined by the program, for the supplier to answer as part of their proposal.
type: object
allOf:
- - $ref: '#/components/schemas/travel-account/allOf/0'
+ - $ref: '#/components/schemas/Audit'
properties:
- id:
- title: Program ID
- description: The unique ID of the travel program.
- type: string
- format: uuid
- example: 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3
- name:
- title: Program Name
- type: string
- maxLength: 60
- description: The name of the travel program.
- example: Test Program
- contractPeriod:
- title: Originating Contract Period
- description: The contract year in which the travel program originated.
- type: integer
- example: 2023
- type:
- $ref: '#/components/schemas/travel-program-type.json'
- format:
- $ref: '#/components/schemas/travel-program-format-type.json'
- status:
- $ref: '#/components/schemas/travel-program-status.json'
- travelAccount:
- title: Travel Account
- description: Travel account that the program belongs to.
+ travelProgram:
+ title: Travel Program
+ description: Travel program that the question belongs to.
type: object
properties:
id:
- title: Travel Account ID
- description: The unique ID of the travel account.
+ title: Travel Program ID
+ description: The unique ID of the travel program.
type: string
format: uuid
- example: 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3
- stayType:
- $ref: '#/components/schemas/travel-program-stay-type.json'
- startDate:
- title: Start Date
- description: The ISO 8601 formatted start date (in GMT) of the travel program.
- type: string
- format: date
- example: '2024-01-01'
- endDate:
- title: End Date
- description: The ISO 8601 formatted end date (in GMT) of the travel program.
- type: string
- format: date
- example: '2024-12-31'
- dueDate:
- title: Due Date
- description: The ISO 8601 formatted due date (in GMT) of the travel program.
+ example: ddc61444-45c7-4e1d-9fdd-07713c8baf9b
+ id:
+ title: Question ID
+ description: The unique ID of the question.
type: string
- format: date
- example: '2023-11-13'
- closeoutDate:
- title: Closeout Date
- description: The ISO 8601 formatted decision date (in GMT) of the travel program.
+ format: uuid
+ example: 76c461cb-77f6-40b3-acc8-db44452f11c4
+ text:
+ title: Question Text
+ description: The text of the question.
type: string
- format: date
- example: '2023-11-13'
- questions:
- title: Questions
- description: A list of program specific questions for the supplier to answer as part of their proposal.
- type: array
- items:
- $ref: '#/components/schemas/travel-program-question.json'
- travel-program-format-type.json:
- title: Travel Program Format Type
- enum:
- - gbta2013
- - universal
- type: string
- description: Code representing the format of the travel program.
- example: gbta2013
- travel-program-paginated-response:
- title: Travel program paginated response
- description: A paginated list of travel programs.
- type: object
- properties:
- paging:
- $ref: '#/components/schemas/paging.json'
- data:
+ maxLength: 300
+ example: What type of food is served in the hotel restaurant?
+ required:
+ title: Required
+ type: boolean
+ example: true
+ description: Is this question required by default?
+ responseType:
+ $ref: '#/components/schemas/QuestionResponseType'
+ responseDataType:
+ $ref: '#/components/schemas/QuestionResponseDataType'
+ responseFormat:
+ $ref: '#/components/schemas/QuestionResponseFormat'
+ responseChoices:
+ title: Response Choices
+ description: A list of options for the question. This only applies when responseType is 'choice'
type: array
items:
- $ref: '#/components/schemas/travel-program'
- description: Collection of travel programs and their related details.
- travel-program-question.json:
+ type: string
+ example:
+ - Mexican
+ - American
+ - French
+ - Other
+ TravelProgramQuestion-1:
title: Travel Program Question
description: A question, defined by the account, for the supplier to answer as part of their proposal.
type: object
@@ -52790,7 +52006,7 @@ components:
format: uuid
example: 76c461cb-77f6-40b3-acc8-db44452f11c4
section:
- $ref: '#/components/schemas/question-section.json'
+ $ref: '#/components/schemas/QuestionSection'
required:
title: Required?
description: Is it required for suppliers to answer this question in their proposal?
@@ -52801,7 +52017,7 @@ components:
description: The sequence number of the question within the proposal.
type: integer
example: 1
- travel-program-status.json:
+ TravelProgramStatus:
title: Travel Program Status
enum:
- in_progress
@@ -52810,7 +52026,7 @@ components:
type: string
description: Code representing the status of the travel program.
example: complete
- travel-program-stay-type.json:
+ TravelProgramStayType:
title: Travel Program Stay Type
enum:
- daily
@@ -52818,7 +52034,7 @@ components:
type: string
description: Code representing the stay types requested by the program. Programs can accept daily only, or daily and extended stay proposals.
example: daily
- travel-program-type.json:
+ TravelProgramType:
title: Travel Program Type
enum:
- corporate
@@ -52827,273 +52043,59 @@ components:
type: string
description: Code representing the travel program type.
example: corporate
- travel-proposal:
- title: Travel Proposal
+ TravelProposalBid:
+ title: Travel Proposal Bid
type: object
- description: Represents travel proposals. Travel proposals are created by the travel supplier in response to a travel account's program.
- allOf:
- - title: Audit
- description: Audit information
- type: object
- properties:
- created:
- type: string
- format: date-time
- description: The ISO 8601 zoned date time when this record was created.
- readOnly: true
- example: '2017-01-02T02:00:00Z'
- createdBy:
- type: string
- description: The identifier of the user that created this record.
- readOnly: true
- example: hporter
- lastModified:
- type: string
- format: date-time
- description: The ISO 8601 zoned date time when this record was updated.
- readOnly: true
- example: '2019-02-12T03:00:00Z'
- lastModifiedBy:
- type: string
- description: The identifier of the user that last updated this record.
- readOnly: true
- example: hporter
+ description: A travel proposal bid.
properties:
id:
- title: Proposal ID
- description: The unique ID of the travel proposal.
+ title: Bid ID
+ description: The ID of the bid.
type: string
format: uuid
- example: 3e2a8614-7d52-442e-8c4f-a6a18ed9ac4d
- readOnly: true
- supplierProperty:
- title: Supplier Property
- description: Supplier property that the proposal is tied to.
- type: object
- properties:
- id:
- title: Supplier Property ID
- description: The unique ID of the supplier property.
- type: string
- format: uuid
- example: a1c79ba8-9553-4fb0-80bd-66adac1b2f5d
- travelProgram:
- title: Travel Program
- description: Travel program that the proposal is in response to.
- type: object
- properties:
- id:
- title: Travel Program ID
- description: The unique ID of the travel program.
- type: string
- format: uuid
- example: ddc61444-45c7-4e1d-9fdd-07713c8baf9b
- contractPeriod:
- type: integer
- example: 2021
- description: Contract period of the proposal. The year the contract begins.
- status:
- $ref: '#/components/schemas/proposal-status-type.json'
- deleted:
- type: boolean
- default: false
- description: True indicates the proposal is deleted.
- rateReviewStatus:
- $ref: '#/components/schemas/rate-review-status-type.json'
- businessType:
- $ref: '#/components/schemas/business-type.json'
- format:
- $ref: '#/components/schemas/format-type.json'
- documentRead:
- type: boolean
- default: false
- description: True indicates the documents been read by the supply-side.
- rejectReasonCode:
- type: string
- maxLength: 30
- example: Other
- description: Reason the reject/decline action was performed. Used for certain actions/statuses.
- rejectComment:
- type: string
- maxLength: 2000
- example: other reasons
- description: Comments regarding the reasoning for the reject/decline action. This only comes into play for certain actions/statuses.
- submitDate:
+ example: 1c208c0d-cf96-42ec-a2c3-7ab7a5c04825
+ TravelProposalBidRate:
+ title: Travel Proposal Bid Rate
+ type: object
+ description: The rate (cost) information for a travel bid.
+ properties:
+ level:
+ $ref: '#/components/schemas/RateLevelType'
+ type:
+ $ref: '#/components/schemas/RateType'
+ planCode:
type: string
- format: date-time
- description: The ISO 8601 datetime when proposal was submitted by the hotel.
- example: '2030-02-10T00:00:00.000Z'
- negotiationRound:
- type: integer
- description: The current round of negotiations.
- example: 1
- negotiationDueDate:
+ description: The code given to the bid (also called rate plan) by the supplier.
+ maxLength: 10
+ example: rp123
+ tier:
type: string
- format: date-time
- description: The ISO 8601 datetime when the negotiation response is due.
- example: '2030-02-10T00:00:00.000Z'
- roomNightConsumption:
- type: integer
- description: Client room nights produced at property from January 1 through June 30.
- example: 100
- draft:
- type: boolean
- description: True indicates this proposal is a draft copy that is not sent to the other party.
- bids:
- type: array
- description: Collection of bid IDs attached to the proposal.
- items:
- $ref: '#/components/schemas/travel-proposal-bid-id.json'
- customQuestionAnswers:
- type: array
- description: Collection of custom questions.
- items:
- $ref: '#/components/schemas/custom-question-answer.json-0'
- groupAndMeeting:
- $ref: '#/components/schemas/travel-group-and-meeting.json'
- proposalDisposition:
- $ref: '#/components/schemas/travel-proposal-disposition.json'
- travel-proposal-bid:
- title: Travel Proposal Bid
+ description: The rate tier given to the bid (also called rate plan) by the supplier.
+ maxLength: 10
+ example: tier1
+ TravelProposalCustomQuestion:
+ title: Travel Proposal Custom Question
+ description: Represents custom question associated with a travel proposal.
type: object
- description: A travel proposal bid rate plan that is being proposed to a customer.
properties:
- travelProposal:
- description: The travel proposal that the bid belongs to.
+ question:
+ title: Question
+ description: Travel account that the proposal is responding to.
type: object
properties:
id:
- title: Travel Proposal ID
- description: The ID of the travel proposal.
+ title: Question ID
+ description: The unique ID of the question.
type: string
format: uuid
- example: a91187db-d3c2-4035-b696-1d77fb1ab9d8
- id:
- title: Bid ID
- description: The unique ID of the bid.
- type: string
- format: uuid
- example: 3e2a8614-7d52-442e-8c4f-a6a18ed9ac4d
- readOnly: true
- stayType:
- $ref: '#/components/schemas/bid-stay-type.json'
- order:
- type: integer
- default: 1
- example: 1
- description: The order of the bid compared to other bids of the same stay type. This is used to distinguish between extended stay 1 vs extended stay 2.
- status:
- $ref: '#/components/schemas/bid-status-type.json'
- name:
- type: string
- minLength: 3
- maxLength: 60
- description: Name given to the bid.
- example: My Corporate Bid
- rate:
- $ref: '#/components/schemas/travel-bid-rate.json'
- marketCode:
- type: string
- description: The market code given to the rate plan / bid by the supplier.
- maxLength: 10
- example: mc12
- currencyCode:
- type: string
- minLength: 3
- maxLength: 3
- example: USD
- description: The ISO 4217 currency code used for the rates and other monetary values in the bid.
- weekendDays:
- type: array
- description: Days of the week that are considered weekend days, to apply weekend rates. Does not apply when format is GBTA2013.
- items:
- $ref: '#/components/schemas/travel-bid-weekend-day.json'
- lra:
- type: boolean
- default: true
- description: Does the bid include LRA (Last Room Availability) rates?
- nlra:
- type: boolean
- default: true
- description: Does the bid include non-LRA rates?
- fairDateLra:
- type: boolean
- default: true
- description: Are the fair date rates LRA (Last Room Availability)?
- internalNote:
- type: string
- maxLength: 3000
- example: ''
- description: Additional comments passed from the domain-level rate plan.
- comments:
- type: array
- description: Additional Info
- items:
- $ref: '#/components/schemas/travel-bid-comment.json'
- maxItems: 5
- roomTypes:
- type: array
- description: Room Types associated with the bid
- items:
- $ref: '#/components/schemas/travel-bid-room.json'
- maxItems: 99
- seasons:
- type: array
- description: Seasons associated with the bid
- items:
- $ref: '#/components/schemas/travel-bid-season.json'
- maxItems: 99
- discounts:
- type: array
- description: Dynamic discounts associated with the bid
- items:
- $ref: '#/components/schemas/travel-bid-discount.json'
- maxItems: 99
- fairSeasons:
- type: array
- description: Fair seasons associated with the bid
- items:
- $ref: '#/components/schemas/travel-bid-fair-season.json'
- maxItems: 99
- amenities:
- type: array
- description: Amenities associated with the bid
- items:
- $ref: '#/components/schemas/travel-bid-amenity.json'
- policies:
- type: array
- description: Policies associated with the bid
- items:
- $ref: '#/components/schemas/travel-bid-policy.json'
- taxesAndFees:
- type: array
- description: Taxes & fees associated with the bid
- items:
- $ref: '#/components/schemas/travel-bid-tax-fee.json'
- travel-proposal-bid-id.json:
- title: Travel Proposal Bid
- type: object
- description: A travel proposal bid.
- properties:
- id:
- title: Bid ID
- description: The ID of the bid.
+ example: 565ceabb-786a-4a6d-8c85-e2fccc867e88
+ answer:
+ title: Answer
+ description: Hotel's answer to the program's custom question.
type: string
- format: uuid
- example: 1c208c0d-cf96-42ec-a2c3-7ab7a5c04825
- travel-proposal-bid-paginated-response:
- title: Travel Proposal Paginated Response
- description: A paginated list of travel proposals.
- type: object
- properties:
- paging:
- $ref: '#/components/schemas/paging.json'
- data:
- type: array
- items:
- $ref: '#/components/schemas/travel-proposal-bid'
- description: Paginated list of business transient proposal bids.
- travel-proposal-disposition.json:
+ maxLength: 4000
+ example: No.
+ TravelProposalDisposition:
title: Travel Proposal Disposition
type: object
description: Represent proposal disposition details.
@@ -53102,24 +52104,146 @@ components:
type: array
description: List of bid dispositions.
items:
- $ref: '#/components/schemas/travel-bid-disposition.json'
+ $ref: '#/components/schemas/TravelBidDisposition'
groupAndMeetingAccepted:
type: boolean
description: Indicates if the group and meeting is accepted.
example: true
- travel-proposal-paginated-response:
- title: Travel Proposal Paginated Response
- description: A paginated list of travel proposals.
+ TravelProposalGroupAndMeeting:
+ title: Travel Proposal Group and Meeting
+ description: Group and meeting information.
type: object
properties:
- paging:
- $ref: '#/components/schemas/paging.json'
- data:
- type: array
- items:
- $ref: '#/components/schemas/travel-proposal'
- description: Paginated list of business transient proposals.
- travel-run-of-house-rate.json:
+ runOfHouseRate:
+ $ref: '#/components/schemas/TravelProposalGroupAndMeetingRunOfHouseRate'
+ dayDelegateRate:
+ $ref: '#/components/schemas/TravelProposalGroupAndMeetingDayDelegateRate'
+ taxAndServiceCharge:
+ $ref: '#/components/schemas/TravelProposalGroupAndMeetingTaxAndServiceCharge'
+ meetingRoomBasicInformation:
+ $ref: '#/components/schemas/TravelProposalGroupAndMeetingMeetingRoomBasicInformation'
+ amenity:
+ $ref: '#/components/schemas/TravelProposalGroupAndMeetingAmenity'
+ breakOutRoom:
+ $ref: '#/components/schemas/TravelProposalGroupAndMeetingBreakOutRoom'
+ TravelProposalGroupAndMeetingAmenity:
+ title: Travel Proposal Group And Meeting Amenity
+ description: Group and meeting amenity info.
+ type: object
+ properties:
+ lcdIncluded:
+ type: boolean
+ description: True indicates a liquid crystal display (LCD) is included in the amenity.
+ lcdPrice:
+ type: number
+ minimum: 0.01
+ maximum: 9999999999.99
+ description: Price of the liquid crystal display (LCD).
+ example: 100
+ screenIncluded:
+ type: boolean
+ description: True indicates a screen is included in the amenity.
+ screenPrice:
+ type: number
+ minimum: 0.01
+ maximum: 9999999999.99
+ description: Price of the screen.
+ example: 100
+ hsiaIncluded:
+ type: boolean
+ description: True indicates high speed internet access is included in the amenity.
+ hsiaPrice:
+ type: number
+ minimum: 0.01
+ maximum: 9999999999.99
+ description: Price of high speed internet access (HSIA).
+ example: 100
+ complementaryParkingIncluded:
+ type: boolean
+ description: True indicates parking is included in the amenity.
+ whatCompanyProvidesAVEquipment:
+ type: string
+ maxLength: 100
+ description: Name of company providing AV equipment.
+ example: Some company
+ TravelProposalGroupAndMeetingBreakOutRoom:
+ title: Travel Proposal Group And Meeting Break Out Room
+ description: Break-out room information.
+ type: object
+ properties:
+ 10PersonRoomIncluded:
+ type: boolean
+ description: True indicates a 10 person room is included.
+ price10PersonRoom:
+ type: number
+ minimum: 0.01
+ maximum: 9999999999.99
+ description: Price for 10 person room.
+ example: 100
+ 25PersonRoomIncluded:
+ type: boolean
+ description: True indicates a 25 person room included.
+ price25PersonRoom:
+ type: number
+ minimum: 0.01
+ maximum: 9999999999.99
+ description: Price for 25 person room.
+ example: 100
+ permanentBoardRoomSetUp:
+ type: boolean
+ description: True indicates there is a permanent board room set up.
+ TravelProposalGroupAndMeetingDayDelegateRate:
+ title: Travel Proposal Group And Meeting Day Delegate Rate
+ description: Day delegate rate information. This represents the costs for hosting meeting at the venue for a half or full day.
+ type: object
+ properties:
+ fullDay10To50People:
+ type: number
+ minimum: 0.01
+ maximum: 9999999999.99
+ description: Full day delegate rate for 10 to 50 people.
+ example: 100
+ fullDay51To100People:
+ type: number
+ minimum: 0.01
+ maximum: 9999999999.99
+ description: Full day delegate rate for 51 to 100 people.
+ example: 200
+ halfDay10To50People:
+ type: number
+ minimum: 0.01
+ maximum: 9999999999.99
+ description: Half day delegate rate for 10 to 50 people.
+ example: 50
+ halfDay51To100People:
+ type: number
+ minimum: 0.01
+ maximum: 9999999999.99
+ description: Half day delegate rate for 51 to 100 people.
+ example: 100
+ TravelProposalGroupAndMeetingMeetingRoomBasicInformation:
+ title: Travel Proposal Group And Meeting Meeting Room Basic Information
+ description: Meeting room basic information.
+ type: object
+ properties:
+ largestMeetingRoom:
+ type: integer
+ minimum: 1
+ maximum: 9999999999
+ description: Size of the largest meeting room. Units of measurement determined by `unitOfMeasurement` field.
+ example: 1000
+ unitOfMeasurement:
+ type: string
+ maxLength: 50
+ example: sq.ft.
+ description: Unit of measurement of the `largestMeetingRoom`'s size.
+ meetingRooms:
+ type: integer
+ minimum: 1
+ maximum: 9999999999
+ description: Total number of meeting rooms.
+ example: 10
+ TravelProposalGroupAndMeetingRunOfHouseRate:
title: Travel Proposal Group And Meeting Run of House Rate
description: Run of house rate information.
type: object
@@ -53184,7 +52308,7 @@ components:
maximum: 9999999999.99
description: Season five run of house rate for 51-100 people.
example: 1000
- travel-tax-and-service-charge.json:
+ TravelProposalGroupAndMeetingTaxAndServiceCharge:
title: Travel Proposal Group And Meeting Tax and Service Charge
description: Tax and service charge information.
type: object
@@ -53229,7 +52353,7 @@ components:
type: string
description: Status of the travel request done by attendee.
example: SUBMITTED
- unit-position.json:
+ unit-position:
type: string
description: Unit position used for text box question type.
enum:
@@ -53253,7 +52377,7 @@ components:
format: uuid
description: Unique identifier of the appointment to be updated.
example: a3d77c44-bb4b-41dd-9c37-18230cc66ce4
- updated-through-name-property.json:
+ UpdatedThroughNameProperty:
title: UpdatedThroughNameProperty
description: Name of the place where this change was updated through.
type: string
@@ -53484,7 +52608,7 @@ components:
type: array
description: 'The address of the user. The user can have only one address.
If multiple addresses are provided, only one is accepted and rest are ignored. One address is selected based on the following sequence of criteria: primary, work type, first in the sequence'
items:
- $ref: '#/components/schemas/address.json4'
+ $ref: '#/components/schemas/address.json2'
userType:
$ref: '#/components/schemas/user-type.json'
timezone:
@@ -53701,7 +52825,7 @@ components:
type: array
description: 'The address of the user. The user can have only one address.
If multiple addresses are provided, only one is accepted and rest are ignored. One address is selected based on the following sequence of criteria: primary, work type, first in the sequence'
items:
- $ref: '#/components/schemas/address.json4'
+ $ref: '#/components/schemas/address.json2'
userType:
$ref: '#/components/schemas/user-type.json'
timezone:
@@ -53970,7 +53094,7 @@ components:
title: VenueAddress
description: Address details for venue.
allOf:
- - $ref: '#/components/schemas/address.json2'
+ - $ref: '#/components/schemas/address.json'
properties:
latitude:
description: Location latitude.
@@ -54008,59 +53132,10 @@ components:
description: Event video.
type: object
allOf:
- - title: VideoBase
- description: Base model for a Video.
- type: object
- required:
- - title
- allOf:
- - $ref: '#/components/schemas/sync-job/allOf/0'
- properties:
- title:
- type: string
- description: The title of the video
- maxLength: 500
- example: Cvent 2020 Keynote
- description:
- type: string
- description: Description of the video
- example: The video recording of the Cvent 2020 keynote by James Gordon
- filename:
- type: string
- description: Filename associated with the video at time of upload. Cannot be modified.
- maxLength: 300
- example: Cvent Keynote Version 5.mp4
- events:
- type: array
- description: A list of events associated with this video asset
- items:
- $ref: '#/components/schemas/uuid-property'
- maxItems: 50
- default: []
- duration:
- type: integer
- description: Video duration (milliseconds)
- example: 3600000
- thumbnail:
- $ref: '#/components/schemas/video-thumbnail.json'
- generatedThumbnail:
- $ref: '#/components/schemas/video-thumbnail.json'
- status:
- $ref: '#/components/schemas/video-status.json'
- source:
- $ref: '#/components/schemas/video-source.json'
- tags:
- type: array
- description: A list of tags associated with this video. This feature is a developer extensability framework to add data to videos.
- items:
- type: string
- default: []
- example:
- - edited
- - exhibitor
+ - $ref: '#/components/schemas/VideoBase'
properties:
type:
- $ref: '#/components/schemas/video-type.json'
+ $ref: '#/components/schemas/VideoType'
event:
title: UUID
required:
@@ -54085,7 +53160,7 @@ components:
hlsInputsWithClips:
type: array
items:
- $ref: '#/components/schemas/hls-input-with-clips.json'
+ $ref: '#/components/schemas/HlsInputWithClips'
description: A list of input object locations & clip information for HTTP Live Streaming (HLS) recordings. Used to trim & stitch all inputs together to form a new video.
recording:
title: Recording details
@@ -54100,8 +53175,137 @@ components:
format: uuid
example: 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3
encodingProfile:
- $ref: '#/components/schemas/encoding-profile.json'
- video-asset-id.json:
+ $ref: '#/components/schemas/EncodingProfile'
+ video-images.json:
+ title: VideoImages
+ type: object
+ description: The images associated with the video
+ properties:
+ thumbnail:
+ type: object
+ allOf:
+ - description: URL of the video's thumbnail image.
+ - $ref: '#/components/schemas/existing-video1/properties/source/allOf/1'
+ poster:
+ type: object
+ allOf:
+ - description: URL of the video's poster image.
+ - $ref: '#/components/schemas/existing-video1/properties/source/allOf/1'
+ video-renditions-response:
+ title: VideoRenditionsResponse
+ description: The response from a request to get the list of video renditions.
+ type: object
+ properties:
+ data:
+ type: array
+ items:
+ $ref: '#/components/schemas/VideoRendition'
+ maxItems: 11
+ description: Collection of video renditions.
+ video-status.json:
+ title: VideoStatus
+ enum:
+ - Active
+ - Inactive
+ - Pending
+ - Deleted
+ type: string
+ description: This is used to denote the status of the video
+ example: Active
+ video-text-track:
+ title: VideoTextTrack
+ description: Video text track
+ type: object
+ required:
+ - language
+ - kind
+ allOf:
+ - $ref: '#/components/schemas/Audit'
+ properties:
+ video:
+ $ref: '#/components/schemas/VideoAssetID'
+ label:
+ type: string
+ description: Name of the text track.
+ maxLength: 300
+ example: English
+ language:
+ type: string
+ description: IETF language tag for the text track.
+ maxLength: 35
+ example: en-US
+ kind:
+ $ref: '#/components/schemas/VideoTextTrackKind'
+ published:
+ description: True means that this text track has been published for your client.
+ type: boolean
+ default: true
+ default:
+ description: True indicates this is the default text track. Each kind of text track can have a separate default assigned.
+ type: boolean
+ default: false
+ status:
+ $ref: '#/components/schemas/VideoTextTrackStatus'
+ autoGenerated:
+ description: True indicates this text track was generated via machine transcription of the audio.
+ type: boolean
+ default: false
+ video-text-tracks-response:
+ title: VideoTextTracksResponse
+ description: The response from a request to get the list of video text tracks.
+ type: object
+ properties:
+ data:
+ type: array
+ items:
+ $ref: '#/components/schemas/existing-video-text-track'
+ description: Collection of video text tracks.
+ video-thumbnail:
+ title: VideoThumbnail
+ description: Video thumbnail
+ type: object
+ properties:
+ url:
+ $ref: '#/components/schemas/Link'
+ size:
+ type: integer
+ description: File size in bytes for the thumbnail
+ example: 4098675830
+ height:
+ type: integer
+ description: frame height in pixels
+ example: 400
+ width:
+ type: integer
+ description: frame width in pixels
+ example: 300
+ type:
+ $ref: '#/components/schemas/ThumbnailType'
+ status:
+ $ref: '#/components/schemas/ThumbnailStatus'
+ video-views-paginated-response:
+ title: VideoViewsPaginatedResponse
+ description: Paginated list of video views.
+ type: object
+ properties:
+ paging:
+ $ref: '#/components/schemas/Paging'
+ data:
+ type: array
+ items:
+ $ref: '#/components/schemas/VideoView'
+ description: List of unique video views.
+ Video1:
+ title: Video
+ type: object
+ description: The details of a video
+ properties:
+ id:
+ type: string
+ format: uuid
+ description: The unique ID of the video.
+ example: 456e4567-e89b-12d3-a456-426614174000
+ VideoAssetID:
title: Video Asset ID
required:
- id
@@ -54113,7 +53317,58 @@ components:
format: uuid
example: 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3
description: Video that this asset was created with.
- video-clip.json:
+ VideoBase:
+ title: VideoBase
+ description: Base model for a Video.
+ type: object
+ required:
+ - title
+ allOf:
+ - $ref: '#/components/schemas/Audit'
+ properties:
+ title:
+ type: string
+ description: The title of the video
+ maxLength: 500
+ example: Cvent 2020 Keynote
+ description:
+ type: string
+ description: Description of the video
+ example: The video recording of the Cvent 2020 keynote by James Gordon
+ filename:
+ type: string
+ description: Filename associated with the video at time of upload. Cannot be modified.
+ maxLength: 300
+ example: Cvent Keynote Version 5.mp4
+ events:
+ type: array
+ description: A list of events associated with this video asset
+ items:
+ $ref: '#/components/schemas/UUIDProperty'
+ maxItems: 50
+ default: []
+ duration:
+ type: integer
+ description: Video duration (milliseconds)
+ example: 3600000
+ thumbnail:
+ $ref: '#/components/schemas/video-thumbnail'
+ generatedThumbnail:
+ $ref: '#/components/schemas/video-thumbnail'
+ status:
+ $ref: '#/components/schemas/VideoStatus'
+ source:
+ $ref: '#/components/schemas/VideoSource'
+ tags:
+ type: array
+ description: A list of tags associated with this video. This feature is a developer extensability framework to add data to videos.
+ items:
+ type: string
+ default: []
+ example:
+ - edited
+ - exhibitor
+ VideoClip:
title: VideoClip
description: Video clip details.
type: object
@@ -54128,7 +53383,20 @@ components:
description: The timecode to end the clip in HH:MM:SS:FF format.
example: '00:05:00:00'
pattern: ^([01][0-9]|2[0-4]):[0-5][0-9]:[0-5][0-9][:;][0-9]{2}$
- video-error-code.json:
+ VideoError:
+ title: VideoError
+ description: This is used to denote the errors for a video entity.
+ properties:
+ code:
+ $ref: '#/components/schemas/VideoErrorCode'
+ message:
+ type: string
+ description: Error message for the video. Message is a developer convenience never to be used in any context that needs localisation, subject to change at any time.
+ example: Transcoding failed due to an unsupported video codec.
+ required:
+ - code
+ - message
+ VideoErrorCode:
title: VideoErrorCode
description: This is used to denote the error codes for a video entity.
enum:
@@ -54143,20 +53411,7 @@ components:
- 608
type: integer
example: 601
- video-error.json:
- title: VideoError
- description: This is used to denote the errors for a video entity.
- properties:
- code:
- $ref: '#/components/schemas/video-error-code.json'
- message:
- type: string
- description: Error message for the video. Message is a developer convenience never to be used in any context that needs localisation, subject to change at any time.
- example: Transcoding failed due to an unsupported video codec.
- required:
- - code
- - message
- video-errors.json:
+ VideoErrors:
title: VideoErrors
description: This is used to denote the errors for a video entity.
type: array
@@ -54164,87 +53419,18 @@ components:
minItems: 0
maxItems: 100
items:
- $ref: '#/components/schemas/video-error.json'
- video-images.json:
- title: VideoImages
- type: object
- description: The images associated with the video
- properties:
- thumbnail:
- type: object
- allOf:
- - description: URL of the video's thumbnail image.
- - $ref: '#/components/schemas/existing-video1/properties/source/allOf/1'
- poster:
- type: object
- allOf:
- - description: URL of the video's poster image.
- - $ref: '#/components/schemas/existing-video1/properties/source/allOf/1'
- video-playback:
- title: VideoPlayback
- description: Video playback details.
- type: object
- properties:
- playbackUrl:
- type: object
- allOf:
- - description: A pre-signed URL to the location of the video
- readOnly: true
- - title: Link
- required:
- - href
- type: object
- description: Represents a link to a related resource.
- properties:
- href:
- type: string
- description: A url provided that can be followed for linking
- example: '?token=90c5f062-76ad-4ea4-aa53-00eb698d9262'
- posterUrl:
- type: object
- allOf:
- - description: A pre-signed URL to the location of the video poster
- readOnly: true
- - $ref: '#/components/schemas/video-playback/properties/playbackUrl/allOf/1'
- previewUrl:
- type: object
- allOf:
- - description: 'A pre-signed URL to the location of preview version of the video '
- readOnly: true
- - $ref: '#/components/schemas/video-playback/properties/playbackUrl/allOf/1'
- textTracks:
- type: array
- items:
- $ref: '#/components/schemas/existing-video-text-track'
- description: Collection of video text tracks.
- ttl:
- type: integer
- description: Time to live (TTL) in seconds for all signed urls in response
- example: 86400
- video-rendition-type.json:
- title: VideoRenditionType
- enum:
- - Hls
- - HlsMaster
- - Mp4
- - Poster
- - Mp4Preview
- - Mp3
- - Audio
- type: string
- description: Denotes the type of rendition.
- example: Hls
- video-rendition.json:
+ $ref: '#/components/schemas/VideoError'
+ VideoRendition:
title: VideoRendition
description: Video rendition
type: object
allOf:
- - $ref: '#/components/schemas/sync-job/allOf/0'
+ - $ref: '#/components/schemas/Audit'
properties:
video:
- $ref: '#/components/schemas/video-asset-id.json'
+ $ref: '#/components/schemas/VideoAssetID'
type:
- $ref: '#/components/schemas/video-rendition-type.json'
+ $ref: '#/components/schemas/VideoRenditionType'
location:
title: Link
required:
@@ -54264,18 +53450,35 @@ components:
type: integer
description: The video's frame height in pixels.
example: 400
- video-renditions-response:
- title: VideoRenditionsResponse
- description: The response from a request to get the list of video renditions.
+ VideoRenditionType:
+ title: VideoRenditionType
+ enum:
+ - Hls
+ - HlsMaster
+ - Mp4
+ - Poster
+ - Mp4Preview
+ - Mp3
+ - Audio
+ type: string
+ description: Denotes the type of rendition.
+ example: Hls
+ videos-paginated-response:
+ title: VideoPaginatedResponse
+ description: The response from a request to get the list of videos. This includes the paging object as well as the collection of videos.
+ required:
+ - paging
+ - data
type: object
properties:
+ paging:
+ $ref: '#/components/schemas/Paging'
data:
type: array
items:
- $ref: '#/components/schemas/video-rendition.json'
- maxItems: 11
- description: Collection of video renditions.
- video-source.json:
+ $ref: '#/components/schemas/existing-video-response'
+ description: Collection of videos.
+ VideoSource:
title: VideoSource
description: Source of video.
type: object
@@ -54294,7 +53497,7 @@ components:
- Deleted
description: Denotes the status of the video in the third-party system.
example: Active
- video-status.json:
+ VideoStatus:
title: VideoStatus
enum:
- Started
@@ -54310,55 +53513,7 @@ components:
type: string
description: Denotes the status of a video. Started indicates the request to upload in the API was submitted, and the URL to upload to was returned. Uploaded indicates that the upload was completed. Scanning indicates a virus scan is happening in a quarantine location; Scanned indicates a successful virus scan. Syncing indicates a complete virus scan, and now transcoding has begun. Rejected indicates a failed virus scan. Error indicates there was a problem processing the video. Available indicates the video is available for use.
example: Started
- video-status.json1:
- title: VideoStatus
- enum:
- - Active
- - Inactive
- - Pending
- - Deleted
- type: string
- description: This is used to denote the status of the video
- example: Active
- video-text-track:
- title: VideoTextTrack
- description: Video text track
- type: object
- required:
- - language
- - kind
- allOf:
- - $ref: '#/components/schemas/sync-job/allOf/0'
- properties:
- video:
- $ref: '#/components/schemas/video-asset-id.json'
- label:
- type: string
- description: Name of the text track.
- maxLength: 300
- example: English
- language:
- type: string
- description: IETF language tag for the text track.
- maxLength: 35
- example: en-US
- kind:
- $ref: '#/components/schemas/video-text-track-kind.json'
- published:
- description: True means that this text track has been published for your client.
- type: boolean
- default: true
- default:
- description: True indicates this is the default text track. Each kind of text track can have a separate default assigned.
- type: boolean
- default: false
- status:
- $ref: '#/components/schemas/video-text-track-status.json'
- autoGenerated:
- description: True indicates this text track was generated via machine transcription of the audio.
- type: boolean
- default: false
- video-text-track-kind.json:
+ VideoTextTrackKind:
title: VideoTextTrackKind
enum:
- subtitles
@@ -54369,7 +53524,7 @@ components:
type: string
description: Denotes the kind of video text track. Only subtitles are supported.
example: subtitles
- video-text-track-status.json:
+ VideoTextTrackStatus:
title: VideoTextTrackStatus
enum:
- Started
@@ -54384,40 +53539,7 @@ components:
type: string
description: Denotes the status of a video text track (VTT). Started indicates a request to upload in the API, and the URL to upload to was returned. Uploaded indicates that the upload was completed. Available indicates the VTT is available for use. Rejected indicates a failed virus scan. Error indicates there was a problem processing the VTT.
example: Started
- video-text-tracks-response:
- title: VideoTextTracksResponse
- description: The response from a request to get the list of video text tracks.
- type: object
- properties:
- data:
- type: array
- items:
- $ref: '#/components/schemas/existing-video-text-track'
- description: Collection of video text tracks.
- video-thumbnail.json:
- title: VideoThumbnail
- description: Video thumbnail
- type: object
- properties:
- url:
- $ref: '#/components/schemas/video-playback/properties/playbackUrl/allOf/1'
- size:
- type: integer
- description: File size in bytes for the thumbnail
- example: 4098675830
- height:
- type: integer
- description: frame height in pixels
- example: 400
- width:
- type: integer
- description: frame width in pixels
- example: 300
- type:
- $ref: '#/components/schemas/thumbnail-type.json'
- status:
- $ref: '#/components/schemas/thumbnail-status.json'
- video-type.json:
+ VideoType:
title: VideoType
enum:
- mpg2
@@ -54434,21 +53556,21 @@ components:
type: string
description: This is used to denote type of a video
example: mp4
- video-view.json:
+ VideoView:
title: VideoView
description: Details of a single video view
type: object
properties:
contact:
- $ref: '#/components/schemas/contact.json2'
+ $ref: '#/components/schemas/Contact2'
solution:
- $ref: '#/components/schemas/solution.json'
+ $ref: '#/components/schemas/Solution'
device:
- $ref: '#/components/schemas/device.json'
+ $ref: '#/components/schemas/Device1'
video:
- $ref: '#/components/schemas/video.json'
+ $ref: '#/components/schemas/Video1'
type:
- $ref: '#/components/schemas/view-type.json1'
+ $ref: '#/components/schemas/ViewType1'
totalDuration:
type: integer
format: int64
@@ -54463,31 +53585,12 @@ components:
type: number
description: The percentage of the video watched by the viewer.
example: 52
- video-views-paginated-response:
- title: VideoViewsPaginatedResponse
- description: Paginated list of video views.
- type: object
- properties:
- paging:
- $ref: '#/components/schemas/paging.json'
- data:
- type: array
- items:
- $ref: '#/components/schemas/video-view.json'
- description: List of unique video views.
- video-warning-code.json:
- title: VideoWarningCode
- description: This is used to denote the warning codes for a video entity.
- enum:
- - 700
- type: integer
- example: 700
- video-warning.json:
+ VideoWarning:
title: VideoWarning
description: This is used to denote the warnings for a video entity.
properties:
code:
- $ref: '#/components/schemas/video-warning-code.json'
+ $ref: '#/components/schemas/VideoWarningCode'
message:
type: string
description: Warning message for the video. Message is a developer convenience never to be used in any context that needs localisation, subject to change at any time.
@@ -54495,7 +53598,14 @@ components:
required:
- code
- message
- video-warnings.json:
+ VideoWarningCode:
+ title: VideoWarningCode
+ description: This is used to denote the warning codes for a video entity.
+ enum:
+ - 700
+ type: integer
+ example: 700
+ VideoWarnings:
title: VideoWarnings
description: This is used to denote the warnings for a video entity.
type: array
@@ -54503,33 +53613,8 @@ components:
minItems: 0
maxItems: 100
items:
- $ref: '#/components/schemas/video-warning.json'
- video.json:
- title: Video
- type: object
- description: The details of a video
- properties:
- id:
- type: string
- format: uuid
- description: The unique ID of the video.
- example: 456e4567-e89b-12d3-a456-426614174000
- videos-paginated-response:
- title: VideoPaginatedResponse
- description: The response from a request to get the list of videos. This includes the paging object as well as the collection of videos.
- required:
- - paging
- - data
- type: object
- properties:
- paging:
- $ref: '#/components/schemas/paging.json'
- data:
- type: array
- items:
- $ref: '#/components/schemas/existing-video-response'
- description: Collection of videos.
- view-type.json1:
+ $ref: '#/components/schemas/VideoWarning'
+ ViewType1:
title: ViewType
description: The view type of the video. Videos can be viewed live or as a recording.
type: string
@@ -54574,6 +53659,80 @@ components:
- EVERY_NTH_REGISTRANT
example: ALL
default: AFTER_THRESHOLD_LIMIT
+ voucher:
+ title: Voucher
+ description: Represents a voucher configured for an event. Event-level vouchers are special codes that can be assigned to invitees or attendees, enabling benefits such as free registration, discounted pricing, or other promotional entitlements during the registration process.
+ type: object
+ required:
+ - id
+ - code
+ properties:
+ id:
+ type: string
+ format: uuid
+ description: Voucher ID.
+ example: 1800c9bd-b5f4-438a-a92c-ea1f59553a5c
+ readOnly: true
+ code:
+ type: string
+ maxLength: 30
+ description: The unique planner-defined code that invitees enter during registration to redeem the voucher.
+ example: VIP-100
+ description:
+ type: string
+ maxLength: 250
+ description: A description of the voucher and its intended use.
+ example: VIP full-comp voucher for keynote attendees.
+ alertEmailAddress:
+ type: string
+ format: email
+ description: The email address that receives a notification whenever the voucher is redeemed.
+ example: planner@example.com
+ capacity:
+ $ref: '#/components/schemas/VoucherCapacity'
+ lastModifiedBy:
+ type: string
+ description: The identity of the user or system that last modified the voucher.
+ example: planner@example.com
+ lastModifiedDate:
+ type: string
+ format: date-time
+ description: The ISO 8601 formatted date and time when the voucher was last modified, expressed in UTC.
+ example: '2026-04-08T02:05:12.000Z'
+ VoucherCapacity:
+ title: Voucher Capacity
+ description: Represents the capacity details for a voucher, including the total allowed redemptions and the number already redeemed.
+ type: object
+ required:
+ - total
+ - redeemedCount
+ properties:
+ total:
+ type: integer
+ description: The maximum number of times the voucher can be redeemed. Default value of -1 indicates unlimited capacity.
+ example: 100
+ minimum: -1
+ maximum: 999999
+ redeemedCount:
+ type: integer
+ description: The number of times the voucher has already been redeemed.
+ example: 42
+ vouchers-paginated-response:
+ title: Vouchers Paginated Response
+ required:
+ - data
+ - paging
+ type: object
+ description: A paginated response of vouchers.
+ properties:
+ paging:
+ $ref: '#/components/schemas/Paging'
+ data:
+ maxItems: 200
+ type: array
+ items:
+ $ref: '#/components/schemas/voucher'
+ description: Collection of vouchers.
webcast:
title: Webcast
description: A webcast
@@ -54845,7 +54004,7 @@ components:
- $ref: '#/components/schemas/Audit'
properties:
event:
- $ref: '#/components/schemas/Event2'
+ $ref: '#/components/schemas/Event3'
exhibitor:
$ref: '#/components/schemas/Exhibitor'
name:
@@ -54884,15 +54043,15 @@ components:
items:
$ref: '#/components/schemas/existing-weblink'
description: List of weblinks associated with an exhibitor.
- wedding-details.json-0:
+ WeddingDetails-1:
title: Wedding Details
description: Wedding details.
type: object
properties:
firstPartner:
- $ref: '#/components/schemas/wedding-partner.json'
+ $ref: '#/components/schemas/WeddingPartner'
secondPartner:
- $ref: '#/components/schemas/wedding-partner.json'
+ $ref: '#/components/schemas/WeddingPartner'
ceremony:
type: boolean
description: True indicates ceremony is planned.
@@ -54905,13 +54064,13 @@ components:
rehearsalDinner:
type: boolean
description: True indicates rehearsal dinner is planned.
- wedding-partner.json:
+ WeddingPartner:
title: WeddingPartner
description: Represents wedding partner.
type: object
properties:
type:
- $ref: '#/components/schemas/bride-groom-type.json-0'
+ $ref: '#/components/schemas/BrideGroomType'
name:
type: string
description: Name of the partner of the wedding couple.
@@ -54981,6 +54140,8 @@ components:
budget/transactions:delete: Allows delete card transactions.
budget/transactions:read: Allows the reading of all card's transactions
budget/transactions:write: Allows creation of card transactions.
+ business-transient/bids:read: Allows the reading of BT Bid data
+ business-transient/proposals:read: Allows the reading of BT Proposal data
compliance/communications:read: Allows the reading of communication compliance
compliance/communications:write: Allows the writing of communication compliance
email/bounces:read: Allow the reading of email bounces.
@@ -55072,6 +54233,7 @@ components:
event/video-views:read: Allows reading of video views.
event/videos:read: Allows the reading of video data.
event/videos:write: Allows the creation/updating of video data.
+ event/vouchers:read: Allows reading of event vouchers and their associated attendees.
event/webcasts:delete: Allows the deletion of webcast
event/webcasts:read: Allows the reading of webcasts
event/webcasts:write: Allows the creation of webcast
@@ -55195,6 +54357,9 @@ components:
business-transient/travel-program-questions:read: Allows the reading of business transient travel program question data.
business-transient/travel-programs:read: Allows the reading of business transient travel program data.
business-transient/travel-supplier-accounts:read: Allows the reading of business transient travel supplier account data.
+ business-travel/travel-accounts:read: Allows the reading of business travel account data.
+ business-travel/travel-program-questions:read: Allows the reading of business travel program question data.
+ business-travel/travel-programs:read: Allows the reading of business travel program data.
compliance/communications:read: Allows the reading of communication compliance
compliance/communications:write: Allows the writing of communication compliance
email/bounces:read: Allow the reading of email bounces.
@@ -55286,6 +54451,7 @@ components:
event/video-views:read: Allows reading of video views.
event/videos:read: Allows the reading of video data.
event/videos:write: Allows the creation/updating of video data.
+ event/vouchers:read: Allows reading of event vouchers.
event/webcasts:delete: Allows the deletion of webcast
event/webcasts:read: Allows the reading of webcasts
event/webcasts:write: Allows the creation of webcast
diff --git a/overlays/public_overlay.yaml b/overlays/public_overlay.yaml
index b6e8ecbf..5f109c4f 100644
--- a/overlays/public_overlay.yaml
+++ b/overlays/public_overlay.yaml
@@ -89,7 +89,7 @@ actions:
title: Supplier
properties:
type:
- $ref: "#/components/schemas/supplier-type.json1"
+ $ref: "#/components/schemas/supplier-type.json"
properties:
id:
type: string
@@ -117,3 +117,16 @@ actions:
- target: $["components"]["schemas"]["CustomField"]
update:
x-speakeasy-name-override: "CustomFieldSchema"
+ # TypeScript barrel fix: renaming the "Attendee" schema key to "Attendee2" in June 17-18 release
+ # shifted Speakeasy's collision slot numbering, orphaning attendee1.ts from the barrel index.
+ # Pinning "attendee" to class "Attendee1" (its prior stable name) restores the barrel entry.
+ # Safe (class name): "Attendee1" was already the published class name up to SDK Release June 3-4 —
+ # the collision resolver had naturally assigned it that name. This pin preserves the existing
+ # name rather than introducing a breaking rename for SDK consumers.
+ # Safe (no property renames): x-speakeasy-name-override also renames any *property* in a
+ # parent schema that references this schema via a named $ref (e.g. properties.attendee.$ref).
+ # Since all refs to "attendee" are response body schemas or array item $refs (not named
+ # properties), there are no property renames as a side effect — only the class name is affected.
+ - target: $["components"]["schemas"]["attendee"]
+ update:
+ x-speakeasy-name-override: "Attendee1"
diff --git a/packages/csharp/.speakeasy/gen.lock b/packages/csharp/.speakeasy/gen.lock
index b76536dc..aa19ef8a 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: 980ec795cdc5cf787611d1872ebac47a
+ docChecksum: 366f3963ef9a456f6e28208f71114563
docVersion: ea
speakeasyVersion: 1.752.0
generationVersion: 2.859.2
- releaseVersion: 1.4.0
- configChecksum: 0e2dc7aeaf6a435bfb33209680431937
+ releaseVersion: 1.5.0
+ configChecksum: 498c4fb7640986ed72acd2c4d4444a96
published: true
persistentEdits:
generation_id: c50843e4-e393-4964-8f45-57aa92ab8994
@@ -46,7 +46,7 @@ trackedFiles:
pristine_git_object: ec6bbb4bbe2f8ad9230b01a2da715a63475f5e3d
NUGET.md:
id: f4c8a442a6e5
- last_write_checksum: sha1:d0ebbdbca24f98cad8b303c194c2c6dd5f144002
+ last_write_checksum: sha1:1ec6f316585957aaaf26058d4d7f8a843c97e7cc
pristine_git_object: 7a318ebe39215ade31d133b8f5920eb190ea74e3
USAGE.md:
id: 3aed33ce6e6f
@@ -68,12 +68,14 @@ trackedFiles:
pristine_git_object: 6c637a212603fa79d44b28d4f084cdaa34f59707
docs/Models/Components/AccountBudgetItemListResponseJson.md:
id: 820ac3be10e1
- last_write_checksum: sha1:a369564e83a3c6e1e7518f25758466dea6acfa23
+ last_write_checksum: sha1:48813a0188996dc15e6bc929bd35debb8a980e1b
pristine_git_object: 27811ed7c33113622246467777e61ebe48a27e86
docs/Models/Components/AccountBudgetItemsPaginatedResponse.md:
id: d5768916a6fb
last_write_checksum: sha1:5481f70173afa8c5f10451011c1960e45b62fb71
pristine_git_object: c796cd3d5b953035f82fdc2452b99d988704f8d4
+ docs/Models/Components/Action.md:
+ last_write_checksum: sha1:987caa3d5a68a6f27955aa3b172585dc9a810983
docs/Models/Components/ActivityAdJson.md:
id: 9bb5e5f9295e
last_write_checksum: sha1:57696acbef8d107a58ed2ce727db5e00bd04e3be
@@ -215,57 +217,45 @@ trackedFiles:
last_write_checksum: sha1:fbbf20cabfafa6319088c317a8d3dad9fa834ab5
pristine_git_object: c232eba3e3ae418311f8feadc50fefd9faa360c1
docs/Models/Components/AdditionalChoice.md:
- last_write_checksum: sha1:e69509b634644e3bd3adeed509ec3ce429adbb33
- docs/Models/Components/AdditionalChoiceJson1.md:
- last_write_checksum: sha1:20f970bfc50f26292d8012f2270e99da13978a21
- docs/Models/Components/AdditionalChoiceJson2.md:
- last_write_checksum: sha1:f6e0772cd31610cd16732dea1d0fe38a7e9e5d93
+ last_write_checksum: sha1:02ae67058320452c2706355da7ba39cc8bcad210
+ docs/Models/Components/AdditionalChoice1.md:
+ last_write_checksum: sha1:e9226b4e8a691c13b7141c6852d90802954867eb
+ docs/Models/Components/AdditionalChoiceJson.md:
+ last_write_checksum: sha1:fccc0686cc2dcd90efe998dfe2897c3dc78103b6
docs/Models/Components/AdditionalGuestFeesJson.md:
id: 8056a5291292
last_write_checksum: sha1:38882fd7641ffe58c1844388c6a1e60e0da1d00b
pristine_git_object: 8fd3807edf2246549fd6130f5b477760bdbddf58
+ docs/Models/Components/Address.md:
+ last_write_checksum: sha1:938b6604b6e3af16da2ff7c477bad0c7832a734e
+ docs/Models/Components/Address1.md:
+ last_write_checksum: sha1:10bcfb21b01ef0d40c5772f1cefde542fd002500
docs/Models/Components/Address11.md:
- last_write_checksum: sha1:4203850c7c753474082a2b1b63b8f7d3b601af0c
- docs/Models/Components/Address12.md:
- last_write_checksum: sha1:b9eea80b3fd81595619cd6b78b533ebcbc6464b5
- docs/Models/Components/Address2.md:
- last_write_checksum: sha1:d497227dd692c32e7fdf93e111776b2023b10cf5
+ last_write_checksum: sha1:bc88651f27121855f6efa090a04aaf91b53925d8
docs/Models/Components/Address3.md:
- last_write_checksum: sha1:d12967334637f1bc1294ef2aa8570eb7ac0bd7d6
+ last_write_checksum: sha1:878768709b1fd435ac860db4e527b8e2fa011fb5
+ docs/Models/Components/Address4.md:
+ last_write_checksum: sha1:9d7dabb303131e520135e427065c0fe876284ffa
+ docs/Models/Components/Address5.md:
+ last_write_checksum: sha1:1a7ae10057c48e2888b963ddcb2fd0d166604560
+ docs/Models/Components/Address6.md:
+ last_write_checksum: sha1:5bb44c95ec323477eaa18b16bb6c8f33819df2ab
+ docs/Models/Components/AddressInput.md:
+ last_write_checksum: sha1:b1d109a712d0b7988c5db3bf0899dfee27bb70bb
docs/Models/Components/AddressJson.md:
id: 7ecdc2f5de1f
- last_write_checksum: sha1:a826695cc69f4d4ace8d3de5c9f2d39d51d8a573
+ last_write_checksum: sha1:8461dea4a880bf7f777989ee8db4b7699317ceb9
pristine_git_object: 752704eeccdeff8e20b70cb3b4b35a2f11cb7e4a
- docs/Models/Components/AddressJson0.md:
- last_write_checksum: sha1:fca1f03411fb0883bcb8f82d4f6b2e863c5ad5b8
+ docs/Models/Components/AddressJson1.md:
+ last_write_checksum: sha1:0915edacf1965ee7891caad8e8760916a0159faa
docs/Models/Components/AddressJson2.md:
- last_write_checksum: sha1:aacf400393e16ba4174cd92750eb7c646d8ef3e0
- docs/Models/Components/AddressJson3.md:
- id: 6481012a7f85
- last_write_checksum: sha1:7b6ad9e2668567b5751430991c959f4195eba851
- pristine_git_object: d159c5c2ff34ed97810336511d8ae26f06a78856
- docs/Models/Components/AddressJson4.md:
- id: 790686dbb409
- last_write_checksum: sha1:ed6d4be76c32c5230168a0069d0058f1f2c598d2
- pristine_git_object: 04f417d34993fcaf9ce3fac6e10509b0d5b5b17a
- docs/Models/Components/AddressJson5.md:
- id: 9048e80b59c9
- last_write_checksum: sha1:7a6707c4f25815d18cccde8677a3c7382b117cf4
- pristine_git_object: df576b36566068495aa957a408dd4028e3415e51
- docs/Models/Components/AddressJsonInput.md:
- id: bfd910c54345
- last_write_checksum: sha1:4b350f0ba70a7b754dff9622f47052cefa6180c0
- pristine_git_object: 9d84c2ff81a7a4f6d002573cc9d5a4b24eaf6f64
+ last_write_checksum: sha1:517e2bd52ee82e510cfbc2f00cc75d0e53aaec14
docs/Models/Components/AddressType.md:
last_write_checksum: sha1:3855df1b1295608c3d92d3cc2520930f693dea83
docs/Models/Components/AddressTypeJson.md:
id: 9facc80f19bd
- last_write_checksum: sha1:0f65837a936db33710d59f9d8074b023239d9edf
+ last_write_checksum: sha1:fd5ac1417168e0fa72446bc139769ad746c1fbe2
pristine_git_object: 11b13f12b11a34453cafce4dacfced9ca9e97e02
- docs/Models/Components/AddressTypeJson1.md:
- id: e21fd4376418
- last_write_checksum: sha1:cb635132079d68a132e118df5f0fea69a073e01a
- pristine_git_object: 35067fb9e71722016bd84b1b81a5ffebb940caf7
docs/Models/Components/AdmissionItemsPaginatedResponse.md:
id: b6836e821cf2
last_write_checksum: sha1:e9be1b6182ca69e8b377959ccd4734d8e619a94e
@@ -294,10 +284,10 @@ trackedFiles:
pristine_git_object: bd5068a48bd89dc03b1a5ce11f3e88833faceeea
docs/Models/Components/AgendaItem1.md:
last_write_checksum: sha1:2957bcbca844e2e2c9d2707bb9d466407b84361c
- docs/Models/Components/AgendaItemSetupJson.md:
- last_write_checksum: sha1:36201783e7e5edd082958208a82948c0dfdb64e4
- docs/Models/Components/AgendaItemTypeJson.md:
- last_write_checksum: sha1:1d4230426afddf75c5c2a2fafaff14c51d03d5b7
+ docs/Models/Components/AgendaItemSetup.md:
+ last_write_checksum: sha1:f41f6a5191a5d701789699ecfe495ee43c2cba8e
+ docs/Models/Components/AgendaItemType.md:
+ last_write_checksum: sha1:92b72aff2b5c8a618728c0998994df3203451eac
docs/Models/Components/AggregatedCostJson.md:
id: 9060122791fa
last_write_checksum: sha1:bcd8af58231172fa1132819e372e24863dc4f9d4
@@ -346,10 +336,8 @@ trackedFiles:
last_write_checksum: sha1:1557c1aae121eac67571a7cb1a8c6a05972f19b0
docs/Models/Components/AlternateTravelPaginatedResponsePaging.md:
last_write_checksum: sha1:62f1d51c2360105211f8112a9177b71b4d8408dc
- docs/Models/Components/AmenityTypeJson.md:
- id: 47dc03604d95
- last_write_checksum: sha1:6dec187265ffb22eeb1743996293c3d0eb8c6536
- pristine_git_object: 60989d45775861a84c090958eff65242a0cdf6c6
+ docs/Models/Components/AmenityType.md:
+ last_write_checksum: sha1:bcb23c53ccb1bb6bb8bc83777dd51495f081da57
docs/Models/Components/AmountType.md:
id: cb588b3355b7
last_write_checksum: sha1:5931ce290fbb32c0bb94603e92415d9521a82ee3
@@ -501,19 +489,15 @@ trackedFiles:
last_write_checksum: sha1:525cc1e3def430f43569b8dd7b457ee78004c23d
pristine_git_object: 754dfb685ff274f6c96251a746cb0fd05d1684b3
docs/Models/Components/AppointmentWithQuestions.md:
- last_write_checksum: sha1:410422d236ac7fc633d9baa130c10e2b58f286b3
+ last_write_checksum: sha1:f63a3bfa72c2e7d7fbe14b740c2432e0710675ef
docs/Models/Components/AppointmentWithQuestionsLocation.md:
last_write_checksum: sha1:30a1375ee8f37ecaf27f7d428dbe4235e2c5662b
docs/Models/Components/AppointmentWithQuestionsType.md:
last_write_checksum: sha1:d1b45d4040d2c77ec95e46255f984d984414b0b5
- docs/Models/Components/AssetLocationJson.md:
- id: f9b40dec820a
- last_write_checksum: sha1:2935cf604a46b3b1a9337533da891051d6984793
- pristine_git_object: ec5e07bf62ea46ccd387f046c619c5003dea44d5
- docs/Models/Components/AssetLocationJsonInput.md:
- id: 22dcefd1b753
- last_write_checksum: sha1:3af856cc533b5c0b58adcf6ed13129b997079086
- pristine_git_object: ee14621e98ed6b9913bfc917ca49b5dba62c2efc
+ docs/Models/Components/AssetLocation.md:
+ last_write_checksum: sha1:b49f96621685e46b6e8dffe882086e71c3db4ad1
+ docs/Models/Components/AssetLocationInput.md:
+ last_write_checksum: sha1:62d63848a016adbe4c57a70e5b35468d99461ed0
docs/Models/Components/AssociatedRegistrationPathJson.md:
id: 2b3233064c09
last_write_checksum: sha1:2248c306e4948ec9e8d91c7eb34372788330ac78
@@ -522,16 +506,22 @@ trackedFiles:
id: a09f8f66fe1b
last_write_checksum: sha1:9dcc53f67e5678478688c32d1f434e6deb5089f5
pristine_git_object: bff28259740dae8ca324cdfba8a63de4617d1898
- docs/Models/Components/AttachmentSourceJson.md:
- last_write_checksum: sha1:b0cb66e2488972df8ab6d1589bf1a6afbed654bc
- docs/Models/Components/Attendee1.md:
- last_write_checksum: sha1:6a5f761b33602c73ffdacde124747a542d2194ec
+ docs/Models/Components/AttachmentSource.md:
+ last_write_checksum: sha1:c9119f8a261adbb58521baa848c6c5f1163e9778
+ docs/Models/Components/Attendee.md:
+ last_write_checksum: sha1:54b8d0cae669a79e41094f5eac3fd3d0450b4171
docs/Models/Components/Attendee11.md:
- last_write_checksum: sha1:bf6a4fea06f583dd908b0daa2035019c3e17276d
+ last_write_checksum: sha1:1bd92491a6adc493f6aadf56021ee2a0c09071b2
docs/Models/Components/Attendee12.md:
- last_write_checksum: sha1:edc47b71c683e399e46f281af7f7b81192ae8981
+ last_write_checksum: sha1:1a4bd9992b0e9d11fa1e2325130d8e5a0b04efd8
+ docs/Models/Components/Attendee13.md:
+ last_write_checksum: sha1:91a64435f1cdfc29a268f5672060fe306deeefd4
+ docs/Models/Components/Attendee1Event.md:
+ last_write_checksum: sha1:9ff7bafe8cf8b3b6cf94763fa37483cc46c2ef55
+ docs/Models/Components/Attendee1Lookup.md:
+ last_write_checksum: sha1:955648ea9f49debc00d5ec51c9c98f33e3a978d5
docs/Models/Components/Attendee2.md:
- last_write_checksum: sha1:9315c04e7c18515225b9aba3850266af4f7cbd6e
+ last_write_checksum: sha1:edebafffa05026f9ddf6239bb51fd3a76f86f2d4
docs/Models/Components/Attendee3.md:
last_write_checksum: sha1:510d6de3aa654b5408b0bf3e5c48b871ffd86d22
docs/Models/Components/AttendeeActivitiesPaginatedResponse.md:
@@ -554,12 +544,12 @@ trackedFiles:
pristine_git_object: 40ce79e175c8f75ecd663a15370ae906e4139aec
docs/Models/Components/AttendeeAddBulkItemEventJsonErrorResponse.md:
id: fdb289abf376
- last_write_checksum: sha1:9c26aedc3f25d835dc856e8ac98d0b83bbd41c78
+ last_write_checksum: sha1:d3bd0efbed781e1e53a496cea37358cd5de92d50
pristine_git_object: 7a15971e2d3ab1dd4119ab76904fb26455f6d126
docs/Models/Components/AttendeeAddBulkItemJson.md:
last_write_checksum: sha1:7035902cdbe4d2fbf3860f0292c0bc6233005417
docs/Models/Components/AttendeeAddBulkItemJsonData.md:
- last_write_checksum: sha1:5b4ecc2e057af48f97d95b07ebf0079af3648704
+ last_write_checksum: sha1:56fa32c9cde3a5a48361eb76dab7c2e21ea795cd
docs/Models/Components/AttendeeAddContact.md:
last_write_checksum: sha1:45fa7e65110d441d4b5e23d18766490d60c81295
docs/Models/Components/AttendeeAddEvent.md:
@@ -599,19 +589,13 @@ trackedFiles:
docs/Models/Components/AttendeeAudienceSegmentAssociationsPaginatedResponse.md:
last_write_checksum: sha1:e2576d547b78618e13999af2f0dc242849dab257
docs/Models/Components/AttendeeContactInfo.md:
- last_write_checksum: sha1:f9c901a480cc84b39de1ee3b77f7e6b7317cd0c2
+ last_write_checksum: sha1:6387640b0b2ef9bc60c9c42966d9839dd06e3c8f
docs/Models/Components/AttendeeContactMembership.md:
last_write_checksum: sha1:29c241e575eaff535eb3362c8ec596879328f952
docs/Models/Components/AttendeeContactType.md:
last_write_checksum: sha1:2e62d165588284e38747b7b2a3b64ca31ca27b6c
- docs/Models/Components/AttendeeContactTypeJson.md:
- id: a3c1709404dc
- last_write_checksum: sha1:2d5b28e60ffa909d663466d869698a2149d9a681
- pristine_git_object: 8a00a699aea9a984b0400538c8787bae30671ca9
- docs/Models/Components/AttendeeContactTypeJsonInput.md:
- id: a19e7c8c07f9
- last_write_checksum: sha1:74772a95df3084091329281fb01d2c1f6772d32e
- pristine_git_object: 334c56c446fbcb3f3d5f4d086cd6a467482d1865
+ docs/Models/Components/AttendeeContactTypeInput.md:
+ last_write_checksum: sha1:5806746add81d155fddd78d5c4e397fd754ca189
docs/Models/Components/AttendeeCreditJson.md:
id: 514f0fc3ad86
last_write_checksum: sha1:cf4c9ebaeb2d15e8232c2dda592de54c85019851
@@ -636,15 +620,11 @@ trackedFiles:
id: 23b520ff436c
last_write_checksum: sha1:82b7fa615f1376b1e9568b4b7dd8471077f43c61
pristine_git_object: d70ba5c0d0d050d816bd6a15cbda28370c726abe
- docs/Models/Components/AttendeeEvent.md:
- id: d14564888b8f
- last_write_checksum: sha1:12557527770db2e3eba4ed0200a281ea1e04eee5
- pristine_git_object: a45aa9d874745bb749d16a0c6db579ff56450400
docs/Models/Components/AttendeeGroup.md:
last_write_checksum: sha1:be15b078e109415c3e266e4965acf9771f871abc
docs/Models/Components/AttendeeInsights.md:
id: bbcc97a1384e
- last_write_checksum: sha1:91fbc0626da8e25b1b179d184ae9ae5ad53128b3
+ last_write_checksum: sha1:b41d5fc2b922c7790f47d1079bfb9074add7f028
pristine_git_object: 1e1c53633ddf544aae2aa6ea3f2ba087af797b6c
docs/Models/Components/AttendeeInsightsPaginatedResponse.md:
id: 11d5d7cd839a
@@ -682,19 +662,15 @@ trackedFiles:
pristine_git_object: d33259a523c8392cacff2d83a48dd7e11be697a8
docs/Models/Components/AttendeeLinkBulkResponseItemJsonData.md:
id: e26d65eb8045
- last_write_checksum: sha1:60292fccbb0839c6d4778c5ab4b15c7fe4fc7653
+ last_write_checksum: sha1:c2102bea958122f575151984335f9d15ed634832
pristine_git_object: 5fa534ec59e49237b1034c4b7b2efa81588a98ef
docs/Models/Components/AttendeeLinkPaginatedResponse.md:
id: 1d28fc183a25
last_write_checksum: sha1:9b816d8c8a5201115ff673811402378a3dd06f4e
pristine_git_object: bf16ea5840c7b9fc46a27a34cf4ae8fa508547bc
- docs/Models/Components/AttendeeLookup.md:
- id: ebc13c626da1
- last_write_checksum: sha1:d451e57598026ea9a9e9a5ebead8959061edfef2
- pristine_git_object: 0fe91ba68a0096dd90d124922d7a96baa0474335
docs/Models/Components/AttendeePaginatedResponse.md:
id: 811b815a5ad4
- last_write_checksum: sha1:e183861067c441f4524e69ae2598981ecb5fe353
+ last_write_checksum: sha1:9a8e3c3e6adf8b15a315692dc6f63aaf362df39a
pristine_git_object: 6fb36c5abc10d2c8120541a340d07397142f8af6
docs/Models/Components/AttendeeResponseJson.md:
id: e3715cbec63e
@@ -780,8 +756,10 @@ trackedFiles:
last_write_checksum: sha1:b922dc1acbb384e018b0645a91f9a0fa970ca1a1
docs/Models/Components/Attendees.md:
id: 7f1c8fd8e129
- last_write_checksum: sha1:f57ef986a89c67b59d3c92444190f29c688d2b6f
+ last_write_checksum: sha1:66152e838738f06c84bea33c12f8e256867e46a5
pristine_git_object: 73a54b4b2d2365abd83b9de737015fe1b32e4e06
+ docs/Models/Components/AttendeesPaginatedResponse.md:
+ last_write_checksum: sha1:aeb117830167fafe4a1d1e3b7d96abcc6ee5e845
docs/Models/Components/AttributeDataTypeJson.md:
id: 7b54fff29ca6
last_write_checksum: sha1:caf0075f693eab445cf0284c3b3e2c5479c651fa
@@ -808,11 +786,11 @@ trackedFiles:
pristine_git_object: 82584043fe13a7e539a7128d57fa67387dddc366
docs/Models/Components/AudienceSegment.md:
id: 22bbeb27687e
- last_write_checksum: sha1:2b0e2d6a911feefdb9443a8781b694d2addee0a4
+ last_write_checksum: sha1:12058c05add4f314f985559eedb389bde227dce1
pristine_git_object: 02fd4a64371215d6d3673bc490b08c9996430d3b
docs/Models/Components/AudienceSegmentCreate.md:
id: cfb44e8d1f90
- last_write_checksum: sha1:041547ac7fc0c9bd88dd770df2dc348001589c13
+ last_write_checksum: sha1:30a84af8557efdf9a47e6b2e8549db9ecaa04585
pristine_git_object: ac41e6db924a0120579909a8aa47add3d38d8003
docs/Models/Components/AudienceSegmentCreationTypeJson.md:
id: cfaaad00b208
@@ -820,24 +798,18 @@ trackedFiles:
pristine_git_object: 1aaac235e9e44907fac201f985aac0328c80af91
docs/Models/Components/AudienceSegmentResponse.md:
id: c9bd889ff9d6
- last_write_checksum: sha1:7a3889630aa12f1b95c4eeec3c59ac5bb786f8ce
+ last_write_checksum: sha1:2e6530153a8c4391bd8a9ea4dbefc66f1ec9e536
pristine_git_object: b06419136081fddb0dffe2501bb278a308f74c4e
docs/Models/Components/AudienceSegmentsPaginatedResponse.md:
id: 7b8297ecf1db
last_write_checksum: sha1:bdbe1ab1515fe668570607d0b8937804519e76d1
pristine_git_object: bdd2acde5c3a18c1d3f7cfc2288854077fdfb11c
- docs/Models/Components/AudioTrackStatusJson.md:
- id: e1fea296e150
- last_write_checksum: sha1:f0f405297f246a02564cb6ff6c49ab0d3cf602f9
- pristine_git_object: 9bc14b91fa9ddfec0250df1fad74fd05d6532ce5
- docs/Models/Components/AudioTrackTypeJson.md:
- id: 6addb70f88a3
- last_write_checksum: sha1:be6d221e22814fb1a1413218f4608f8ad5a46cc0
- pristine_git_object: 5ea3af0588c578e86a2facd5cef1dc6ee97f3c34
- docs/Models/Components/AudioTrackVariantJson.md:
- id: a212badc80c5
- last_write_checksum: sha1:4171b282620656ad9742c2d5c5c0015b720d849a
- pristine_git_object: 3291e97ea1e25344b9b551b96c5fb48df23367ee
+ docs/Models/Components/AudioTrackStatus.md:
+ last_write_checksum: sha1:008eee0d8950c46b6531086bd1c549aa8b2092d8
+ docs/Models/Components/AudioTrackType.md:
+ last_write_checksum: sha1:4e2f4e7c2d581530d5182a4f2c88ff19d1568ef7
+ docs/Models/Components/AudioTrackVariant.md:
+ last_write_checksum: sha1:0bbcdfcea7328b123f1a82b38ff719909e683efc
docs/Models/Components/AudioTracksResponse.md:
id: 27c8f51be1c7
last_write_checksum: sha1:17c8b3fa071c9df83c09ebc9dd6d1dc6c646632e
@@ -872,11 +844,11 @@ trackedFiles:
pristine_git_object: bcba9e34844a0037c2c15a4cc88baba9729c6232
docs/Models/Components/Badge.md:
id: 789f28b0ffc6
- last_write_checksum: sha1:133e3bd9b11907984b1bdce36d6f5285d1660815
+ last_write_checksum: sha1:7ef36b3a99611b8f03d8edc1c5ba52d02fe12f2d
pristine_git_object: c50e92e18e32695c33883cdd06d5ccc42d833ed4
docs/Models/Components/BadgeInput.md:
id: 9ac546a08741
- last_write_checksum: sha1:68f675a0042050a952259cd0dd30322f58ee5711
+ last_write_checksum: sha1:d2677fb86f7a8ec40d0db93f2b440750800863d6
pristine_git_object: 5637bdb8526623e229720dc4606f6186afe7f38a
docs/Models/Components/BadgePaginatedResponse.md:
id: 3c09599a7d86
@@ -954,22 +926,16 @@ trackedFiles:
id: d312459a43f9
last_write_checksum: sha1:d804ec34ea782770bf2d26f1a415534b01e45d5a
pristine_git_object: 38573c95d84b2b4299aec8d72e28ef2be7da4087
- docs/Models/Components/BidItemStatusTypeJson.md:
- id: bc4da0bc0a0b
- last_write_checksum: sha1:782cefba1791c2616cde3a483dcbf0d4748ffc2b
- pristine_git_object: 0f2a6fedf5fd81f3a80da274ed5bc59843186fdb
- docs/Models/Components/BidStatusTypeJson.md:
- id: a1bb57ea74eb
- last_write_checksum: sha1:b3a14571c59ea5d80d08382b4c55c6ba47b241de
- pristine_git_object: 815cbe1849845d4cd34696bbe16b825c95ade6e7
- docs/Models/Components/BidStayTypeJson.md:
- id: c562fc0adafd
- last_write_checksum: sha1:9eae13a279a4d6558546147e6dc3895f03e4d3a1
- pristine_git_object: ad28e976300817c5834d1200a0fdfc753c0d648d
+ docs/Models/Components/BidItemStatusType.md:
+ last_write_checksum: sha1:b673840e89e8c7ce5189961c918dcc4259ca60d2
+ docs/Models/Components/BidStatusType.md:
+ last_write_checksum: sha1:6664bbfe901b8a173246b28956df56c8f5e5d2a9
+ docs/Models/Components/BidStayType.md:
+ last_write_checksum: sha1:7d24c8854de985a7bdf59f7639501a467906829e
docs/Models/Components/BillingAddress.md:
last_write_checksum: sha1:3afcb514a78d7e485ffd376d1b345fbb92143c12
- docs/Models/Components/BillingDetailsJson0.md:
- last_write_checksum: sha1:694870fb902b5fcd835b1dba03411e4c5cdbfbf3
+ docs/Models/Components/BillingDetails1.md:
+ last_write_checksum: sha1:ee3b0ecb555b3cbbfc8d694ba159e1892328d35f
docs/Models/Components/BookingContact.md:
id: b64e52d44170
last_write_checksum: sha1:b0f0b3e16adbd9d50fa2fce801e8327db61ddc3e
@@ -986,30 +952,30 @@ trackedFiles:
pristine_git_object: 29cef323e9f39ed86fa3fcf5c62e73541a401285
docs/Models/Components/BoothStaffRequest.md:
id: 8e3b4565e2a9
- last_write_checksum: sha1:dee368fd076ef471206db52e36cc5d682f30d0e0
+ last_write_checksum: sha1:f4bce4c8f22a24743c6f49b21cfa5cb8c05936e8
pristine_git_object: b80b8ea5d4d3e327f14a595a70a5b0a7499bd359
docs/Models/Components/BoothStaffResponse.md:
id: 336612e7cbcb
- last_write_checksum: sha1:496db2f32c880ed6dd4a60e11ce21839e37194f4
+ last_write_checksum: sha1:01441c38296a17fd75c08f6c7def0faa38d572c0
pristine_git_object: e676cb3cfa7de1b726ee256c2d057464d6028767
docs/Models/Components/BounceDetailsJson.md:
id: 6758c8a10fd8
- last_write_checksum: sha1:73696245cfe806ca70d0ace5da7d748586ab9952
+ last_write_checksum: sha1:1e1dbfd61cf7a1a0201e05b9723b3f0325f04c34
pristine_git_object: 36f17fd068a8d2328755b890d049cfb7b8d24344
docs/Models/Components/BounceDetailsResponse.md:
id: 3abb36be9afe
- last_write_checksum: sha1:fbceb9a0976d47efe65b7df2839f00e0b95b26fa
+ last_write_checksum: sha1:84dd88df430e8985a1fe7205554111e3b5321837
pristine_git_object: c124bb1bf6d0fcb54b1a158137b148173e993392
docs/Models/Components/Brand.md:
id: 242f0ed4060b
- last_write_checksum: sha1:13b1c7b5ec3a17622518d8eea7a3b45bd06bd680
+ last_write_checksum: sha1:c01d903cb6dba34bc62aa26c829f4ff9078c0f07
pristine_git_object: 47fb66f5aeb4e06531341e65365322b378743c61
docs/Models/Components/BrandPaginatedResponse.md:
id: 198ace0b2bf5
last_write_checksum: sha1:b937efdea66c642481d7fefc6943645ce66ad85b
pristine_git_object: 5f5325d29b7c5ae4a86dc86e2a9d508b6eaee318
- docs/Models/Components/BrideGroomTypeJson0.md:
- last_write_checksum: sha1:a4d538887342a0a570aa87ac292e33553c47bcf5
+ docs/Models/Components/BrideGroomType.md:
+ last_write_checksum: sha1:ed347294854a47af6284cd0330061d6210d7f56a
docs/Models/Components/BudgetAllocatebyJson.md:
id: 0bb7ac4aea28
last_write_checksum: sha1:095c8d50bb6173e0fb25fcc5171e44cf2cf57abe
@@ -1230,10 +1196,8 @@ trackedFiles:
id: 66b9fe3205ca
last_write_checksum: sha1:880f876c1f7a78b69df2c61df907d7a12ddf85d6
pristine_git_object: 5163c6806f30276eb6a04f3511c8fa215aebfbc6
- docs/Models/Components/BusinessTypeJson.md:
- id: fad6eeed2fd1
- last_write_checksum: sha1:c4973ba592053e0fd71f9c665087c1b0d0ec9dd5
- pristine_git_object: d917d062480f3750e62687a58bdb1f32f614c4a1
+ docs/Models/Components/BusinessType.md:
+ last_write_checksum: sha1:ba74c8675937e033d9c7f805ec76638d41895c12
docs/Models/Components/CalculateBy.md:
last_write_checksum: sha1:67d05f4844086fcba309fbf162aaf94551096f84
docs/Models/Components/Calendar.md:
@@ -1252,14 +1216,14 @@ trackedFiles:
id: c39ded8e5cb7
last_write_checksum: sha1:a2552faf2383e8ba4b5970c0c0dd8ceec16b743a
pristine_git_object: 30b37427356790d02f7a76c7feb5dee77cb27fb1
- docs/Models/Components/CancellationDetailsJson.md:
- last_write_checksum: sha1:c0843723ef5b5e349cbb50b19da14dd08d060255
+ docs/Models/Components/CancellationDetails.md:
+ last_write_checksum: sha1:14eba89f5c45b73141ac91ac2038cf84393a68c4
docs/Models/Components/CancelledReason.md:
id: 6a2785f7e076
last_write_checksum: sha1:4be134bbd955778fb95eb3729f24eba826f8f497
pristine_git_object: 48ed1cb480a2ba28110d10ab71f0e1fc0df1d12f
- docs/Models/Components/CancelledReasonJson0.md:
- last_write_checksum: sha1:ae1e29766ae6772681beb0011402f7282b69b999
+ docs/Models/Components/CancelledReason1.md:
+ last_write_checksum: sha1:6f2d36c63d23d23e5d6f452a59af0ae35f2384f3
docs/Models/Components/Capacity.md:
last_write_checksum: sha1:06c2fe6b6d1b80f3929c0decfab0669906aa80a7
docs/Models/Components/CapacityJson.md:
@@ -1322,29 +1286,23 @@ trackedFiles:
pristine_git_object: dabee47f89c025fee4addabff0a5a945ffe7cf38
docs/Models/Components/CardTypeJson.md:
last_write_checksum: sha1:b6e83e2d2067c17ea15c6c486a736c2054d58438
+ docs/Models/Components/Category.md:
+ last_write_checksum: sha1:af310712bf2484ff58b1e1518e3e378167e13d25
docs/Models/Components/CategoryId.md:
last_write_checksum: sha1:ac965ce1ae15eaa73b68a83883010426e37ff303
- docs/Models/Components/CategoryIdNameJson.md:
- id: a920fe28ffed
- last_write_checksum: sha1:a71d5c449d2c0c798972fd8d92e233368cbf1c93
- pristine_git_object: 93d9818ddae5a8e102ba3bc2c3bff875fa728eaf
docs/Models/Components/CategoryItemsCostJson.md:
id: fe8c647ddf31
- last_write_checksum: sha1:540d64c2a6e5160132c6ba47b1953564185eba7a
+ last_write_checksum: sha1:dcdb92166a50d16e1bdd84609c3590102de18b1f
pristine_git_object: 42994b72b64ce40035340dbdde43ba45e7054af8
docs/Models/Components/CategoryJson.md:
- last_write_checksum: sha1:d68e912174614f5d3762fc1aa3bc6195e46dedc8
+ last_write_checksum: sha1:bf9ffdbff394b1114e43d71d8cd8ea4278202bab
docs/Models/Components/CategoryJson1.md:
id: ec287c7a8d67
- last_write_checksum: sha1:61bd7f3449dce9dcbb0166ffaa4563ea67fc76bb
+ last_write_checksum: sha1:e25cadf3684000a44faef5f23584441c472a5a99
pristine_git_object: bee5b0b8a4df4d0aef74ddf4e0a069e895949292
- docs/Models/Components/CategoryJson2.md:
- id: 8fe18d2a9867
- last_write_checksum: sha1:0f5c9d8c15953f17b0de5dba16684ee8b8331c93
- pristine_git_object: d208b08a3a78b27cfbb46d621043dd4553345557
docs/Models/Components/Chain.md:
id: 43249e399385
- last_write_checksum: sha1:4b1f12bb21bf9a06b42b30fc0bc94aa55c372703
+ last_write_checksum: sha1:a9fec0cdb14c6fcb1334298f4547259fb0d26eb8
pristine_git_object: 55b8aae55db0e3309cf858e0ade73f396c7c70a1
docs/Models/Components/ChainBrand.md:
id: ef796e573861
@@ -1392,22 +1350,20 @@ trackedFiles:
pristine_git_object: 64f4057b6b551c9decab585276bd2f84527493d4
docs/Models/Components/Choice.md:
id: c39c226c098e
- last_write_checksum: sha1:33f6593eab522cb4004e507741b23992f1e2e20d
+ last_write_checksum: sha1:3d54391e6c34eb74d4d8c6ce268e87666ef8a77c
pristine_git_object: 79377a632e3332e4dea6951aecd192eddbfd8ca2
- docs/Models/Components/ChoiceJson.md:
- last_write_checksum: sha1:6f6dfbb5041812f6257498fcfab4a3188aca4afd
+ docs/Models/Components/Choice1.md:
+ last_write_checksum: sha1:35a494d1edb71f86099120cf35c4009f7a2431e2
+ docs/Models/Components/ChoiceJson1.md:
+ last_write_checksum: sha1:a1347099de4fe856d37f380de254e1928acb7765
docs/Models/Components/ChoiceJson2.md:
id: af36e17a0803
- last_write_checksum: sha1:41ce40e66643c8ce88ec02ee4db04104aa774d80
+ last_write_checksum: sha1:b0b6a3107ef71ce45eff74ca39c64386e7f56cdd
pristine_git_object: caaa3feacc6793d3ccebb7667ada43db544b896b
- docs/Models/Components/ChoiceJson3.md:
- id: 1c215a609f6a
- last_write_checksum: sha1:1a6e0740f31c371cf63f5f02302d3ba673e300c1
- pristine_git_object: 4ae636afc26b4eb42c287cdc20ac60a0cf6c59c0
- docs/Models/Components/ChoiceJson3Input.md:
- last_write_checksum: sha1:8cf3e77cb5b3e86170d1f235ae461fe35d3d69ca
- docs/Models/Components/ChoiceSortOrderJson.md:
- last_write_checksum: sha1:fd8f894e01b172c344ca6fa2877832f518280b5f
+ docs/Models/Components/ChoiceJson2Input.md:
+ last_write_checksum: sha1:269d3c4b0d94dc0d7bad282d4ecfd8e37ccb274f
+ docs/Models/Components/ChoiceSortOrder.md:
+ last_write_checksum: sha1:6e96b8256e6c463d1dbd644bae149025f257b502
docs/Models/Components/ChoiceTranslationJson.md:
id: 40b89e19260f
last_write_checksum: sha1:a8eac3cb9281abdc0816a41d8d3b016c841c28f1
@@ -1416,16 +1372,14 @@ trackedFiles:
last_write_checksum: sha1:753f7cab9a6bbd72f4f55b2520eb3aefa88d2864
docs/Models/Components/Choices.md:
id: 1d10f7fb8042
- last_write_checksum: sha1:faecf6599c4f9fe3943014adc34ccc5246ea3cba
+ last_write_checksum: sha1:aef51119ed484896b5fd728a98c591d5967181c3
pristine_git_object: ac01c8a5a9b9e055d2740e17eef87acd25d7373b
docs/Models/Components/ChoicesDisplayTypeJson.md:
id: 09b45a786d79
last_write_checksum: sha1:74414bf030dc58a1d39ca32ec0390473e3943602
pristine_git_object: 32fb6a560d77de36d377787606ef0bf957e0e30f
- docs/Models/Components/CommentTypeJson.md:
- id: d1b89cddf294
- last_write_checksum: sha1:f70e544284a87fbd8373e10b75dc033a491625d0
- pristine_git_object: d31d20b9d099218862403913018f41143b36a27a
+ docs/Models/Components/CommentType.md:
+ last_write_checksum: sha1:fd0df5d943c24f4cf01829035b713c8932b3ef0a
docs/Models/Components/CommunicationConfiguration.md:
id: 0840819c218d
last_write_checksum: sha1:550330df7cada4a4b7351f14ca9adc1d8ae78655
@@ -1443,30 +1397,16 @@ trackedFiles:
last_write_checksum: sha1:20d0f970c8ec2efa3aeea981db61e6d3806eedb4
pristine_git_object: a2d07afaf3b3b488a626227f9efb26eb9fb3c984
docs/Models/Components/Compliance.md:
- last_write_checksum: sha1:86dfa66f3ed5d2b9ca78608082f228fa55d6f9f8
- docs/Models/Components/ComplianceAction.md:
- last_write_checksum: sha1:75ade73ba1d8f2ac8ee99b149c528ce699a1b652
- docs/Models/Components/ComplianceComplianceScope.md:
- last_write_checksum: sha1:0ef92bf9e9daf819fcd8f289f190f8f8629b92ab
- docs/Models/Components/ComplianceCreatedBy.md:
- last_write_checksum: sha1:7ce9dcf5b93c11d165a8673c7c26e89a4400e03e
- docs/Models/Components/ComplianceJson.md:
- id: 38d461fb15fe
- last_write_checksum: sha1:6836bd3a355d6064411b8778546d734b3d91d95e
- pristine_git_object: 1ffcd58be8308139c08bc66b63d165ad8b79c4b3
- docs/Models/Components/ComplianceJsonAction.md:
- last_write_checksum: sha1:c472de62c683a49539a2e9bf26bb85fe058f322c
- docs/Models/Components/ComplianceJsonComplianceScope.md:
- last_write_checksum: sha1:659b2d68675b5e32bf58adeeb6df1b763f6b06e3
- docs/Models/Components/ComplianceJsonCreatedBy.md:
- last_write_checksum: sha1:82ab403063f463fe410920eed8dc42fd9dc64cfb
+ last_write_checksum: sha1:ed1979655e12ba87345afb7297962059d10ec07f
+ docs/Models/Components/ComplianceScope.md:
+ last_write_checksum: sha1:745ebe0ecb4382b42159ec01fe3aac13442a0feb
docs/Models/Components/CompositeValueJson.md:
id: 84fe87e7ac46
last_write_checksum: sha1:5ee3dc318c8201cbfaff56c18c9b3fb45a4dc1a9
pristine_git_object: fd73c9a0f25f37442d584f4b02e1e23f850f71d9
docs/Models/Components/ConflictResolution.md:
id: af1783aa736c
- last_write_checksum: sha1:8f8d266dfa049a1d3024e32e97d5096c515b5062
+ last_write_checksum: sha1:e1dde65221945001b23f1b27911fb99da489c43a
pristine_git_object: 95482d2f7470c6659807f3defd376c87ddca6893
docs/Models/Components/ConnectionResponse.md:
id: d6f3e5c9e526
@@ -1478,28 +1418,24 @@ trackedFiles:
pristine_git_object: 15267190dac17ad6ea5d71f5888e513a103923ef
docs/Models/Components/Contact.md:
id: 66592acc35f7
- last_write_checksum: sha1:1bcdd9517057aa135a23a74828f9bdded0c6515e
+ last_write_checksum: sha1:fdec52fbe4d0f957a3aa83b7d9f0e56bdf5543c4
pristine_git_object: 869179958f846b7b82f19d0b796d7f23da848af5
- docs/Models/Components/ContactBulkItemJson.md:
- id: 0e4f89d62332
- last_write_checksum: sha1:474f1260537f98d64c6f3ae6abe3be2de3c7ccbb
- pristine_git_object: 9f3729c4c9924db513dd4eb356213394f24e1dca
- docs/Models/Components/ContactBulkItemJsonData.md:
- id: 91a664d59a71
- last_write_checksum: sha1:87987edf0f40cf94503e59b6f024fa7ce7aba98f
- pristine_git_object: b174f8b6d0a980ef5b2ed31603021cec65e18ce3
+ docs/Models/Components/Contact1.md:
+ last_write_checksum: sha1:cb835394222fc4f4add196bf90bf9a2400145009
+ docs/Models/Components/Contact2.md:
+ last_write_checksum: sha1:7c5099505e8babe9485b5100eb6178445bf86319
+ docs/Models/Components/ContactBulkResponseItem.md:
+ last_write_checksum: sha1:748d188dbd0671629c6104f3c4d490f08df688a6
+ docs/Models/Components/ContactBulkResponseItemData.md:
+ last_write_checksum: sha1:254d65dda9aebd5ed3534b920841027c1cc0f73a
docs/Models/Components/ContactCommonJson.md:
id: 5cff19f58fd4
last_write_checksum: sha1:a3a10812ac81fdb562ab31d94694b397e75a2870
pristine_git_object: 3abc5d0addb362aef18399222bb00224419e6140
- docs/Models/Components/ContactCreateRequestJson.md:
- id: 171a584970c3
- last_write_checksum: sha1:8f12e2ad0143af4edb69458cd605ba2d04c34788
- pristine_git_object: c64a5fb99720bf001eec189fbb0145fc41aa4fbb
- docs/Models/Components/ContactCreateRequestJsonEvent.md:
- id: 450969eff597
- last_write_checksum: sha1:3cb62b7b1bc7a677b35422982e9709bbdd61f4a4
- pristine_git_object: 9b5e5d24bedb5e32b4486b61cbbc40b2effef426
+ docs/Models/Components/ContactCreate.md:
+ last_write_checksum: sha1:42bec54c8ed518c76bffaa1d7af477905a4cf313
+ docs/Models/Components/ContactCreateEvent.md:
+ last_write_checksum: sha1:d834a3af686bdb3a41608aba60709b0c77e90ea1
docs/Models/Components/ContactEvent.md:
id: c14718cf89ea
last_write_checksum: sha1:cc08c44e3fc3227f92538eaf13d5d15612ab5c63
@@ -1534,91 +1470,69 @@ trackedFiles:
pristine_git_object: 6a6ef19c5b5d7f86ed1583f71a2416a5096be6b1
docs/Models/Components/ContactGroup.md:
id: c1ab9545e32a
- last_write_checksum: sha1:cb185a25734d374b698c1916197ebc8a3ab8288b
+ last_write_checksum: sha1:acb268d41c4789c552c9d5548e27e9b093534d97
pristine_git_object: c66eac478360036e2103a7a330322ff3601fc041
docs/Models/Components/ContactGroupInput.md:
id: fadc1864b419
- last_write_checksum: sha1:1d750bd1f01eaf74b91a139c116e24465ff77ccc
+ last_write_checksum: sha1:45184212839bd89b9908cdbb2365d26b67faf0f7
pristine_git_object: b0d50be7b72ae2826861ce4b77dcd2f5ddc7634a
docs/Models/Components/ContactGroupPaginatedResponse.md:
id: 0a72b156853d
- last_write_checksum: sha1:27958d9bcee4179f2d839fae1038ab3bf5538c6a
+ last_write_checksum: sha1:f8705d35261f6a0df7db851fa42cb294e0cb9570
pristine_git_object: 728cf3b4cd24f6cb87220831aa119e2b6342d955
- docs/Models/Components/ContactGroupTypeJson.md:
- id: 084dcdd16902
- last_write_checksum: sha1:368573022a842d7522e6a6043245613fd2a35286
- pristine_git_object: e17e1563d54c2f6ee1bf2c44249b7d6aca05bfbe
- docs/Models/Components/ContactHistoryJson.md:
- id: 6bd524706e3a
- last_write_checksum: sha1:eba6dbe5090dee03b71b700b823e1da53ffbb6e1
- pristine_git_object: 6ad0c541cb1ed084ab792068ceed1d6e239c6cf8
+ docs/Models/Components/ContactGroupType.md:
+ last_write_checksum: sha1:ae8be8008c91c8889bec10315c4a4d6372d8e7ac
+ docs/Models/Components/ContactHistory.md:
+ last_write_checksum: sha1:87bb6cdf608cad494859d20c15d1bbfeb5763e80
docs/Models/Components/ContactHistoryPaginatedResponse.md:
id: 8708d2dd0e4b
- last_write_checksum: sha1:1002d4088717b52e42d12ce98ee080fb5ba9d80f
+ last_write_checksum: sha1:e29d92234ccd2bcbaf042513ea4dca071b0cd3da
pristine_git_object: c67e47ba2b8a174a83f42d2cb5d56fcf899fa162
- docs/Models/Components/ContactIdJson.md:
- id: 8cd00dd24719
- last_write_checksum: sha1:2c725fc2e71ff448cc4d6d2c8a65e8969421583d
- pristine_git_object: 98202bcadafc56e090bee5f601b3c91b1019fe27
+ docs/Models/Components/ContactId.md:
+ last_write_checksum: sha1:591a07e1d5b9a923f763de300220f2b0abeba633
docs/Models/Components/ContactIdPaginatedResponse.md:
id: 02e446828e80
- last_write_checksum: sha1:018701a3a12257db455b560261cda5ee847c32fb
+ last_write_checksum: sha1:445e445850b4dbafc299ace3c50a6a896ed0324d
pristine_git_object: e6cf4245d21295eaf06ee301b7ad5017c1988bad
docs/Models/Components/ContactInformationJson.md:
last_write_checksum: sha1:e8ded3903a82d1ade373c21eff9035d23ae90484
- docs/Models/Components/ContactJson0.md:
- last_write_checksum: sha1:564112620d2197b96b5fd675e869c6e72c45489f
- docs/Models/Components/ContactJson1.md:
- id: eb2a1b1be690
- last_write_checksum: sha1:b9ca86fd41fc12418a514f27c95ee501d79c8d1f
- pristine_git_object: 51b34a785cd199c395436a276a0437d6884f7651
- docs/Models/Components/ContactJson2.md:
- id: bcfd9f6a14d7
- last_write_checksum: sha1:6f261ef6406d160b97666f05ce459bf6f1e8c3c7
- pristine_git_object: 78bd82835b59725ed983b85a4981c9d8b238091e
+ docs/Models/Components/ContactJson.md:
+ last_write_checksum: sha1:b1a37cb775d03f892f94359d33b5312d459b39ae
docs/Models/Components/ContactLinks.md:
last_write_checksum: sha1:cabc5e2e8ff822d41fd8774c01cf50fe2bdb9eb1
docs/Models/Components/ContactLinks1.md:
last_write_checksum: sha1:26ccc4f841aa1f887e111f4bd639f78b89daccd2
- docs/Models/Components/ContactLinksJson.md:
- id: 7bff75635d1a
- last_write_checksum: sha1:1a5c3e6b20209cd1e77f7c6affe69f714a0358e4
- pristine_git_object: 273bddad381979353cf5bcbc1a39f39a47b391a3
- docs/Models/Components/ContactLinksJsonInput.md:
- id: ae9c2c28d247
- last_write_checksum: sha1:69ec8bf42975b58d35df37229b9568c1301d5659
- pristine_git_object: 7ee68a9a4ac3aff3510bfb5e988a3470883b8a86
- docs/Models/Components/ContactLinksJsonLink.md:
- id: 1df80a9cef34
- last_write_checksum: sha1:a129c5dbff606c9298f8cda09240661b38fa6f2f
- pristine_git_object: 755c9cffd81e95fcdda5e9e7a88db66d3e224199
+ docs/Models/Components/ContactLinksInput.md:
+ last_write_checksum: sha1:03e5972c5646a2f93667ecf3ce92ed9a50f55749
docs/Models/Components/ContactLinksLink.md:
last_write_checksum: sha1:b2405dd8d7dd817f93d3bcfae53cba4f1d9e2f58
+ docs/Models/Components/ContactMembership.md:
+ last_write_checksum: sha1:eaa207f6649b296be5f16ace4426d01c97add83b
docs/Models/Components/ContactMerge.md:
id: 7f6ea340afe4
last_write_checksum: sha1:48649a71240355d02487daebfb05a12f5f47e247
pristine_git_object: 3199555ab43452c002d3c7fd4baec27e5668ba71
- docs/Models/Components/ContactMergeFieldJson.md:
- id: "304350750832"
- last_write_checksum: sha1:58cf7cf94ae96898a58296672decaed371a683e4
- pristine_git_object: 99ea338d35494593b9205dffb1eec890103b66e9
- docs/Models/Components/ContactMethodsJson.md:
- last_write_checksum: sha1:2b5166665dac66c8690dda518af73b40e351ac19
+ docs/Models/Components/ContactMergeField.md:
+ last_write_checksum: sha1:559325728eca2dd2d998b71e9faf2b26c1658895
+ docs/Models/Components/ContactMethods.md:
+ last_write_checksum: sha1:36522a070b22e828f8069b58ff6da7cd2bf2547c
docs/Models/Components/ContactObfuscationStatus.md:
id: 385b6533237a
- last_write_checksum: sha1:2c82883bb575c973781f8624555fc422a74d6fd6
+ last_write_checksum: sha1:30ff3f9aba61cb9406eacb87df8e961a3c8282da
pristine_git_object: 71ca2f9e6aad798be5bdb25044fad55b68304b49
- docs/Models/Components/ContactObfuscationStatusTypeJson.md:
- id: ac5f6032452c
- last_write_checksum: sha1:c16c46892b8321e726bafe41d57c57cf8a90d451
- pristine_git_object: 02de971fa1fe75143b0541d8c900b81f277119a6
+ docs/Models/Components/ContactObfuscationStatusType.md:
+ last_write_checksum: sha1:a428cfc4c17b7c85303327518fe8e0aa08cc1558
+ docs/Models/Components/ContactOptOut.md:
+ last_write_checksum: sha1:c0e1a78fc30dbc9f48a08c6e3386a30e7cc61940
+ docs/Models/Components/ContactOptOutInput.md:
+ last_write_checksum: sha1:6b4f9df874b4114c969f988a14ac903aa0250111
docs/Models/Components/ContactPaginatedResponse.md:
id: 9b0e349fd290
- last_write_checksum: sha1:c6fd16401e928d0ae4e25dadc1f5552770484a38
+ last_write_checksum: sha1:a56259ba55a3063e7679cdd96578fd4e5e5fe283
pristine_git_object: 8315a26812d8ac2abfe9b35969e9b49ba3c31f0e
docs/Models/Components/ContactPatch.md:
id: a5e99daaee6a
- last_write_checksum: sha1:e3b5f5b73802a85fd6321e6df465f4a2051463d3
+ last_write_checksum: sha1:f6a892be972e194d7574362b2196f834c160d7d5
pristine_git_object: f4dd1c559ea7690a79b92c66e26658f9c1250f3e
docs/Models/Components/ContactPatchLinks.md:
id: df51a15a2a7e
@@ -1628,21 +1542,19 @@ trackedFiles:
id: 71b128da8660
last_write_checksum: sha1:c3daa4a4a2604cf9462242a908abcafd02cad583
pristine_git_object: ab9ee258038f6150748a916b8122b5463d5722ea
+ docs/Models/Components/ContactType.md:
+ last_write_checksum: sha1:9ccb4ffeefbcabd3300f2d3472b5b1f9c413a712
docs/Models/Components/ContactTypeJson.md:
id: 1a059b053381
- last_write_checksum: sha1:55c2dfbc8dd6be65010d1a726cc9f638c36966f3
+ last_write_checksum: sha1:bd17c774006b6e199e4d18981ae2df8dcc6bd3f1
pristine_git_object: 820af9111e970b544acf6c9e0d328a1e6796a6be
- docs/Models/Components/ContactTypeJson1.md:
- id: c9dbeba3f1e5
- last_write_checksum: sha1:d4ab2d08fa988effeb3d280842649ab43362554d
- pristine_git_object: e6a3b4408e14260af4d5a4caae2de69d883abe8a
docs/Models/Components/ContactTypePaginatedResponse.md:
id: 17ba61575028
- last_write_checksum: sha1:3e56626a5ee920e233a4bd40f9f353b91eace02e
+ last_write_checksum: sha1:7f4267b267ee79131779c5eaf056d26190a2bdcf
pristine_git_object: 5b968ebb0edcbaf194b0fc0004b4531ab1d75b82
docs/Models/Components/ContactUpdate.md:
id: 604df1d2db9e
- last_write_checksum: sha1:8b500a3341426d8c0c740596a5fc28446f72cdcf
+ last_write_checksum: sha1:5f7dab854a9b7905e25d2c689cb388f334a43132
pristine_git_object: ff160872e733403f10d1f3d161261639b507669b
docs/Models/Components/CountryJson.md:
id: bab1f2c22ac5
@@ -1653,9 +1565,9 @@ trackedFiles:
last_write_checksum: sha1:392e8af2f2f5c9ef3f2f0dab799387bbe96a6c1b
pristine_git_object: a7d634ac42739bdb8b2db8caadfae10a36017b14
docs/Models/Components/CreateTransactionResponse.md:
- last_write_checksum: sha1:024d2faacd0be306fb81672f9af5524860e39c68
+ last_write_checksum: sha1:a57d82628e130f199766ced8fbd751376e00ab13
docs/Models/Components/CreateTransactionResponseInput.md:
- last_write_checksum: sha1:2f38f693d4dfd09974561f6e5b90bdea16f133b1
+ last_write_checksum: sha1:5ebfadb461a19b5351bf59c248b463b9eb624009
docs/Models/Components/CreateUpdateDiscount.md:
id: ac930a058632
last_write_checksum: sha1:7d90040762b7409f1cfd05c2931db60038f441b9
@@ -1692,6 +1604,8 @@ trackedFiles:
id: cd1563ff397f
last_write_checksum: sha1:f36a5081c8c7272917f6a89c330ed9b41474c67d
pristine_git_object: bceb471ed6c896ff539c4b163b6a319f45f88806
+ docs/Models/Components/CreatedBy.md:
+ last_write_checksum: sha1:4f8bdd1c9530addd9b87354a73e2fe5bcf5e3082
docs/Models/Components/CreditCardRequestJson.md:
id: f09331a7d062
last_write_checksum: sha1:a28bba9562f93e35a00875fba31d05557b902812
@@ -1728,10 +1642,8 @@ trackedFiles:
id: e8b703e9b6e6
last_write_checksum: sha1:b37bb3a1f735456b5558ab27e2caccc3bcaff29b
pristine_git_object: 4eb65ea9ca424aa2367c5b49cb01542601a428ed
- docs/Models/Components/CurrencyJson1.md:
- id: c3c48dc6ca2d
- last_write_checksum: sha1:876e2d1c1b6afc12815f09cb092f1c27823008cc
- pristine_git_object: 7a238f0a620ac8294466b1d09aad085abff3c0b0
+ docs/Models/Components/CurrencyJson2.md:
+ last_write_checksum: sha1:1b2afb614fce9712b962ca6c66c6f69983c6bcde
docs/Models/Components/CustomAnswerFormat.md:
last_write_checksum: sha1:423e835437404e341b8818215d3be76de39d6f14
docs/Models/Components/CustomDuration.md:
@@ -1747,9 +1659,11 @@ trackedFiles:
docs/Models/Components/CustomField2Input.md:
last_write_checksum: sha1:e70c49a6ebb23a2062d93304ad8d43e918743cee
docs/Models/Components/CustomField3.md:
- last_write_checksum: sha1:78c41be23d5398991b5363d1f24f1aa4d209f079
+ last_write_checksum: sha1:1a86220c84e2e3900f52771b417ed0db43af5fda
docs/Models/Components/CustomField3Details.md:
last_write_checksum: sha1:1c93c7d06f49dd868d1086cebc759ec36f22e933
+ docs/Models/Components/CustomFieldAnswers.md:
+ last_write_checksum: sha1:460099665b8e400fee3f8fbff492391276bade5b
docs/Models/Components/CustomFieldCategoryJson.md:
id: 1bbe6f0b4331
last_write_checksum: sha1:c75c80f7805fe6c1bc263d8f6b800baf975e11f9
@@ -1764,26 +1678,24 @@ trackedFiles:
id: fc89b1292ad5
last_write_checksum: sha1:0fdeacc68d00e183beec4d1b1b332ca05609eb09
pristine_git_object: 57b2f0968593dbea9259c0a0388e971732cb19d4
+ docs/Models/Components/CustomFieldJson.md:
+ last_write_checksum: sha1:054bb61ebb36d49853d9a32ee1c2ba28e4ec192c
docs/Models/Components/CustomFieldJson1.md:
- last_write_checksum: sha1:e7be26c19a734849983e936c5fef4342ff63114f
+ last_write_checksum: sha1:02bd112ebab3e430ba405566a416c59bb165d5bf
docs/Models/Components/CustomFieldJson1CustomFieldType.md:
- last_write_checksum: sha1:e2c89b133f3ae9720b74ce097424e4540fb97082
+ last_write_checksum: sha1:e6bd6ef41da0eefe0e325d7ac9d42d9dbcbd2246
docs/Models/Components/CustomFieldJson2.md:
- last_write_checksum: sha1:e784956afe3eb48e43a4762c38fb320dfcaaed38
+ last_write_checksum: sha1:46a81c250f03a41dcd6eccbffbfaf9ec8f71c569
docs/Models/Components/CustomFieldJson2CustomFieldType.md:
- last_write_checksum: sha1:b40aaa4cd1efd8bb7f9a3dca2e86fc1d9520f4f7
- docs/Models/Components/CustomFieldJson3.md:
- last_write_checksum: sha1:357a2b401ee792b929916267bdbb7702ba09a2ce
- docs/Models/Components/CustomFieldJson3CustomFieldType.md:
- last_write_checksum: sha1:c1c91902ded65e409cfe6d781ead598b70aaa965
+ last_write_checksum: sha1:41b7510f6cb92015c3ce8e90efc25927f17540e6
+ docs/Models/Components/CustomFieldJsonCustomFieldType.md:
+ last_write_checksum: sha1:c66807f58883288b73200099076edb186877acf5
docs/Models/Components/CustomFieldSchema.md:
last_write_checksum: sha1:7c252dc6c764fad9a4102c49ffb9148ef874b35f
docs/Models/Components/CustomFieldSchemaCustomFieldType.md:
last_write_checksum: sha1:fa9bae37ac2ed2d833c3aefc604450661c720fb0
- docs/Models/Components/CustomFieldTypeJson1.md:
- id: f129e5584775
- last_write_checksum: sha1:9128ac34988e0bbdee38f67d31f9d9063a4a3e32
- pristine_git_object: 7e0d8f1f96bee7eb1558cbaea2da57d32ac2f924
+ docs/Models/Components/CustomFieldTypeJson.md:
+ last_write_checksum: sha1:2fe92cae470a90672797fbffe8621b05248db25e
docs/Models/Components/CustomFieldsJson.md:
id: 6552a89c0fa6
last_write_checksum: sha1:df7a20a76810c45142420e403489f06feb67f2c3
@@ -1792,46 +1704,32 @@ trackedFiles:
id: dbb882b48b7a
last_write_checksum: sha1:b4e71176e725b1050f911ac972873124b36c436f
pristine_git_object: 25d6b6d6dab925d611afeb48b60d81fa934964e1
- docs/Models/Components/CustomQuestionAnswerJson0.md:
- id: a633a48ff340
- last_write_checksum: sha1:33399975f5a0592fa9668271a62a6cf2b051f355
- pristine_git_object: 158f48ec8e3b9dac8791045b3ff590a3505366e3
- docs/Models/Components/CustomQuestionAnswerJson0Question.md:
- id: d6e2e64b0c19
- last_write_checksum: sha1:8ef3201c440489478c5224e06466a3a21bdba2b7
- pristine_git_object: dc41dfb8810aefcdd93fc49f119452124516a3a5
- docs/Models/Components/DateAnswerFormatJson.md:
- last_write_checksum: sha1:be23939ad11a819bf9207e9979b100482ff80666
- docs/Models/Components/DatePatternJson0.md:
- last_write_checksum: sha1:4164c9beec6a6359237e7132fb9a6e582d1770e5
- docs/Models/Components/DateRequirementsJson0.md:
- last_write_checksum: sha1:f1832cc68e87ad4481517bf7fa9a6b5d9347b2fd
+ docs/Models/Components/DateAnswerFormat.md:
+ last_write_checksum: sha1:c286a155638439663c421c8ddda0f0396644deaf
+ docs/Models/Components/DatePattern1.md:
+ last_write_checksum: sha1:4b191e587124b9c8bea424e88b16642c9c431bf1
+ docs/Models/Components/DateRequirements1.md:
+ last_write_checksum: sha1:7a63322fcaea027234c9d8ebe7c36b0b0f0de048
docs/Models/Components/DateTimeDisplayFormatJson.md:
id: 8367ee33d1f8
last_write_checksum: sha1:98104aec1bfc7e818dad60a9e8671cfa0130e986
pristine_git_object: b236f4d06a129fe531dd2bb29e0c36e349c8cc18
- docs/Models/Components/DateTypeJson1.md:
- id: fe9a44c5b857
- last_write_checksum: sha1:e2d77d24f1aa949c683ff459a05f36d37a3b5213
- pristine_git_object: cf3aab95389a147cd256bda989ecec9876db8172
- docs/Models/Components/DatesJson0.md:
- last_write_checksum: sha1:1ac7e4c0fe6aeb9bd841bc868d503c097ecd6484
- docs/Models/Components/DayOfWeekJson0.md:
- last_write_checksum: sha1:f08bab622e5299b74e383184b13cfb646018805b
+ docs/Models/Components/DateTypeJson.md:
+ last_write_checksum: sha1:df43899ea1b4781f717b186921c971e687eb10e9
+ docs/Models/Components/Dates1.md:
+ last_write_checksum: sha1:061378845ce16906df3d2e879597175747e454ee
+ docs/Models/Components/DayOfWeek.md:
+ last_write_checksum: sha1:13a11a97960f17bc3a38dfc6fcb4cb6bbb83c6df
docs/Models/Components/DeclinedReason.md:
id: 324f5e70e0e7
last_write_checksum: sha1:34d31b4cc630c605d1d9b0877cb5aef0f33a50ca
pristine_git_object: e51ad3a3261e72c1460e94e20c2a7cae34985c6b
docs/Models/Components/Device.md:
last_write_checksum: sha1:1f8233c032340e79aa04d5f6f1c9b7af08e65055
- docs/Models/Components/DeviceJson.md:
- id: 8fa25a76ad95
- last_write_checksum: sha1:3056a6b84cd2dbdc90cd59eecda77f4b5ec9c4ea
- pristine_git_object: aaa4aa9a339e9f0a131d3ebda493962a552dd11f
- docs/Models/Components/DeviceTypeJson.md:
- id: a1c2697dac2b
- last_write_checksum: sha1:25122921836b50c7c35fa9c097a6ea14388b7a82
- pristine_git_object: e7726fc0f5608fae15608784c737d513e6cdaf7b
+ docs/Models/Components/Device1.md:
+ last_write_checksum: sha1:aafc558f288aafb9af585213a949f4abc6631b4a
+ docs/Models/Components/DeviceType.md:
+ last_write_checksum: sha1:a147ba37e1218e95cfc10ff6faa85cede884c71e
docs/Models/Components/DiscountAgendaItemsPaginatedResponse.md:
id: 68258fa9bccd
last_write_checksum: sha1:e46aa1bcd675ac511b51b607c4db4834009b6ac6
@@ -1854,32 +1752,24 @@ trackedFiles:
id: e5103d0a768c
last_write_checksum: sha1:90686b8936774fb8387e63d25fbb66b9a8ca74ea
pristine_git_object: 141c94d562af3ec77cf3d769cceb0aebdeca83dc
- docs/Models/Components/DisplayTypeJson.md:
- last_write_checksum: sha1:054049b207c340661912a0312db547dc1001c1c2
- docs/Models/Components/DistanceJson1.md:
- last_write_checksum: sha1:f20b741a36bc6987e024818242f7beb942987900
+ docs/Models/Components/DisplayType.md:
+ last_write_checksum: sha1:389208df9170976cffcd33062d664b7bdb2c1cce
+ docs/Models/Components/DistanceJson.md:
+ last_write_checksum: sha1:bb8bb0185e0918541c83df54a7a80bee247c3b07
docs/Models/Components/DistanceUnit.md:
id: d9e56675a811
last_write_checksum: sha1:adb5634e902825992eaf475a959f174924d65c09
pristine_git_object: 863505d9886f9c530668c2f98a0d272a685fb3e0
- docs/Models/Components/DistributionListInfoJson.md:
- id: 2bf75a0d0f83
- last_write_checksum: sha1:fd508edb2f17bc611770bbfcbc9ef512762513a0
- pristine_git_object: b03dfb8db7ded4b6c4db67704dee214b6837c5f3
- docs/Models/Components/DistributionListInfoJsonInput.md:
- id: 0260298c03e2
- last_write_checksum: sha1:c415dfbcc5e1ad91a0c60d0b78fd7171c149c110
- pristine_git_object: 4c4068538a05506ef5a610d1674f4b13b9e1a709
- docs/Models/Components/DistributionListSecurityTypeJson.md:
- id: 0ba1e1d2dd91
- last_write_checksum: sha1:37c97439d1d664653d5c71443d6abda745bd04ac
- pristine_git_object: 7e512e4b397e7b70dbc9a5f5ece1f5f3f81f0a7b
- docs/Models/Components/DistributionListStatusJson.md:
- id: b7a1f0183df5
- last_write_checksum: sha1:c9cea916763f65caaf8f8175a16cac2a8db00219
- pristine_git_object: 89014140a7e5cb78d05bd243eedbc05204996535
- docs/Models/Components/DocumentTypeJson0.md:
- last_write_checksum: sha1:2997adc8bdf435acfbbc5437609a7680065780de
+ docs/Models/Components/DistributionListInfo.md:
+ last_write_checksum: sha1:b98190a15311c205d5f6b1e9584ca6cbd77511e7
+ docs/Models/Components/DistributionListInfoInput.md:
+ last_write_checksum: sha1:29caaf4b613393e1717ee1e0e9859eb6de4bafd2
+ docs/Models/Components/DistributionListSecurityType.md:
+ last_write_checksum: sha1:732c8bd1214cfd70f024f01dceb318962afe92c8
+ docs/Models/Components/DistributionListStatus.md:
+ last_write_checksum: sha1:c35c195befbfc9cdef1a48e39139c3d035ac209d
+ docs/Models/Components/DocumentType1.md:
+ last_write_checksum: sha1:2bf063f7d7853772ebe0f0183d5d6ca67327bbbd
docs/Models/Components/DonationItem1.md:
last_write_checksum: sha1:2cd966bc67e55a8bda8058e21eb01f13a149a612
docs/Models/Components/DonationItemsPaginatedResponse.md:
@@ -1916,7 +1806,7 @@ trackedFiles:
pristine_git_object: 3386d1e73ae00100f808708a7e0e6b6988132a33
docs/Models/Components/EmailHistoryJson.md:
id: 0377e62890d3
- last_write_checksum: sha1:52884a16fbd78d3ab55496e6d55c457bcf83d481
+ last_write_checksum: sha1:e1ec8c1b8ca7de6fa78005c1fa8de951a499b586
pristine_git_object: 5923a472a13a97fc83f515439c2c059d9c86db07
docs/Models/Components/EmailHistoryJsonAttendee.md:
id: c2c0ddf31d8f
@@ -1936,7 +1826,7 @@ trackedFiles:
pristine_git_object: 5b22425b7d98ee6f8aa7f10414776bdebcdb8100
docs/Models/Components/EmailJson1.md:
id: b50510d82a8c
- last_write_checksum: sha1:b4c88a435784770e5f3eef2a148101d296595127
+ last_write_checksum: sha1:3ddf38d19776ac6cfcdc95475d986e764f43968c
pristine_git_object: 195d7f0e80911932b619a18830508ad3313decb5
docs/Models/Components/EmailJson2.md:
id: 9cb383e554d3
@@ -1974,28 +1864,24 @@ trackedFiles:
id: d51290e75e6a
last_write_checksum: sha1:2dc8494e93fdcc402b78412aa53860f37175cb58
pristine_git_object: 1eec741122f37577b1f8dc17e8362446d4873e9e
+ docs/Models/Components/EmailTypeJson.md:
+ last_write_checksum: sha1:b6f3ce76a5264401594072bcbc16481001389d3b
docs/Models/Components/EmailTypeJson1.md:
id: df1a122d8778
- last_write_checksum: sha1:c55e49468bde61e3bd4def414756e58f46bd5321
+ last_write_checksum: sha1:2e7d7df63be8dc1da370cb5b7a5e7a54b8e24b01
pristine_git_object: bb5678414f3ba5d35686872a313ca5d1b5d8ebe4
- docs/Models/Components/EmailTypeJson3.md:
- id: 8e101cbe5804
- last_write_checksum: sha1:77b1641a5e8ed55243443384f8584e8956a1bc73
- pristine_git_object: 746c9b3cf53e66b1dd852ad9cb384f948af965ba
docs/Models/Components/EmailUndelivered.md:
id: f262524bb67d
last_write_checksum: sha1:baca9b6800b8da307ddbcea0773b25a0501056a6
pristine_git_object: 230536eb0a4fab7644525b98873b39896ee86193
- docs/Models/Components/EncodingProfileJson.md:
- id: 3d16729be957
- last_write_checksum: sha1:885852ab3af40cbd1afd51ae8c2fc9cc6bdef94d
- pristine_git_object: 4df6f03cad4a7d968be7bd9810e5334378347cb4
+ docs/Models/Components/EncodingProfile.md:
+ last_write_checksum: sha1:662aa4b698d4ea76daef2b0b28d56c15ba857260
docs/Models/Components/EntityType1.md:
last_write_checksum: sha1:b9fb51b3fe6b046cded48fb92bc37e56a6ca24fb
docs/Models/Components/ErrorResponse1.md:
- last_write_checksum: sha1:83d8917a678de89a5ef5dc86488b76e8cd3d6375
+ last_write_checksum: sha1:893316ee04b254020ebddab3d743efa467e1f969
docs/Models/Components/ErrorResponse2.md:
- last_write_checksum: sha1:371073feed895ef26e26fbb96869764df7ff8778
+ last_write_checksum: sha1:bba5c5c843cccf6faea9aa5e405680c5a517e698
docs/Models/Components/ErrorResponseBase.md:
last_write_checksum: sha1:6baf48856c4a32449eeaada7052734c28635866c
docs/Models/Components/ErrorScimTypeJson.md:
@@ -2015,11 +1901,13 @@ trackedFiles:
last_write_checksum: sha1:028b3fad1731054c1c0121eff026592f9365a230
pristine_git_object: 7cf45ae02a691d3135ab911d9d4a4aacfbaa594b
docs/Models/Components/Event1.md:
- last_write_checksum: sha1:26d4e1a7a111604c76b6d8973f2ad9810f2311e3
+ last_write_checksum: sha1:1acb74e0ba218208b694aa4611acaed871ecdfcb
+ docs/Models/Components/Event12.md:
+ last_write_checksum: sha1:a3d902fc0fc911a90b6996ab5160766def3c7e41
docs/Models/Components/Event2.md:
last_write_checksum: sha1:5d769fb695c55c8356dd84e018ea4c0ef642ee68
- docs/Models/Components/Event21.md:
- last_write_checksum: sha1:bc3b1b556015a4bdd1691f69c2b905a99dcd0298
+ docs/Models/Components/Event3.md:
+ last_write_checksum: sha1:a63c4fa6d2556b16fa2e1361016cf194da0545ac
docs/Models/Components/EventActivityDetailsJson.md:
id: 6d1cce021ecb
last_write_checksum: sha1:6e741062c39cd74b6db884e0e473b2f51d15df3b
@@ -2036,10 +1924,6 @@ trackedFiles:
id: db750561f142
last_write_checksum: sha1:5158fabe8eafa0ce01c438761064e74a365ecdf5
pristine_git_object: 2206ffbf7c6c0c34b177217be325c4808511ad79
- docs/Models/Components/EventAllOf.md:
- id: ec2e5ec281ad
- last_write_checksum: sha1:f3fe808c6aaf9a0537443c4581b282a76123da4d
- pristine_git_object: 04be9ccb7eab739ca9730b65d3ff1bfac438c570
docs/Models/Components/EventAsyncResponse.md:
id: 1698ca4ed209
last_write_checksum: sha1:322039b6e59ca12d04cb8a4c1fd0cef920c19372
@@ -2096,10 +1980,8 @@ trackedFiles:
id: 978361e03ffc
last_write_checksum: sha1:05663ac0a4f211590cc1bfad141c73e336c5a9b8
pristine_git_object: 99f12f1ed21a762474acde6545763e5120be9aef
- docs/Models/Components/EventContactIdJson.md:
- id: 22dce01d6a50
- last_write_checksum: sha1:5fc3fb4ec2aaa5c694a2b3a625e67fb96189f55c
- pristine_git_object: b891cba47c690335199b41f667c365e835ed9c83
+ docs/Models/Components/EventContactId.md:
+ last_write_checksum: sha1:642ef022ca7316bc40d48bb5f118f3ac2648ca41
docs/Models/Components/EventCopy.md:
id: 906a07f75d87
last_write_checksum: sha1:0c5a1fb415f2813c5765dd873b0bd42ed1bb2115
@@ -2118,7 +2000,7 @@ trackedFiles:
pristine_git_object: b32504791cd399abd24f3ef24d21ef9294dfa510
docs/Models/Components/EventEmailsPaginatedResponse.md:
id: 0d8cda0847a9
- last_write_checksum: sha1:c0749024614c9ddf7a40e4586c25d6174f14e2b1
+ last_write_checksum: sha1:47f022413aeef7ad2bbc8ce01d4efd3ca2d4f8e5
pristine_git_object: 0a2ad76a85d69bfb393b219a395439204bc2a55c
docs/Models/Components/EventFeatureJson.md:
id: 4424d928f340
@@ -2152,34 +2034,30 @@ trackedFiles:
id: 07a87fd92664
last_write_checksum: sha1:7ed8fba6f39d046bbfd1f7efc544cf199cb72671
pristine_git_object: f3ecb0efb0e4a1ed7e36b81be416b604aef97d03
- docs/Models/Components/EventFormatTypeJson0.md:
- last_write_checksum: sha1:94b3cd5bc7be39443c98b2699b13a5d88787876c
+ docs/Models/Components/EventFormatType.md:
+ last_write_checksum: sha1:00e9c9affdf8f268263be18210be5031285cd603
docs/Models/Components/EventId.md:
last_write_checksum: sha1:c898ad32d40470cccf313e3dde5edec130bbb36f
docs/Models/Components/EventInput.md:
id: 786ba880c24a
- last_write_checksum: sha1:ef708549c0727aaada42c120d76661f65d6fadda
+ last_write_checksum: sha1:98e394d2d25a32df2b605d6df636e6267606678e
pristine_git_object: 8e06f2783f97a7acc147ccd28a966872c0e4ff9d
- docs/Models/Components/EventJson0.md:
- last_write_checksum: sha1:8fe25b536c81375f86f58118e5d048b670bfcb56
+ docs/Models/Components/EventJson.md:
+ last_write_checksum: sha1:fda4c9ab969b75f5fba39c374b9762f683049bd1
docs/Models/Components/EventJson1.md:
- last_write_checksum: sha1:fc0ad4b1b0f14502bdfce9388967c2822b617105
- docs/Models/Components/EventJson2.md:
- last_write_checksum: sha1:706637a858ae4fae1a3d5725b9e841697d4d84be
- docs/Models/Components/EventJson4.md:
- last_write_checksum: sha1:a44a534dda27bbe1ed0bcca02af0db98cbd6fd47
+ last_write_checksum: sha1:274d1c3249d8572313fd3d5f02943d04e648b9c5
+ docs/Models/Components/EventJson3.md:
+ last_write_checksum: sha1:9ae2edf0adeffeb290f2e2b5bbce74f0de6e241f
+ docs/Models/Components/EventJson5.md:
+ last_write_checksum: sha1:eda5a495ee0accddb9e5a29e784680aef46ae8bd
docs/Models/Components/EventJson6.md:
- last_write_checksum: sha1:1b14829e8560807afb7d898fd25058ab7dc98dff
- docs/Models/Components/EventJson8.md:
- last_write_checksum: sha1:da8804a2c73bc7cb769ec8eb57b8fd3cff1abb54
+ last_write_checksum: sha1:e1c4013ad7993ae5cbacd8d0d65951a6a3b8b490
docs/Models/Components/EventLinksJson.md:
id: 10d087b72bd0
last_write_checksum: sha1:bb6e959c06e87b77345b3c1ee325276f928298ca
pristine_git_object: 393e51f4c82dbd8a2ceeaaca35a8d4a58f8f5a3b
- docs/Models/Components/EventLiteJson.md:
- id: 5a5246609240
- last_write_checksum: sha1:27340b9ed1ce6802da086c657ec14a367540d908
- pristine_git_object: 5a8d39be1e09e750bb2b03541797c3f0c5a3a352
+ docs/Models/Components/EventLite.md:
+ last_write_checksum: sha1:3430f90d05397baa3fb3207ade67b50ad4d1cd52
docs/Models/Components/EventLookup.md:
id: f44176ebff6f
last_write_checksum: sha1:7ceff35d81a05e80c9db654e6d0e40e92e5988b1
@@ -2188,6 +2066,8 @@ trackedFiles:
id: 7450197827ad
last_write_checksum: sha1:7723106852dc4a9c80b90ebf4ddc4832220e3881
pristine_git_object: 1c367d0113ed6863ddf0e0c179f8bd0581a3985d
+ docs/Models/Components/EventOrganization1.md:
+ last_write_checksum: sha1:2d2fccfc8aab622d55ef7fdcd5abe2aa3355d28f
docs/Models/Components/EventPageVisitTracked.md:
id: f3dd2583d7c4
last_write_checksum: sha1:c04ed05fe26be82f9f8d23386fc4b78e63512762
@@ -2204,7 +2084,7 @@ trackedFiles:
pristine_git_object: c8d3c04230adb6cb27f82a172e723d9ccd6d17f3
docs/Models/Components/EventQuestionJson.md:
id: "065801763220"
- last_write_checksum: sha1:b8351ba80da06dd0098ddf3c0e5c7a546665ac92
+ last_write_checksum: sha1:11dcc60104d09b8fbd68083c73386012e875acd8
pristine_git_object: bd5163402309fe87562fde33dc069f7c43439d47
docs/Models/Components/EventQuestionJsonAdmissionItem.md:
id: 1f90abc22de8
@@ -2280,7 +2160,7 @@ trackedFiles:
pristine_git_object: c808fabcb046c9d95bf4879ed8a8df8af5ec3143
docs/Models/Components/EventSurveyQuestionJson.md:
id: 8b4fdeb88172
- last_write_checksum: sha1:c1f046af7b1925ea0ac016af9383698e9f808bb6
+ last_write_checksum: sha1:8d21e25e4a1390642a2786560b8bd10434a04bfd
pristine_git_object: 7eaad50803b3d6fd1521b3f409d8898f7ab0f870
docs/Models/Components/EventSurveyQuestionsPaginatedResponse.md:
id: 3afea1410f20
@@ -2288,7 +2168,7 @@ trackedFiles:
pristine_git_object: 91b77939fd514df05fe3633f6ba9d293d9d7df23
docs/Models/Components/EventSurveyRespondent.md:
id: ce08bda9f8ca
- last_write_checksum: sha1:4bae6175f0b3e902199e41eaa3f46510d163f1ea
+ last_write_checksum: sha1:7e78f7bd522181a220a9d6bea6e29e2a5403a3a2
pristine_git_object: 581b5d45b87cd90ff357b0f2739881855bbb51ba
docs/Models/Components/EventSurveyRespondentAttendee.md:
id: 5f995ac1331f
@@ -2312,7 +2192,7 @@ trackedFiles:
pristine_git_object: f7d88c4cad8e8a84053ea8e016fa83fd113b9c13
docs/Models/Components/EventSurveyResponse.md:
id: 05b78fae1ebf
- last_write_checksum: sha1:24ae8daee528491b9b4c3548d8a6474e2654d420
+ last_write_checksum: sha1:893467e503d23e6e6c137cdd4c38ab111b332852
pristine_git_object: 4f410a68e7e263552e43eac848be2ba8d0d433af
docs/Models/Components/EventSurveyResponseInput.md:
id: a69bb5fd8ec1
@@ -2338,19 +2218,17 @@ trackedFiles:
id: 5a05874dac56
last_write_checksum: sha1:b725a852ecfb35283c6306b18d57106bc4dcd9cf
pristine_git_object: c153fe2b3df0b6fc2d5975e307dea4a3b41d1e56
- docs/Models/Components/EventTypeJson0.md:
- last_write_checksum: sha1:9ae2007af3fc40361874d3b7a151b3289a56d278
- docs/Models/Components/EventTypeJson1.md:
- id: 61c616693c14
- last_write_checksum: sha1:0f0c6cb5393aeb98435fdf613fc6c66f0d002474
- pristine_git_object: 52ae7370443e67e949875dacc6825b9b19812bf0
+ docs/Models/Components/EventType1.md:
+ last_write_checksum: sha1:34aff2a7dfcbdf1872b5bd0cbd13e7830074b7c3
+ docs/Models/Components/EventTypeJson.md:
+ last_write_checksum: sha1:23f896a4804260bd325d56eb2dcdbe9868ae2478
docs/Models/Components/EventUpdate.md:
id: fe7892d3cb73
- last_write_checksum: sha1:0708fd7f75c4392491320e89d283cb1e351b7448
+ last_write_checksum: sha1:aa9e31203591727a3265f9f39473b1441dccf652
pristine_git_object: 400764ecaf2d5e9904052e489875278cd295f545
docs/Models/Components/EventUpdateInput.md:
id: 4534761ddce5
- last_write_checksum: sha1:29f5e8eb196de088207bf3d20fef45cd14db0153
+ last_write_checksum: sha1:1ad78effd661f5852656da145e3ea0a8c5cc3da4
pristine_git_object: 96ec1ce27a79d33130cbd30886808f7d055672fd
docs/Models/Components/EventUpdateLookup.md:
id: aa6d5cebdadf
@@ -2428,7 +2306,7 @@ trackedFiles:
pristine_git_object: 8bb95f2a4cf9b6c06f60817378680bdc809f9c69
docs/Models/Components/ExhibitorCategoryRequest.md:
id: 8693227891d8
- last_write_checksum: sha1:6bb196d87e7357aa66045f7377a3caf6fc58ab98
+ last_write_checksum: sha1:0e97b7d1bd0d906619462b828208b275743763cd
pristine_git_object: 909a791815a3e7a579ddd96f20632d67ea39cb6a
docs/Models/Components/ExhibitorCategoryRequestType.md:
id: 40f0f389bac2
@@ -2436,7 +2314,7 @@ trackedFiles:
pristine_git_object: 6c95b4a98b81eeefbb523a85548bd0df9b6955bd
docs/Models/Components/ExhibitorCategoryResponse.md:
id: d5f621904af8
- last_write_checksum: sha1:57fdb11a732aef908692296589b249f46e44a7f1
+ last_write_checksum: sha1:84938e404c328c12f80062c7528542731423a41d
pristine_git_object: 5fb5b7e3f9b4689aab11002df02537f14a9ec3a1
docs/Models/Components/ExhibitorCategoryResponseType.md:
id: a3624f809a33
@@ -2468,11 +2346,11 @@ trackedFiles:
pristine_git_object: 8b27cb16de23fa4fecbf85b70ab29fa25821f6d8
docs/Models/Components/ExhibitorRequest.md:
id: 715ca92dd402
- last_write_checksum: sha1:3eb52fc1aaf992575e1164334500117a5686f6c4
+ last_write_checksum: sha1:cdb1dce925593daa4ee829e410457ec22d164dc3
pristine_git_object: e7e5e5db90d93c805f20608ff6ec4fcc439e6a29
docs/Models/Components/ExhibitorResponse.md:
id: 8270ba4f39f7
- last_write_checksum: sha1:da5d14de52a9f216a690c6fb967940e325645c42
+ last_write_checksum: sha1:5c3eb09b52929804772abc3c0d87a8689babe6fd
pristine_git_object: d3bfeb7494fa9d3673844926e7a2f1a456639187
docs/Models/Components/ExhibitorSocialLinkOpened.md:
id: c4a7a3dac67f
@@ -2512,7 +2390,7 @@ trackedFiles:
pristine_git_object: 6889314798efd7b4ee565129ecbb5216b5f4c240
docs/Models/Components/ExistingAudienceSegment.md:
id: efd3f5d865b8
- last_write_checksum: sha1:bb319aa046dd19bf279388f83aca4b5171b55e1c
+ last_write_checksum: sha1:0c41f3886b216e298f1fe247b0374f6562f25308
pristine_git_object: 487d032347baa56b67eb9ef3975a79c35322f645
docs/Models/Components/ExistingAudienceSegmentCreationTypeJson.md:
id: 053052e28259
@@ -2520,7 +2398,7 @@ trackedFiles:
pristine_git_object: ec72ba859dae70c5624d6f97199845258c3df453
docs/Models/Components/ExistingAudioTrack.md:
id: ec83bc305850
- last_write_checksum: sha1:8a6267d4288aa50e07acf03741b202644cabeb2b
+ last_write_checksum: sha1:480f19d31f7e8112ef87642c027e6dba6c8b882c
pristine_git_object: 0998f4c53e4d4631787b2f3d5fe0e8545de0f590
docs/Models/Components/ExistingBadgePrintJob.md:
id: 07c499dcfa40
@@ -2536,19 +2414,19 @@ trackedFiles:
last_write_checksum: sha1:b4f39199ec0e2f3bd0e1461063b00da07883a6dd
docs/Models/Components/ExistingCustomField.md:
id: bc02edd528b6
- last_write_checksum: sha1:3030b3e47f9be65289e4f3ae2a45526d8fa5e0c3
+ last_write_checksum: sha1:146e3e8bb1b8c4ccb3b384ef5724a561be8a4c59
pristine_git_object: 1e35a8721ae44ab72f75d045334dc0e0d1fc2ebc
docs/Models/Components/ExistingCustomFieldDetails.md:
id: 261684c15347
- last_write_checksum: sha1:ddf561d9b347c1e8a12add4c20467b99d7fdd0a5
+ last_write_checksum: sha1:e1d638b93808ca21f2800630522622445a23e5da
pristine_git_object: e5e03e5b63eeb81709227a3d7ae3783a0bd432d4
docs/Models/Components/ExistingCustomFieldDetailsInput.md:
id: 9b43ac436241
- last_write_checksum: sha1:95d57672b0c1a0f40a65b58c9414f11fb1891456
+ last_write_checksum: sha1:b59b216540dcb317639a7c45a3b2ca7eca27b05b
pristine_git_object: b9554c35b36a30f985621df2009dc44ee19f5db5
docs/Models/Components/ExistingCustomFieldInput.md:
id: 0106a5e43737
- last_write_checksum: sha1:62c2d5636b0c63d112c032e51f71d1a5cc2830cf
+ last_write_checksum: sha1:4bef3fe9a758c5b152e94ec4696dc6cef6f7f527
pristine_git_object: 06882c7cc178a99d16167d999c501e9ad6cbcd71
docs/Models/Components/ExistingDiscountCode.md:
last_write_checksum: sha1:3c42f3143ffc17e0504cb4dd38149c3341e1edb8
@@ -2570,21 +2448,21 @@ trackedFiles:
pristine_git_object: b7f111caf51a411b958ef385f121607b25d8f34f
docs/Models/Components/ExistingDurationType.md:
id: b8f659d2f70f
- last_write_checksum: sha1:dc60426a29c3bf457522b1ad149d0f22e8669492
+ last_write_checksum: sha1:946b761ce5545b48db27d358fd83383da0a800c5
pristine_git_object: 62f32d4a37237533f5b6d340bf5ae4246d75063c
docs/Models/Components/ExistingELiteratureRequestDataForLead.md:
- last_write_checksum: sha1:98f9ad638acfaad2a05808924500b43742e0195f
+ last_write_checksum: sha1:c2ecf3f359f17ad7df2ba6003ee6350fd5cf3d23
docs/Models/Components/ExistingExhibitorAnswer.md:
- last_write_checksum: sha1:b0a324170054b05b58e98a3c86eddd843026b1b2
+ last_write_checksum: sha1:eaa4971d7b051d11b63a720b5e07a923c48d6f1f
docs/Models/Components/ExistingExhibitorAnswerInput.md:
- last_write_checksum: sha1:e257c1ea034e04967cd7ccf00746e6d270d44205
+ last_write_checksum: sha1:30d9c1d848ecf30e3a60fc5a77dee17db39b219d
docs/Models/Components/ExistingExhibitorQuestion.md:
id: 4c90a240a21f
- last_write_checksum: sha1:17bd233b203d6965edb6f9cdd11ebe78d4f19f51
+ last_write_checksum: sha1:ec81f677196659e93177fe458f09f395abfc30a1
pristine_git_object: a821ee772473199954c79569b0d1556b069e03c0
docs/Models/Components/ExistingFile.md:
id: d90ad4c474cb
- last_write_checksum: sha1:d33ad928e82e645225148473968a3a054df43a7d
+ last_write_checksum: sha1:1e85b00ed953af7e43ce19b6fde64b79086c5dbe
pristine_git_object: c1db46c47bf395113dfc22abb12c7111802229e9
docs/Models/Components/ExistingHub.md:
id: 4c2abd932332
@@ -2644,7 +2522,7 @@ trackedFiles:
pristine_git_object: 921e2c7bf491a680f414971287b107f8f40db7df
docs/Models/Components/ExistingSpeaker.md:
id: 1c5295663497
- last_write_checksum: sha1:4edf7a954b32e02f1e6a74129cf44076e4bf0d20
+ last_write_checksum: sha1:d867ea5519c5969676428af1922c5a494552ade2
pristine_git_object: aeb2ab5e09df2a75b6223c701699d31bb86ae444
docs/Models/Components/ExistingSpeakerCategory.md:
id: af584e8a5155
@@ -2656,11 +2534,11 @@ trackedFiles:
pristine_git_object: 2d6f467b0614d33f1b010c5d2409f0347fcd6f05
docs/Models/Components/ExistingSpeakerInput.md:
id: 98e1b36f0126
- last_write_checksum: sha1:edf9dfa656646cbaef1fa7bc2041e3034b12fc90
+ last_write_checksum: sha1:b8d27acf8e7574c43405c813dea3041b3c7e77f7
pristine_git_object: d5dc3f1559844ef64ec648af7b31ff71a99fa059
docs/Models/Components/ExistingSponsorshipLevel.md:
id: eca302273648
- last_write_checksum: sha1:527083fc5dc8d48aa3e9ff5934a4e1d89a75f44d
+ last_write_checksum: sha1:f33a4e02cb26ee4fb2524c1bb7db6c2dc4af4a5c
pristine_git_object: 4e5fb47fb962db3bec4092c61876a663d2d91283
docs/Models/Components/ExistingTableWithSeats.md:
id: fd9778f44795
@@ -2668,7 +2546,7 @@ trackedFiles:
pristine_git_object: c88c5713511a1f916274938bbc19516ebc9b173f
docs/Models/Components/ExistingVideoResponse.md:
id: 25f8deb6eac2
- last_write_checksum: sha1:5829ad6f3a781db8610ff6013169ddd9117f9ac0
+ last_write_checksum: sha1:b9bac09e3978f20ac57ec27aac425eff71cfa24e
pristine_git_object: 500bd16819c6f0f6fd8b1d66e0f8588d3227132b
docs/Models/Components/ExistingVideoResponseUUID.md:
id: 0af66a57b94e
@@ -2676,11 +2554,11 @@ trackedFiles:
pristine_git_object: b712eb49e8dd8af3dbc50b387914ff3bd9cbc150
docs/Models/Components/ExistingVideoTextTrack.md:
id: 6909ae665fb8
- last_write_checksum: sha1:fc4d84c816948548631866340ff4c0a113808e83
+ last_write_checksum: sha1:da95354e66ad3cf64f8658df1d27ec83f09cce08
pristine_git_object: a968528d45e450bf43613a2414c3db066538a8f5
docs/Models/Components/ExistingVideoTextTrackInput.md:
id: 293719f41ff2
- last_write_checksum: sha1:611decbc6828d8a700c979f4ba9933e2d5078372
+ last_write_checksum: sha1:dc3a3feae47d54722607e74fad7dd2f655e85e9e
pristine_git_object: 6d65233b551024b9ae8dccb6d28dcc244a120984
docs/Models/Components/ExistingVolumeDiscount.md:
last_write_checksum: sha1:afef9f28580645629cec878097f07e7ffc2f973b
@@ -2698,7 +2576,7 @@ trackedFiles:
pristine_git_object: 6dc2ea427218c9f9f160d05855ae4557044644d9
docs/Models/Components/ExistingWeblink.md:
id: 2ce1aa717cdc
- last_write_checksum: sha1:2f77257c60c7df3348004250dd4cf542f17f5c8c
+ last_write_checksum: sha1:e99118d9ec2c9d0654d482243e03c11c79383fc7
pristine_git_object: 321012164470b2f6ff8665d4af15b7ded8f966e4
docs/Models/Components/Expand.md:
id: 8ad164f459ed
@@ -2798,10 +2676,8 @@ trackedFiles:
id: e55cd873eaeb
last_write_checksum: sha1:517687cef89170eb46b2613e192e4af491856c86
pristine_git_object: d5d68fc5c5351476834411b2c6cdf29453495cb6
- docs/Models/Components/FairSeasonTypeJson.md:
- id: ccd0e50ebcb5
- last_write_checksum: sha1:10b9713421d523fce46d1b89d06884e4fd749417
- pristine_git_object: 11f3cd0e3f0d09d8d76887b614bc5c149e3d70ca
+ docs/Models/Components/FairSeasonType.md:
+ last_write_checksum: sha1:265f203030dbebe84b6d2ffb5452a6e0c5a7e762
docs/Models/Components/FeatureTierJson.md:
id: cc562ab3db4e
last_write_checksum: sha1:1ab064eab03f782446a12711a0eb390b519893e4
@@ -2826,17 +2702,17 @@ trackedFiles:
id: 873fa48169ec
last_write_checksum: sha1:bccb1e282f2d3bdf1facdc545e07399b199955d3
pristine_git_object: 48ecfd2dd304d68895d4c6d749fd9ba2e2b0c08b
+ docs/Models/Components/Field.md:
+ last_write_checksum: sha1:3bc5ab0fa1490a9fd8bf3de1a58e17372cac19f7
docs/Models/Components/FieldJson.md:
- last_write_checksum: sha1:5b53ab9483012a048ad4ee360d2eefcd061a3a90
- docs/Models/Components/FieldJson2.md:
- last_write_checksum: sha1:3a2b6c8b964795bf28ee46e785429938d7acf3f0
+ last_write_checksum: sha1:7f873da91b163e42cf8e87ff491480ff426b373a
+ docs/Models/Components/FieldType.md:
+ last_write_checksum: sha1:11903f4699b16be9e0d8d58797183439678a283e
docs/Models/Components/FieldTypeJson.md:
- last_write_checksum: sha1:1d58426ba8e42586894ad5c94f16b3548d4cd855
- docs/Models/Components/FieldTypeJson2.md:
- last_write_checksum: sha1:6f4a8289ed573d2aab586fbb2d22970c5e07180d
+ last_write_checksum: sha1:a6138692cbe1cca2d3e983721af0b51ca71c6ef3
docs/Models/Components/FileInput.md:
id: c9cb46d07c3e
- last_write_checksum: sha1:808c9965875494cd62c6e4d18be24fbbcc74b1b5
+ last_write_checksum: sha1:b5a36771b24227db6fb379d3707d4ac0c2f26396
pristine_git_object: 89c2b69701321064f4116c6e8edde4000e9fe70b
docs/Models/Components/FileLinkJson.md:
id: 0efafa0fb579
@@ -2870,10 +2746,8 @@ trackedFiles:
id: 384fb44fb943
last_write_checksum: sha1:dd9cb08fed29571e1e853739334e7903aedca185
pristine_git_object: 7284ab26327db65d88155bd1212b675a5260eebb
- docs/Models/Components/FormatTypeJson.md:
- id: 8fe6912e5fad
- last_write_checksum: sha1:bd52c370b97e1cefff3108e74e12b4615e4fc35e
- pristine_git_object: bc1c28bb29dfc313df7b8b882a7a9c2958cdbd30
+ docs/Models/Components/FormatType.md:
+ last_write_checksum: sha1:a7eedc1aaec7db6310ec122de5b8a8210ecd1db1
docs/Models/Components/Frequency.md:
id: b96b842e0182
last_write_checksum: sha1:0d6afc4b4e680fcf4274ab09fa8c2ef050cccdc1
@@ -2882,10 +2756,6 @@ trackedFiles:
last_write_checksum: sha1:36c5edba2ae8a021db395f8ac55ebd652ace6aa6
docs/Models/Components/Gender1.md:
last_write_checksum: sha1:caf9409f026f5e1c12b03731ac516f1d198016c2
- docs/Models/Components/GenderJson.md:
- id: edc0466a6db6
- last_write_checksum: sha1:481623a7cc163dc4d878e53524623c0de0a88a75
- pristine_git_object: ebfad038957021902a5f64c48f8a131019ddd5fe
docs/Models/Components/GeneralLedger.md:
last_write_checksum: sha1:0d09c74c0c0f9c00d1ce4010e7ac9788eb2da3a4
docs/Models/Components/GeneralLedger1.md:
@@ -2908,22 +2778,20 @@ trackedFiles:
last_write_checksum: sha1:cdfd9143425009db14c9cc56a2109380a111b488
docs/Models/Components/GuestJson.md:
id: ded8b94ddaef
- last_write_checksum: sha1:1902304601a5b1b4338165ba39f7e65c330255ae
+ last_write_checksum: sha1:1b661e59d7bfaa4aa849fb5d869b510601b44481
pristine_git_object: a1abac56bf951bf242440c720efd47db778957e2
- docs/Models/Components/GuestRoomOccupancyJson.md:
- last_write_checksum: sha1:1346b3f7b84d053775a57daee2d070b4956673c6
- docs/Models/Components/GuestRoomOccupancyPerRoomTypeJson.md:
- last_write_checksum: sha1:c22e549b22ac3d385f308a775659baf4d04c7b48
- docs/Models/Components/GuestRoomTypeJson.md:
- last_write_checksum: sha1:f19975d69d51f1a3e4a42009ced3ff9ffc3fe0d1
+ docs/Models/Components/GuestRoomOccupancy.md:
+ last_write_checksum: sha1:9538f551654710db86d758a5b88f36ee456554f7
+ docs/Models/Components/GuestRoomOccupancyPerRoomType.md:
+ last_write_checksum: sha1:20083c477ae0a8a7678d786f34bdeb36859229d7
+ docs/Models/Components/GuestRoomType.md:
+ last_write_checksum: sha1:89154d8a5a4c7dc123936f59b3732c81b15002e9
docs/Models/Components/HTTPMetadata.md:
id: 05de2fd15279
last_write_checksum: sha1:08fe4d295519e310847d7500b27fd60eb5124293
pristine_git_object: e01c47a3aad01cce33962b089a2a72da72c468df
- docs/Models/Components/HlsInputWithClipsJson.md:
- id: 0f3882335262
- last_write_checksum: sha1:3ffcd42a3ea92dbb951df25fc4fc564efed1d2dc
- pristine_git_object: 721c06a024e8e62745b3c93cd36a0d79af0bbda0
+ docs/Models/Components/HlsInputWithClips.md:
+ last_write_checksum: sha1:1e3b60864c266be488a171f7b928ca4cd5c93fad
docs/Models/Components/HomeAddress.md:
id: 71b12f3bcc4f
last_write_checksum: sha1:c28140e91c8b5bc1d55b11cf1031c7e34ba9bac4
@@ -2969,7 +2837,7 @@ trackedFiles:
last_write_checksum: sha1:e17ef5fe6a0975a19f7e382fe32b978bbf9242dc
pristine_git_object: a4349fd7957989b3b5f8a94a48ed1622e56d3e29
docs/Models/Components/HotelRequest.md:
- last_write_checksum: sha1:7af7045b1e0553b8bda522122586d4087db08d0d
+ last_write_checksum: sha1:38c83e2445fb361ab097b9ab795ffe808f9cf987
docs/Models/Components/HotelRequestRequesterType.md:
last_write_checksum: sha1:b818f4fe3d7bf6c7e26b435c5cdb4bd271fbed49
docs/Models/Components/HotelReservationDetail1.md:
@@ -2992,7 +2860,7 @@ trackedFiles:
pristine_git_object: 4e521afe93538492feb6403345cc08e731ddfe73
docs/Models/Components/HousingEventHotel.md:
id: c121802fdc1a
- last_write_checksum: sha1:5d23305540f8d19f7f459495a3e04f493aadc752
+ last_write_checksum: sha1:f09d76a788bfde4f4fc5c7d65f73c92a00292906
pristine_git_object: ad2c9ad81532cbb40e505ccc50ef9589ed3572fe
docs/Models/Components/HousingEventHotelsList.md:
id: 1d6991c52bc8
@@ -3012,7 +2880,7 @@ trackedFiles:
pristine_git_object: 80edd94438cbde9ad187ddd68754ca78d74c3a39
docs/Models/Components/HousingEventSummaryList.md:
id: ffba20cda426
- last_write_checksum: sha1:81d6b2c0c3206db0a1773247600fe372a6c3cae4
+ last_write_checksum: sha1:8655f481971cd005286323b08124f5e426f37ccf
pristine_git_object: 9a64dd1dd40e12076aa8be2a5d0862f1d62b2a52
docs/Models/Components/HousingReservation.md:
last_write_checksum: sha1:67e06e4503dcf2ee47e9c6fdb332eacc5185d408
@@ -3042,16 +2910,14 @@ trackedFiles:
id: 3cdd23488882
last_write_checksum: sha1:a8a67db01fef290924e47c3ff13b18e1a3a3ffd7
pristine_git_object: 8b94627064e717ce9155138bcdfcb9e9839e5208
- docs/Models/Components/IdJson.md:
- id: 8cd564c56b0a
- last_write_checksum: sha1:b22ab853ebb3a43f863d53e305b4c5ac91d12ba1
- pristine_git_object: 8ce2be00c1fe8812ac012d6d071ff909b5ba6fbe
+ docs/Models/Components/IdOnlyEntity.md:
+ last_write_checksum: sha1:49055f8a1e8573b60cab1b50b325fbf8f2f45b4e
docs/Models/Components/ImageLinkJson.md:
id: f96b30f2a35b
last_write_checksum: sha1:eff1bd6efda3b798c4515a2dc315b7438cad4bbb
pristine_git_object: 693304ba14b9af471cc5f7f439ecf659ec573c79
- docs/Models/Components/IndustryJson0.md:
- last_write_checksum: sha1:d4de9ba02937cc31a9a40e36a32e4a33970f0b30
+ docs/Models/Components/Industry1.md:
+ last_write_checksum: sha1:9b2594bf13c072558f14d2a6ffa3b708f401f67d
docs/Models/Components/InventoryDetailsList.md:
id: d467e12574f6
last_write_checksum: sha1:c30d28345e0367e4acb1b3bbc8427b36f8852151
@@ -3070,7 +2936,7 @@ trackedFiles:
pristine_git_object: b5e568600e0386f3856994504f27bd7c39025eca
docs/Models/Components/InvitationListPaginatedResponse.md:
id: 5e2dbe9c58a7
- last_write_checksum: sha1:457305bd29582933e4ec540c1951f0d37be0757b
+ last_write_checksum: sha1:4db70f6382379aa3eba2bdf4f1234b9fd51afc6c
pristine_git_object: 46c09bb96faaab969b986df0e984e8570752de27
docs/Models/Components/InvoiceFile.md:
id: 072f13b34454
@@ -3119,7 +2985,7 @@ trackedFiles:
last_write_checksum: sha1:d84c237a209a35a0069766df0169d6f386fdb428
pristine_git_object: 0b4ea329478383b66b3fe32dc975187ab3d3779e
docs/Models/Components/Lead.md:
- last_write_checksum: sha1:4cde14aade03a46b441d957698d57b9203acaedc
+ last_write_checksum: sha1:c301e3f99049666330fbcf9d4b7af3ead7a85a1b
docs/Models/Components/Lead2.md:
last_write_checksum: sha1:7e6e9da579275a0531131cc6ba3c8a7049a5b75a
docs/Models/Components/LeadInboundCreated.md:
@@ -3131,13 +2997,13 @@ trackedFiles:
last_write_checksum: sha1:dba12fa517a1c3d7d8f07f7659abe2c3c79c52c4
pristine_git_object: 7585072c57a7e779d34132ebe2be65f333eba454
docs/Models/Components/LeadQualificationAnswers.md:
- last_write_checksum: sha1:eeba0bc7d71e4601110c57a7280928e1278d541e
+ last_write_checksum: sha1:d016829eb75cd802686df0f4ba794118fc843b2a
docs/Models/Components/LeadQualificationAnswersListResponse.md:
id: 0e85fd40562c
last_write_checksum: sha1:04efe0b2441f5bacbf3616c85ff28386691b1599
pristine_git_object: a61488ebe50777f1f7be2fd38e001187e9f5d647
docs/Models/Components/LeadQualificationQuestion.md:
- last_write_checksum: sha1:c870124a5da647c72de8fc641942352f7b337258
+ last_write_checksum: sha1:34cb02ff0120695bacaf300b19ca7ff635878bf3
docs/Models/Components/LeadQualificationQuestionType.md:
last_write_checksum: sha1:470810eacafcee5fd67ebd636cb71d87bf2cf2e9
docs/Models/Components/LeadQualificationQuestionsListResponse.md:
@@ -3154,20 +3020,18 @@ trackedFiles:
pristine_git_object: 316ae09c8dd9c1947c5c309266111c802776bec2
docs/Models/Components/LeadQualifiedQuestionResponseJson.md:
id: 264037047ce3
- last_write_checksum: sha1:46eb0a5f02581bc830c16f3614762440272d038c
+ last_write_checksum: sha1:ac87713012c99ff0e0a9b3c9a870f50eb33a9803
pristine_git_object: 4d98b8c8b75ad23488675c4e3847b6305f6f4d5d
docs/Models/Components/LeadScanned.md:
id: 0b2b908bf016
last_write_checksum: sha1:858894f6d4409b39e6d00cbafae9e1ed79996e56
pristine_git_object: b40c2664cc2919ccc8714e1aed884a47c9b1ebec
docs/Models/Components/LeadSource.md:
- last_write_checksum: sha1:4b89ae365bb52e897e9e4fe00f045b5aef098133
+ last_write_checksum: sha1:ad467070dd5597ae40d3f2b3466d9f652b1a294c
docs/Models/Components/LeadSourceExpand.md:
last_write_checksum: sha1:6231032e11e255b23817b5532420d3a2078e44c2
- docs/Models/Components/LeadSourceJson.md:
- last_write_checksum: sha1:e666f6f3239e9972b337c8c90697f3aa7b0c8fe2
- docs/Models/Components/LeadSourceSectionJson.md:
- last_write_checksum: sha1:48e99b7b605781280e659407347e27508ca1fe30
+ docs/Models/Components/LeadSourceSection.md:
+ last_write_checksum: sha1:5242395f735784c19956905234026d070b44f628
docs/Models/Components/LeadType.md:
last_write_checksum: sha1:e11354fc690ef515db1d4c4b998e4e38260755e2
docs/Models/Components/LeadsPaginatedResponse.md:
@@ -3226,12 +3090,10 @@ trackedFiles:
id: f7c34afe6268
last_write_checksum: sha1:0e400f70328c40901300fec3547de6342de18684
pristine_git_object: 0f2c268ef8d33de72bc91fa7200a6ba178f60b9f
- docs/Models/Components/ManagementLevelTypeJson1.md:
- id: 566ee0f82251
- last_write_checksum: sha1:d09ea6212377f8b39fce7e04111a3fbd27c75bbe
- pristine_git_object: 651460baee2cbcc065d92279d10f689148a42fb2
- docs/Models/Components/MeasurementUnitJson0.md:
- last_write_checksum: sha1:3e72c548ce66aef1296db13096de561e23f5d616
+ docs/Models/Components/ManagementLevelType1.md:
+ last_write_checksum: sha1:ec75e3eaf75a2cce4b95690a9f20f3b3b32ba00e
+ docs/Models/Components/MeasurementUnit.md:
+ last_write_checksum: sha1:142db0bdfef9f0fe378bf02aebb17332b5e2d4b6
docs/Models/Components/MeetingRequest.md:
id: 34f3430e06c3
last_write_checksum: sha1:d05dad1e8fa2a8134c32e5cd0dfda1818f157bd7
@@ -3294,7 +3156,7 @@ trackedFiles:
pristine_git_object: 66fd19e52e1c1736316c58844bac6299935052ca
docs/Models/Components/MeetingRequestQuestionJson.md:
id: 5cc6e242e6d3
- last_write_checksum: sha1:42b688292bae77f5b236ce13831f4bdf292c30d3
+ last_write_checksum: sha1:d6fefa7c1ab1eb0941336fd5cd7184b49f88914d
pristine_git_object: b3943c14834b32bc05dd9eb8926766d2981e3350
docs/Models/Components/MeetingRequestUpdateJson.md:
id: dfff04e34571
@@ -3320,26 +3182,18 @@ trackedFiles:
last_write_checksum: sha1:292d13c6f3ad112cc107ae04a21d0274865094bd
docs/Models/Components/MembershipItemsPaginatedResponseData.md:
last_write_checksum: sha1:55da4063fff81caf94437b1e1af74ce287fb8c06
- docs/Models/Components/MembershipJson.md:
- id: 4d1b3f1e147b
- last_write_checksum: sha1:14d8c97bd38640a7be0e94a77edf4609567322fa
- pristine_git_object: 513a66b696f3f80fe822901d0f5609bec0801679
docs/Models/Components/Message.md:
id: 295533f0637d
last_write_checksum: sha1:0f0f73048c52cc98ed7a4bee01bf381e189b580c
pristine_git_object: e6f3f37f4fe0d3ee76f216c59fefaab58ec160bc
+ docs/Models/Components/MessageRecipientResponse.md:
+ last_write_checksum: sha1:6c602dbc598012afd792afc81bdbf73f1cca352d
+ docs/Models/Components/MessageRecipientResponseAttendee.md:
+ last_write_checksum: sha1:014bbe9f3fa4f4b886959dd9e078519ae79a67d6
docs/Models/Components/MessageRecipientsPaginatedResponse.md:
id: 9fc1c27d2116
- last_write_checksum: sha1:68cbd9b09b43a9f5751436a3aaf5225170c40c70
+ last_write_checksum: sha1:f9e58edefe3722aa1d8d5ccb8da31235dcf97921
pristine_git_object: 55ae7e791185256daa738f9548884f472ff03e23
- docs/Models/Components/MessageRecipientsResponseJson.md:
- id: 114c508c3223
- last_write_checksum: sha1:585f628891bce94461c3769ba9fb14e1032c304c
- pristine_git_object: 3e7cbb06d4ac6a628424c1541968658a70a9e170
- docs/Models/Components/MessageRecipientsResponseJsonAttendee.md:
- id: 46d70488ecef
- last_write_checksum: sha1:d38a0b204afcdd9b7f8c7511b441af45f49d150b
- pristine_git_object: 55df00fbcde653102ef54b69e977b1d9ef43ab53
docs/Models/Components/MetaJson.md:
id: 564d6e76be50
last_write_checksum: sha1:b56ed27a4216ae4040ac4b48369d615aa31c54c6
@@ -3374,18 +3228,12 @@ trackedFiles:
id: b41f6f3baa3d
last_write_checksum: sha1:26c9a4a53377eca54f6e76f94ad2c45def0142f0
pristine_git_object: 9cfdb053d5101ffafe364ac64581e13ffead024b
- docs/Models/Components/NumericAnswerFormatJson.md:
- last_write_checksum: sha1:9287fbffda34056ad179fe1947b6e386f68ae054
- docs/Models/Components/OfferingCostTypeJson0.md:
- last_write_checksum: sha1:0490199b0d90448abfe2ebf4a1788f020fe6e698
- docs/Models/Components/OneAllOf.md:
- id: b941d3003892
- last_write_checksum: sha1:c6eb4a47d3b4faad086542f1ce9308b1fbc2bfe2
- pristine_git_object: fb2ce46dd6668ac5a57277c84da134765de51834
- docs/Models/Components/OneOneOf.md:
- id: f0cfebe0e6fe
- last_write_checksum: sha1:054408826a174a40c003ac1dea84937d0a674d25
- pristine_git_object: a7b39c2e5bd37986afd57b790fa07db894fd8eb6
+ docs/Models/Components/NumericAnswerFormat.md:
+ last_write_checksum: sha1:7186d1f44523fa71e24c123811c708e0a6133584
+ docs/Models/Components/OfferingCostType1.md:
+ last_write_checksum: sha1:a9df28eabe188ab7a7b3505aea6bdc9c7e7b6dae
+ docs/Models/Components/One.md:
+ last_write_checksum: sha1:fad4858c905a19729be83bcf98529e16eadd6b08
docs/Models/Components/OpenEndedCommentBox.md:
id: a379913fb3e5
last_write_checksum: sha1:c6486bca1bc1484a460e7b49d1974ae292990620
@@ -3402,14 +3250,8 @@ trackedFiles:
id: 1e850988fa21
last_write_checksum: sha1:2efc5b2d842c95a7de89da29e1004e38c0b02d2a
pristine_git_object: 0f42fb01063c3352cfa5054c4cebb8e0e43a008e
- docs/Models/Components/OptOutJson.md:
- id: ae4f53b4ed69
- last_write_checksum: sha1:500aa9b3fbf5bfc5bb7b6a0547d4b562221fda2c
- pristine_git_object: fc846048dcf3a2219ef5228bc31de90371ac0950
- docs/Models/Components/OptOutJsonInput.md:
- id: f93597e2dd85
- last_write_checksum: sha1:aa5598eda5c081d02b669e657025bd3a14c5ee30
- pristine_git_object: 524aa8530013a249dd6871a815c1077bab3968de
+ docs/Models/Components/OptoutBy.md:
+ last_write_checksum: sha1:dc6bad2fb24e214c2c3063a79552b36968ee7f2e
docs/Models/Components/OptoutByJson.md:
id: d1645e7c344b
last_write_checksum: sha1:0d3f1767f1a8facd652a1a533f4133c35fef862e
@@ -3417,7 +3259,7 @@ trackedFiles:
docs/Models/Components/Order.md:
last_write_checksum: sha1:c640a7e3432aa4c20e23ae8d7edf024968a9ebf2
docs/Models/Components/OrderDetail.md:
- last_write_checksum: sha1:91f1f49cfc59db20e5bd15dabe61e725563623f1
+ last_write_checksum: sha1:5a9b9f2b4c251084df22b34bef82acd1631b6837
docs/Models/Components/OrderDetailsPaginatedResponse.md:
id: 8d8f5f554041
last_write_checksum: sha1:40ceb83ae0a9aeee69a12669efa35169408cbbc2
@@ -3432,7 +3274,7 @@ trackedFiles:
last_write_checksum: sha1:11a5b64548f708c5106dd2de8a9f65dedfeadaf1
docs/Models/Components/OrderItemResponse.md:
id: efb799bf96b1
- last_write_checksum: sha1:63ec1c773bdb7fe5520eb1c9630ed7412dcf6ae0
+ last_write_checksum: sha1:ae78c35a6029e7d130b94fd81a1bb394c5bd181f
pristine_git_object: f91f220b49c08f95c337629095d0341d807569e5
docs/Models/Components/OrderItemsPaginatedResponse.md:
id: 0f39767b6c3a
@@ -3442,16 +3284,16 @@ trackedFiles:
last_write_checksum: sha1:f80b4e7df1724e525884fa0f07a8fe901e194505
docs/Models/Components/OrderType.md:
last_write_checksum: sha1:372eb618bb4a43404af5c232ca16c6c0ae256949
- docs/Models/Components/OrganizationJson.md:
- last_write_checksum: sha1:f14d6e4041b6d64289b3391ffa596efa707d8bbe
- docs/Models/Components/OrganizationTypeJson0.md:
- last_write_checksum: sha1:d1463d1abf2cb4016eb961292e8ab881015e84eb
+ docs/Models/Components/Organization.md:
+ last_write_checksum: sha1:274a4c16cd1866f064f2dd7de75445916e07646a
+ docs/Models/Components/OrganizationType1.md:
+ last_write_checksum: sha1:c65067a6095474b5e280be639d2c106bee5a318f
docs/Models/Components/OtherPaymentJson.md:
id: d2d91ccdbf9c
last_write_checksum: sha1:1621bea23984f4b1649e7f55cbce4a55c442601e
pristine_git_object: cc6d032ad329aaba9f4a8e64a1008cc0f3727a37
- docs/Models/Components/PackagePricingPreferenceJson.md:
- last_write_checksum: sha1:a8dd170ffd2330d4ff796e25869904cf83635799
+ docs/Models/Components/PackagePricingPreference.md:
+ last_write_checksum: sha1:5aa5a61436a72f4a3b30372a1c1c7821eb0acc8a
docs/Models/Components/PageVisibilityJson.md:
id: 868dcbc6a8e5
last_write_checksum: sha1:073dc8a66d6cbeaa4ba5edfa9a85eb6c30e334cf
@@ -3461,21 +3303,21 @@ trackedFiles:
last_write_checksum: sha1:48b30d7ccff1f281c984ab2bdc2e80acb7c67d5e
pristine_git_object: cf462033c791f94adda5acefa4c92742e209cc86
docs/Models/Components/PaginatedInternalDocuments.md:
- last_write_checksum: sha1:068ad6e4094855d15c193dd3f21e4779c5e54359
+ last_write_checksum: sha1:d4eca7d1b27d2f68ef73657e306aed19024b0410
docs/Models/Components/PaginatedRfpAgendaItems.md:
- last_write_checksum: sha1:d52e9d2ea435c9f333f2b84b0617e5a2892579d2
+ last_write_checksum: sha1:ab3ab7fb2dd4d2c767f5dc78498a884e4ff760bd
docs/Models/Components/PaginatedRfpAgendaItemsSchedule.md:
- last_write_checksum: sha1:6072fde3417509745eb8217782893d946e99badc
+ last_write_checksum: sha1:682a42555e0144ab5ef9beafab849885fa5bd4e4
docs/Models/Components/PaginatedRfpAttachments.md:
- last_write_checksum: sha1:e6427152d21392b8082699fa9610adf0688938ae
+ last_write_checksum: sha1:7e07b8b496e07da87150b5ecf91e91496e4e9fa8
docs/Models/Components/PaginatedRfpCustomField.md:
- last_write_checksum: sha1:95bb6ceef99e879733131c749b088a675cd3aa6d
+ last_write_checksum: sha1:b19818abe7ac82da70feb20af247b6852fa657c9
docs/Models/Components/PaginatedRfpQuestions.md:
- last_write_checksum: sha1:9b1e6693fc2b9f3082d5db61286ed57e3c448ae3
+ last_write_checksum: sha1:fc4067458e696388b3b514932bc61644e526ec65
docs/Models/Components/PaginatedRfpRecipientsHistory.md:
- last_write_checksum: sha1:8ef81aa18ddeb67407d77aa3a4ceb7c2eca6ed1d
+ last_write_checksum: sha1:27cba4dcb6cc56487b537526a79839dbfc5ac64e
docs/Models/Components/PaginatedRfpSuppliers.md:
- last_write_checksum: sha1:fdeaa9367ef996232c1ff826128ee49f083a4898
+ last_write_checksum: sha1:9281448a424a53a6407e4b4e7a0ba6c09b05ad61
docs/Models/Components/PaginationLinks.md:
last_write_checksum: sha1:6ef55eb75078aefb3ee0efbcf292616a509aa49a
docs/Models/Components/PaginationLinksJson.md:
@@ -3488,10 +3330,10 @@ trackedFiles:
id: 9c3eaa8ef595
last_write_checksum: sha1:1bdb8b9f09b31b82a3f00bb98a0a9ba79d1cea96
pristine_git_object: 184e341682615d9a5f10b31b3ec16a2a490b62a4
- docs/Models/Components/PagingJson19.md:
- last_write_checksum: sha1:b5a5cc10484b07fa79b4e7192df333efe41ff68a
- docs/Models/Components/PagingNoTotalCountJson2.md:
- last_write_checksum: sha1:93f7e4470b03f4df5a0ea8373f264b747115f1d8
+ docs/Models/Components/PagingJson2.md:
+ last_write_checksum: sha1:6a467a0627713fe313ee33603c741249f339debb
+ docs/Models/Components/PagingNoTotalCountJson.md:
+ last_write_checksum: sha1:6c5069b6fc461524218044c67a925dc83b41ffbf
docs/Models/Components/ParticipantResponseJson.md:
id: af59ea3df42a
last_write_checksum: sha1:d1e75a628cb2fcf601ac9b3ceae84e3c3b7c0002
@@ -3508,14 +3350,10 @@ trackedFiles:
id: 8229a2aa629c
last_write_checksum: sha1:84eaa2d6f7023b71879d27e384386f024e4fe0cf
pristine_git_object: 0b4656325d36d2096c58b90ab06d970d3afb53d1
- docs/Models/Components/PassportJson.md:
- id: 3cceba1faa7c
- last_write_checksum: sha1:0c6f0f3605fc98cca71a8f3212c3615d3bbabb82
- pristine_git_object: f053841ae4c6ab64eadd27811b31b3b35a706b49
- docs/Models/Components/PassportJsonInput.md:
- id: 498520a0ff3b
- last_write_checksum: sha1:abb4a199975abaf85bd0771eeedeecdf186e4c63
- pristine_git_object: 04cc6ffc07139c4f74ff22f3ed76055c8d2b649e
+ docs/Models/Components/Passport.md:
+ last_write_checksum: sha1:ae4111e116059066ded7d1b1818ddbc916ac7c71
+ docs/Models/Components/PassportInput.md:
+ last_write_checksum: sha1:f40c7bdfd78506716ea38d8fd49a6ad2d410faf5
docs/Models/Components/Patch.md:
id: 747b7b64377c
last_write_checksum: sha1:98347ec891cb0b23ed2f2f4a1dc7d4c5389eafec
@@ -3526,7 +3364,7 @@ trackedFiles:
pristine_git_object: feea2110a78f7e3c61ae7aed49086a71c1c0cec5
docs/Models/Components/PaymentInfoJson.md:
id: e01046e39555
- last_write_checksum: sha1:218556b61e1a86dd61eb4feff2202812c0159da7
+ last_write_checksum: sha1:11743102dbc858fa247515bc34ce9f141a2625fb
pristine_git_object: f14f95bc0fea709cd12a2f314989a2e0238d5ecf
docs/Models/Components/PaymentMethod.md:
last_write_checksum: sha1:b1f8888d679df13d5d62666275b0405318b80f2b
@@ -3584,7 +3422,7 @@ trackedFiles:
pristine_git_object: 1bdb79764d6335a7d5a1a0979de71ac3cc4d5785
docs/Models/Components/PlannerJson2.md:
id: 83205ecf3979
- last_write_checksum: sha1:8315d1afe46bf70b85d4cfc8c8217d605578198d
+ last_write_checksum: sha1:40d7e326e18eec963a7ff016b6c837c2991f9544
pristine_git_object: f7f66cfc238b08fe88d347f9787d5d593a009610
docs/Models/Components/PlannerJson2AddressType.md:
id: 520aae824ad2
@@ -3650,10 +3488,8 @@ trackedFiles:
id: 910f734f99f1
last_write_checksum: sha1:67b0b55283b53bfd2e7be37aa8763f307c4f2318
pristine_git_object: f366ead90609e09c26aad778c6bf31f3c8de046d
- docs/Models/Components/PolicyValueTypeJson.md:
- id: eac3a3f22058
- last_write_checksum: sha1:a16f17f1d2cf9403afc98dcc1a6a9a1bcb9cf495
- pristine_git_object: 7bd3e6614651f929aa5c9d90cfdce815777b6355
+ docs/Models/Components/PolicyValueType.md:
+ last_write_checksum: sha1:56153d9df538053b1221165e68da0c371855dc59
docs/Models/Components/PollResponseJson.md:
id: 00863ceafa0a
last_write_checksum: sha1:4512ba0863d23b233fbde7cfb53ddbc9a584e856
@@ -3716,10 +3552,8 @@ trackedFiles:
id: 2a6b33b923c9
last_write_checksum: sha1:0b3b996ae06bfa165fcdc82695f54c1d4e248259
pristine_git_object: 01ce36c09a675559a10e6eb30ef32f00d5ad979a
- docs/Models/Components/ProgramItemLiteJson.md:
- id: 5749d3ae6463
- last_write_checksum: sha1:9f033c0fccb7b1a2f8f0252d8e6f5ec19db18d4a
- pristine_git_object: 28cb13be1a1d80a0f1b3e0f9eeb46848328c4b75
+ docs/Models/Components/ProgramItemLite.md:
+ last_write_checksum: sha1:fee3d88982e43d1c141f632a9587d3978d83b0ed
docs/Models/Components/ProgramItemPaginatedResponse.md:
id: e5614df7d4c5
last_write_checksum: sha1:fd964d47b89f6741d1c8b89b26e5f30872c36842
@@ -3734,7 +3568,7 @@ trackedFiles:
pristine_git_object: 3eb6808319f32f85b083a6fa920267ccd0089ab5
docs/Models/Components/ProgramItemSpeakerPaginatedResponse.md:
id: bae78e038224
- last_write_checksum: sha1:0a9047c3e4b2155cebfab4f0afd587d82fbefdfa
+ last_write_checksum: sha1:3eeadb1a73af4e8e0f807e20e46ff9b5be63ac60
pristine_git_object: 5bf39547a37dafcea70a8b880f526bbfaa8974e1
docs/Models/Components/ProgramItemUpdateRequest.md:
id: 2ec980d897ff
@@ -3744,7 +3578,7 @@ trackedFiles:
last_write_checksum: sha1:aa9aa52ec31d3c61aba114f33ddcffc21dd29778
docs/Models/Components/Property.md:
id: e8101e26ed97
- last_write_checksum: sha1:0d4d38e46f8981b64cae2fbbe7a7bf8e0b6fed0b
+ last_write_checksum: sha1:aa8f578553bc387337ef0837230f5905bdd3cc0e
pristine_git_object: 96ca4470ba564ba9e8b381d581e592726ad8a2a4
docs/Models/Components/PropertyBrand.md:
id: b4d48041a09a
@@ -3764,7 +3598,7 @@ trackedFiles:
pristine_git_object: bfc57b9f1642dc659baccf7e8a50c96ef68365b0
docs/Models/Components/PropertyRoom.md:
id: 5cf268238bd6
- last_write_checksum: sha1:7cb03383b18c8d1a0c61389a5456f94614bbdfbb
+ last_write_checksum: sha1:9de5e9f01580607370887b07954426753649beb7
pristine_git_object: c967179362a7311542ee64fbb13d9729a4096038
docs/Models/Components/PropertyRoomExternalCodeJson.md:
id: f694b89babbe
@@ -3780,31 +3614,29 @@ trackedFiles:
pristine_git_object: 894f05457b5fe35a711674ccb3e70c28b56b5e5d
docs/Models/Components/ProposalDateJson.md:
id: b1d2c04a6cf2
- last_write_checksum: sha1:a985c9a61f9df1dae0dba125ba86eb2463a92b92
+ last_write_checksum: sha1:cd1e8408f12f3cc5ed332788866db5e0ceae951f
pristine_git_object: 8ca8a7ecdf74220f75584c1e6886cf966d8f5e7f
docs/Models/Components/ProposalRequest.md:
id: 54618ee28461
- last_write_checksum: sha1:ee4ebf58933f037b43e230bb154b41c603aa7e12
+ last_write_checksum: sha1:8ad273c3506ab73964acfe045ad4ecb7997ce997
pristine_git_object: bd5480d8d23631c5eb656fd33d197d7c62e8f762
docs/Models/Components/ProposalResponse.md:
id: d75b7b3f798d
- last_write_checksum: sha1:77623c1bd13548f4fbc74b6f4fbcd62baae96bc4
+ last_write_checksum: sha1:be003ba744f2d0a7d1de8e3d430267054e8dd378
pristine_git_object: c5eaebde280f9cea82e97273a6ec473068f0bf30
docs/Models/Components/ProposalStatusJson.md:
id: 165e8ff1538b
last_write_checksum: sha1:9a1d6258ce8cf6fd554b301158b25951137df3a7
pristine_git_object: 6ba298f363274713e4b167c3313b78bd2039084d
- docs/Models/Components/ProposalStatusTypeJson.md:
- id: 80e3c8174834
- last_write_checksum: sha1:06a8fda4e7d9d1d8f7d77afef3c1f8b6ef7d870e
- pristine_git_object: e02afb3aa972e0f8eacaea6e3c5ea38dea22dc73
+ docs/Models/Components/ProposalStatusType.md:
+ last_write_checksum: sha1:463c24a20b481e825cba9c0da3c67f226d158d9e
docs/Models/Components/ProposalTypeJson.md:
id: bde320429941
last_write_checksum: sha1:40f954239cbd1ceabd3eec8bae47c21f1f4e5cf8
pristine_git_object: 006e12c0b2b680064315954591998ab2fc5339ca
docs/Models/Components/ProximityJson.md:
id: e4ac77fb5200
- last_write_checksum: sha1:72c41b3e652109d049066ba636c50df622874abe
+ last_write_checksum: sha1:bec78908b5dcfa2ea1be785ed1a78d43714d55c1
pristine_git_object: 751d856be3a8dad5db8f9af2b052c3047be039e7
docs/Models/Components/PublicUsagePlan.md:
id: f665b0cfefdf
@@ -3832,10 +3664,10 @@ trackedFiles:
pristine_git_object: d20b7b292f37958b4ba0edb75ee5881cd848a243
docs/Models/Components/Question.md:
id: 696d4285c18a
- last_write_checksum: sha1:fd854f2f925313624ace85de58351f22ca137acc
+ last_write_checksum: sha1:86868edcbe08acecc7092dcb454eb903d66fd098
pristine_git_object: 180da1cb6747062669bb7f48e6b0b5614f490475
- docs/Models/Components/QuestionClassificationTypeJson.md:
- last_write_checksum: sha1:f0bedaa521822c2715b0a63b158c3bafd98bf782
+ docs/Models/Components/QuestionClassificationType.md:
+ last_write_checksum: sha1:b69a983cd8e4fd7061ba37f182b9048340a251ff
docs/Models/Components/QuestionDetailJson.md:
id: 7973b8328a2f
last_write_checksum: sha1:8b3a2bf295463bbeb4f12a5ec1e79a6acf7536f9
@@ -3844,98 +3676,72 @@ trackedFiles:
id: d6b2969074a4
last_write_checksum: sha1:90babf488a77edbc0764ea800ab7d1ee2aa97142
pristine_git_object: 2a953b929280a8672be092d713803ae5c4d0b352
+ docs/Models/Components/QuestionJson.md:
+ last_write_checksum: sha1:4e910a5d1517fd48d4916d390cf330ac4afc1bad
docs/Models/Components/QuestionJson1.md:
id: 11919887dff5
- last_write_checksum: sha1:545ca9bf7fead14b681375d2dab89674dab3f477
+ last_write_checksum: sha1:04bf6f8a357d9c5cfe2e4965f4b3a46f147d15a0
pristine_git_object: 7e436fd511c924fd0f6634988536341c00a508ff
docs/Models/Components/QuestionJson2.md:
id: bd5c97e35d21
- last_write_checksum: sha1:f255e047d06df7468d92654329340d3807aac2da
+ last_write_checksum: sha1:8b0e9daa311ee1f1fdc73f6a915cfe0809d3cd9e
pristine_git_object: 48cbe14482da5002f85245ff77a30bf0b6f4311c
- docs/Models/Components/QuestionJson3.md:
- id: 0f7fa7355dc7
- last_write_checksum: sha1:8ba98d1f0d61b863f4e7871d0194b2765f968f45
- pristine_git_object: a3ad8732da9a3987ddb7f250979216ad72528440
docs/Models/Components/QuestionPaginatedResponse.md:
id: b15c62d39927
- last_write_checksum: sha1:345b8c2e468279ebdc54cb891cfb012c65309ba5
+ last_write_checksum: sha1:a4f731fa41ba217d1821d212e617b6f517cdea01
pristine_git_object: 9e0cd5ee2c60bb5d28a1bc9e9cf162205cbbc2d0
- docs/Models/Components/QuestionResponseDataTypeJson.md:
- id: 3cd9d7dac009
- last_write_checksum: sha1:c913f243e51ab0ef52bf6a1fd99c7736083d4a78
- pristine_git_object: 3414933ed12d57623a7f3d4f9de4ec48f2661a29
- docs/Models/Components/QuestionResponseFormatJson.md:
- id: 6885476788c5
- last_write_checksum: sha1:ca53f7e0323b8354fc7704f73523e78ae971f4f9
- pristine_git_object: 4a6365a5544f64b14fdde52c4d2aa2f3f19bb85f
+ docs/Models/Components/QuestionResponseDataType.md:
+ last_write_checksum: sha1:e8290ca431e00e9701682ad24fd9c831a12ee29e
+ docs/Models/Components/QuestionResponseFormat.md:
+ last_write_checksum: sha1:17c4be784cbda70e0a52a07314d97bbd378a4c69
docs/Models/Components/QuestionResponseJson.md:
id: 8287d219f9f4
- last_write_checksum: sha1:8263861e11be070afdb0e2548d73c6b3583229c3
+ last_write_checksum: sha1:dfa7aab87edd9e6fb6323ad739f48aaeecbfcb8f
pristine_git_object: 01fba7610613f3908208a5a62d5bfba59edc87ca
- docs/Models/Components/QuestionResponseTypeJson.md:
- id: 1bb9c0b9aa43
- last_write_checksum: sha1:331f4f6c6b5b5bf9553099b0ea9fb8c8affc7c9e
- pristine_git_object: 763c29527c6c50ea99485e0e97a75c991599113d
- docs/Models/Components/QuestionSectionJson.md:
- id: 3fd6ce4df377
- last_write_checksum: sha1:d11001f37e6c893050787deb514777e63b547e3d
- pristine_git_object: 455737ddb5117e298da3ba1a869e4b016b89cbef
+ docs/Models/Components/QuestionResponseType.md:
+ last_write_checksum: sha1:0e5be9a50d3ecfc2821a6e65a77dada12595c2a9
+ docs/Models/Components/QuestionSection.md:
+ last_write_checksum: sha1:6b7b676da6afca46ef8e722289a20391b522261a
+ docs/Models/Components/QuestionType.md:
+ last_write_checksum: sha1:a56e916c6167cf16d18c1a357b44a2f6876dc0e1
docs/Models/Components/QuestionTypeJson.md:
- last_write_checksum: sha1:7f2a13bdf48a432ae1844ca4bd3462a8106da9b4
+ last_write_checksum: sha1:7b95687d32f30a4da7aa2adc140fc912bda0965b
docs/Models/Components/QuestionTypeJson1.md:
id: b03f97943a9f
- last_write_checksum: sha1:ba0b1ddf41762feb58a72f3041b19815eb988b53
+ last_write_checksum: sha1:f1140da620215394b4d588a52d34eab69453654f
pristine_git_object: 9fff60165a9881b9c9d9135690f07cf60db9b5e1
docs/Models/Components/QuestionTypeJson2.md:
id: 4a1c0c26dff0
- last_write_checksum: sha1:d2110a780ef7f193cf25e560ad8b1c5b031fe409
+ last_write_checksum: sha1:53b666450d45b3b6c1c54d35cc90e929dadf6c94
pristine_git_object: 0c1b6d559e08b4c01961520c8988a7b7bedc9219
- docs/Models/Components/QuestionTypeJson3.md:
- id: 1f1a7cac78f5
- last_write_checksum: sha1:546a90b41076b8647d2dbfca8737fc0e2acbdb15
- pristine_git_object: b155046661b1d8c5c600aded9303c7ac3bfb338c
- docs/Models/Components/QuestionWithProgramIdJson.md:
- id: 71460a8b6a2c
- last_write_checksum: sha1:2e1c7cafbb6306f31c6ec58cacec5c04025170d2
- pristine_git_object: d4c0bc93caa25c883768db6e64863e7d1261b48e
- docs/Models/Components/QuestionWithProgramIdJsonTravelProgram.md:
- id: 316438d95107
- last_write_checksum: sha1:882a69aa4dab41a124c4e53661833de8c6d212a3
- pristine_git_object: 8018efea4eb9dacb7b3c128a0b7219787989b014
docs/Models/Components/QuestionsPaginatedResponse.md:
id: b4a3d5ce9358
- last_write_checksum: sha1:92e517867521ce2662b7152223728d34f9851936
+ last_write_checksum: sha1:c7f53e0c7a0aa6a7178e6109982660123e5ab17c
pristine_git_object: 66195d46cdb5dad904b9a8f5dd8e487d587db804
docs/Models/Components/QuestionsPaginatedResponse1.md:
id: 8b89d4cde347
- last_write_checksum: sha1:74c5dc4c173ba8b414a9ad40fc50d2ba79e6b7f6
+ last_write_checksum: sha1:7d7516698127c1a33452df914e9fd8c369b4ed55
pristine_git_object: de3e3a100b74fcc302f144563abebac46a0f6aeb
docs/Models/Components/Rate.md:
id: ddc8aee5ad5b
last_write_checksum: sha1:64203b957b085622ea99afedec3c7722f9769419
pristine_git_object: 48d56b05368cefb7a589f0e5a4a5c7ffc3134e3c
- docs/Models/Components/RateLevelTypeJson.md:
- id: eb19586cdca3
- last_write_checksum: sha1:f741a8e2f86e45fdd86e1ec3f6a776d8113cbde7
- pristine_git_object: 5fe1f80b725553534f726cac6b9a9c6a15fa3d0a
- docs/Models/Components/RateReviewStatusTypeJson.md:
- id: 7505d9ed51ac
- last_write_checksum: sha1:660ec28cdfbd440344fc0ca4de17af82ac8b95f1
- pristine_git_object: eaa9e42c526bc2a321be674af48825e6e5e10aed
- docs/Models/Components/RateTypeJson.md:
- id: 401be5226224
- last_write_checksum: sha1:2300aa9ac3943015e83f12f59361f988d047f1a2
- pristine_git_object: 77a37b383829257161e95f420ea45430c9fa8471
- docs/Models/Components/RebateTypeJson.md:
- last_write_checksum: sha1:f25d9ebbd9280ab5ed7464934c97b7fc3ff533ca
- docs/Models/Components/RecipientInfoJson0.md:
- last_write_checksum: sha1:873926ec5ff35c148eb8e3eb1146148210b12252
+ docs/Models/Components/RateLevelType.md:
+ last_write_checksum: sha1:a40db0de7760a356fca28b63d5a17869b3d84ab9
+ docs/Models/Components/RateReviewStatusType.md:
+ last_write_checksum: sha1:1da998964cd8e44485cbe90048dc922ae9bfa168
+ docs/Models/Components/RateType.md:
+ last_write_checksum: sha1:80572e26f1a5735bfd16365a82e4f5789ac1301c
+ docs/Models/Components/RebateType.md:
+ last_write_checksum: sha1:5992566f2edbc8748515198ae9e7696fce7a9601
+ docs/Models/Components/RecipientInfo.md:
+ last_write_checksum: sha1:f9ea2da400df33136dca580ee6e81c6f54c18b24
docs/Models/Components/RecipientJson.md:
id: d7b1d1cfd962
last_write_checksum: sha1:94561f464540ea2ab9f74cebb7fdaa2b58914a1b
pristine_git_object: 320b432706f1d2680e2d94c4590ec96eab7679a3
- docs/Models/Components/RecipientTypeJson0.md:
- last_write_checksum: sha1:2a9e6f4334182ffd3e7d4b11661e9f2acafc8983
+ docs/Models/Components/RecipientType.md:
+ last_write_checksum: sha1:f471eeefcfd9042904a3a046e5b97701eaac920a
docs/Models/Components/RecipientsDataJson.md:
id: 1c9ee3c102bc
last_write_checksum: sha1:4bd5da4926ebe1095ca846610bb7f716e02cf808
@@ -3978,11 +3784,11 @@ trackedFiles:
pristine_git_object: 5b5076d39b40de7086aa1e2996777b1e4c2e0df5
docs/Models/Components/RegistrationPackRequest.md:
id: 61162104d22c
- last_write_checksum: sha1:6f6f5e4782198a86c8c912dc0706e1e20e03601c
+ last_write_checksum: sha1:73ba81cb6b0c62d5430368d97650377fe62b8e95
pristine_git_object: 7d8f2260e5106670cf01994f07594faf6db0d080
docs/Models/Components/RegistrationPackResponse.md:
id: 1f9cfb026e2e
- last_write_checksum: sha1:83f146199a68463dea8530b1deaad3060f1c019c
+ last_write_checksum: sha1:b34afca851e5fe248cc8d0175d5bafc5166b8d51
pristine_git_object: 766f1a3a9c48d7544f0aa5ecdc83c48b3f670fbc
docs/Models/Components/RegistrationPath.md:
id: c2768dd85ec4
@@ -4034,11 +3840,11 @@ trackedFiles:
pristine_git_object: 8e50d8c85c4c09fa240d8092f3331a1832c1feac
docs/Models/Components/ReservationGuestJsonInput.md:
id: 8d8d96a93f41
- last_write_checksum: sha1:7159f708884442d9c8b91269aa6180fdd54f08d4
+ last_write_checksum: sha1:9a1f7adadf2ebe46186555d7bbed1c0da07031d4
pristine_git_object: 94b9a3ea3bf5efffa443ee865a36dd80f13075e9
docs/Models/Components/ReservationGuestJsonOutput.md:
id: 3c4bd09d553e
- last_write_checksum: sha1:afb206240aa8e38b35bc49869f5fb714e99e1b4c
+ last_write_checksum: sha1:7a8e0ba6439d8726a996e249b10c57dfa9b2eb93
pristine_git_object: 21e64391abe3a3259d6d3b3a673b7a745a0f8dc1
docs/Models/Components/ReservationNightJson.md:
id: 4226739ed83d
@@ -4054,11 +3860,11 @@ trackedFiles:
pristine_git_object: ecf1530aa62b40dc1622cf140a05cd5fb9230961
docs/Models/Components/ReservationPaymentInfoJsonInput.md:
id: a99e1cabb766
- last_write_checksum: sha1:50e1d649a5b409463828c977e08c7a6cb1483bc9
+ last_write_checksum: sha1:92cc3e73e980313c590efa2dddeaeb13d427e2e7
pristine_git_object: f6d5642c2b5537f14e5f77743df4d01a0b1b56ba
docs/Models/Components/ReservationPaymentInfoJsonOutput.md:
id: e301624b67cd
- last_write_checksum: sha1:c3543f4ec1c41a156cfd36c093062504b5dc73d7
+ last_write_checksum: sha1:eca0b09f791a4168d09259ee33664a5eb5200826
pristine_git_object: d3b58f48d19c448ffc2fc2ff20f7a793382492d5
docs/Models/Components/ReservationRequestBlock.md:
id: bce0d5720624
@@ -4134,7 +3940,7 @@ trackedFiles:
pristine_git_object: e392f4ee4c4e47f0a1f14ec100f4ae98b89bd2f1
docs/Models/Components/RespondentJson.md:
id: e6a92e72262a
- last_write_checksum: sha1:1590db70fbe95bcd7274d038cd2a04e07493ae0d
+ last_write_checksum: sha1:adc9bdcb4c769e297baa9dcc94a9c611bee812ef
pristine_git_object: 1fbb2e1bf8085c4e8dd5e389b00a21817f895279
docs/Models/Components/RespondentJsonLinks.md:
id: a84a443bdfeb
@@ -4169,75 +3975,71 @@ trackedFiles:
last_write_checksum: sha1:8add85ce93cc740573170e85ee7a44315df45344
pristine_git_object: 705702a094cddeec825abd7285aeb6bc5d6e6fd8
docs/Models/Components/Rfp.md:
- last_write_checksum: sha1:b845d0a261157e5d8439f817aebfc033b65bd498
- docs/Models/Components/RfpAgendaItemJson.md:
- last_write_checksum: sha1:a7060ffffbdb7f2e76e545ffed7f19bc63f8abed
- docs/Models/Components/RfpAgendaItemScheduleJson.md:
- last_write_checksum: sha1:60f0a8cae7c15b4fd7222d24ce574b52d02605d2
- docs/Models/Components/RfpAgendaItemScheduleWithIdJson.md:
- last_write_checksum: sha1:8b7eda66e425445d5b491b4899b78cbcfc7648de
- docs/Models/Components/RfpAttachmentJson.md:
- last_write_checksum: sha1:a7a8e71ed59a00c026ad70d9c624ca8f02fd3f55
- docs/Models/Components/RfpAttachmentJsonSupplier.md:
- last_write_checksum: sha1:3d0fc8dc2da5baf11dac0b0802f8600a6e682fca
- docs/Models/Components/RfpCustomFieldJson.md:
- last_write_checksum: sha1:f95657f26455613ce4354954b4d17948738d681b
- docs/Models/Components/RfpDateModeJson0.md:
- last_write_checksum: sha1:3be5974cbd839abdaccf1a14ac193f0fbe1bff4e
- docs/Models/Components/RfpEventJson.md:
- last_write_checksum: sha1:e34a9c87e3a8fb34eb44184b749f07ea912ee5ee
- docs/Models/Components/RfpEventOrganizationJson.md:
- last_write_checksum: sha1:381a78756df8e49401bc24cf18e01d5e19e661b7
+ last_write_checksum: sha1:f785d381f47d1af47df08654893154e8e0bf6de6
+ docs/Models/Components/RfpAgendaItem.md:
+ last_write_checksum: sha1:559a764a17ca09987ff228b56cbaabc1ad662e4a
+ docs/Models/Components/RfpAgendaItemSchedule.md:
+ last_write_checksum: sha1:ec8d0a39a65a3589655cb2413c6ddd765a109b9e
+ docs/Models/Components/RfpAgendaItemScheduleWithId.md:
+ last_write_checksum: sha1:7ab7a060066d5058fd1d8b5d5c746129f8ff3582
+ docs/Models/Components/RfpAttachment.md:
+ last_write_checksum: sha1:fee878a394da533a63248da07d2420d9444b9fcc
+ docs/Models/Components/RfpAttachmentSupplier.md:
+ last_write_checksum: sha1:7c5ca3353c7f84e3a03df9e207e9b84610bc0acd
+ docs/Models/Components/RfpDateMode.md:
+ last_write_checksum: sha1:3121c3aac029d18f5c5d915840e6f08bb6950c2a
+ docs/Models/Components/RfpEvent.md:
+ last_write_checksum: sha1:dda425794f231ef322b98ec9f9891539cc99b77f
docs/Models/Components/RfpGuestRooms.md:
- last_write_checksum: sha1:1b7e899f8d0f7f1f713b1f4c947484ab54ac02d6
- docs/Models/Components/RfpIdJson1.md:
- last_write_checksum: sha1:6ef7e048edaa0ee49ea1a6cfb910929ed9da93ea
- docs/Models/Components/RfpInternalDocumentJson0.md:
- last_write_checksum: sha1:bc77a40253b47203445609f34f573aaa5a1cb1bc
+ last_write_checksum: sha1:df279ece45e8bac75b1f92cbe1b9802d9ca3d17b
+ docs/Models/Components/RfpIdJson.md:
+ last_write_checksum: sha1:15fa908e4938db4fcb2998d48663e0ccda3fa1f6
+ docs/Models/Components/RfpInternalDocument.md:
+ last_write_checksum: sha1:deca64fce5ed897883b9380d4484f5c19052be0a
docs/Models/Components/RfpLeadSource.md:
last_write_checksum: sha1:bea2feeb8ba32bbd171f982ec5f88329227a61e3
docs/Models/Components/RfpLeadSourceSection.md:
last_write_checksum: sha1:eabe099f006fbf160202cc4a64cc57d8113d6a6c
- docs/Models/Components/RfpMealJson.md:
- last_write_checksum: sha1:91fd89904e747bf7f882e444591317921327dfcd
- docs/Models/Components/RfpPastEventJson.md:
- last_write_checksum: sha1:9d8db41aa1e5833323665a8cb8e8daf37e0aafb0
+ docs/Models/Components/RfpMeal.md:
+ last_write_checksum: sha1:cbdbf8c95e1e70bc0315b5b19f0a7e0493006346
+ docs/Models/Components/RfpPastEvent.md:
+ last_write_checksum: sha1:9911c8ee034cffa89cdd848c56f077ded986d072
docs/Models/Components/RfpPastEvents.md:
- last_write_checksum: sha1:cd6750d3c80e52aa79068f5375f00d7094904c2e
- docs/Models/Components/RfpQuestionJson.md:
- last_write_checksum: sha1:98399d4c5b4bb8d8728e7a1181de88ba162859ec
- docs/Models/Components/RfpRecipientLogEntryJson.md:
- last_write_checksum: sha1:333133fb83993ad108e4e3798b19dbfee74178d4
- docs/Models/Components/RfpRecipientLogEntryJsonMessage.md:
- last_write_checksum: sha1:10ee371f998de9244d2ad8db499b9944f7753722
- docs/Models/Components/RfpRecipientLogEntryJsonSupplier.md:
- last_write_checksum: sha1:9d814e88c35a874a3ebc90a34faae156a3511ffb
- docs/Models/Components/RfpResponseReasonJson.md:
- last_write_checksum: sha1:141581652af4f5ad91613020f47146de019273f8
- docs/Models/Components/RfpStatusJson0.md:
- last_write_checksum: sha1:4e4df5e2cfec9c5c5ba7b3d097e2eebea54386a1
+ last_write_checksum: sha1:0ea1719afd3937dc0a895f231b239d8834c79b3b
+ docs/Models/Components/RfpQuestion.md:
+ last_write_checksum: sha1:69ed8fd26d81922b2b1cdbdff7a031ad963520e0
+ docs/Models/Components/RfpRecipientLogEntry.md:
+ last_write_checksum: sha1:b71859b749da427217414edcda76965d1806fef2
+ docs/Models/Components/RfpRecipientLogEntryMessage.md:
+ last_write_checksum: sha1:66624415075449301236bb7dd66738c0e4878dd5
+ docs/Models/Components/RfpRecipientLogEntrySupplier.md:
+ last_write_checksum: sha1:f031dca4da436f626cec7a21f5266753d5aa9bb2
+ docs/Models/Components/RfpResponseReason.md:
+ last_write_checksum: sha1:898db4d5e6c0acde4dd0b5162855d12733d962bd
+ docs/Models/Components/RfpStatus1.md:
+ last_write_checksum: sha1:f1018ce0e53ef122f72bd4c7feec22f8b62a7d54
docs/Models/Components/RfpSummaryJson.md:
id: bfb3afa9716e
last_write_checksum: sha1:7c9954597877f70b82fbada64d8ad612678a0292
pristine_git_object: 026c666c5b52d4963caba694880af845fbe98a47
- docs/Models/Components/RfpSupplierJson.md:
- last_write_checksum: sha1:ea881caf997d10ef524bdfbdecf7e23cde084e05
+ docs/Models/Components/RfpSupplier.md:
+ last_write_checksum: sha1:c4ce9262085c2f62bc6eae291ac5fff4e5946c09
+ docs/Models/Components/RfpSupplierLeadSource.md:
+ last_write_checksum: sha1:ede6a6a6d84ae2627271d22a60248eeea7e5a1f9
docs/Models/Components/RfpSupplierStatus.md:
last_write_checksum: sha1:33b0c12473a630eb03c65fe0291c814291718150
- docs/Models/Components/RfpTypeJson0.md:
- last_write_checksum: sha1:1b4270f0fb13b82bae48e7e7d42367e2742f2d74
+ docs/Models/Components/RfpType1.md:
+ last_write_checksum: sha1:8d975520b354a0058d622384009083561b43005a
docs/Models/Components/RoomAttendeeTypeJson.md:
id: f3afb6a2bcfe
last_write_checksum: sha1:385aa4a355c6f73cbd38de6259f76476eddcf4d7
pristine_git_object: fcdcbbe3155a415b9d101e2827fc43b961b9683e
- docs/Models/Components/RoomBedTypeJson1.md:
- id: 135488a927cc
- last_write_checksum: sha1:0736d7377e4097232cc1f1f9b2877893bdf0a02e
- pristine_git_object: 62fb013f04bc895f7f6b6afa93a7bd566bd19c1d
- docs/Models/Components/RoomBlockDetailsJson.md:
- last_write_checksum: sha1:9160150e5e2a5571a6f50bfe594dfc6b66ef5525
- docs/Models/Components/RoomBlockJson.md:
- last_write_checksum: sha1:e75a1a1b8e96f6499391c60fa0444587d4f68c5a
+ docs/Models/Components/RoomBedTypeJson.md:
+ last_write_checksum: sha1:76dfc0babddcefb2fdcab013f5f2fc9f39a39a47
+ docs/Models/Components/RoomBlock.md:
+ last_write_checksum: sha1:71a23e4febd907a3fbefd6887de9b8f08bdfc34b
+ docs/Models/Components/RoomBlockDetails.md:
+ last_write_checksum: sha1:ba1113ccc11ae19e58cb4a6884bd3bec36dbc2a5
docs/Models/Components/RoomIdJson.md:
id: 016cb992c4b2
last_write_checksum: sha1:b23bd1847d1377d4d71a83914bb3c9f2b6eb5c16
@@ -4284,7 +4086,7 @@ trackedFiles:
pristine_git_object: 9fd7e60d8002973e61dfa952f49b57a622dddfcc
docs/Models/Components/ScoresJson.md:
id: 473d86e2e327
- last_write_checksum: sha1:ecfaf321f5acf99e4bfd1b119157e3e7427d2f04
+ last_write_checksum: sha1:beb060d97f8191609cb172a3c8d32067109da625
pristine_git_object: 61265bad15f585b17affca4988839321d6fdf307
docs/Models/Components/ScoresJsonAttendee.md:
id: 19e053efe7a2
@@ -4332,11 +4134,11 @@ trackedFiles:
pristine_git_object: 9dfd1c68dbef2b76651f33ed86aed62a9a73cbdd
docs/Models/Components/SendEmailEventRequest.md:
id: bee58ea2789c
- last_write_checksum: sha1:17651c02990c45fcc3af29d91fca4654b5e7254e
+ last_write_checksum: sha1:49bd599956dc55d8fab44a1d5c3d1079635802ae
pristine_git_object: 2fefb1bf364e222adf184ff52981bb3bbd81a0ed
docs/Models/Components/SendEmailEventResponse.md:
id: 582f806b2914
- last_write_checksum: sha1:7854311052aa9fc5d16ea87950d442202b26cd74
+ last_write_checksum: sha1:0b194fd82efa5e66fd8485b34dea09cb9dd2085c
pristine_git_object: 57b01320e4ecc08b38709d06875497030c06e634
docs/Models/Components/SendEmailRequest.md:
id: 0662e7e1547d
@@ -4472,10 +4274,8 @@ trackedFiles:
id: 12c1ec759cc1
last_write_checksum: sha1:3a22d83507bb67a88f996c16eb82043e4af7f336
pristine_git_object: 054fca144b89c49cea3a837280226908ef0e524f
- docs/Models/Components/SessionLiteJson.md:
- id: e7b0105679ae
- last_write_checksum: sha1:ab9550f13d2749e0eb9ec301598c11381163ee12
- pristine_git_object: 9bc7b18672ae030027a7a15fc7fb96c6734d25b1
+ docs/Models/Components/SessionLite.md:
+ last_write_checksum: sha1:2ad5e9a4c4e7b9a8b12ffc86bee716154f248c54
docs/Models/Components/SessionLocation.md:
id: b9845a8959cf
last_write_checksum: sha1:fb785fd6f012f42de97a993e413ab5e311643d30
@@ -4506,7 +4306,7 @@ trackedFiles:
pristine_git_object: 0296e37495a0676d4751c19ba1d639c536bbc30d
docs/Models/Components/SessionQaMessage.md:
id: bb2858313bb8
- last_write_checksum: sha1:6e5bbae779bbbc8f7cb3c0ca68c28aac281f4e65
+ last_write_checksum: sha1:287837e2c1f09f21dcd71c659f91f0e4005bd307
pristine_git_object: c5b7033c8772676c3fbe5a87be83b2b744d4672f
docs/Models/Components/SessionQuestionAsked.md:
id: 101cbd2c9503
@@ -4524,17 +4324,15 @@ trackedFiles:
id: 86f37a4a6f30
last_write_checksum: sha1:e8343ac0c7b16cbff340d71b8bf649845b256338
pristine_git_object: 1d23f10ff9d8970073fbd9d5dc2c9990697d4a84
+ docs/Models/Components/SessionSpeaker.md:
+ last_write_checksum: sha1:a86c774bcbb56fb693c0cb6814d0f888c63be8a1
docs/Models/Components/SessionSpeakerAssignment.md:
id: 45903d4c3380
last_write_checksum: sha1:d9bcc008c00be9a365e6b64d1212770959c4f56b
pristine_git_object: 9d10e371dc1d0370a4b285bf2f7e0b7f40658def
- docs/Models/Components/SessionSpeakerJson.md:
- id: ec022629e9eb
- last_write_checksum: sha1:42e43adbb81623c8462cff38a3802e1876a8544a
- pristine_git_object: d65e881f11b17ecd94728ec18b31b118ca5aa207
docs/Models/Components/SessionSpeakerPaginatedResponse.md:
id: 9618cd2dac8d
- last_write_checksum: sha1:508d0aebf8dab9f7fe993749b4cca732c13b6774
+ last_write_checksum: sha1:3ef8bbd747414e665d146dc906a87b1923897fd1
pristine_git_object: f2c2c14c39467efa129a59071061b501eac16ace
docs/Models/Components/SessionStatus.md:
last_write_checksum: sha1:3d6150130f77186359632e11e7dd7db6b152a814
@@ -4582,11 +4380,11 @@ trackedFiles:
pristine_git_object: 295055d09f1718e411d553a5a0f245cd2c39b519
docs/Models/Components/SleepingRoomBlockJson.md:
id: 0168ea97828b
- last_write_checksum: sha1:f9c9c987155f3d51e9bb8271c6e1c76f645ac358
+ last_write_checksum: sha1:3a63703f698fb782268240657e28f9a787daf769
pristine_git_object: 89d19c99a06e73c61cda35bb8d55ccfaa127a55f
docs/Models/Components/SleepingRoomJson.md:
id: 64c53f4112c1
- last_write_checksum: sha1:b2314a7254a0961441d762c1790144c33b13f923
+ last_write_checksum: sha1:9e71878fca6e42bc03802262c595dc93b1c36598
pristine_git_object: b432c38e9c3fe02797154bc996d59c7a6ea694d6
docs/Models/Components/SleepingRoomRequirementJson.md:
id: 7fa57002e2e0
@@ -4598,10 +4396,8 @@ trackedFiles:
pristine_git_object: eb7fc3dff8d6856dd2a1bde78a332eee3490daf2
docs/Models/Components/SocialMediaLinks.md:
last_write_checksum: sha1:3e8fb5d9f1a00e4ed4f028f8d1fbfafef6812638
- docs/Models/Components/SolutionJson.md:
- id: dbf514528e17
- last_write_checksum: sha1:3f0b9e7d560a94758c6c2d51c505d735b2d56585
- pristine_git_object: 5769221de44888fb9c69c131ae8da55ba074a0fc
+ docs/Models/Components/Solution.md:
+ last_write_checksum: sha1:d562abef3f397c71fa9f096a3f9550243d097754
docs/Models/Components/SolutionTypeJson.md:
id: 57e9e1e0a0ae
last_write_checksum: sha1:6b4c70f528c4df914f86b1e1ca839fac538369f0
@@ -4614,19 +4410,19 @@ trackedFiles:
id: def1b71a1b02
last_write_checksum: sha1:35105d0e843660cc7d995f52ccf15b0ce17b3485
pristine_git_object: f653e6f6fa036849152779ff0af082292f987491
- docs/Models/Components/SpaceAreaJson0.md:
- last_write_checksum: sha1:8645175858b2b617a23841080a47bcd4d6337b91
+ docs/Models/Components/SpaceArea.md:
+ last_write_checksum: sha1:fc19d2dade95b280f14ce280fe0cc1db13639f91
docs/Models/Components/Speaker.md:
id: 32d4d6d3ce16
- last_write_checksum: sha1:6d0abfd2a39b694412ffa1e683580e75e73f7a3d
+ last_write_checksum: sha1:5c191cf2bbba53ac86ff094ab6bccc6466c7af53
pristine_git_object: 2f82bc9c267436a4e4399c26f376dfd70176ac95
- docs/Models/Components/SpeakerCategory.md:
- id: 0da8b4c45614
- last_write_checksum: sha1:4da67cbfb9050dfb1e9e1f3afac920cf28b72d47
- pristine_git_object: 7dd4e9f25b68784b24ab056b0872f1236fade3a6
+ docs/Models/Components/SpeakerCategory1.md:
+ last_write_checksum: sha1:881cb41d5c540206587358f63e3466bc39d1a450
+ docs/Models/Components/SpeakerCategory2.md:
+ last_write_checksum: sha1:8456fb286a1e1719e1349c30517b921668b55807
docs/Models/Components/SpeakerCategoryPaginatedResponse.md:
id: eb1ac1aa2d01
- last_write_checksum: sha1:0fae5b6a3f375dbb4962e39e77dc451cda46ab1d
+ last_write_checksum: sha1:d815c29010d5ce21ae72685961f5cd26d76a798c
pristine_git_object: 022b82612e676e722d5db64a924a807169703d72
docs/Models/Components/SpeakerContact.md:
id: b08e3684c9f8
@@ -4634,7 +4430,7 @@ trackedFiles:
pristine_git_object: 91ef8c063bdac39c4f6d62ca44d7cb12cf7e5648
docs/Models/Components/SpeakerDocumentPaginatedResponse.md:
id: c33e61d76dea
- last_write_checksum: sha1:a6c7c4459e432aed5f0d5df5a1fb36726abe3898
+ last_write_checksum: sha1:24379b325343f840a2449c71d3f3f6c6843c4d55
pristine_git_object: f06f093a29999e4dc54203f2b7869d1a5a2295db
docs/Models/Components/SpeakerEvent.md:
id: 8fbea2ca7bf3
@@ -4665,21 +4461,19 @@ trackedFiles:
last_write_checksum: sha1:e0489e26a66f834ea281fc0c884802be60af65f1
pristine_git_object: 5c573ba1a7b07bc41ecfae47dd8d9241da49afb2
docs/Models/Components/SpeakerLite.md:
- last_write_checksum: sha1:276d37ef6fbff76f1bbbe2938b89b395ff74400a
- docs/Models/Components/SpeakerLiteJson.md:
- id: 0ef839678e1b
- last_write_checksum: sha1:5bdc8496f7b363255df7ea20a5efc5933376a78b
- pristine_git_object: a330a586c9980db4728d9b3043eb8980cdfb3813
+ last_write_checksum: sha1:0d7cf45f2d986d475403f8a6940b0c0e3408b42b
+ docs/Models/Components/SpeakerLite1.md:
+ last_write_checksum: sha1:17a358835ed09bee8c0e6be6a62467e54f314474
docs/Models/Components/SpeakerPaginatedResponse.md:
id: d715b0ca3616
- last_write_checksum: sha1:257b0b66ae869555a9e78cd9401b8bfba9222ea3
+ last_write_checksum: sha1:328d7b591050bc9af22d7bab969e36753ab9403e
pristine_git_object: c130071ff0cfc24ffa49f8ccbd37da2ce6f3e1ce
docs/Models/Components/SpeakerProgramItem.md:
id: 11fe506db00d
- last_write_checksum: sha1:c5e01bff085ba485ebb06c32ab9a8b14b6da84ca
+ last_write_checksum: sha1:77e754cb3d68eb33191bffc160cba35e2f674342
pristine_git_object: c19290c680ce00f2cfe639b5e6c412380e40a93d
docs/Models/Components/SpeakerSession.md:
- last_write_checksum: sha1:69a853c505894932fc5bb36fc45ffb16fb155d00
+ last_write_checksum: sha1:da865820f561838a3b8f973c5dc4a6cfca005621
docs/Models/Components/SpeakerSessionPaginatedResponse.md:
id: d196d535e951
last_write_checksum: sha1:a96821a5c07388badb9ddb4283667171f6822aff
@@ -4696,7 +4490,7 @@ trackedFiles:
pristine_git_object: 32452d8060b6a90294d82b1864baf8cd48467f16
docs/Models/Components/StakeholderJson.md:
id: 6449682c7193
- last_write_checksum: sha1:f8522e653193c4df2a628a7079365cdf3253d64e
+ last_write_checksum: sha1:d47bf6592f0927a27125875599ff166f0ed1eb19
pristine_git_object: e71b082bb99dbf562634db42cdd31ee8801ffb3d
docs/Models/Components/StakeholderJsonAddressType.md:
id: b32ccc1d34f5
@@ -4734,8 +4528,8 @@ trackedFiles:
id: 3327d74f05e5
last_write_checksum: sha1:e0f4e3c3df9ad526705c823f38b1ec2f25faeecf
pristine_git_object: 450fbfc2580deb354403ea2f44ce7dedff04bf11
- docs/Models/Components/StandardQuestionJson.md:
- last_write_checksum: sha1:c734b7f27104079d691e80261d021b93324b6818
+ docs/Models/Components/StandardQuestion.md:
+ last_write_checksum: sha1:ca207db79a37960f7edb4ca97d8f2fdb952bd0ec
docs/Models/Components/StandardSurveyEmailTemplateJson.md:
id: 92183bd5edf6
last_write_checksum: sha1:751410d944f5828fe6ae46bb2be4cc2e10ab6439
@@ -4746,11 +4540,11 @@ trackedFiles:
pristine_git_object: 3ff87245f73996ab31a2517e381ba90e1a1db68a
docs/Models/Components/StandardSurveyJson.md:
id: b8104bbf96d4
- last_write_checksum: sha1:27ddf602cafcd8c7418582e4ec599a41fdf83fa8
+ last_write_checksum: sha1:1a939dbe41a9a6339fb17fa549238520aa6ebeca
pristine_git_object: 06cb63c9bf40c9ef7a978084e93880bb9bc2a606
docs/Models/Components/StandardSurveyQuestionJson.md:
id: 5b14f983c090
- last_write_checksum: sha1:ea58ee4c972fea0ea64b1e05bc15bf0c4065bee7
+ last_write_checksum: sha1:7cdd7700b8f6bdfc7d31e94cc366aa44b6eaf64b
pristine_git_object: dcb66e926cbdcab8d9a7bd04f1af60370883fc28
docs/Models/Components/StandardSurveyQuestionsPaginatedResponse.md:
id: ec0d58b2a1a0
@@ -4823,17 +4617,15 @@ trackedFiles:
last_write_checksum: sha1:1f7f9607963f51a98adc4f965b8699f08481ce29
pristine_git_object: 11bc5c61313262f7701c7d39364119c2064f6625
docs/Models/Components/SupplierResponse.md:
- last_write_checksum: sha1:64f2cf146d2b7f3266e2dbc5aa04b0fc43e078b4
+ last_write_checksum: sha1:dc4e38890b16df545f7b508a2bef005a306ca9ad
docs/Models/Components/SupplierSummaryJson.md:
id: 774dc1483ea7
last_write_checksum: sha1:45c1598f64208ad93b757994f97f5fca8fe903e1
pristine_git_object: 4730076d607510c99e9e7f1e98ea1f2ae6e345f2
+ docs/Models/Components/SupplierType.md:
+ last_write_checksum: sha1:55596bae86f9bdec8c296eb7e3069d2b7a4e169a
docs/Models/Components/SupplierTypeJson.md:
- last_write_checksum: sha1:7c00997e5bd3efc2f5a72ad6710ef6f154c58cbe
- docs/Models/Components/SupplierTypeJson1.md:
- id: 88f89028ba2f
- last_write_checksum: sha1:e8e0afd5ab46dbc6d96fc1d9025cd6a80b5e8edf
- pristine_git_object: da942b6b857c5114e5ba528e005cc1e24000a464
+ last_write_checksum: sha1:9eb5170d4c36b6f0d5b01ed76d8805d972c9406e
docs/Models/Components/Survey.md:
id: d9e9be5d78b0
last_write_checksum: sha1:e49d8affef3fb717bb867387361193cdc82ae592
@@ -4842,13 +4634,11 @@ trackedFiles:
id: d9bc41acb543
last_write_checksum: sha1:d914e31283dbc420d1b15238b93fa442673c3605
pristine_git_object: a5b106f86647c254f8dd13608c56c26aa02c63c3
- docs/Models/Components/SurveyContactIdJson.md:
- id: e90a6412929a
- last_write_checksum: sha1:72220e017af605d29d7f4165bee4c1f61b315a2b
- pristine_git_object: 9e7821ffa663dd0883f54ecf9f122df80ac8a257
+ docs/Models/Components/SurveyContactId.md:
+ last_write_checksum: sha1:bc20ade9646d20fd96eff2cbc5f8445be15bfbcd
docs/Models/Components/SurveyJson.md:
id: f6539e70d313
- last_write_checksum: sha1:05e9c3dbdc852a6531494b1372ccf49cde5ed3d6
+ last_write_checksum: sha1:3fc6ad594f0e649a5c45445bfaaf2efe4f56f766
pristine_git_object: 2b0ce1593fb6b24c036152f4274b122cd4497e58
docs/Models/Components/SurveyResponseJson.md:
id: a47df21ec58d
@@ -4892,8 +4682,8 @@ trackedFiles:
id: 1faf0ea4d3e2
last_write_checksum: sha1:414510b0b8f1825b50200bf180205499e76b2f90
pristine_git_object: 694e40516a5ddbf6fc7522d928e509a60410d6f1
- docs/Models/Components/TargetTypeJson.md:
- last_write_checksum: sha1:b36f469d937853826c72ee76a2a62cbf5f047d89
+ docs/Models/Components/TargetType.md:
+ last_write_checksum: sha1:bb9b8ed42e427c2f73e9162785f32c05533764ae
docs/Models/Components/Tax.md:
last_write_checksum: sha1:ed5d569c64853a5a720d583eef5e18c70f609ffd
docs/Models/Components/TaxAndFeeJson.md:
@@ -4906,36 +4696,28 @@ trackedFiles:
id: 2ad5318f34cf
last_write_checksum: sha1:998903d8fc580eff68cf207902d6adb13f217745
pristine_git_object: 8449d6ac7e3565efb6b927a3d9a736f896359c11
- docs/Models/Components/TaxTypeJson.md:
- id: d46a4e884021
- last_write_checksum: sha1:f988027a92c610c51ab879dee71e333bbde4d1ba
- pristine_git_object: b8ab0de40adee1f796209039a3560283b84ddbf1
+ docs/Models/Components/TaxType.md:
+ last_write_checksum: sha1:aa5ea4e5e0e141eaa592353bba4bdb2a65f5c7c6
docs/Models/Components/TaxesPaginatedResponse.md:
last_write_checksum: sha1:e5d1f1bd7c9cc9ae4be5c36da9ba6ba6ea4aefe4
- docs/Models/Components/TextAnswerFormatJson.md:
- last_write_checksum: sha1:1a2903955c0bd1c4dcdea19883a043ab216f8319
+ docs/Models/Components/TextAnswerFormat.md:
+ last_write_checksum: sha1:e4cb3bab22caf6e20f51137b48d332f97accd4dc
+ docs/Models/Components/TextField.md:
+ last_write_checksum: sha1:19dbf3ef871ba76237f90ff724abecc53291e8cc
docs/Models/Components/TextFieldJson.md:
- last_write_checksum: sha1:4aae77c42500eb8023933504367afac352d68407
- docs/Models/Components/TextFieldJson1.md:
- id: 49961d0c03fa
- last_write_checksum: sha1:7987ddc9c67612416a255ad2aeeee4988ed0e28f
- pristine_git_object: 3ef01a43f6e275780f6ae20a06303dd0bf7f783e
+ last_write_checksum: sha1:e5aea486ed7be964fbb34dd36b51db2e5b732462
docs/Models/Components/Three.md:
id: 3f27362616f5
- last_write_checksum: sha1:4974e77773ad1c4d449be1ed542f6fa2a1bd6ead
+ last_write_checksum: sha1:6ad109c8843afb343afd6fdc7068f14fc8ccb388
pristine_git_object: ec3670db365c77d1d08759db049fcac31e0978b3
docs/Models/Components/ThreeInput.md:
id: 672ba03ab19b
- last_write_checksum: sha1:1a966154cfb2cee52a6f9ec06d93df74c1b8978e
+ last_write_checksum: sha1:49473a74b3e9ba1ceb094369f5bffa8d12acc509
pristine_git_object: 7541815fd5fbe0970fcc06120b962bb3ba234441
- docs/Models/Components/ThumbnailStatusJson.md:
- id: b08883ed69c2
- last_write_checksum: sha1:6d005c68b28e9cd2c2cc9d36da8de2f7cefcdc35
- pristine_git_object: d024fc64066ceb52aaeb2962384780e114270f5b
- docs/Models/Components/ThumbnailTypeJson.md:
- id: cb7dfaf7f155
- last_write_checksum: sha1:896d81ce8b0e16ea299d7ba935ef5269d6f46342
- pristine_git_object: 2d580eebca203e789a8cd5c241f7c8b2945b2af1
+ docs/Models/Components/ThumbnailStatus.md:
+ last_write_checksum: sha1:4759a7b843f1321ad5db55c304933df2d31af31b
+ docs/Models/Components/ThumbnailType.md:
+ last_write_checksum: sha1:b808681df77afc1e1fca4288480b842074e47bcb
docs/Models/Components/TicketType.md:
id: b4d9b251e418
last_write_checksum: sha1:438da52c832abf6aabd25de695a79af9c99bb93d
@@ -4961,7 +4743,7 @@ trackedFiles:
last_write_checksum: sha1:6b4cf92f464b0b3e3d5374d5cf6fad2d7eb090b1
pristine_git_object: 9e1e4532af8c87a8765a859d98868795a2ab8caf
docs/Models/Components/TransactionDetailResponse.md:
- last_write_checksum: sha1:d31fe4d695e864bf93db50aae293a34f046a4bf6
+ last_write_checksum: sha1:cd93081156a539e65a1bc9e76a5db8b53c72e9ab
docs/Models/Components/TransactionDetailsPaginatedResponse.md:
id: 8022eb67c515
last_write_checksum: sha1:c01bbdb9b5d94334ce80c641c3bdbc992113c42d
@@ -4973,7 +4755,7 @@ trackedFiles:
docs/Models/Components/TransactionItemCreateInput.md:
last_write_checksum: sha1:b5da3b13663d2a1065319e1712697e7c3a3172f9
docs/Models/Components/TransactionItemResponse.md:
- last_write_checksum: sha1:c7c5d8537563dac8e52b8d51222934195f3711fd
+ last_write_checksum: sha1:34723b332195eb5a6cd69db1ab0ead3408e8d9b7
docs/Models/Components/TransactionItemsPaginatedResponse.md:
id: 94de2431441b
last_write_checksum: sha1:c1c4f2a47123ed2c979ea24f0ee1fcf38b4b2f42
@@ -5008,116 +4790,62 @@ trackedFiles:
pristine_git_object: 9d38ded99a78958962e50ec4824c1ac7638bcf2b
docs/Models/Components/TravelAccount.md:
id: 0341369b31d5
- last_write_checksum: sha1:272a8277bf07ca03244dc8ba88355bf3b431b018
+ last_write_checksum: sha1:231864c62dc191c568c473aaae43b2455accbd66
pristine_git_object: f2c3369de6bcff31b2db0fd5486ecf6053b0f805
docs/Models/Components/TravelAccountPaginatedResponse.md:
id: e9b8492e3bd4
- last_write_checksum: sha1:7de9f7613f7562171a3b1945ef4c5cdf4617b441
+ last_write_checksum: sha1:c43b3b411a7a52874ec106534a3219c5c70b5f0a
pristine_git_object: 634e1b54840f1386bcef854f7034b5c29bed3029
docs/Models/Components/TravelAccountSupplierAccount.md:
id: 1a40ea1c5c8e
- last_write_checksum: sha1:3554f4cd9e1ab24fd8419fc7654936fe217cfeeb
+ last_write_checksum: sha1:2e03662f7c8aa4581038bee8bb300f2fd968ddaf
pristine_git_object: 73323b48551e975592238c1b7f47744d8c475806
docs/Models/Components/TravelAccountSupplierAccountPaginatedResponse.md:
id: 22ce4daf7a4c
- last_write_checksum: sha1:4587a4449db086c931b2d7a8468ea4ea5b6d752c
+ last_write_checksum: sha1:fe2fc1af7fe488865d0781d0528a0b36f5dd17d2
pristine_git_object: ca3caeb78509d990ce34ff36c876cbe0412d2e86
docs/Models/Components/TravelAccountSupplierAccountTravelAccount.md:
id: a5c8cea44e73
last_write_checksum: sha1:b33d25935e6b3becd10f13c68575b5761875b09f
pristine_git_object: 706d3938c1a5526612a11f43e7953ff3e22b67a1
- docs/Models/Components/TravelAccountTypeJson.md:
- id: 3f2cbe603bd3
- last_write_checksum: sha1:b9154ad06e6e480147b0882649fcf25a66f63200
- pristine_git_object: 5bd15a463e682802af952d628c3b876e171de437
- docs/Models/Components/TravelAmenityJson.md:
- id: a396920ef28a
- last_write_checksum: sha1:ea94f13c7c240e753a20173cd5ab0a54e7daccbd
- pristine_git_object: 0b9a915a1223e2532a0a8970b4fb5b1a3e4bea17
- docs/Models/Components/TravelBidAmenityJson.md:
- id: d4eda0656aeb
- last_write_checksum: sha1:a32864126d09e507498b41ed111388db0dd18440
- pristine_git_object: deda500d2e3a21bd68fb97cba33da79d7d224413
- docs/Models/Components/TravelBidCommentJson.md:
- id: c3bd76af8d0d
- last_write_checksum: sha1:f5ee6870cda158006df4c92c4d446354fecd7713
- pristine_git_object: 45a853553414f169f36a47be7f0f31d8311172d8
- docs/Models/Components/TravelBidDiscountJson.md:
- id: ea6efb7f1d81
- last_write_checksum: sha1:88d60d7655c059961981d5e5e6c0679bebfd45de
- pristine_git_object: fa8f6445deede956b05e6b969aa35de661bfb845
- docs/Models/Components/TravelBidDiscountJsonPropertyRoom.md:
- id: a7bdaef8bddc
- last_write_checksum: sha1:f6b792df53614793d07c951673a23d0a6b4e31a8
- pristine_git_object: c239d87a15973426edb8423bc2a5f42a92128675
- docs/Models/Components/TravelBidDispositionAcceptedRoomJson.md:
- id: e936e65a9887
- last_write_checksum: sha1:b2cce817675ece9f3a11df0d92281cc119fb263a
- pristine_git_object: dcab38e1b99dd5f892694dec59c0f9d8f84ab585
- docs/Models/Components/TravelBidDispositionAcceptedRoomJsonPropertyRoom.md:
- id: 6c0042a4b042
- last_write_checksum: sha1:c3a8c02ae1d266719a0d3ac9d16630ad40ba5624
- pristine_git_object: 48f86a2fd18feba97ddd541a9a38798928e14b92
- docs/Models/Components/TravelBidDispositionJson.md:
- id: 26d9cbd04d54
- last_write_checksum: sha1:f76756794ce31db0041d1693542199fc09c42873
- pristine_git_object: a831680151f7269d03bbb649d12a71d7a3da627f
- docs/Models/Components/TravelBidFairSeasonJson.md:
- id: 40cf6bd54822
- last_write_checksum: sha1:b23df96672324b112d083222c4052008ee52429c
- pristine_git_object: 4564b53d774e9749684e75d2802ec362007050bc
- docs/Models/Components/TravelBidFairSeasonRateJson.md:
- id: 70e2f7561f7b
- last_write_checksum: sha1:775f3c0bec2ddcc922d964be7c4346a8b17efa91
- pristine_git_object: 06bd8b2bb1e988215990e15acf5a30ef3dfe1a62
- docs/Models/Components/TravelBidFairSeasonRateJsonPropertyRoom.md:
- id: 93033a9b2c3e
- last_write_checksum: sha1:8c12aa8685ace724ba6aa03a804161920fb8ebd2
- pristine_git_object: 049f34da77e011cb9de4173555e12b974aea597b
- docs/Models/Components/TravelBidPolicyJson.md:
- id: c11045ec196c
- last_write_checksum: sha1:ae33df7991dde6cf355aa8f778f055ec9ec2de7e
- pristine_git_object: 5bd31154a8f596466e50c299933b3ad36c848eef
- docs/Models/Components/TravelBidRateJson.md:
- id: 58d2ef336ff6
- last_write_checksum: sha1:898ef56633114cfedcc144eaecadbc56222855f5
- pristine_git_object: 4795e8ed9f8d33449901959e701c3ef9bf71f9f7
- docs/Models/Components/TravelBidRoomJson.md:
- id: 7e313dea7a5b
- last_write_checksum: sha1:c0323a0841087d5b29b48019f814772fca1bb325
- pristine_git_object: 99bcb0a1fbe78f0f2042f7c2136c529429b3d425
- docs/Models/Components/TravelBidRoomJsonPropertyRoom.md:
- id: 701dcf7d46ba
- last_write_checksum: sha1:807153c46d9d56485e03d18edeed205bba0db1b9
- pristine_git_object: 03cbff21e45bcc979aecafaf04ccef0ecf696330
- docs/Models/Components/TravelBidSeasonJson.md:
- id: 2d1e4c67190f
- last_write_checksum: sha1:8ae4f5ea1c5fbb957c3c0a31a81d04f633e4b4a1
- pristine_git_object: ee10716a3a2c0095f7a4306d1218e1567b6ead32
- docs/Models/Components/TravelBidSeasonRateJson.md:
- id: 9f0348bafa14
- last_write_checksum: sha1:8122bebfb513d59c9eda3f15c35b6e7f54d75a9d
- pristine_git_object: be62cf94e20580758d2589a22779f243f3f753a5
- docs/Models/Components/TravelBidSeasonRateJsonPropertyRoom.md:
- id: da2114316def
- last_write_checksum: sha1:9fb9c591b8f0e12772f68193b6d25ce11051b557
- pristine_git_object: 79ab9937cf8efdbacd32d086b5b1c324cee01283
- docs/Models/Components/TravelBidTaxFeeJson.md:
- id: a963bcd051b1
- last_write_checksum: sha1:680f1f87bdfe443f86cb481192e8a28be1c5446f
- pristine_git_object: f34fa60f3a1eb9153ecb3c1f83f07197f14ccaad
- docs/Models/Components/TravelBidWeekendDayJson.md:
- id: ce605e4e42c7
- last_write_checksum: sha1:d18b5b5c43d4e0abac5c37a08180638821621b2c
- pristine_git_object: cf8e54dc27205ecd762205f4295c025e2568fa86
- docs/Models/Components/TravelBreakOutRoomJson.md:
- id: 1bc4923bcbac
- last_write_checksum: sha1:67ac0af0bdd1a81f1973120ae99d3017e6bccb19
- pristine_git_object: 651b5de1c0e1e9c5824404b9ed980bc0702fb768
- docs/Models/Components/TravelDayDelegateRateJson.md:
- id: e27fa826b461
- last_write_checksum: sha1:72e375c397bac557ac25bd7ee226280cc79a1ebe
- pristine_git_object: 1d8d1bf95bd046a6cf0deab6bf73a18d288f7d6d
+ docs/Models/Components/TravelAccountType.md:
+ last_write_checksum: sha1:a7af9a9c5959c3be082ba6c17a988ac63fcea7cb
+ docs/Models/Components/TravelBidAmenity.md:
+ last_write_checksum: sha1:6118ef7a1e661c3677e85c115ad633dabe4f402b
+ docs/Models/Components/TravelBidComment.md:
+ last_write_checksum: sha1:007e0798bc9447e8d2ea634b89457c49c3478a63
+ docs/Models/Components/TravelBidDiscount.md:
+ last_write_checksum: sha1:10d11e7b2b5748ae9f1635182facd7c98402b676
+ docs/Models/Components/TravelBidDiscountPropertyRoom.md:
+ last_write_checksum: sha1:58169a8d556b6f2f6a44323c43e6535b9dbf9c7a
+ docs/Models/Components/TravelBidDisposition.md:
+ last_write_checksum: sha1:a05172ed1f420bc61d601007d670edd9ee26ffa0
+ docs/Models/Components/TravelBidDispositionAcceptedRoom.md:
+ last_write_checksum: sha1:54e84d1dc829c621b037abc830d6d513aa222f2e
+ docs/Models/Components/TravelBidDispositionAcceptedRoomPropertyRoom.md:
+ last_write_checksum: sha1:90a1d08d7a55eda5372f81bead42916cc94d1349
+ docs/Models/Components/TravelBidFairSeason.md:
+ last_write_checksum: sha1:249ca365950b470bfbf3f645fb2c7744e258cae6
+ docs/Models/Components/TravelBidFairSeasonRate.md:
+ last_write_checksum: sha1:86f2e82afe46ecf1012cb323645ef3b4b940dc84
+ docs/Models/Components/TravelBidFairSeasonRatePropertyRoom.md:
+ last_write_checksum: sha1:d43f900fae9f45f220a022654cabf1287e8a8d5f
+ docs/Models/Components/TravelBidPolicy.md:
+ last_write_checksum: sha1:7940a88d59f1a060980c455893d702015f3f6bfb
+ docs/Models/Components/TravelBidRoom.md:
+ last_write_checksum: sha1:c4bf9aa5aff88cd7ad8d20d3c8730b544301b493
+ docs/Models/Components/TravelBidRoomPropertyRoom.md:
+ last_write_checksum: sha1:d8926ebb1f1d8114e7d0f58c87a9229e64c05075
+ docs/Models/Components/TravelBidSeason.md:
+ last_write_checksum: sha1:3d78cbaca153f379ce000e91a4de1b1c5fc34d3d
+ docs/Models/Components/TravelBidSeasonRate.md:
+ last_write_checksum: sha1:a3af54fd1e14838e273c2e3acaa2114132073147
+ docs/Models/Components/TravelBidSeasonRatePropertyRoom.md:
+ last_write_checksum: sha1:a72615c744bab9a3ea1feba9f05c9fae17a624b2
+ docs/Models/Components/TravelBidTaxAndFee.md:
+ last_write_checksum: sha1:529af24f3ca2fb60341e44dc7863c8b4746ecf0e
+ docs/Models/Components/TravelBidWeekendDays.md:
+ last_write_checksum: sha1:2323eb7b6a9d1873e831a546e1611b53193a9457
docs/Models/Components/TravelDepartureArrivalJson.md:
id: 10b2765684d4
last_write_checksum: sha1:b64eac0a919bfb342944243f97d14d88daee46a6
@@ -5130,73 +4858,73 @@ trackedFiles:
id: 7d39010091d5
last_write_checksum: sha1:de46e2a54a23f18aff05b0c539b78d612173ea73
pristine_git_object: da68e0fd1935ef7f8e7d2f1554c3f7629c3c100a
- docs/Models/Components/TravelGroupAndMeetingJson.md:
- id: da786045996d
- last_write_checksum: sha1:5227014e02f7e9f56291e03c57d2e024484b9789
- pristine_git_object: 6a2c3d95cebc6d1642eb142ab05d00d88e1b302c
- docs/Models/Components/TravelMeetingRoomBasicInfoJson.md:
- id: 206b0aa68c41
- last_write_checksum: sha1:ea98a269f7e090ffe9078e3f2900226dc732305d
- pristine_git_object: 93bc6040ac2e0eafae8b551de1d9da5a26b087b3
docs/Models/Components/TravelProgram.md:
id: 85e9f62afdfb
- last_write_checksum: sha1:0535243eafaf1a8069b4af0fe8178493aaf578d7
+ last_write_checksum: sha1:9a4484125beb31c795ac18eb6763d8919deef420
pristine_git_object: e95ac6e088d1b53ee8132bc221067a721de4b7de
- docs/Models/Components/TravelProgramFormatTypeJson.md:
- id: 5aa5fb3967f0
- last_write_checksum: sha1:557b2d0b120ed9497ff1e3245b7a13535dafd52f
- pristine_git_object: 654889261b9182b17230fcdbaca9357738cf199e
+ docs/Models/Components/TravelProgramFormatType.md:
+ last_write_checksum: sha1:ff70cc3d86a33c668d412e24d2865584fd2db8c2
docs/Models/Components/TravelProgramPaginatedResponse.md:
id: fd5bee73241a
- last_write_checksum: sha1:4a259bce301a69a1c2efb38b6553b8452b434d2e
+ last_write_checksum: sha1:1def717ccd0b233f86c30c3171e86d2a5f703d73
pristine_git_object: 46150154a88239488036636f1e7682b4c6fa9938
- docs/Models/Components/TravelProgramQuestionJson.md:
- id: fbc4b04981c4
- last_write_checksum: sha1:a2e530b9e0e8919160bf0c01767acf6d9553b9a2
- pristine_git_object: 1c014c51c16404662ea847832f0be91e91bc36ad
- docs/Models/Components/TravelProgramStatusJson.md:
- id: 0d2a89420196
- last_write_checksum: sha1:b5070ea17ac04a745b9c8f7143e147def757bfb9
- pristine_git_object: 8e96d862f9d0b95d097a31df7c0fd46195a8ea12
- docs/Models/Components/TravelProgramStayTypeJson.md:
- id: 09474ba7f5e7
- last_write_checksum: sha1:a4a91b9e3a07fce950fc2664a41dfe77b13e2069
- pristine_git_object: 0f2cc986fc07f18ae50f5389db450e92f7ce4629
+ docs/Models/Components/TravelProgramQuestion.md:
+ last_write_checksum: sha1:6224136605b6553675de56c1fa2f97bd4e4744f2
+ docs/Models/Components/TravelProgramQuestion1.md:
+ last_write_checksum: sha1:340f2d4e84f5ea9a7a6dc4ddcc2a072568bcef08
+ docs/Models/Components/TravelProgramQuestionTravelProgram.md:
+ last_write_checksum: sha1:25f83ac8867dbbfc406f147dfbefa98ec16fccc0
+ docs/Models/Components/TravelProgramStatus.md:
+ last_write_checksum: sha1:a2320feb996116a71c5fce7b5e67ce5d6fe3d0ad
+ docs/Models/Components/TravelProgramStayType.md:
+ last_write_checksum: sha1:ff6ca5c3092a88b2d85cd91bbd119ce71e71a921
docs/Models/Components/TravelProgramTravelAccount.md:
id: f5b6b04721cd
last_write_checksum: sha1:9fe2ab68b4e9163706c38da24bbb7f02d7f9cd22
pristine_git_object: 46447a6f930af1a190c8a4689426e76702b19cee
- docs/Models/Components/TravelProgramTypeJson.md:
- id: e622a12517ff
- last_write_checksum: sha1:c4d2fae1146d21d21b3a12439ffe597ba3fc4489
- pristine_git_object: 5ddf9dbe6352750c4eee58e5daac1126f78d7766
+ docs/Models/Components/TravelProgramType.md:
+ last_write_checksum: sha1:d091e412e03896203eae3bf912277ee625dc4fe0
docs/Models/Components/TravelProposal.md:
id: 5f1cf32a8440
- last_write_checksum: sha1:e58b441345398c1e7bb9a03d95a4af0a44ea502b
+ last_write_checksum: sha1:08b74ce7d8df7d43d853113fc5ced884546fcd0b
pristine_git_object: e3a099a1b2a33bbf277d188395a147710e019d53
- docs/Models/Components/TravelProposalBid.md:
- id: 54e44bb34cfa
- last_write_checksum: sha1:47bfb998e437c1113bb545a4cc1bc8aa62faf0a9
- pristine_git_object: 155a8bedb75fa435afd60a51c2e16698bf4445f2
- docs/Models/Components/TravelProposalBidIdJson.md:
- id: 4afd7635d904
- last_write_checksum: sha1:fc592b262778e1e263828a00e915aca6c6decddd
- pristine_git_object: dd1172b99351ad115cd3958a3c2ad5b63f139b4b
+ docs/Models/Components/TravelProposalBid1.md:
+ last_write_checksum: sha1:39fb129f2db5bd2335ced635dc76392b0118288a
+ docs/Models/Components/TravelProposalBid2.md:
+ last_write_checksum: sha1:d2ae3434b4c1980cda2dd9e962c49ac5606ad36d
docs/Models/Components/TravelProposalBidPaginatedResponse.md:
id: b754d1ede5b8
- last_write_checksum: sha1:8d535d3bcd7dbb40e8da271241e55a9e66bfce8a
+ last_write_checksum: sha1:b77aa011e2b995bdee94ac1aaa116ddb13d1d9db
pristine_git_object: 3f28954050529edb1c29d4643b7cbce10da08937
+ docs/Models/Components/TravelProposalBidRate.md:
+ last_write_checksum: sha1:790f7657d8887d84547d31d82bff65542f24a16f
docs/Models/Components/TravelProposalBidTravelProposal.md:
id: a205f8cdcdab
last_write_checksum: sha1:9759dda5b2150e0dcdcd2d54ed2b9a33cb0f2f01
pristine_git_object: 83db6ac22985f0a26e6c893ebc9df2777d89fe59
- docs/Models/Components/TravelProposalDispositionJson.md:
- id: 3c5ec27b5ec7
- last_write_checksum: sha1:48c8bffe1ab4853ed679e63ca8f46cd8ec085d95
- pristine_git_object: 34be05ee83215cc0deb7fff896c9a8936f63a9c6
+ docs/Models/Components/TravelProposalCustomQuestion.md:
+ last_write_checksum: sha1:f3e8754237227a4362fa1d1ebbd525d4c55c3270
+ docs/Models/Components/TravelProposalCustomQuestionQuestion.md:
+ last_write_checksum: sha1:96de33740fca5d34cda84c416de8b0ff01a9f5a4
+ docs/Models/Components/TravelProposalDisposition.md:
+ last_write_checksum: sha1:4f37f9737e4dea9f88c9e53604a59651669c9b59
+ docs/Models/Components/TravelProposalGroupAndMeeting.md:
+ last_write_checksum: sha1:0b001ac81e301d0dc6757d19a4c90fe8fbf8bb88
+ docs/Models/Components/TravelProposalGroupAndMeetingAmenity.md:
+ last_write_checksum: sha1:37b06118c97d8432dadb9f87d3a68559f8baac1e
+ docs/Models/Components/TravelProposalGroupAndMeetingBreakOutRoom.md:
+ last_write_checksum: sha1:5ed5d72e66ec6139ca7ab76674dc94be24dcdeb8
+ docs/Models/Components/TravelProposalGroupAndMeetingDayDelegateRate.md:
+ last_write_checksum: sha1:d35d42f8ac19bcbcf5e9af306ffab088b0a1cd6b
+ docs/Models/Components/TravelProposalGroupAndMeetingMeetingRoomBasicInformation.md:
+ last_write_checksum: sha1:cf40c2daafe5edc8d17d233f8b9acfd362a75c3d
+ docs/Models/Components/TravelProposalGroupAndMeetingRunOfHouseRate.md:
+ last_write_checksum: sha1:1535febb53d05a3d118d05b31edb3c710dc80a44
+ docs/Models/Components/TravelProposalGroupAndMeetingTaxAndServiceCharge.md:
+ last_write_checksum: sha1:02971c978de0143f93a13310d3b6511e69b445be
docs/Models/Components/TravelProposalPaginatedResponse.md:
id: f214119ba7cf
- last_write_checksum: sha1:16e494cdc460de4c4b602384fdb19a6aebcb1cc9
+ last_write_checksum: sha1:c75cd9389d3f965ddfa7d97172a17c189e94f525
pristine_git_object: c470452f59dfb26e086aefe0a537502cfeb0865b
docs/Models/Components/TravelProposalTravelProgram.md:
id: 4c91abe8bb75
@@ -5204,14 +4932,6 @@ trackedFiles:
pristine_git_object: 33af777ba6d59c8ddd7c8263771b677e49437f8f
docs/Models/Components/TravelRequestStatus.md:
last_write_checksum: sha1:2444b12b8f951342675a4cd0004af9ca79e5f7c9
- docs/Models/Components/TravelRunOfHouseRateJson.md:
- id: 27746ceee66c
- last_write_checksum: sha1:ff601c23795b649ba054396999f2af008c7cda9a
- pristine_git_object: c1840c2a243c0da0fb3d731631e6969a099932dc
- docs/Models/Components/TravelTaxAndServiceChargeJson.md:
- id: a0e654e00ee3
- last_write_checksum: sha1:8b93ab563be6f7484dcec555662fe51e844a61f7
- pristine_git_object: ee2ab1a728466803ed49a87f4f0c518710d58977
docs/Models/Components/TravelType.md:
last_write_checksum: sha1:5424e4d3238c6b52afd4e2e3959fdb3eeb1158b4
docs/Models/Components/Two.md:
@@ -5226,16 +4946,14 @@ trackedFiles:
pristine_git_object: ad0cbfdedf338cde0bf7fad7f22c7a6c57227c03
docs/Models/Components/UTMOverride.md:
last_write_checksum: sha1:93dde7329c95602fa01d6b80c436b37150e6f1e2
- docs/Models/Components/UnitPositionJson.md:
- last_write_checksum: sha1:2d374284a491ce489d5d9b934718eebd63873975
+ docs/Models/Components/UnitPosition.md:
+ last_write_checksum: sha1:d0cefb809feae8f911aab33aa3431ec58f94a7de
docs/Models/Components/UpdateAppointmentRequest.md:
id: ddc036d78429
last_write_checksum: sha1:bc6a6653776cfd4a7f91b6b692b90fe20a80c44d
pristine_git_object: 8dae1615570b00fe7c2c7368be33aa9d957a9544
- docs/Models/Components/UpdatedThroughNamePropertyJson.md:
- id: a512b530cae5
- last_write_checksum: sha1:ee214684dca04b0ed84c615006c5618997cf6a9a
- pristine_git_object: 091d4921d1587a78fdbf2cbe12f02373c99b1080
+ docs/Models/Components/UpdatedThroughNameProperty.md:
+ last_write_checksum: sha1:3656e39c81d7ae035b6f02e6131367c936816cff
docs/Models/Components/Usage.md:
last_write_checksum: sha1:f9afed79a75052ce5cd755339c90eeb334155807
docs/Models/Components/UsagePaginatedResponse.md:
@@ -5244,7 +4962,7 @@ trackedFiles:
pristine_git_object: 963523d60c2e1add552a9e82457662a2c31f5c21
docs/Models/Components/User.md:
id: d91a5ce53244
- last_write_checksum: sha1:41842355d92d7b61ef8fc90afffa1de8a0490fb0
+ last_write_checksum: sha1:da396b5fc99511fea98b7e60b21ffb8f7477437c
pristine_git_object: 91ca9f23ae3392dff4d98eed98276611fb95d633
docs/Models/Components/UserEnterpriseExtensionJson.md:
id: ed6d4eb19044
@@ -5276,11 +4994,11 @@ trackedFiles:
pristine_git_object: 638e9fe0d02dfdfbaf844b5ac45d4094e440ada2
docs/Models/Components/UserInput.md:
id: b0f6fe1fde88
- last_write_checksum: sha1:9cbe8c0a0afb872ca76832760c6000f38cf1c8a1
+ last_write_checksum: sha1:bf0b08d2f7b8c7585fa4ce85250bdd8544f32ce0
pristine_git_object: a0435adc3e85200593fc6b1949ad68dc683939d1
docs/Models/Components/UserJson.md:
id: cb4b4b0b2bc7
- last_write_checksum: sha1:b91453ab16fd2e7466119f222353791cf0ea3382
+ last_write_checksum: sha1:fc553b437238825018712bd56a332a0f733d9c1f
pristine_git_object: 72fc4e26ba943aa6299538dbf92a1324b2138ba0
docs/Models/Components/UserTypeJson.md:
id: 5e2470b7dbfb
@@ -5334,7 +5052,7 @@ trackedFiles:
pristine_git_object: 23ed5495dd7deee16bb7b7141e0c03a53d4da7a7
docs/Models/Components/VenueSummary.md:
id: 196d7a837ae5
- last_write_checksum: sha1:8f510afca1656468e7c531e457bc9b15226857d3
+ last_write_checksum: sha1:ec2033e2e22917cc265958f34dfee4eace8a06b6
pristine_git_object: c2c5de9894128669389b37a3bec956f5a8ca5f03
docs/Models/Components/Version.md:
id: ce182a615ba2
@@ -5344,102 +5062,72 @@ trackedFiles:
id: 206be5812215
last_write_checksum: sha1:c0ead949023b2ed391403f1959e4d4b287c0ac53
pristine_git_object: 845335fac166d6dc93a51991c6d7bb28e59b7f7b
- docs/Models/Components/VideoAssetIdJson.md:
- id: 9d35dff0b951
- last_write_checksum: sha1:41dde0297be85043e52da7dd5b0e9a296777d8b4
- pristine_git_object: 9e191942d283a3dd3244a42c1532d1a2f81d2251
- docs/Models/Components/VideoClipJson.md:
- id: b605c52c437d
- last_write_checksum: sha1:81187353dc74295a3bc6982c80d594c6a4450b2c
- pristine_git_object: 1070684b7434d4455785ebbf739288b83bbb6ec6
- docs/Models/Components/VideoErrorCodeJson.md:
- id: 80cc7951a593
- last_write_checksum: sha1:617f3ec5a52388e43f679df7e2024cdf28af7a5d
- pristine_git_object: bf2fc9eeb6b7ed4207e44d6fa645525e5c012c9e
- docs/Models/Components/VideoErrorJson.md:
- id: f8a0f2542915
- last_write_checksum: sha1:19f733f06360357234a605dccbfa890c2696c6af
- pristine_git_object: bb3ec2d1ae13ff47ccda14e65c8f6fc5a40fe9cf
- docs/Models/Components/VideoJson.md:
- last_write_checksum: sha1:82f8cf9f1ad353db0f9a8d6c9720dc8056675c8a
- docs/Models/Components/VideoRenditionJson.md:
- id: 81d757f830fd
- last_write_checksum: sha1:6bdd08aa5ecfe5cde5b30870de4f19ce41d8c10b
- pristine_git_object: 7b0912eaf4f8a17d87d6b836a2927fa743576f6b
- docs/Models/Components/VideoRenditionJsonLink.md:
- id: adf1e837ddc8
- last_write_checksum: sha1:a8463081ecae083c383b84ecd54f527327ae2980
- pristine_git_object: b6a56953ff9f9dfd35d8427bb3afb7d8f143570d
- docs/Models/Components/VideoRenditionTypeJson.md:
- id: 5a28be9efc6b
- last_write_checksum: sha1:65e358e3b5675e4859d1432ce4440569fa68e54e
- pristine_git_object: a94fb12777dd07fcef44fab5ad60a79bd0f1bbbf
+ docs/Models/Components/Video1.md:
+ last_write_checksum: sha1:477669e201ea0e37a3e5fcefc9e168b5f9d54110
+ docs/Models/Components/VideoAssetID.md:
+ last_write_checksum: sha1:4c44e12789da850a12bcdd696db5d48501cc9095
+ docs/Models/Components/VideoClip.md:
+ last_write_checksum: sha1:158f3683c033a0b1303fd36406d789e5d60fa1d1
+ docs/Models/Components/VideoError.md:
+ last_write_checksum: sha1:686dba906c5a3ed4cda915134213d4b9ee8316f3
+ docs/Models/Components/VideoErrorCode.md:
+ last_write_checksum: sha1:d441133a273f9ae5870ce79656170dc50aef5502
+ docs/Models/Components/VideoRendition.md:
+ last_write_checksum: sha1:800f1105d6e2ec02b6d2fbfe5eb747b7f986392e
+ docs/Models/Components/VideoRenditionLink.md:
+ last_write_checksum: sha1:e8a641fd147e9b60a5db52198219079c6c4fe75c
+ docs/Models/Components/VideoRenditionType.md:
+ last_write_checksum: sha1:bddf5c9847a63203cdfb32de8619d05c7205fc54
docs/Models/Components/VideoRenditionsResponse.md:
id: d8aa8b874505
- last_write_checksum: sha1:8e46a471c0220cadda00ef6e2acf0e0d82570601
+ last_write_checksum: sha1:64a5f6479d0e169d949007843a8d5b11ead63cf5
pristine_git_object: 136a417067f831f81c413c59b63e52d2cc8b86fd
- docs/Models/Components/VideoSourceJson.md:
- id: 5084cbffffc3
- last_write_checksum: sha1:81f58287be5db7c398a94fa63e79e32fc04daf52
- pristine_git_object: 7b476c82a7710da6cf48f04558e830406899bfdb
- docs/Models/Components/VideoSourceJsonStatus.md:
- id: 8854f9b7a8e7
- last_write_checksum: sha1:3793b08f03201107cea42bfd46a2cc1ab36bf27c
- pristine_git_object: d50b129d279b6867be2f1c06b8812f392ab74dd5
- docs/Models/Components/VideoStatusJson.md:
- id: 4b24fcc22d99
- last_write_checksum: sha1:d596f1d52cd2d3fceefe374689f4374761f2c888
- pristine_git_object: 0f050b9ab2414f5ecf1be4e2fce0a03bf4bbcf0e
+ docs/Models/Components/VideoSource.md:
+ last_write_checksum: sha1:1a696ba5f6584a94ee92d4385d490b1728a5db4e
+ docs/Models/Components/VideoSourceStatus.md:
+ last_write_checksum: sha1:5d0ed46642dce3cfb2fe1cd24a420ea5f6b7bff3
+ docs/Models/Components/VideoStatus.md:
+ last_write_checksum: sha1:eccd480ee5206367459ecc71763be7191681cdca
docs/Models/Components/VideoTextTrack.md:
id: bfa275fa76c9
- last_write_checksum: sha1:bee4fbd3aff90de3733bbc0adfa48eac2f0e13a3
+ last_write_checksum: sha1:baaa149572ee03b76f046885c58dab8283b0d202
pristine_git_object: f9c0e5400ec79157ae3ee40d5b6fdaec76bef4a3
- docs/Models/Components/VideoTextTrackKindJson.md:
- id: a09c445504d0
- last_write_checksum: sha1:36440e8c2db0f991eaa37a8185289b0853dc5769
- pristine_git_object: 5e8cb03780ecb02db1e8131bed08517698991d24
- docs/Models/Components/VideoTextTrackStatusJson.md:
- id: 1d09f2833e4c
- last_write_checksum: sha1:0b5201839ee8d90987fa10f4d6092f2f01e46b37
- pristine_git_object: 44b3ed384d9f72df14179739bce7d46d88812c7f
+ docs/Models/Components/VideoTextTrackKind.md:
+ last_write_checksum: sha1:c88253f9f3b2b3b2a9386922cb2e456ebef62e27
+ docs/Models/Components/VideoTextTrackStatus.md:
+ last_write_checksum: sha1:102fa4d0a82783d1e8fe1a5684970eb57207c074
docs/Models/Components/VideoTextTracksResponse.md:
id: 977dc0b7d703
last_write_checksum: sha1:252f372122ce32dbf0fe3e37aa120c67b72138f4
pristine_git_object: a4e0c9b6e764925d28c9cb607e4031d235a90a13
- docs/Models/Components/VideoThumbnailJson.md:
- id: f914bb7ef2c6
- last_write_checksum: sha1:8723130b4afcc92f865467cf453725f7729d5c87
- pristine_git_object: c4ef44a4b509aa76d7157b806296cc1bc56947e3
- docs/Models/Components/VideoTypeJson.md:
- id: 2be97ec3ee8c
- last_write_checksum: sha1:39e91dc7431b8158401635f09c97570d143188b8
- pristine_git_object: f73dae4744d89a0e31aa0e763483f0d5efa09fa6
- docs/Models/Components/VideoViewJson.md:
- id: f70172ad482e
- last_write_checksum: sha1:81874c1c26832d658bf2013d4563cea07e589ab0
- pristine_git_object: 8c84c420063307977ea381c6b0fecfb858fe909b
+ docs/Models/Components/VideoThumbnail.md:
+ last_write_checksum: sha1:5cda9567319a2f80652e21e09ab6aa324efb2a14
+ docs/Models/Components/VideoType.md:
+ last_write_checksum: sha1:7c45f114b935c189b80bc274d1fe0d6cdc929872
+ docs/Models/Components/VideoView.md:
+ last_write_checksum: sha1:7ea6179e1f09fc4d7750459e9ddc7b17328bc33e
docs/Models/Components/VideoViewsPaginatedResponse.md:
id: 7ef4ab47de05
- last_write_checksum: sha1:2d325ee2d4335fef036f8fe2fb8917f379fcd209
+ last_write_checksum: sha1:72a20e4f4d062e0a47bdd60a5d93666117944acf
pristine_git_object: 5d222c62dcedf8ea5bc8d6df14734ff786dfe54c
- docs/Models/Components/VideoWarningCodeJson.md:
- id: e4035f77802e
- last_write_checksum: sha1:d18bfc0b67a2cd5057dc79515e4c56300c06cae0
- pristine_git_object: 266c21ec4a65d0dca56e69c67b58896980f983cb
- docs/Models/Components/VideoWarningJson.md:
- id: 55a1e36cde7c
- last_write_checksum: sha1:44d9b383eeceb77338f51d839ffb950aac6d9f5b
- pristine_git_object: a3d988e6dae0dac17dc452aa6191cef159d1b8b9
+ docs/Models/Components/VideoWarning.md:
+ last_write_checksum: sha1:6cf12496e0b1ea53546e0ae62ed3e5ee3ef3a60c
+ docs/Models/Components/VideoWarningCode.md:
+ last_write_checksum: sha1:35f9eb292c7b44a40297c91c42a01f9d5a99622a
docs/Models/Components/VideosPaginatedResponse.md:
id: eeea3e50eec0
- last_write_checksum: sha1:831bc4bfa5a5a6bbcce519b962962b0517f47f63
+ last_write_checksum: sha1:e3b1100a66128d5581ca45bc71160fe53c31c02e
pristine_git_object: 148f9b2e2c3ad78fdc22e58430fc52437c150e9b
- docs/Models/Components/ViewTypeJson1.md:
- id: bf5c73fa9a0a
- last_write_checksum: sha1:8e7c537b771edf4b9392ac16ee57ec450d13871c
- pristine_git_object: ed54ffc573777bc290ca8b0881764c6b83a9c51c
+ docs/Models/Components/ViewType1.md:
+ last_write_checksum: sha1:d19f4fe778f0c7d950b872ca28d4fa841ea09341
docs/Models/Components/VolumeDiscountThresholdType.md:
last_write_checksum: sha1:0a5130d845898dc84d004b9dfdec99cb024ad87d
+ docs/Models/Components/Voucher.md:
+ last_write_checksum: sha1:b19470cd2aa0dcf898aa2e0c4c184f81a688bec6
+ docs/Models/Components/VoucherCapacity.md:
+ last_write_checksum: sha1:f54051b44702e3d84cc71fa41f7c935807aaedeb
+ docs/Models/Components/VouchersPaginatedResponse.md:
+ last_write_checksum: sha1:a88061774a8cb8bd4c3216e9264caaf1c9e3d37a
docs/Models/Components/Webcast.md:
id: 3937c165318b
last_write_checksum: sha1:c432d77bf3b5b5eac99bd3c1a89d785895199549
@@ -5474,16 +5162,16 @@ trackedFiles:
pristine_git_object: 8513c0df9505f0a43916b52ab527b28a8fe12a52
docs/Models/Components/Weblink.md:
id: 437981a9bca0
- last_write_checksum: sha1:4562db4a2373a0ce4538cf028c59fef460961862
+ last_write_checksum: sha1:0b70f0fa676c7fd6325e12dc473ad3e35e96b8b5
pristine_git_object: b617a20aafef7baf2e7ae8eb9ca52b8a566e4c2e
docs/Models/Components/WeblinkListResponse.md:
id: afffb5656797
last_write_checksum: sha1:58191af6fd9505d7c5fb4257b76e28563f3e5734
pristine_git_object: 2a3bdcc228be42abc9b05c2e60cc657760248cde
- docs/Models/Components/WeddingDetailsJson0.md:
- last_write_checksum: sha1:8a4b8eeb877b46fcd6d6988867200db0fbb59a30
- docs/Models/Components/WeddingPartnerJson.md:
- last_write_checksum: sha1:1a07818797e915ed9718db4de177f62b009cc942
+ docs/Models/Components/WeddingDetails1.md:
+ last_write_checksum: sha1:ef4da07917fa81dc99d01b56cdef86a47b92a45c
+ docs/Models/Components/WeddingPartner.md:
+ last_write_checksum: sha1:a595fe91b433a94074fa1332c1ea95f57c5cb7b1
docs/Models/Components/WorkAddress.md:
last_write_checksum: sha1:465b421682ec6d7772e079e1e150aee66176298b
docs/Models/Components/WorkAddressAddressInput.md:
@@ -5516,14 +5204,12 @@ trackedFiles:
pristine_git_object: 42c20e6339a1120861a0f55df835d948eefad750
docs/Models/Components/ZeroAllOf7.md:
id: 45e2985cc6e9
- last_write_checksum: sha1:5ecbb74157d5759e2bc1b3bb499b1777ba0aa109
+ last_write_checksum: sha1:1d2450cdc6770a3428715a2a810a741419fc4f1a
pristine_git_object: e26e5f6c13cf0826dc2834df612ed184416327f4
docs/Models/Components/ZeroAllOf8.md:
id: 4e8a28a70225
- last_write_checksum: sha1:711e6608a4495a112fe552fc4079228ff1cdfc84
+ last_write_checksum: sha1:021ba5b54c37a797a68f4b023eee87301bb3edbd
pristine_git_object: 424bd7dd87bd3664d47b576e81090c2e3ef9bd6e
- docs/Models/Components/ZeroAllOf9.md:
- last_write_checksum: sha1:2ae7809024ce16332d7a80fb441964cb6513f5f2
docs/Models/Components/ZeroAnyOf.md:
id: d35142c492dc
last_write_checksum: sha1:ed331f95c735dc66a695ec50d220f7141e783b5f
@@ -5549,11 +5235,11 @@ trackedFiles:
last_write_checksum: sha1:32431b377e87d957078fbd4c9d0cb513adecdf19
pristine_git_object: 8950c46543563cafbe7b33498f73e019c74bd23f
docs/Models/Errors/ErrorResponse1.md:
- last_write_checksum: sha1:83d8917a678de89a5ef5dc86488b76e8cd3d6375
+ last_write_checksum: sha1:893316ee04b254020ebddab3d743efa467e1f969
docs/Models/Errors/ErrorResponse2.md:
- last_write_checksum: sha1:371073feed895ef26e26fbb96869764df7ff8778
- docs/Models/Errors/ErrorResponseJson17.md:
- last_write_checksum: sha1:f049dcf95acebbd366b1c05b7d09f605983ee09a
+ last_write_checksum: sha1:bba5c5c843cccf6faea9aa5e405680c5a517e698
+ docs/Models/Errors/ErrorResponseJson12.md:
+ last_write_checksum: sha1:c228dcb668ebe9d771b8090d521b0c450a6c78d7
docs/Models/Errors/SegmentsErrorResponse.md:
last_write_checksum: sha1:c2bfe94e458bb82fd97d8889de9c28b64d627870
docs/Models/Errors/ValidationCode.md:
@@ -5824,11 +5510,11 @@ trackedFiles:
pristine_git_object: 3925bd8954dcd953f99dc5377d925a48bb1a0c0f
docs/Models/Requests/CreateContactsRequest.md:
id: 1e7ce4c5d67c
- last_write_checksum: sha1:bb888065d90231c001562a37c27ba670d75382c7
+ last_write_checksum: sha1:d8af827969d4ac7b77629cefbe07adccabade605
pristine_git_object: 4141ec8ed6e9b4531e7318c8963206c99fceb6d2
docs/Models/Requests/CreateContactsResponse.md:
id: 8926e5357c22
- last_write_checksum: sha1:f70f9d42706f0545db3bf6dd2f04f5f0dca78740
+ last_write_checksum: sha1:0491d1873b3166181e54a022724197616f8cb9b6
pristine_git_object: 915441e9336eb1258b9d02c1743a29093085cc9c
docs/Models/Requests/CreateCurrencyConversionRateRequest.md:
id: ca55a846a301
@@ -6420,7 +6106,7 @@ trackedFiles:
pristine_git_object: 7f5220aea75854ee581ed7adfc4c7da35dc0a450
docs/Models/Requests/GetAttendeeByIdResponse.md:
id: 6fc63ec7db28
- last_write_checksum: sha1:2b54906a2bae2d0a7602548eedbbfa5b08d12a6a
+ last_write_checksum: sha1:0ef137ffffaf302bd618e74df8091d5b84319d59
pristine_git_object: 5ff1653fa519797fff42baaaf8803be8f57bef34
docs/Models/Requests/GetAttendeeCreditsRequest.md:
id: 14a2e6ccf156
@@ -6440,7 +6126,7 @@ trackedFiles:
pristine_git_object: e5154cdb80a9cc6942c2c7765e63498f0b0cfa42
docs/Models/Requests/GetAttendeeMessagesMembersRequest.md:
id: 56d7534d6ec5
- last_write_checksum: sha1:ee8f998c7e8b10b47bffd9ca9678e65a29ac2c94
+ last_write_checksum: sha1:fd25018491d26a938ed7239036809d9fadfad61e
pristine_git_object: ac4bbb69229f2296d0c836037f1bcf24d0460080
docs/Models/Requests/GetAttendeeMessagesMembersResponse.md:
id: 7b453e3521fa
@@ -7444,7 +7130,7 @@ trackedFiles:
pristine_git_object: 49a5ce937ddeb23c0fbfa2266790d8d2fb3ee9c6
docs/Models/Requests/GetTravelProposalBidResponse.md:
id: 8681beef46ad
- last_write_checksum: sha1:96c5c509a489e1a7795b414b4e3d2c551673470c
+ last_write_checksum: sha1:5e7d01f92db3e4cca8fd3322220ef89092fbc8d6
pristine_git_object: d6fb57547898c877ed42faff73afebc4bbc10dce
docs/Models/Requests/GetTravelProposalRequest.md:
id: 6d2422b78789
@@ -7484,7 +7170,7 @@ trackedFiles:
pristine_git_object: a511b88725d86767afb0be0f0286c4291a242fc0
docs/Models/Requests/GetVideoViewsRequest.md:
id: 14adc10b0769
- last_write_checksum: sha1:83fd4ca39999a0cf10a0aa9f2866eced77a76ce2
+ last_write_checksum: sha1:5e0e37ac3d004418c48665616c7848fce680b09c
pristine_git_object: 5210668aa0ee518f41dcee4fe3507875cf5c66b8
docs/Models/Requests/GetVideoViewsResponse.md:
id: 1dc703322745
@@ -7752,7 +7438,7 @@ trackedFiles:
pristine_git_object: 4cd5ce13e34c59f72c578c28de864a585fb0abc0
docs/Models/Requests/ListDurationsRequest.md:
id: 367f3271cb55
- last_write_checksum: sha1:694f7edf448812c9fcf874b21040968ecfb819d3
+ last_write_checksum: sha1:e72db27128391f2853f091d5dae30d52c2c049e0
pristine_git_object: 0f500808781fd6a601bac9bc63c4b9bba418bde4
docs/Models/Requests/ListDurationsResponse.md:
id: c411d4576816
@@ -7790,6 +7476,18 @@ trackedFiles:
id: 1f5c7a84e541
last_write_checksum: sha1:8f1f2a62a7eb2eefc63e866ad2d158c13985b4fe
pristine_git_object: 7371a263294bf7231f9650e81b6db1f6918ef9d6
+ docs/Models/Requests/ListEventVoucherAttendeesRequest.md:
+ last_write_checksum: sha1:2ff7bffc8624782dde9e12289c58bb745bd1355c
+ docs/Models/Requests/ListEventVoucherAttendeesResponse.md:
+ last_write_checksum: sha1:614d9ebccd119a98b3b3e8876ddeff9e04538160
+ docs/Models/Requests/ListEventVouchersPostFilterRequest.md:
+ last_write_checksum: sha1:813e55a45be97666629ed32323eead1327108a34
+ docs/Models/Requests/ListEventVouchersPostFilterResponse.md:
+ last_write_checksum: sha1:980ecf1907135ed711945c0d2fc9094df85760b0
+ docs/Models/Requests/ListEventVouchersRequest.md:
+ last_write_checksum: sha1:e2c831ca608e2de34ed0325f0d8d64a37e8d4e31
+ docs/Models/Requests/ListEventVouchersResponse.md:
+ last_write_checksum: sha1:2ddc7f570e352f44c38bf6890c6ff416b461e9fa
docs/Models/Requests/ListEventWeblinksRequest.md:
id: 44994d80351d
last_write_checksum: sha1:307930aa5bdd8a480da765e779c3ebc9175243c2
@@ -8236,7 +7934,7 @@ trackedFiles:
pristine_git_object: 1786898eeeed59ed9a187fb30946aeb6682e4ced
docs/Models/Requests/ListVideosRequest.md:
id: 4055e7762de1
- last_write_checksum: sha1:2102f57f020df9e9448128cdb865a153a6db6487
+ last_write_checksum: sha1:de82d762ad564ef469e7b3af23f983a919fde905
pristine_git_object: 2c3838ee50e3b1cb25ae4b0c307018892e271b91
docs/Models/Requests/ListVideosResponse.md:
id: c965fd523ab6
@@ -8308,7 +8006,7 @@ trackedFiles:
pristine_git_object: 4b2ece85789b7885b1c90f9162be8bb3ca59c692
docs/Models/Requests/PatchContactsResponse.md:
id: be01ca264d7e
- last_write_checksum: sha1:b231e37ddbe0519b65fa256a96617691d7e9d4e6
+ last_write_checksum: sha1:0c644c0731c3abc19ae055d57d6cf13362b26638
pristine_git_object: cfc8918cff6d94ad23b43890005d5e73bf68823e
docs/Models/Requests/PostBadgeRequest.md:
id: 1943f1f59804
@@ -8512,7 +8210,7 @@ trackedFiles:
pristine_git_object: 3d2a5d831d0a7d898023fc4c4c0d62ceac3d72ae
docs/Models/Requests/UpdateAttendeeResponse.md:
id: c1ada44c9426
- last_write_checksum: sha1:c230944eafbc2fad159a35aaf5e7d71756300d6e
+ last_write_checksum: sha1:70e1e2bec3427103c62c472fedb3c0215434337f
pristine_git_object: 8cf7313e9555975ae6cdc38c72be59c9bba1089a
docs/Models/Requests/UpdateAttendeeSubscriptionStatusRequest.md:
last_write_checksum: sha1:4f51cf9e3eea9872296eff04f5846fdfdbb68e0a
@@ -8596,7 +8294,7 @@ trackedFiles:
pristine_git_object: 744268f742d0ebd29846d910b374873b3ebafd4e
docs/Models/Requests/UpdateContactsResponse.md:
id: 2d3189328f39
- last_write_checksum: sha1:81b7697fb883b7fe389e5ff5450288b36c8fedb0
+ last_write_checksum: sha1:424ec5aabe13d7422c62b7eb1813b0dda8edc506
pristine_git_object: ac23ab8557aeabdb8c0304eab24c442e946f898d
docs/Models/Requests/UpdateCurrencyConversionRateRequest.md:
id: 375962dd99ba
@@ -8912,7 +8610,7 @@ trackedFiles:
pristine_git_object: 08cb1a25ddcbc42f372ec5f5b1cc8469803431bc
docs/sdks/appointments/README.md:
id: f122535fcc9f
- last_write_checksum: sha1:3163727f523cb4f88d16f925cd934349a7d43d97
+ last_write_checksum: sha1:9b344f98a7f79552fdf617eca2a3f0ea7363eb2d
pristine_git_object: 40505f4ea4c5a9f32dbd07df446b6215eadf4dec
docs/sdks/attendeeactivities/README.md:
id: ffb26672cefc
@@ -8928,11 +8626,11 @@ trackedFiles:
pristine_git_object: c05b58f290ecf7fb80ec0b61ac47843d61aa0118
docs/sdks/attendees/README.md:
id: 99bffbf21091
- last_write_checksum: sha1:0ec2128f0e01583b76dddbfb80ddc94edc39c950
+ last_write_checksum: sha1:b9c3795435d7d02c012a5a55130c21a03fe23c7e
pristine_git_object: 309b429b5efc21e6dac3eda810410a5db0155fbb
docs/sdks/audiencesegments/README.md:
id: a2ccf2d6ee02
- last_write_checksum: sha1:355475ad2115bc24ca484291e2cdb01a7d454b94
+ last_write_checksum: sha1:1930d87374f23371785f5163d6f040f98c08c2ad
pristine_git_object: ca970b43ca92e0cb8eddf9d0f04a072fcdee273b
docs/sdks/authentication/README.md:
id: 45be241adfc3
@@ -8952,7 +8650,7 @@ trackedFiles:
pristine_git_object: 53a91b2b68035039b16cd37290f8d218462eab15
docs/sdks/bulk/README.md:
id: fa4bd7a4682a
- last_write_checksum: sha1:cd430bcda446b352517f7476a4ceab3b10afdbd9
+ last_write_checksum: sha1:0f13df3a85efe4a967994a13750efa618807a0a3
pristine_git_object: 4d706fcb345914cfb1fa370fcb0fec8fae121e10
docs/sdks/campaigns/README.md:
id: 18dcc3c717ca
@@ -8968,11 +8666,11 @@ trackedFiles:
pristine_git_object: 3397ed255bb7354ef7fa94e683e5f44f681ad3c0
docs/sdks/contacts/README.md:
id: 4174fb287a81
- last_write_checksum: sha1:36a78752ba340e9e05daf15be3fe53c69bcfbc79
+ last_write_checksum: sha1:b23fdf353e96b62d732c609a6bc04ec8f703f6f3
pristine_git_object: e14675ab6c00a66834afb5eac3323003eb2cf9c7
docs/sdks/customfields/README.md:
id: a205cef73249
- last_write_checksum: sha1:131bf66fac6ab42147bf71befe652a141788466b
+ last_write_checksum: sha1:7c42b35978cb707cd88a87dc2011b51f06108f3c
pristine_git_object: 3eff273d1ad993bed5df5562e4ebb3b9ba361e0f
docs/sdks/discounts/README.md:
id: "000723261694"
@@ -8996,7 +8694,7 @@ trackedFiles:
pristine_git_object: d240e20e73d3bca557fd79bfd19dd14b79beeffc
docs/sdks/events/README.md:
id: cf45a4390b9b
- last_write_checksum: sha1:a8cd0abb506b56020886d6084dcdcc60b359a4b5
+ last_write_checksum: sha1:89e8873e59eb4b2def97fe2a8a8841b8a5705d28
pristine_git_object: 850a5f07f1d8f2b7538ae8fa2084170534d7489a
docs/sdks/eventsplushub/README.md:
id: 5f184d5bdfcc
@@ -9008,15 +8706,15 @@ trackedFiles:
pristine_git_object: 2c574599b73113a5907f3b8930afa57eff55b6a1
docs/sdks/exhibitor/README.md:
id: cb0578099210
- last_write_checksum: sha1:4f00bcb4517aa01be914daf3a7e6976dfe7e5f61
+ last_write_checksum: sha1:18e28a88ce40720c0741040bfebf1bc302a7c1bf
pristine_git_object: 1074fee30b94d8183c83575f07b3da433ff94a28
docs/sdks/exhibitorcontent/README.md:
id: 7cecd37f6b66
- last_write_checksum: sha1:149f4d3250a98f1a6aa11e222167151fd10da532
+ last_write_checksum: sha1:dd8456915e0dceb509d41050b475238e963783e7
pristine_git_object: 4dae9b04bb1569fa2a7606b625358fa1530e884b
docs/sdks/exhibitorteam/README.md:
id: f5b7c80d738e
- last_write_checksum: sha1:49f3d2c3d034e342c74e3874f8b55cc1093fb4a4
+ last_write_checksum: sha1:288c1323919ec9c78ffce1f3b0b3a96489be1645
pristine_git_object: 370489e7b9590497cefcf4fd8ca3639fd60ffcf9
docs/sdks/file/README.md:
id: 2e0e7ec90c9f
@@ -9028,7 +8726,7 @@ trackedFiles:
pristine_git_object: 226634479fc1c80c5445e0abd3906614f5ca218a
docs/sdks/housing/README.md:
id: 23d65d817ab8
- last_write_checksum: sha1:d6edc4d43dfda840e970fc0908d8f4484a369a0f
+ last_write_checksum: sha1:a6914f6206a725d7ca74929f012165376c20b2fc
pristine_git_object: 4455010cbde3a3837c5ca2b707afac4aae2ac717
docs/sdks/housinghotels/README.md:
id: d04ff5412c59
@@ -9040,7 +8738,7 @@ trackedFiles:
pristine_git_object: e22b3188b967a497c5095aff8f03cab0310aaf43
docs/sdks/meetingrequest/README.md:
id: 4d8d5f5fd977
- last_write_checksum: sha1:b93a8cda53d3bb4d87d85f8a8f3e88ef411b45d2
+ last_write_checksum: sha1:cb1d5e29ca6471d698fa27c89e941577aa13dc3e
pristine_git_object: 2b7a21d84cc4510d71685da566e69b4eb2d138b3
docs/sdks/processform/README.md:
id: 0d23c161e66c
@@ -9048,7 +8746,7 @@ trackedFiles:
pristine_git_object: c8bdd1f4a737c50d47cb153624d0aee700aec326
docs/sdks/proposaldraft/README.md:
id: 243fdf3f28f8
- last_write_checksum: sha1:433f7090f6a10a8dc48ebe62e66d24532e95cb4a
+ last_write_checksum: sha1:50f9826704257375e934e826572129bd839721fa
pristine_git_object: cee75e84cd623f015d9c3fb549db5d3e12962a49
docs/sdks/rfpadditionaldetails/README.md:
last_write_checksum: sha1:b7e6e84974a4d90ec31709c31f9b303a67dfc6d1
@@ -9064,7 +8762,7 @@ trackedFiles:
pristine_git_object: 8b49a19b29d465a54b2f3b40e42fd0464fc5c6fc
docs/sdks/sessions/README.md:
id: 57ad62844f79
- last_write_checksum: sha1:cf4b5ec5d70090e73957dcaa137ccf7a0a2d7d76
+ last_write_checksum: sha1:57defb8328640972ee8cf25b792c4a88d7562f53
pristine_git_object: 97a3d69aabea91b5ecf0a65b82762f32760db6c7
docs/sdks/signatures/README.md:
id: d0ea24deff8f
@@ -9072,7 +8770,7 @@ trackedFiles:
pristine_git_object: 883589e206ca36c4776e39c35bbfc6aaa40c40d1
docs/sdks/speakers/README.md:
id: 21a0d65de4a5
- last_write_checksum: sha1:e8d3053d6bece9b123e24b65a8d0d3749336eea7
+ last_write_checksum: sha1:78b496c94c676de9cb3b529ee6bda51a8d42ecd7
pristine_git_object: 819fb5889b271959f7900ff5435a3be8f8154843
docs/sdks/surveys/README.md:
id: b7f48111aedf
@@ -9100,11 +8798,11 @@ trackedFiles:
pristine_git_object: ae4345de8bbb2321bc1f484c5b5b9f21568a81f3
docs/sdks/userscim/README.md:
id: 50529a579425
- last_write_checksum: sha1:2b9b1ced33e75b88d4e98e70ae82a5effac5413b
+ last_write_checksum: sha1:b3c2b90c715e9b5226a43d0aaad6fc8beef6183b
pristine_git_object: 841ab56e8b0a3f4dc1b0143c61e0bf9a005a690c
docs/sdks/video/README.md:
id: 0b01dca84f9e
- last_write_checksum: sha1:68b174659cbd842f17f0038a69b4f0bcd838d313
+ last_write_checksum: sha1:509436113dd3c089cca52adfc8c60ed8c606f3d2
pristine_git_object: 52334611d1a78d4915e1491bcc5a5e964a8b0a16
docs/sdks/webcasts/README.md:
id: c8f61e26dc11
@@ -9116,7 +8814,7 @@ trackedFiles:
pristine_git_object: ef3195af86a7d6ef1e34296c380fd52d85b696fd
src/Cvent/SDK/Appointments.cs:
id: e0ebdc9e2181
- last_write_checksum: sha1:1a4a1b683d0586da1e7da731454aeeb92a879aa6
+ last_write_checksum: sha1:ab07e92116af5e4b01971ff7b55820e42964d5e4
pristine_git_object: 6f5dc4d002c9657af0fadfced083a64502087469
src/Cvent/SDK/AttendeeActivities.cs:
id: a940f266c449
@@ -9132,11 +8830,11 @@ trackedFiles:
pristine_git_object: bad6c37a004676ea369dedb8042432f0aeee6a00
src/Cvent/SDK/Attendees.cs:
id: 32949bd964be
- last_write_checksum: sha1:cb0b63096d0218a55cd998042484f93ab14426d4
+ last_write_checksum: sha1:e84daad0657fcf0f093fb709d590ad8fd8736cd2
pristine_git_object: a3cd526a9a86ef8600b77fe5700ec9462a16157c
src/Cvent/SDK/AudienceSegments.cs:
id: 8ea605bfa719
- last_write_checksum: sha1:8b1cd673f8447369893056ca243ff34cb183773a
+ last_write_checksum: sha1:56af3b9b359a96da50cd689e6d5bc92c6f698d3f
pristine_git_object: cd663f188cf769273acee47bf7512632946b0a54
src/Cvent/SDK/Authentication.cs:
id: f90a858273bd
@@ -9156,7 +8854,7 @@ trackedFiles:
pristine_git_object: f3d3768b336679e9ba7578ed51e14fe50a8365de
src/Cvent/SDK/Bulk.cs:
id: ac2ca01debc8
- last_write_checksum: sha1:9918d7634afbb0d6ccb7e8704b3d4e0620af927e
+ last_write_checksum: sha1:610336b4a08f3d8e9bcf2326c5c5e5e10150aa41
pristine_git_object: 91dd13b7d76cfc0f4f7cc59a924879f8f92b1d9b
src/Cvent/SDK/Campaigns.cs:
id: f425e065b945
@@ -9172,7 +8870,7 @@ trackedFiles:
pristine_git_object: 79bd35e8a4f89ac9953881c72db586a129c4fd1e
src/Cvent/SDK/Contacts.cs:
id: 1e49de62cc63
- last_write_checksum: sha1:bfef23b2b50f2f2e19cc60548131d8083eede472
+ last_write_checksum: sha1:542ee26a49c09b18e68300d16bf420b1f4355761
pristine_git_object: 6f1612d7adafe2500131816d2e7a9a8b61b1d7ec
src/Cvent/SDK/CustomFields.cs:
id: a3c3662bd8cf
@@ -9180,7 +8878,7 @@ trackedFiles:
pristine_git_object: 977cd7381c7598682830d6e4a64a85cb14130b98
src/Cvent/SDK/Cvent.SDK.csproj:
id: 7a55759bc2f0
- last_write_checksum: sha1:163df9437f4c0d1b581c881ace5028ea29bbe9b6
+ last_write_checksum: sha1:faaeaf32623b25b2712299c1d3f8208c83737f3f
pristine_git_object: 711013944bc0505858b0b7cf177f166071b47593
src/Cvent/SDK/CventSDK.cs:
id: f7e1ad22cd8f
@@ -9212,7 +8910,7 @@ trackedFiles:
pristine_git_object: a8b681cf4ef2300fc3896005e04884f778619289
src/Cvent/SDK/Events.cs:
id: b96dbb23cc9b
- last_write_checksum: sha1:30b4dffe6513833035c33af392e506183921da62
+ last_write_checksum: sha1:239f6264fe18a64a4e564a19b513ecc090f7141a
pristine_git_object: ff16db101200573206038eda60add74607295adb
src/Cvent/SDK/EventsPlusHub.cs:
id: cc332d7b024a
@@ -9220,11 +8918,11 @@ trackedFiles:
pristine_git_object: cbbe461eaabc670bdaad49003db0c00f17112f2d
src/Cvent/SDK/Exhibitor.cs:
id: 944b91916ecc
- last_write_checksum: sha1:a0a9d96138b89366ac48f8251561f43ac70b68bc
+ last_write_checksum: sha1:8239c02ef8888d7d09bdf9d6fb6f5274f80ef214
pristine_git_object: 72e14329eb7c66548f48d2a2b185314a1c17b368
src/Cvent/SDK/ExhibitorContent.cs:
id: bbd1732a6848
- last_write_checksum: sha1:e81d1baf16291d5db3856ff5856ccfe274d350ae
+ last_write_checksum: sha1:be3cb507c29ca1b21d183ba43cd689d0bb9d2c23
pristine_git_object: 24e681a649a1cff2588a43edda908c0f4e3a27a7
src/Cvent/SDK/ExhibitorTeam.cs:
id: 4f989ed020c9
@@ -9244,7 +8942,7 @@ trackedFiles:
pristine_git_object: 1937b5a9d23d666c998441dff6dfeb35f548e5a6
src/Cvent/SDK/Hooks/OAuth2Scopes.cs:
id: ea272e98d50c
- last_write_checksum: sha1:6fc86fad5b2c8ced4ac0034178e69838af5922c1
+ last_write_checksum: sha1:fa8990e76a99c3dc086f0df0b71b22ed96e90cc1
pristine_git_object: 55a8b501e50769ad517eb3b3fb5ed1cafcd038cc
src/Cvent/SDK/Hooks/SDKHooks.cs:
id: 0038e747490d
@@ -9256,7 +8954,7 @@ trackedFiles:
pristine_git_object: e3ad1ac7b4dd624040e3f30514dfffb4e2b94155
src/Cvent/SDK/Housing.cs:
id: a10cf2ffbc7c
- last_write_checksum: sha1:3523c232cecd72660e0e71f6dd9b081c0491426a
+ last_write_checksum: sha1:33bca43217427ce8396e3710312d27507f9e3249
pristine_git_object: 26397f09d75ba9d69843a3b969c292ee2407ae6d
src/Cvent/SDK/HousingHotels.cs:
id: 9249b2b9a6b5
@@ -9268,7 +8966,7 @@ trackedFiles:
pristine_git_object: dfcfb0f9b1c88569e9f6110dbee82dc25ff538ee
src/Cvent/SDK/MeetingRequest.cs:
id: 5f343c314bf6
- last_write_checksum: sha1:35a8d09af039759f79b6f0b8a631ebfb5fc39ad2
+ last_write_checksum: sha1:f9cb63dd3cef4b32d58e4cb02512cab93c542587
pristine_git_object: ab4d871c869ae435b0148438a074c626d5bf7495
src/Cvent/SDK/Models/Callbacks/CreateContactHookContactTransactionCallbackResponse.cs:
id: bfa3f73d3233
@@ -9286,12 +8984,14 @@ trackedFiles:
pristine_git_object: 5fdb3303ef128d161371aa79f731b5ad7d620b6e
src/Cvent/SDK/Models/Components/AccountBudgetItemListResponseJson.cs:
id: ac5cd2b61e49
- last_write_checksum: sha1:cace196dd0460c1515ace648506a2618a04c82fd
+ last_write_checksum: sha1:5a60ea2fc4284070bc7024b322c17ba287534843
pristine_git_object: 5e0f7e114806c5301226eb5443c81b975b44c636
src/Cvent/SDK/Models/Components/AccountBudgetItemsPaginatedResponse.cs:
id: a63268c177fa
last_write_checksum: sha1:624258bd6b4f2bc64f45eeaafc4edf98ec61bdee
pristine_git_object: 464af42f0c8134f898ff68861303d589dfbc7556
+ src/Cvent/SDK/Models/Components/Action.cs:
+ last_write_checksum: sha1:44d416d06cedf8d675d1c93a9562c2fd9f29f137
src/Cvent/SDK/Models/Components/ActivityAdJson.cs:
id: 0d0b31605549
last_write_checksum: sha1:a38b7baa576304234d33517acc79ded6a33ffade
@@ -9433,57 +9133,45 @@ trackedFiles:
last_write_checksum: sha1:930a740839338e3ff6223a7022e95fadad4edb95
pristine_git_object: b60d73f82512f146eb5aa8e3e70fadb5ccd6c696
src/Cvent/SDK/Models/Components/AdditionalChoice.cs:
- last_write_checksum: sha1:8f048453efe135bd310d00aadcbfdbed09295760
- src/Cvent/SDK/Models/Components/AdditionalChoiceJson1.cs:
- last_write_checksum: sha1:708e874aa94ce1f871c2482121c25b5bd54f5e79
- src/Cvent/SDK/Models/Components/AdditionalChoiceJson2.cs:
- last_write_checksum: sha1:9a89d95e45aae295f9df2eff7398a503cb89d7a2
+ last_write_checksum: sha1:1f1849b74c2d50c4a11966cc78b7e82716b4c143
+ src/Cvent/SDK/Models/Components/AdditionalChoice1.cs:
+ last_write_checksum: sha1:8e751ae7a9764887ee928b55ccb0cf3bf2c51627
+ src/Cvent/SDK/Models/Components/AdditionalChoiceJson.cs:
+ last_write_checksum: sha1:ae3e0da27459ee6adfd9d9df0ff99b017b7d8bb0
src/Cvent/SDK/Models/Components/AdditionalGuestFeesJson.cs:
id: abb97fa92f1d
last_write_checksum: sha1:87148f476531182d03d50fbc21bd65a10c460c68
pristine_git_object: c9dd1f4d8d1f92fbee632e7073dd8ed55d5fef3e
+ src/Cvent/SDK/Models/Components/Address.cs:
+ last_write_checksum: sha1:361ddb311fa9b2023a5b12e30490efa5ae4aff70
+ src/Cvent/SDK/Models/Components/Address1.cs:
+ last_write_checksum: sha1:e1f666f615bd02839c0a9a6144f5772c9e7927e0
src/Cvent/SDK/Models/Components/Address11.cs:
- last_write_checksum: sha1:00fdad615e5a306ae1325fb08e4d3d042717ea80
- src/Cvent/SDK/Models/Components/Address12.cs:
- last_write_checksum: sha1:47679629af5e6bd91d972233f04077ff253abd1b
- src/Cvent/SDK/Models/Components/Address2.cs:
- last_write_checksum: sha1:f80edc9b44b88b975a6a2349776654513c71cd9e
+ last_write_checksum: sha1:c9e1649375b618a702d2d47d094651b9d1e06332
src/Cvent/SDK/Models/Components/Address3.cs:
- last_write_checksum: sha1:ca6b24463e8e84eba155caed94eb836d95f988f1
+ last_write_checksum: sha1:e922dbe39b901152e303dc5461270ad73c567bc1
+ src/Cvent/SDK/Models/Components/Address4.cs:
+ last_write_checksum: sha1:cc7b98924adcf258e9291109e6661cd4659870fe
+ src/Cvent/SDK/Models/Components/Address5.cs:
+ last_write_checksum: sha1:68c6d6e560de07438f328289d95f05d252b70239
+ src/Cvent/SDK/Models/Components/Address6.cs:
+ last_write_checksum: sha1:51fc2cda3dbf41b76c673646a2e6e12ce976580d
+ src/Cvent/SDK/Models/Components/AddressInput.cs:
+ last_write_checksum: sha1:e6b041a60d71e90fa9106aef38bbfa0da4df066c
src/Cvent/SDK/Models/Components/AddressJson.cs:
id: 880605eb68e0
- last_write_checksum: sha1:212fa5252086a7c088df0b1870e50772b661e5b6
+ last_write_checksum: sha1:a2d4b9bf745fa323d4b434d68ca82ee97774e305
pristine_git_object: 1b1a269babf9eaa566f92586f436628005b920be
- src/Cvent/SDK/Models/Components/AddressJson0.cs:
- last_write_checksum: sha1:b10df0890723c220f63037adbbddfe8528fc9818
+ src/Cvent/SDK/Models/Components/AddressJson1.cs:
+ last_write_checksum: sha1:6b55071cb595ca2568ef27497be5d72f07dc39dd
src/Cvent/SDK/Models/Components/AddressJson2.cs:
- last_write_checksum: sha1:2d848cdfeec959e3fd77d32d6ca62115bba92977
- src/Cvent/SDK/Models/Components/AddressJson3.cs:
- id: 83cfe547726c
- last_write_checksum: sha1:b9526eadc57a94ed64a3114395ca44d6910b1eb5
- pristine_git_object: 6a51b135b815417a1000f129954a2a8a58517efb
- src/Cvent/SDK/Models/Components/AddressJson4.cs:
- id: 2bdc69183d48
- last_write_checksum: sha1:f1d03f965605eae015c97b99ed19bfee5beebb05
- pristine_git_object: 2b7c0435842a75fdf2bb7b5fee0e34ffe285c784
- src/Cvent/SDK/Models/Components/AddressJson5.cs:
- id: f2f9793ea05b
- last_write_checksum: sha1:9e6ea0cfa8160c14e1ee32c20f7a2437dcc241d6
- pristine_git_object: f0766774e8dc9d171a378e7fdc3cd10caa7e7af1
- src/Cvent/SDK/Models/Components/AddressJsonInput.cs:
- id: 6a04c1d4edbe
- last_write_checksum: sha1:c2d229ceb423612782de2bccf488843cd9b415e1
- pristine_git_object: 7642d2a6218afae4f0d5dbdf52c6d344a7649d5a
+ last_write_checksum: sha1:5afbcfcd6a54d6180ecb6464dc459dce0d801be1
src/Cvent/SDK/Models/Components/AddressType.cs:
last_write_checksum: sha1:34bc942c12d397f4a0a7da525d7b07106d6c9741
src/Cvent/SDK/Models/Components/AddressTypeJson.cs:
id: 23932266cd3e
- last_write_checksum: sha1:1ee43df98daaa866e131a1de3e83af4803a64af9
+ last_write_checksum: sha1:b138114694cac6a25d2b1adf016a425ec85f8715
pristine_git_object: 8cbc3d161cf59bf756bb239469054e982da9c1f9
- src/Cvent/SDK/Models/Components/AddressTypeJson1.cs:
- id: c932537cae33
- last_write_checksum: sha1:1bc03177844239ca8a27bf6695b497b8f54143c9
- pristine_git_object: 6567d06a3b20220bfc71c4f725cd642742cf62d5
src/Cvent/SDK/Models/Components/AdmissionItemsPaginatedResponse.cs:
id: 6b440636d000
last_write_checksum: sha1:6606ee24ec4fcea50dafc3834c18f28c0080e5b2
@@ -9512,10 +9200,10 @@ trackedFiles:
pristine_git_object: cbdc1175013a2e57665c7b695dd9dc20612981ad
src/Cvent/SDK/Models/Components/AgendaItem1.cs:
last_write_checksum: sha1:d8663141f255fab10d7d6cf6b2af4c04afa3460b
- src/Cvent/SDK/Models/Components/AgendaItemSetupJson.cs:
- last_write_checksum: sha1:f6418b7599b1d8072c52f7ad558261a57899310a
- src/Cvent/SDK/Models/Components/AgendaItemTypeJson.cs:
- last_write_checksum: sha1:c7eeca561c9d94abd49ebfbf3159ce0cf945f00d
+ src/Cvent/SDK/Models/Components/AgendaItemSetup.cs:
+ last_write_checksum: sha1:dfe60b090274d5951511a43393400713869b551d
+ src/Cvent/SDK/Models/Components/AgendaItemType.cs:
+ last_write_checksum: sha1:25c1cd6604ac1c22d718bcfc86d84b65926aa42c
src/Cvent/SDK/Models/Components/AggregatedCostJson.cs:
id: 11442745dadc
last_write_checksum: sha1:67232b0c1d7d6ab02ff7feb19b56017fcc3a0f67
@@ -9564,10 +9252,8 @@ trackedFiles:
last_write_checksum: sha1:bf75ac6ddb441a7f5f2a5d778524831fd686f956
src/Cvent/SDK/Models/Components/AlternateTravelPaginatedResponsePaging.cs:
last_write_checksum: sha1:98883c458d29ea1a9a8f1b974b57c5986b0f5c16
- src/Cvent/SDK/Models/Components/AmenityTypeJson.cs:
- id: ab3f8e9288b3
- last_write_checksum: sha1:c813bf687f58a99f11479289d9989462f3030d16
- pristine_git_object: f5f599c92f8844a84370d6a46196480e4308d334
+ src/Cvent/SDK/Models/Components/AmenityType.cs:
+ last_write_checksum: sha1:cd975ce8a98952e2b89fd50be4b5b02454ec8c2c
src/Cvent/SDK/Models/Components/AmountType.cs:
id: e154d452e4a9
last_write_checksum: sha1:f0b4502c887a7b9ba92b71ddea6b5f6272a2c8da
@@ -9719,19 +9405,15 @@ trackedFiles:
last_write_checksum: sha1:1906f6d6be221708c5bf8c277ba9980f431dd1dd
pristine_git_object: 23e3a673e3b19b047bfd2824e6f8a1d965fe6d24
src/Cvent/SDK/Models/Components/AppointmentWithQuestions.cs:
- last_write_checksum: sha1:2692cab750f7a326f6b98ab38ac2bb7a30804452
+ last_write_checksum: sha1:2f4322a21677367c11faf10fe4e8d2adb1733383
src/Cvent/SDK/Models/Components/AppointmentWithQuestionsLocation.cs:
last_write_checksum: sha1:0840db56e4212ecbab9b76ff00f1bae3615b6652
src/Cvent/SDK/Models/Components/AppointmentWithQuestionsType.cs:
last_write_checksum: sha1:5d95802259a5ec5dc86cd68aeae1a76e4703d962
- src/Cvent/SDK/Models/Components/AssetLocationJson.cs:
- id: cb2a9a351188
- last_write_checksum: sha1:b52900c1c23cca501aa8e05a9116650f831ff3b6
- pristine_git_object: e86d7d9b45512c2c1f149e4aab753bbd4a9a75ff
- src/Cvent/SDK/Models/Components/AssetLocationJsonInput.cs:
- id: 04c6df199088
- last_write_checksum: sha1:f53ba8dbd6374fd0be693190dd3cf8dc860c1bb2
- pristine_git_object: 5a19bf33a503765dac23c20176c42b5300064e9d
+ src/Cvent/SDK/Models/Components/AssetLocation.cs:
+ last_write_checksum: sha1:b9b7ed3c146f495d5238c6a4d75089efe158c667
+ src/Cvent/SDK/Models/Components/AssetLocationInput.cs:
+ last_write_checksum: sha1:91057750994ebd25693ccbbe661d390a31a7a40b
src/Cvent/SDK/Models/Components/AssociatedRegistrationPathJson.cs:
id: 4d2e418b0412
last_write_checksum: sha1:ebac403249d93b66f9164504290a92e4f6d7c6e3
@@ -9740,16 +9422,22 @@ trackedFiles:
id: 1618fd2dc5a2
last_write_checksum: sha1:e5a90b3b7a7ca9819718c24898c4438c9ff339c0
pristine_git_object: c6b4e1ded15d13ab9bb26da03fecc91df773198e
- src/Cvent/SDK/Models/Components/AttachmentSourceJson.cs:
- last_write_checksum: sha1:cdf239507921c0616c09f8d7f77bc2c27e60696b
- src/Cvent/SDK/Models/Components/Attendee1.cs:
- last_write_checksum: sha1:3b1fcb24ad5af7559c1c650a5266e9fd1224095a
+ src/Cvent/SDK/Models/Components/AttachmentSource.cs:
+ last_write_checksum: sha1:74c3815269008ef5877802527b053cf2c94c6928
+ src/Cvent/SDK/Models/Components/Attendee.cs:
+ last_write_checksum: sha1:fd0c74760b18e7924305b752af7fda7a3a1a40fc
src/Cvent/SDK/Models/Components/Attendee11.cs:
- last_write_checksum: sha1:aab1f925496031b349744099c701ef81bee4cf59
+ last_write_checksum: sha1:49360455825d605af843173e2872829d2f49946a
src/Cvent/SDK/Models/Components/Attendee12.cs:
- last_write_checksum: sha1:88ec5ea157b015860c5aa8777878c7f1fef45bc5
+ last_write_checksum: sha1:25c4d73dee550eb060c50a4054df720a470457b2
+ src/Cvent/SDK/Models/Components/Attendee13.cs:
+ last_write_checksum: sha1:f107293c02f70a99bf76aa865137da79743b18d5
+ src/Cvent/SDK/Models/Components/Attendee1Event.cs:
+ last_write_checksum: sha1:bc95d096847bebd46275a64386a6708bfd1ddb4e
+ src/Cvent/SDK/Models/Components/Attendee1Lookup.cs:
+ last_write_checksum: sha1:8e76330d1b00c2fefcd6a179d1e9185fc5859dd3
src/Cvent/SDK/Models/Components/Attendee2.cs:
- last_write_checksum: sha1:46b499d654c3bba547b05f21fa1dc49162cfd3ea
+ last_write_checksum: sha1:02d614b7a191504386e1f047eea5386d930a162f
src/Cvent/SDK/Models/Components/Attendee3.cs:
last_write_checksum: sha1:d41c5a0a35673765af801af55de9e24abd2df751
src/Cvent/SDK/Models/Components/AttendeeActivitiesPaginatedResponse.cs:
@@ -9772,12 +9460,12 @@ trackedFiles:
pristine_git_object: 4901b021a5985921defa9defd33cf17950d85c1e
src/Cvent/SDK/Models/Components/AttendeeAddBulkItemEventJsonErrorResponse.cs:
id: c1030df0b9a5
- last_write_checksum: sha1:df7ac00528be24befbf21efb6124e4c31aadf0ad
+ last_write_checksum: sha1:efeca3bba849ef07e7f958d221a47381da751cf7
pristine_git_object: c298381c7a75027663f84e4ab1ec0b778c1d60be
src/Cvent/SDK/Models/Components/AttendeeAddBulkItemJson.cs:
last_write_checksum: sha1:572cc6035342eab798119f46628367b7a70f71f8
src/Cvent/SDK/Models/Components/AttendeeAddBulkItemJsonData.cs:
- last_write_checksum: sha1:bd355a9573729819453ef48ec568c89a372af3d6
+ last_write_checksum: sha1:b6ef9a90d35942b8f73cc2d0902a30f19b81847b
src/Cvent/SDK/Models/Components/AttendeeAddContact.cs:
last_write_checksum: sha1:542ca920638992d23ebec81f0c56bf4bcbfd53d3
src/Cvent/SDK/Models/Components/AttendeeAddEvent.cs:
@@ -9817,19 +9505,13 @@ trackedFiles:
src/Cvent/SDK/Models/Components/AttendeeAudienceSegmentAssociationsPaginatedResponse.cs:
last_write_checksum: sha1:33682762521dbe718f4ccc76379d02702d7c9d95
src/Cvent/SDK/Models/Components/AttendeeContactInfo.cs:
- last_write_checksum: sha1:ee87fb655bdb14add83b842e46ff8732274dd00e
+ last_write_checksum: sha1:9d79ed9fc4e71688399ec59b0c8ead6d88170080
src/Cvent/SDK/Models/Components/AttendeeContactMembership.cs:
last_write_checksum: sha1:148111409776bbb5cefab2c998f5d0e64665342a
src/Cvent/SDK/Models/Components/AttendeeContactType.cs:
last_write_checksum: sha1:fa9adb27b0a79e576bb4d5d9ad87090c3e9bd30e
- src/Cvent/SDK/Models/Components/AttendeeContactTypeJson.cs:
- id: 97d963be50a6
- last_write_checksum: sha1:843fe9cdbca7b6774acf45510342d33575e69da6
- pristine_git_object: ecdcb788bd218740923925fb04399b9e42b55c1f
- src/Cvent/SDK/Models/Components/AttendeeContactTypeJsonInput.cs:
- id: b939cbfe62f7
- last_write_checksum: sha1:b7c360a1b58c7620db3b99f82ea37c504c70290c
- pristine_git_object: 334977c4cd50ee3cc16552e791bf41b10af00048
+ src/Cvent/SDK/Models/Components/AttendeeContactTypeInput.cs:
+ last_write_checksum: sha1:b5491e674cda9d8efea6b72e58d6696938414e53
src/Cvent/SDK/Models/Components/AttendeeCreditJson.cs:
id: 62128e0e6de8
last_write_checksum: sha1:ecc9ae57ec0cfac9525f91fddafb2210be862922
@@ -9854,15 +9536,11 @@ trackedFiles:
id: 0235a505c80c
last_write_checksum: sha1:282d9f78df9201763a25062d6fe7ec33de122d70
pristine_git_object: ec884d06146beb1448c25e6c1ac802ae8c71a94b
- src/Cvent/SDK/Models/Components/AttendeeEvent.cs:
- id: 164a10783e67
- last_write_checksum: sha1:5517826ba36f09375d0a4205d4a78f3b063c904e
- pristine_git_object: eb48b63b57db3b72208d4a2dbdf9a53eb97659cc
src/Cvent/SDK/Models/Components/AttendeeGroup.cs:
last_write_checksum: sha1:a7654a148f300af2750b55c770d08cc0c7ea3921
src/Cvent/SDK/Models/Components/AttendeeInsights.cs:
id: a2602a2ffb19
- last_write_checksum: sha1:698d9c529cca6c716fb2880705ef884371072daa
+ last_write_checksum: sha1:15fa032dafd74acb287dd6dcbc7e841ad8f5ec93
pristine_git_object: 060905701df32d138cdbb95e982a9bf2f6c8c069
src/Cvent/SDK/Models/Components/AttendeeInsightsPaginatedResponse.cs:
id: 2c121c7b10cc
@@ -9900,19 +9578,15 @@ trackedFiles:
pristine_git_object: f27421bcea30e97bc071033f374e67ee12bf0231
src/Cvent/SDK/Models/Components/AttendeeLinkBulkResponseItemJsonData.cs:
id: a4a61ec47df2
- last_write_checksum: sha1:9c0c84ee2003d0ab0d17d382fd2ef17179328dd8
+ last_write_checksum: sha1:bccb387924e1e0cb3a5bd515171d493fa111a074
pristine_git_object: 5d8bd214dfdb45cefc55bf4f5cbf63e24db3ad8f
src/Cvent/SDK/Models/Components/AttendeeLinkPaginatedResponse.cs:
id: 32b734a60582
last_write_checksum: sha1:29e8fb2c26474ae5671aea25c2be1caec5e0145c
pristine_git_object: f856ef8ed25965fc095f88642e3b40cb3474ecb4
- src/Cvent/SDK/Models/Components/AttendeeLookup.cs:
- id: 5e94e6ade1b7
- last_write_checksum: sha1:1fdae45fe8403b451505ba4ae5a21f25a6e9ef97
- pristine_git_object: 832815709e2f8a971a043b2221165ecccb4b2683
src/Cvent/SDK/Models/Components/AttendeePaginatedResponse.cs:
id: c31116796384
- last_write_checksum: sha1:65ce382c69a299be6078eef5e025ae4455bad6a1
+ last_write_checksum: sha1:ee6a9bf4704d276dd5ccdd91ad1b924775ff62f0
pristine_git_object: 6948d395ccdbd6a70af958cdb67ee54dc22ddead
src/Cvent/SDK/Models/Components/AttendeeResponseJson.cs:
id: 3afc5eaf3b56
@@ -9998,8 +9672,10 @@ trackedFiles:
last_write_checksum: sha1:2cc25bc2c145597461fe620e0b364a2a4c976435
src/Cvent/SDK/Models/Components/Attendees.cs:
id: 03c6eb94774f
- last_write_checksum: sha1:b45072c6eb5f5f6c0f361c59d13b23136cf3b15b
+ last_write_checksum: sha1:07cf8c8d06efed8cebaf0e15f9a1680c5822a697
pristine_git_object: ea4320ba2dc21d6eeae452f817d3b21eb6e5744e
+ src/Cvent/SDK/Models/Components/AttendeesPaginatedResponse.cs:
+ last_write_checksum: sha1:16637ff9bc87f48f1bc11a6199415973608e3c04
src/Cvent/SDK/Models/Components/AttributeDataTypeJson.cs:
id: d6271d020280
last_write_checksum: sha1:29ef9626e3882a1f293da0e37b658115e1edd60e
@@ -10026,11 +9702,11 @@ trackedFiles:
pristine_git_object: 300efc69536a579d698b894f4b243dae54e38283
src/Cvent/SDK/Models/Components/AudienceSegment.cs:
id: 983fe326d11b
- last_write_checksum: sha1:ed56636fe49940ce2411d54d7d6b23a98124d044
+ last_write_checksum: sha1:702dfdf742e2992e82f5783226e9f4e9b92fc8ea
pristine_git_object: dcbeab42e042102bc8a0edffe2d7cdecb3d79312
src/Cvent/SDK/Models/Components/AudienceSegmentCreate.cs:
id: c7e25178e93a
- last_write_checksum: sha1:d61d569ee1fc95f6be7901ede44e1a12e0d49d28
+ last_write_checksum: sha1:14385bbe74d724b57216ceb1adfd24b9548dc824
pristine_git_object: e3edaf277a106bb9756fd589d1e76adf232c3f40
src/Cvent/SDK/Models/Components/AudienceSegmentCreationTypeJson.cs:
id: dd415bf46ffb
@@ -10038,24 +9714,18 @@ trackedFiles:
pristine_git_object: e95e7dd15ba689428cb4ff8773e6b68c3162f421
src/Cvent/SDK/Models/Components/AudienceSegmentResponse.cs:
id: 49a7f587a8f4
- last_write_checksum: sha1:c8a39941dddd2cba22684414c3125870a68a35c3
+ last_write_checksum: sha1:93a51ce672bc2f1550367de09c6f605018896a6f
pristine_git_object: 95ee0e7126e40b35005463afa25ee2d0650effe4
src/Cvent/SDK/Models/Components/AudienceSegmentsPaginatedResponse.cs:
id: b2a389bdc9eb
last_write_checksum: sha1:982cdea27b3f6a5f5c3e633e39ea424b321e8051
pristine_git_object: ba0353e493f874a468ef568428b149aafb66276d
- src/Cvent/SDK/Models/Components/AudioTrackStatusJson.cs:
- id: cef41f40922e
- last_write_checksum: sha1:48af413d6cf6c5ebc8a745b217a16ef631d899d7
- pristine_git_object: 2361b983af61ff590e44831b2948a15fcc75b8d6
- src/Cvent/SDK/Models/Components/AudioTrackTypeJson.cs:
- id: 887a0f30ca9f
- last_write_checksum: sha1:8160d2120ed3af4d9ad3e29df5ee49edfddfd02d
- pristine_git_object: d9cc7af351bc098f0ddf2211d3af2633d985a360
- src/Cvent/SDK/Models/Components/AudioTrackVariantJson.cs:
- id: c057d30cb3a2
- last_write_checksum: sha1:df223976cbddb8ac5557024ccdd78d0fbe15ab1c
- pristine_git_object: a322707664e6749d454a3d36ebef144edf5ae9f7
+ src/Cvent/SDK/Models/Components/AudioTrackStatus.cs:
+ last_write_checksum: sha1:eff366c550737cf7958b54f8d1f45c007c64454e
+ src/Cvent/SDK/Models/Components/AudioTrackType.cs:
+ last_write_checksum: sha1:ba61be8dae28cc52b764c526a6e9194beb8e8a15
+ src/Cvent/SDK/Models/Components/AudioTrackVariant.cs:
+ last_write_checksum: sha1:613ac39f4d18b46c9a8d822802d13784fdca155d
src/Cvent/SDK/Models/Components/AudioTracksResponse.cs:
id: d803b81f635f
last_write_checksum: sha1:66daa2deaa8e7b342e6c534e5ceb4958f809593f
@@ -10090,11 +9760,11 @@ trackedFiles:
pristine_git_object: e3fda04599448619e1ee8140d691c2d996bc3837
src/Cvent/SDK/Models/Components/Badge.cs:
id: ae8d432f30fb
- last_write_checksum: sha1:dc30009767abc9c8857758fc01de448214836dc4
+ last_write_checksum: sha1:250ad87afe3ad9e055a7e7fc91fd0d62033727b7
pristine_git_object: d660189461d866bbc57137d29700e269a42ed1bc
src/Cvent/SDK/Models/Components/BadgeInput.cs:
id: edc024116c6b
- last_write_checksum: sha1:b91f6c74caa85f17f1c89044ff9061aee1d1c5e6
+ last_write_checksum: sha1:8cba11fc24f7fd58cb4c30fbb8a6136c9e5c1c52
pristine_git_object: aee2b1fa5dd766d4896777de384562224858126c
src/Cvent/SDK/Models/Components/BadgePaginatedResponse.cs:
id: d25e91026fb4
@@ -10172,22 +9842,16 @@ trackedFiles:
id: d151bbdf27a4
last_write_checksum: sha1:f6c002b2a324da104c03f5929ad5917f94adb414
pristine_git_object: 9f674f6117c7ea9001ed8585b6ea9931de33dd59
- src/Cvent/SDK/Models/Components/BidItemStatusTypeJson.cs:
- id: 8b6a8629c88f
- last_write_checksum: sha1:643c39f5657ecc08e00d91b7c157304dd29ef6fd
- pristine_git_object: 075ccdc43c59d78f8ed28469d02495f659af7925
- src/Cvent/SDK/Models/Components/BidStatusTypeJson.cs:
- id: 368118dd70e7
- last_write_checksum: sha1:ca9031a101035bce44b91e9dc47ba156589d8111
- pristine_git_object: 7ccd77764bb77353b8890dcdbb81a52a839c3bfb
- src/Cvent/SDK/Models/Components/BidStayTypeJson.cs:
- id: d79a7fa795fc
- last_write_checksum: sha1:6832ca620421f448c5ff73b0ce84972d691604fe
- pristine_git_object: 2564eed7e4fbc17a665674122b65e23a9a68513c
+ src/Cvent/SDK/Models/Components/BidItemStatusType.cs:
+ last_write_checksum: sha1:11b82dacb546044db787323b44525b170ce6d152
+ src/Cvent/SDK/Models/Components/BidStatusType.cs:
+ last_write_checksum: sha1:5289d5264d20930c2f4d979a435dfef038d609b2
+ src/Cvent/SDK/Models/Components/BidStayType.cs:
+ last_write_checksum: sha1:a74d14bb339ac57b40516596a5eb7dfbd3caf5b3
src/Cvent/SDK/Models/Components/BillingAddress.cs:
last_write_checksum: sha1:b7702be04baa535e70286045470e48cfa549f1aa
- src/Cvent/SDK/Models/Components/BillingDetailsJson0.cs:
- last_write_checksum: sha1:6132cd1def9a6c538ae7e4fa3b492046032ffc06
+ src/Cvent/SDK/Models/Components/BillingDetails1.cs:
+ last_write_checksum: sha1:098e6aef0410f97314b74f47af440e0235f1e88e
src/Cvent/SDK/Models/Components/BookingContact.cs:
id: abeccbc9662b
last_write_checksum: sha1:a773a7aa54b508817b991ca08c2bf1a4d28e2793
@@ -10204,30 +9868,30 @@ trackedFiles:
pristine_git_object: 7cf0add42c435576c317fcf4dd8ca10ff5c44044
src/Cvent/SDK/Models/Components/BoothStaffRequest.cs:
id: b41bd3443292
- last_write_checksum: sha1:e1872303a0ffdce9e9bdfc6da383f807bd5ffab6
+ last_write_checksum: sha1:b6cc0e28407eb6f2cd89a58c07c3499e48212639
pristine_git_object: e8c1ebf50ecd0fde7a24071c8e198463b4da85c4
src/Cvent/SDK/Models/Components/BoothStaffResponse.cs:
id: 2580e0684876
- last_write_checksum: sha1:25aee732fa635e28f691b4a93720da6322d24e21
+ last_write_checksum: sha1:d89bf9760197027fdde80d59b3ff47831e62e115
pristine_git_object: 055885654c94d5858f94de5ed6e3d8de424b558e
src/Cvent/SDK/Models/Components/BounceDetailsJson.cs:
id: f50d12fcd1bf
- last_write_checksum: sha1:3f7587e3e92b5c469aea3e49f4b10347dd53e540
+ last_write_checksum: sha1:c04dbe899160605eaafe8875326c35ecb9587fd6
pristine_git_object: cb99e7d758a139727dcb5f69f99b45c42673d1ab
src/Cvent/SDK/Models/Components/BounceDetailsResponse.cs:
id: cbd1ddbcfb73
- last_write_checksum: sha1:329354e4d1042094c3bb4b62995b4e833cd4e86e
+ last_write_checksum: sha1:913ac289fe6d82b853ad0e89e666d8ad2a70a6ec
pristine_git_object: 4631250f885cfb793bbe350efd57e0eee7fd199f
src/Cvent/SDK/Models/Components/Brand.cs:
id: 28e246c8c762
- last_write_checksum: sha1:77dcf7fa3f50e9e6b1fd2fe23424faef7aa3409a
+ last_write_checksum: sha1:c94499612ba8c8d761f036b890321e4ab4603b1a
pristine_git_object: 8f4e49ff1179723c17781792ca8eafa756f9c16d
src/Cvent/SDK/Models/Components/BrandPaginatedResponse.cs:
id: 1a0250405f9e
last_write_checksum: sha1:d74e5637b83ef4fe71c3050da7f2c5861f7d6c47
pristine_git_object: 00a08dbe5830e75fd8bc4dd7a6a4dbf56045272a
- src/Cvent/SDK/Models/Components/BrideGroomTypeJson0.cs:
- last_write_checksum: sha1:ec88fd604c54ade0d87f438ce8969dc1ebd1c728
+ src/Cvent/SDK/Models/Components/BrideGroomType.cs:
+ last_write_checksum: sha1:5576fb38e3f31a4cd8836d72a24e223800d25bc5
src/Cvent/SDK/Models/Components/BudgetAllocatebyJson.cs:
id: 58d8ead1c72b
last_write_checksum: sha1:d810211f94145cfd7cd23d8249735344b4ac745a
@@ -10448,10 +10112,8 @@ trackedFiles:
id: b24a1c22186f
last_write_checksum: sha1:43ac3487824571d183e6d825f0033c2fe9460da4
pristine_git_object: b41f69ffe2dedf9d2e6f7cf87c19389be70cdff0
- src/Cvent/SDK/Models/Components/BusinessTypeJson.cs:
- id: a11e42f05494
- last_write_checksum: sha1:c02c2e6a5261ee2f99e045642549641e4fb2b3de
- pristine_git_object: 2c9c77161d733d33219cfe325c4d73a1787b65f3
+ src/Cvent/SDK/Models/Components/BusinessType.cs:
+ last_write_checksum: sha1:ee0358f9237db285c7e6278635b29495bf50c16f
src/Cvent/SDK/Models/Components/CalculateBy.cs:
last_write_checksum: sha1:0ed509fd5bf4d5010653668ca870df2390424dec
src/Cvent/SDK/Models/Components/Calendar.cs:
@@ -10470,14 +10132,14 @@ trackedFiles:
id: b0bb08c66548
last_write_checksum: sha1:72452b5de97b4f8a84abd79e97cf89272c6eb100
pristine_git_object: 45980f7aaffa2015786ccd898820855d0934d93a
- src/Cvent/SDK/Models/Components/CancellationDetailsJson.cs:
- last_write_checksum: sha1:c3861b049793c7d2ebde5c6a975f91d43c44775d
+ src/Cvent/SDK/Models/Components/CancellationDetails.cs:
+ last_write_checksum: sha1:410b8411e8d6945831def771116d925e992dab41
src/Cvent/SDK/Models/Components/CancelledReason.cs:
id: a0b17bee0daf
last_write_checksum: sha1:27e087dd34f627abff8e83cb344ae4876503423f
pristine_git_object: f36f80267b9fbd67674bf348ecff7a63bae3e256
- src/Cvent/SDK/Models/Components/CancelledReasonJson0.cs:
- last_write_checksum: sha1:e4ecec35b8b1093c55acbfd545cc097c1c1ec448
+ src/Cvent/SDK/Models/Components/CancelledReason1.cs:
+ last_write_checksum: sha1:f9c7146fd15d65ace185c2e592fd6dc0b66ea21e
src/Cvent/SDK/Models/Components/Capacity.cs:
last_write_checksum: sha1:df7efb3847103559873cc8192c6f983d41c874d8
src/Cvent/SDK/Models/Components/CapacityJson.cs:
@@ -10540,29 +10202,23 @@ trackedFiles:
pristine_git_object: 9f6ccaa6bd0f50c486855793cf0d06459d9b752e
src/Cvent/SDK/Models/Components/CardTypeJson.cs:
last_write_checksum: sha1:36156d4b312e9be7c7a65ff83b9920f0ee08de8e
+ src/Cvent/SDK/Models/Components/Category.cs:
+ last_write_checksum: sha1:be79cb7d99be5be595ee80804b94f8f55f02d93f
src/Cvent/SDK/Models/Components/CategoryId.cs:
last_write_checksum: sha1:b84883a682020800ea1fb6851f872b94a193cf99
- src/Cvent/SDK/Models/Components/CategoryIdNameJson.cs:
- id: 1978c9b0911d
- last_write_checksum: sha1:31e0b0ea6fe994712b51b4980831955973660c60
- pristine_git_object: b208b60ee86fb7e573b5fb663b7398cef953978e
src/Cvent/SDK/Models/Components/CategoryItemsCostJson.cs:
id: a4541054e585
- last_write_checksum: sha1:ec5a774264f51995208039c750b642701f91f926
+ last_write_checksum: sha1:0d067a0f801826ac5163524f22775d5fe7a8099c
pristine_git_object: 10a3727382c982154b320074264c537646de2106
src/Cvent/SDK/Models/Components/CategoryJson.cs:
- last_write_checksum: sha1:10e6e11d33983cb43959e3e95235ab77656f87b5
+ last_write_checksum: sha1:83ac86db65aa9ec87f7c7945c9ecc95d01eef2c6
src/Cvent/SDK/Models/Components/CategoryJson1.cs:
id: 1168a1793993
- last_write_checksum: sha1:dbbf85327f462575a277da58243dc89783b4c811
+ last_write_checksum: sha1:6187ca93e5d822338a546c3db0d95b4b7a2ff215
pristine_git_object: f652cfbd9aa2ef96234175fc9fd9a4f496c15b6d
- src/Cvent/SDK/Models/Components/CategoryJson2.cs:
- id: fea6078754e8
- last_write_checksum: sha1:83870b67ee1815912bdc93cfd3f322fee864ed24
- pristine_git_object: 85df953d584740980de2ff11235573edba998ac0
src/Cvent/SDK/Models/Components/Chain.cs:
id: defb8afe8333
- last_write_checksum: sha1:98885c6a7c808867d6f1993d4da8bdbef1ffcd6d
+ last_write_checksum: sha1:70c267b0dc2d83df2779dc8e16005dd9762e3797
pristine_git_object: 0e579eb10a63d87d50558f5c30e577e5c7801ab6
src/Cvent/SDK/Models/Components/ChainBrand.cs:
id: 3d94fdabe1d0
@@ -10610,22 +10266,20 @@ trackedFiles:
pristine_git_object: 02a907024c41925f35f72f2c59f77794d3aadc97
src/Cvent/SDK/Models/Components/Choice.cs:
id: 344f899a3f06
- last_write_checksum: sha1:5734bdd56969e1c11377d637cccd194721d6ff8c
+ last_write_checksum: sha1:8d251e5c90ab6898f9ae09694c21a15c1940691c
pristine_git_object: d63a02e9fb432871f94ecdfa881fa3fe3c17e233
- src/Cvent/SDK/Models/Components/ChoiceJson.cs:
- last_write_checksum: sha1:8c9979cecc84be0ff3810657f733c7b54ed077f0
+ src/Cvent/SDK/Models/Components/Choice1.cs:
+ last_write_checksum: sha1:311578c8bfac6045142a8bba26330d155b273842
+ src/Cvent/SDK/Models/Components/ChoiceJson1.cs:
+ last_write_checksum: sha1:ea273d1f9d4f79643c19492027e42a351e053392
src/Cvent/SDK/Models/Components/ChoiceJson2.cs:
id: a117bf7b1539
- last_write_checksum: sha1:8ce6bad0c955ef9e95ea86d7d92ec6899c39b577
+ last_write_checksum: sha1:a262c05de1870236cbee28bdff11d8a302313740
pristine_git_object: a0d67792f158432e1f71168f4142ceaba759ddb5
- src/Cvent/SDK/Models/Components/ChoiceJson3.cs:
- id: bc4986afb043
- last_write_checksum: sha1:f193752cc75f9595d734fbbad947368df090d3e6
- pristine_git_object: 96adc3039b70b573af643e507090f2eb9fc9ef75
- src/Cvent/SDK/Models/Components/ChoiceJson3Input.cs:
- last_write_checksum: sha1:f65bacfe962ed56e873f0ef1799110624c12b117
- src/Cvent/SDK/Models/Components/ChoiceSortOrderJson.cs:
- last_write_checksum: sha1:4f67e5dbffef25ee82ea11918b409b99179ae240
+ src/Cvent/SDK/Models/Components/ChoiceJson2Input.cs:
+ last_write_checksum: sha1:1f9ebdad0af2a005c572afdfd3eb511e3a708470
+ src/Cvent/SDK/Models/Components/ChoiceSortOrder.cs:
+ last_write_checksum: sha1:da6de88c9a615f18c90b837e77bbbea932d70ff3
src/Cvent/SDK/Models/Components/ChoiceTranslationJson.cs:
id: ad5f550fc9ac
last_write_checksum: sha1:d3c7a66c7f22924ab58e6e7192ec8820819b2a28
@@ -10634,16 +10288,14 @@ trackedFiles:
last_write_checksum: sha1:8e56b809897d4ce2d566c3f1cadc0287bf694b04
src/Cvent/SDK/Models/Components/Choices.cs:
id: afdf64e85049
- last_write_checksum: sha1:74530f10717915a0dc2082f6175fe4dc073a613a
+ last_write_checksum: sha1:08f03add251a189e39cfc13ab0440c771bc063d0
pristine_git_object: 4702e9f12322c3c41ce09210821083bfc63543cb
src/Cvent/SDK/Models/Components/ChoicesDisplayTypeJson.cs:
id: 867f257ee1c6
last_write_checksum: sha1:765c1d45008acef3d5cec33a61695c67e9700ac6
pristine_git_object: e278e563198a1ff8b5724245649957863d1e4b12
- src/Cvent/SDK/Models/Components/CommentTypeJson.cs:
- id: ff0a82e07fad
- last_write_checksum: sha1:06a8f2cbf55ddbfeb55f607615499639a8db95cf
- pristine_git_object: 5833bae1adf0d078985c72e6c75f978f713f2b09
+ src/Cvent/SDK/Models/Components/CommentType.cs:
+ last_write_checksum: sha1:1e1512152e1e80bedcc0ff411309c4b7fb90fcaa
src/Cvent/SDK/Models/Components/CommunicationConfiguration.cs:
id: 8f7c39ec6212
last_write_checksum: sha1:fb3a07adb2e52134cc3736835458e6eaacb612d2
@@ -10661,30 +10313,16 @@ trackedFiles:
last_write_checksum: sha1:b87bf37de5d70d572c570eb903e3b6714dda6eaf
pristine_git_object: 1af119a89b5e537bf71a64e2805d7465920f5946
src/Cvent/SDK/Models/Components/Compliance.cs:
- last_write_checksum: sha1:e9e497a800a23c41f50ee1df11925714563e44b6
- src/Cvent/SDK/Models/Components/ComplianceAction.cs:
- last_write_checksum: sha1:4680814e31b1edcc258ebfc0442722b2f2618283
- src/Cvent/SDK/Models/Components/ComplianceComplianceScope.cs:
- last_write_checksum: sha1:8a413f02375c1c163eb34449e2c5bf83c3fdd8f5
- src/Cvent/SDK/Models/Components/ComplianceCreatedBy.cs:
- last_write_checksum: sha1:4001568e409bff15292540855a1eb6cb37520435
- src/Cvent/SDK/Models/Components/ComplianceJson.cs:
- id: a773ef1472f3
- last_write_checksum: sha1:25781cbcbdf6a10045d87f32be130611dd24bd49
- pristine_git_object: 3670e9421ae0d7d354edffa37d26df4ff9161f4c
- src/Cvent/SDK/Models/Components/ComplianceJsonAction.cs:
- last_write_checksum: sha1:fa80aeeaa467d5713b45ca14940751b23e698f35
- src/Cvent/SDK/Models/Components/ComplianceJsonComplianceScope.cs:
- last_write_checksum: sha1:0196acd79a679799ef1fac875cc233b78cf421a1
- src/Cvent/SDK/Models/Components/ComplianceJsonCreatedBy.cs:
- last_write_checksum: sha1:9ed7d3aadc73636ef4ea96e7867058a92dac9cf8
+ last_write_checksum: sha1:9caa68ed73174e826ac9c4644a023126b687ea1c
+ src/Cvent/SDK/Models/Components/ComplianceScope.cs:
+ last_write_checksum: sha1:da529d25616dac1d348045a9cf790f76a3b275e6
src/Cvent/SDK/Models/Components/CompositeValueJson.cs:
id: d2fdd79333a7
last_write_checksum: sha1:8da1105c5da6bc8e367719b9b0a6dfe3e3d86e2c
pristine_git_object: 2c01935430a8eac22457c89324ea75ddef3d75f3
src/Cvent/SDK/Models/Components/ConflictResolution.cs:
id: e82d8f26c2c9
- last_write_checksum: sha1:25369719b6151f04cafb64bad460b7048e022cdb
+ last_write_checksum: sha1:545c450ebb3dacdbadd715736c8b1a21044948ba
pristine_git_object: d58c163d925e7a50513a6609eead06369448ee98
src/Cvent/SDK/Models/Components/ConnectionResponse.cs:
id: de5168c90a8f
@@ -10696,28 +10334,24 @@ trackedFiles:
pristine_git_object: a5ee7962e3b0e90ded10c194285e513b58cefa95
src/Cvent/SDK/Models/Components/Contact.cs:
id: ac3d567f7d19
- last_write_checksum: sha1:c0489ab69305ef260de166ac5c7d4700e67264e2
+ last_write_checksum: sha1:a47aa393ebf27aeed82940d151ae1d573bb2509d
pristine_git_object: 3480e1b79be63129afd616d189c983c1740333f8
- src/Cvent/SDK/Models/Components/ContactBulkItemJson.cs:
- id: 0f9b1bdc96c9
- last_write_checksum: sha1:3f12a0c0da531edd72afc99f704beeebba13417d
- pristine_git_object: 75826309f0c3ea2ceb0d89d134c9c63d26c01324
- src/Cvent/SDK/Models/Components/ContactBulkItemJsonData.cs:
- id: a30ac3bda036
- last_write_checksum: sha1:f2a38c0283227c47644482d9f95166a87974ef34
- pristine_git_object: a736d56ba8faeecdeb6ce9bce019b23de2ee9f02
+ src/Cvent/SDK/Models/Components/Contact1.cs:
+ last_write_checksum: sha1:909fbd2dc5c9cdbf18d2c02e38c3f29fe2d9a953
+ src/Cvent/SDK/Models/Components/Contact2.cs:
+ last_write_checksum: sha1:8b84f2b5826b0377179220ee1b15e79bce51f21e
+ src/Cvent/SDK/Models/Components/ContactBulkResponseItem.cs:
+ last_write_checksum: sha1:e775cb96360bae307ea8d5ee868e58157d62c8a1
+ src/Cvent/SDK/Models/Components/ContactBulkResponseItemData.cs:
+ last_write_checksum: sha1:47f132f2a9d731fac524893f0141b9f721ef4363
src/Cvent/SDK/Models/Components/ContactCommonJson.cs:
id: 16b41ac55dcc
last_write_checksum: sha1:27fd698330fa52310d68113480332c7c3de5486d
pristine_git_object: c7bf41ca9ec10e66eb827b1f94db53de91f6f93c
- src/Cvent/SDK/Models/Components/ContactCreateRequestJson.cs:
- id: fcf518a0c112
- last_write_checksum: sha1:442536582419b71dccf31fc9a5e2bdbfcf987e8b
- pristine_git_object: 8d603576b69740cfd223dd3072167a29261f21fa
- src/Cvent/SDK/Models/Components/ContactCreateRequestJsonEvent.cs:
- id: 89c44bec4c55
- last_write_checksum: sha1:3c86bef8f5712a8e5d659419fd949acc9d595e5b
- pristine_git_object: ecce1e8109dd176a3c3d134481fadcc4329900cd
+ src/Cvent/SDK/Models/Components/ContactCreate.cs:
+ last_write_checksum: sha1:e8d9ccda424b28b0cf90ed6ef20aa750fbbfc9ed
+ src/Cvent/SDK/Models/Components/ContactCreateEvent.cs:
+ last_write_checksum: sha1:57722154454d4cf55876a1565b846232dd63566d
src/Cvent/SDK/Models/Components/ContactEvent.cs:
id: 1b659dc83787
last_write_checksum: sha1:6159c53ed878fbcc3b9272d858b500205b568f9e
@@ -10752,91 +10386,69 @@ trackedFiles:
pristine_git_object: a212a57a8b3049c15f6675f94bfcbbdd8d586ee2
src/Cvent/SDK/Models/Components/ContactGroup.cs:
id: 59677eec4501
- last_write_checksum: sha1:08e322f2ae7d6e144c7e4579d647708e20c527b5
+ last_write_checksum: sha1:3aa0348222bc356237353eb10318eb862f42b3bb
pristine_git_object: e39626e09b53677aaf6dd68c40edf2652d9522c8
src/Cvent/SDK/Models/Components/ContactGroupInput.cs:
id: cb175f56e7a6
- last_write_checksum: sha1:4bcfc90cc5f4ef4a48ac67d7567bda3870e2c80b
+ last_write_checksum: sha1:1c639759942bd79583d32329b649b9a10d16f8c9
pristine_git_object: b5c8c301437b55d164fba7ae12d2e48797c2ed58
src/Cvent/SDK/Models/Components/ContactGroupPaginatedResponse.cs:
id: 71f509ba96ba
- last_write_checksum: sha1:77fbb17ea650bf62811b03e50aafd895da0b082b
+ last_write_checksum: sha1:5a2bde3f7f407e4c6a7a801ab0e61bed97e02859
pristine_git_object: b258f58f0c080496e330ab3962734ddd5e8149a3
- src/Cvent/SDK/Models/Components/ContactGroupTypeJson.cs:
- id: 12a7c0ea1ee5
- last_write_checksum: sha1:62c37f75277e5fac4aadd4e6aa0f8107bb92bf5d
- pristine_git_object: 316048ad344c3b9398cc6091ce4ad2a3fe3eeaeb
- src/Cvent/SDK/Models/Components/ContactHistoryJson.cs:
- id: 496949b74c60
- last_write_checksum: sha1:bdc3a71542b170c132928f3b0d17542bee58c07f
- pristine_git_object: d61a7acbb6e67b20fd714cd32d61a0ad3e5470ce
+ src/Cvent/SDK/Models/Components/ContactGroupType.cs:
+ last_write_checksum: sha1:5e9e692438d2332276df5c25de05ec009b7966ca
+ src/Cvent/SDK/Models/Components/ContactHistory.cs:
+ last_write_checksum: sha1:3e28b9ac0def25f721e12e95b8e0bb6220d6cce1
src/Cvent/SDK/Models/Components/ContactHistoryPaginatedResponse.cs:
id: f132fef6a5f5
- last_write_checksum: sha1:a42d62ea671f8bd424596091ce76a42a96aedb3e
+ last_write_checksum: sha1:016b0ca5d616011c5a7377736c5396dd06b9f9ca
pristine_git_object: b8b69ffcca8fdd7357544dcf1c26a6fba2f3e4c0
- src/Cvent/SDK/Models/Components/ContactIdJson.cs:
- id: 52cb16c9320c
- last_write_checksum: sha1:c99f26f1148b6ea5809fb0a34897f763099dff3a
- pristine_git_object: 61da5153dbbee3bdddd69e1ec22c7e97a95f96e9
+ src/Cvent/SDK/Models/Components/ContactId.cs:
+ last_write_checksum: sha1:ef53f36b815ec7a31d1a8da81305bd4cdd1ed96b
src/Cvent/SDK/Models/Components/ContactIdPaginatedResponse.cs:
id: 52faa4bee69f
- last_write_checksum: sha1:366879fa9a75eebba40ea1d8a72a04df51b08d96
+ last_write_checksum: sha1:5988adbf8ad90cf16b08a21f8eff8e91b32b4856
pristine_git_object: bf35489f6d43e808cb17d77a898128d3b800e3be
src/Cvent/SDK/Models/Components/ContactInformationJson.cs:
last_write_checksum: sha1:3f04eae6f9255b89dfd3f2952431da3f112b136e
- src/Cvent/SDK/Models/Components/ContactJson0.cs:
- last_write_checksum: sha1:f11a712068d25c0fc325780dc6f3fa8c6a388aba
- src/Cvent/SDK/Models/Components/ContactJson1.cs:
- id: d7fe945c872c
- last_write_checksum: sha1:3f0e40907bee1ef86d564c9889e37491482f226e
- pristine_git_object: 8203ef84190ef5d6f95dbda1313468e849d6ec41
- src/Cvent/SDK/Models/Components/ContactJson2.cs:
- id: 44ef608704ec
- last_write_checksum: sha1:38c1ec87cc9ddd1b41b52e5ed9bd20737268a6cf
- pristine_git_object: d4774a9f6adbdee4d545d73f83160a189d4ba7e4
+ src/Cvent/SDK/Models/Components/ContactJson.cs:
+ last_write_checksum: sha1:b0dd2c4cecad7650911c3865a1348593d27424ab
src/Cvent/SDK/Models/Components/ContactLinks.cs:
last_write_checksum: sha1:79643b38dae25397f14c2d7322515d1b1216b904
src/Cvent/SDK/Models/Components/ContactLinks1.cs:
last_write_checksum: sha1:f3a23c91e04141f25d61191e94a027546fe4430e
- src/Cvent/SDK/Models/Components/ContactLinksJson.cs:
- id: 07a4c61e991c
- last_write_checksum: sha1:60e202e66f09afc644f9151920bc6d0af6c18365
- pristine_git_object: ec35c0bdaf8752f872858acaf32ad6ccec93a7aa
- src/Cvent/SDK/Models/Components/ContactLinksJsonInput.cs:
- id: 60deb552952d
- last_write_checksum: sha1:7465fe54ec5e1b7139dc4e13c671c9ae7893e53d
- pristine_git_object: 1f5fa5674365549d4dae0d44c4a74f4c541316a9
- src/Cvent/SDK/Models/Components/ContactLinksJsonLink.cs:
- id: bebca5a7460b
- last_write_checksum: sha1:c32109d7b1dab7685ba1cf1c3eda27f14a487f25
- pristine_git_object: 960446fb206cf636bffacfc371a74f33d48a0a67
+ src/Cvent/SDK/Models/Components/ContactLinksInput.cs:
+ last_write_checksum: sha1:c193353bcc394ff24dc5f8fcf3e07ad3b688e37f
src/Cvent/SDK/Models/Components/ContactLinksLink.cs:
last_write_checksum: sha1:6956533bc4f3916fa50992302cf2da77718ab7b4
+ src/Cvent/SDK/Models/Components/ContactMembership.cs:
+ last_write_checksum: sha1:2057edabd3e76579103291914577c1eb897d7093
src/Cvent/SDK/Models/Components/ContactMerge.cs:
id: cfad818f741f
last_write_checksum: sha1:f25625ed3982a8796ecd6a8e92e5ec5db254a437
pristine_git_object: 0a69017c97f4d7534599fe98e4931a6d6d931e21
- src/Cvent/SDK/Models/Components/ContactMergeFieldJson.cs:
- id: 025b547a7e97
- last_write_checksum: sha1:3295cbc6eda5e62bec2e5b9237efbc25c7ab5972
- pristine_git_object: 71a118d3fb20676f5f3f5879126ebc879962865b
- src/Cvent/SDK/Models/Components/ContactMethodsJson.cs:
- last_write_checksum: sha1:8a2cf76a051fa8a2c4de7b3e794a1defc155a468
+ src/Cvent/SDK/Models/Components/ContactMergeField.cs:
+ last_write_checksum: sha1:08979bfc5cb53597cecaaa2d1dc791def553c1de
+ src/Cvent/SDK/Models/Components/ContactMethods.cs:
+ last_write_checksum: sha1:a2f68072e9fca6d83722d7483d558ecf571bdc51
src/Cvent/SDK/Models/Components/ContactObfuscationStatus.cs:
id: 8aaec26b97d8
- last_write_checksum: sha1:d20172e33d13310b7cc16f244b7dd4171571d35a
+ last_write_checksum: sha1:00f819a41422dbfa62b6733fc619e5401a785960
pristine_git_object: 4753fac7afdb651d6256f5d52b7672f9ff2faaab
- src/Cvent/SDK/Models/Components/ContactObfuscationStatusTypeJson.cs:
- id: c638aeb0dc30
- last_write_checksum: sha1:28ea2ca80720284b8671bd977f812509563e041a
- pristine_git_object: 07d58adb43187893df0e560bd5e8709bf334e6b6
+ src/Cvent/SDK/Models/Components/ContactObfuscationStatusType.cs:
+ last_write_checksum: sha1:77ee1fb24b42d12b69448d86f1cf36272b780899
+ src/Cvent/SDK/Models/Components/ContactOptOut.cs:
+ last_write_checksum: sha1:d96a9841790c1dec2eec1a1028d3c7288fcea471
+ src/Cvent/SDK/Models/Components/ContactOptOutInput.cs:
+ last_write_checksum: sha1:85da0473922f229f8be1052dc6a9800fd4a6f619
src/Cvent/SDK/Models/Components/ContactPaginatedResponse.cs:
id: 5fbf918cf6ce
- last_write_checksum: sha1:3f09df087c6580a938d846429b8865de2858ec08
+ last_write_checksum: sha1:6a3022ad1c8c2bdbf516c5b3236799a3f599082c
pristine_git_object: ba53dff83d7fd5fe275e856997efa7a95d410c21
src/Cvent/SDK/Models/Components/ContactPatch.cs:
id: 58e3cb774328
- last_write_checksum: sha1:3dd1cdf8be1ed9ab221bdd1ab8c975ec88c380b5
+ last_write_checksum: sha1:91305f1c4f614e708b59bee62bd4d71a7b272c5b
pristine_git_object: 790d3eecfcd62fab768237d03f8c7f686145cb5b
src/Cvent/SDK/Models/Components/ContactPatchLinks.cs:
id: eb7926f73d30
@@ -10846,21 +10458,19 @@ trackedFiles:
id: 1845a299c760
last_write_checksum: sha1:da3f7f5a95c2e2fc156528db5e4f05ba1ab39b2c
pristine_git_object: 7c236d795e41d4817a1a4fc0b5279b6e2bf5f4d5
+ src/Cvent/SDK/Models/Components/ContactType.cs:
+ last_write_checksum: sha1:50fdf348cd55f87b548330404503a2199d7937d4
src/Cvent/SDK/Models/Components/ContactTypeJson.cs:
id: b952161ad95f
- last_write_checksum: sha1:1a7c3eb0d05de364033b4d93915d6f291e9366a0
+ last_write_checksum: sha1:db83c80c60cede745c8e3e3cdb7ff1c00b67abb0
pristine_git_object: 6e40dda9e219df64eab97788b3d24a0fd164469a
- src/Cvent/SDK/Models/Components/ContactTypeJson1.cs:
- id: e301373a5c2a
- last_write_checksum: sha1:3b57ef1ccb5ca01f1f9800cfd171e7517140a760
- pristine_git_object: 4b3f6714fd3d2b421172df425b71dd36cdd36714
src/Cvent/SDK/Models/Components/ContactTypePaginatedResponse.cs:
id: f4a82356d67b
- last_write_checksum: sha1:a749ef046791a81060c826fc70c96afa2e4e6169
+ last_write_checksum: sha1:191fa8adc50be5bec148540440c49ef7c25eb6aa
pristine_git_object: dfca70ee5f145843670dbaa549ace63d2363055b
src/Cvent/SDK/Models/Components/ContactUpdate.cs:
id: e3f39083a701
- last_write_checksum: sha1:6004daa66340002fcc7f573a1fb151f89158bbf3
+ last_write_checksum: sha1:3969449bb8b3ea41c13dcddd73589a6a7f9c79dc
pristine_git_object: f8f3291c9c022bdf3c49529a17565a8faea4ba3f
src/Cvent/SDK/Models/Components/CountryJson.cs:
id: 3357ba2b8724
@@ -10871,9 +10481,9 @@ trackedFiles:
last_write_checksum: sha1:45c21f4f1c4d2e8874cc81b9a3fb41436d872f38
pristine_git_object: 4de0a84c59789cc1d006258f967a9efa6238e2b9
src/Cvent/SDK/Models/Components/CreateTransactionResponse.cs:
- last_write_checksum: sha1:ae402becb27b5bc101b43a0319463be1a723cc41
+ last_write_checksum: sha1:4c6d4331e8a480b17ce51c01a8534d04d26d26fc
src/Cvent/SDK/Models/Components/CreateTransactionResponseInput.cs:
- last_write_checksum: sha1:46f40f326e15acab1673ca7bd67cffa3e2608d32
+ last_write_checksum: sha1:388845a9fc48399ca5c2fba747d37b86e69c78f9
src/Cvent/SDK/Models/Components/CreateUpdateDiscount.cs:
id: 47f98e744860
last_write_checksum: sha1:6bec7329b656ea292b69220cdca9641640a28998
@@ -10910,6 +10520,8 @@ trackedFiles:
id: a26af38a9139
last_write_checksum: sha1:b484322952838a4579686443a296600385bc341a
pristine_git_object: 6d3180f7054b7cf603edb689a25ffdb72de07c9a
+ src/Cvent/SDK/Models/Components/CreatedBy.cs:
+ last_write_checksum: sha1:2b417db063d4c2d10abcda43ffeac396b41ac1e4
src/Cvent/SDK/Models/Components/CreditCardRequestJson.cs:
id: 8714f7d6070c
last_write_checksum: sha1:e0b80bec4e6223ea6b2f01f3d379a420e0df73cf
@@ -10946,10 +10558,8 @@ trackedFiles:
id: 67717a5f183f
last_write_checksum: sha1:5c670c17251609e6c808c63072287d5112670eb0
pristine_git_object: fe7093ed0846a655aa36d68221301336208c0661
- src/Cvent/SDK/Models/Components/CurrencyJson1.cs:
- id: cce2ee2028c8
- last_write_checksum: sha1:ffc90763678eb98649c74f8228aba4e9527b376e
- pristine_git_object: 1ee46f40f609fdd1b5462f89bc248a79c147e606
+ src/Cvent/SDK/Models/Components/CurrencyJson2.cs:
+ last_write_checksum: sha1:b8dce82b111f89803979adc30c9abd51efff742b
src/Cvent/SDK/Models/Components/CustomAnswerFormat.cs:
last_write_checksum: sha1:237a8641c88556cf5390d0d6a3cff1af517bc5d3
src/Cvent/SDK/Models/Components/CustomDuration.cs:
@@ -10965,9 +10575,11 @@ trackedFiles:
src/Cvent/SDK/Models/Components/CustomField2Input.cs:
last_write_checksum: sha1:4c67a5f49d9d3c97a858ef4f5ff501f4d985b1b0
src/Cvent/SDK/Models/Components/CustomField3.cs:
- last_write_checksum: sha1:eb5f02b9076db13da749baf8b8781f08b2d4dd3e
+ last_write_checksum: sha1:3e44a76bb65237ff598e6684bab98b3a741946fd
src/Cvent/SDK/Models/Components/CustomField3Details.cs:
last_write_checksum: sha1:7c4b6311e69a6db597d8be5d853be0b601abc567
+ src/Cvent/SDK/Models/Components/CustomFieldAnswers.cs:
+ last_write_checksum: sha1:2faffbd14ac0e6d8e552cf8f239ad8b92d761cc5
src/Cvent/SDK/Models/Components/CustomFieldCategoryJson.cs:
id: 0eb220bce8e8
last_write_checksum: sha1:e14a4c2f026d957eb2de8263b8b04e38b78d2ef5
@@ -10982,26 +10594,24 @@ trackedFiles:
id: f48961241b6c
last_write_checksum: sha1:48aac1f01f8a4202d854d5d55766e3c306e5e1b6
pristine_git_object: f4b2c7f169f1cd11147ecd2d9b964e876dff7508
+ src/Cvent/SDK/Models/Components/CustomFieldJson.cs:
+ last_write_checksum: sha1:24651130fb6184148c996049bacba9d4c4eb2981
src/Cvent/SDK/Models/Components/CustomFieldJson1.cs:
- last_write_checksum: sha1:fbefbbad5872dc759b0ca23b333534b069fdaf41
+ last_write_checksum: sha1:fa86935d876b62d78fba6faaec0f0c7eb12b02ac
src/Cvent/SDK/Models/Components/CustomFieldJson1CustomFieldType.cs:
- last_write_checksum: sha1:b467e5bf1a5590c9ff71e1fc9330b4b7b9a77345
+ last_write_checksum: sha1:dc5fbd2e90e86efe762e9f1d8b7eeabfbeecd849
src/Cvent/SDK/Models/Components/CustomFieldJson2.cs:
- last_write_checksum: sha1:5ca46aca55c1ace6f4cadbd5253b06e82eae314b
+ last_write_checksum: sha1:60fbf1b1567fef57ab8f1cacaf9b3f3663095bfa
src/Cvent/SDK/Models/Components/CustomFieldJson2CustomFieldType.cs:
- last_write_checksum: sha1:63279ba4d9039a756b5927112a3f99f2fddc9cc3
- src/Cvent/SDK/Models/Components/CustomFieldJson3.cs:
- last_write_checksum: sha1:da67fa48fae26cd6623b96261c7cbf008e29adb7
- src/Cvent/SDK/Models/Components/CustomFieldJson3CustomFieldType.cs:
- last_write_checksum: sha1:cf26b205cba058b46cf2a419eaea7dd04be7775f
+ last_write_checksum: sha1:2381f5115fb201c02746583ccea11ea647df9c4c
+ src/Cvent/SDK/Models/Components/CustomFieldJsonCustomFieldType.cs:
+ last_write_checksum: sha1:2c223157d567dbd85625ef0694ca1d90379bbd1d
src/Cvent/SDK/Models/Components/CustomFieldSchema.cs:
last_write_checksum: sha1:42d256f41bbed5452ef5b721fbe860df5c03af36
src/Cvent/SDK/Models/Components/CustomFieldSchemaCustomFieldType.cs:
last_write_checksum: sha1:4b403b9d27d2f8a181b92c88dde5d6280c8db12e
- src/Cvent/SDK/Models/Components/CustomFieldTypeJson1.cs:
- id: c1197fb2ca15
- last_write_checksum: sha1:0f35eb1616ba133d914c4d3b1b024fa873e627cf
- pristine_git_object: 74f5bd09415717c5175e6b4991ab12edd29655dd
+ src/Cvent/SDK/Models/Components/CustomFieldTypeJson.cs:
+ last_write_checksum: sha1:cbd05ec3ef4f8ee4eb1ea066487a4b876b83f307
src/Cvent/SDK/Models/Components/CustomFieldsJson.cs:
id: 4f73cbd7c139
last_write_checksum: sha1:bc06ca46ad020d01ceabe6e771c22c0ff5945e54
@@ -11010,46 +10620,32 @@ trackedFiles:
id: 578c2a75b20f
last_write_checksum: sha1:e9da3a08f032da454e311b23ab25d45be55a701b
pristine_git_object: 3ba2f458bb241861e4f3e4fc2929c995b41be023
- src/Cvent/SDK/Models/Components/CustomQuestionAnswerJson0.cs:
- id: ba4c91dd2793
- last_write_checksum: sha1:5ad39c400a7487c8cfa014858cb5525414f6b29a
- pristine_git_object: fb6ff970086dd960f4aeacd238940374d6c8e8fd
- src/Cvent/SDK/Models/Components/CustomQuestionAnswerJson0Question.cs:
- id: 9bf4d976e8dd
- last_write_checksum: sha1:53a773b6250ee421e4903e929ea0a83cc75881cc
- pristine_git_object: ca3f729b3e936711571420a1b130464c5d5de694
- src/Cvent/SDK/Models/Components/DateAnswerFormatJson.cs:
- last_write_checksum: sha1:25c0e9efc7654d65bd4e70c6f9f56429316623e0
- src/Cvent/SDK/Models/Components/DatePatternJson0.cs:
- last_write_checksum: sha1:2bfb0aecaed8f74a0e3bff2bcf47068e4bc85ae2
- src/Cvent/SDK/Models/Components/DateRequirementsJson0.cs:
- last_write_checksum: sha1:5ccdbe3f957bb6c430de23a858f7b39d805e6277
+ src/Cvent/SDK/Models/Components/DateAnswerFormat.cs:
+ last_write_checksum: sha1:35fa72702c12f1787043b90356a03f274d4c305a
+ src/Cvent/SDK/Models/Components/DatePattern1.cs:
+ last_write_checksum: sha1:86d57be7fbe1562257b7f7a59a2bfc6d92bf6b3b
+ src/Cvent/SDK/Models/Components/DateRequirements1.cs:
+ last_write_checksum: sha1:49d3b395fdd7af6d4692eecdf7d92fd16833116b
src/Cvent/SDK/Models/Components/DateTimeDisplayFormatJson.cs:
id: 4df9b86d64eb
last_write_checksum: sha1:b70c51d8b5c064410c866adb24254d6b72d6a63b
pristine_git_object: 10cdf34f3d6c067725ed47d33d7a65334755cdd5
- src/Cvent/SDK/Models/Components/DateTypeJson1.cs:
- id: 841b1d914206
- last_write_checksum: sha1:a2c2428a885748c8c746b0531307871c6a1c79bf
- pristine_git_object: b39ca6443c081616abf75e30ceabe8d625de2ffa
- src/Cvent/SDK/Models/Components/DatesJson0.cs:
- last_write_checksum: sha1:cb91c754178b7822f646a6c0ca61af21116dd543
- src/Cvent/SDK/Models/Components/DayOfWeekJson0.cs:
- last_write_checksum: sha1:a95dd5e06f16d497af49cf61026a0d7fc9aedf7c
+ src/Cvent/SDK/Models/Components/DateTypeJson.cs:
+ last_write_checksum: sha1:50608a1ad8e619c6907c32f3a7a46cf559601e46
+ src/Cvent/SDK/Models/Components/Dates1.cs:
+ last_write_checksum: sha1:884ec72e42e7e78e4a8bc495fe4cfd2ac633eae7
+ src/Cvent/SDK/Models/Components/DayOfWeek.cs:
+ last_write_checksum: sha1:32acda67dfdabaf3d90e054fd6bbb6195e69574a
src/Cvent/SDK/Models/Components/DeclinedReason.cs:
id: f4dcf3cfa52f
last_write_checksum: sha1:974fe7388cbec99c4518624289ff9d8c4f306229
pristine_git_object: 2964e087dc3bc56b6be964e5f3fed69d43e395ca
src/Cvent/SDK/Models/Components/Device.cs:
last_write_checksum: sha1:0bd9b64df0b6d72277820ee1e6b35f6743eb1de5
- src/Cvent/SDK/Models/Components/DeviceJson.cs:
- id: 3ab7fe16cd40
- last_write_checksum: sha1:89cfd8baaf692a5d3cdfeb82241561d1704e1dd7
- pristine_git_object: f3cffad38979e14e748d3a9c3aa4820b3640ae16
- src/Cvent/SDK/Models/Components/DeviceTypeJson.cs:
- id: 3acfe18973e2
- last_write_checksum: sha1:8aa4a271772bb637eb0d5b223633f49bf02761c3
- pristine_git_object: c8534618d2762d51ebb5701fe6e34a36a8e8fa09
+ src/Cvent/SDK/Models/Components/Device1.cs:
+ last_write_checksum: sha1:497fc71f2c2bb767944ee7ea67e71c6a238c4b97
+ src/Cvent/SDK/Models/Components/DeviceType.cs:
+ last_write_checksum: sha1:9df34fcf189e59099f4e17b517be232121c6774c
src/Cvent/SDK/Models/Components/DiscountAgendaItemsPaginatedResponse.cs:
id: 6f9891bbb5e8
last_write_checksum: sha1:1814c6718b96ddd01eed295d607f7c736278f2a5
@@ -11072,32 +10668,24 @@ trackedFiles:
id: 9e87579469a5
last_write_checksum: sha1:2761e0d177214229f20e7d27e05ee7ee748c0385
pristine_git_object: 9b7d34aeae5ff62b7b393dc69470432db5932569
- src/Cvent/SDK/Models/Components/DisplayTypeJson.cs:
- last_write_checksum: sha1:50f56a9ea7b45656c588fafd36975aa09bfa2d73
- src/Cvent/SDK/Models/Components/DistanceJson1.cs:
- last_write_checksum: sha1:94d96fbe40060363492e89da529b9cc8c25ceb07
+ src/Cvent/SDK/Models/Components/DisplayType.cs:
+ last_write_checksum: sha1:6d070a5d30554f2c3fa5fe6156d5235e81d77ef9
+ src/Cvent/SDK/Models/Components/DistanceJson.cs:
+ last_write_checksum: sha1:fa845892c4a5f8d6beec86b555ace5b923610952
src/Cvent/SDK/Models/Components/DistanceUnit.cs:
id: cab1b23c7c4f
last_write_checksum: sha1:d85b808aa492b5471649e69f533a0e1388de5308
pristine_git_object: 6042bb49d17afc240741d48762dcad3f92d36fd9
- src/Cvent/SDK/Models/Components/DistributionListInfoJson.cs:
- id: eae98f57df12
- last_write_checksum: sha1:b1e3bd0561c03ab900199be6d46e2f2c1c85f8f0
- pristine_git_object: 21cc947e3a83660b5caee3043dab462f6113de35
- src/Cvent/SDK/Models/Components/DistributionListInfoJsonInput.cs:
- id: f14dbd88403e
- last_write_checksum: sha1:8bb3be20b9cb18e0902160a02304969f1b01ce8c
- pristine_git_object: 335bb3c803b82696d196f6f79c938d3f328486ff
- src/Cvent/SDK/Models/Components/DistributionListSecurityTypeJson.cs:
- id: dc26acbe0c1e
- last_write_checksum: sha1:eaca65dd94cb807ef93937d6b182a6e1c4e54c51
- pristine_git_object: 67333b1f7ba603e78b65fb296b227735ccb0c829
- src/Cvent/SDK/Models/Components/DistributionListStatusJson.cs:
- id: 88e90d58eb4b
- last_write_checksum: sha1:1e06e7e1a3a5a04c05fe90054335e3def967612b
- pristine_git_object: ca4cba709502803e300621a70a989430b9dc374b
- src/Cvent/SDK/Models/Components/DocumentTypeJson0.cs:
- last_write_checksum: sha1:8f5278fc92bd2bf02c37d77b36b2283f43b8c7f6
+ src/Cvent/SDK/Models/Components/DistributionListInfo.cs:
+ last_write_checksum: sha1:93c6af9c8f23d38e316b2ad19afee56ac42f359f
+ src/Cvent/SDK/Models/Components/DistributionListInfoInput.cs:
+ last_write_checksum: sha1:9242cb411c4771144a42a8cda74bfd90f2b5828f
+ src/Cvent/SDK/Models/Components/DistributionListSecurityType.cs:
+ last_write_checksum: sha1:6822d7d888fcfd4354740af4aa0b558004062574
+ src/Cvent/SDK/Models/Components/DistributionListStatus.cs:
+ last_write_checksum: sha1:ec66b697157fd3eb3c70a8d54743c4fe09403d75
+ src/Cvent/SDK/Models/Components/DocumentType1.cs:
+ last_write_checksum: sha1:4389de3d3dc0cb6ad435444dcf7cd09c39a9cf61
src/Cvent/SDK/Models/Components/DonationItem1.cs:
last_write_checksum: sha1:422dddef3a5346d8a75c4c818ddcf2965413a1ab
src/Cvent/SDK/Models/Components/DonationItemsPaginatedResponse.cs:
@@ -11134,7 +10722,7 @@ trackedFiles:
pristine_git_object: ba2b71585601a13c424b5eb7054ce3a6417b5531
src/Cvent/SDK/Models/Components/EmailHistoryJson.cs:
id: d08cf1627811
- last_write_checksum: sha1:01a6356ee4c27b0438b6dacbc12670cff8c4bc39
+ last_write_checksum: sha1:93ec6ec403f0855443e9d698e8cf61a9a6270fd2
pristine_git_object: a71fccba7b8256374f932c7c23abdc2a41f2c8bd
src/Cvent/SDK/Models/Components/EmailHistoryJsonAttendee.cs:
id: c4771c5c4ac7
@@ -11154,7 +10742,7 @@ trackedFiles:
pristine_git_object: 67f744857e9b9776489f841da8fb294a8a3f10bc
src/Cvent/SDK/Models/Components/EmailJson1.cs:
id: ebdcec0b4e15
- last_write_checksum: sha1:454cc68a51e417b9413c1a69aa4466aceaa60407
+ last_write_checksum: sha1:e6eecc54de9cb99bd7aaeb5380a1688aee9d8678
pristine_git_object: be7df78b12aa0e944f404f6f0bb9ee9aa8e6a01c
src/Cvent/SDK/Models/Components/EmailJson2.cs:
id: 053ea3c5ca20
@@ -11192,28 +10780,24 @@ trackedFiles:
id: d3cd21b97e5b
last_write_checksum: sha1:274c22025e1fb660904099c2adb424f0f6c93587
pristine_git_object: a6aad773d96c504620cc9cbd61ea98dd8d593e21
+ src/Cvent/SDK/Models/Components/EmailTypeJson.cs:
+ last_write_checksum: sha1:3fcf8e83f9d2d09efce9c7606016b5a94c8cad31
src/Cvent/SDK/Models/Components/EmailTypeJson1.cs:
id: 1120baa15be4
- last_write_checksum: sha1:0489aa504e50a19083bca53f827d51cb5daed96d
+ last_write_checksum: sha1:0f0d3a67ac1182f3ca2ad5b8c8f88d153d79ece3
pristine_git_object: 2dfea6e70aebbbbdbc6474bf801974b04762dfaf
- src/Cvent/SDK/Models/Components/EmailTypeJson3.cs:
- id: f53d5aa95002
- last_write_checksum: sha1:74e83e58822d2a14c76efddee2d04a8689022902
- pristine_git_object: 99532eecaaa2536b1ce7540cdc7ff1fe4308f2cb
src/Cvent/SDK/Models/Components/EmailUndelivered.cs:
id: d4f44f9abdf8
last_write_checksum: sha1:83cb7987bc33d7d267b71ad0bee1a2083631e02d
pristine_git_object: febe34b952b92aa4997dc14ab249957e5779be77
- src/Cvent/SDK/Models/Components/EncodingProfileJson.cs:
- id: 39b430bcd2dc
- last_write_checksum: sha1:b83727b4f3bdb254b63fd371a3cec724765e1c52
- pristine_git_object: 1229d608db5fc9334b264658ff4f331ca9f258c7
+ src/Cvent/SDK/Models/Components/EncodingProfile.cs:
+ last_write_checksum: sha1:529f1fae761ef71aaaa860b03bfb82fa0898ebac
src/Cvent/SDK/Models/Components/EntityType1.cs:
last_write_checksum: sha1:3a2da8dc73c47b91c923b6bf6d0e4cae50e0ab87
src/Cvent/SDK/Models/Components/ErrorResponse1.cs:
- last_write_checksum: sha1:78d734f98ee3de9fe5b283e12ada816a09560936
+ last_write_checksum: sha1:092a91b8d443d2815656a39d6105d00399f052df
src/Cvent/SDK/Models/Components/ErrorResponse2.cs:
- last_write_checksum: sha1:52b75b68a9e9c070ad8551ccc1728d05581d6a06
+ last_write_checksum: sha1:d5343148c326c1181fb9192153375e5df71cd430
src/Cvent/SDK/Models/Components/ErrorResponseBase.cs:
last_write_checksum: sha1:5bf83ea33cfece5c78a522f87d3b26edb332f64f
src/Cvent/SDK/Models/Components/ErrorScimTypeJson.cs:
@@ -11233,11 +10817,13 @@ trackedFiles:
last_write_checksum: sha1:14b86fa0474fdf4ad4086deda148aa8b05bee7fe
pristine_git_object: f982dc2038682516d9bcff03c4c8531a6b35469e
src/Cvent/SDK/Models/Components/Event1.cs:
- last_write_checksum: sha1:b4b256d434c3f35b1fe5a9e77493480e1bba3ed4
+ last_write_checksum: sha1:5e55866cc6fcef452168cd8a635bb44167ea0469
+ src/Cvent/SDK/Models/Components/Event12.cs:
+ last_write_checksum: sha1:2a80adab8a4d4db88eb5eead0504d980c5b78ac8
src/Cvent/SDK/Models/Components/Event2.cs:
last_write_checksum: sha1:02bf3b6248216d93663bbb7dfc0d3d1d4237149d
- src/Cvent/SDK/Models/Components/Event21.cs:
- last_write_checksum: sha1:afb583a6f7c8dc0c8d4389d569f3c705db7ed322
+ src/Cvent/SDK/Models/Components/Event3.cs:
+ last_write_checksum: sha1:6b6a3464e547405763e427df517600850dcb7688
src/Cvent/SDK/Models/Components/EventActivityDetailsJson.cs:
id: 6b2f1b56e3c0
last_write_checksum: sha1:de430e4d1c65d115c9cafd5a0915048a1e7f9410
@@ -11254,10 +10840,6 @@ trackedFiles:
id: 8af4f8403fcf
last_write_checksum: sha1:827bb867b1f7c707dca631eb0f6c1fa4e267d5b6
pristine_git_object: da8f78f53be3f1dfce6992619b6e08a3f76ed6de
- src/Cvent/SDK/Models/Components/EventAllOf.cs:
- id: 51da9ed9632a
- last_write_checksum: sha1:00373850d3da023ecf1dcd951598daca0297b538
- pristine_git_object: 9620f2e1710cc8013cca3fa2664550203a50273e
src/Cvent/SDK/Models/Components/EventAsyncResponse.cs:
id: df0219e4f417
last_write_checksum: sha1:36424a375ef39a683af45c018b7b09a4e25fd484
@@ -11314,10 +10896,8 @@ trackedFiles:
id: 653a89a611cf
last_write_checksum: sha1:c73b0fb524c1b33c2fafc7da4daa88d99fe3bcd4
pristine_git_object: e5adfeb4ee2604e023a2faed2a487c34664b7f9b
- src/Cvent/SDK/Models/Components/EventContactIdJson.cs:
- id: edbbeff345a6
- last_write_checksum: sha1:2130ea03b601f2aeba295ff76cd8f17168753c8a
- pristine_git_object: 0a28a2f5b8e8ab9adef6bec1349802234a276481
+ src/Cvent/SDK/Models/Components/EventContactId.cs:
+ last_write_checksum: sha1:2373638bd70734d3bdf2f5beb3bfc58739230eb2
src/Cvent/SDK/Models/Components/EventCopy.cs:
id: dffbd58c80c5
last_write_checksum: sha1:5f03e6b6b36a36f96dc6f11af5373d3b92b38472
@@ -11336,7 +10916,7 @@ trackedFiles:
pristine_git_object: d8e2d2d12d2edff5a68a653b6e9cae45ad106e8b
src/Cvent/SDK/Models/Components/EventEmailsPaginatedResponse.cs:
id: aaa70e2734ee
- last_write_checksum: sha1:91cc99a866011ac3b30b9c7575388057b47d4897
+ last_write_checksum: sha1:c08f60bacb1fe4b4e9e73634531af81e8cd0c409
pristine_git_object: f58f48ea2e6fcdcbca846c008098171f822cb3d1
src/Cvent/SDK/Models/Components/EventFeatureJson.cs:
id: 39abe96ad94a
@@ -11370,34 +10950,30 @@ trackedFiles:
id: b97a635fc2ff
last_write_checksum: sha1:648d87d94683ccadbdc2911cf286d28e82fd3fbc
pristine_git_object: b9e840bb2934b338cfc56a736089f9a52e0c829b
- src/Cvent/SDK/Models/Components/EventFormatTypeJson0.cs:
- last_write_checksum: sha1:71a2d4e80435c4242eaba91ee70595aaeb5817f8
+ src/Cvent/SDK/Models/Components/EventFormatType.cs:
+ last_write_checksum: sha1:3bfc6d0e68fc2a7ca1d13de04f30420a9e95b142
src/Cvent/SDK/Models/Components/EventId.cs:
last_write_checksum: sha1:672f680757a8ac030a980f0b47467f06bb797c5d
src/Cvent/SDK/Models/Components/EventInput.cs:
id: 7fe46952c48b
- last_write_checksum: sha1:5931e42bc00b55c43361e2054b6465459cb630ab
+ last_write_checksum: sha1:8a8b7e18341536783af9ccde671799192c420152
pristine_git_object: 3b581221c6734962cc3acb1c4cd406cdaa5404d1
- src/Cvent/SDK/Models/Components/EventJson0.cs:
- last_write_checksum: sha1:06464fc20f392cee9d59b2e21018257f2928a79a
+ src/Cvent/SDK/Models/Components/EventJson.cs:
+ last_write_checksum: sha1:1fde40afc94011afdba755e04133054b39f67950
src/Cvent/SDK/Models/Components/EventJson1.cs:
- last_write_checksum: sha1:792d8edb836b335c575d5a56f03a9d3feec05732
- src/Cvent/SDK/Models/Components/EventJson2.cs:
- last_write_checksum: sha1:647f06a909bdcd83e839cba04526ff27c4cedec3
- src/Cvent/SDK/Models/Components/EventJson4.cs:
- last_write_checksum: sha1:cdff0cd2b00c8fe07534ce85393ea23771a7ca29
+ last_write_checksum: sha1:3532f306e7a28649ef8c4057089836c901442e42
+ src/Cvent/SDK/Models/Components/EventJson3.cs:
+ last_write_checksum: sha1:59dd51cc86ad3c208c38cd302ba257c19f590a5c
+ src/Cvent/SDK/Models/Components/EventJson5.cs:
+ last_write_checksum: sha1:b7168531f84a4c05bf72495034d40247d8fb9a10
src/Cvent/SDK/Models/Components/EventJson6.cs:
- last_write_checksum: sha1:03adee7bab2f2daa14097de54df220ba83c35061
- src/Cvent/SDK/Models/Components/EventJson8.cs:
- last_write_checksum: sha1:cf50ea96612a33320c47319843b20540c7139fc1
+ last_write_checksum: sha1:8d74a28e7734e8cdca78dbe33d3699ec2db71676
src/Cvent/SDK/Models/Components/EventLinksJson.cs:
id: c257825bf07a
last_write_checksum: sha1:a75b356f65d153cea5b2abee810f9618a2abad8e
pristine_git_object: c3b12d2cf18adb0b7bcfa1bbc52b131b5345bfb1
- src/Cvent/SDK/Models/Components/EventLiteJson.cs:
- id: ae6ba97c318a
- last_write_checksum: sha1:4456bbe43f2392d9a70931758c22d371530f403b
- pristine_git_object: 6848d0b58eb8da5112d3eaca145cbe2eb1cf3af9
+ src/Cvent/SDK/Models/Components/EventLite.cs:
+ last_write_checksum: sha1:e2b85b10c33e12a4287564b441d7b76e015273a3
src/Cvent/SDK/Models/Components/EventLookup.cs:
id: 5e10182f389b
last_write_checksum: sha1:91a533fd348bd79d3718686973152346aaa7430d
@@ -11406,6 +10982,8 @@ trackedFiles:
id: 5d1025a5b5d1
last_write_checksum: sha1:e8ced55db123bcd39e3877ad1e39bb2cbd066a03
pristine_git_object: 361015e3f9f03221f8ec08f57bc265e573969b0c
+ src/Cvent/SDK/Models/Components/EventOrganization1.cs:
+ last_write_checksum: sha1:7f214e6fcbd9a0057b8a49e75ef59644c8e4a742
src/Cvent/SDK/Models/Components/EventPageVisitTracked.cs:
id: 5a6a659bfc22
last_write_checksum: sha1:fb36e21a969ac3ec700332323fbc0cd9af41b792
@@ -11422,7 +11000,7 @@ trackedFiles:
pristine_git_object: 2b0124d5681c9f15340b1144bdd6807ed327c978
src/Cvent/SDK/Models/Components/EventQuestionJson.cs:
id: d6cca10f9c01
- last_write_checksum: sha1:b45fc172e61d5d4bfc9a6b76a3c285b8a67df4d0
+ last_write_checksum: sha1:93c66a6fd966e7ea66fab7a08a4345796f9ac1d3
pristine_git_object: 93d5e013b87807be22fadbfc3da5ff830135b9e6
src/Cvent/SDK/Models/Components/EventQuestionJsonAdmissionItem.cs:
id: ec301cf3194a
@@ -11498,7 +11076,7 @@ trackedFiles:
pristine_git_object: e6cc9528e07b9eee9ae21c5579a64611160e31ae
src/Cvent/SDK/Models/Components/EventSurveyQuestionJson.cs:
id: c403f1c579c2
- last_write_checksum: sha1:10dd56f7aa93fa057d7b7afec4526ae4c8e6a33f
+ last_write_checksum: sha1:9d6798361e8373d08d769aed7c57f1127ecc5523
pristine_git_object: 592ecf2945aee4d64b42e8b06bcae99f4a9173a4
src/Cvent/SDK/Models/Components/EventSurveyQuestionsPaginatedResponse.cs:
id: 2104f002c5de
@@ -11506,7 +11084,7 @@ trackedFiles:
pristine_git_object: 52b3bd84d543f0c6e4b042055b9b53ed2874a3a0
src/Cvent/SDK/Models/Components/EventSurveyRespondent.cs:
id: e00e675b4e0c
- last_write_checksum: sha1:9c49bef79330ecdd09e0bd057a14adbfedc1f13b
+ last_write_checksum: sha1:c3be7371edb5d3adddcdf81f4cbcb7344efd7163
pristine_git_object: ebd2c02b353d118b0d4e3da4699a4f0ce2f5ae1a
src/Cvent/SDK/Models/Components/EventSurveyRespondentAttendee.cs:
id: dafe508009f2
@@ -11530,7 +11108,7 @@ trackedFiles:
pristine_git_object: 9e17421739d9f608acb9d9e4f970bf504a2945ee
src/Cvent/SDK/Models/Components/EventSurveyResponse.cs:
id: 69b8df579c6e
- last_write_checksum: sha1:6fb504e925fc7f393a6f9ae4382c48dda37c1b44
+ last_write_checksum: sha1:f8e4c637e2dcf7773646f7f656c76d149f8b13cd
pristine_git_object: 046cf4941e33df73ab9e0a99170068320897c913
src/Cvent/SDK/Models/Components/EventSurveyResponseInput.cs:
id: f6f26d98387d
@@ -11556,19 +11134,17 @@ trackedFiles:
id: a7d07771fa87
last_write_checksum: sha1:14f623c0e04169afb11276f566807edaa0104351
pristine_git_object: 220adf6258903c5727f89e4c66e2370667564863
- src/Cvent/SDK/Models/Components/EventTypeJson0.cs:
- last_write_checksum: sha1:18e5e40fce66b7a6ff3266c3df74e151a0260564
- src/Cvent/SDK/Models/Components/EventTypeJson1.cs:
- id: 06afe15d793d
- last_write_checksum: sha1:4a47f2e9f9ba0ae9f41695fa107fdafed94ac6a2
- pristine_git_object: 23cbc9ae9d7559b3ea666ac0bb6f04944cb41ff5
+ src/Cvent/SDK/Models/Components/EventType1.cs:
+ last_write_checksum: sha1:97e075c130158b84ac6653efde07c47a179c8c71
+ src/Cvent/SDK/Models/Components/EventTypeJson.cs:
+ last_write_checksum: sha1:883c295d33d99a9739f8adae6d32a39ffa04da6f
src/Cvent/SDK/Models/Components/EventUpdate.cs:
id: 81469efd695c
- last_write_checksum: sha1:8829d9c509db91356ef779c487e5afd6c562fc9e
+ last_write_checksum: sha1:ba3f3e7d3b3ee13f6b886e1eff080f4200287859
pristine_git_object: ed47c3f13b5fb02a2a69d392166af8b6fa23e09e
src/Cvent/SDK/Models/Components/EventUpdateInput.cs:
id: e8ee4482386e
- last_write_checksum: sha1:a199af5959dd8c42e00e49dff0a1518fab2298d5
+ last_write_checksum: sha1:af8cff7fa7659183d2a6269e6c5425ab7afd5605
pristine_git_object: 29f3a801bc6139fb4f0e763f609c470ab05f78c8
src/Cvent/SDK/Models/Components/EventUpdateLookup.cs:
id: 55d320b6e0fe
@@ -11646,7 +11222,7 @@ trackedFiles:
pristine_git_object: 6b373eda308666a820f0eb513c68b64337fc5854
src/Cvent/SDK/Models/Components/ExhibitorCategoryRequest.cs:
id: a2ac410fe099
- last_write_checksum: sha1:ac10e68d6b42d1778583351319ad99c9423768bb
+ last_write_checksum: sha1:0c63479a6009787fbb78345605a56a34bd088e6e
pristine_git_object: 745440274e17593d664edf866f836644b0b160eb
src/Cvent/SDK/Models/Components/ExhibitorCategoryRequestType.cs:
id: 4ffbc1c8b7f9
@@ -11654,7 +11230,7 @@ trackedFiles:
pristine_git_object: e8f50ed7c64b53002e8b048d753b28a940cbf975
src/Cvent/SDK/Models/Components/ExhibitorCategoryResponse.cs:
id: bae5aa408e9d
- last_write_checksum: sha1:d68d92455de0811d098bf46d0318ebd0ea89a5da
+ last_write_checksum: sha1:3e62232e3f5b028f533646825f6dcbb8efd82457
pristine_git_object: 242e55375b82c139bb2fa880779737e20e249438
src/Cvent/SDK/Models/Components/ExhibitorCategoryResponseType.cs:
id: cf846840e905
@@ -11686,11 +11262,11 @@ trackedFiles:
pristine_git_object: 59eebd497e809f65cae3a2f6391eb0425b14123a
src/Cvent/SDK/Models/Components/ExhibitorRequest.cs:
id: 3098250aec03
- last_write_checksum: sha1:61867a5ac4b166e06fd77cd3f3c6e259f6b90471
+ last_write_checksum: sha1:c42d0d37d7be931eeedcf6e83e3bb8848da4e642
pristine_git_object: 972cbe8a3b519ddf720158216131e98801d090fe
src/Cvent/SDK/Models/Components/ExhibitorResponse.cs:
id: 534de41880d9
- last_write_checksum: sha1:83d67dd853594628137c1c3cadb8373ff277ae45
+ last_write_checksum: sha1:634830dd53910a05673b68a1b537cce365aee6a9
pristine_git_object: f605aa98c00a95ba721969836335b16ece306e0a
src/Cvent/SDK/Models/Components/ExhibitorSocialLinkOpened.cs:
id: c37adb32bd51
@@ -11730,7 +11306,7 @@ trackedFiles:
pristine_git_object: dab4ffe1a2f15db3e4c0b5b738e04a6da852d8c7
src/Cvent/SDK/Models/Components/ExistingAudienceSegment.cs:
id: 14998b71cf4f
- last_write_checksum: sha1:c877392712183c45d0c000f278089087676cd88a
+ last_write_checksum: sha1:6e2d5531ba9496f0ca9e60fbeb2268f63992ad92
pristine_git_object: bff0b37736670ed7c97e9d5f6a8dce2a08064139
src/Cvent/SDK/Models/Components/ExistingAudienceSegmentCreationTypeJson.cs:
id: 50184f7e471e
@@ -11738,7 +11314,7 @@ trackedFiles:
pristine_git_object: ce2202f7a734f71801d5e6f400037e0456dd9940
src/Cvent/SDK/Models/Components/ExistingAudioTrack.cs:
id: dc3dd35e551a
- last_write_checksum: sha1:3b17336c12d607bdf1d6890a0b3ed26b378cd615
+ last_write_checksum: sha1:4b3f87f198cebeeaf596f3c9301fbe6f97b00c2e
pristine_git_object: 2821bf0e549319acd1086c0f7db3708b1a2df6be
src/Cvent/SDK/Models/Components/ExistingBadgePrintJob.cs:
id: 91e64479831b
@@ -11754,19 +11330,19 @@ trackedFiles:
last_write_checksum: sha1:c01857b2d9c009bedef08cafb31f72cc849cab22
src/Cvent/SDK/Models/Components/ExistingCustomField.cs:
id: 90eb23a61acd
- last_write_checksum: sha1:08db44e4a6380ff3727fd95d00a4907160fd3511
+ last_write_checksum: sha1:ad4abddc4be84c7f3b7936b8a550969401b0c364
pristine_git_object: 25b4477e7f11de2eb1a6573ce6aa07bd4f6f4e58
src/Cvent/SDK/Models/Components/ExistingCustomFieldDetails.cs:
id: 5a90625864fc
- last_write_checksum: sha1:132de2bf9bb381123a434f4ff70b9cc9ef5f543d
+ last_write_checksum: sha1:2e00d8571e21bce012acfd5ccd681f78b3c13e78
pristine_git_object: eea883bf93c6da9c72e5f74b46ddd5c995767270
src/Cvent/SDK/Models/Components/ExistingCustomFieldDetailsInput.cs:
id: 181a3b2dd1b2
- last_write_checksum: sha1:bcc09ba547d378477d255a70b7fe700861a8e931
+ last_write_checksum: sha1:97c257d2202ba9c2712bad3d713caba5295bc24f
pristine_git_object: 227b72277699a0d4e53b109254b08b73e41601dc
src/Cvent/SDK/Models/Components/ExistingCustomFieldInput.cs:
id: 41c36381a272
- last_write_checksum: sha1:99b860f4faecf370a42ae35193f81d17b9ccb957
+ last_write_checksum: sha1:5b651298a2f3125d9cab72df7e52fb5c4c7741ed
pristine_git_object: 3685552286d85e0fa658423b35374732f91eaf07
src/Cvent/SDK/Models/Components/ExistingDiscountCode.cs:
last_write_checksum: sha1:9a7c254ac436a776d8828767e723f271ab9e9740
@@ -11788,21 +11364,21 @@ trackedFiles:
pristine_git_object: 3b83d12fd62699cad43eff4e760eef518f406e4e
src/Cvent/SDK/Models/Components/ExistingDurationType.cs:
id: 4045def7aa59
- last_write_checksum: sha1:06c60925b2e21413bcb0031a506072156b3a5d9c
+ last_write_checksum: sha1:26afc224f3941340c82e91a89a6a0b3995ba8d0a
pristine_git_object: f15f0d5eace596bd5f1bee82d038e73501206520
src/Cvent/SDK/Models/Components/ExistingELiteratureRequestDataForLead.cs:
- last_write_checksum: sha1:b680dbcf99b9ff4b9babbf6849ef5d1c5b313fe8
+ last_write_checksum: sha1:021a950d56077b9fff6cfb6a7653c5e4c0ead488
src/Cvent/SDK/Models/Components/ExistingExhibitorAnswer.cs:
- last_write_checksum: sha1:fd9a02cb07b14175ff0f875e1f8735fdc91e43c2
+ last_write_checksum: sha1:7d58ec407cfd4062b72ced6a1fa21ea7114be9c8
src/Cvent/SDK/Models/Components/ExistingExhibitorAnswerInput.cs:
- last_write_checksum: sha1:d81647300fc81bf6c9e6bc4074abd4b9b21c412e
+ last_write_checksum: sha1:1965f11ce8d11afcf71a5b36dcf171843bdc3f0f
src/Cvent/SDK/Models/Components/ExistingExhibitorQuestion.cs:
id: 2d3fdf89b04d
- last_write_checksum: sha1:a095841c30cab0fd620ae97d1ff815e1b9839ae6
+ last_write_checksum: sha1:9b232abc5aa6599023682bd203a0144837a46e9a
pristine_git_object: 961eb9676acead24f86d39032db4f8733e998581
src/Cvent/SDK/Models/Components/ExistingFile.cs:
id: 4a64f440b155
- last_write_checksum: sha1:b65b2994c819ad8febf26c76e2e72b73eaf102f4
+ last_write_checksum: sha1:0b75c1769ea54fff1494245f0850787147ad3246
pristine_git_object: d2240e2220f930ff27a977e2b695971a7ad7e7db
src/Cvent/SDK/Models/Components/ExistingHub.cs:
id: 887e4731926c
@@ -11862,7 +11438,7 @@ trackedFiles:
pristine_git_object: 1469c3db41fbbbde1c4ef82b60c3f5cb738f0eb7
src/Cvent/SDK/Models/Components/ExistingSpeaker.cs:
id: 33af6f2a6713
- last_write_checksum: sha1:a63ba65c9c122177fefc678e37bac518ce386d22
+ last_write_checksum: sha1:f0856a27f641a3c504ed467bc52141604483f36e
pristine_git_object: 0450607524e4328ad44bf03b4d745f7663ad6b8b
src/Cvent/SDK/Models/Components/ExistingSpeakerCategory.cs:
id: eb3db23837e1
@@ -11874,11 +11450,11 @@ trackedFiles:
pristine_git_object: 8bdf3fddfba7220b019305a3ee35bac578fb8883
src/Cvent/SDK/Models/Components/ExistingSpeakerInput.cs:
id: afe3231bba29
- last_write_checksum: sha1:2ec2ad72e49e22bce74b628abf8c4c20e60a2bb4
+ last_write_checksum: sha1:ef357ee14703d7a57843831682df47deee0ca7a3
pristine_git_object: 4ae49f9bc920650bbb1e96553c365e0c1f2ad099
src/Cvent/SDK/Models/Components/ExistingSponsorshipLevel.cs:
id: ef69e47710eb
- last_write_checksum: sha1:2cb2b131eb9ba082a255c06f98637ea70185882e
+ last_write_checksum: sha1:86ed8a9ba7831be3dd05c88a91fd94d129e146a8
pristine_git_object: f7307c72852d965a236e3025548d7ea146f4df20
src/Cvent/SDK/Models/Components/ExistingTableWithSeats.cs:
id: 93aace9e468e
@@ -11886,7 +11462,7 @@ trackedFiles:
pristine_git_object: 8447e628f3db64dfde0477784bfdf3f2d744f294
src/Cvent/SDK/Models/Components/ExistingVideoResponse.cs:
id: d95fe9d5ade7
- last_write_checksum: sha1:041362d17797944e1dc8623849c384e3f59d221e
+ last_write_checksum: sha1:85753b7e367ff7b9375aa2a7ab644a0a9362b15c
pristine_git_object: 561742328060a5ce905010f8b8b4a9b478db37cf
src/Cvent/SDK/Models/Components/ExistingVideoResponseUUID.cs:
id: ca1bcdcfd8f9
@@ -11894,11 +11470,11 @@ trackedFiles:
pristine_git_object: 208adafef78cc98df5bf1e43e4ee42e2c3b69f51
src/Cvent/SDK/Models/Components/ExistingVideoTextTrack.cs:
id: 5c48beeaf18a
- last_write_checksum: sha1:580520a9c35e5a0df14853ccf14984378e4e9d59
+ last_write_checksum: sha1:e0a483a96a13fac3e439619825623204e181cca7
pristine_git_object: 71aebe8fb65516118a8346163407a9bb36e0c1a9
src/Cvent/SDK/Models/Components/ExistingVideoTextTrackInput.cs:
id: 5d29547612ff
- last_write_checksum: sha1:f91dcb129c02a93919e004eda137c533582ab907
+ last_write_checksum: sha1:0ad04c68ad4cdce02f47c57e4c4cef642116f315
pristine_git_object: 257fa0a066fe07ff1393f912fff838094d24cf31
src/Cvent/SDK/Models/Components/ExistingVolumeDiscount.cs:
last_write_checksum: sha1:2d8201b6ef835933eda3f7b112415899daf86997
@@ -11916,7 +11492,7 @@ trackedFiles:
pristine_git_object: 21f8fcacd4b97b809c418f0f0d77c8311cd6f65e
src/Cvent/SDK/Models/Components/ExistingWeblink.cs:
id: 75f7cb372531
- last_write_checksum: sha1:d38cf3bd40d71e8ed57d2a7d510a2196b72218b5
+ last_write_checksum: sha1:b33d292902f315a98ee8d7513357d840af3c9ca4
pristine_git_object: 6446f6e24bf21c2db149c7cc7770e8f2dfcd584f
src/Cvent/SDK/Models/Components/Expand.cs:
id: 01ddd7cd62b3
@@ -12016,10 +11592,8 @@ trackedFiles:
id: 42c06048d704
last_write_checksum: sha1:41c24805553664992f3c16f4bbe5d972a04fdc12
pristine_git_object: a27edb49e500c4dde6b82e631a5a40050ab2f25a
- src/Cvent/SDK/Models/Components/FairSeasonTypeJson.cs:
- id: c02b82d8e2ea
- last_write_checksum: sha1:6c4749713e5101ef623272dc3bba28d126e872a3
- pristine_git_object: c8afffd3e22a5fd83b3d53667997afa098ab75c1
+ src/Cvent/SDK/Models/Components/FairSeasonType.cs:
+ last_write_checksum: sha1:710683671896204ff718b22976ade3b39c815753
src/Cvent/SDK/Models/Components/FeatureTierJson.cs:
id: 1cc993247415
last_write_checksum: sha1:ba54186e1009f387fa94b5f068f5d7c3cafa0611
@@ -12044,17 +11618,17 @@ trackedFiles:
id: 2921d8ebd161
last_write_checksum: sha1:34cbd861ca0cdda0f984c33fe013d662d0ec57b8
pristine_git_object: 7af6071591fa17861d3c684a078c4f8dd569f1ea
+ src/Cvent/SDK/Models/Components/Field.cs:
+ last_write_checksum: sha1:5b91c3133f4ee7a081352723368468a382089123
src/Cvent/SDK/Models/Components/FieldJson.cs:
- last_write_checksum: sha1:fd8e97868d4f3b368cb0e6863c16fd140d914e28
- src/Cvent/SDK/Models/Components/FieldJson2.cs:
- last_write_checksum: sha1:2231b2b40b84f90e06e396949b7244f0ac187e22
+ last_write_checksum: sha1:1a4fde87ca5206e7f11e6e73dc6cfb01ff3e1dc8
+ src/Cvent/SDK/Models/Components/FieldType.cs:
+ last_write_checksum: sha1:55fefa4fcce971d2444f4bdad130d02c2954f5f1
src/Cvent/SDK/Models/Components/FieldTypeJson.cs:
- last_write_checksum: sha1:ed14ac015cb66dc78f494adca9362d1fd2c3dc3c
- src/Cvent/SDK/Models/Components/FieldTypeJson2.cs:
- last_write_checksum: sha1:39289760dc63074b57875443d33d112ed6031fde
+ last_write_checksum: sha1:2eadbf953a6780d134500f69bdb43f94d9516dd1
src/Cvent/SDK/Models/Components/FileInput.cs:
id: a8764bcc0052
- last_write_checksum: sha1:940d46ff482eff9592b6124353994379ae957c42
+ last_write_checksum: sha1:92eff982a33edc358fddd0fd69f4144ecf897b7a
pristine_git_object: 6655f3c69972a51305da4f319ef79d7b68a8fd4e
src/Cvent/SDK/Models/Components/FileLinkJson.cs:
id: 71c35c2ec0c1
@@ -12088,10 +11662,8 @@ trackedFiles:
id: 5d27545dae1c
last_write_checksum: sha1:d4e0c722e99b6353af065131ca051302b8216525
pristine_git_object: a77639ae798a1435bb5f981583805bc4f2e238cd
- src/Cvent/SDK/Models/Components/FormatTypeJson.cs:
- id: 190a4936ef28
- last_write_checksum: sha1:4fb563fa5f085e05483ced7b2c83262b238f20f9
- pristine_git_object: 70f33210b6cedff0ed00333b42518fdcee9b26dd
+ src/Cvent/SDK/Models/Components/FormatType.cs:
+ last_write_checksum: sha1:469ba917b4381f25dbc273c0ce967ee78c009763
src/Cvent/SDK/Models/Components/Frequency.cs:
id: 8f3e420d24ed
last_write_checksum: sha1:d4a8ff2682354af4e14a30dca21b7dc3d00bae8b
@@ -12100,10 +11672,6 @@ trackedFiles:
last_write_checksum: sha1:3872720ee069e4d67ae9320e3e3f354d7b188a4f
src/Cvent/SDK/Models/Components/Gender1.cs:
last_write_checksum: sha1:bb9808b5c27c71031b42dcad210bb239f256da7a
- src/Cvent/SDK/Models/Components/GenderJson.cs:
- id: 6fcc629e7c58
- last_write_checksum: sha1:b624a14f5d585327e422f3844fce482a568ab668
- pristine_git_object: 25702ffb86e87b930da576b67518ffa69368a209
src/Cvent/SDK/Models/Components/GeneralLedger.cs:
last_write_checksum: sha1:ccbd6d05dd64e77dc267332ece7be7738457dff1
src/Cvent/SDK/Models/Components/GeneralLedger1.cs:
@@ -12126,22 +11694,20 @@ trackedFiles:
last_write_checksum: sha1:fcd2030c13de87c602f50b8d8f975f4e4ce0f518
src/Cvent/SDK/Models/Components/GuestJson.cs:
id: df372511b10b
- last_write_checksum: sha1:71e07425a27c64f6a3fec959b9cb22f5b19d9634
+ last_write_checksum: sha1:5afafb14d8c5a1b00fa22dbf3b2a0b4137c91709
pristine_git_object: 3091bad4d24e2784e83cd8ce8a89c92df873e44f
- src/Cvent/SDK/Models/Components/GuestRoomOccupancyJson.cs:
- last_write_checksum: sha1:c11cb0495fc8833c42fa1df0cd4f01bbf6eabe76
- src/Cvent/SDK/Models/Components/GuestRoomOccupancyPerRoomTypeJson.cs:
- last_write_checksum: sha1:86105d422c550202336e12506201a14d55c75459
- src/Cvent/SDK/Models/Components/GuestRoomTypeJson.cs:
- last_write_checksum: sha1:9f1a69275b33fb6e0192a88d53f8e087c8a17cf6
+ src/Cvent/SDK/Models/Components/GuestRoomOccupancy.cs:
+ last_write_checksum: sha1:d3609f8c8c3ba91fc7a6627a3a0ac873c262373b
+ src/Cvent/SDK/Models/Components/GuestRoomOccupancyPerRoomType.cs:
+ last_write_checksum: sha1:ddb9e42affe02be34b8a0df3639f6e207af78db2
+ src/Cvent/SDK/Models/Components/GuestRoomType.cs:
+ last_write_checksum: sha1:5c745abcd7c15952d868ce82ae4ebdef85638444
src/Cvent/SDK/Models/Components/HTTPMetadata.cs:
id: 9b0313abfd1f
last_write_checksum: sha1:b0fa7127e935a23df4273ebdc5c41e27f5b8a3b4
pristine_git_object: 7b3201d279021fa55e67e42f2040810095a0aece
- src/Cvent/SDK/Models/Components/HlsInputWithClipsJson.cs:
- id: 821aba22af64
- last_write_checksum: sha1:91efe55cfa5a8d9c3245b636157c641d50fe6ddc
- pristine_git_object: ca0924819d4ad3166062703ec388758c0017e1c1
+ src/Cvent/SDK/Models/Components/HlsInputWithClips.cs:
+ last_write_checksum: sha1:8782856a8504ece732aad0256a71f4c53aa7a136
src/Cvent/SDK/Models/Components/HomeAddress.cs:
id: 873d53d7166d
last_write_checksum: sha1:0d3a2adda9a817649187f04b1efc394cfb9f6358
@@ -12187,7 +11753,7 @@ trackedFiles:
last_write_checksum: sha1:60ad39d585ba6105979b704216187ed36292efc3
pristine_git_object: ac8dc1f94c5e80edaa3ed047ebff7f2f4e29f13f
src/Cvent/SDK/Models/Components/HotelRequest.cs:
- last_write_checksum: sha1:37d1c268a06f1e95604b1d60bae2e0cc7a7a4dd8
+ last_write_checksum: sha1:acf24104e0d9bbc981cbce9840db5002afb735a4
src/Cvent/SDK/Models/Components/HotelRequestRequesterType.cs:
last_write_checksum: sha1:ec1b62eae2f38923ea79b5326407dc0a936184a3
src/Cvent/SDK/Models/Components/HotelReservationDetail1.cs:
@@ -12210,7 +11776,7 @@ trackedFiles:
pristine_git_object: 3a979eb32582484e3bb0bdfb58d954ec5fc4ccfa
src/Cvent/SDK/Models/Components/HousingEventHotel.cs:
id: b2463a95b9b2
- last_write_checksum: sha1:30074e82da7dcc4fda2bf57cc5878bf631b97a58
+ last_write_checksum: sha1:5ab76b5a51b2b94cb5878df5ca5e353482694987
pristine_git_object: 1c490dfde5ec2980fc6ded5fa695fecc85ec7c73
src/Cvent/SDK/Models/Components/HousingEventHotelsList.cs:
id: fcf56a41e3d8
@@ -12230,7 +11796,7 @@ trackedFiles:
pristine_git_object: 064375264e3e0e6dcc688a5b93cd6e3766752bbf
src/Cvent/SDK/Models/Components/HousingEventSummaryList.cs:
id: ccecbf0cc408
- last_write_checksum: sha1:2b216e6d978b1fbb41df0edf1f46cd685f1336fd
+ last_write_checksum: sha1:b67a0177170254f83d3948f519e42288596e61c3
pristine_git_object: 0b62dfe562229f02634080af96e6c8c37b749a02
src/Cvent/SDK/Models/Components/HousingReservation.cs:
last_write_checksum: sha1:1fc7b2726b3970c56b80115cda2888a020ddfb83
@@ -12260,16 +11826,14 @@ trackedFiles:
id: 32889354e50b
last_write_checksum: sha1:ef49f25c7a7f2b17b155f4c5fc5fd598d3b6abeb
pristine_git_object: 239546f2d0b228b5dac10ce47f0a23f3bcc4d68b
- src/Cvent/SDK/Models/Components/IdJson.cs:
- id: 4fed2eb606a8
- last_write_checksum: sha1:133a30725de1e8c8d1d3e6a1018762a101c1605a
- pristine_git_object: 7abb0bd14be74dfad59009b9dff5b3a58e269789
+ src/Cvent/SDK/Models/Components/IdOnlyEntity.cs:
+ last_write_checksum: sha1:2d599914f5f4b2fd52bd7bd3a7ee65fc185cb04a
src/Cvent/SDK/Models/Components/ImageLinkJson.cs:
id: a5d926471cbd
last_write_checksum: sha1:8d2f3bb4bf9f24477d37c542d554a64a4e908921
pristine_git_object: d739f51a390f93f9cb7ea3d54394a11eea78dc55
- src/Cvent/SDK/Models/Components/IndustryJson0.cs:
- last_write_checksum: sha1:837fe05c4f3c27dfe8d03db5023e4ad5071c4798
+ src/Cvent/SDK/Models/Components/Industry1.cs:
+ last_write_checksum: sha1:736b6d6ac6db5ee65e43a8947df4d6195b5bda98
src/Cvent/SDK/Models/Components/InventoryDetailsList.cs:
id: d7f71bc35459
last_write_checksum: sha1:fd29122d51937deeebfac00ea97777bff0cd3da4
@@ -12288,7 +11852,7 @@ trackedFiles:
pristine_git_object: f58b0a390ef93b602653829a3ddc430b43fc38ba
src/Cvent/SDK/Models/Components/InvitationListPaginatedResponse.cs:
id: ab3a4f4ebc94
- last_write_checksum: sha1:98b0ea908f6d3c8b3bb95aecb6b7261f621c1f9c
+ last_write_checksum: sha1:e28de9300b4c4ad593445e9f41d1503f58bdd31e
pristine_git_object: 545a6e90bba086589a2857ceb73eeccfee392464
src/Cvent/SDK/Models/Components/InvoiceFile.cs:
id: 3a6aca099fb1
@@ -12337,7 +11901,7 @@ trackedFiles:
last_write_checksum: sha1:ed6739b0911576358dfebdbb8218f5367825ef56
pristine_git_object: 75eedb91b8793371c4b3b70bd5ce877b258711fd
src/Cvent/SDK/Models/Components/Lead.cs:
- last_write_checksum: sha1:4b0952d01bfa04d87edebf65b7e796f27227f273
+ last_write_checksum: sha1:7d4622978812814a69e80933d18ed361b69ee68c
src/Cvent/SDK/Models/Components/Lead2.cs:
last_write_checksum: sha1:9069c569143bed0abf09b876cf1a32d243243cc3
src/Cvent/SDK/Models/Components/LeadInboundCreated.cs:
@@ -12349,13 +11913,13 @@ trackedFiles:
last_write_checksum: sha1:dbc8f836abe6e8c9d5e3a19ac17c578d015b2b81
pristine_git_object: 4553427bb5bd8cf97a9fff6ae4a94d3ed7c1c747
src/Cvent/SDK/Models/Components/LeadQualificationAnswers.cs:
- last_write_checksum: sha1:e214f08e6ce726ad23e897154b7a810b598a6c27
+ last_write_checksum: sha1:bd9ae3cd69375953616873f086809ca6575309ed
src/Cvent/SDK/Models/Components/LeadQualificationAnswersListResponse.cs:
id: 4af96eecb922
last_write_checksum: sha1:779da8479fbf557bb51f283731f05282fbada728
pristine_git_object: 887849881903ed4f53c89add35c38fac2c2de161
src/Cvent/SDK/Models/Components/LeadQualificationQuestion.cs:
- last_write_checksum: sha1:5d694472e838e3715aa994d6386b68d3fa03eada
+ last_write_checksum: sha1:58aaf767771edd1a3b716be7e19447e6b1788d77
src/Cvent/SDK/Models/Components/LeadQualificationQuestionType.cs:
last_write_checksum: sha1:5e1db9954809c44a2763f7ddb3888bf26cd6b582
src/Cvent/SDK/Models/Components/LeadQualificationQuestionsListResponse.cs:
@@ -12372,20 +11936,18 @@ trackedFiles:
pristine_git_object: 3f4e3e84aa86851532f24e2bcfae18432212a3e9
src/Cvent/SDK/Models/Components/LeadQualifiedQuestionResponseJson.cs:
id: d9d4853e3f77
- last_write_checksum: sha1:f839ba1fbb4a73553e027f9da6ae63f2643a426c
+ last_write_checksum: sha1:734376498e01c0bda707cb978209d7ed0ef6ce2f
pristine_git_object: e38e7e42829bd7b7663d188fb2dbe7bec7639cec
src/Cvent/SDK/Models/Components/LeadScanned.cs:
id: b1565d41297f
last_write_checksum: sha1:40caeb6a0e82765d3a6e8804d1e45aab858246b8
pristine_git_object: 4221ff324bfb7116db7f6a8a6332b86abed2cce7
src/Cvent/SDK/Models/Components/LeadSource.cs:
- last_write_checksum: sha1:ca62e0c4818a03dc805dffa827b59a78d9b0fe5c
+ last_write_checksum: sha1:ad11bd2e7d049938f36d55fb4a8511c53d908d29
src/Cvent/SDK/Models/Components/LeadSourceExpand.cs:
last_write_checksum: sha1:f4bc3aa3fcd1bfe06d3eb17cbc2f16f3a46acb29
- src/Cvent/SDK/Models/Components/LeadSourceJson.cs:
- last_write_checksum: sha1:7581f2fffeb51f6611c65f218f1b44c53b6b7960
- src/Cvent/SDK/Models/Components/LeadSourceSectionJson.cs:
- last_write_checksum: sha1:ba2cda23f75a76378efe351c1f1a7ee8798773a2
+ src/Cvent/SDK/Models/Components/LeadSourceSection.cs:
+ last_write_checksum: sha1:e283c9a6ab131b5c8c1ce554e9d4de89b332ea7a
src/Cvent/SDK/Models/Components/LeadType.cs:
last_write_checksum: sha1:203fd7a74370acd51ac81c5f35dc427462f6ce4b
src/Cvent/SDK/Models/Components/LeadsPaginatedResponse.cs:
@@ -12444,12 +12006,10 @@ trackedFiles:
id: ccdb5eef866b
last_write_checksum: sha1:9ceec886518b1f27810b517cc9398a224ae7644f
pristine_git_object: 322e5e0722d18034bfce54176a4f666025b1ad52
- src/Cvent/SDK/Models/Components/ManagementLevelTypeJson1.cs:
- id: 5127d3b8b5e5
- last_write_checksum: sha1:7c6dc20bec96c30d596e9062a3615a6571ed2865
- pristine_git_object: 088f84f0e9e03d0176857ec972bf28075d4184ac
- src/Cvent/SDK/Models/Components/MeasurementUnitJson0.cs:
- last_write_checksum: sha1:10ff57c99e90be4bc1f1e2b2d08cf35587ef6f32
+ src/Cvent/SDK/Models/Components/ManagementLevelType1.cs:
+ last_write_checksum: sha1:1feda602deda146e8f12336a5222abceb837d161
+ src/Cvent/SDK/Models/Components/MeasurementUnit.cs:
+ last_write_checksum: sha1:473a2d832134a637de50476fadf27159cc2c9fa4
src/Cvent/SDK/Models/Components/MeetingRequest.cs:
id: 2ff018e8734c
last_write_checksum: sha1:dc73180d01821b1e0c2beee1611e36acac13f722
@@ -12512,7 +12072,7 @@ trackedFiles:
pristine_git_object: c34afc7e78fd167cd56530859cf8de4edd9ccb7e
src/Cvent/SDK/Models/Components/MeetingRequestQuestionJson.cs:
id: 3110877c3f6b
- last_write_checksum: sha1:6c895c215e37d3dc23cd1d4216a6fb99aa880ee1
+ last_write_checksum: sha1:c44dafb40759b5e8dfc808db17d3c05e86862473
pristine_git_object: 23c7f604d3066b01a6a99415f86afac6f00f1788
src/Cvent/SDK/Models/Components/MeetingRequestUpdateJson.cs:
id: 5f011e0e4779
@@ -12538,26 +12098,18 @@ trackedFiles:
last_write_checksum: sha1:df57d2607578936ca0a518b916249296691e14ce
src/Cvent/SDK/Models/Components/MembershipItemsPaginatedResponseData.cs:
last_write_checksum: sha1:b519ce785ae11a9e2c59b90eade33de1c800f5f6
- src/Cvent/SDK/Models/Components/MembershipJson.cs:
- id: 5e78dd24b453
- last_write_checksum: sha1:e126bbab4c822313c0d6f7223718f43ca10e593b
- pristine_git_object: d8c10f70e5f08cef3db9399f6d2c3def39909e54
src/Cvent/SDK/Models/Components/Message.cs:
id: 30b53920f98e
last_write_checksum: sha1:7750b0906b79f5e0e8aceda40ce122bed2b1d607
pristine_git_object: 9c7373b0cf97e0b27bb8514e69a51cbe3ddf74ee
+ src/Cvent/SDK/Models/Components/MessageRecipientResponse.cs:
+ last_write_checksum: sha1:38b4a8e77bba6ca9593daa7d26766468ec877cb4
+ src/Cvent/SDK/Models/Components/MessageRecipientResponseAttendee.cs:
+ last_write_checksum: sha1:53795d25ec15025cc767e1bcfabf779c62e8a088
src/Cvent/SDK/Models/Components/MessageRecipientsPaginatedResponse.cs:
id: 93f41d1b2ba0
- last_write_checksum: sha1:d8b064568ad4b9224a23d640afba5674bcfceb59
+ last_write_checksum: sha1:c1499668264c18629671679f4ae94e910ffcbd47
pristine_git_object: 95e6d9d6b2f560eb8156d644aee14adaf1ad36b0
- src/Cvent/SDK/Models/Components/MessageRecipientsResponseJson.cs:
- id: cc1b88e8751c
- last_write_checksum: sha1:72da975f9ec2acf03d5b2499b90b14b3ea155504
- pristine_git_object: 7cc5575fc9d6452dc086828500d52a8a1761fe01
- src/Cvent/SDK/Models/Components/MessageRecipientsResponseJsonAttendee.cs:
- id: 0dbe0c5d7aff
- last_write_checksum: sha1:2b07851d23be6e9f0dade10762df138a491c7c5e
- pristine_git_object: 9a0ef45e680d480704432ab56f732645b6ba2109
src/Cvent/SDK/Models/Components/MetaJson.cs:
id: 2487ab792919
last_write_checksum: sha1:cc42f2f22e2c50c1311d9c1d530d887e5114d316
@@ -12592,18 +12144,12 @@ trackedFiles:
id: b1cfe03cd81c
last_write_checksum: sha1:2e75d3c821688e055d35fdd4700d7dba564b99df
pristine_git_object: 4e9ed76e8f2744ba898307223965e37e1a8ede55
- src/Cvent/SDK/Models/Components/NumericAnswerFormatJson.cs:
- last_write_checksum: sha1:9fc586242a8152bef0411afff2920268fd51579b
- src/Cvent/SDK/Models/Components/OfferingCostTypeJson0.cs:
- last_write_checksum: sha1:bb328e531633ddc89ce2d5fc254f0fd31c3135d9
- src/Cvent/SDK/Models/Components/OneAllOf.cs:
- id: e255d3c3682b
- last_write_checksum: sha1:2c53244c1557da9f535225fec9d181e8d79a7c66
- pristine_git_object: db8cf29a86044445afa23084a5c1a7aff41ae3bd
- src/Cvent/SDK/Models/Components/OneOneOf.cs:
- id: a0c1bdade2bb
- last_write_checksum: sha1:6c84f28fc0c5becd79f328ffe9449b01871cce53
- pristine_git_object: cffa7c7840c0de88aaeac8428964e1f60723af0e
+ src/Cvent/SDK/Models/Components/NumericAnswerFormat.cs:
+ last_write_checksum: sha1:db8e1bf3b12e1b922cdce34301507b09365db496
+ src/Cvent/SDK/Models/Components/OfferingCostType1.cs:
+ last_write_checksum: sha1:7c32dc6c559dec855df0282088e1ff33ae793584
+ src/Cvent/SDK/Models/Components/One.cs:
+ last_write_checksum: sha1:3890cffda4ced5a42c674433b02cfb622d39a4df
src/Cvent/SDK/Models/Components/OpenEndedCommentBox.cs:
id: 46a1c591ba60
last_write_checksum: sha1:fd542a5886592458d84604b724d71a9caf3b0b01
@@ -12620,14 +12166,8 @@ trackedFiles:
id: 676f3a9af118
last_write_checksum: sha1:328f91fbf2396c8a283db8a72ebb71e76dedf1d6
pristine_git_object: 22d023a117478a0f63543a37b1129a27c24fee64
- src/Cvent/SDK/Models/Components/OptOutJson.cs:
- id: 3461946e4d2d
- last_write_checksum: sha1:1e0aa0817c579f322a204d6c5d78fd64ca67f528
- pristine_git_object: a22d68f5d55f7da29c758719195bcf9083f406dd
- src/Cvent/SDK/Models/Components/OptOutJsonInput.cs:
- id: ae1b1101c68b
- last_write_checksum: sha1:35a0fccae25377d217781de08c3d2d2990ae711f
- pristine_git_object: 5dcb72d17b9070d50c66d5c059b3d9a9dd74d633
+ src/Cvent/SDK/Models/Components/OptoutBy.cs:
+ last_write_checksum: sha1:a47bf30c63c00b7d565f4390c600a8e7ae74be8d
src/Cvent/SDK/Models/Components/OptoutByJson.cs:
id: b0344790a0f2
last_write_checksum: sha1:41de019d1bda5540ab1838d9acf44f009154372c
@@ -12635,7 +12175,7 @@ trackedFiles:
src/Cvent/SDK/Models/Components/Order.cs:
last_write_checksum: sha1:ddb4d1d577523afe5c0ab6b2666fe9f3ce22f97c
src/Cvent/SDK/Models/Components/OrderDetail.cs:
- last_write_checksum: sha1:03af850c3ea99cef4e86468d9a25f4f2a77ae28d
+ last_write_checksum: sha1:a308d791e10a07970644139fdfd1adb64bab070c
src/Cvent/SDK/Models/Components/OrderDetailsPaginatedResponse.cs:
id: 81a4692d54a0
last_write_checksum: sha1:cf0cf1638bc77e71bbafda4483dec2603942a284
@@ -12650,7 +12190,7 @@ trackedFiles:
last_write_checksum: sha1:ff133852757b95b3534f485e60af3748bd23799c
src/Cvent/SDK/Models/Components/OrderItemResponse.cs:
id: 4c07af5fdbaf
- last_write_checksum: sha1:750660ce5b7ebacc1f9b44215883bad15319a062
+ last_write_checksum: sha1:dd34e42dfbff0be58b8d244d5475ba9cc18f4d54
pristine_git_object: 640b3065cd497967f0abb9fd9fdcccbd14533c1b
src/Cvent/SDK/Models/Components/OrderItemsPaginatedResponse.cs:
id: ec41b946b165
@@ -12660,16 +12200,16 @@ trackedFiles:
last_write_checksum: sha1:9c4eb87425c432e3e4e025d87132e652cc3c22bb
src/Cvent/SDK/Models/Components/OrderType.cs:
last_write_checksum: sha1:f338ab93ef9afa81882890116419c58b8ef39d27
- src/Cvent/SDK/Models/Components/OrganizationJson.cs:
- last_write_checksum: sha1:c072a33e242937fcd73388272ac15e8715cfc3c1
- src/Cvent/SDK/Models/Components/OrganizationTypeJson0.cs:
- last_write_checksum: sha1:06b0b5469bb46cca986173247600fdddf2412b77
+ src/Cvent/SDK/Models/Components/Organization.cs:
+ last_write_checksum: sha1:b725b2b88f0b9f33ddaf98fa74381b701c4e7972
+ src/Cvent/SDK/Models/Components/OrganizationType1.cs:
+ last_write_checksum: sha1:661ef52187803d70f051393e3151171b4385ad89
src/Cvent/SDK/Models/Components/OtherPaymentJson.cs:
id: ab4ce7e56a3d
last_write_checksum: sha1:8f5be96b06ea2b7f72bfde3ac72248bd9a1f3e8b
pristine_git_object: b508e8afc8242a0f32cf10daff4222486ef19a0d
- src/Cvent/SDK/Models/Components/PackagePricingPreferenceJson.cs:
- last_write_checksum: sha1:5c88afbf595b55d6fbb014395fa1760c3b0f8e86
+ src/Cvent/SDK/Models/Components/PackagePricingPreference.cs:
+ last_write_checksum: sha1:ad1ed697449abf0357fb676b9f7cab6d60da7140
src/Cvent/SDK/Models/Components/PageVisibilityJson.cs:
id: c73c4d6e9c60
last_write_checksum: sha1:2ab3cfd5672a19d4eee700fa4da96262b771a26b
@@ -12679,21 +12219,21 @@ trackedFiles:
last_write_checksum: sha1:47d540ab61ae9a7d229011e825be487d50f398ec
pristine_git_object: c3d81e45a66ba1cbbb09408036c84bb6fb460c77
src/Cvent/SDK/Models/Components/PaginatedInternalDocuments.cs:
- last_write_checksum: sha1:d8d4e48aa23c45e0f85248576d4d144b09ccfbc9
+ last_write_checksum: sha1:8783607fe3d96ca1e27d08ffd5d45ae38ef18e35
src/Cvent/SDK/Models/Components/PaginatedRfpAgendaItems.cs:
- last_write_checksum: sha1:5377b6277de2f59186a64cdf87edda343508aa66
+ last_write_checksum: sha1:8bbaaba38655a897f197f4878df3c91787ab0ca6
src/Cvent/SDK/Models/Components/PaginatedRfpAgendaItemsSchedule.cs:
- last_write_checksum: sha1:0b0a99f844ad403b885c088794dbbae131d8a307
+ last_write_checksum: sha1:057d46247bd164852e97e0efd4cecac82b24961b
src/Cvent/SDK/Models/Components/PaginatedRfpAttachments.cs:
- last_write_checksum: sha1:5267acefc6e2526b7f819c206da49b884159d90f
+ last_write_checksum: sha1:09d09c1891e642606bdc165f59ae2e00ab9b3710
src/Cvent/SDK/Models/Components/PaginatedRfpCustomField.cs:
- last_write_checksum: sha1:9b440d9661b3b420aa79e8320e514ce319f22a4c
+ last_write_checksum: sha1:d4a61bd9f7b5a5344a950b004884f308496e6906
src/Cvent/SDK/Models/Components/PaginatedRfpQuestions.cs:
- last_write_checksum: sha1:8c2ccbae24f06589f59258609110c7dda9bbdf2f
+ last_write_checksum: sha1:64d80c4f882a2f30239685219f57832d395ca1c6
src/Cvent/SDK/Models/Components/PaginatedRfpRecipientsHistory.cs:
- last_write_checksum: sha1:42ad64aba8fb8d727e4398aab22faba0f061b5b0
+ last_write_checksum: sha1:d9cc7c9ecb912008f546a9b1a1bd352ea4e887d0
src/Cvent/SDK/Models/Components/PaginatedRfpSuppliers.cs:
- last_write_checksum: sha1:82f3862dd528c82c63451464df476d4ccf68d6d9
+ last_write_checksum: sha1:c5377dfd93a8e5f00caa2754c4e615316d1a1585
src/Cvent/SDK/Models/Components/PaginationLinks.cs:
last_write_checksum: sha1:ef7b89b81319d380b864e3544a16b48fc0e45dd7
src/Cvent/SDK/Models/Components/PaginationLinksJson.cs:
@@ -12706,10 +12246,10 @@ trackedFiles:
id: e1e47986077d
last_write_checksum: sha1:63d98dc24bbfced6dba55e5520cbe9d451149288
pristine_git_object: f150723f9c93a5e49ed3b578e37c291127af7d2e
- src/Cvent/SDK/Models/Components/PagingJson19.cs:
- last_write_checksum: sha1:bbf699c4144fc5b8e2e2556988c946d580b158fb
- src/Cvent/SDK/Models/Components/PagingNoTotalCountJson2.cs:
- last_write_checksum: sha1:c6d58e3a46871c418815c51a28bdc63bf4d03fa3
+ src/Cvent/SDK/Models/Components/PagingJson2.cs:
+ last_write_checksum: sha1:4d860a147786e7150597a620b51198870ebf6b05
+ src/Cvent/SDK/Models/Components/PagingNoTotalCountJson.cs:
+ last_write_checksum: sha1:78f4c18406f1d36e9cbc0e1bf8603d59af5f44f6
src/Cvent/SDK/Models/Components/ParticipantResponseJson.cs:
id: 19a0b900b0bf
last_write_checksum: sha1:481e2523987bfc4b336c0da0a0c6e892cf0b8c8b
@@ -12726,14 +12266,10 @@ trackedFiles:
id: e32a93ba5f60
last_write_checksum: sha1:3a7e745a2c5f1e2cfb7e4f74a1baeafe48c19bab
pristine_git_object: 2b5808f90ae060f5b3dbf046e4cd6ca0796980d2
- src/Cvent/SDK/Models/Components/PassportJson.cs:
- id: af528d68f1d8
- last_write_checksum: sha1:74cc1006243f4d19550611a162c29e8e1f66f39f
- pristine_git_object: 60d20837b3c90ba32fbc883476ddd42eeb197817
- src/Cvent/SDK/Models/Components/PassportJsonInput.cs:
- id: 21fc568d2e0a
- last_write_checksum: sha1:ce8edd1d984fb6726ca0aa3f22d5f747b1d575cb
- pristine_git_object: f33679d7cd172520e410a01dd0cf276f838896ad
+ src/Cvent/SDK/Models/Components/Passport.cs:
+ last_write_checksum: sha1:88aa7d2fb8b886a36a242af04f90aafc657987f7
+ src/Cvent/SDK/Models/Components/PassportInput.cs:
+ last_write_checksum: sha1:44397752d0d8e4c1ce3a06186aab83556b75b537
src/Cvent/SDK/Models/Components/Patch.cs:
id: d2e3c379e0ee
last_write_checksum: sha1:66fa16d2cff8279140a3d73aee486634957a7ef0
@@ -12744,7 +12280,7 @@ trackedFiles:
pristine_git_object: d0342a6f8ef551625ade38a03c501770a8a22ecb
src/Cvent/SDK/Models/Components/PaymentInfoJson.cs:
id: e3591b630eab
- last_write_checksum: sha1:a2980f8196338bf64f77f7560a7cbb78993a8ce2
+ last_write_checksum: sha1:f7a130d8dcd6288ed69b56bf8d49cad9494822fc
pristine_git_object: 2c33f3a52afc094f165ec6e2ff5cc081fa7f8b87
src/Cvent/SDK/Models/Components/PaymentMethod.cs:
last_write_checksum: sha1:e9d3b553aae2b1797a287cede38d18d06aaad965
@@ -12802,7 +12338,7 @@ trackedFiles:
pristine_git_object: 01b82bf609021f6ff486aae54b25dd4a3cf49920
src/Cvent/SDK/Models/Components/PlannerJson2.cs:
id: a432acb03564
- last_write_checksum: sha1:aadfa05a7fb9dc5a8f544ea909cc4e89708013e5
+ last_write_checksum: sha1:36fddfc5c27ddb45ac7c35ae37ec54b93463bff2
pristine_git_object: ddf5c944e47a888aa092a5637e9e2f7da4d058cc
src/Cvent/SDK/Models/Components/PlannerJson2AddressType.cs:
id: 2bfd64fb49ee
@@ -12868,10 +12404,8 @@ trackedFiles:
id: 335fa16b9fff
last_write_checksum: sha1:1f5538a92ff7659a2ca218ccc003cd8ec9db8f00
pristine_git_object: db95e535617265cad44217a1b3901f5d965175ef
- src/Cvent/SDK/Models/Components/PolicyValueTypeJson.cs:
- id: 3a827c3eaa92
- last_write_checksum: sha1:31df3b206aeb7bdb29d8d568a3bf627198aadd6c
- pristine_git_object: fafe77a41a28b1cabbff9bd2d6e28bbea97b2159
+ src/Cvent/SDK/Models/Components/PolicyValueType.cs:
+ last_write_checksum: sha1:402da505148489bc8b683629b2c15259b906d92e
src/Cvent/SDK/Models/Components/PollResponseJson.cs:
id: 9cb78bfff65c
last_write_checksum: sha1:18258b6a318bffb28fbf0277d28f1f67a1de2f4e
@@ -12934,10 +12468,8 @@ trackedFiles:
id: 1a721be5d197
last_write_checksum: sha1:a4a4ea946aed388fff8287cd42e78dc6aba7946d
pristine_git_object: bcbd734393a65ccef9a73a04efe3791740cb0385
- src/Cvent/SDK/Models/Components/ProgramItemLiteJson.cs:
- id: f0bcb8bec4b4
- last_write_checksum: sha1:ce8d82b735541d487d46693ad404b1e7ed6acf23
- pristine_git_object: ddcdd94f98ff093c13cc287cebabc7202a726f54
+ src/Cvent/SDK/Models/Components/ProgramItemLite.cs:
+ last_write_checksum: sha1:728f678936dca14edc8a60bde04973717b2002bd
src/Cvent/SDK/Models/Components/ProgramItemPaginatedResponse.cs:
id: d4bba3232bf6
last_write_checksum: sha1:ab1caa9799d9afc77635c54a022cb00eb928f05b
@@ -12952,7 +12484,7 @@ trackedFiles:
pristine_git_object: a0abc2af1ce8a710e780fc66ff773f2dcf8c8f9f
src/Cvent/SDK/Models/Components/ProgramItemSpeakerPaginatedResponse.cs:
id: 3b88ca4e1059
- last_write_checksum: sha1:daf0e26b49d57d93e8c71afcb51f9776545f87df
+ last_write_checksum: sha1:94d01b9cba8ac33611637401965e486e16a68adb
pristine_git_object: dcbd191fdeaa866a930d57752692fc8b91d66903
src/Cvent/SDK/Models/Components/ProgramItemUpdateRequest.cs:
id: 85ce1f1e3de1
@@ -12962,7 +12494,7 @@ trackedFiles:
last_write_checksum: sha1:36c571edd2f6981cddd2761b0f960cecc88f98bc
src/Cvent/SDK/Models/Components/Property.cs:
id: 31407b234935
- last_write_checksum: sha1:f0ac4d02be75e89327fbd2d9f131e3e2e928faa6
+ last_write_checksum: sha1:ce25c66c07c438c821ba98749b3378e3068da499
pristine_git_object: 440eab46faedb49718aab3d6a6286770528b2c51
src/Cvent/SDK/Models/Components/PropertyBrand.cs:
id: 999158e9ee5c
@@ -12982,7 +12514,7 @@ trackedFiles:
pristine_git_object: 9da1697306faee1423463fb9fb2abeca3c895ee4
src/Cvent/SDK/Models/Components/PropertyRoom.cs:
id: dc7330caac7c
- last_write_checksum: sha1:f857f40f5ec5974f6d7edb5638ebcbefef13114a
+ last_write_checksum: sha1:c0c779f6798a521a5969875c8ea76161f4914209
pristine_git_object: d8896e85e0e907af505f38b76e807621d5af9838
src/Cvent/SDK/Models/Components/PropertyRoomExternalCodeJson.cs:
id: 873237f76bd3
@@ -12998,31 +12530,29 @@ trackedFiles:
pristine_git_object: 42c7f47d917b9cded7ca1ae26baa0546f187cf25
src/Cvent/SDK/Models/Components/ProposalDateJson.cs:
id: 65ed12e5ef5f
- last_write_checksum: sha1:5c64d0bfcc0024af5c746016a9024b68190b0558
+ last_write_checksum: sha1:f8525b135c439e4981cb8f2fe02bbb638f6f77aa
pristine_git_object: 3cd92e4fcd4b98b2011923848ea30c8f8fa07beb
src/Cvent/SDK/Models/Components/ProposalRequest.cs:
id: db103ee9270b
- last_write_checksum: sha1:c353e9a1d1a83b175b8fa5e5fb74a754418cc427
+ last_write_checksum: sha1:ad9fe5210f90df0425cfb819d0c231aec9bf3bb9
pristine_git_object: 0a6c35b13b10a4390c26790fe5ad8e0ab8df2e11
src/Cvent/SDK/Models/Components/ProposalResponse.cs:
id: a5e0a35b5dd8
- last_write_checksum: sha1:98eddbe3be420499edceffef900975ac6cbd6ce8
+ last_write_checksum: sha1:bcd0e8bf82e9d43c4f38c9169f529eaad3294a74
pristine_git_object: 9ce95fb9cfba50f5785f9eb9f928bee4a6e87743
src/Cvent/SDK/Models/Components/ProposalStatusJson.cs:
id: f432b15c9cc0
last_write_checksum: sha1:7766f77b7e2ba9152ec4c5482ff05cca1012ffe9
pristine_git_object: b9167a5a8e7342d265ae4b53541e5f3d82cc1847
- src/Cvent/SDK/Models/Components/ProposalStatusTypeJson.cs:
- id: 1f47f7c45808
- last_write_checksum: sha1:c67aec80b45c7fb7dba652706b42b9bfb2922b57
- pristine_git_object: 66264ab2c95b87caaf5d3f280bb5869eee416ac4
+ src/Cvent/SDK/Models/Components/ProposalStatusType.cs:
+ last_write_checksum: sha1:b6bf0248b0362c844505c1e7c61d4a659d5a3ed9
src/Cvent/SDK/Models/Components/ProposalTypeJson.cs:
id: 85a5914bc953
last_write_checksum: sha1:17211ac3f8b9a44d02a48f4b5ec9b1c637ba81e9
pristine_git_object: 723517be27a344f35aae4b64c2de236c7bdbde8f
src/Cvent/SDK/Models/Components/ProximityJson.cs:
id: 70e5d73df24c
- last_write_checksum: sha1:756f1d374c631a977561ad0f86345b02fb66f852
+ last_write_checksum: sha1:00f1d79d307545f399a5e5cad3149c44ae1d605f
pristine_git_object: 1d41f30e98bf969c09a6e1e5c74718f253345439
src/Cvent/SDK/Models/Components/PublicUsagePlan.cs:
id: 4936d6777258
@@ -13050,10 +12580,10 @@ trackedFiles:
pristine_git_object: 14a16c911732e665be77363e8086ecbec59e4f15
src/Cvent/SDK/Models/Components/Question.cs:
id: cc8a0b64520e
- last_write_checksum: sha1:56b4bc8c3be65cf7af619adc2ad1d9180e5b6a73
+ last_write_checksum: sha1:9ca7986f50837cf140803fbaa8b2a3a7b0bb32d7
pristine_git_object: 8d3c33fe4847cedbd50f4431954094e2a62fb65b
- src/Cvent/SDK/Models/Components/QuestionClassificationTypeJson.cs:
- last_write_checksum: sha1:2249bd1b65d4d736de8d92add90ac03b2009a9b0
+ src/Cvent/SDK/Models/Components/QuestionClassificationType.cs:
+ last_write_checksum: sha1:e3c3846ed3c626964cc500ff1388d19f071bdfdc
src/Cvent/SDK/Models/Components/QuestionDetailJson.cs:
id: 3624c886f35e
last_write_checksum: sha1:3efad77bba09243a69f678d435d5f3b5b20ff27f
@@ -13062,98 +12592,72 @@ trackedFiles:
id: aae349173edf
last_write_checksum: sha1:df07e643d75a0a950057fdd43e563ef4537cdb4f
pristine_git_object: 405865c2c23117d1be2dbca5a153cc1784855f8c
+ src/Cvent/SDK/Models/Components/QuestionJson.cs:
+ last_write_checksum: sha1:9a744265bee4765c1356d65c6401c5f36f9e5857
src/Cvent/SDK/Models/Components/QuestionJson1.cs:
id: 0c8c974db2c1
- last_write_checksum: sha1:b5021119f3e3fad8500c5a0d5102a7c8b319da69
+ last_write_checksum: sha1:81fb625991af13db2a8b1059417c9d1acc47f631
pristine_git_object: 99250e31668a5d45b7f20b8d30c27cad7238ed65
src/Cvent/SDK/Models/Components/QuestionJson2.cs:
id: 19e158124d27
- last_write_checksum: sha1:d34d043992e3c12e8524de7736322eb07e5f54c3
+ last_write_checksum: sha1:4ff7b9814cb07a04898b494e622e68022724f907
pristine_git_object: e0cca70630059f54599089a684b0f0d9009d27a2
- src/Cvent/SDK/Models/Components/QuestionJson3.cs:
- id: d14528bdd356
- last_write_checksum: sha1:a72c61950ac006c43175451733bb0026863d5a00
- pristine_git_object: bb3eda1af8107ec58056eed77cf2bb5713bd56c8
src/Cvent/SDK/Models/Components/QuestionPaginatedResponse.cs:
id: 44969f7a41f4
- last_write_checksum: sha1:7bd816501fc855007b5e3219f854361b286337fd
+ last_write_checksum: sha1:b85601ef4691e2950bfffc662aa036761112dfc3
pristine_git_object: 803c4cccfee6508d49b2108de4bddc243e06690d
- src/Cvent/SDK/Models/Components/QuestionResponseDataTypeJson.cs:
- id: f93b5289e4a3
- last_write_checksum: sha1:b7a0f1cb1845ceee38c5a884e71af9a33f404d40
- pristine_git_object: 33ec4cb3911828e1bb5ad2b43b34f898134accc8
- src/Cvent/SDK/Models/Components/QuestionResponseFormatJson.cs:
- id: fc2260713092
- last_write_checksum: sha1:336b01dc681e387d97d1b811b9329f32f84b1892
- pristine_git_object: b6836855facdb8933cbea55390c0c7a226c2d2ed
+ src/Cvent/SDK/Models/Components/QuestionResponseDataType.cs:
+ last_write_checksum: sha1:49e09bda1a74e27e4224d2ca304e4251785ab2ae
+ src/Cvent/SDK/Models/Components/QuestionResponseFormat.cs:
+ last_write_checksum: sha1:485fd3c71adf1ee803c5b44f637a2ece77748f45
src/Cvent/SDK/Models/Components/QuestionResponseJson.cs:
id: bbb93ec8630b
- last_write_checksum: sha1:065300d7ef519ff099296c57d75a85fd0815b05b
+ last_write_checksum: sha1:4ae3eb2431a1dbac4abda49600d9cf686de7ecbe
pristine_git_object: 9961efb09a1f755900778e586c586008fc9646ae
- src/Cvent/SDK/Models/Components/QuestionResponseTypeJson.cs:
- id: b51a06bfb4c4
- last_write_checksum: sha1:d2e3f4327302800eaee43c64bfb3341d5435e7a7
- pristine_git_object: c02bd0033d02cb68e0fafb4dd591fe9bac4ead71
- src/Cvent/SDK/Models/Components/QuestionSectionJson.cs:
- id: ec8d2326c180
- last_write_checksum: sha1:dc7a486ddd0da1143893ca9e93dec230c8d49b95
- pristine_git_object: 1550516cc2d9759773d3a1dfc004e3677fdc35b1
+ src/Cvent/SDK/Models/Components/QuestionResponseType.cs:
+ last_write_checksum: sha1:258477a1654bcd2a36e632bf7f15b91040bbf047
+ src/Cvent/SDK/Models/Components/QuestionSection.cs:
+ last_write_checksum: sha1:3a2587b0362affe532e8636c5bd1db4171cbce38
+ src/Cvent/SDK/Models/Components/QuestionType.cs:
+ last_write_checksum: sha1:a97d8a6865fb4b4f96013388dbe7172f2380b1c4
src/Cvent/SDK/Models/Components/QuestionTypeJson.cs:
- last_write_checksum: sha1:27ed4ab64e544a4a31035903cf83e7992ead6aab
+ last_write_checksum: sha1:f8c40e9796c3d64addf2d1c45decf9e113421e87
src/Cvent/SDK/Models/Components/QuestionTypeJson1.cs:
id: 8a4b77b026ca
- last_write_checksum: sha1:4794b5305aaed8787208d3c51067e0ca6798e69d
+ last_write_checksum: sha1:72f54bde22dd83a45b4ebe25351c7725de003a73
pristine_git_object: 709936b484a25dd3b4b136272a0a153b984065c2
src/Cvent/SDK/Models/Components/QuestionTypeJson2.cs:
id: 7d0e325d1b6c
- last_write_checksum: sha1:1b779384d28fa21ce6207a2cf2aac060cb33d069
+ last_write_checksum: sha1:15b6e3c558e5d134b029b781fd6b6e946dc6f5b9
pristine_git_object: c3b5a8f253b4c78f50dbc6796c96340185856a06
- src/Cvent/SDK/Models/Components/QuestionTypeJson3.cs:
- id: 5a890f251c8c
- last_write_checksum: sha1:adf6ad2965674d996cc05661571946b50a811261
- pristine_git_object: bbc17e69ed27ef5ea79c9ea6a5d19606db384155
- src/Cvent/SDK/Models/Components/QuestionWithProgramIdJson.cs:
- id: 2a90336b6dd2
- last_write_checksum: sha1:c6d24673bd76ed9896c8d652198117365e7dd52f
- pristine_git_object: 8db81932e0d088a7e05f8a50ec0c32d0a9dead19
- src/Cvent/SDK/Models/Components/QuestionWithProgramIdJsonTravelProgram.cs:
- id: 9eae865d0694
- last_write_checksum: sha1:6458267c487a4b9fda68559a1176847bd36187ad
- pristine_git_object: 410265115e32767fb85c62d2710de95c0cce3321
src/Cvent/SDK/Models/Components/QuestionsPaginatedResponse.cs:
id: b38bea7454bf
- last_write_checksum: sha1:7afc567ed900bf8feb5c890e9cb734707682419a
+ last_write_checksum: sha1:d1c0bd3f7bc6a4e749d92fd79477b430b07eb9c8
pristine_git_object: 24fc0fbbed2ecf807ad067c9fb5678e63da93322
src/Cvent/SDK/Models/Components/QuestionsPaginatedResponse1.cs:
id: 3e7703c05491
- last_write_checksum: sha1:c5c52e19a27efce18eff904fa81a98b645fe8238
+ last_write_checksum: sha1:6d034038ecd0856dbb82c030ad997e2b35322b6e
pristine_git_object: 3723efbbdfd55a098436ec21edf19d3c9a9b376e
src/Cvent/SDK/Models/Components/Rate.cs:
id: 7400c0ed57f9
last_write_checksum: sha1:771644f548c9efb98d6e96d9ce79103c1ceb597c
pristine_git_object: fafe1dbd5f16fae6f46284adf3c17a4062c74096
- src/Cvent/SDK/Models/Components/RateLevelTypeJson.cs:
- id: 31e97939b522
- last_write_checksum: sha1:4f4a0c82e7aa88717d0ea09dfb1b80a14f31054c
- pristine_git_object: 28266879ca04b094198be422e50610356c4dca3f
- src/Cvent/SDK/Models/Components/RateReviewStatusTypeJson.cs:
- id: 3dccf7658f60
- last_write_checksum: sha1:8fdac7d5f846439e576acddbfe49149e6d140527
- pristine_git_object: 27d4c41ed8af835804b2e1ea37478c688991b875
- src/Cvent/SDK/Models/Components/RateTypeJson.cs:
- id: d46c11c13e3d
- last_write_checksum: sha1:b9715df0520e3cc521afd4b9048db549711044c2
- pristine_git_object: 323dbf19bda0459612abee6b81b91c8a66bef50f
- src/Cvent/SDK/Models/Components/RebateTypeJson.cs:
- last_write_checksum: sha1:86833a723ed4a79652b1eb4554888d00986f9494
- src/Cvent/SDK/Models/Components/RecipientInfoJson0.cs:
- last_write_checksum: sha1:a55a763573d456d89d4bff779363a50b425b2a3a
+ src/Cvent/SDK/Models/Components/RateLevelType.cs:
+ last_write_checksum: sha1:d6d47c7175fa4109ad795ca8eced12e15e3f5a2d
+ src/Cvent/SDK/Models/Components/RateReviewStatusType.cs:
+ last_write_checksum: sha1:8f56bb72205afb369e98849258e02785c42cc46e
+ src/Cvent/SDK/Models/Components/RateType.cs:
+ last_write_checksum: sha1:6710ea39f3e4fd41b6cde009927d07d61cd14815
+ src/Cvent/SDK/Models/Components/RebateType.cs:
+ last_write_checksum: sha1:94687157c348638f41de19e3ff2c3559da21271e
+ src/Cvent/SDK/Models/Components/RecipientInfo.cs:
+ last_write_checksum: sha1:b23f8e7420e85d5dc60491f74ecf0914bacc602b
src/Cvent/SDK/Models/Components/RecipientJson.cs:
id: 4194617a3cca
last_write_checksum: sha1:2fd40fb5ef3507782c705e8511be6f9f6b4c4ae1
pristine_git_object: c99c697f693b0d1544e9115ac8e0e947514b3ae1
- src/Cvent/SDK/Models/Components/RecipientTypeJson0.cs:
- last_write_checksum: sha1:7e031b9ec99fa25066f2e9e3dfabfb1022af803f
+ src/Cvent/SDK/Models/Components/RecipientType.cs:
+ last_write_checksum: sha1:d11eb40dc5ce836924401dc45ef496bce3ae528f
src/Cvent/SDK/Models/Components/RecipientsDataJson.cs:
id: 17b0c5b2533a
last_write_checksum: sha1:86191dae2fb3dfad950237d0e0c9f56b6aa7cf17
@@ -13196,11 +12700,11 @@ trackedFiles:
pristine_git_object: 7d4d822f267060e15222f76a6fe3470b96695706
src/Cvent/SDK/Models/Components/RegistrationPackRequest.cs:
id: d8a62ef4df74
- last_write_checksum: sha1:36be23c783b647c9afe6e6087ccd9d140b0f0901
+ last_write_checksum: sha1:06b6c415f83340dd39e0c8798a775f5324f2fad2
pristine_git_object: 1306287b9ff4b1528388caa7dfef660bf7ef0add
src/Cvent/SDK/Models/Components/RegistrationPackResponse.cs:
id: f1610dbeca9c
- last_write_checksum: sha1:6d0e5eb9f3e4af4aa2d0bfaf141ce9a1edf56c34
+ last_write_checksum: sha1:9546215efd10ef511a01f2bc765f8fa944211072
pristine_git_object: 7ee1d16704760667621d82a3d4b66faf584daa80
src/Cvent/SDK/Models/Components/RegistrationPath.cs:
id: 5eb628c81651
@@ -13252,11 +12756,11 @@ trackedFiles:
pristine_git_object: 897d11c738c8c82b5096c77a2a9da85bae62d1e1
src/Cvent/SDK/Models/Components/ReservationGuestJsonInput.cs:
id: 12ba94291f92
- last_write_checksum: sha1:0da9f91ec86c2f3b7f40f8cd9e0bf81015216900
+ last_write_checksum: sha1:a6cade9ac209bbcc6bd4a41e11eafdbe1650ed55
pristine_git_object: 6449a37aa37d4415d86a552a8ab3dc2ff82ce914
src/Cvent/SDK/Models/Components/ReservationGuestJsonOutput.cs:
id: 58ccfabb0d94
- last_write_checksum: sha1:07572d02922d76f1211b07695603e9f27ce3c49d
+ last_write_checksum: sha1:f73fffd68ac02b36de39b50dc53827fe69dd4748
pristine_git_object: e5e41c919175d90885b1879c390f5762dabf788f
src/Cvent/SDK/Models/Components/ReservationNightJson.cs:
id: 3e340d53eff6
@@ -13272,11 +12776,11 @@ trackedFiles:
pristine_git_object: 18694f3ba0aaaa246e8c3697ddc0f43240eef5d1
src/Cvent/SDK/Models/Components/ReservationPaymentInfoJsonInput.cs:
id: ee9385aea2e8
- last_write_checksum: sha1:56f9466f06af0389a08eb59102176b29efc8da10
+ last_write_checksum: sha1:4f8210d982ad292106498fa469d0471fc824d45a
pristine_git_object: 6817e008079e95a4e27eac38e77abab6d31e2356
src/Cvent/SDK/Models/Components/ReservationPaymentInfoJsonOutput.cs:
id: a8399a1b9353
- last_write_checksum: sha1:dc504e7e8e4c0e7e14d2316ef24ad0db6c3bf006
+ last_write_checksum: sha1:44537ed29138153c2ff5bc54a6a1f2308bb398ed
pristine_git_object: 1fcea155f09c1a6f43c4557acba9ca62cb994051
src/Cvent/SDK/Models/Components/ReservationRequestBlock.cs:
id: "741312672891"
@@ -13352,7 +12856,7 @@ trackedFiles:
pristine_git_object: 8d5b1bb05a9b37d875451dcebaf47cb207e3010b
src/Cvent/SDK/Models/Components/RespondentJson.cs:
id: 793833df61f2
- last_write_checksum: sha1:aeeb9c92d9fcf7e2a35d7e87036d363504ab1787
+ last_write_checksum: sha1:020ae4097c4bd3e0509e95c1c76a43b9b56afc90
pristine_git_object: 57aad377bcecb1549f246dfe9c3dffd01bc5de0b
src/Cvent/SDK/Models/Components/RespondentJsonLinks.cs:
id: 1998098089f1
@@ -13387,75 +12891,71 @@ trackedFiles:
last_write_checksum: sha1:71e1bf5926ab69d932da41c3b940f5117eae35ac
pristine_git_object: 8bad3c8f8ee517ecc478c52087d715603d33edbc
src/Cvent/SDK/Models/Components/Rfp.cs:
- last_write_checksum: sha1:2a3dad21f5ff5f04f0bb2610ceca14526cea79f0
- src/Cvent/SDK/Models/Components/RfpAgendaItemJson.cs:
- last_write_checksum: sha1:7fab1176d91061f9bedc1ceaee69478f88c0c69f
- src/Cvent/SDK/Models/Components/RfpAgendaItemScheduleJson.cs:
- last_write_checksum: sha1:ea99ba38ca10e93e834c448058bf7a9d9346927d
- src/Cvent/SDK/Models/Components/RfpAgendaItemScheduleWithIdJson.cs:
- last_write_checksum: sha1:ce9972555e89e969550adcf71268edd1f9d1c3a8
- src/Cvent/SDK/Models/Components/RfpAttachmentJson.cs:
- last_write_checksum: sha1:4a97206d7c0331efea00bb91f366498ef37c3f86
- src/Cvent/SDK/Models/Components/RfpAttachmentJsonSupplier.cs:
- last_write_checksum: sha1:5846f77e3f87bcb82125054c790ec7a31bf44fd2
- src/Cvent/SDK/Models/Components/RfpCustomFieldJson.cs:
- last_write_checksum: sha1:9c97106a1344633e6e250e8c26ee2d03d969a17f
- src/Cvent/SDK/Models/Components/RfpDateModeJson0.cs:
- last_write_checksum: sha1:4d272ec4ac036a8cf2642addef5c1fd9fd9b3f4c
- src/Cvent/SDK/Models/Components/RfpEventJson.cs:
- last_write_checksum: sha1:1b1544a064e25022c97e1af82454bbdea49b6e02
- src/Cvent/SDK/Models/Components/RfpEventOrganizationJson.cs:
- last_write_checksum: sha1:95656056195f234a2003b67af3861ca69af4df95
+ last_write_checksum: sha1:f115346af30a45041af74d22ed2b1ab47678e951
+ src/Cvent/SDK/Models/Components/RfpAgendaItem.cs:
+ last_write_checksum: sha1:3fe0da4b7a3ac4cd2c3dc3c8bc2f09a299c15ce4
+ src/Cvent/SDK/Models/Components/RfpAgendaItemSchedule.cs:
+ last_write_checksum: sha1:88b6df9b0b22dda74dbd00f44fdbbe24dabb99a4
+ src/Cvent/SDK/Models/Components/RfpAgendaItemScheduleWithId.cs:
+ last_write_checksum: sha1:9b73662781a6b902e6cb5682e63a92e34864d122
+ src/Cvent/SDK/Models/Components/RfpAttachment.cs:
+ last_write_checksum: sha1:9ce7825724c4da8d2213b5af179275a3bca0b751
+ src/Cvent/SDK/Models/Components/RfpAttachmentSupplier.cs:
+ last_write_checksum: sha1:84b9f3a73e2ee2432327c0df69ff46a56e9d64b1
+ src/Cvent/SDK/Models/Components/RfpDateMode.cs:
+ last_write_checksum: sha1:4fa4231b821e568837baf298d18650da1603b55f
+ src/Cvent/SDK/Models/Components/RfpEvent.cs:
+ last_write_checksum: sha1:54f88e828067a9f81c47da4f70063fc151bc417c
src/Cvent/SDK/Models/Components/RfpGuestRooms.cs:
- last_write_checksum: sha1:cc6d8a2d66fb93d57f4a8643a22c4b90befd163c
- src/Cvent/SDK/Models/Components/RfpIdJson1.cs:
- last_write_checksum: sha1:2bc7aee7d986bf38340d847e1d70ad35a4733615
- src/Cvent/SDK/Models/Components/RfpInternalDocumentJson0.cs:
- last_write_checksum: sha1:d7f5d66e54789109c36b9f6321f04bf255cd0b07
+ last_write_checksum: sha1:243a12c4b0058b04d0b8e2f042c9d5d1d0342784
+ src/Cvent/SDK/Models/Components/RfpIdJson.cs:
+ last_write_checksum: sha1:d2a444b7d177a90e6e111dc6dd2c9ca86423c727
+ src/Cvent/SDK/Models/Components/RfpInternalDocument.cs:
+ last_write_checksum: sha1:b3ab302c8992b11d3e74a55f308a01968d114882
src/Cvent/SDK/Models/Components/RfpLeadSource.cs:
last_write_checksum: sha1:afa1bb06b49bae22383523daeb8c1474c16960dc
src/Cvent/SDK/Models/Components/RfpLeadSourceSection.cs:
last_write_checksum: sha1:94944bcf56b280bfd7e5acf5b95afe3498d4d4e0
- src/Cvent/SDK/Models/Components/RfpMealJson.cs:
- last_write_checksum: sha1:51ebc611c6ad7d244f126c090038e342f06a3388
- src/Cvent/SDK/Models/Components/RfpPastEventJson.cs:
- last_write_checksum: sha1:4c2db360ca4a8407ea325588507adac14e6d955b
+ src/Cvent/SDK/Models/Components/RfpMeal.cs:
+ last_write_checksum: sha1:e8a9bfdab2e9f6153a2276973fc740c8e1cb431a
+ src/Cvent/SDK/Models/Components/RfpPastEvent.cs:
+ last_write_checksum: sha1:911140ae9bdc4caa487dbd7e2e3564f9a910d32b
src/Cvent/SDK/Models/Components/RfpPastEvents.cs:
- last_write_checksum: sha1:e8102dedcbaaae0a1af5e994ab1f3c3393b8564d
- src/Cvent/SDK/Models/Components/RfpQuestionJson.cs:
- last_write_checksum: sha1:7a42c0cbfcf66f7381fc98e2bd4a81f0487541dd
- src/Cvent/SDK/Models/Components/RfpRecipientLogEntryJson.cs:
- last_write_checksum: sha1:7bf7a7b50ece63d3f0edb079863b4be489b74fae
- src/Cvent/SDK/Models/Components/RfpRecipientLogEntryJsonMessage.cs:
- last_write_checksum: sha1:3e9801f510fd1c8f9011c15fe76a10b21080a569
- src/Cvent/SDK/Models/Components/RfpRecipientLogEntryJsonSupplier.cs:
- last_write_checksum: sha1:972ef66c4686bacd317bb9113f753d5b7a598ff8
- src/Cvent/SDK/Models/Components/RfpResponseReasonJson.cs:
- last_write_checksum: sha1:525c0f4d936c40df3932728e1f90f5490210aa4b
- src/Cvent/SDK/Models/Components/RfpStatusJson0.cs:
- last_write_checksum: sha1:295b7293bcf0e8a1f4a3ce4eca81cc11439ca1cc
+ last_write_checksum: sha1:bd41d80834aa9ea81ae9bcc430822eabd189ee8f
+ src/Cvent/SDK/Models/Components/RfpQuestion.cs:
+ last_write_checksum: sha1:b7d3c283825b69836c626db5113607f8c68d1b89
+ src/Cvent/SDK/Models/Components/RfpRecipientLogEntry.cs:
+ last_write_checksum: sha1:cc235735e661ef03c4ec85898e19693d853d96bc
+ src/Cvent/SDK/Models/Components/RfpRecipientLogEntryMessage.cs:
+ last_write_checksum: sha1:9dd267658267b5c19f5a925552f7f703b6277901
+ src/Cvent/SDK/Models/Components/RfpRecipientLogEntrySupplier.cs:
+ last_write_checksum: sha1:5d89ee99056df4fff8281d145c32a7b3da8a30f9
+ src/Cvent/SDK/Models/Components/RfpResponseReason.cs:
+ last_write_checksum: sha1:6ce29c30d6d04a4711f7041c372e6fa7d6f8c04e
+ src/Cvent/SDK/Models/Components/RfpStatus1.cs:
+ last_write_checksum: sha1:dcc9ddd8e595feea821270a22e1619b1776fc7f2
src/Cvent/SDK/Models/Components/RfpSummaryJson.cs:
id: 4460b241b8cc
last_write_checksum: sha1:52e02dd5afbcb50a44b61056734a8e0797efb990
pristine_git_object: 51df168345ce45555c2ca25e95ba95862e0a5ee5
- src/Cvent/SDK/Models/Components/RfpSupplierJson.cs:
- last_write_checksum: sha1:c07998d6a7adac3a0f3b0013d8291b10e62db011
+ src/Cvent/SDK/Models/Components/RfpSupplier.cs:
+ last_write_checksum: sha1:bff1b4017542008bb816d0f81533cc8e5af6d250
+ src/Cvent/SDK/Models/Components/RfpSupplierLeadSource.cs:
+ last_write_checksum: sha1:ef34cc5cf803e752ce09f76f8e0a6d4fb96d8837
src/Cvent/SDK/Models/Components/RfpSupplierStatus.cs:
last_write_checksum: sha1:1335fbf46671b782d7c21db0758d9c0d12a9d35d
- src/Cvent/SDK/Models/Components/RfpTypeJson0.cs:
- last_write_checksum: sha1:ffa345df414990b536a6059a4119e0ba837b415f
+ src/Cvent/SDK/Models/Components/RfpType1.cs:
+ last_write_checksum: sha1:5b8471744751d565bca4c8bbf0b05d79971410b1
src/Cvent/SDK/Models/Components/RoomAttendeeTypeJson.cs:
id: 8422ac6464ba
last_write_checksum: sha1:fa8f527791897da74577c0c2d88716819a7c7214
pristine_git_object: 318a12280a0ffdc53235182a326038e87a82bb6c
- src/Cvent/SDK/Models/Components/RoomBedTypeJson1.cs:
- id: ab0d9c101ec9
- last_write_checksum: sha1:c93a68207991b7a22cfcf4cd050eb9d864ba38d4
- pristine_git_object: e1220b6ed8a2d49ce867f39773087c441ad915af
- src/Cvent/SDK/Models/Components/RoomBlockDetailsJson.cs:
- last_write_checksum: sha1:374af7f011a74d2f54b4d477cc012c8b9c263c48
- src/Cvent/SDK/Models/Components/RoomBlockJson.cs:
- last_write_checksum: sha1:eb3c04a92844115079d95507d48f3f6323a086e7
+ src/Cvent/SDK/Models/Components/RoomBedTypeJson.cs:
+ last_write_checksum: sha1:efe550e5d4f4fe5737e9e5579df10608df434cc0
+ src/Cvent/SDK/Models/Components/RoomBlock.cs:
+ last_write_checksum: sha1:67a6b10b061cfccdcd29b9a2f1620c4838dfef04
+ src/Cvent/SDK/Models/Components/RoomBlockDetails.cs:
+ last_write_checksum: sha1:9fc202c495b98a85da7b0965fc3b8c02943ae64f
src/Cvent/SDK/Models/Components/RoomIdJson.cs:
id: a72a0c8901ad
last_write_checksum: sha1:158b6ce288ababd2c51028cbd5b78ce1f0742f1e
@@ -13502,7 +13002,7 @@ trackedFiles:
pristine_git_object: 21143e0a565d97dc8054293c3d452355a1c6280c
src/Cvent/SDK/Models/Components/ScoresJson.cs:
id: cfa034849620
- last_write_checksum: sha1:d4717cf323f6231cf30eebc4e676b031a5137bdf
+ last_write_checksum: sha1:4d9aed91aca82c7e2e6f67509fe51a3c475c06ba
pristine_git_object: 720ecf93f8f3a10e7655102c6b03914386dd69ac
src/Cvent/SDK/Models/Components/ScoresJsonAttendee.cs:
id: 53d0ccf078e8
@@ -13550,11 +13050,11 @@ trackedFiles:
pristine_git_object: e1687ff624111dc142ead58cf1b773cadf19d5db
src/Cvent/SDK/Models/Components/SendEmailEventRequest.cs:
id: 8daf10636b66
- last_write_checksum: sha1:be90f4725008043048d07a6e7aa777f0d5b74602
+ last_write_checksum: sha1:952be6a40f245e459c22b1ca98b115cd1b86a7e0
pristine_git_object: 853db2572182d9fd372903b1486752b009c34de1
src/Cvent/SDK/Models/Components/SendEmailEventResponse.cs:
id: "168350485296"
- last_write_checksum: sha1:c4393b72ea1d1c0e73b1297120df44f1cbcc0a4f
+ last_write_checksum: sha1:83691b79df141db3e05776cce535bf28196d3141
pristine_git_object: e0f39b0034d8d94132ba57fcf356390269fe4c97
src/Cvent/SDK/Models/Components/SendEmailRequest.cs:
id: 7a49bf8d57bb
@@ -13690,10 +13190,8 @@ trackedFiles:
id: bb94a11ed2b4
last_write_checksum: sha1:55e3b356df2f46eb1393f103b8d5d13dd4b24e24
pristine_git_object: 6d8e92903d3be9eb76c4f17f3b9bf95548daf94d
- src/Cvent/SDK/Models/Components/SessionLiteJson.cs:
- id: 55d4d9b178d4
- last_write_checksum: sha1:abb6e7dc8bdc2dad1bf44bcf1ca2d25f1005fc95
- pristine_git_object: b676f2e99a4c40c03867285834f4da4bdadd83b0
+ src/Cvent/SDK/Models/Components/SessionLite.cs:
+ last_write_checksum: sha1:74ed9e932b2a4a06efdffc2a5ea16ad3da1c9f90
src/Cvent/SDK/Models/Components/SessionLocation.cs:
id: 91078f2bcd15
last_write_checksum: sha1:b78eb6f3373a5acf4ade60acce6849c219d91418
@@ -13724,7 +13222,7 @@ trackedFiles:
pristine_git_object: 782c7ba1b00af8b48b3800f81d980f9d2a76f4aa
src/Cvent/SDK/Models/Components/SessionQaMessage.cs:
id: 4ffaf88505cc
- last_write_checksum: sha1:a6e64664ebbd8ff3bd3cbf135cf65462ffc0fc02
+ last_write_checksum: sha1:bb2444b9a555a03e5ec73dec55cc4c1154731979
pristine_git_object: e229f104727d0ed5623d4524782b77da595579c1
src/Cvent/SDK/Models/Components/SessionQuestionAsked.cs:
id: 8494a682305c
@@ -13742,17 +13240,15 @@ trackedFiles:
id: 4383289e014c
last_write_checksum: sha1:6bf91ea59bcece5fd001623f0aecb64e4538390a
pristine_git_object: c6687e83b72674d74be9a026fae24d6ef9ac5541
+ src/Cvent/SDK/Models/Components/SessionSpeaker.cs:
+ last_write_checksum: sha1:54a43456b732c59021bc0cf7319c05852185a628
src/Cvent/SDK/Models/Components/SessionSpeakerAssignment.cs:
id: 3f8f030dd002
last_write_checksum: sha1:96c96d68fb08ad40e9369cbab7501e91d1a8b741
pristine_git_object: 6fb860632d1fd315b64a43296b221bd2855184c4
- src/Cvent/SDK/Models/Components/SessionSpeakerJson.cs:
- id: 25c63452d6fc
- last_write_checksum: sha1:4aff55f62b78cecad10eb5cd534086a352ffc913
- pristine_git_object: d326728ddab554ef328f2ce0214e461dddadc589
src/Cvent/SDK/Models/Components/SessionSpeakerPaginatedResponse.cs:
id: f0c6202fe4b5
- last_write_checksum: sha1:b6ac58b554bed32bf07ecc4bc724e5147513a544
+ last_write_checksum: sha1:6489cc808de2ed7cbcf532408dd558e8369f0b2b
pristine_git_object: a44f9906dbc27805cdc71abea7dd317c4451d64f
src/Cvent/SDK/Models/Components/SessionStatus.cs:
last_write_checksum: sha1:c220f7c60acc55af218c4cdc5722da774decf26d
@@ -13800,11 +13296,11 @@ trackedFiles:
pristine_git_object: 4477f16af84c4a4c22b6aa835233f76f11e8e25f
src/Cvent/SDK/Models/Components/SleepingRoomBlockJson.cs:
id: 171f1b82b1e3
- last_write_checksum: sha1:a93074e44bfa6310542437844753a15f076be4f1
+ last_write_checksum: sha1:4739c6492c12614f35193ced6f62a8ac65d9b22a
pristine_git_object: 8dcdf56aa2eef2a1e4ddc5a42f16ed8e877d2f62
src/Cvent/SDK/Models/Components/SleepingRoomJson.cs:
id: 5314b8009879
- last_write_checksum: sha1:4268cdc82be1e61baf2996691647705165c2759f
+ last_write_checksum: sha1:53fdf65f0cb4d0ed632bf796feed83649d721508
pristine_git_object: b5c522be5910694ace5785645b5761f97faa885d
src/Cvent/SDK/Models/Components/SleepingRoomRequirementJson.cs:
id: f4d58318bff1
@@ -13816,10 +13312,8 @@ trackedFiles:
pristine_git_object: 632f581e7927b4d9a51d87e0ea419038680b73cb
src/Cvent/SDK/Models/Components/SocialMediaLinks.cs:
last_write_checksum: sha1:07e310736fe9ea80cce97a9b6848e6fdb064169f
- src/Cvent/SDK/Models/Components/SolutionJson.cs:
- id: a6900e8ba00f
- last_write_checksum: sha1:75af6fe3562fb587dbb8faff282ed1657c1e2aac
- pristine_git_object: 4388b13be57e4671e62915ffee40ccc7e8adaffe
+ src/Cvent/SDK/Models/Components/Solution.cs:
+ last_write_checksum: sha1:db6a4551106a12587ca99ddeb2363b5fb8d157ed
src/Cvent/SDK/Models/Components/SolutionTypeJson.cs:
id: fd4688d2d3e8
last_write_checksum: sha1:6bde4084b59b7561cea654a1f6d9d5005296af39
@@ -13832,19 +13326,19 @@ trackedFiles:
id: d1c8171e3671
last_write_checksum: sha1:583088bd050cd095a83221f8533744c234d0c588
pristine_git_object: 41eb96977abb9161a322910408bae6a0f3f8e656
- src/Cvent/SDK/Models/Components/SpaceAreaJson0.cs:
- last_write_checksum: sha1:ee95c79fe82887f71913dcd367710ec4d00b1d4c
+ src/Cvent/SDK/Models/Components/SpaceArea.cs:
+ last_write_checksum: sha1:38c4650ccec865942d32631fb5d56fbbdd0e9241
src/Cvent/SDK/Models/Components/Speaker.cs:
id: 41528590b836
- last_write_checksum: sha1:75b04c2f4f8ac4b38f33cead133da2949624ee3f
+ last_write_checksum: sha1:45337d5faebd6289dfe10ed339e26ebcc25f8488
pristine_git_object: 4094b772a940b8e651fb452ae917965741399eeb
- src/Cvent/SDK/Models/Components/SpeakerCategory.cs:
- id: a8ffcb460c9c
- last_write_checksum: sha1:bb96140e81f8080044196f6c2955f0273b289dc8
- pristine_git_object: ff876f1f3ee3d20f7335af420fc6d8ca97ad13ce
+ src/Cvent/SDK/Models/Components/SpeakerCategory1.cs:
+ last_write_checksum: sha1:a26f92e0af8f60c9fefb17b3c3e76d01fcf2872b
+ src/Cvent/SDK/Models/Components/SpeakerCategory2.cs:
+ last_write_checksum: sha1:cc438ba0f60260788dac70f42f0e6279b2b48f6e
src/Cvent/SDK/Models/Components/SpeakerCategoryPaginatedResponse.cs:
id: 4328a03c8fc1
- last_write_checksum: sha1:477e05d066afe1895ee1f5d7592d20c828d2262d
+ last_write_checksum: sha1:b85906202155619fb94797a51a945b2aa004c370
pristine_git_object: e7a96e7d9b3bb83ff7e9cb6e7c551ab09144a71b
src/Cvent/SDK/Models/Components/SpeakerContact.cs:
id: 10aa1d77fc6f
@@ -13852,7 +13346,7 @@ trackedFiles:
pristine_git_object: 24a01748563a023e43cba270b318f3dbac0a7647
src/Cvent/SDK/Models/Components/SpeakerDocumentPaginatedResponse.cs:
id: 6efe2b663abe
- last_write_checksum: sha1:2bd335534d207dd9e23452e4c7940e291dd4f85b
+ last_write_checksum: sha1:dab03c28e38f3d6019d8f59b5ce436289d4c33b6
pristine_git_object: 2a502e67636464759193a8735f5400df58216691
src/Cvent/SDK/Models/Components/SpeakerEvent.cs:
id: 653a4ae8b15e
@@ -13884,20 +13378,18 @@ trackedFiles:
pristine_git_object: 5a10c3a17cb4a9f6764c8236603217473b174fcd
src/Cvent/SDK/Models/Components/SpeakerLite.cs:
last_write_checksum: sha1:2a6f05086cfddf2db9bbfe7396db763ce46cc4a7
- src/Cvent/SDK/Models/Components/SpeakerLiteJson.cs:
- id: 5c6ce76c7ab4
- last_write_checksum: sha1:bd106cd6ae96fb9aabb05e8cac966d0963e00d0e
- pristine_git_object: 133c1ffcb39cfb60900ad61935ba326d3e4bec00
+ src/Cvent/SDK/Models/Components/SpeakerLite1.cs:
+ last_write_checksum: sha1:efdd6f146492d9adb07b27eb7de1ac61f7c7b1ff
src/Cvent/SDK/Models/Components/SpeakerPaginatedResponse.cs:
id: 60ae2d2d1875
- last_write_checksum: sha1:9bcbaf957478ad806143057fd116621d355cc533
+ last_write_checksum: sha1:c0e506805b5ce5b6e39c2810970d3580d45b2067
pristine_git_object: bc6f5de016c27bf7e44d7ac3c9198db805aeacf0
src/Cvent/SDK/Models/Components/SpeakerProgramItem.cs:
id: 5f49a29d6a13
- last_write_checksum: sha1:59749277e24ef9ce3bc511db275d9400daecbf82
+ last_write_checksum: sha1:8def9b8abbe44aecff0e9fe30af9afb5dc80c851
pristine_git_object: fef7d0ab353b398bca9ad2804aafdd038caea393
src/Cvent/SDK/Models/Components/SpeakerSession.cs:
- last_write_checksum: sha1:60d3b23ce8075068c0b81fa8353a90e9d42ad6e4
+ last_write_checksum: sha1:327607b4db7f4cc9655494d311a4e93a250ac236
src/Cvent/SDK/Models/Components/SpeakerSessionPaginatedResponse.cs:
id: b9d98776ef9b
last_write_checksum: sha1:a7a075012154c26c0350d9addcc78e3a53999d9e
@@ -13914,7 +13406,7 @@ trackedFiles:
pristine_git_object: 24406b7a8d894163269fe636389db5ca0cf653c6
src/Cvent/SDK/Models/Components/StakeholderJson.cs:
id: a341f4ce3265
- last_write_checksum: sha1:5fb9a5528990cd461193a107d74a670ca103db77
+ last_write_checksum: sha1:78f46baef27d5e26a2366e1da9d5e7bf10b52b09
pristine_git_object: 293de71e5b91c506eb3c22d2ea981e7e9b7ffeb4
src/Cvent/SDK/Models/Components/StakeholderJsonAddressType.cs:
id: 3182ad49c7f4
@@ -13952,8 +13444,8 @@ trackedFiles:
id: ebceb6d23382
last_write_checksum: sha1:db95c24dba0b15f95a4d93857ed0a4fd2bdf64ae
pristine_git_object: 859a1bbd628de9b77beb7be4e3d5d0d53a468fc0
- src/Cvent/SDK/Models/Components/StandardQuestionJson.cs:
- last_write_checksum: sha1:30c967275af4e31514ab0f61fdf41e8738f4f36a
+ src/Cvent/SDK/Models/Components/StandardQuestion.cs:
+ last_write_checksum: sha1:849380b4ed6235ae275ba2e1ef852898c8de9944
src/Cvent/SDK/Models/Components/StandardSurveyEmailTemplateJson.cs:
id: 98e6180dd41c
last_write_checksum: sha1:e51d5ed58d95811fdd5ae08bc1c4bafc03e8acfb
@@ -13964,11 +13456,11 @@ trackedFiles:
pristine_git_object: 6968c6e01970fe9920deb5882285f6ca17947c0e
src/Cvent/SDK/Models/Components/StandardSurveyJson.cs:
id: edcfbbee704b
- last_write_checksum: sha1:da11f14d27f370b680d835ef1e963cfd16c1654e
+ last_write_checksum: sha1:9b3264788cb7c35f0dd2f6244810815333230b5e
pristine_git_object: ebe2e80b8829e56568ed657f9e82f7db5d611734
src/Cvent/SDK/Models/Components/StandardSurveyQuestionJson.cs:
id: 2660bf0a864f
- last_write_checksum: sha1:744f2f38dc929eeb6c46e132960b0a991c7c29bf
+ last_write_checksum: sha1:8d555dcd307e5aeb2e442fc95dfb9c8370ac6fab
pristine_git_object: 2dfe42af0c050c0bcee91088dc449e351c310a92
src/Cvent/SDK/Models/Components/StandardSurveyQuestionsPaginatedResponse.cs:
id: 08a9f02951a9
@@ -14032,7 +13524,7 @@ trackedFiles:
pristine_git_object: 606ab653c6a74c2d21169c1e15c6edf8478e6780
src/Cvent/SDK/Models/Components/Supplier.cs:
id: 5f40b8f1dabc
- last_write_checksum: sha1:1083b4e36dde9219c4514a85e9d0c3a4ff35bd53
+ last_write_checksum: sha1:604fdf57ccac6b01716c44fe02d9a9a1415c13a7
pristine_git_object: f785686d6837ee511132a13baafe0e18f8851d4d
src/Cvent/SDK/Models/Components/SupplierAssociatedAds.cs:
last_write_checksum: sha1:51f50101394ee572a9a9059f6a4b3b507dc58521
@@ -14041,17 +13533,15 @@ trackedFiles:
last_write_checksum: sha1:368b5e35868837147baf5bb19b62b9a9dde70812
pristine_git_object: 0d628ca08135012bf50aa1f449edd08756ae6260
src/Cvent/SDK/Models/Components/SupplierResponse.cs:
- last_write_checksum: sha1:a48674405ba6731aa11d95870b53507bb5f41803
+ last_write_checksum: sha1:44c6f9aeda905197ba0923374fe04d20a78fb333
src/Cvent/SDK/Models/Components/SupplierSummaryJson.cs:
id: 775266076abc
last_write_checksum: sha1:beb9beda69f014d88c559f5f3b018074377a15aa
pristine_git_object: 78ef87bf28c366033ad21678962ba3d09261cf99
+ src/Cvent/SDK/Models/Components/SupplierType.cs:
+ last_write_checksum: sha1:f9e972ebf2f92dc79c787f5c6d71f8520d7a1d68
src/Cvent/SDK/Models/Components/SupplierTypeJson.cs:
- last_write_checksum: sha1:4459916df5cdcf7dbc218e7f90adf6526a3ba26e
- src/Cvent/SDK/Models/Components/SupplierTypeJson1.cs:
- id: 9b4334cb0d61
- last_write_checksum: sha1:bd70633228ddfd4b27e964d74ca95403e0b841a8
- pristine_git_object: ce52569af74bddea996112b555f5d97ddca5a074
+ last_write_checksum: sha1:7de44f6c1e345490dcc0a15c5a99e35e8c3d5670
src/Cvent/SDK/Models/Components/Survey.cs:
id: e36d03e835d2
last_write_checksum: sha1:63d1a723b0df46e0ced02c101b081641e74c73d2
@@ -14060,13 +13550,11 @@ trackedFiles:
id: caefd9ca704d
last_write_checksum: sha1:b8ae55381f69b8f9ea3a85e8a0db03733deaaa4b
pristine_git_object: ffca6ce35bd7baf55d6d44ba4e252c5a2e89e1a5
- src/Cvent/SDK/Models/Components/SurveyContactIdJson.cs:
- id: 37ce0754d391
- last_write_checksum: sha1:a0d3b9764c62d983191474b78290dd47bf995d0f
- pristine_git_object: 8664ada66439bf53326efaebe25f9fc5a3053256
+ src/Cvent/SDK/Models/Components/SurveyContactId.cs:
+ last_write_checksum: sha1:5c4c55d36e3b137ab2ee9167573519da0b8a6678
src/Cvent/SDK/Models/Components/SurveyJson.cs:
id: 0453b7f475e7
- last_write_checksum: sha1:9ebe082c2bc2e32bfe022808f69796797a1005a6
+ last_write_checksum: sha1:445722a11e8c02b7a3ec56b6e607d751ddeaa62c
pristine_git_object: ff8eb76b2bf2516dfb881a1f253389ee3317b95e
src/Cvent/SDK/Models/Components/SurveyResponseJson.cs:
id: 1078e8c3ca1e
@@ -14110,8 +13598,8 @@ trackedFiles:
id: ed4444f18383
last_write_checksum: sha1:c135283edc408ec2de0e1ff58f282efcd09c4b8d
pristine_git_object: 75920e48380f0126db211c7fb7c22e8b401e2a73
- src/Cvent/SDK/Models/Components/TargetTypeJson.cs:
- last_write_checksum: sha1:4a3ac5bcb3d9dd760094c172ce04397eafb11ffd
+ src/Cvent/SDK/Models/Components/TargetType.cs:
+ last_write_checksum: sha1:0e5ae2b9366bfcc071b8f3cdf66e221b8a76ec08
src/Cvent/SDK/Models/Components/Tax.cs:
last_write_checksum: sha1:de564c9f067e4be5dffee6642f9dc2b38f250a9a
src/Cvent/SDK/Models/Components/TaxAndFeeJson.cs:
@@ -14124,36 +13612,28 @@ trackedFiles:
id: 2dda03503520
last_write_checksum: sha1:affef4d2be79fd485ca4205f3d2bb4f649cd5a30
pristine_git_object: 03d7fdc1488ffa1bc8e32853b18e860342657c16
- src/Cvent/SDK/Models/Components/TaxTypeJson.cs:
- id: 9ded630880fe
- last_write_checksum: sha1:449fdd6f6da1ee1d8900de8b8703f8b56d7ed36c
- pristine_git_object: cabb0a48fff15b88aa90ffd6ee48392c27785002
+ src/Cvent/SDK/Models/Components/TaxType.cs:
+ last_write_checksum: sha1:1ba941fa4e1e258950707ad7189b25bd75c743d2
src/Cvent/SDK/Models/Components/TaxesPaginatedResponse.cs:
last_write_checksum: sha1:c4c6a9e1e1d60b5d1d4940417dd152345ae27a3f
- src/Cvent/SDK/Models/Components/TextAnswerFormatJson.cs:
- last_write_checksum: sha1:650079ba33f741392bab29b554fa4130d1f16a73
+ src/Cvent/SDK/Models/Components/TextAnswerFormat.cs:
+ last_write_checksum: sha1:7fc221168f40e63cc7804ea7615643405a1b12a9
+ src/Cvent/SDK/Models/Components/TextField.cs:
+ last_write_checksum: sha1:23e3595124c2402b6bec41f890d595a102cb7787
src/Cvent/SDK/Models/Components/TextFieldJson.cs:
- last_write_checksum: sha1:5537b9580ebf217c7979a2d79b0ee74a39eb0638
- src/Cvent/SDK/Models/Components/TextFieldJson1.cs:
- id: 0191acdb3c7f
- last_write_checksum: sha1:2e5fc5864e3eb71ab10998a128e7db0f19e9723f
- pristine_git_object: e3303b93a0fff7108b999dc5d2fe45f5b1ccad33
+ last_write_checksum: sha1:43591c17dc9174b6187cf8421eff0a9b548c5216
src/Cvent/SDK/Models/Components/Three.cs:
id: d39398f7c8a6
- last_write_checksum: sha1:4304ff851e232f59a89f324cc826a2182a3985c0
+ last_write_checksum: sha1:9247dff7d6577af80520e84825cbef5f865611e0
pristine_git_object: 52d7382e394c391ec9030c8077aa913a4aa97a43
src/Cvent/SDK/Models/Components/ThreeInput.cs:
id: 3077e4cbd1f6
- last_write_checksum: sha1:2327b5c1a751236bae4fdf8377b17bae4a940af6
+ last_write_checksum: sha1:260a5921e09da293364ed5b4dbb1d973e0fc87b1
pristine_git_object: 373424b679f1575e8232a12260cb4ec0bd8889de
- src/Cvent/SDK/Models/Components/ThumbnailStatusJson.cs:
- id: 5fcbfe05b763
- last_write_checksum: sha1:4f480aabc3caa31a1c736065f55b8a7ad9d0c9cc
- pristine_git_object: 036d17742339430a5b3d5b7dc2f5e6e25b0b770c
- src/Cvent/SDK/Models/Components/ThumbnailTypeJson.cs:
- id: 5ba67972c87f
- last_write_checksum: sha1:2c48f9a980474e8c64f04627cb51065d38751996
- pristine_git_object: e551e8b9e70ab7273e308507d3c987d8385b689a
+ src/Cvent/SDK/Models/Components/ThumbnailStatus.cs:
+ last_write_checksum: sha1:9a142ef064b4300cf2979fc5a8c9aa03aea990cb
+ src/Cvent/SDK/Models/Components/ThumbnailType.cs:
+ last_write_checksum: sha1:0886bebe106b65ac03c67e5e87a09bd1fa378e5b
src/Cvent/SDK/Models/Components/TicketType.cs:
id: b81283eafc7d
last_write_checksum: sha1:465a46f16bf40d392248805f4184f270ff692cbb
@@ -14179,7 +13659,7 @@ trackedFiles:
last_write_checksum: sha1:c1c1c95d04b83d64041cebe41a2855a4ad6c4d38
pristine_git_object: 869f4680bb73fff936daadebd3df948f443929c9
src/Cvent/SDK/Models/Components/TransactionDetailResponse.cs:
- last_write_checksum: sha1:d53749228834d985340213c8aabaab9f04a4a39c
+ last_write_checksum: sha1:dd96cd2f588f6158b7f8cdd900fb12d01d88adb9
src/Cvent/SDK/Models/Components/TransactionDetailsPaginatedResponse.cs:
id: 4bc2388a7cf9
last_write_checksum: sha1:fdbf0f048d98dfbd76474406af6b7714ee1d661e
@@ -14191,7 +13671,7 @@ trackedFiles:
src/Cvent/SDK/Models/Components/TransactionItemCreateInput.cs:
last_write_checksum: sha1:ad6502546c65ae79d7bef8045ee11c16f7356e80
src/Cvent/SDK/Models/Components/TransactionItemResponse.cs:
- last_write_checksum: sha1:a9bc7196a6b562a524e21fa1727d706c2404a087
+ last_write_checksum: sha1:b58440b645ef62b3c24d5f38b3fe2636baa31c93
src/Cvent/SDK/Models/Components/TransactionItemsPaginatedResponse.cs:
id: f9b25552fa33
last_write_checksum: sha1:921d4a7042b9e5f11994236781d8feef34daba1e
@@ -14226,116 +13706,62 @@ trackedFiles:
pristine_git_object: a6a68cb697816aef4b7122814a56a022bbc435a3
src/Cvent/SDK/Models/Components/TravelAccount.cs:
id: b2c6f50970e3
- last_write_checksum: sha1:54ff6a80f0e148625573511e74a390a3f6b61133
+ last_write_checksum: sha1:9d5fbb59131778f5dafa7dea9f1951ac228ad0b5
pristine_git_object: 71792b1728787b875dd26b7458894cdaec3aba29
src/Cvent/SDK/Models/Components/TravelAccountPaginatedResponse.cs:
id: c99fe60e69ae
- last_write_checksum: sha1:194adee2ad691e49d412417620fb457548433ffb
+ last_write_checksum: sha1:47a0be2135ddcb4fff142b025772057340e0f377
pristine_git_object: 2caabb3f851c3ff1570ff71d89fb70383b2497c0
src/Cvent/SDK/Models/Components/TravelAccountSupplierAccount.cs:
id: 7bee52652eb9
- last_write_checksum: sha1:b64b39e676171832714d29e29848199d020cc073
+ last_write_checksum: sha1:7fb6f2fa3587585a1ad8399c0f1942bc397a705f
pristine_git_object: 102b0919036c2deee13c3936a98282024e9b8b3d
src/Cvent/SDK/Models/Components/TravelAccountSupplierAccountPaginatedResponse.cs:
id: 02825c0f3039
- last_write_checksum: sha1:5f6d7b2f6d5154553baa56a459f411a5677d2a2e
+ last_write_checksum: sha1:9c677e05f6e1190f2a9fbfa75662278a62388a76
pristine_git_object: 333bae43056aeffdc973ce10bcda59fd98fbb851
src/Cvent/SDK/Models/Components/TravelAccountSupplierAccountTravelAccount.cs:
id: 3fffdec918c1
last_write_checksum: sha1:c7b64cf2a91a2eaca03437303c3dd7dca25afada
pristine_git_object: 2f20489f225df06fea85067af54bf9de986952c2
- src/Cvent/SDK/Models/Components/TravelAccountTypeJson.cs:
- id: fc7d2b4d8efe
- last_write_checksum: sha1:ea02a9b209a6e4be98028b9bef0d9a9c1693b03d
- pristine_git_object: b213d601fc1f8ce93e1db55a957f919838115a1b
- src/Cvent/SDK/Models/Components/TravelAmenityJson.cs:
- id: d4d9acf738ad
- last_write_checksum: sha1:07f1a8aeb5a7a72c7e456b181651db7c3008029e
- pristine_git_object: f2a6c4444e9b140a46acf15a4df59b630ca17e18
- src/Cvent/SDK/Models/Components/TravelBidAmenityJson.cs:
- id: 19b92ee06fa9
- last_write_checksum: sha1:ae368059226faf957ed442179ad4c5e289f88d1f
- pristine_git_object: 9be45267f3dff82cc86345e0e19def069c487f5f
- src/Cvent/SDK/Models/Components/TravelBidCommentJson.cs:
- id: ff6c121e5df8
- last_write_checksum: sha1:259c1b537c1c25f040fe1669ccc4ebb126a9ef9b
- pristine_git_object: 8a256e95c8024cd662d9c135e405d51229e9a694
- src/Cvent/SDK/Models/Components/TravelBidDiscountJson.cs:
- id: 7978e4006d1b
- last_write_checksum: sha1:9c1ec3d44d74e062ee1e5fe741c701a388dcb91d
- pristine_git_object: 5d84e4f1fe3266877b265baf9135ddba142ca4c8
- src/Cvent/SDK/Models/Components/TravelBidDiscountJsonPropertyRoom.cs:
- id: d1c9d87ba5a6
- last_write_checksum: sha1:ef21d08bf8e3a590829aa419ed1e49d988bdf62f
- pristine_git_object: cd29b27e231b7404c0a303582b93c0cee99621b8
- src/Cvent/SDK/Models/Components/TravelBidDispositionAcceptedRoomJson.cs:
- id: 73de0d769b13
- last_write_checksum: sha1:1e7284690484bf2b5816ab9c09362d753ed649dc
- pristine_git_object: 6a2369dd22be122ce09e7d64a7d296c53fed6421
- src/Cvent/SDK/Models/Components/TravelBidDispositionAcceptedRoomJsonPropertyRoom.cs:
- id: 2700d8c0d5a7
- last_write_checksum: sha1:a16ea8d3e663436ee5e35f32f88090d0b67cd10c
- pristine_git_object: f4ab3cd58cb54872a41fac6b83f1e4e34c96ec3e
- src/Cvent/SDK/Models/Components/TravelBidDispositionJson.cs:
- id: 06e096727086
- last_write_checksum: sha1:2b88a6065286821c759ab6dea4f3d9aab703263e
- pristine_git_object: adb75ee1f8913773a610a245b140e19bce227d44
- src/Cvent/SDK/Models/Components/TravelBidFairSeasonJson.cs:
- id: 1dc8869fe5c0
- last_write_checksum: sha1:fd1f2c98971bc72344a6cf5e23264edbca3c9cdd
- pristine_git_object: 0c543f0df445f0e66f5b7c0dd031225305f9d752
- src/Cvent/SDK/Models/Components/TravelBidFairSeasonRateJson.cs:
- id: 723434fd1c2f
- last_write_checksum: sha1:027134c0bf33c259011dc90b8348ce1bae9c3825
- pristine_git_object: 536c521eaa30a9fbf0525a434bbd32b61baf2c77
- src/Cvent/SDK/Models/Components/TravelBidFairSeasonRateJsonPropertyRoom.cs:
- id: f201bf6264d8
- last_write_checksum: sha1:41c37b2ea74e680f8d29774f07e3376b1e9170d9
- pristine_git_object: bdb2d4fe3afa622907e290eb292d991fcbd06ffa
- src/Cvent/SDK/Models/Components/TravelBidPolicyJson.cs:
- id: f2c99ccebf8f
- last_write_checksum: sha1:a8946eedc40c5be32cb26604a30f42fe939e09f1
- pristine_git_object: de6c0c1b56c6fcd97db7d1e7ae21d5917b9ef5eb
- src/Cvent/SDK/Models/Components/TravelBidRateJson.cs:
- id: e4d838ca2616
- last_write_checksum: sha1:b33e61c765359f9f10afb5a4b0a910db0c990d86
- pristine_git_object: 9ae122dfdd95ca9e61fe577dd26193b99b57882d
- src/Cvent/SDK/Models/Components/TravelBidRoomJson.cs:
- id: 05936811ae77
- last_write_checksum: sha1:b792ee25747489d56b7159a69150cb39759baf5c
- pristine_git_object: 1b1ddfb5b5b63919399e971fc30793ec7592355a
- src/Cvent/SDK/Models/Components/TravelBidRoomJsonPropertyRoom.cs:
- id: 5f65c5be779f
- last_write_checksum: sha1:d64393e3252982b33ba6e89bbc8edb704f98d31d
- pristine_git_object: c293a43110b72f9295187d52bc9bcdb0d887bc78
- src/Cvent/SDK/Models/Components/TravelBidSeasonJson.cs:
- id: 50f2ae72bf1c
- last_write_checksum: sha1:9729e7fa9e5f2625c72a6131b5be82c8ec3ae9ba
- pristine_git_object: c4cb557c37f62dde5976757ab032db1bdafa0b22
- src/Cvent/SDK/Models/Components/TravelBidSeasonRateJson.cs:
- id: 7090d1517a4d
- last_write_checksum: sha1:33aca35b3d7aceabe2019e0e50444dbf12f4fa55
- pristine_git_object: d2ae7649418475dee41101ec66154f67cfb07bc2
- src/Cvent/SDK/Models/Components/TravelBidSeasonRateJsonPropertyRoom.cs:
- id: f63a0298b9cd
- last_write_checksum: sha1:de7363237c32da341eb552d6f64517885eb829e3
- pristine_git_object: 1dd63a0df56b086fc8cd7edd131fc5c1e2bd0121
- src/Cvent/SDK/Models/Components/TravelBidTaxFeeJson.cs:
- id: 9cf212100840
- last_write_checksum: sha1:9de620fc33b9b027f9aca4ccdd920829e48c7339
- pristine_git_object: e16a28519d7a6ae44325203d91a648d0f49a5b48
- src/Cvent/SDK/Models/Components/TravelBidWeekendDayJson.cs:
- id: 83db30f7cced
- last_write_checksum: sha1:c41659ee1a2f97f529266cd51f851eee5a5c94c8
- pristine_git_object: e45270a4d4fa06662c8bdc798ce883e3ff3518d4
- src/Cvent/SDK/Models/Components/TravelBreakOutRoomJson.cs:
- id: 8d45704973bf
- last_write_checksum: sha1:dbf4a961a79029de205ab2abdb0179b5660e6ad5
- pristine_git_object: d05b2b3331355a584450251c65a15afdd11b7f88
- src/Cvent/SDK/Models/Components/TravelDayDelegateRateJson.cs:
- id: d34d387e6d34
- last_write_checksum: sha1:fe71532e0d13c7ec6408f6297cb006e6ed0f4aba
- pristine_git_object: 417356374a31bb63189c8f6af5eb2f620db69aae
+ src/Cvent/SDK/Models/Components/TravelAccountType.cs:
+ last_write_checksum: sha1:ee0e928b1f6004b85f0a937f9c3109600afb400d
+ src/Cvent/SDK/Models/Components/TravelBidAmenity.cs:
+ last_write_checksum: sha1:2ad369591cbce27220ed3a45346ee34a9ef35e4f
+ src/Cvent/SDK/Models/Components/TravelBidComment.cs:
+ last_write_checksum: sha1:3f34b8832e8436f153a609bfbf19144e486cf9a8
+ src/Cvent/SDK/Models/Components/TravelBidDiscount.cs:
+ last_write_checksum: sha1:1a97a00ce3a8bac8db37433d799109bd751ac14b
+ src/Cvent/SDK/Models/Components/TravelBidDiscountPropertyRoom.cs:
+ last_write_checksum: sha1:fc4dbc271c718e581cb5a6bee6e72a77fa89012a
+ src/Cvent/SDK/Models/Components/TravelBidDisposition.cs:
+ last_write_checksum: sha1:617dde27429aea9445276748b9e7f913cad0d684
+ src/Cvent/SDK/Models/Components/TravelBidDispositionAcceptedRoom.cs:
+ last_write_checksum: sha1:b4855cdaadd574702d8854c26e35a0795a7d87e1
+ src/Cvent/SDK/Models/Components/TravelBidDispositionAcceptedRoomPropertyRoom.cs:
+ last_write_checksum: sha1:95b4ca65a177c52ef87ebfb551bd90bf2fff780e
+ src/Cvent/SDK/Models/Components/TravelBidFairSeason.cs:
+ last_write_checksum: sha1:0a1031e17bde44650af0f01368d07cd65ff96835
+ src/Cvent/SDK/Models/Components/TravelBidFairSeasonRate.cs:
+ last_write_checksum: sha1:aaa88ec683f8901b009c8dffa3687d0efbb3f262
+ src/Cvent/SDK/Models/Components/TravelBidFairSeasonRatePropertyRoom.cs:
+ last_write_checksum: sha1:4b555dc98de5406b3fa3a50bd5f194426f43f695
+ src/Cvent/SDK/Models/Components/TravelBidPolicy.cs:
+ last_write_checksum: sha1:e69653ba2442ee6cd53fe319d0c9569681949cf7
+ src/Cvent/SDK/Models/Components/TravelBidRoom.cs:
+ last_write_checksum: sha1:d70647f3c6fe2453812f705d94e444eac440da4f
+ src/Cvent/SDK/Models/Components/TravelBidRoomPropertyRoom.cs:
+ last_write_checksum: sha1:d8d7dfb066605a2a7c26e1af6cf409274723bedf
+ src/Cvent/SDK/Models/Components/TravelBidSeason.cs:
+ last_write_checksum: sha1:817d83818b565b1393b25dec1455918917734429
+ src/Cvent/SDK/Models/Components/TravelBidSeasonRate.cs:
+ last_write_checksum: sha1:decbe2833ef2ebfd5d972554d28324cf273d8ecb
+ src/Cvent/SDK/Models/Components/TravelBidSeasonRatePropertyRoom.cs:
+ last_write_checksum: sha1:57e24092e0bc16673112dbba936b568fc655317b
+ src/Cvent/SDK/Models/Components/TravelBidTaxAndFee.cs:
+ last_write_checksum: sha1:2d1e65ea7e7e129b6f055cf1d8e4b4b643550581
+ src/Cvent/SDK/Models/Components/TravelBidWeekendDays.cs:
+ last_write_checksum: sha1:72f07b4bd9e5672e03969fe2a612eeebb6b37b08
src/Cvent/SDK/Models/Components/TravelDepartureArrivalJson.cs:
id: 6646ca8e0fbc
last_write_checksum: sha1:ca62edcca960323d3e25a14215ebbf828304e7d5
@@ -14348,73 +13774,73 @@ trackedFiles:
id: 5cd918a70da6
last_write_checksum: sha1:d835b30150f499b17171b9cd38dac0cc1a46f2f7
pristine_git_object: e73940420b46576413137ed1d7edea56e7b93317
- src/Cvent/SDK/Models/Components/TravelGroupAndMeetingJson.cs:
- id: a99e695db8e6
- last_write_checksum: sha1:41f3aee32da04b9416a36d10e4f41126b2688122
- pristine_git_object: 63d0a2909df3c488da695679392dd557ff549a99
- src/Cvent/SDK/Models/Components/TravelMeetingRoomBasicInfoJson.cs:
- id: 211be7cad323
- last_write_checksum: sha1:69a9d1f41b5cca1635f844c0c468e0098a649190
- pristine_git_object: 2497082871b1a9f09b4aa0c218ee7d7dbfae1f96
src/Cvent/SDK/Models/Components/TravelProgram.cs:
id: d3a3bd558d60
- last_write_checksum: sha1:8806d4ad7ef0b12b7a2f53b7c9d2eae43f0e4d9d
+ last_write_checksum: sha1:30ce44edcb0510a30c88f1a95fc857aec15cde52
pristine_git_object: a2647e77fe6dee192aaddaaf1250480d83ea1853
- src/Cvent/SDK/Models/Components/TravelProgramFormatTypeJson.cs:
- id: b6cc7df17b19
- last_write_checksum: sha1:9e4ed7aa159048220a3c5ad5a7298eccc7eb49e9
- pristine_git_object: 0e5b12d6d3688fe3910666c6ba854cc9d698959f
+ src/Cvent/SDK/Models/Components/TravelProgramFormatType.cs:
+ last_write_checksum: sha1:306c11fd6eeb7abefeab675c6818390e032bfb55
src/Cvent/SDK/Models/Components/TravelProgramPaginatedResponse.cs:
id: 2d84dd2ec942
- last_write_checksum: sha1:625fbe17b256e15285ab4a392e242524c93cb2f9
+ last_write_checksum: sha1:47d8ed6594f4e869b1ea308711b11a2b25b0bc92
pristine_git_object: ccd52a146aaa7ae8e8005b80c4a283cadc44e32f
- src/Cvent/SDK/Models/Components/TravelProgramQuestionJson.cs:
- id: 00303e44cf0f
- last_write_checksum: sha1:40981b00bf90cf03fa82c63681e1149660c33f5f
- pristine_git_object: a80d534139ecd08d03c53dbcd7dd7edf84903306
- src/Cvent/SDK/Models/Components/TravelProgramStatusJson.cs:
- id: 586f202d8a9b
- last_write_checksum: sha1:87193f03be09d5429ea886824d8b94b790da34a8
- pristine_git_object: 2f486af0290c3480f8548b029259e5349b270414
- src/Cvent/SDK/Models/Components/TravelProgramStayTypeJson.cs:
- id: d4739e56dd66
- last_write_checksum: sha1:a7ed82211fdd146da2907fa39a5348c513329a9d
- pristine_git_object: 4eb0c5abfca856d3ba2683fab5f4f17cf76cf9ef
+ src/Cvent/SDK/Models/Components/TravelProgramQuestion.cs:
+ last_write_checksum: sha1:79498ff473ce7aeb75a0010b01be9fdb9394a9cd
+ src/Cvent/SDK/Models/Components/TravelProgramQuestion1.cs:
+ last_write_checksum: sha1:a510ada69c7d42a5a90fd6e124a7680f2e6a0c3a
+ src/Cvent/SDK/Models/Components/TravelProgramQuestionTravelProgram.cs:
+ last_write_checksum: sha1:6ba0f3045e30fa6ed56a1618d6de2185e7760a30
+ src/Cvent/SDK/Models/Components/TravelProgramStatus.cs:
+ last_write_checksum: sha1:77a0143a7d272a31a6c1618221c000f5d27e5f80
+ src/Cvent/SDK/Models/Components/TravelProgramStayType.cs:
+ last_write_checksum: sha1:d6f945f8975b9975f198434a2c774c917912b142
src/Cvent/SDK/Models/Components/TravelProgramTravelAccount.cs:
id: 82b8357a90fb
last_write_checksum: sha1:bd5e5db37e9cab10d2f8a33b27d0b92bdb94cb9f
pristine_git_object: 42dfa6a7b1a6b5145f4c8b1d81f395d590c650a9
- src/Cvent/SDK/Models/Components/TravelProgramTypeJson.cs:
- id: db256bc0bc06
- last_write_checksum: sha1:4ff8e5dc5b4a6415a9e869be7e432f76721da9e8
- pristine_git_object: ef31c98359dfcdbbcfb4769cf1b0ede311360000
+ src/Cvent/SDK/Models/Components/TravelProgramType.cs:
+ last_write_checksum: sha1:254893fec22b464d2d2a27db12c4d3edac6d4732
src/Cvent/SDK/Models/Components/TravelProposal.cs:
id: 2af8d62b167c
- last_write_checksum: sha1:faf04681f628583d798bfbcc88a1e4dc8d1db640
+ last_write_checksum: sha1:312034e27d6951124542719f1a376aa245737b87
pristine_git_object: c1bc52e59acfd6ca45bee48e9136daf00fefd08e
- src/Cvent/SDK/Models/Components/TravelProposalBid.cs:
- id: 9ac967517368
- last_write_checksum: sha1:ac41b5ba32a6dd7b18d1c718f4ea1b8da585ad16
- pristine_git_object: 7c8ea205606751aee55a4cb166769fbe19261024
- src/Cvent/SDK/Models/Components/TravelProposalBidIdJson.cs:
- id: 32a39c8ec4e8
- last_write_checksum: sha1:f124c98efa7b2dea55a1ac726863867d6994d8b9
- pristine_git_object: f83892283d34f3b17f2d2c7774aa410ae0ca6188
+ src/Cvent/SDK/Models/Components/TravelProposalBid1.cs:
+ last_write_checksum: sha1:446c35c090395991e3a90ba30e5d6c74d01ee624
+ src/Cvent/SDK/Models/Components/TravelProposalBid2.cs:
+ last_write_checksum: sha1:72d474606ad02bd6a5bcf77c4e7fcf9c76f2623f
src/Cvent/SDK/Models/Components/TravelProposalBidPaginatedResponse.cs:
id: f97b6018eed1
- last_write_checksum: sha1:b30408dbcb19cdb1caa6ec2ccc2df6058f02c3c4
+ last_write_checksum: sha1:2a2c0b493affb6633ef638a7589b84a8094d3bf9
pristine_git_object: a9e53a13c8ffb20f24a398780c452fdb02f3c30a
+ src/Cvent/SDK/Models/Components/TravelProposalBidRate.cs:
+ last_write_checksum: sha1:cb3b623ab0cd62873e5d92ca89d9183fe074608e
src/Cvent/SDK/Models/Components/TravelProposalBidTravelProposal.cs:
id: 807a6ca806ad
last_write_checksum: sha1:993d54334b1088571563c6e0b36a9b17d561fd3a
pristine_git_object: d478f76fe014127faf65293f23d97333c85ff7e3
- src/Cvent/SDK/Models/Components/TravelProposalDispositionJson.cs:
- id: cf95280b6609
- last_write_checksum: sha1:6f70c076c46d5287fca18e6edede533e1c12bb2e
- pristine_git_object: 25279ffd8c74b09bf8edf8b01b317fc7ce428c3d
+ src/Cvent/SDK/Models/Components/TravelProposalCustomQuestion.cs:
+ last_write_checksum: sha1:39e9fbcd601b5c47f600f87ce3d9aff1cb3aec38
+ src/Cvent/SDK/Models/Components/TravelProposalCustomQuestionQuestion.cs:
+ last_write_checksum: sha1:e868adbe7465d1821a24be6852cc79f60cb6b78c
+ src/Cvent/SDK/Models/Components/TravelProposalDisposition.cs:
+ last_write_checksum: sha1:904599bd9c1dd7f285e805c34a126a944a2e37ce
+ src/Cvent/SDK/Models/Components/TravelProposalGroupAndMeeting.cs:
+ last_write_checksum: sha1:0720c9a1a1761e735c6d5f3dfd3fadb504944a6b
+ src/Cvent/SDK/Models/Components/TravelProposalGroupAndMeetingAmenity.cs:
+ last_write_checksum: sha1:3e17124e0e7c4cf261020a95416eb6d56a15622d
+ src/Cvent/SDK/Models/Components/TravelProposalGroupAndMeetingBreakOutRoom.cs:
+ last_write_checksum: sha1:82e9dce01754f4e8309792c6951ffa63209cf852
+ src/Cvent/SDK/Models/Components/TravelProposalGroupAndMeetingDayDelegateRate.cs:
+ last_write_checksum: sha1:b58ec7917562b08d71009d9283afaf72fa6e9eae
+ src/Cvent/SDK/Models/Components/TravelProposalGroupAndMeetingMeetingRoomBasicInformation.cs:
+ last_write_checksum: sha1:d8f58da27a982e8139d46e29eb3c00fc5d4057c2
+ src/Cvent/SDK/Models/Components/TravelProposalGroupAndMeetingRunOfHouseRate.cs:
+ last_write_checksum: sha1:6b202f134cfc212241b81aa6e74c62b621c64984
+ src/Cvent/SDK/Models/Components/TravelProposalGroupAndMeetingTaxAndServiceCharge.cs:
+ last_write_checksum: sha1:4f1cbdc6a10b07e27db80b8ce79ffc4c4d440ea5
src/Cvent/SDK/Models/Components/TravelProposalPaginatedResponse.cs:
id: 69875a2aea46
- last_write_checksum: sha1:d29184390b705e0e5f87423a854527031f1a0379
+ last_write_checksum: sha1:2026f8be0c28bf659b8ef8b4ecc91dec8626f119
pristine_git_object: 95946787460a68ed7d948bf7d02a9d4c781ba3d1
src/Cvent/SDK/Models/Components/TravelProposalTravelProgram.cs:
id: f33b869208f6
@@ -14422,14 +13848,6 @@ trackedFiles:
pristine_git_object: a69af6141f94a24d17a9e41f954bfdb92a779875
src/Cvent/SDK/Models/Components/TravelRequestStatus.cs:
last_write_checksum: sha1:b6539169df62ea891a26e20a03b904dd5d9dc550
- src/Cvent/SDK/Models/Components/TravelRunOfHouseRateJson.cs:
- id: 2f0afdccf877
- last_write_checksum: sha1:a2d93a14eeec16ca8ced2ae70270db51ee4d3d90
- pristine_git_object: 4fb58c8b9fa5a72dc97d3ab7620b78a02a9ca923
- src/Cvent/SDK/Models/Components/TravelTaxAndServiceChargeJson.cs:
- id: e49ecf28378b
- last_write_checksum: sha1:cee932b6ddf02e2eb17e7d3fe1aba063031b022c
- pristine_git_object: 782a39c7cf81e048bb79d9b0e761011db08bcab9
src/Cvent/SDK/Models/Components/TravelType.cs:
last_write_checksum: sha1:3f7b5efd8ffab16bd3789cb600f756b9f525477f
src/Cvent/SDK/Models/Components/Two.cs:
@@ -14444,16 +13862,14 @@ trackedFiles:
pristine_git_object: ef29d7c0262d950bf37d85439fb4ef21585f3e2c
src/Cvent/SDK/Models/Components/UTMOverride.cs:
last_write_checksum: sha1:5b7268040faee2a91cc63fb9fbf55ac531cba404
- src/Cvent/SDK/Models/Components/UnitPositionJson.cs:
- last_write_checksum: sha1:ae9c7ffe67e5ad02602cb67b41b30bda671093d9
+ src/Cvent/SDK/Models/Components/UnitPosition.cs:
+ last_write_checksum: sha1:38e8ddf3aecc08bd17a7b242e98e1a471e5b6b3f
src/Cvent/SDK/Models/Components/UpdateAppointmentRequest.cs:
id: f5b2993ad94a
last_write_checksum: sha1:d5d152b9ed93aa6bbdd9b375f5e94925a0f6159f
pristine_git_object: 4c50b147f363386e74e3fb03773c408e79c4de2f
- src/Cvent/SDK/Models/Components/UpdatedThroughNamePropertyJson.cs:
- id: 93ba4723dc3d
- last_write_checksum: sha1:447e63132e550c57713663420935f97ceaa112a5
- pristine_git_object: da0986005f3ce44b992c6bc79b315f8ff4acbd9d
+ src/Cvent/SDK/Models/Components/UpdatedThroughNameProperty.cs:
+ last_write_checksum: sha1:48aa5322ed9e227ff5871379784a8a08d4572e36
src/Cvent/SDK/Models/Components/Usage.cs:
last_write_checksum: sha1:42903d416b754be7959b40b6eda2be923409f8a8
src/Cvent/SDK/Models/Components/UsagePaginatedResponse.cs:
@@ -14462,7 +13878,7 @@ trackedFiles:
pristine_git_object: 9efbbb2495c6994f6f143ee00cfa0f113ab7afb0
src/Cvent/SDK/Models/Components/User.cs:
id: fb149dbb9d85
- last_write_checksum: sha1:3eb5d2ea27ed411af7b591c6d92cabc0320e450e
+ last_write_checksum: sha1:103362c29079dbc4fcd56e00babe2d62f4320b71
pristine_git_object: 015cf851009a377b2cc8b3f5321a467c99bfbeb2
src/Cvent/SDK/Models/Components/UserEnterpriseExtensionJson.cs:
id: 03a9db3848c9
@@ -14494,11 +13910,11 @@ trackedFiles:
pristine_git_object: d4efd25ae26ef7ddfa14f092a4cfff2c8f43f039
src/Cvent/SDK/Models/Components/UserInput.cs:
id: b962f663b012
- last_write_checksum: sha1:1ffd12def00387cce1214fa88e07017a86602e08
+ last_write_checksum: sha1:cc48ea46acf5969a1f93d23e6ff8396207315d87
pristine_git_object: e0de743651359bba8f205117b1367bf31263e2b7
src/Cvent/SDK/Models/Components/UserJson.cs:
id: 92529acee91b
- last_write_checksum: sha1:07b24ef8372f5098d9b861bcf09cce954c96b211
+ last_write_checksum: sha1:f5c92f9847461a2f30fea3bcc8b1d836f7438357
pristine_git_object: 19ecb5a5d6ec2082ecfbfd5a894acf62ceb7e390
src/Cvent/SDK/Models/Components/UserTypeJson.cs:
id: 75f942ab3514
@@ -14552,7 +13968,7 @@ trackedFiles:
pristine_git_object: 88c1fa4566d8f09b1c7324748c3485f5da32b1e1
src/Cvent/SDK/Models/Components/VenueSummary.cs:
id: 94b09b531c04
- last_write_checksum: sha1:1633647f4966806235137fabe277c180fcea4b60
+ last_write_checksum: sha1:f1cf6c9f03bd906f8df40e975e79ebd3e1ed440c
pristine_git_object: d684fd5745bfe5cf4e4f578b8aa6d8ead72e9bd9
src/Cvent/SDK/Models/Components/Version.cs:
id: 8eedf29527d6
@@ -14562,102 +13978,72 @@ trackedFiles:
id: 11bd96df84f8
last_write_checksum: sha1:68eef5a03f2c7a4e54424c3ef78e7be8241366f3
pristine_git_object: 499c2920c0ad9125db4f525ac0051be27b9d0976
- src/Cvent/SDK/Models/Components/VideoAssetIdJson.cs:
- id: c27d87b9bb3a
- last_write_checksum: sha1:bbd5184c29731cea2f86a5c55b1011b0a3ca549b
- pristine_git_object: 186fade510158e7841d648b7e2fd62a8cff736ff
- src/Cvent/SDK/Models/Components/VideoClipJson.cs:
- id: 2b9e2ddc25a1
- last_write_checksum: sha1:0dddc84285f7f28dfe78facae52f2412958de02e
- pristine_git_object: 1abc8eec5e3e8a214a91d9aadbfa6ed6e69d0ed8
- src/Cvent/SDK/Models/Components/VideoErrorCodeJson.cs:
- id: d7b24a5c53e8
- last_write_checksum: sha1:08bcc88035f819e4beac9884553b98743b50e9bc
- pristine_git_object: f9b2861db5e69ae99fc02a1c76f4ad7670b8452f
- src/Cvent/SDK/Models/Components/VideoErrorJson.cs:
- id: ac72bfc61da9
- last_write_checksum: sha1:8075dc1f19d6fcdd5b5f6e7ccb8b8c7b2a0566f5
- pristine_git_object: 3c849940b450487dde872d42725b08427513e64c
- src/Cvent/SDK/Models/Components/VideoJson.cs:
- last_write_checksum: sha1:bf5f152cb41db60b27d468a0610d59751755089a
- src/Cvent/SDK/Models/Components/VideoRenditionJson.cs:
- id: 32cbd84e07a1
- last_write_checksum: sha1:5eb00cfa3c053ad1b1461aa0eed47d4a6ef555e8
- pristine_git_object: a68f95a095fb2eccc6acdf062a0803296bfe6212
- src/Cvent/SDK/Models/Components/VideoRenditionJsonLink.cs:
- id: 28849d692d4c
- last_write_checksum: sha1:bf85e66bd848e9917a86b684737dfe55f432f1c1
- pristine_git_object: c5a91c3a0857c3d366784650c9c781d81e9ec0f1
- src/Cvent/SDK/Models/Components/VideoRenditionTypeJson.cs:
- id: c631be0af85a
- last_write_checksum: sha1:c2de1889c90bbeee787355f32d37bd60aeab45e9
- pristine_git_object: eeec1843731222b97cb5de1a97e334a3bfb9be6e
+ src/Cvent/SDK/Models/Components/Video1.cs:
+ last_write_checksum: sha1:dc28f2f77e8e9da74f27a231e5512878648a377b
+ src/Cvent/SDK/Models/Components/VideoAssetID.cs:
+ last_write_checksum: sha1:e8a6d14eae137fc8ca88e3355e8bdab62a0f0ac9
+ src/Cvent/SDK/Models/Components/VideoClip.cs:
+ last_write_checksum: sha1:23b64177a3fc8dbfe9b2e8e67bab4b33b2fef5af
+ src/Cvent/SDK/Models/Components/VideoError.cs:
+ last_write_checksum: sha1:5e952d65070f86e64938e5d0bba8e5c9d2d4599e
+ src/Cvent/SDK/Models/Components/VideoErrorCode.cs:
+ last_write_checksum: sha1:e1f2b549c0d355affc7a4ef7f1df44f525fe488e
+ src/Cvent/SDK/Models/Components/VideoRendition.cs:
+ last_write_checksum: sha1:391ecf4182696a3c24d6f6e37b0c4f8a1fe59218
+ src/Cvent/SDK/Models/Components/VideoRenditionLink.cs:
+ last_write_checksum: sha1:9bb388dbf3dead0fdcf7cb2c183945d27381a09d
+ src/Cvent/SDK/Models/Components/VideoRenditionType.cs:
+ last_write_checksum: sha1:e5df91692ae34b6b8bcd20c0c3156dfe71dbc00a
src/Cvent/SDK/Models/Components/VideoRenditionsResponse.cs:
id: d2554d83f111
- last_write_checksum: sha1:f6aedcbf8c44839457cf145527ad141c94432f88
+ last_write_checksum: sha1:21f342ab4b7074b32146fb7533d88f3151d83ad9
pristine_git_object: b28b04df566879e8c80744c3b17862c83553c67b
- src/Cvent/SDK/Models/Components/VideoSourceJson.cs:
- id: 409f57c5d9ce
- last_write_checksum: sha1:24f68f54d2fbf2b0da4879092361035ff3c7ede9
- pristine_git_object: 211c884375693042ae2480dc13a358001442743a
- src/Cvent/SDK/Models/Components/VideoSourceJsonStatus.cs:
- id: 7faf073d0452
- last_write_checksum: sha1:3d25160a8f769ce22f8ea11166c3487d61cdb554
- pristine_git_object: 6ea0a1c67748e5cf8d14f8b55ecf29cd4c68245f
- src/Cvent/SDK/Models/Components/VideoStatusJson.cs:
- id: add618573002
- last_write_checksum: sha1:d3fbd112122b15b08634e0ae4a3ba17de9a12b8c
- pristine_git_object: dc2918c1f757ef0d60f53b0c22077f3e99c3c1cc
+ src/Cvent/SDK/Models/Components/VideoSource.cs:
+ last_write_checksum: sha1:b1df6e92d139bfdb8f72477323beaf2112099919
+ src/Cvent/SDK/Models/Components/VideoSourceStatus.cs:
+ last_write_checksum: sha1:0827389507e7572760b8f75a83a77ed96a77e7ba
+ src/Cvent/SDK/Models/Components/VideoStatus.cs:
+ last_write_checksum: sha1:d3598aa1a086c8da1b495f5d5bb9301f9072c2db
src/Cvent/SDK/Models/Components/VideoTextTrack.cs:
id: a992363c1d56
- last_write_checksum: sha1:a96d09f7fb61fd22350114361d3039672aa13b71
+ last_write_checksum: sha1:63a7283523af1c18ad27fdc48efbad227314df60
pristine_git_object: e79d57c6e0ca5aec969d1e396d17b1793bcb109d
- src/Cvent/SDK/Models/Components/VideoTextTrackKindJson.cs:
- id: 0a6a4be63669
- last_write_checksum: sha1:69c8d4fc39a99963c5a92600a72891cb6798779a
- pristine_git_object: 2328c9e74301e2be79eb42ebef9e1273d26a0503
- src/Cvent/SDK/Models/Components/VideoTextTrackStatusJson.cs:
- id: bffce8250726
- last_write_checksum: sha1:b55f671ba2c6725b614621ba29ee314623771ad1
- pristine_git_object: effa58cb5e87842f3c22aaa6bb2a8d3eaa5d7ee8
+ src/Cvent/SDK/Models/Components/VideoTextTrackKind.cs:
+ last_write_checksum: sha1:ef0d1cfc488b094491072eb15446a793d9a2ec63
+ src/Cvent/SDK/Models/Components/VideoTextTrackStatus.cs:
+ last_write_checksum: sha1:20540de38a44949685eb75c10a5d17ef46d2226f
src/Cvent/SDK/Models/Components/VideoTextTracksResponse.cs:
id: 9d89de57cf3f
last_write_checksum: sha1:6b13313f4e9a1ef007d138dd0e292207588cb006
pristine_git_object: 71271e7007eaf1b46679d3766e684087677ebf64
- src/Cvent/SDK/Models/Components/VideoThumbnailJson.cs:
- id: 9544ccb9ce39
- last_write_checksum: sha1:c5504d0922844e38f210b2856443d075c214486b
- pristine_git_object: be62311ec9eb02c4ee93ecda3b7be308bb0652ea
- src/Cvent/SDK/Models/Components/VideoTypeJson.cs:
- id: 291ade30e36d
- last_write_checksum: sha1:5e156d461c4f1878deb093bd317ed437d30cc223
- pristine_git_object: 653c3bd306b10fa5d9f21d4dad57e4824c185ff3
- src/Cvent/SDK/Models/Components/VideoViewJson.cs:
- id: 1d82e67e6475
- last_write_checksum: sha1:f6c4f97d2c2abf7ba76f817bf5feddebc1bb1619
- pristine_git_object: e3c89bf5cfa5fe82a4a21f9c36f7fbbde2dd16d1
+ src/Cvent/SDK/Models/Components/VideoThumbnail.cs:
+ last_write_checksum: sha1:a0c6f721e84bc66ef24c0c86c94e20627a8e995e
+ src/Cvent/SDK/Models/Components/VideoType.cs:
+ last_write_checksum: sha1:9b743c311e23be69358b30f760c5604303e9ecf5
+ src/Cvent/SDK/Models/Components/VideoView.cs:
+ last_write_checksum: sha1:5770a991d0569288320c8e5f69c92d82d2f4f84f
src/Cvent/SDK/Models/Components/VideoViewsPaginatedResponse.cs:
id: 2f8bdec3910d
- last_write_checksum: sha1:790c3ab778556e662c2772e77f587cc6ee696abc
+ last_write_checksum: sha1:abf8d4be43ae64b90e750dc91f861af2cfd91e37
pristine_git_object: 38c52f8459626f73f19bee6128ee60bea27344cc
- src/Cvent/SDK/Models/Components/VideoWarningCodeJson.cs:
- id: 9bda21ce22b9
- last_write_checksum: sha1:484aa2b1007f5a861a098a973ff791a1d0a7a57a
- pristine_git_object: a0430cab2f695ef1ceddf9c86dc9cf808bdefc74
- src/Cvent/SDK/Models/Components/VideoWarningJson.cs:
- id: a3d102e7aa19
- last_write_checksum: sha1:d8b3dcd52e1d89fbcad37881299e28ba9b6a2f67
- pristine_git_object: ec027feb269e5624e3a84ba9f5ca0097390d0186
+ src/Cvent/SDK/Models/Components/VideoWarning.cs:
+ last_write_checksum: sha1:3e3acd165892c1e308e7805a863a0aba61285dd6
+ src/Cvent/SDK/Models/Components/VideoWarningCode.cs:
+ last_write_checksum: sha1:4f786e0a9105bccc84d82a3ae2e50677a3a1b084
src/Cvent/SDK/Models/Components/VideosPaginatedResponse.cs:
id: d957b9ca1073
- last_write_checksum: sha1:fa641e94ed0704401c906d713a31b2656321c415
+ last_write_checksum: sha1:f18ec346ec394495d7957c12180380c5338eeeb9
pristine_git_object: f1fcc79c749c79e319048056ea852f0e81821f5e
- src/Cvent/SDK/Models/Components/ViewTypeJson1.cs:
- id: 2c0ef2a2cddc
- last_write_checksum: sha1:21067fef24bf205a5b17e1036cf5c352a2539419
- pristine_git_object: d14e13dbd4a95f4391963604c94b2dcc21a5f9a2
+ src/Cvent/SDK/Models/Components/ViewType1.cs:
+ last_write_checksum: sha1:1c42ff3b21cc0644ef7fc40e4cabea7d601abb72
src/Cvent/SDK/Models/Components/VolumeDiscountThresholdType.cs:
last_write_checksum: sha1:e2174174d0e05463ccd853313bd0ca2c92201fad
+ src/Cvent/SDK/Models/Components/Voucher.cs:
+ last_write_checksum: sha1:96df915b2cbadeedd7a2e8380884de0856e8c293
+ src/Cvent/SDK/Models/Components/VoucherCapacity.cs:
+ last_write_checksum: sha1:af9e3d9627e2cf3925157ec0d4abc1c8c2139b97
+ src/Cvent/SDK/Models/Components/VouchersPaginatedResponse.cs:
+ last_write_checksum: sha1:61fb386d793bc7873ad78c6f99bf2329ddd4ed0f
src/Cvent/SDK/Models/Components/Webcast.cs:
id: c66160273a1f
last_write_checksum: sha1:75a1f71946d5b2600789ad4264b94bc14b5fd07f
@@ -14692,16 +14078,16 @@ trackedFiles:
pristine_git_object: 8a41d54ed3ad570cf35ee636e389e25c170fe9a8
src/Cvent/SDK/Models/Components/Weblink.cs:
id: 34baf2e9e66c
- last_write_checksum: sha1:a9131fb98524b9cf28497c56365d7d44cf3645b2
+ last_write_checksum: sha1:9c4faf52f80feef189ff0322f533f6dfd5c0b160
pristine_git_object: 03370cefb0cabb2564bf11502bcff35c6eadaa10
src/Cvent/SDK/Models/Components/WeblinkListResponse.cs:
id: c7e7e456a857
last_write_checksum: sha1:703cd9874444b88265742f5072734ce63cc8828b
pristine_git_object: 5e08a266e350e43abd1a1c7d2ac48f16f492064c
- src/Cvent/SDK/Models/Components/WeddingDetailsJson0.cs:
- last_write_checksum: sha1:b49aedf56059bdb2189082f4662108398cb824d9
- src/Cvent/SDK/Models/Components/WeddingPartnerJson.cs:
- last_write_checksum: sha1:c06bc0a47c90a20611b129d761aa58ec0a86f30f
+ src/Cvent/SDK/Models/Components/WeddingDetails1.cs:
+ last_write_checksum: sha1:6fe4c62feded937b0abd5dc1e636214752d5b651
+ src/Cvent/SDK/Models/Components/WeddingPartner.cs:
+ last_write_checksum: sha1:bb4c9ef113792e5581418ff34c9167c57e1c649c
src/Cvent/SDK/Models/Components/WorkAddress.cs:
last_write_checksum: sha1:263ac75a13cb35654a227b8ac64a12191203144f
src/Cvent/SDK/Models/Components/WorkAddressAddressInput.cs:
@@ -14734,14 +14120,12 @@ trackedFiles:
pristine_git_object: aa6ed4ddbc271037dc30caf4a3b173f080e019d3
src/Cvent/SDK/Models/Components/ZeroAllOf7.cs:
id: 58d60f4f8670
- last_write_checksum: sha1:5749a8dda1a33c75f6b89ec05bbf23732f78643f
+ last_write_checksum: sha1:fc9613409f3f44cc9159cbfa136303124cea36c4
pristine_git_object: 003435e1ed88d013ccd45e3a71613cbbe638c2f9
src/Cvent/SDK/Models/Components/ZeroAllOf8.cs:
id: 04801f5be6bf
- last_write_checksum: sha1:dbf6780dd0c6606ddaedc732d0cb85b20675d929
+ last_write_checksum: sha1:c489606f351e0d5f25e1b1d155bd2250c158f28f
pristine_git_object: 1715c2fad45c1ead2335e42d068b8cbb4564511d
- src/Cvent/SDK/Models/Components/ZeroAllOf9.cs:
- last_write_checksum: sha1:2eb3b359440723a8065d925563a47d1df98f2ae8
src/Cvent/SDK/Models/Components/ZeroAnyOf.cs:
id: 010dc785fd32
last_write_checksum: sha1:a9fb674c004e1221ccee278c6388c2047d527794
@@ -14775,11 +14159,11 @@ trackedFiles:
last_write_checksum: sha1:786914b6edac01cd6879a23ae42dd0da359cce37
pristine_git_object: 6b9b0655f2fcb10a27aaa856c75a2d7070dfc272
src/Cvent/SDK/Models/Errors/ErrorResponse1.cs:
- last_write_checksum: sha1:f35a4254d3261378813f8109385aca75d48320d5
+ last_write_checksum: sha1:6ac194e97e21b6be7e6ee2e395a12254f2e4005b
src/Cvent/SDK/Models/Errors/ErrorResponse2.cs:
- last_write_checksum: sha1:44a0c5b33395eb11af37eb6bd238eba7d33a1e50
- src/Cvent/SDK/Models/Errors/ErrorResponseJson17.cs:
- last_write_checksum: sha1:35b613b3d5fc6cbf0e48ac70c9837b8bda92c23d
+ last_write_checksum: sha1:853edd2b8b0e5ffdb3df61cdd97fb814062d64bf
+ src/Cvent/SDK/Models/Errors/ErrorResponseJson12.cs:
+ last_write_checksum: sha1:e9b448ef8bde3174c917574da16a393cfd3f2f68
src/Cvent/SDK/Models/Errors/ResponseValidationException.cs:
id: 9a7d7eb282bc
last_write_checksum: sha1:92bb031902ace1de9c920e4d478146fb938764d4
@@ -15054,11 +14438,11 @@ trackedFiles:
pristine_git_object: 4c22ded96e7c79af6a1d7d2655ec3028e6bdd351
src/Cvent/SDK/Models/Requests/CreateContactsRequest.cs:
id: 247f60bcd1aa
- last_write_checksum: sha1:0467eb0c6391bdf4c128c10670c047de4da15844
+ last_write_checksum: sha1:d8f58ad66eba83803e12399f096cef6f8bd56c51
pristine_git_object: a0dba5c0293ad43062c9525582985ddef5ecfcb7
src/Cvent/SDK/Models/Requests/CreateContactsResponse.cs:
id: 3b8db2a6c936
- last_write_checksum: sha1:b72a631ca10e4e1e08b77a35e13f7c150f7eb5be
+ last_write_checksum: sha1:0f5bcfbe6d0d3705319f3ee34a1280db65f7a5d5
pristine_git_object: 8e9352e3d90da3bedfb5ee8a399dc1b5c54a87f5
src/Cvent/SDK/Models/Requests/CreateCurrencyConversionRateRequest.cs:
id: aefc0fdbf367
@@ -15650,7 +15034,7 @@ trackedFiles:
pristine_git_object: 0cc20a581dfffd56c2f4094d637dc59b6e1d0628
src/Cvent/SDK/Models/Requests/GetAttendeeByIdResponse.cs:
id: 56eba94508a4
- last_write_checksum: sha1:9016fc45e904296ff428762cb19878bbd15b0815
+ last_write_checksum: sha1:d772dea348f926ed0809173bec8498426c58a2af
pristine_git_object: 255df3a2939b5d58ca7dbe4b6aeb19315b09f89f
src/Cvent/SDK/Models/Requests/GetAttendeeCreditsRequest.cs:
id: 364b7e407425
@@ -15670,7 +15054,7 @@ trackedFiles:
pristine_git_object: a5bb5b794fdfde9cd3b2aede5237de1cc4194dee
src/Cvent/SDK/Models/Requests/GetAttendeeMessagesMembersRequest.cs:
id: 3b921c4448bc
- last_write_checksum: sha1:e57eb51d06b923a2c67d071f67c052947a22fb62
+ last_write_checksum: sha1:a1383f5dd1ec3611f9625d35983da775453e5659
pristine_git_object: 1e27e7f992d1606adfd7a609b02f46be274128d2
src/Cvent/SDK/Models/Requests/GetAttendeeMessagesMembersResponse.cs:
id: 7f6fcf6b1b2b
@@ -16674,7 +16058,7 @@ trackedFiles:
pristine_git_object: 533f3a446058b0020dd3d69a82413b0620d27167
src/Cvent/SDK/Models/Requests/GetTravelProposalBidResponse.cs:
id: 342cba50626c
- last_write_checksum: sha1:196cb0456092eb77c5ea29286a53f133130bed7e
+ last_write_checksum: sha1:042d39ef3a9437b69843b1a39a9c25102be44ce5
pristine_git_object: 24d27b4352926dc14a867d0958b7c1aacb878c12
src/Cvent/SDK/Models/Requests/GetTravelProposalRequest.cs:
id: 50513f59dd49
@@ -16714,7 +16098,7 @@ trackedFiles:
pristine_git_object: 939beae2f24c66480a6f7821d9a0f726f5e2c32c
src/Cvent/SDK/Models/Requests/GetVideoViewsRequest.cs:
id: b2f0d27eae9c
- last_write_checksum: sha1:9b7f97e1856efdfd8f03851bebe3cedaa1e99e59
+ last_write_checksum: sha1:5bb923e49ca1c98e4f694985d85ae1eed8d20dc0
pristine_git_object: 3163dff669045a2cfd05353a253b8a9abf5e7113
src/Cvent/SDK/Models/Requests/GetVideoViewsResponse.cs:
id: c2b1d5d1ef49
@@ -16982,7 +16366,7 @@ trackedFiles:
pristine_git_object: 0f816e185c54053ec6ad54b21e40616679b823c7
src/Cvent/SDK/Models/Requests/ListDurationsRequest.cs:
id: 9e3b764ad998
- last_write_checksum: sha1:93f62db9040c19a37f0f8edd18c25f6f2477844c
+ last_write_checksum: sha1:8eaf40209f0c84cab5c2efb08e079dd89691d232
pristine_git_object: ed9eaef68cfeaf2d0cfb702a76d499c0a25ce781
src/Cvent/SDK/Models/Requests/ListDurationsResponse.cs:
id: 79b0c851bf03
@@ -17020,6 +16404,18 @@ trackedFiles:
id: f864cde93cef
last_write_checksum: sha1:e5f3ffe1381c03fc648372047fab3988de27c2ec
pristine_git_object: 81774a55465e16c9de97cd65039bf4e0c5184c54
+ src/Cvent/SDK/Models/Requests/ListEventVoucherAttendeesRequest.cs:
+ last_write_checksum: sha1:e994fcf6e0706a89614454d80d4b41bdc4a69b1e
+ src/Cvent/SDK/Models/Requests/ListEventVoucherAttendeesResponse.cs:
+ last_write_checksum: sha1:598df5a8c0de04f9bb4a49126965fffe0bec61a6
+ src/Cvent/SDK/Models/Requests/ListEventVouchersPostFilterRequest.cs:
+ last_write_checksum: sha1:562afa623af3142b3a236ba97c373bddbdef52c3
+ src/Cvent/SDK/Models/Requests/ListEventVouchersPostFilterResponse.cs:
+ last_write_checksum: sha1:14e4df46d2912dfecbc29bbbdfffa794f5da91c9
+ src/Cvent/SDK/Models/Requests/ListEventVouchersRequest.cs:
+ last_write_checksum: sha1:aa8b0d5989a550db6aee7a519be0ee6fb9365534
+ src/Cvent/SDK/Models/Requests/ListEventVouchersResponse.cs:
+ last_write_checksum: sha1:54b79c6e20d577d920d301b0cb764ad1bc94f666
src/Cvent/SDK/Models/Requests/ListEventWeblinksRequest.cs:
id: 9578d46b24cb
last_write_checksum: sha1:ceda069d697d8c8617cfeaa3df9bb39d94752d1e
@@ -17466,7 +16862,7 @@ trackedFiles:
pristine_git_object: 8b395eece91eb2d2514e626a0b3e2034443290c1
src/Cvent/SDK/Models/Requests/ListVideosRequest.cs:
id: 7b956f5fafea
- last_write_checksum: sha1:12f112f325052ababa3a184ddd0f3187ad6809f3
+ last_write_checksum: sha1:f5af6a791fc4430339b1372dbb14e6576a332632
pristine_git_object: 978f29c67f667e301a71cae08a42690fcfcae98d
src/Cvent/SDK/Models/Requests/ListVideosResponse.cs:
id: f51247d56e10
@@ -17538,7 +16934,7 @@ trackedFiles:
pristine_git_object: f9d076eff0bf725c7864a275b177883a4348b758
src/Cvent/SDK/Models/Requests/PatchContactsResponse.cs:
id: 8664e03c73c4
- last_write_checksum: sha1:ff3fced8cc8495aef75a2a8f338dd4f487654c42
+ last_write_checksum: sha1:d305f82259dd60080243e10ac6ae42b2578c5c49
pristine_git_object: f641b54093c1b925b9c70eb3e47be58fa4781eaf
src/Cvent/SDK/Models/Requests/PostBadgeRequest.cs:
id: 51f2cd5b64e2
@@ -17742,7 +17138,7 @@ trackedFiles:
pristine_git_object: dcddd4057bc3a3670b64793747ddb484366fa8c9
src/Cvent/SDK/Models/Requests/UpdateAttendeeResponse.cs:
id: c75ed94ce160
- last_write_checksum: sha1:8e2bca6d1a4d4e64a3bc16f4490a292aeb619aea
+ last_write_checksum: sha1:d55a152b0aa06ef2986b98b459e417e6f8d8ce74
pristine_git_object: 30bcc1c4696bcb8b0149100effdd1c0f910538c3
src/Cvent/SDK/Models/Requests/UpdateAttendeeSubscriptionStatusRequest.cs:
last_write_checksum: sha1:e85cebd2bf72887681b6c3f3f7264f466c257ae8
@@ -17826,7 +17222,7 @@ trackedFiles:
pristine_git_object: 5128520aff09ef7520727db8d595972b350479f9
src/Cvent/SDK/Models/Requests/UpdateContactsResponse.cs:
id: f8d96e3cce59
- last_write_checksum: sha1:03fdf34ad905d638078d821bb8cd49d372cf3e93
+ last_write_checksum: sha1:b62878d2b3d2881027cca506972260fe0a0111d0
pristine_git_object: cc225236befb143faa9c9461494f11973e1a60d7
src/Cvent/SDK/Models/Requests/UpdateCurrencyConversionRateRequest.cs:
id: d03fd1fe6693
@@ -18158,7 +17554,7 @@ trackedFiles:
last_write_checksum: sha1:a82d3b5c66346b08e9412b70e0c08ff88b6061ad
src/Cvent/SDK/SDKConfig.cs:
id: 7ad7086454a8
- last_write_checksum: sha1:06c93859202678cbbd5adb697554b7cc051230d3
+ last_write_checksum: sha1:42366007a8336632c790a24847989a1a9c5d4357
pristine_git_object: 796c23cd551fbe87f613d89d60ed25ac5fe0c54b
src/Cvent/SDK/Seating.cs:
id: 01c249fc2746
@@ -18166,7 +17562,7 @@ trackedFiles:
pristine_git_object: a06ca860a105970d8ade67f4ac21fbe4883567b7
src/Cvent/SDK/Sessions.cs:
id: 327b4808d581
- last_write_checksum: sha1:6cff205addc964d49d75285fd9b7d0bab33ace97
+ last_write_checksum: sha1:15b56f35f93a5feb76ae8174d93a01136cab37f6
pristine_git_object: 0f2fec50306482c0afd79e5ba7b08113f788f657
src/Cvent/SDK/Signatures.cs:
id: 033fd08fcea8
@@ -18174,7 +17570,7 @@ trackedFiles:
pristine_git_object: d765a9f2c97a11db1bedf9991d4dd185f89164fe
src/Cvent/SDK/Speakers.cs:
id: d426d5d9579c
- last_write_checksum: sha1:87fa0d1ea176a6c5280e39ca7449e454bda445fd
+ last_write_checksum: sha1:83551bf21e4f1dee28a83390f14faa2d22a3b1e9
pristine_git_object: 62b8ecac78252d0ddbf04e1b73995f1009a50756
src/Cvent/SDK/Surveys.cs:
id: 5ac9a3db2276
@@ -18182,11 +17578,11 @@ trackedFiles:
pristine_git_object: 9d6474ebb10263553e076c5fca597acb9b079883
src/Cvent/SDK/TravelAccounts.cs:
id: 61741a8e012d
- last_write_checksum: sha1:278f91e369bf3017af08df549b713136bc91195f
+ last_write_checksum: sha1:a9b314832d6f6d418b8ef7847bba20851a495852
pristine_git_object: 72a96dbfd10e9549f7ead3bc04e6820a8d40db5d
src/Cvent/SDK/TravelRFPs.cs:
id: 997ae89b25f5
- last_write_checksum: sha1:3eef9ccd68743c0af5c59f90e37726ae5421569e
+ last_write_checksum: sha1:a5344c5cdc268ed05ca881a5d87663199e5f1ab2
pristine_git_object: 05d1627ed93fecba64acb478906f82d108f7e85a
src/Cvent/SDK/TravelSuppliers.cs:
id: dd9df70f50c4
@@ -18198,7 +17594,7 @@ trackedFiles:
pristine_git_object: 1f0647de7bcf33fcae67414f0bb31c3bbaf91420
src/Cvent/SDK/UserSCIM.cs:
id: a3a3ea1a9c7b
- last_write_checksum: sha1:c2801b94592cf49471f5d93648e9ce9690349cf1
+ last_write_checksum: sha1:0cee20f3f429b817c34d0172a384e018dadb8880
pristine_git_object: 65ecc73aaa7b7e5c08403afc919813034ca19d90
src/Cvent/SDK/Users.cs:
id: 9ede83a21d40
@@ -18214,7 +17610,7 @@ trackedFiles:
pristine_git_object: a75f770b33edd25c0fa4d4a77ab523da12d269ba
src/Cvent/SDK/Utils/Constants.cs:
id: 231d94d8a5dc
- last_write_checksum: sha1:a98d0d1b3b84c2e606d4d9f247b63ca591f6a23c
+ last_write_checksum: sha1:df33405bd44b7b2aa92c05498e090e5fdc78f89f
pristine_git_object: 0a54932893793a10e459afbc15920803cff3ed1e
src/Cvent/SDK/Utils/CventSDKHttpClient.cs:
id: 374fee4fdbaf
@@ -19051,6 +18447,8 @@ examples:
application/json: {"id": "0046e875-79a5-4851-8332-da105d58088a", "code": "APPT-0001", "name": "Meeting with Cvent", "description": "Discuss about marketing.", "start": "2019-04-12T15:20:00.000Z", "end": "2019-04-12T15:30:00.000Z", "status": "CONFIRMED", "location": {"name": "Hynes Convention Center"}, "type": {"name": "Customer Meeting"}, "created": "2017-01-02T02:00:00Z", "createdBy": "hporter", "lastModified": "2019-02-12T03:00:00Z", "lastModifiedBy": "hporter", "appointmentEvent": {"id": "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3"}, "participants": [{"created": "2017-01-02T02:00:00Z", "createdBy": "hporter", "lastModified": "2019-02-12T03:00:00Z", "lastModifiedBy": "hporter", "attendee": {"id": "dd1057b9-a957-4c22-be88-741a29d01471/97f2ca58-0f9e-401f-a6b5-a6f20d3a9568", "contact": {"id": "97f2ca58-0f9e-401f-a6b5-a6f20d3a9568"}}, "type": "Attendee", "response": "CONFIRMED", "participation": {"participated": true}, "questionViewer": false, "privateNoteViewer": false, "deleted": false, "status": "confirmed"}], "autoAcceptAttendees": false, "enforceScheduleRules": false, "deleted": false, "questions": [{"id": "a5c42275-5ffa-4a43-94d3-b2516279122e", "name": "What is a your favorite color?", "type": "General", "value": ["Choice C", "Choice A"], "order": 1}]}
"400":
application/json: {"code": 400, "message": "Bad Request", "target": "example target", "details": [{"code": 400, "message": "Bad Request", "target": "example target"}]}
+ "422":
+ application/json: {"code": 400, "message": "Bad Request", "target": "example target", "details": [{"code": 400, "message": "Bad Request", "target": "example target"}]}
updateAppointment:
speakeasy-default-update-appointment:
parameters:
@@ -19066,6 +18464,8 @@ examples:
application/json: {"id": "0046e875-79a5-4851-8332-da105d58088a", "code": "APPT-0001", "name": "Meeting with Cvent", "description": "Discuss about marketing.", "start": "2019-04-12T15:20:00.000Z", "end": "2019-04-12T15:30:00.000Z", "status": "CONFIRMED", "location": {"name": "Hynes Convention Center"}, "type": {"name": "Customer Meeting"}, "created": "2017-01-02T02:00:00Z", "createdBy": "hporter", "lastModified": "2019-02-12T03:00:00Z", "lastModifiedBy": "hporter", "appointmentEvent": {"id": "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3"}, "participants": [{"created": "2017-01-02T02:00:00Z", "createdBy": "hporter", "lastModified": "2019-02-12T03:00:00Z", "lastModifiedBy": "hporter", "attendee": {"id": "dd1057b9-a957-4c22-be88-741a29d01471/97f2ca58-0f9e-401f-a6b5-a6f20d3a9568", "contact": {"id": "97f2ca58-0f9e-401f-a6b5-a6f20d3a9568"}}, "type": "Attendee", "response": "CONFIRMED", "participation": {"participated": true}, "questionViewer": false, "privateNoteViewer": false, "deleted": false, "status": "confirmed"}], "autoAcceptAttendees": false, "enforceScheduleRules": false, "deleted": false, "questions": [{"id": "8e981c48-effb-43fb-b544-9ef8f322c2af", "name": "What is a your favorite color?", "type": "General", "value": ["Choice C", "Choice A"], "order": 1}]}
"400":
application/json: {"code": 400, "message": "Bad Request", "target": "example target", "details": [{"code": 400, "message": "Bad Request", "target": "example target"}]}
+ "422":
+ application/json: {"code": 400, "message": "Bad Request", "target": "example target", "details": [{"code": 400, "message": "Bad Request", "target": "example target"}]}
cancelAppointment:
speakeasy-default-cancel-appointment:
parameters:
@@ -19436,6 +18836,8 @@ examples:
application/json: {"code": 400, "message": "Bad Request", "target": "example target", "details": [{"code": 400, "message": "Bad Request", "target": "example target"}]}
"400":
application/json: {"code": 400, "message": "Bad Request", "target": "example target", "details": [{"code": 400, "message": "Bad Request", "target": "example target"}], "validationCode": "SEGMENTS_PER_EVENT_LIMIT_REACHED"}
+ "422":
+ application/json: {"code": 400, "message": "Bad Request", "target": "example target", "details": [{"code": 400, "message": "Bad Request", "target": "example target"}]}
listAudienceSegments:
speakeasy-default-list-audience-segments:
parameters:
@@ -19489,6 +18891,8 @@ examples:
application/json: {"created": "2017-01-02T02:00:00Z", "createdBy": "hporter", "lastModified": "2019-02-12T03:00:00Z", "lastModifiedBy": "hporter", "event": {"id": "103097a4-143d-11e5-9f99-d0a637ee0032"}, "name": "VIP Attendees", "description": "A group of VIP attendees.", "id": "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3", "creationType": "MANUAL", "deleted": true}
"400":
application/json: {"code": 400, "message": "Bad Request", "target": "example target", "details": [{"code": 400, "message": "Bad Request", "target": "example target"}]}
+ "422":
+ application/json: {"code": 400, "message": "Bad Request", "target": "example target", "details": [{"code": 400, "message": "Bad Request", "target": "example target"}]}
deleteAudienceSegment:
speakeasy-default-delete-audience-segment:
parameters:
@@ -19525,6 +18929,8 @@ examples:
application/json: {"code": 400, "message": "Bad Request", "target": "example target", "details": [{"code": 400, "message": "Bad Request", "target": "example target"}]}
"400":
application/json: {"code": 400, "message": "Bad Request", "target": "example target", "details": [{"code": 400, "message": "Bad Request", "target": "example target"}], "validationCode": "SEGMENTS_PER_EVENT_LIMIT_REACHED"}
+ "422":
+ application/json: {"code": 400, "message": "Bad Request", "target": "example target", "details": [{"code": 400, "message": "Bad Request", "target": "example target"}]}
disassociateAttendeeFromAudienceSegment:
speakeasy-default-disassociate-attendee-from-audience-segment:
parameters:
@@ -20176,6 +19582,8 @@ examples:
application/json: {"sourceId": "Ext ack number", "attendeeTypeCode": "MVFBES0320484", "confirmationNumber": "327PP24H", "locale": "es-DO", "housingEvent": {"id": 69121314}, "attendeeType": {"id": 34549966}, "roomType": {"id": 11549984}, "hotel": {"id": 49543342}, "sendAcknowledgement": true, "splitFolio": false, "redirectURL": "https://cvent.com", "guests": [{"arrival": "2020-03-05", "departure": "2020-03-07", "firstName": "Gustav", "lastName": "Schultz", "middleName": "Al", "title": "Dr.", "position": "manager", "company": "Test Inc", "homeFax": "9785674321", "email": "guest@cvent.com", "homePhone": "(231)-213-1222", "workPhone": "(231)-213-1222", "homeAddress": {"address1": "West St. 1", "address2": "Apt. 16", "city": "Austin", "region": "Texas", "regionCode": "TX", "postalCode": "23452AB", "country": "United States of America", "countryCode": "US"}, "paymentInfo": {"fullName": "Gustav Schultz", "address": {"address1": "West St. 1", "address2": "Apt. 16", "city": "Austin", "region": "Texas", "regionCode": "TX", "postalCode": "23452AB", "country": "United States of America", "countryCode": "US"}, "phone": "(231)213-1222", "other": {"amount": 0, "paymentDate": "2021-12-31", "referenceItem": "Reference Item", "checkNumber": "Check Num", "received": false, "note": "No Comment"}}}], "customFields": {"customField1": "CustomField1", "customField2": "CustomField2", "customField3": "CustomField3", "customField4": "CustomField4", "customField5": "CustomField5", "customField6": "CustomField6"}, "accessible": false, "specialRequest": "Double bed", "rewardProgram": {"id": 10000, "name": "Test name"}, "membershipId": "1154example", "travelDetails": {"arrival": {"time": "2024-12-01T00:00:00Z", "carrier": "JBU", "carrierNumber": "12345"}, "departure": {"time": "2024-12-01T00:00:00Z", "carrier": "JBU", "carrierNumber": "12345"}, "additionalInformation": "Additional Information"}, "id": "D6A63423-G796", "status": "Cancel", "bookingSite": {"href": "https://book.passkey.com/entry?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJwYXlsb2FkIjp7ImVudHJ5IjoiUkVHSVNUUkFUSU9OIiwicGFyYW1zIjpbeyJuYW1lIjoiYnJpZGdlSWQiLCJ2YWx1ZSI6IlQ3VFdNTEhQLUdFNEQifV19fQ.7sH1gO_1Aambk-SRRlO2c7ac2DOpqLmCB-zsxB71q_A"}, "callCenter": {"href": "https://manage.passkey.com/Login?src=api&redirect=ccbridge®acknumber=WODS7LK4-GA8C"}}
"400":
application/json: {"code": 400, "message": "Bad Request", "target": "example target", "details": [{"code": 400, "message": "Bad Request", "target": "example target"}]}
+ "401":
+ application/json: {"code": 400, "message": "Bad Request", "target": "example target", "details": [{"code": 400, "message": "Bad Request", "target": "example target"}]}
cancelReservationRequest:
speakeasy-default-cancel-reservation-request:
parameters:
@@ -20184,6 +19592,8 @@ examples:
responses:
"400":
application/json: {"code": 400, "message": "Bad Request", "target": "example target", "details": [{"code": 400, "message": "Bad Request", "target": "example target"}]}
+ "401":
+ application/json: {"code": 400, "message": "Bad Request", "target": "example target", "details": [{"code": 400, "message": "Bad Request", "target": "example target"}]}
linkReservation:
speakeasy-default-link-reservation:
parameters:
@@ -21571,6 +20981,8 @@ examples:
application/json: {"id": "50f4f0df-0c2d-4e6b-8e68-e1413b6917f5", "event": {"id": "3db28cfc-db22-11eb-8d19-0242ac130003"}, "exhibitor": {"id": "4888db54-db22-11eb-8d19-0242ac130003"}, "capacities": []}
"400":
application/json: {"code": 400, "message": "Bad Request", "target": "example target", "details": [{"code": 400, "message": "Bad Request", "target": "example target"}]}
+ "409":
+ application/json: {"code": 400, "message": "Bad Request", "target": "example target", "details": [{"code": 400, "message": "Bad Request", "target": "example target"}]}
getExhibitorRegistrationPacks:
speakeasy-default-get-exhibitor-registration-packs:
parameters:
@@ -21618,6 +21030,8 @@ examples:
responses:
"401":
application/json: {"code": 400, "message": "Bad Request", "target": "example target", "details": [{"code": 400, "message": "Bad Request", "target": "example target"}]}
+ "409":
+ application/json: {"code": 400, "message": "Bad Request", "target": "example target", "details": [{"code": 400, "message": "Bad Request", "target": "example target"}]}
getSponsorshipLevels:
speakeasy-default-get-sponsorship-levels:
parameters:
@@ -21778,6 +21192,8 @@ examples:
application/json: {"created": "2017-01-02T02:00:00Z", "createdBy": "hporter", "lastModified": "2019-02-12T03:00:00Z", "lastModifiedBy": "hporter", "event": {"id": "3db28cfc-db22-11eb-8d19-0242ac130003"}, "exhibitor": {"id": "4888db54-db22-11eb-8d19-0242ac130003"}, "displayName": "Marketing Page", "hidden": false, "order": 3, "id": "3d44b9e4-8c1a-403d-a20a-0b981f539935"}
"400":
application/json: {"code": 400, "message": "Bad Request", "target": "example target", "details": [{"code": 400, "message": "Bad Request", "target": "example target"}]}
+ "422":
+ application/json: {"code": 400, "message": "Bad Request", "target": "example target", "details": [{"code": 400, "message": "Bad Request", "target": "example target"}]}
disassociateExhibitorFile:
speakeasy-default-disassociate-exhibitor-file:
parameters:
@@ -21812,6 +21228,8 @@ examples:
application/json: {"created": "2017-01-02T02:00:00Z", "createdBy": "hporter", "lastModified": "2019-02-12T03:00:00Z", "lastModifiedBy": "hporter", "event": {"id": "3db28cfc-db22-11eb-8d19-0242ac130003"}, "exhibitor": {"id": "4888db54-db22-11eb-8d19-0242ac130003"}, "name": "Marketing Page", "url": "http://www.example.com", "hidden": false, "order": 3, "id": "4d44b9e4-8c1a-403d-a20a-0b981f539935"}
"400":
application/json: {"code": 400, "message": "Bad Request", "target": "example target", "details": [{"code": 400, "message": "Bad Request", "target": "example target"}]}
+ "422":
+ application/json: {"code": 400, "message": "Bad Request", "target": "example target", "details": [{"code": 400, "message": "Bad Request", "target": "example target"}]}
getExhibitorWeblink:
speakeasy-default-get-exhibitor-weblink:
parameters:
@@ -21838,6 +21256,8 @@ examples:
application/json: {"created": "2017-01-02T02:00:00Z", "createdBy": "hporter", "lastModified": "2019-02-12T03:00:00Z", "lastModifiedBy": "hporter", "event": {"id": "3db28cfc-db22-11eb-8d19-0242ac130003"}, "exhibitor": {"id": "4888db54-db22-11eb-8d19-0242ac130003"}, "name": "Marketing Page", "url": "http://www.example.com", "hidden": false, "order": 3, "id": "4d44b9e4-8c1a-403d-a20a-0b981f539935"}
"400":
application/json: {"code": 400, "message": "Bad Request", "target": "example target", "details": [{"code": 400, "message": "Bad Request", "target": "example target"}]}
+ "422":
+ application/json: {"code": 400, "message": "Bad Request", "target": "example target", "details": [{"code": 400, "message": "Bad Request", "target": "example target"}]}
deleteExhibitorWeblink:
speakeasy-default-delete-exhibitor-weblink:
parameters:
@@ -21931,6 +21351,8 @@ examples:
application/json: {"id": "9c97eb50-9f88-4972-a603-f617fc3258dd", "name": "Request for Medical Meetups", "statuses": ["Declined"], "active": true, "questions": [{"id": "d43ebfad-493f-486e-b43f-feaafac19378", "name": "What is a your favorite color?", "value": ["Choice C", "Choice A"], "order": 1, "type": "General", "hidden": false, "required": true, "minLength": 0, "maxLength": 100, "minChoice": 0, "maxChoice": 10, "minDate": "1970-12-23", "maxDate": "2100-12-31"}]}
"401":
application/json: {"code": 400, "message": "Bad Request", "target": "example target", "details": [{"code": 400, "message": "Bad Request", "target": "example target"}]}
+ "422":
+ application/json: {"code": 400, "message": "Bad Request", "target": "example target", "details": [{"code": 400, "message": "Bad Request", "target": "example target"}]}
createMeetingRequest:
speakeasy-default-create-meeting-request:
parameters:
@@ -22230,6 +21652,8 @@ examples:
application/json: {"created": "2017-01-02T02:00:00Z", "createdBy": "hporter", "lastModified": "2019-02-12T03:00:00Z", "lastModifiedBy": "hporter", "id": "38db6ae2-0dc3-487b-953e-86d6abbdf7d3", "event": {"id": "78842378-5d83-11ee-8c99-0242ac120002"}, "session": {"id": "78842aee-5d83-11ee-8c99-0242ac120002"}, "document": {}, "programItem": {"id": "788426ac-5d83-11ee-8c99-0242ac120002"}}
"401":
application/json: {"code": 400, "message": "Bad Request", "target": "example target", "details": [{"code": 400, "message": "Bad Request", "target": "example target"}]}
+ "409":
+ application/json: {"code": 400, "message": "Bad Request", "target": "example target", "details": [{"code": 400, "message": "Bad Request", "target": "example target"}]}
getProgramItemSessionDocument:
speakeasy-default-get-program-item-session-document:
parameters:
@@ -22629,6 +22053,8 @@ examples:
application/json: {"created": "2017-01-02T02:00:00Z", "createdBy": "hporter", "lastModified": "2019-02-12T03:00:00Z", "lastModifiedBy": "hporter", "id": "38db6ae2-0dc3-487b-953e-86d6abbdf7d3", "event": {"id": "2ef03846-fced-4ce3-a077-d64ca891a4b1"}, "session": {"id": "832cb481-74c5-4859-ba21-bbb5be8b86e0"}, "speaker": {"id": "6077a9f1-a230-40cd-9e32-b493a84aaa80"}, "programItem": {"id": "221984b2-9e3e-4c1c-8ef4-306b1b75fa3e"}}
"401":
application/json: {"code": 400, "message": "Bad Request", "target": "example target", "details": [{"code": 400, "message": "Bad Request", "target": "example target"}]}
+ "409":
+ application/json: {"code": 400, "message": "Bad Request", "target": "example target", "details": [{"code": 400, "message": "Bad Request", "target": "example target"}]}
getSessionProgramSpeaker:
speakeasy-default-get-session-program-speaker:
parameters:
@@ -23711,6 +23137,55 @@ examples:
application/json: {"paging": {"previousToken": "1a2b3c4d5e6f7g8h9i10j11k", "nextToken": "1a2b3c4d5e6f7g8h9i10j11k", "currentToken": "1a2b3c4d5e6f7g8h9i10j11k", "limit": 100, "totalCount": 2, "_links": {"next": {"href": "?token=90c5f062-76ad-4ea4-aa53-00eb698d9262"}, "self": {"href": "?token=90c5f062-76ad-4ea4-aa53-00eb698d9262"}, "prev": {"href": "?token=90c5f062-76ad-4ea4-aa53-00eb698d9262"}}}, "data": [{"created": "2017-01-02T02:00:00Z", "createdBy": "hporter", "lastModified": "2019-02-12T03:00:00Z", "lastModifiedBy": "hporter", "id": "00fe81ea-70e7-4b18-bff5-43167c5720c0", "name": "Sales Tax", "active": false, "code": "TAX-001", "calculateBy": "PERCENTAGE", "percentage": 8.25, "amount": 5, "taxSchedule": {"id": "5e8df6b2-af0f-4c6f-86f9-e10a0dcb2034", "name": "New York State Tax Schedule", "defaultRate": 8.875}, "generalLedgerCode": {"id": "04ca6ae2-0dc3-487b-953e-86d6abbdf7d5", "name": "General Ledger", "code": "General Ledger Code", "allocation": 100}}]}
"400":
application/json: {"code": 400, "message": "Bad Request", "target": "example target", "details": [{"code": 400, "message": "Bad Request", "target": "example target"}]}
+ listEventVouchers:
+ speakeasy-default-list-event-vouchers:
+ parameters:
+ path:
+ id: "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3"
+ query:
+ limit: 100
+ token: "0e28af57-511f-47ab-ae46-46cd1ca51a1a"
+ before: "2017-01-02T02:00:00Z"
+ after: "2017-01-02T02:00:00Z"
+ sort: "code:ASC"
+ filter: "id in ('1800c9bd-b5f4-438a-a92c-ea1f59553a5c', '2900d8ce-c6f5-449b-b03d-fb2f60664b6d')"
+ responses:
+ "200":
+ application/json: {"paging": {"previousToken": "1a2b3c4d5e6f7g8h9i10j11k", "nextToken": "1a2b3c4d5e6f7g8h9i10j11k", "currentToken": "1a2b3c4d5e6f7g8h9i10j11k", "limit": 100, "totalCount": 2, "_links": {"next": {"href": "?token=90c5f062-76ad-4ea4-aa53-00eb698d9262"}, "self": {"href": "?token=90c5f062-76ad-4ea4-aa53-00eb698d9262"}, "prev": {"href": "?token=90c5f062-76ad-4ea4-aa53-00eb698d9262"}}}, "data": [{"id": "1800c9bd-b5f4-438a-a92c-ea1f59553a5c", "code": "VIP-100", "description": "VIP full-comp voucher for keynote attendees.", "alertEmailAddress": "planner@example.com", "capacity": {"total": 100, "redeemedCount": 42}, "lastModifiedBy": "planner@example.com", "lastModifiedDate": "2026-04-08T02:05:12.000Z"}]}
+ "400":
+ application/json: {"code": 400, "message": "Bad Request", "target": "example target", "details": [{"code": 400, "message": "Bad Request", "target": "example target"}]}
+ listEventVouchersPostFilter:
+ speakeasy-default-list-event-vouchers-post-filter:
+ parameters:
+ path:
+ id: "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3"
+ query:
+ limit: 100
+ token: "0e28af57-511f-47ab-ae46-46cd1ca51a1a"
+ before: "2017-01-02T02:00:00Z"
+ after: "2017-01-02T02:00:00Z"
+ sort: "code:ASC"
+ requestBody:
+ application/json: {"filter": "property eq 'value'"}
+ responses:
+ "200":
+ application/json: {"paging": {"previousToken": "1a2b3c4d5e6f7g8h9i10j11k", "nextToken": "1a2b3c4d5e6f7g8h9i10j11k", "currentToken": "1a2b3c4d5e6f7g8h9i10j11k", "limit": 100, "totalCount": 2, "_links": {"next": {"href": "?token=90c5f062-76ad-4ea4-aa53-00eb698d9262"}, "self": {"href": "?token=90c5f062-76ad-4ea4-aa53-00eb698d9262"}, "prev": {"href": "?token=90c5f062-76ad-4ea4-aa53-00eb698d9262"}}}, "data": []}
+ "400":
+ application/json: {"code": 400, "message": "Bad Request", "target": "example target", "details": [{"code": 400, "message": "Bad Request", "target": "example target"}]}
+ listEventVoucherAttendees:
+ speakeasy-default-list-event-voucher-attendees:
+ parameters:
+ path:
+ id: "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3"
+ voucherId: "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3"
+ query:
+ limit: 100
+ token: "0e28af57-511f-47ab-ae46-46cd1ca51a1a"
+ responses:
+ "200":
+ application/json: {"paging": {"previousToken": "1a2b3c4d5e6f7g8h9i10j11k", "nextToken": "1a2b3c4d5e6f7g8h9i10j11k", "currentToken": "1a2b3c4d5e6f7g8h9i10j11k", "limit": 100, "totalCount": 2, "_links": {"next": {"href": "?token=90c5f062-76ad-4ea4-aa53-00eb698d9262"}, "self": {"href": "?token=90c5f062-76ad-4ea4-aa53-00eb698d9262"}, "prev": {"href": "?token=90c5f062-76ad-4ea4-aa53-00eb698d9262"}}}, "data": [{"id": "5b0e8d1f-8fd6-4ebe-977a-602b4a1f9c43"}]}
+ "400":
+ application/json: {"code": 400, "message": "Bad Request", "target": "example target", "details": [{"code": 400, "message": "Bad Request", "target": "example target"}]}
examplesVersion: 1.0.2
generatedTests:
getAccountUserGroups: "2026-02-27T14:14:25-04:00"
@@ -24099,3 +23574,6 @@ generatedTests:
listAttendeeAudienceSegments: "2026-05-21T12:13:40-06:00"
listAssociatedAudienceSegments: "2026-05-21T12:13:40-06:00"
listTaxes: "2026-06-05T14:40:10-04:00"
+ listEventVouchers: "2026-06-24T15:38:54-04:00"
+ listEventVouchersPostFilter: "2026-06-24T15:38:54-04:00"
+ listEventVoucherAttendees: "2026-06-24T15:38:54-04:00"
diff --git a/packages/csharp/.speakeasy/gen.yaml b/packages/csharp/.speakeasy/gen.yaml
index c7675175..e4a9b5aa 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.4.0
+ version: 1.5.0
additionalDependencies: []
author: Cvent
baseErrorName: CventSDKException
diff --git a/packages/csharp/.speakeasy/tests.arazzo.yaml b/packages/csharp/.speakeasy/tests.arazzo.yaml
index df38b88c..29b788fd 100644
--- a/packages/csharp/.speakeasy/tests.arazzo.yaml
+++ b/packages/csharp/.speakeasy/tests.arazzo.yaml
@@ -10719,3 +10719,100 @@ workflows:
type: simple
x-speakeasy-test-group: Events
x-speakeasy-test-rebuild: true
+ - workflowId: listEventVouchers
+ steps:
+ - stepId: test
+ operationId: listEventVouchers
+ parameters:
+ - name: id
+ in: path
+ value: 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3
+ - name: limit
+ in: query
+ value: 100
+ - name: token
+ in: query
+ value: 0e28af57-511f-47ab-ae46-46cd1ca51a1a
+ - name: before
+ in: query
+ value: "2017-01-02T02:00:00Z"
+ - name: after
+ in: query
+ value: "2017-01-02T02:00:00Z"
+ - name: sort
+ in: query
+ value: code:ASC
+ - name: filter
+ in: query
+ value: id in ('1800c9bd-b5f4-438a-a92c-ea1f59553a5c', '2900d8ce-c6f5-449b-b03d-fb2f60664b6d')
+ successCriteria:
+ - condition: $statusCode == 200
+ - condition: $response.header.Content-Type == application/json
+ - context: $response.body
+ condition: |
+ {"paging":{"previousToken":"1a2b3c4d5e6f7g8h9i10j11k","nextToken":"1a2b3c4d5e6f7g8h9i10j11k","currentToken":"1a2b3c4d5e6f7g8h9i10j11k","limit":100,"totalCount":2,"_links":{"next":{"href":"?token=90c5f062-76ad-4ea4-aa53-00eb698d9262"},"self":{"href":"?token=90c5f062-76ad-4ea4-aa53-00eb698d9262"},"prev":{"href":"?token=90c5f062-76ad-4ea4-aa53-00eb698d9262"}}},"data":[{"id":"1800c9bd-b5f4-438a-a92c-ea1f59553a5c","code":"VIP-100","description":"VIP full-comp voucher for keynote attendees.","alertEmailAddress":"planner@example.com","capacity":{"total":100,"redeemedCount":42},"lastModifiedBy":"planner@example.com","lastModifiedDate":"2026-04-08T02:05:12.000Z"}]}
+ type: simple
+ x-speakeasy-test-group: Events
+ x-speakeasy-test-rebuild: true
+ - workflowId: listEventVouchersPostFilter
+ steps:
+ - stepId: test
+ operationId: listEventVouchersPostFilter
+ parameters:
+ - name: id
+ in: path
+ value: 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3
+ - name: limit
+ in: query
+ value: 100
+ - name: token
+ in: query
+ value: 0e28af57-511f-47ab-ae46-46cd1ca51a1a
+ - name: before
+ in: query
+ value: "2017-01-02T02:00:00Z"
+ - name: after
+ in: query
+ value: "2017-01-02T02:00:00Z"
+ - name: sort
+ in: query
+ value: code:ASC
+ requestBody:
+ contentType: application/json
+ payload:
+ filter: property eq 'value'
+ successCriteria:
+ - condition: $statusCode == 200
+ - condition: $response.header.Content-Type == application/json
+ - context: $response.body
+ condition: |
+ {"paging":{"previousToken":"1a2b3c4d5e6f7g8h9i10j11k","nextToken":"1a2b3c4d5e6f7g8h9i10j11k","currentToken":"1a2b3c4d5e6f7g8h9i10j11k","limit":100,"totalCount":2,"_links":{"next":{"href":"?token=90c5f062-76ad-4ea4-aa53-00eb698d9262"},"self":{"href":"?token=90c5f062-76ad-4ea4-aa53-00eb698d9262"},"prev":{"href":"?token=90c5f062-76ad-4ea4-aa53-00eb698d9262"}}},"data":[]}
+ type: simple
+ x-speakeasy-test-group: Events
+ x-speakeasy-test-rebuild: true
+ - workflowId: listEventVoucherAttendees
+ steps:
+ - stepId: test
+ operationId: listEventVoucherAttendees
+ parameters:
+ - name: id
+ in: path
+ value: 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3
+ - name: voucherId
+ in: path
+ value: 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3
+ - name: limit
+ in: query
+ value: 100
+ - name: token
+ in: query
+ value: 0e28af57-511f-47ab-ae46-46cd1ca51a1a
+ successCriteria:
+ - condition: $statusCode == 200
+ - condition: $response.header.Content-Type == application/json
+ - context: $response.body
+ condition: |
+ {"paging":{"previousToken":"1a2b3c4d5e6f7g8h9i10j11k","nextToken":"1a2b3c4d5e6f7g8h9i10j11k","currentToken":"1a2b3c4d5e6f7g8h9i10j11k","limit":100,"totalCount":2,"_links":{"next":{"href":"?token=90c5f062-76ad-4ea4-aa53-00eb698d9262"},"self":{"href":"?token=90c5f062-76ad-4ea4-aa53-00eb698d9262"},"prev":{"href":"?token=90c5f062-76ad-4ea4-aa53-00eb698d9262"}}},"data":[{"id":"5b0e8d1f-8fd6-4ebe-977a-602b4a1f9c43"}]}
+ type: simple
+ x-speakeasy-test-group: Events
+ x-speakeasy-test-rebuild: true
diff --git a/packages/csharp/NUGET.md b/packages/csharp/NUGET.md
index 7a4d1b77..dba13786 100644
--- a/packages/csharp/NUGET.md
+++ b/packages/csharp/NUGET.md
@@ -325,10 +325,10 @@ catch (System.Net.Http.HttpRequestException ex)
* [`System.Net.Http.HttpRequestException`](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httprequestexception): Network connectivity error. For more details about the underlying cause, inspect the `ex.InnerException`.
* Inheriting from [`CventSDKException`](./src/Cvent/SDK/Models/Errors/CventSDKException.cs):
- * [`ErrorResponseJson17`](./src/Cvent/SDK/Models/Errors/ErrorResponseJson17.cs): The error response. Applicable to 11 of 445 methods.*
- * [`ErrorResponse2`](./src/Cvent/SDK/Models/Errors/ErrorResponse2.cs): Represents an error response with additional details of cascading error messages. Applicable to 6 of 445 methods.*
- * [`SegmentsErrorResponse`](./src/Cvent/SDK/Models/Errors/SegmentsErrorResponse.cs): Segments error response details. Status code `400`. Applicable to 2 of 445 methods.*
- * [`BadRequestException`](./src/Cvent/SDK/Models/Errors/BadRequestException.cs): A bad token response. Status code `400`. Applicable to 1 of 445 methods.*
+ * [`ErrorResponse2`](./src/Cvent/SDK/Models/Errors/ErrorResponse2.cs): Represents an error response with additional details of cascading error messages. Applicable to 18 of 448 methods.*
+ * [`ErrorResponseJson12`](./src/Cvent/SDK/Models/Errors/ErrorResponseJson12.cs): The error response. Applicable to 11 of 448 methods.*
+ * [`SegmentsErrorResponse`](./src/Cvent/SDK/Models/Errors/SegmentsErrorResponse.cs): Segments error response details. Status code `400`. Applicable to 2 of 448 methods.*
+ * [`BadRequestException`](./src/Cvent/SDK/Models/Errors/BadRequestException.cs): A bad token response. Status code `400`. Applicable to 1 of 448 methods.*
* [`ResponseValidationError`](./src/Cvent/SDK/Models/Errors/ResponseValidationError.cs): Thrown when the response data could not be deserialized into the expected type.
\* Refer to the [relevant documentation](#available-resources-and-operations) to determine whether an exception applies to a specific operation.
diff --git a/packages/csharp/README.md b/packages/csharp/README.md
index 7d12e65e..59ec2273 100644
--- a/packages/csharp/README.md
+++ b/packages/csharp/README.md
@@ -425,6 +425,9 @@ var res = await sdk.Authentication.Oauth2TokenAsync(
* [ListEventUserGroups](docs/sdks/events/README.md#listeventusergroups) - List Event User Groups
* [AssociateEventUserGroup](docs/sdks/events/README.md#associateeventusergroup) - Associate User Group to Event
* [DisassociateEventUserGroup](docs/sdks/events/README.md#disassociateeventusergroup) - Disassociate Group from Event
+* [ListEventVouchers](docs/sdks/events/README.md#listeventvouchers) - List Event Vouchers
+* [ListEventVouchersPostFilter](docs/sdks/events/README.md#listeventvoucherspostfilter) - List Event Vouchers (Filter)
+* [ListEventVoucherAttendees](docs/sdks/events/README.md#listeventvoucherattendees) - List Voucher Attendees
* [UpdateQuantityItemRegistrationForAttendee](docs/sdks/events/README.md#updatequantityitemregistrationforattendee) - Update Quantity Item
* [ListSessionsAttendance](docs/sdks/events/README.md#listsessionsattendance) - Session Attendance
* [ListSessionsEnrollment](docs/sdks/events/README.md#listsessionsenrollment) - List Session Registrants
@@ -985,10 +988,10 @@ catch (System.Net.Http.HttpRequestException ex)
* [`System.Net.Http.HttpRequestException`](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httprequestexception): Network connectivity error. For more details about the underlying cause, inspect the `ex.InnerException`.
* Inheriting from [`CventSDKException`](./src/Cvent/SDK/Models/Errors/CventSDKException.cs):
- * [`ErrorResponseJson17`](./src/Cvent/SDK/Models/Errors/ErrorResponseJson17.cs): The error response. Applicable to 11 of 445 methods.*
- * [`ErrorResponse2`](./src/Cvent/SDK/Models/Errors/ErrorResponse2.cs): Represents an error response with additional details of cascading error messages. Applicable to 6 of 445 methods.*
- * [`SegmentsErrorResponse`](./src/Cvent/SDK/Models/Errors/SegmentsErrorResponse.cs): Segments error response details. Status code `400`. Applicable to 2 of 445 methods.*
- * [`BadRequestException`](./src/Cvent/SDK/Models/Errors/BadRequestException.cs): A bad token response. Status code `400`. Applicable to 1 of 445 methods.*
+ * [`ErrorResponse2`](./src/Cvent/SDK/Models/Errors/ErrorResponse2.cs): Represents an error response with additional details of cascading error messages. Applicable to 18 of 448 methods.*
+ * [`ErrorResponseJson12`](./src/Cvent/SDK/Models/Errors/ErrorResponseJson12.cs): The error response. Applicable to 11 of 448 methods.*
+ * [`SegmentsErrorResponse`](./src/Cvent/SDK/Models/Errors/SegmentsErrorResponse.cs): Segments error response details. Status code `400`. Applicable to 2 of 448 methods.*
+ * [`BadRequestException`](./src/Cvent/SDK/Models/Errors/BadRequestException.cs): A bad token response. Status code `400`. Applicable to 1 of 448 methods.*
* [`ResponseValidationError`](./src/Cvent/SDK/Models/Errors/ResponseValidationError.cs): Thrown when the response data could not be deserialized into the expected type.
diff --git a/packages/csharp/docs/Models/Components/AccountBudgetItemListResponseJson.md b/packages/csharp/docs/Models/Components/AccountBudgetItemListResponseJson.md
index 0b7ad345..72d81814 100644
--- a/packages/csharp/docs/Models/Components/AccountBudgetItemListResponseJson.md
+++ b/packages/csharp/docs/Models/Components/AccountBudgetItemListResponseJson.md
@@ -11,8 +11,8 @@ The response from a request to retrieve list of budget items across all events l
| `CreatedBy` | *string* | :heavy_minus_sign: | The identifier of the user that created this record. | hporter |
| `LastModified` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when this record was updated. | 2019-02-12T03:00:00Z |
| `LastModifiedBy` | *string* | :heavy_minus_sign: | The identifier of the user that last updated this record. | hporter |
-| `Event` | [EventJson2](../../Models/Components/EventJson2.md) | :heavy_minus_sign: | Event ID Information. | |
-| `Rfp` | [RfpIdJson1](../../Models/Components/RfpIdJson1.md) | :heavy_minus_sign: | RFP ID Information. | |
+| `Event` | [EventJson1](../../Models/Components/EventJson1.md) | :heavy_minus_sign: | Event ID Information. | |
+| `Rfp` | [RfpIdJson](../../Models/Components/RfpIdJson.md) | :heavy_minus_sign: | RFP ID Information. | |
| `BudgetVersion` | [BudgetVersionIdJson](../../Models/Components/BudgetVersionIdJson.md) | :heavy_minus_sign: | Budget Version ID Information. | |
| `Id` | *string* | :heavy_minus_sign: | The identifier of the budget item. | 9463c74e-18c6-401a-a710-ae0f485bf959 |
| `Name` | *string* | :heavy_minus_sign: | Name of the budget item. | Airport Transportation |
diff --git a/packages/csharp/docs/Models/Components/Action.md b/packages/csharp/docs/Models/Components/Action.md
new file mode 100644
index 00000000..e3e0db1d
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Action.md
@@ -0,0 +1,19 @@
+# Action
+
+Action to take for a compliance request.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = Action.DoNotSell;
+```
+
+
+## Values
+
+| Name | Value |
+| ----------- | ----------- |
+| `DoNotSell` | DO_NOT_SELL |
+| `OkToSell` | OK_TO_SELL |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AdditionalChoice.md b/packages/csharp/docs/Models/Components/AdditionalChoice.md
index 716e2c8e..5fb92dca 100644
--- a/packages/csharp/docs/Models/Components/AdditionalChoice.md
+++ b/packages/csharp/docs/Models/Components/AdditionalChoice.md
@@ -1,10 +1,11 @@
# AdditionalChoice
-Contains text of additional choice
+Contains text of additional choice i.e notApplicableAnswer choice or otherAnswer choice.
## Fields
-| Field | Type | Required | Description | Example |
-| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
-| `Text` | *string* | :heavy_minus_sign: | Text Value of additional choice | Not Applicable or Other |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| -------------------------------------------- | -------------------------------------------- | -------------------------------------------- | -------------------------------------------- | -------------------------------------------- |
+| `Text` | *string* | :heavy_minus_sign: | Display text of additional choice. | Dietary Restriction - Other |
+| `ShortText` | *string* | :heavy_minus_sign: | Name of additional choice text in reporting. | Dietary Preference - Other Allergies |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AdditionalChoice1.md b/packages/csharp/docs/Models/Components/AdditionalChoice1.md
new file mode 100644
index 00000000..378ffceb
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/AdditionalChoice1.md
@@ -0,0 +1,10 @@
+# AdditionalChoice1
+
+Contains text of additional choice
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
+| `Text` | *string* | :heavy_minus_sign: | Text Value of additional choice | Not Applicable or Other |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AdditionalChoiceJson.md b/packages/csharp/docs/Models/Components/AdditionalChoiceJson.md
new file mode 100644
index 00000000..87682237
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/AdditionalChoiceJson.md
@@ -0,0 +1,11 @@
+# AdditionalChoiceJson
+
+Contains text of additional choice i.e N/A choice or otherAnswer choice
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ----------------------------------------- | ----------------------------------------- | ----------------------------------------- | ----------------------------------------- | ----------------------------------------- |
+| `Text` | *string* | :heavy_minus_sign: | Text Value of additional choice | N/A or Other |
+| `ShortText` | *string* | :heavy_minus_sign: | Reporting value of additional choice text | N/A or Other Reporting value |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AdditionalChoiceJson1.md b/packages/csharp/docs/Models/Components/AdditionalChoiceJson1.md
deleted file mode 100644
index 94b0891b..00000000
--- a/packages/csharp/docs/Models/Components/AdditionalChoiceJson1.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# AdditionalChoiceJson1
-
-Contains text of additional choice i.e N/A choice or otherAnswer choice
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ----------------------------------------- | ----------------------------------------- | ----------------------------------------- | ----------------------------------------- | ----------------------------------------- |
-| `Text` | *string* | :heavy_minus_sign: | Text Value of additional choice | N/A or Other |
-| `ShortText` | *string* | :heavy_minus_sign: | Reporting value of additional choice text | N/A or Other Reporting value |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AdditionalChoiceJson2.md b/packages/csharp/docs/Models/Components/AdditionalChoiceJson2.md
deleted file mode 100644
index ea669596..00000000
--- a/packages/csharp/docs/Models/Components/AdditionalChoiceJson2.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# AdditionalChoiceJson2
-
-Contains text of additional choice i.e notApplicableAnswer choice or otherAnswer choice.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| -------------------------------------------- | -------------------------------------------- | -------------------------------------------- | -------------------------------------------- | -------------------------------------------- |
-| `Text` | *string* | :heavy_minus_sign: | Display text of additional choice. | Dietary Restriction - Other |
-| `ShortText` | *string* | :heavy_minus_sign: | Name of additional choice text in reporting. | Dietary Preference - Other Allergies |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Address.md b/packages/csharp/docs/Models/Components/Address.md
new file mode 100644
index 00000000..a0632613
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Address.md
@@ -0,0 +1,18 @@
+# Address
+
+Contact address details.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- |
+| `Address1` | *string* | :heavy_minus_sign: | The first line of an address. | Cvent Inc. |
+| `Address2` | *string* | :heavy_minus_sign: | The second line of an address. | 4001 West Parmer Lane |
+| `Address3` | *string* | :heavy_minus_sign: | The third line of an address. | PO Box 123 |
+| `City` | *string* | :heavy_minus_sign: | The name of the city. | Austin |
+| `CountryCode` | *string* | :heavy_minus_sign: | ISO 3166 two-letter (alpha-2) country code. | US |
+| `PostalCode` | *string* | :heavy_minus_sign: | Postal code (also known as zipcode) of the address. | 78727 |
+| `Region` | *string* | :heavy_minus_sign: | The name of the state/province/region of the address. | Texas |
+| `RegionCode` | *string* | :heavy_minus_sign: | The abbreviation of the state/province/region of the address. | TX |
+| `Country` | *string* | :heavy_minus_sign: | Name of the country of the address. | United States of America |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Address1.md b/packages/csharp/docs/Models/Components/Address1.md
new file mode 100644
index 00000000..87b9a26a
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Address1.md
@@ -0,0 +1,12 @@
+# Address1
+
+Address details.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ---------------------------------------------- | ---------------------------------------------- | ---------------------------------------------- | ---------------------------------------------- | ---------------------------------------------- |
+| `CountryCode` | *string* | :heavy_check_mark: | ISO 3166 code for the country. | US |
+| `City` | *string* | :heavy_check_mark: | The name of the city. | Austin |
+| `RegionCode` | *string* | :heavy_minus_sign: | ISO 3166-2 code for the state/province/region. | US-AL |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Address11.md b/packages/csharp/docs/Models/Components/Address11.md
index abf3fbfd..94ebf559 100644
--- a/packages/csharp/docs/Models/Components/Address11.md
+++ b/packages/csharp/docs/Models/Components/Address11.md
@@ -1,20 +1,17 @@
# Address11
-Address details
+Schema for address information
## Fields
| Field | Type | Required | Description | Example |
| ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- |
-| `Address1` | *string* | :heavy_minus_sign: | The first line of an address. | Cvent Inc. |
-| `Address2` | *string* | :heavy_minus_sign: | The second line of an address. | 4001 West Parmer Lane |
-| `Address3` | *string* | :heavy_minus_sign: | The third line of an address. | PO Box 123 |
+| `Address1` | *string* | :heavy_minus_sign: | The first line of an address | Cvent Inc. |
+| `Address2` | *string* | :heavy_minus_sign: | The second line of an address | 4001 West Parmer Lane |
| `City` | *string* | :heavy_minus_sign: | The name of the city. | Austin |
-| `CountryCode` | *string* | :heavy_minus_sign: | ISO 3166 two-letter (alpha-2) country code. | US |
-| `PostalCode` | *string* | :heavy_minus_sign: | Postal code (also known as zipcode) of the address. | 78727 |
| `Region` | *string* | :heavy_minus_sign: | The name of the state/province/region of the address. | Texas |
| `RegionCode` | *string* | :heavy_minus_sign: | The abbreviation of the state/province/region of the address. | TX |
-| `Country` | *string* | :heavy_minus_sign: | Name of the country of the address. | United States of America |
-| `Latitude` | *long* | :heavy_minus_sign: | The geo latitude of the address. | 30 |
-| `Longitude` | *long* | :heavy_minus_sign: | The geo longitude of the address. | -97 |
\ No newline at end of file
+| `PostalCode` | *string* | :heavy_minus_sign: | postal code (also known as zipcode) of the address | 78727 |
+| `Country` | *string* | :heavy_minus_sign: | Name of the country for example, 'United States' | United States of America |
+| `CountryCode` | *string* | :heavy_minus_sign: | ISO 3166 two-letter (alpha-2) country code | US |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Address12.md b/packages/csharp/docs/Models/Components/Address12.md
deleted file mode 100644
index ce2c0483..00000000
--- a/packages/csharp/docs/Models/Components/Address12.md
+++ /dev/null
@@ -1,17 +0,0 @@
-# Address12
-
-Schema for address information
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- |
-| `Address1` | *string* | :heavy_minus_sign: | The first line of an address | Cvent Inc. |
-| `Address2` | *string* | :heavy_minus_sign: | The second line of an address | 4001 West Parmer Lane |
-| `City` | *string* | :heavy_minus_sign: | The name of the city. | Austin |
-| `Region` | *string* | :heavy_minus_sign: | The name of the state/province/region of the address. | Texas |
-| `RegionCode` | *string* | :heavy_minus_sign: | The abbreviation of the state/province/region of the address. | TX |
-| `PostalCode` | *string* | :heavy_minus_sign: | postal code (also known as zipcode) of the address | 78727 |
-| `Country` | *string* | :heavy_minus_sign: | Name of the country for example, 'United States' | United States of America |
-| `CountryCode` | *string* | :heavy_minus_sign: | ISO 3166 two-letter (alpha-2) country code | US |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Address2.md b/packages/csharp/docs/Models/Components/Address2.md
deleted file mode 100644
index 3c3404b5..00000000
--- a/packages/csharp/docs/Models/Components/Address2.md
+++ /dev/null
@@ -1,15 +0,0 @@
-# Address2
-
-An object representing an address with various properties.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- |
-| `Address1` | *string* | :heavy_minus_sign: | The first line of an address | Cvent Inc. |
-| `Address2Value` | *string* | :heavy_minus_sign: | The second line of an address | 4001 West Parmer Lane |
-| `City` | *string* | :heavy_minus_sign: | The name of the city. | Austin |
-| `Region` | *string* | :heavy_minus_sign: | The name of the state/province/region of the address. | Texas |
-| `PostalCode` | *string* | :heavy_minus_sign: | postal code (also known as zipcode) of the address | 78727 |
-| `Country` | *string* | :heavy_minus_sign: | Name of the country for example, 'United States' | United States of America |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Address3.md b/packages/csharp/docs/Models/Components/Address3.md
index 6990b0bf..ffe12369 100644
--- a/packages/csharp/docs/Models/Components/Address3.md
+++ b/packages/csharp/docs/Models/Components/Address3.md
@@ -1,6 +1,6 @@
# Address3
-Address of the hotel.
+Address details
## Fields
@@ -15,4 +15,6 @@ Address of the hotel.
| `PostalCode` | *string* | :heavy_minus_sign: | Postal code (also known as zipcode) of the address. | 78727 |
| `Region` | *string* | :heavy_minus_sign: | The name of the state/province/region of the address. | Texas |
| `RegionCode` | *string* | :heavy_minus_sign: | The abbreviation of the state/province/region of the address. | TX |
-| `Country` | *string* | :heavy_minus_sign: | Name of the country. | United States of America |
\ No newline at end of file
+| `Country` | *string* | :heavy_minus_sign: | Name of the country of the address. | United States of America |
+| `Latitude` | *long* | :heavy_minus_sign: | The geo latitude of the address. | 30 |
+| `Longitude` | *long* | :heavy_minus_sign: | The geo longitude of the address. | -97 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Address4.md b/packages/csharp/docs/Models/Components/Address4.md
new file mode 100644
index 00000000..dfaa2212
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Address4.md
@@ -0,0 +1,15 @@
+# Address4
+
+An object representing an address with various properties.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- |
+| `Address1` | *string* | :heavy_minus_sign: | The first line of an address | Cvent Inc. |
+| `Address2` | *string* | :heavy_minus_sign: | The second line of an address | 4001 West Parmer Lane |
+| `City` | *string* | :heavy_minus_sign: | The name of the city. | Austin |
+| `Region` | *string* | :heavy_minus_sign: | The name of the state/province/region of the address. | Texas |
+| `PostalCode` | *string* | :heavy_minus_sign: | postal code (also known as zipcode) of the address | 78727 |
+| `Country` | *string* | :heavy_minus_sign: | Name of the country for example, 'United States' | United States of America |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Address5.md b/packages/csharp/docs/Models/Components/Address5.md
new file mode 100644
index 00000000..4c28e5c4
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Address5.md
@@ -0,0 +1,18 @@
+# Address5
+
+Address of the hotel.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- |
+| `Address1` | *string* | :heavy_minus_sign: | The first line of an address. | Cvent Inc. |
+| `Address2` | *string* | :heavy_minus_sign: | The second line of an address. | 4001 West Parmer Lane |
+| `Address3` | *string* | :heavy_minus_sign: | The third line of an address. | PO Box 123 |
+| `City` | *string* | :heavy_minus_sign: | The name of the city. | Austin |
+| `CountryCode` | *string* | :heavy_minus_sign: | ISO 3166 two-letter (alpha-2) country code. | US |
+| `PostalCode` | *string* | :heavy_minus_sign: | Postal code (also known as zipcode) of the address. | 78727 |
+| `Region` | *string* | :heavy_minus_sign: | The name of the state/province/region of the address. | Texas |
+| `RegionCode` | *string* | :heavy_minus_sign: | The abbreviation of the state/province/region of the address. | TX |
+| `Country` | *string* | :heavy_minus_sign: | Name of the country. | United States of America |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Address6.md b/packages/csharp/docs/Models/Components/Address6.md
new file mode 100644
index 00000000..923f80d4
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Address6.md
@@ -0,0 +1,17 @@
+# Address6
+
+Address details.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ |
+| `Address1` | *string* | :heavy_minus_sign: | Address line 1. | 717 N Harwood St |
+| `Address2` | *string* | :heavy_minus_sign: | Address line 2. | Suite 2800 |
+| `City` | *string* | :heavy_minus_sign: | City name. | Dallas |
+| `Region` | *string* | :heavy_minus_sign: | Region name. | Texas |
+| `RegionCode` | *string* | :heavy_minus_sign: | Region code. | TX |
+| `PostalCode` | *string* | :heavy_minus_sign: | Postal code. | 75201 |
+| `Country` | *string* | :heavy_minus_sign: | Country name. | United States |
+| `CountryCode` | *string* | :heavy_minus_sign: | ISO 3166 alpha-2 country code. | US |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AddressInput.md b/packages/csharp/docs/Models/Components/AddressInput.md
new file mode 100644
index 00000000..980c57ca
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/AddressInput.md
@@ -0,0 +1,16 @@
+# AddressInput
+
+Contact address details.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- |
+| `Address1` | *string* | :heavy_minus_sign: | The first line of an address. | Cvent Inc. |
+| `Address2` | *string* | :heavy_minus_sign: | The second line of an address. | 4001 West Parmer Lane |
+| `Address3` | *string* | :heavy_minus_sign: | The third line of an address. | PO Box 123 |
+| `City` | *string* | :heavy_minus_sign: | The name of the city. | Austin |
+| `CountryCode` | *string* | :heavy_minus_sign: | ISO 3166 two-letter (alpha-2) country code. | US |
+| `PostalCode` | *string* | :heavy_minus_sign: | Postal code (also known as zipcode) of the address. | 78727 |
+| `RegionCode` | *string* | :heavy_minus_sign: | The abbreviation of the state/province/region of the address. | TX |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AddressJson.md b/packages/csharp/docs/Models/Components/AddressJson.md
index 752704ee..24179ddb 100644
--- a/packages/csharp/docs/Models/Components/AddressJson.md
+++ b/packages/csharp/docs/Models/Components/AddressJson.md
@@ -1,18 +1,17 @@
# AddressJson
-Contact address details.
+Address details. Required to create/update a guest's reservation if the hotel/event requires an address in reservations.
## Fields
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- |
-| `Address1` | *string* | :heavy_minus_sign: | The first line of an address. | Cvent Inc. |
-| `Address2` | *string* | :heavy_minus_sign: | The second line of an address. | 4001 West Parmer Lane |
-| `Address3` | *string* | :heavy_minus_sign: | The third line of an address. | PO Box 123 |
-| `City` | *string* | :heavy_minus_sign: | The name of the city. | Austin |
-| `CountryCode` | *string* | :heavy_minus_sign: | ISO 3166 two-letter (alpha-2) country code. | US |
-| `PostalCode` | *string* | :heavy_minus_sign: | Postal code (also known as zipcode) of the address. | 78727 |
-| `Region` | *string* | :heavy_minus_sign: | The name of the state/province/region of the address. | Texas |
-| `RegionCode` | *string* | :heavy_minus_sign: | The abbreviation of the state/province/region of the address. | TX |
-| `Country` | *string* | :heavy_minus_sign: | Name of the country of the address. | United States of America |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ |
+| `Address1` | *string* | :heavy_minus_sign: | Address line 1. | West St. 1 |
+| `Address2` | *string* | :heavy_minus_sign: | Address line 2. | Apt. 16 |
+| `City` | *string* | :heavy_minus_sign: | City name. | Austin |
+| `Region` | *string* | :heavy_minus_sign: | Region name. | Texas |
+| `RegionCode` | *string* | :heavy_minus_sign: | Region code. | TX |
+| `PostalCode` | *string* | :heavy_minus_sign: | Postal code. | 23452AB |
+| `Country` | *string* | :heavy_minus_sign: | Country name. | United States of America |
+| `CountryCode` | *string* | :heavy_minus_sign: | ISO 3166 alpha-2 country code. | US |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AddressJson0.md b/packages/csharp/docs/Models/Components/AddressJson0.md
deleted file mode 100644
index dbe10d91..00000000
--- a/packages/csharp/docs/Models/Components/AddressJson0.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# AddressJson0
-
-Address details.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ---------------------------------------------- | ---------------------------------------------- | ---------------------------------------------- | ---------------------------------------------- | ---------------------------------------------- |
-| `CountryCode` | *string* | :heavy_check_mark: | ISO 3166 code for the country. | US |
-| `City` | *string* | :heavy_check_mark: | The name of the city. | Austin |
-| `RegionCode` | *string* | :heavy_minus_sign: | ISO 3166-2 code for the state/province/region. | US-AL |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AddressJson1.md b/packages/csharp/docs/Models/Components/AddressJson1.md
new file mode 100644
index 00000000..d6be5090
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/AddressJson1.md
@@ -0,0 +1,17 @@
+# AddressJson1
+
+A physical address.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ |
+| `Address1` | *string* | :heavy_minus_sign: | Address line 1. | 717 N Harwood St |
+| `Address2` | *string* | :heavy_minus_sign: | Address line 2. | Suite 2800 |
+| `City` | *string* | :heavy_minus_sign: | City name. | Dallas |
+| `Region` | *string* | :heavy_minus_sign: | Region name. | Texas |
+| `RegionCode` | *string* | :heavy_minus_sign: | Region code. | TX |
+| `PostalCode` | *string* | :heavy_minus_sign: | Postal code. | 75201 |
+| `Country` | *string* | :heavy_minus_sign: | Country name. | United States |
+| `CountryCode` | *string* | :heavy_minus_sign: | ISO 3166 alpha-2 country code. | US |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AddressJson2.md b/packages/csharp/docs/Models/Components/AddressJson2.md
index 18428160..f2651153 100644
--- a/packages/csharp/docs/Models/Components/AddressJson2.md
+++ b/packages/csharp/docs/Models/Components/AddressJson2.md
@@ -1,17 +1,16 @@
# AddressJson2
-Address details. Required to create/update a guest's reservation if the hotel/event requires an address in reservations.
+Address
## Fields
-| Field | Type | Required | Description | Example |
-| ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ |
-| `Address1` | *string* | :heavy_minus_sign: | Address line 1. | West St. 1 |
-| `Address2` | *string* | :heavy_minus_sign: | Address line 2. | Apt. 16 |
-| `City` | *string* | :heavy_minus_sign: | City name. | Austin |
-| `Region` | *string* | :heavy_minus_sign: | Region name. | Texas |
-| `RegionCode` | *string* | :heavy_minus_sign: | Region code. | TX |
-| `PostalCode` | *string* | :heavy_minus_sign: | Postal code. | 23452AB |
-| `Country` | *string* | :heavy_minus_sign: | Country name. | United States of America |
-| `CountryCode` | *string* | :heavy_minus_sign: | ISO 3166 alpha-2 country code. | US |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- |
+| `Type` | [AddressTypeJson](../../Models/Components/AddressTypeJson.md) | :heavy_check_mark: | The type of the address. | work |
+| `StreetAddress` | *string* | :heavy_minus_sign: | The street address of the user. | 100 Universal City Plaza |
+| `Locality` | *string* | :heavy_minus_sign: | The locality/city of the user. | Hollywood |
+| `Region` | *string* | :heavy_minus_sign: | The region/state/province of the user. | CA |
+| `PostalCode` | *string* | :heavy_minus_sign: | Postal code (also known as zipcode) of the user. | 91608 |
+| `Country` | *string* | :heavy_minus_sign: | The country of the user. | USA |
+| `Primary` | *bool* | :heavy_minus_sign: | True indicates the address is primary. | true |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AddressJson3.md b/packages/csharp/docs/Models/Components/AddressJson3.md
deleted file mode 100644
index a3f1fdce..00000000
--- a/packages/csharp/docs/Models/Components/AddressJson3.md
+++ /dev/null
@@ -1,17 +0,0 @@
-# AddressJson3
-
-A physical address.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ |
-| `Address1` | *string* | :heavy_minus_sign: | Address line 1. | 717 N Harwood St |
-| `Address2` | *string* | :heavy_minus_sign: | Address line 2. | Suite 2800 |
-| `City` | *string* | :heavy_minus_sign: | City name. | Dallas |
-| `Region` | *string* | :heavy_minus_sign: | Region name. | Texas |
-| `RegionCode` | *string* | :heavy_minus_sign: | Region code. | TX |
-| `PostalCode` | *string* | :heavy_minus_sign: | Postal code. | 75201 |
-| `Country` | *string* | :heavy_minus_sign: | Country name. | United States |
-| `CountryCode` | *string* | :heavy_minus_sign: | ISO 3166 alpha-2 country code. | US |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AddressJson4.md b/packages/csharp/docs/Models/Components/AddressJson4.md
deleted file mode 100644
index c50a6457..00000000
--- a/packages/csharp/docs/Models/Components/AddressJson4.md
+++ /dev/null
@@ -1,16 +0,0 @@
-# AddressJson4
-
-Address
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- |
-| `Type` | [AddressTypeJson1](../../Models/Components/AddressTypeJson1.md) | :heavy_check_mark: | The type of the address. | work |
-| `StreetAddress` | *string* | :heavy_minus_sign: | The street address of the user. | 100 Universal City Plaza |
-| `Locality` | *string* | :heavy_minus_sign: | The locality/city of the user. | Hollywood |
-| `Region` | *string* | :heavy_minus_sign: | The region/state/province of the user. | CA |
-| `PostalCode` | *string* | :heavy_minus_sign: | Postal code (also known as zipcode) of the user. | 91608 |
-| `Country` | *string* | :heavy_minus_sign: | The country of the user. | USA |
-| `Primary` | *bool* | :heavy_minus_sign: | True indicates the address is primary. | true |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AddressJson5.md b/packages/csharp/docs/Models/Components/AddressJson5.md
deleted file mode 100644
index de554f56..00000000
--- a/packages/csharp/docs/Models/Components/AddressJson5.md
+++ /dev/null
@@ -1,17 +0,0 @@
-# AddressJson5
-
-Address details.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ |
-| `Address1` | *string* | :heavy_minus_sign: | Address line 1. | 717 N Harwood St |
-| `Address2` | *string* | :heavy_minus_sign: | Address line 2. | Suite 2800 |
-| `City` | *string* | :heavy_minus_sign: | City name. | Dallas |
-| `Region` | *string* | :heavy_minus_sign: | Region name. | Texas |
-| `RegionCode` | *string* | :heavy_minus_sign: | Region code. | TX |
-| `PostalCode` | *string* | :heavy_minus_sign: | Postal code. | 75201 |
-| `Country` | *string* | :heavy_minus_sign: | Country name. | United States |
-| `CountryCode` | *string* | :heavy_minus_sign: | ISO 3166 alpha-2 country code. | US |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AddressJsonInput.md b/packages/csharp/docs/Models/Components/AddressJsonInput.md
deleted file mode 100644
index 9d84c2ff..00000000
--- a/packages/csharp/docs/Models/Components/AddressJsonInput.md
+++ /dev/null
@@ -1,16 +0,0 @@
-# AddressJsonInput
-
-Contact address details.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- |
-| `Address1` | *string* | :heavy_minus_sign: | The first line of an address. | Cvent Inc. |
-| `Address2` | *string* | :heavy_minus_sign: | The second line of an address. | 4001 West Parmer Lane |
-| `Address3` | *string* | :heavy_minus_sign: | The third line of an address. | PO Box 123 |
-| `City` | *string* | :heavy_minus_sign: | The name of the city. | Austin |
-| `CountryCode` | *string* | :heavy_minus_sign: | ISO 3166 two-letter (alpha-2) country code. | US |
-| `PostalCode` | *string* | :heavy_minus_sign: | Postal code (also known as zipcode) of the address. | 78727 |
-| `RegionCode` | *string* | :heavy_minus_sign: | The abbreviation of the state/province/region of the address. | TX |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AddressTypeJson.md b/packages/csharp/docs/Models/Components/AddressTypeJson.md
index e62a7e9a..ff7ed53d 100644
--- a/packages/csharp/docs/Models/Components/AddressTypeJson.md
+++ b/packages/csharp/docs/Models/Components/AddressTypeJson.md
@@ -1,13 +1,13 @@
# AddressTypeJson
-The type of address.
+The type of the address.
## Example Usage
```csharp
using Cvent.SDK.Models.Components;
-var value = AddressTypeJson.Home;
+var value = AddressTypeJson.Work;
```
@@ -15,5 +15,5 @@ var value = AddressTypeJson.Home;
| Name | Value |
| ------ | ------ |
-| `Home` | Home |
-| `Work` | Work |
\ No newline at end of file
+| `Work` | work |
+| `Home` | home |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AddressTypeJson1.md b/packages/csharp/docs/Models/Components/AddressTypeJson1.md
deleted file mode 100644
index a12f2348..00000000
--- a/packages/csharp/docs/Models/Components/AddressTypeJson1.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# AddressTypeJson1
-
-The type of the address.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = AddressTypeJson1.Work;
-```
-
-
-## Values
-
-| Name | Value |
-| ------ | ------ |
-| `Work` | work |
-| `Home` | home |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AgendaItemSetup.md b/packages/csharp/docs/Models/Components/AgendaItemSetup.md
new file mode 100644
index 00000000..2ceb29eb
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/AgendaItemSetup.md
@@ -0,0 +1,43 @@
+# AgendaItemSetup
+
+Setup type for the agenda.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = AgendaItemSetup.Buffet;
+```
+
+
+## Values
+
+| Name | Value |
+| ---------------- | ---------------- |
+| `Buffet` | BUFFET |
+| `Cabaret` | CABARET |
+| `Chevron` | CHEVRON |
+| `Classroom` | CLASSROOM |
+| `Conference` | CONFERENCE |
+| `CrescentRounds` | CRESCENT_ROUNDS |
+| `EightByTen` | EIGHT_BY_TEN |
+| `Flow` | FLOW |
+| `Herringbone` | HERRINGBONE |
+| `HollowSquare` | HOLLOW_SQUARE |
+| `Island` | ISLAND |
+| `Offsite` | OFFSITE |
+| `Other` | OTHER |
+| `Peninsula` | PENINSULA |
+| `Plated` | PLATED |
+| `Reception` | RECEPTION |
+| `Rounds` | ROUNDS |
+| `RoundsOf10` | ROUNDS_OF_10 |
+| `RoundsOf6` | ROUNDS_OF_6 |
+| `RoundsOf8` | ROUNDS_OF_8 |
+| `SchoolRoom` | SCHOOL_ROOM |
+| `Tabletop` | TABLETOP |
+| `TenByTen` | TEN_BY_TEN |
+| `Theater` | THEATER |
+| `TShaped` | T_SHAPED |
+| `UShaped` | U_SHAPED |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AgendaItemSetupJson.md b/packages/csharp/docs/Models/Components/AgendaItemSetupJson.md
deleted file mode 100644
index e9958b69..00000000
--- a/packages/csharp/docs/Models/Components/AgendaItemSetupJson.md
+++ /dev/null
@@ -1,43 +0,0 @@
-# AgendaItemSetupJson
-
-Setup type for the agenda.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = AgendaItemSetupJson.Buffet;
-```
-
-
-## Values
-
-| Name | Value |
-| ---------------- | ---------------- |
-| `Buffet` | BUFFET |
-| `Cabaret` | CABARET |
-| `Chevron` | CHEVRON |
-| `Classroom` | CLASSROOM |
-| `Conference` | CONFERENCE |
-| `CrescentRounds` | CRESCENT_ROUNDS |
-| `EightByTen` | EIGHT_BY_TEN |
-| `Flow` | FLOW |
-| `Herringbone` | HERRINGBONE |
-| `HollowSquare` | HOLLOW_SQUARE |
-| `Island` | ISLAND |
-| `Offsite` | OFFSITE |
-| `Other` | OTHER |
-| `Peninsula` | PENINSULA |
-| `Plated` | PLATED |
-| `Reception` | RECEPTION |
-| `Rounds` | ROUNDS |
-| `RoundsOf10` | ROUNDS_OF_10 |
-| `RoundsOf6` | ROUNDS_OF_6 |
-| `RoundsOf8` | ROUNDS_OF_8 |
-| `SchoolRoom` | SCHOOL_ROOM |
-| `Tabletop` | TABLETOP |
-| `TenByTen` | TEN_BY_TEN |
-| `Theater` | THEATER |
-| `TShaped` | T_SHAPED |
-| `UShaped` | U_SHAPED |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AgendaItemType.md b/packages/csharp/docs/Models/Components/AgendaItemType.md
new file mode 100644
index 00000000..11c9fc9c
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/AgendaItemType.md
@@ -0,0 +1,36 @@
+# AgendaItemType
+
+Type of the agenda.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = AgendaItemType.Break;
+```
+
+
+## Values
+
+| Name | Value |
+| ------------------ | ------------------ |
+| `Break` | BREAK |
+| `Breakfast` | BREAKFAST |
+| `Breakout` | BREAKOUT |
+| `Dinner` | DINNER |
+| `Exhibit` | EXHIBIT |
+| `GeneralSession` | GENERAL_SESSION |
+| `HospitalityDesk` | HOSPITALITY_DESK |
+| `HospitalitySuite` | HOSPITALITY_SUITE |
+| `Lunch` | LUNCH |
+| `Meeting` | MEETING |
+| `Office` | OFFICE |
+| `Other` | OTHER |
+| `Reception` | RECEPTION |
+| `Registration` | REGISTRATION |
+| `Setup` | SETUP |
+| `Snack` | SNACK |
+| `SpeakerRoom` | SPEAKER_ROOM |
+| `StorageRoom` | STORAGE_ROOM |
+| `Teardown` | TEARDOWN |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AgendaItemTypeJson.md b/packages/csharp/docs/Models/Components/AgendaItemTypeJson.md
deleted file mode 100644
index 2121bb78..00000000
--- a/packages/csharp/docs/Models/Components/AgendaItemTypeJson.md
+++ /dev/null
@@ -1,36 +0,0 @@
-# AgendaItemTypeJson
-
-Type of the agenda.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = AgendaItemTypeJson.Break;
-```
-
-
-## Values
-
-| Name | Value |
-| ------------------ | ------------------ |
-| `Break` | BREAK |
-| `Breakfast` | BREAKFAST |
-| `Breakout` | BREAKOUT |
-| `Dinner` | DINNER |
-| `Exhibit` | EXHIBIT |
-| `GeneralSession` | GENERAL_SESSION |
-| `HospitalityDesk` | HOSPITALITY_DESK |
-| `HospitalitySuite` | HOSPITALITY_SUITE |
-| `Lunch` | LUNCH |
-| `Meeting` | MEETING |
-| `Office` | OFFICE |
-| `Other` | OTHER |
-| `Reception` | RECEPTION |
-| `Registration` | REGISTRATION |
-| `Setup` | SETUP |
-| `Snack` | SNACK |
-| `SpeakerRoom` | SPEAKER_ROOM |
-| `StorageRoom` | STORAGE_ROOM |
-| `Teardown` | TEARDOWN |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AmenityType.md b/packages/csharp/docs/Models/Components/AmenityType.md
new file mode 100644
index 00000000..fa044634
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/AmenityType.md
@@ -0,0 +1,20 @@
+# AmenityType
+
+Amenity type
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = AmenityType.IncludedAmenity;
+```
+
+
+## Values
+
+| Name | Value |
+| ------------------- | ------------------- |
+| `IncludedAmenity` | included_amenity |
+| `Amenity` | amenity |
+| `BundledSupplement` | bundled_supplement |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AmenityTypeJson.md b/packages/csharp/docs/Models/Components/AmenityTypeJson.md
deleted file mode 100644
index dbb8ae19..00000000
--- a/packages/csharp/docs/Models/Components/AmenityTypeJson.md
+++ /dev/null
@@ -1,20 +0,0 @@
-# AmenityTypeJson
-
-Amenity type
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = AmenityTypeJson.IncludedAmenity;
-```
-
-
-## Values
-
-| Name | Value |
-| ------------------- | ------------------- |
-| `IncludedAmenity` | included_amenity |
-| `Amenity` | amenity |
-| `BundledSupplement` | bundled_supplement |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AppointmentWithQuestions.md b/packages/csharp/docs/Models/Components/AppointmentWithQuestions.md
index 5debf0cf..fe336599 100644
--- a/packages/csharp/docs/Models/Components/AppointmentWithQuestions.md
+++ b/packages/csharp/docs/Models/Components/AppointmentWithQuestions.md
@@ -26,4 +26,4 @@ Details of an event appointment including questions.
| `EnforceScheduleRules` | *bool* | :heavy_minus_sign: | True indicates that existing schedule rules were enforced when the appointment was created. | false |
| ~~`Modified`~~ | [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.
This field is deprecated please use - lastModified | 2019-04-12T15:30:00.000Z |
| `Deleted` | *bool* | :heavy_minus_sign: | True indicates the appointment has been logically deleted. | false |
-| `Questions` | List<[CustomFieldJson1](../../Models/Components/CustomFieldJson1.md)> | :heavy_minus_sign: | Collection of custom questions asked to participants of the appointment. | |
\ No newline at end of file
+| `Questions` | List<[CustomFieldJson](../../Models/Components/CustomFieldJson.md)> | :heavy_minus_sign: | Collection of custom questions asked to participants of the appointment. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AssetLocation.md b/packages/csharp/docs/Models/Components/AssetLocation.md
new file mode 100644
index 00000000..6585b5d0
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/AssetLocation.md
@@ -0,0 +1,10 @@
+# AssetLocation
+
+A URL associated with the asset.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Href` | *string* | :heavy_check_mark: | A pre-signed URL with an expiration of 2 hours to the asset's location. | https://ap-southeast-2.example.com/sign2-bucket-hchq3nwuo8ns/sign-demo.json?X-Exa-Date=20170125T044127Z&X-Exa-Expires=60&X-Exa-Signature=24db05 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AssetLocationInput.md b/packages/csharp/docs/Models/Components/AssetLocationInput.md
new file mode 100644
index 00000000..173c72e6
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/AssetLocationInput.md
@@ -0,0 +1,9 @@
+# AssetLocationInput
+
+A URL associated with the asset.
+
+
+## Fields
+
+| Field | Type | Required | Description |
+| ----------- | ----------- | ----------- | ----------- |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AssetLocationJson.md b/packages/csharp/docs/Models/Components/AssetLocationJson.md
deleted file mode 100644
index ec5e07bf..00000000
--- a/packages/csharp/docs/Models/Components/AssetLocationJson.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# AssetLocationJson
-
-A URL associated with the asset.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Href` | *string* | :heavy_check_mark: | A pre-signed URL with an expiration of 2 hours to the asset's location. | https://ap-southeast-2.example.com/sign2-bucket-hchq3nwuo8ns/sign-demo.json?X-Exa-Date=20170125T044127Z&X-Exa-Expires=60&X-Exa-Signature=24db05 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AssetLocationJsonInput.md b/packages/csharp/docs/Models/Components/AssetLocationJsonInput.md
deleted file mode 100644
index ee14621e..00000000
--- a/packages/csharp/docs/Models/Components/AssetLocationJsonInput.md
+++ /dev/null
@@ -1,9 +0,0 @@
-# AssetLocationJsonInput
-
-A URL associated with the asset.
-
-
-## Fields
-
-| Field | Type | Required | Description |
-| ----------- | ----------- | ----------- | ----------- |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AttachmentSource.md b/packages/csharp/docs/Models/Components/AttachmentSource.md
new file mode 100644
index 00000000..1a8cf945
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/AttachmentSource.md
@@ -0,0 +1,22 @@
+# AttachmentSource
+
+The source from where the attachment was uploaded.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = AttachmentSource.FileCopyAdminLibrary;
+```
+
+
+## Values
+
+| Name | Value |
+| ---------------------------- | ---------------------------- |
+| `FileCopyAdminLibrary` | FILE_COPY_ADMIN_LIBRARY |
+| `FileUploadLinkUrl` | FILE_UPLOAD_LINK_URL |
+| `FileUploadToCustomDrive` | FILE_UPLOAD_TO_CUSTOM_DRIVE |
+| `FileUploadToTempLocation` | FILE_UPLOAD_TO_TEMP_LOCATION |
+| `UserDocumentLinkUrl` | USER_DOCUMENT_LINK_URL |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AttachmentSourceJson.md b/packages/csharp/docs/Models/Components/AttachmentSourceJson.md
deleted file mode 100644
index c4436871..00000000
--- a/packages/csharp/docs/Models/Components/AttachmentSourceJson.md
+++ /dev/null
@@ -1,22 +0,0 @@
-# AttachmentSourceJson
-
-The source from where the attachment was uploaded.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = AttachmentSourceJson.FileCopyAdminLibrary;
-```
-
-
-## Values
-
-| Name | Value |
-| ---------------------------- | ---------------------------- |
-| `FileCopyAdminLibrary` | FILE_COPY_ADMIN_LIBRARY |
-| `FileUploadLinkUrl` | FILE_UPLOAD_LINK_URL |
-| `FileUploadToCustomDrive` | FILE_UPLOAD_TO_CUSTOM_DRIVE |
-| `FileUploadToTempLocation` | FILE_UPLOAD_TO_TEMP_LOCATION |
-| `UserDocumentLinkUrl` | USER_DOCUMENT_LINK_URL |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Attendee.md b/packages/csharp/docs/Models/Components/Attendee.md
new file mode 100644
index 00000000..ce13f686
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Attendee.md
@@ -0,0 +1,10 @@
+# Attendee
+
+The reference to the attendee. Contains only the ID of the attendee.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- |
+| `Id` | *string* | :heavy_check_mark: | Unique identifier of the primary invitee for the current attendee's registration. | 5b0e8d1f-8fd6-4ebe-977a-602b4a1f9c43 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Attendee1.md b/packages/csharp/docs/Models/Components/Attendee1.md
deleted file mode 100644
index ba2b16f1..00000000
--- a/packages/csharp/docs/Models/Components/Attendee1.md
+++ /dev/null
@@ -1,54 +0,0 @@
-# Attendee1
-
-An event attendee.
-
-
-## 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: | The ISO 8601 zoned date time when this record was created. | 2017-01-02T02:00:00Z |
-| `CreatedBy` | *string* | :heavy_minus_sign: | The identifier of the user that created this record. | hporter |
-| `LastModified` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when this record was updated. | 2019-02-12T03:00:00Z |
-| `LastModifiedBy` | *string* | :heavy_minus_sign: | The identifier of the user that last updated this record. | hporter |
-| `Id` | *string* | :heavy_minus_sign: | The ID of attendee in the given event. | |
-| `Event` | [AttendeeEvent](../../Models/Components/AttendeeEvent.md) | :heavy_minus_sign: | The attendee's associated event. | |
-| `ConfirmationNumber` | *string* | :heavy_minus_sign: | The confirmation number is a code unique to each attendee. Cvent assigns one to the attendee upon registration for the event. Serves as proof of registration. | VNNDLJ6DKVK |
-| `Contact` | [AttendeeContactInfo](../../Models/Components/AttendeeContactInfo.md) | :heavy_minus_sign: | Information about attendee contact added to an event. | |
-| `CheckedIn` | *bool* | :heavy_minus_sign: | True indicates the attendee checked in to the event. | true |
-| ~~`Checkin`~~ | [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 date time when attendee was checked in to an event. Note: this field is deprecated. Please use the `checkIn` field instead. | 2018-01-13T02:00:00Z |
-| `CheckIn` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when attendee was checked in to an event. | 2018-01-13T02:00:00Z |
-| `CheckOut` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when attendee checked out from an event. | 2018-01-13T02:00:00Z |
-| `Duration` | *long* | :heavy_minus_sign: | The duration, in milliseconds, the attendee was present at the event. | 4000 |
-| `RegistrationPath` | [Lookup](../../Models/Components/Lookup.md) | :heavy_minus_sign: | Lookup response object | |
-| `InvitationList` | [NamedObject](../../Models/Components/NamedObject.md) | :heavy_minus_sign: | A Named object | |
-| `WebLinks` | [AttendeeWebLinks](../../Models/Components/AttendeeWebLinks.md) | :heavy_minus_sign: | Web links for an attendee. | |
-| `RegistrationType` | [Lookup](../../Models/Components/Lookup.md) | :heavy_minus_sign: | Lookup response object | |
-| `ReferenceId` | *string* | :heavy_minus_sign: | The reference ID of an attendee. A planner determined string used to track which link attendee's used to reach the event registration. | refid-plannerside |
-| `ExternalReferences` | List<[ExternalReference](../../Models/Components/ExternalReference.md)> | :heavy_minus_sign: | The details of an attendee in an external systems. | |
-| `Note` | *string* | :heavy_minus_sign: | A planner created note for an attendee, used to track details about the attendee. | Would like to sit near the front of the room for sessions. |
-| `Guest` | *bool* | :heavy_minus_sign: | True indicates the attendee is a guest of another attendee. | true |
-| `DeletedGuest` | *bool* | :heavy_minus_sign: | True indicates this attendee is a deleted guest. | false |
-| `PrimaryId` | *string* | :heavy_minus_sign: | The ID of the primary attendee to whom this guest attendee is associated. Only applicable if this attendee is a guest. | |
-| `Group` | [AttendeeGroup](../../Models/Components/AttendeeGroup.md) | :heavy_minus_sign: | An attendee group. | |
-| `Administrator` | [Uuid](../../Models/Components/Uuid.md) | :heavy_minus_sign: | The reference to the related entity. Contains only the ID of the related entity. | |
-| ~~`Unsubscribed`~~ | *bool* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
DEPRECATED: True indicates this attendee is unsubscribed from this event's emails. They'll still receive emails triggered by their own actions (like registration modification). This field has been deprecated. Please use PUT /attendees/{id}/email-subscriptions instead. | false |
-| `Status` | [AttendeeStatus](../../Models/Components/AttendeeStatus.md) | :heavy_minus_sign: | This is used to denote the status of an attendee. | Accepted |
-| `RegisteredAt` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when attendee was registered. | 2018-01-13T02:00:00Z |
-| `RegistrationLastModified` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when attendee's registration was modified. This field is updated when there are changes to the registration, such as adding or removing products. | 2018-01-13T02:00:00Z |
-| `RegistrationCancelledAt` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when attendee registration was cancelled. | 2018-01-13T02:00:00Z |
-| `InvitedBy` | [AttendeeInvitedBy1](../../Models/Components/AttendeeInvitedBy1.md) | :heavy_minus_sign: | Method by which the attendee was invited to the event. | Planner-Invited |
-| `ResponseMethod` | [AttendeeResponseMethod1](../../Models/Components/AttendeeResponseMethod1.md) | :heavy_minus_sign: | Represents the method by which an attendee registered for the event.
- Administrator Responded: The invitee was registered by another contact acting as their administrator.
- API-Responded: The invitee was registered through a custom process configured via an API integration.
- Appointments Event Website: The invitee registered via an appointments event website.
- Cvent Salesforce App: The invitee registered through an action in the Cvent Salesforce App.
- External Registration: The attendee was registered through an external integration, such as Marketo.
- Group Leader Responded: The invitee was registered by a group leader and added to a group.
- Historical Import: The invitee's registration was imported into the event as historical data.
- Imported: The invitee's registration was imported into the event.
- No Response: The invitee has not registered.
- On-site Responded: The invitee registered onsite using OnArrival's Kiosk Mode.
- Planner-Imported: An account user imported the invitee's registration into the event.
- Planner-Responded: An account user registered the invitee from the Cvent back-end or the planner-side of the OnArrival app.
- Post Event: The invitee was registered by an account user after the event's end date or while the event was in Completed status.
- Self-Responded: The invitee registered themselves through a weblink or invitation.
Note: The responseMethod can only be set if the invitee's status is No Response. | Self-Responded |
-| ~~`Questions`~~ | List<[CustomFieldSchema](../../Models/Components/CustomFieldSchema.md)> | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
A list of answers to contact custom fields. Note: This field is deprecated. Answers to custom contact fields can be found in the 'contact' model, `customFields` field instead. | |
-| `Answers` | List<[AttendeeAnswer](../../Models/Components/AttendeeAnswer.md)> | :heavy_minus_sign: | The list of answers to the registration questions. | |
-| `AdmissionItem` | [AttendeeLookup](../../Models/Components/AttendeeLookup.md) | :heavy_minus_sign: | Contains details related to the attendee's admission item. | |
-| `Visibility` | [AttendeeVisibility](../../Models/Components/AttendeeVisibility.md) | :heavy_minus_sign: | Denotes the visibility of the attendee profile to other attendees. Private: Their profile is not visible. Public: Their profile is visible. | Private |
-| `Bio` | *string* | :heavy_minus_sign: | The attendee's biographical writeup. | In west Philadelphia, born and raised, on the playground is where I spent most of my days. |
-| ~~`ShowPopupNotification`~~ | *bool* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
Notification setting in the Attendee Hub app or website. Note: This field is deprecated. Use `allowPushNotification` field instead. | false |
-| `WebsiteUrl` | *string* | :heavy_minus_sign: | An attendee's website URL, appears on their profile. | https://www.example.com |
-| `AllowPushNotifications` | *bool* | :heavy_minus_sign: | True indicates attendee will recieve push notifications for session-schedule changes, promotions and other event activities in the Attendee Hub app. | false |
-| `AllowAppointmentPushNotifications` | *bool* | :heavy_minus_sign: | True indicaites attendee will recieve push notifications for appointments related activities in the Attendee Hub app. | false |
-| `TestRecord` | *bool* | :heavy_minus_sign: | True indicates this attendee record was created as part of a test scenario. | false |
-| `AttendeeLastModified` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date-time indicates when the attendee's non-contact properties were modified. Updates to the attendee's contact properties do not update this field. This field is updated when planners or attendees make changes to the attendee record, such as flagging as a participant. It is not updated for registration or product changes. | 2018-01-13T02:00:00Z |
-| `AppointmentGroups` | List<[AppointmentGroup](../../Models/Components/AppointmentGroup.md)> | :heavy_minus_sign: | List of appointment groups associated with attendee. These control permissions and visibility in appointments associated with the event. | |
-| `Credit` | *double* | :heavy_minus_sign: | The amount of credit associated with the attendee. | 10 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Attendee11.md b/packages/csharp/docs/Models/Components/Attendee11.md
index 2909cf27..ba4afd86 100644
--- a/packages/csharp/docs/Models/Components/Attendee11.md
+++ b/packages/csharp/docs/Models/Components/Attendee11.md
@@ -1,10 +1,54 @@
# Attendee11
-The associated Attendee.
+An event attendee.
## Fields
-| Field | Type | Required | Description | Example |
-| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
-| `Id` | *string* | :heavy_check_mark: | Attendee id | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ 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: | The ISO 8601 zoned date time when this record was created. | 2017-01-02T02:00:00Z |
+| `CreatedBy` | *string* | :heavy_minus_sign: | The identifier of the user that created this record. | hporter |
+| `LastModified` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when this record was updated. | 2019-02-12T03:00:00Z |
+| `LastModifiedBy` | *string* | :heavy_minus_sign: | The identifier of the user that last updated this record. | hporter |
+| `Id` | *string* | :heavy_minus_sign: | The ID of attendee in the given event. | |
+| `Event` | [Attendee1Event](../../Models/Components/Attendee1Event.md) | :heavy_minus_sign: | The attendee's associated event. | |
+| `ConfirmationNumber` | *string* | :heavy_minus_sign: | The confirmation number is a code unique to each attendee. Cvent assigns one to the attendee upon registration for the event. Serves as proof of registration. | VNNDLJ6DKVK |
+| `Contact` | [AttendeeContactInfo](../../Models/Components/AttendeeContactInfo.md) | :heavy_minus_sign: | Information about attendee contact added to an event. | |
+| `CheckedIn` | *bool* | :heavy_minus_sign: | True indicates the attendee checked in to the event. | true |
+| ~~`Checkin`~~ | [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 date time when attendee was checked in to an event. Note: this field is deprecated. Please use the `checkIn` field instead. | 2018-01-13T02:00:00Z |
+| `CheckIn` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when attendee was checked in to an event. | 2018-01-13T02:00:00Z |
+| `CheckOut` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when attendee checked out from an event. | 2018-01-13T02:00:00Z |
+| `Duration` | *long* | :heavy_minus_sign: | The duration, in milliseconds, the attendee was present at the event. | 4000 |
+| `RegistrationPath` | [Lookup](../../Models/Components/Lookup.md) | :heavy_minus_sign: | Lookup response object | |
+| `InvitationList` | [NamedObject](../../Models/Components/NamedObject.md) | :heavy_minus_sign: | A Named object | |
+| `WebLinks` | [AttendeeWebLinks](../../Models/Components/AttendeeWebLinks.md) | :heavy_minus_sign: | Web links for an attendee. | |
+| `RegistrationType` | [Lookup](../../Models/Components/Lookup.md) | :heavy_minus_sign: | Lookup response object | |
+| `ReferenceId` | *string* | :heavy_minus_sign: | The reference ID of an attendee. A planner determined string used to track which link attendee's used to reach the event registration. | refid-plannerside |
+| `ExternalReferences` | List<[ExternalReference](../../Models/Components/ExternalReference.md)> | :heavy_minus_sign: | The details of an attendee in an external systems. | |
+| `Note` | *string* | :heavy_minus_sign: | A planner created note for an attendee, used to track details about the attendee. | Would like to sit near the front of the room for sessions. |
+| `Guest` | *bool* | :heavy_minus_sign: | True indicates the attendee is a guest of another attendee. | true |
+| `DeletedGuest` | *bool* | :heavy_minus_sign: | True indicates this attendee is a deleted guest. | false |
+| `PrimaryId` | *string* | :heavy_minus_sign: | The ID of the primary attendee to whom this guest attendee is associated. Only applicable if this attendee is a guest. | |
+| `Group` | [AttendeeGroup](../../Models/Components/AttendeeGroup.md) | :heavy_minus_sign: | An attendee group. | |
+| `Administrator` | [Uuid](../../Models/Components/Uuid.md) | :heavy_minus_sign: | The reference to the related entity. Contains only the ID of the related entity. | |
+| ~~`Unsubscribed`~~ | *bool* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
DEPRECATED: True indicates this attendee is unsubscribed from this event's emails. They'll still receive emails triggered by their own actions (like registration modification). This field has been deprecated. Please use PUT /attendees/{id}/email-subscriptions instead. | false |
+| `Status` | [AttendeeStatus](../../Models/Components/AttendeeStatus.md) | :heavy_minus_sign: | This is used to denote the status of an attendee. | Accepted |
+| `RegisteredAt` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when attendee was registered. | 2018-01-13T02:00:00Z |
+| `RegistrationLastModified` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when attendee's registration was modified. This field is updated when there are changes to the registration, such as adding or removing products. | 2018-01-13T02:00:00Z |
+| `RegistrationCancelledAt` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when attendee registration was cancelled. | 2018-01-13T02:00:00Z |
+| `InvitedBy` | [AttendeeInvitedBy1](../../Models/Components/AttendeeInvitedBy1.md) | :heavy_minus_sign: | Method by which the attendee was invited to the event. | Planner-Invited |
+| `ResponseMethod` | [AttendeeResponseMethod1](../../Models/Components/AttendeeResponseMethod1.md) | :heavy_minus_sign: | Represents the method by which an attendee registered for the event.
- Administrator Responded: The invitee was registered by another contact acting as their administrator.
- API-Responded: The invitee was registered through a custom process configured via an API integration.
- Appointments Event Website: The invitee registered via an appointments event website.
- Cvent Salesforce App: The invitee registered through an action in the Cvent Salesforce App.
- External Registration: The attendee was registered through an external integration, such as Marketo.
- Group Leader Responded: The invitee was registered by a group leader and added to a group.
- Historical Import: The invitee's registration was imported into the event as historical data.
- Imported: The invitee's registration was imported into the event.
- No Response: The invitee has not registered.
- On-site Responded: The invitee registered onsite using OnArrival's Kiosk Mode.
- Planner-Imported: An account user imported the invitee's registration into the event.
- Planner-Responded: An account user registered the invitee from the Cvent back-end or the planner-side of the OnArrival app.
- Post Event: The invitee was registered by an account user after the event's end date or while the event was in Completed status.
- Self-Responded: The invitee registered themselves through a weblink or invitation.
Note: The responseMethod can only be set if the invitee's status is No Response. | Self-Responded |
+| ~~`Questions`~~ | List<[CustomFieldSchema](../../Models/Components/CustomFieldSchema.md)> | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
A list of answers to contact custom fields. Note: This field is deprecated. Answers to custom contact fields can be found in the 'contact' model, `customFields` field instead. | |
+| `Answers` | List<[AttendeeAnswer](../../Models/Components/AttendeeAnswer.md)> | :heavy_minus_sign: | The list of answers to the registration questions. | |
+| `AdmissionItem` | [Attendee1Lookup](../../Models/Components/Attendee1Lookup.md) | :heavy_minus_sign: | Contains details related to the attendee's admission item. | |
+| `Visibility` | [AttendeeVisibility](../../Models/Components/AttendeeVisibility.md) | :heavy_minus_sign: | Denotes the visibility of the attendee profile to other attendees. Private: Their profile is not visible. Public: Their profile is visible. | Private |
+| `Bio` | *string* | :heavy_minus_sign: | The attendee's biographical writeup. | In west Philadelphia, born and raised, on the playground is where I spent most of my days. |
+| ~~`ShowPopupNotification`~~ | *bool* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
Notification setting in the Attendee Hub app or website. Note: This field is deprecated. Use `allowPushNotification` field instead. | false |
+| `WebsiteUrl` | *string* | :heavy_minus_sign: | An attendee's website URL, appears on their profile. | https://www.example.com |
+| `AllowPushNotifications` | *bool* | :heavy_minus_sign: | True indicates attendee will recieve push notifications for session-schedule changes, promotions and other event activities in the Attendee Hub app. | false |
+| `AllowAppointmentPushNotifications` | *bool* | :heavy_minus_sign: | True indicaites attendee will recieve push notifications for appointments related activities in the Attendee Hub app. | false |
+| `TestRecord` | *bool* | :heavy_minus_sign: | True indicates this attendee record was created as part of a test scenario. | false |
+| `AttendeeLastModified` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date-time indicates when the attendee's non-contact properties were modified. Updates to the attendee's contact properties do not update this field. This field is updated when planners or attendees make changes to the attendee record, such as flagging as a participant. It is not updated for registration or product changes. | 2018-01-13T02:00:00Z |
+| `AppointmentGroups` | List<[AppointmentGroup](../../Models/Components/AppointmentGroup.md)> | :heavy_minus_sign: | List of appointment groups associated with attendee. These control permissions and visibility in appointments associated with the event. | |
+| `Credit` | *double* | :heavy_minus_sign: | The amount of credit associated with the attendee. | 10 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Attendee12.md b/packages/csharp/docs/Models/Components/Attendee12.md
index c59d9cfb..2ea35ad4 100644
--- a/packages/csharp/docs/Models/Components/Attendee12.md
+++ b/packages/csharp/docs/Models/Components/Attendee12.md
@@ -1,10 +1,10 @@
# Attendee12
-A JSON schema representing the Attendee object
+The associated Attendee.
## Fields
| Field | Type | Required | Description | Example |
| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
-| `Id` | *string* | :heavy_minus_sign: | Attendee id | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
+| `Id` | *string* | :heavy_check_mark: | Attendee id | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Attendee13.md b/packages/csharp/docs/Models/Components/Attendee13.md
new file mode 100644
index 00000000..8a3c9a99
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Attendee13.md
@@ -0,0 +1,10 @@
+# Attendee13
+
+A JSON schema representing the Attendee object
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
+| `Id` | *string* | :heavy_minus_sign: | Attendee id | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Attendee1Event.md b/packages/csharp/docs/Models/Components/Attendee1Event.md
new file mode 100644
index 00000000..a8de272c
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Attendee1Event.md
@@ -0,0 +1,10 @@
+# Attendee1Event
+
+The attendee's associated event.
+
+
+## Fields
+
+| Field | Type | Required | Description |
+| ------------------ | ------------------ | ------------------ | ------------------ |
+| `Id` | *string* | :heavy_minus_sign: | The event ID. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Attendee1Lookup.md b/packages/csharp/docs/Models/Components/Attendee1Lookup.md
new file mode 100644
index 00000000..5739beb3
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Attendee1Lookup.md
@@ -0,0 +1,12 @@
+# Attendee1Lookup
+
+Contains details related to the attendee's admission item.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- |
+| `Id` | *string* | :heavy_minus_sign: | A string that has to be a format matching the industry standard uuid | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `Code` | *string* | :heavy_minus_sign: | Code / Abbreviation of the lookup item. | MU |
+| `Name` | *string* | :heavy_minus_sign: | Name of the lookup item. | Meet up |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Attendee2.md b/packages/csharp/docs/Models/Components/Attendee2.md
index b0f89907..7db463d3 100644
--- a/packages/csharp/docs/Models/Components/Attendee2.md
+++ b/packages/csharp/docs/Models/Components/Attendee2.md
@@ -5,6 +5,6 @@ The reference to the attendee. Contains only the ID of the attendee.
## Fields
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_check_mark: | Unique identifier of the primary invitee for the current attendee's registration. | 5b0e8d1f-8fd6-4ebe-977a-602b4a1f9c43 |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
+| `Id` | *string* | :heavy_check_mark: | Attendee ID. | 5b0e8d1f-8fd6-4ebe-977a-602b4a1f9c43 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AttendeeAddBulkItemEventJsonErrorResponse.md b/packages/csharp/docs/Models/Components/AttendeeAddBulkItemEventJsonErrorResponse.md
index 3b094fd6..7a15971e 100644
--- a/packages/csharp/docs/Models/Components/AttendeeAddBulkItemEventJsonErrorResponse.md
+++ b/packages/csharp/docs/Models/Components/AttendeeAddBulkItemEventJsonErrorResponse.md
@@ -11,4 +11,4 @@ Represents an error response for the checkin APIs with additional details of cas
| `Code` | *long* | :heavy_check_mark: | The HTTP status code representing the error. | 400 |
| `Message` | *string* | :heavy_check_mark: | A brief description of the error. | Bad Request |
| `Target` | *string* | :heavy_minus_sign: | The target resource of the error. | example target |
-| `Details` | List<[ZeroAllOf8](../../Models/Components/ZeroAllOf8.md)> | :heavy_minus_sign: | Additional details of cascading error messages. | |
\ No newline at end of file
+| `Details` | List<[ZeroAllOf7](../../Models/Components/ZeroAllOf7.md)> | :heavy_minus_sign: | Additional details of cascading error messages. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AttendeeAddBulkItemJsonData.md b/packages/csharp/docs/Models/Components/AttendeeAddBulkItemJsonData.md
index f8da61b4..ffe77729 100644
--- a/packages/csharp/docs/Models/Components/AttendeeAddBulkItemJsonData.md
+++ b/packages/csharp/docs/Models/Components/AttendeeAddBulkItemJsonData.md
@@ -9,8 +9,8 @@
AttendeeAddBulkItemJsonData.CreateZeroOneOf2(/* values here */);
```
-### ErrorResponse1
+### ErrorResponse2
```csharp
-AttendeeAddBulkItemJsonData.CreateErrorResponse1(/* values here */);
+AttendeeAddBulkItemJsonData.CreateErrorResponse2(/* values here */);
```
diff --git a/packages/csharp/docs/Models/Components/AttendeeContactInfo.md b/packages/csharp/docs/Models/Components/AttendeeContactInfo.md
index 8652e98d..67123c43 100644
--- a/packages/csharp/docs/Models/Components/AttendeeContactInfo.md
+++ b/packages/csharp/docs/Models/Components/AttendeeContactInfo.md
@@ -25,10 +25,10 @@ Information about attendee contact added to an event.
| `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` | [Address11](../../Models/Components/Address11.md) | :heavy_minus_sign: | Address details | |
+| `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` | [Address11](../../Models/Components/Address11.md) | :heavy_minus_sign: | Address details | |
+| `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. | |
diff --git a/packages/csharp/docs/Models/Components/AttendeeContactTypeInput.md b/packages/csharp/docs/Models/Components/AttendeeContactTypeInput.md
new file mode 100644
index 00000000..11eda622
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/AttendeeContactTypeInput.md
@@ -0,0 +1,10 @@
+# AttendeeContactTypeInput
+
+Contains details related to the attendee's contact type.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ----------------------------------------- | ----------------------------------------- | ----------------------------------------- | ----------------------------------------- | ----------------------------------------- |
+| `Id` | *string* | :heavy_minus_sign: | The unique identifier of the contact type | 861B51EC-AA7E-475F-B38D-4C8E35C47D63 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AttendeeContactTypeJson.md b/packages/csharp/docs/Models/Components/AttendeeContactTypeJson.md
deleted file mode 100644
index 8a00a699..00000000
--- a/packages/csharp/docs/Models/Components/AttendeeContactTypeJson.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# AttendeeContactTypeJson
-
-Contains details related to the attendee's contact type.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ----------------------------------------- | ----------------------------------------- | ----------------------------------------- | ----------------------------------------- | ----------------------------------------- |
-| `Id` | *string* | :heavy_minus_sign: | The unique identifier of the contact type | 861B51EC-AA7E-475F-B38D-4C8E35C47D63 |
-| `Name` | *string* | :heavy_minus_sign: | A descriptive name for the contact type | VIP Member |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AttendeeContactTypeJsonInput.md b/packages/csharp/docs/Models/Components/AttendeeContactTypeJsonInput.md
deleted file mode 100644
index 334c56c4..00000000
--- a/packages/csharp/docs/Models/Components/AttendeeContactTypeJsonInput.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# AttendeeContactTypeJsonInput
-
-Contains details related to the attendee's contact type.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ----------------------------------------- | ----------------------------------------- | ----------------------------------------- | ----------------------------------------- | ----------------------------------------- |
-| `Id` | *string* | :heavy_minus_sign: | The unique identifier of the contact type | 861B51EC-AA7E-475F-B38D-4C8E35C47D63 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AttendeeEvent.md b/packages/csharp/docs/Models/Components/AttendeeEvent.md
deleted file mode 100644
index a45aa9d8..00000000
--- a/packages/csharp/docs/Models/Components/AttendeeEvent.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# AttendeeEvent
-
-The attendee's associated event.
-
-
-## Fields
-
-| Field | Type | Required | Description |
-| ------------------ | ------------------ | ------------------ | ------------------ |
-| `Id` | *string* | :heavy_minus_sign: | The event ID. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AttendeeInsights.md b/packages/csharp/docs/Models/Components/AttendeeInsights.md
index a6d157bd..0a22761d 100644
--- a/packages/csharp/docs/Models/Components/AttendeeInsights.md
+++ b/packages/csharp/docs/Models/Components/AttendeeInsights.md
@@ -14,5 +14,5 @@ Attendee insights.
| `Id` | *string* | :heavy_check_mark: | The identifier of the engagement score. | 3f1b949b-2f69-42e2-b205-3780f9a76eaf |
| `Name` | *string* | :heavy_check_mark: | Name of the engagement score. | General Interest |
| `Description` | *string* | :heavy_minus_sign: | Description of the engagement score. | A score to capture engagement for general attendees. |
-| `Event` | [EventJson6](../../Models/Components/EventJson6.md) | :heavy_check_mark: | An event reference used in attendee insights to identify the event context for engagement data | |
+| `Event` | [EventJson5](../../Models/Components/EventJson5.md) | :heavy_check_mark: | An event reference used in attendee insights to identify the event context for engagement data | |
| `Default` | *bool* | :heavy_check_mark: | True indicates this is the default engagement score in the event. | false |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AttendeeLinkBulkResponseItemJsonData.md b/packages/csharp/docs/Models/Components/AttendeeLinkBulkResponseItemJsonData.md
index ba7ec53d..375cb64e 100644
--- a/packages/csharp/docs/Models/Components/AttendeeLinkBulkResponseItemJsonData.md
+++ b/packages/csharp/docs/Models/Components/AttendeeLinkBulkResponseItemJsonData.md
@@ -9,8 +9,8 @@
AttendeeLinkBulkResponseItemJsonData.CreateExistingAttendeeLink(/* values here */);
```
-### ErrorResponse1
+### ErrorResponse2
```csharp
-AttendeeLinkBulkResponseItemJsonData.CreateErrorResponse1(/* values here */);
+AttendeeLinkBulkResponseItemJsonData.CreateErrorResponse2(/* values here */);
```
diff --git a/packages/csharp/docs/Models/Components/AttendeeLookup.md b/packages/csharp/docs/Models/Components/AttendeeLookup.md
deleted file mode 100644
index 0fe91ba6..00000000
--- a/packages/csharp/docs/Models/Components/AttendeeLookup.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# AttendeeLookup
-
-Contains details related to the attendee's admission item.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_minus_sign: | A string that has to be a format matching the industry standard uuid | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `Code` | *string* | :heavy_minus_sign: | Code / Abbreviation of the lookup item. | MU |
-| `Name` | *string* | :heavy_minus_sign: | Name of the lookup item. | Meet up |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AttendeePaginatedResponse.md b/packages/csharp/docs/Models/Components/AttendeePaginatedResponse.md
index d91ed5c9..4b0e031c 100644
--- a/packages/csharp/docs/Models/Components/AttendeePaginatedResponse.md
+++ b/packages/csharp/docs/Models/Components/AttendeePaginatedResponse.md
@@ -8,4 +8,4 @@ The response from a request to get the list of attendees. This includes the pagi
| Field | Type | Required | Description |
| ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- |
| `Paging` | [Paging](../../Models/Components/Paging.md) | :heavy_check_mark: | Represents pagination information for a collection of resources. |
-| `Data` | List<[Attendee1](../../Models/Components/Attendee1.md)> | :heavy_check_mark: | Collection of attendees. |
\ No newline at end of file
+| `Data` | List<[Attendee11](../../Models/Components/Attendee11.md)> | :heavy_check_mark: | Collection of attendees. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Attendees.md b/packages/csharp/docs/Models/Components/Attendees.md
index 6d1ebb8a..f6f8651b 100644
--- a/packages/csharp/docs/Models/Components/Attendees.md
+++ b/packages/csharp/docs/Models/Components/Attendees.md
@@ -9,8 +9,8 @@
Attendees.CreateAttendeeAddResponse(/* values here */);
```
-### ErrorResponse2
+### ErrorResponse1
```csharp
-Attendees.CreateErrorResponse2(/* values here */);
+Attendees.CreateErrorResponse1(/* values here */);
```
diff --git a/packages/csharp/docs/Models/Components/AttendeesPaginatedResponse.md b/packages/csharp/docs/Models/Components/AttendeesPaginatedResponse.md
new file mode 100644
index 00000000..0404f582
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/AttendeesPaginatedResponse.md
@@ -0,0 +1,11 @@
+# AttendeesPaginatedResponse
+
+A paginated response containing a list of attendees who have redeemed a voucher.
+
+
+## Fields
+
+| Field | Type | Required | Description |
+| ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- |
+| `Paging` | [Paging](../../Models/Components/Paging.md) | :heavy_check_mark: | Represents pagination information for a collection of resources. |
+| `Data` | List<[Attendee2](../../Models/Components/Attendee2.md)> | :heavy_check_mark: | Collection of attendees who have redeemed the voucher. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AudienceSegment.md b/packages/csharp/docs/Models/Components/AudienceSegment.md
index 5484966c..bae5d408 100644
--- a/packages/csharp/docs/Models/Components/AudienceSegment.md
+++ b/packages/csharp/docs/Models/Components/AudienceSegment.md
@@ -7,6 +7,6 @@ Represents an audience segment. Audience segments are assigned to events and pro
| Field | Type | Required | Description | Example |
| ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- |
-| `Event` | [EventJson1](../../Models/Components/EventJson1.md) | :heavy_check_mark: | ID of the event. | |
+| `Event` | [EventJson](../../Models/Components/EventJson.md) | :heavy_check_mark: | ID of the event. | |
| `Name` | *string* | :heavy_check_mark: | Name of the audience segment. Must be unique in the event where the segment exists. | VIP Attendees |
| `Description` | *string* | :heavy_minus_sign: | Description of the audience segment. | A group of VIP attendees. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AudienceSegmentCreate.md b/packages/csharp/docs/Models/Components/AudienceSegmentCreate.md
index 026a426c..aa9b3782 100644
--- a/packages/csharp/docs/Models/Components/AudienceSegmentCreate.md
+++ b/packages/csharp/docs/Models/Components/AudienceSegmentCreate.md
@@ -7,7 +7,7 @@ Represents a request to create an audience segment.
| Field | Type | Required | Description | Example |
| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- |
-| `Event` | [EventJson1](../../Models/Components/EventJson1.md) | :heavy_check_mark: | ID of the event. | |
+| `Event` | [EventJson](../../Models/Components/EventJson.md) | :heavy_check_mark: | ID of the event. | |
| `Name` | *string* | :heavy_check_mark: | Name of the audience segment. Must be unique in the event where the segment exists. | VIP Attendees |
| `Description` | *string* | :heavy_minus_sign: | Description of the audience segment. | A group of VIP attendees. |
| `CreationType` | [AudienceSegmentCreationTypeJson](../../Models/Components/AudienceSegmentCreationTypeJson.md) | :heavy_minus_sign: | Creation type of the audience segment. | MANUAL |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AudienceSegmentResponse.md b/packages/csharp/docs/Models/Components/AudienceSegmentResponse.md
index ad35a4b9..114f3e26 100644
--- a/packages/csharp/docs/Models/Components/AudienceSegmentResponse.md
+++ b/packages/csharp/docs/Models/Components/AudienceSegmentResponse.md
@@ -11,7 +11,7 @@ Details of an audience segment.
| `CreatedBy` | *string* | :heavy_minus_sign: | The identifier of the user that created this record. | hporter |
| `LastModified` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when this record was updated. | 2019-02-12T03:00:00Z |
| `LastModifiedBy` | *string* | :heavy_minus_sign: | The identifier of the user that last updated this record. | hporter |
-| `Event` | [EventJson1](../../Models/Components/EventJson1.md) | :heavy_check_mark: | ID of the event. | |
+| `Event` | [EventJson](../../Models/Components/EventJson.md) | :heavy_check_mark: | ID of the event. | |
| `Name` | *string* | :heavy_check_mark: | Name of the audience segment. Must be unique in the event where the segment exists. | VIP Attendees |
| `Description` | *string* | :heavy_minus_sign: | Description of the audience segment. | A group of VIP attendees. |
| `Id` | *string* | :heavy_minus_sign: | ID of the audience segment. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
diff --git a/packages/csharp/docs/Models/Components/AudioTrackStatus.md b/packages/csharp/docs/Models/Components/AudioTrackStatus.md
new file mode 100644
index 00000000..7119a69c
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/AudioTrackStatus.md
@@ -0,0 +1,25 @@
+# AudioTrackStatus
+
+Denotes the status of an audio track. Started indicates the request to upload in the API was submitted, and the URL you'll upload an audio track to was returned. Uploaded indicates that the upload was completed. Scanning indicates a virus scan is happening in a quarantine location; Scanned indicates a successful virus scan. Syncing indicates a complete virus scan, and now transcoding has begun. Rejected indicates a failed virus scan. Error indicates there was a problem processing the audio track. Available indicates the audio track is available for use.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = AudioTrackStatus.Started;
+```
+
+
+## Values
+
+| Name | Value |
+| ----------- | ----------- |
+| `Started` | Started |
+| `Uploaded` | Uploaded |
+| `Scanning` | Scanning |
+| `Scanned` | Scanned |
+| `Syncing` | Syncing |
+| `Rejected` | Rejected |
+| `Error` | Error |
+| `Available` | Available |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AudioTrackStatusJson.md b/packages/csharp/docs/Models/Components/AudioTrackStatusJson.md
deleted file mode 100644
index 77c53a2d..00000000
--- a/packages/csharp/docs/Models/Components/AudioTrackStatusJson.md
+++ /dev/null
@@ -1,25 +0,0 @@
-# AudioTrackStatusJson
-
-Denotes the status of an audio track. Started indicates the request to upload in the API was submitted, and the URL you'll upload an audio track to was returned. Uploaded indicates that the upload was completed. Scanning indicates a virus scan is happening in a quarantine location; Scanned indicates a successful virus scan. Syncing indicates a complete virus scan, and now transcoding has begun. Rejected indicates a failed virus scan. Error indicates there was a problem processing the audio track. Available indicates the audio track is available for use.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = AudioTrackStatusJson.Started;
-```
-
-
-## Values
-
-| Name | Value |
-| ----------- | ----------- |
-| `Started` | Started |
-| `Uploaded` | Uploaded |
-| `Scanning` | Scanning |
-| `Scanned` | Scanned |
-| `Syncing` | Syncing |
-| `Rejected` | Rejected |
-| `Error` | Error |
-| `Available` | Available |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AudioTrackType.md b/packages/csharp/docs/Models/Components/AudioTrackType.md
new file mode 100644
index 00000000..fb245745
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/AudioTrackType.md
@@ -0,0 +1,27 @@
+# AudioTrackType
+
+Denotes the file format of the audio track.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = AudioTrackType.Asf;
+```
+
+
+## Values
+
+| Name | Value |
+| ----- | ----- |
+| `Asf` | asf |
+| `Wma` | wma |
+| `Wmv` | wmv |
+| `Mp3` | mp3 |
+| `Ts` | ts |
+| `Mp4` | mp4 |
+| `Mka` | mka |
+| `Oga` | oga |
+| `Mov` | mov |
+| `Wav` | wav |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AudioTrackTypeJson.md b/packages/csharp/docs/Models/Components/AudioTrackTypeJson.md
deleted file mode 100644
index 291da6c0..00000000
--- a/packages/csharp/docs/Models/Components/AudioTrackTypeJson.md
+++ /dev/null
@@ -1,27 +0,0 @@
-# AudioTrackTypeJson
-
-Denotes the file format of the audio track.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = AudioTrackTypeJson.Asf;
-```
-
-
-## Values
-
-| Name | Value |
-| ----- | ----- |
-| `Asf` | asf |
-| `Wma` | wma |
-| `Wmv` | wmv |
-| `Mp3` | mp3 |
-| `Ts` | ts |
-| `Mp4` | mp4 |
-| `Mka` | mka |
-| `Oga` | oga |
-| `Mov` | mov |
-| `Wav` | wav |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AudioTrackVariant.md b/packages/csharp/docs/Models/Components/AudioTrackVariant.md
new file mode 100644
index 00000000..560271ce
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/AudioTrackVariant.md
@@ -0,0 +1,22 @@
+# AudioTrackVariant
+
+Denotes the variant of an audio track. Main is the primary audio track for this video. Alternate is a possible alternative to the main track. Commentary is a commentary on the primary audio or video track, e.g. a director's commentary. Dub is a translated version of the main audio track. Descriptive is an audio description of a video track.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = AudioTrackVariant.Main;
+```
+
+
+## Values
+
+| Name | Value |
+| ------------- | ------------- |
+| `Main` | Main |
+| `Alternate` | Alternate |
+| `Commentary` | Commentary |
+| `Dub` | Dub |
+| `Descriptive` | Descriptive |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AudioTrackVariantJson.md b/packages/csharp/docs/Models/Components/AudioTrackVariantJson.md
deleted file mode 100644
index 955a1129..00000000
--- a/packages/csharp/docs/Models/Components/AudioTrackVariantJson.md
+++ /dev/null
@@ -1,22 +0,0 @@
-# AudioTrackVariantJson
-
-Denotes the variant of an audio track. Main is the primary audio track for this video. Alternate is a possible alternative to the main track. Commentary is a commentary on the primary audio or video track, e.g. a director's commentary. Dub is a translated version of the main audio track. Descriptive is an audio description of a video track.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = AudioTrackVariantJson.Main;
-```
-
-
-## Values
-
-| Name | Value |
-| ------------- | ------------- |
-| `Main` | Main |
-| `Alternate` | Alternate |
-| `Commentary` | Commentary |
-| `Dub` | Dub |
-| `Descriptive` | Descriptive |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Badge.md b/packages/csharp/docs/Models/Components/Badge.md
index da573dbe..6bee85fe 100644
--- a/packages/csharp/docs/Models/Components/Badge.md
+++ b/packages/csharp/docs/Models/Components/Badge.md
@@ -14,5 +14,5 @@ A JSON Schema for Badge object.
| `Id` | *string* | :heavy_check_mark: | Id of a badge | abc123 |
| `Status` | [BadgeStatus](../../Models/Components/BadgeStatus.md) | :heavy_check_mark: | Badge status | Active |
| `Type` | [BadgeType](../../Models/Components/BadgeType.md) | :heavy_check_mark: | Badge type | Epc |
-| `Attendee` | [Attendee11](../../Models/Components/Attendee11.md) | :heavy_check_mark: | The associated Attendee. | |
-| `Event` | [Event21](../../Models/Components/Event21.md) | :heavy_check_mark: | The Associated Event. | |
\ No newline at end of file
+| `Attendee` | [Attendee12](../../Models/Components/Attendee12.md) | :heavy_check_mark: | The associated Attendee. | |
+| `Event` | [Event3](../../Models/Components/Event3.md) | :heavy_check_mark: | The Associated Event. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/BadgeInput.md b/packages/csharp/docs/Models/Components/BadgeInput.md
index b8a88e9f..5d59bb43 100644
--- a/packages/csharp/docs/Models/Components/BadgeInput.md
+++ b/packages/csharp/docs/Models/Components/BadgeInput.md
@@ -10,5 +10,5 @@ A JSON Schema for Badge object.
| `Id` | *string* | :heavy_check_mark: | Id of a badge | abc123 |
| `Status` | [BadgeStatus](../../Models/Components/BadgeStatus.md) | :heavy_check_mark: | Badge status | Active |
| `Type` | [BadgeType](../../Models/Components/BadgeType.md) | :heavy_check_mark: | Badge type | Epc |
-| `Attendee` | [Attendee11](../../Models/Components/Attendee11.md) | :heavy_check_mark: | The associated Attendee. | |
-| `Event` | [Event21](../../Models/Components/Event21.md) | :heavy_check_mark: | The Associated Event. | |
\ No newline at end of file
+| `Attendee` | [Attendee12](../../Models/Components/Attendee12.md) | :heavy_check_mark: | The associated Attendee. | |
+| `Event` | [Event3](../../Models/Components/Event3.md) | :heavy_check_mark: | The Associated Event. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/BidItemStatusType.md b/packages/csharp/docs/Models/Components/BidItemStatusType.md
new file mode 100644
index 00000000..f52fcd72
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/BidItemStatusType.md
@@ -0,0 +1,21 @@
+# BidItemStatusType
+
+The status of the item in negotiation. e.g. The corporation might mark an item as delete_requested, and the hotel, if they agree, can update the item to deleted.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = BidItemStatusType.Requested;
+```
+
+
+## Values
+
+| Name | Value |
+| ----------------- | ----------------- |
+| `Requested` | requested |
+| `DeleteRequested` | delete_requested |
+| `Deleted` | deleted |
+| `NotAvailable` | not_available |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/BidItemStatusTypeJson.md b/packages/csharp/docs/Models/Components/BidItemStatusTypeJson.md
deleted file mode 100644
index 7f60ea97..00000000
--- a/packages/csharp/docs/Models/Components/BidItemStatusTypeJson.md
+++ /dev/null
@@ -1,21 +0,0 @@
-# BidItemStatusTypeJson
-
-The status of the item in negotiation. e.g. The corporation might mark an item as delete_requested, and the hotel, if they agree, can update the item to deleted.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = BidItemStatusTypeJson.Requested;
-```
-
-
-## Values
-
-| Name | Value |
-| ----------------- | ----------------- |
-| `Requested` | requested |
-| `DeleteRequested` | delete_requested |
-| `Deleted` | deleted |
-| `NotAvailable` | not_available |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/BidStatusType.md b/packages/csharp/docs/Models/Components/BidStatusType.md
new file mode 100644
index 00000000..3049a748
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/BidStatusType.md
@@ -0,0 +1,20 @@
+# BidStatusType
+
+Bid stay type.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = BidStatusType.InProgress;
+```
+
+
+## Values
+
+| Name | Value |
+| ------------ | ------------ |
+| `InProgress` | in_progress |
+| `Attached` | attached |
+| `Deleted` | deleted |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/BidStatusTypeJson.md b/packages/csharp/docs/Models/Components/BidStatusTypeJson.md
deleted file mode 100644
index 16f48399..00000000
--- a/packages/csharp/docs/Models/Components/BidStatusTypeJson.md
+++ /dev/null
@@ -1,20 +0,0 @@
-# BidStatusTypeJson
-
-Bid stay type.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = BidStatusTypeJson.InProgress;
-```
-
-
-## Values
-
-| Name | Value |
-| ------------ | ------------ |
-| `InProgress` | in_progress |
-| `Attached` | attached |
-| `Deleted` | deleted |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/BidStayType.md b/packages/csharp/docs/Models/Components/BidStayType.md
new file mode 100644
index 00000000..482f5487
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/BidStayType.md
@@ -0,0 +1,19 @@
+# BidStayType
+
+Bid stay type.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = BidStayType.Daily;
+```
+
+
+## Values
+
+| Name | Value |
+| ---------- | ---------- |
+| `Daily` | daily |
+| `Extended` | extended |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/BidStayTypeJson.md b/packages/csharp/docs/Models/Components/BidStayTypeJson.md
deleted file mode 100644
index 07a8097e..00000000
--- a/packages/csharp/docs/Models/Components/BidStayTypeJson.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# BidStayTypeJson
-
-Bid stay type.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = BidStayTypeJson.Daily;
-```
-
-
-## Values
-
-| Name | Value |
-| ---------- | ---------- |
-| `Daily` | daily |
-| `Extended` | extended |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/BillingDetails1.md b/packages/csharp/docs/Models/Components/BillingDetails1.md
new file mode 100644
index 00000000..76a7689c
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/BillingDetails1.md
@@ -0,0 +1,14 @@
+# BillingDetails1
+
+Billing details for RFP.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `AdditionalInformation` | *string* | :heavy_minus_sign: | Information regarding billing. | Guest rooms will be a mix of IPO and RM&TX to master. Will submit rooming list with billing specified. Credit card will be provided as guarantee. |
+| `ConcessionsContractualInfo` | *string* | :heavy_minus_sign: | Concessions and contractual information. | Request use of LOI or Express Agreement. |
+| `RebateType` | [RebateType](../../Models/Components/RebateType.md) | :heavy_minus_sign: | Rebate type for specifying the rebate value on citywide RFPs. If rebateType is `BY_AMOUNT`, the rebate value will be in decimal format. If rebateType is `BY_PERCENTAGE`, the rebate value will represent a percentage. | |
+| `AcceptingRebatesAndIncentives` | *bool* | :heavy_minus_sign: | True indicates that rebates and incentives are accepted, applicable only for citywide RFPs. | |
+| `RebateValue` | *double* | :heavy_minus_sign: | The value of the rebate. The impact of this value on the price is determined by `RebateType`. | 10 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/BillingDetailsJson0.md b/packages/csharp/docs/Models/Components/BillingDetailsJson0.md
deleted file mode 100644
index e2504e87..00000000
--- a/packages/csharp/docs/Models/Components/BillingDetailsJson0.md
+++ /dev/null
@@ -1,14 +0,0 @@
-# BillingDetailsJson0
-
-Billing details for RFP.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `AdditionalInformation` | *string* | :heavy_minus_sign: | Information regarding billing. | Guest rooms will be a mix of IPO and RM&TX to master. Will submit rooming list with billing specified. Credit card will be provided as guarantee. |
-| `ConcessionsContractualInfo` | *string* | :heavy_minus_sign: | Concessions and contractual information. | Request use of LOI or Express Agreement. |
-| `RebateType` | [RebateTypeJson](../../Models/Components/RebateTypeJson.md) | :heavy_minus_sign: | Rebate type for specifying the rebate value on citywide RFPs. If rebateType is `BY_AMOUNT`, the rebate value will be in decimal format. If rebateType is `BY_PERCENTAGE`, the rebate value will represent a percentage. | |
-| `AcceptingRebatesAndIncentives` | *bool* | :heavy_minus_sign: | True indicates that rebates and incentives are accepted, applicable only for citywide RFPs. | |
-| `RebateValue` | *double* | :heavy_minus_sign: | The value of the rebate. The impact of this value on the price is determined by `RebateType`. | 10 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/BoothStaffRequest.md b/packages/csharp/docs/Models/Components/BoothStaffRequest.md
index 0a33d886..bc3be88e 100644
--- a/packages/csharp/docs/Models/Components/BoothStaffRequest.md
+++ b/packages/csharp/docs/Models/Components/BoothStaffRequest.md
@@ -7,6 +7,6 @@ A JSON schema representing booth staff.
| Field | Type | Required | Description |
| ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- |
-| `Attendee` | [Attendee11](../../Models/Components/Attendee11.md) | :heavy_check_mark: | The associated Attendee. |
-| `Event` | [Event21](../../Models/Components/Event21.md) | :heavy_check_mark: | The Associated Event. |
+| `Attendee` | [Attendee12](../../Models/Components/Attendee12.md) | :heavy_check_mark: | The associated Attendee. |
+| `Event` | [Event3](../../Models/Components/Event3.md) | :heavy_check_mark: | The Associated Event. |
| `Exhibitor` | [Models.Components.Exhibitor](../../Models/Components/Exhibitor.md) | :heavy_check_mark: | The Associated Exhibitor. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/BoothStaffResponse.md b/packages/csharp/docs/Models/Components/BoothStaffResponse.md
index d20556a8..3b5fe351 100644
--- a/packages/csharp/docs/Models/Components/BoothStaffResponse.md
+++ b/packages/csharp/docs/Models/Components/BoothStaffResponse.md
@@ -11,7 +11,7 @@ Booth staff with an associated ID.
| `CreatedBy` | *string* | :heavy_minus_sign: | The identifier of the user that created this record. | hporter |
| `LastModified` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when this record was updated. | 2019-02-12T03:00:00Z |
| `LastModifiedBy` | *string* | :heavy_minus_sign: | The identifier of the user that last updated this record. | hporter |
-| `Attendee` | [Attendee11](../../Models/Components/Attendee11.md) | :heavy_check_mark: | The associated Attendee. | |
-| `Event` | [Event21](../../Models/Components/Event21.md) | :heavy_check_mark: | The Associated Event. | |
+| `Attendee` | [Attendee12](../../Models/Components/Attendee12.md) | :heavy_check_mark: | The associated Attendee. | |
+| `Event` | [Event3](../../Models/Components/Event3.md) | :heavy_check_mark: | The Associated Event. | |
| `Exhibitor` | [Models.Components.Exhibitor](../../Models/Components/Exhibitor.md) | :heavy_check_mark: | The Associated Exhibitor. | |
| `Id` | *string* | :heavy_minus_sign: | ID of an exhibitor booth staff member. | 4e0f5152-515e-11ee-be56-0242ac120002 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/BounceDetailsJson.md b/packages/csharp/docs/Models/Components/BounceDetailsJson.md
index 36f17fd0..a0750e5d 100644
--- a/packages/csharp/docs/Models/Components/BounceDetailsJson.md
+++ b/packages/csharp/docs/Models/Components/BounceDetailsJson.md
@@ -16,6 +16,6 @@ Email bounce details.
| `Subject` | *string* | :heavy_minus_sign: | Subject of email. | Invitation to the event |
| `ProductLine` | [ProductLineJson](../../Models/Components/ProductLineJson.md) | :heavy_minus_sign: | Cvent product lines or additional features. | EVENT |
| `ProductId` | *string* | :heavy_minus_sign: | Unique ID of the product. | 2A941E55-3367-4C50-B21B-B6A7613DFB23 |
-| `EmailType` | [EmailTypeJson3](../../Models/Components/EmailTypeJson3.md) | :heavy_minus_sign: | Denotes the type of the email. | Invitation |
+| `EmailType` | [EmailTypeJson1](../../Models/Components/EmailTypeJson1.md) | :heavy_minus_sign: | Denotes the type of the email. | Invitation |
| `EmailId` | *string* | :heavy_minus_sign: | Unique ID of the email. | 2A941E55-3367-4C50-B21B-B6A7613DFB23 |
| `Created` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 formatted date time (in UTC) when the email was sent. | 2023-01-01T02:00:00Z |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/BounceDetailsResponse.md b/packages/csharp/docs/Models/Components/BounceDetailsResponse.md
index 3c478163..214cc423 100644
--- a/packages/csharp/docs/Models/Components/BounceDetailsResponse.md
+++ b/packages/csharp/docs/Models/Components/BounceDetailsResponse.md
@@ -5,7 +5,7 @@ The response from a request to get the bounce details of an email. This includes
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- |
-| `Paging` | [PagingNoTotalCountJson2](../../Models/Components/PagingNoTotalCountJson2.md) | :heavy_check_mark: | Represents pagination information for a collection of resources. |
-| `Data` | List<[BounceDetailsJson](../../Models/Components/BounceDetailsJson.md)> | :heavy_check_mark: | Bounce details. |
\ No newline at end of file
+| Field | Type | Required | Description |
+| --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- |
+| `Paging` | [PagingNoTotalCountJson](../../Models/Components/PagingNoTotalCountJson.md) | :heavy_check_mark: | Represents pagination information for a collection of resources. |
+| `Data` | List<[BounceDetailsJson](../../Models/Components/BounceDetailsJson.md)> | :heavy_check_mark: | Bounce details. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Brand.md b/packages/csharp/docs/Models/Components/Brand.md
index 0663ecb8..12d27198 100644
--- a/packages/csharp/docs/Models/Components/Brand.md
+++ b/packages/csharp/docs/Models/Components/Brand.md
@@ -13,5 +13,5 @@ Brand details.
| `LastModifiedBy` | *string* | :heavy_minus_sign: | The identifier of the user that last updated this record. | hporter |
| `Id` | *string* | :heavy_minus_sign: | The ID of the travel supplier brand. | NorthernHotels |
| `Name` | *string* | :heavy_minus_sign: | The name of the travel supplier brand. | Northern Hotel Group |
-| `Address` | [AddressJson3](../../Models/Components/AddressJson3.md) | :heavy_minus_sign: | A physical address. | |
+| `Address` | [AddressJson1](../../Models/Components/AddressJson1.md) | :heavy_minus_sign: | A physical address. | |
| `Deleted` | *bool* | :heavy_minus_sign: | True indicates the brand is deleted. | false |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/BrideGroomType.md b/packages/csharp/docs/Models/Components/BrideGroomType.md
new file mode 100644
index 00000000..bcac2ea3
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/BrideGroomType.md
@@ -0,0 +1,19 @@
+# BrideGroomType
+
+BrideGroomType
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = BrideGroomType.Bride;
+```
+
+
+## Values
+
+| Name | Value |
+| ------- | ------- |
+| `Bride` | BRIDE |
+| `Groom` | GROOM |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/BrideGroomTypeJson0.md b/packages/csharp/docs/Models/Components/BrideGroomTypeJson0.md
deleted file mode 100644
index 825424c5..00000000
--- a/packages/csharp/docs/Models/Components/BrideGroomTypeJson0.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# BrideGroomTypeJson0
-
-Bride groom type.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = BrideGroomTypeJson0.Bride;
-```
-
-
-## Values
-
-| Name | Value |
-| ------- | ------- |
-| `Bride` | BRIDE |
-| `Groom` | GROOM |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/BusinessType.md b/packages/csharp/docs/Models/Components/BusinessType.md
new file mode 100644
index 00000000..d07daa7c
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/BusinessType.md
@@ -0,0 +1,19 @@
+# BusinessType
+
+Business type.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = BusinessType.Corporate;
+```
+
+
+## Values
+
+| Name | Value |
+| ----------- | ----------- |
+| `Corporate` | corporate |
+| `Leisure` | leisure |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/BusinessTypeJson.md b/packages/csharp/docs/Models/Components/BusinessTypeJson.md
deleted file mode 100644
index ded27309..00000000
--- a/packages/csharp/docs/Models/Components/BusinessTypeJson.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# BusinessTypeJson
-
-Business type.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = BusinessTypeJson.Corporate;
-```
-
-
-## Values
-
-| Name | Value |
-| ----------- | ----------- |
-| `Corporate` | corporate |
-| `Leisure` | leisure |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/CancellationDetails.md b/packages/csharp/docs/Models/Components/CancellationDetails.md
new file mode 100644
index 00000000..9f9d2ce6
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/CancellationDetails.md
@@ -0,0 +1,12 @@
+# CancellationDetails
+
+Information about cancellation of RFP.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
+| `DateTime` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 date time (in UTC) when RFP was cancelled. | 2021-01-13T14:06:20.080Z |
+| `Reason` | [CancelledReason1](../../Models/Components/CancelledReason1.md) | :heavy_minus_sign: | Reason for cancelling the RFP. | |
+| `Comments` | *string* | :heavy_minus_sign: | Additional comments while cancelling the RFP. | I am cancelling my event, postponing to Q4. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/CancellationDetailsJson.md b/packages/csharp/docs/Models/Components/CancellationDetailsJson.md
deleted file mode 100644
index 50d424c7..00000000
--- a/packages/csharp/docs/Models/Components/CancellationDetailsJson.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# CancellationDetailsJson
-
-Information about cancellation of RFP.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
-| `DateTime` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 date time (in UTC) when RFP was cancelled. | 2021-01-13T14:06:20.080Z |
-| `Reason` | [CancelledReasonJson0](../../Models/Components/CancelledReasonJson0.md) | :heavy_minus_sign: | Reason for cancelling the RFP. | |
-| `Comments` | *string* | :heavy_minus_sign: | Additional comments while cancelling the RFP. | I am cancelling my event, postponing to Q4. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/CancelledReason1.md b/packages/csharp/docs/Models/Components/CancelledReason1.md
new file mode 100644
index 00000000..a8cad66d
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/CancelledReason1.md
@@ -0,0 +1,27 @@
+# CancelledReason1
+
+Reason for cancelling the RFP.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = CancelledReason1.BookedAnotherVenueOrDestination;
+```
+
+
+## Values
+
+| Name | Value |
+| ----------------------------------- | ----------------------------------- |
+| `BookedAnotherVenueOrDestination` | BOOKED_ANOTHER_VENUE_OR_DESTINATION |
+| `ClientBookedDirectly` | CLIENT_BOOKED_DIRECTLY |
+| `EpidemicOrPandemic` | EPIDEMIC_OR_PANDEMIC |
+| `EventCancelled` | EVENT_CANCELLED |
+| `EventPostponed` | EVENT_POSTPONED |
+| `MedicalEmergency` | MEDICAL_EMERGENCY |
+| `NaturalDisaster` | NATURAL_DISASTER |
+| `Other` | OTHER |
+| `PoliticalOrCivilUnrest` | POLITICAL_OR_CIVIL_UNREST |
+| `RequirementsChanged` | REQUIREMENTS_CHANGED |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/CancelledReasonJson0.md b/packages/csharp/docs/Models/Components/CancelledReasonJson0.md
deleted file mode 100644
index 198c4dc8..00000000
--- a/packages/csharp/docs/Models/Components/CancelledReasonJson0.md
+++ /dev/null
@@ -1,27 +0,0 @@
-# CancelledReasonJson0
-
-Reason for cancelling the RFP.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = CancelledReasonJson0.BookedAnotherVenueOrDestination;
-```
-
-
-## Values
-
-| Name | Value |
-| ----------------------------------- | ----------------------------------- |
-| `BookedAnotherVenueOrDestination` | BOOKED_ANOTHER_VENUE_OR_DESTINATION |
-| `ClientBookedDirectly` | CLIENT_BOOKED_DIRECTLY |
-| `EpidemicOrPandemic` | EPIDEMIC_OR_PANDEMIC |
-| `EventCancelled` | EVENT_CANCELLED |
-| `EventPostponed` | EVENT_POSTPONED |
-| `MedicalEmergency` | MEDICAL_EMERGENCY |
-| `NaturalDisaster` | NATURAL_DISASTER |
-| `Other` | OTHER |
-| `PoliticalOrCivilUnrest` | POLITICAL_OR_CIVIL_UNREST |
-| `RequirementsChanged` | REQUIREMENTS_CHANGED |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Category.md b/packages/csharp/docs/Models/Components/Category.md
new file mode 100644
index 00000000..4ad361cb
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Category.md
@@ -0,0 +1,13 @@
+# Category
+
+A question category.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
+| `Id` | *string* | :heavy_minus_sign: | Text field ID. | |
+| `Text` | *string* | :heavy_minus_sign: | Text value of the field. Displays to users in the UI. | Are you spending any significant time offsite and need transportation? |
+| `ShortText` | *string* | :heavy_minus_sign: | Concise version or abbreviation of the question text. Set by the planner to simplify presentation of the question in reports. | Needs offsite transportation? |
+| `Required` | *bool* | :heavy_minus_sign: | True indicates the category is mandatory for answer. | true |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/CategoryIdNameJson.md b/packages/csharp/docs/Models/Components/CategoryIdNameJson.md
deleted file mode 100644
index 93d9818d..00000000
--- a/packages/csharp/docs/Models/Components/CategoryIdNameJson.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# CategoryIdNameJson
-
-A defined speaker category.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_check_mark: | A string that has to be a format matching the industry standard uuid | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `Name` | *string* | :heavy_minus_sign: | The name of the speaker category | Presenters |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/CategoryItemsCostJson.md b/packages/csharp/docs/Models/Components/CategoryItemsCostJson.md
index 42994b72..0c4f4306 100644
--- a/packages/csharp/docs/Models/Components/CategoryItemsCostJson.md
+++ b/packages/csharp/docs/Models/Components/CategoryItemsCostJson.md
@@ -7,8 +7,8 @@ Category items cost. DEPRECATED - This field is deprecated. Only applied to prop
## Fields
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- |
-| `Notes` | *string* | :heavy_minus_sign: | Notes on category items cost from the venue. | We are offering a discount on projectors. |
-| `TotalCost` | *double* | :heavy_minus_sign: | Total cost across all categories. | 10000.99 |
-| `Categories` | List<[CategoryJson1](../../Models/Components/CategoryJson1.md)> | :heavy_minus_sign: | List of categories. | |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- |
+| `Notes` | *string* | :heavy_minus_sign: | Notes on category items cost from the venue. | We are offering a discount on projectors. |
+| `TotalCost` | *double* | :heavy_minus_sign: | Total cost across all categories. | 10000.99 |
+| `Categories` | List<[CategoryJson](../../Models/Components/CategoryJson.md)> | :heavy_minus_sign: | List of categories. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/CategoryJson.md b/packages/csharp/docs/Models/Components/CategoryJson.md
index e38373e6..f0e306a9 100644
--- a/packages/csharp/docs/Models/Components/CategoryJson.md
+++ b/packages/csharp/docs/Models/Components/CategoryJson.md
@@ -1,13 +1,13 @@
# CategoryJson
-A question category.
+A category of items.
## Fields
-| Field | Type | Required | Description | Example |
-| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_minus_sign: | Text field ID. | |
-| `Text` | *string* | :heavy_minus_sign: | Text value of the field. Displays to users in the UI. | Are you spending any significant time offsite and need transportation? |
-| `ShortText` | *string* | :heavy_minus_sign: | Concise version or abbreviation of the question text. Set by the planner to simplify presentation of the question in reports. | Needs offsite transportation? |
-| `Required` | *bool* | :heavy_minus_sign: | True indicates the category is mandatory for answer. | true |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- |
+| `Type` | *string* | :heavy_minus_sign: | The category type. | AVProduction |
+| `Name` | *string* | :heavy_minus_sign: | The name of the category. | Audio Video Production |
+| `TotalCost` | *double* | :heavy_minus_sign: | Total cost for all items within this category. | 10000.99 |
+| `Items` | List<[ItemJson](../../Models/Components/ItemJson.md)> | :heavy_minus_sign: | List of items in this category. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/CategoryJson1.md b/packages/csharp/docs/Models/Components/CategoryJson1.md
index bee5b0b8..e3233d80 100644
--- a/packages/csharp/docs/Models/Components/CategoryJson1.md
+++ b/packages/csharp/docs/Models/Components/CategoryJson1.md
@@ -1,13 +1,13 @@
# CategoryJson1
-A category of items.
+A survey category.
## Fields
-| Field | Type | Required | Description | Example |
-| ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- |
-| `Type` | *string* | :heavy_minus_sign: | The category type. | AVProduction |
-| `Name` | *string* | :heavy_minus_sign: | The name of the category. | Audio Video Production |
-| `TotalCost` | *double* | :heavy_minus_sign: | Total cost for all items within this category. | 10000.99 |
-| `Items` | List<[ItemJson](../../Models/Components/ItemJson.md)> | :heavy_minus_sign: | List of items in this category. | |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- |
+| `Id` | *string* | :heavy_minus_sign: | Text field ID. | |
+| `Text` | *string* | :heavy_minus_sign: | text Value of the Field | Field value |
+| `ShortText` | *string* | :heavy_minus_sign: | Reporting value of the Category, Its like a custom abbreviation | Category 1 Reporting value |
+| `Required` | *bool* | :heavy_minus_sign: | is the category mandatory for answer | true |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/CategoryJson2.md b/packages/csharp/docs/Models/Components/CategoryJson2.md
deleted file mode 100644
index d208b08a..00000000
--- a/packages/csharp/docs/Models/Components/CategoryJson2.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# CategoryJson2
-
-A survey category.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- |
-| `Id` | *string* | :heavy_minus_sign: | Text field ID. | |
-| `Text` | *string* | :heavy_minus_sign: | text Value of the Field | Field value |
-| `ShortText` | *string* | :heavy_minus_sign: | Reporting value of the Category, Its like a custom abbreviation | Category 1 Reporting value |
-| `Required` | *bool* | :heavy_minus_sign: | is the category mandatory for answer | true |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Chain.md b/packages/csharp/docs/Models/Components/Chain.md
index 598ef818..40b041f3 100644
--- a/packages/csharp/docs/Models/Components/Chain.md
+++ b/packages/csharp/docs/Models/Components/Chain.md
@@ -15,5 +15,5 @@ Chain details.
| `Name` | *string* | :heavy_minus_sign: | The name of the travel supplier chain. | Northern Hotels |
| `Code` | *string* | :heavy_minus_sign: | The code identifying the travel supplier chain. | NH |
| `Brand` | [ChainBrand](../../Models/Components/ChainBrand.md) | :heavy_minus_sign: | The brand that the chain belongs to. | |
-| `Address` | [AddressJson3](../../Models/Components/AddressJson3.md) | :heavy_minus_sign: | A physical address. | |
+| `Address` | [AddressJson1](../../Models/Components/AddressJson1.md) | :heavy_minus_sign: | A physical address. | |
| `Deleted` | *bool* | :heavy_minus_sign: | True indicates the chain is deleted. | false |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Choice.md b/packages/csharp/docs/Models/Components/Choice.md
index e94ac7cc..2d66f9d2 100644
--- a/packages/csharp/docs/Models/Components/Choice.md
+++ b/packages/csharp/docs/Models/Components/Choice.md
@@ -1,12 +1,13 @@
# Choice
-A schema representing a choice object
+A question choice.
## Fields
-| Field | Type | Required | Description | Example |
-| -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- |
-| `Id` | *string* | :heavy_minus_sign: | Unique identifier for the choice | |
-| `Text` | *string* | :heavy_minus_sign: | Text value of the field | Choice 1 |
-| `Label` | *string* | :heavy_minus_sign: | Label of choice | Choice A |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
+| `Id` | *string* | :heavy_minus_sign: | Text field ID. | |
+| `Text` | *string* | :heavy_minus_sign: | Text value of the field. Displays to users in the UI. | Are you spending any significant time offsite and need transportation? |
+| `ShortText` | *string* | :heavy_minus_sign: | Concise version or abbreviation of the question text. Set by the planner to simplify presentation of the question in reports. | Needs offsite transportation? |
+| `Label` | *string* | :heavy_minus_sign: | Label of choice. | Choice A |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Choice1.md b/packages/csharp/docs/Models/Components/Choice1.md
new file mode 100644
index 00000000..877eea84
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Choice1.md
@@ -0,0 +1,12 @@
+# Choice1
+
+A schema representing a choice object
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- |
+| `Id` | *string* | :heavy_minus_sign: | Unique identifier for the choice | |
+| `Text` | *string* | :heavy_minus_sign: | Text value of the field | Choice 1 |
+| `Label` | *string* | :heavy_minus_sign: | Label of choice | Choice A |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ChoiceJson.md b/packages/csharp/docs/Models/Components/ChoiceJson.md
deleted file mode 100644
index de9aa8bf..00000000
--- a/packages/csharp/docs/Models/Components/ChoiceJson.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# ChoiceJson
-
-A question choice.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_minus_sign: | Text field ID. | |
-| `Text` | *string* | :heavy_minus_sign: | Text value of the field. Displays to users in the UI. | Are you spending any significant time offsite and need transportation? |
-| `ShortText` | *string* | :heavy_minus_sign: | Concise version or abbreviation of the question text. Set by the planner to simplify presentation of the question in reports. | Needs offsite transportation? |
-| `Label` | *string* | :heavy_minus_sign: | Label of choice. | Choice A |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ChoiceJson1.md b/packages/csharp/docs/Models/Components/ChoiceJson1.md
new file mode 100644
index 00000000..ba7ef5a0
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ChoiceJson1.md
@@ -0,0 +1,13 @@
+# ChoiceJson1
+
+A survey choice.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- |
+| `Id` | *string* | :heavy_minus_sign: | Text field ID. | |
+| `Text` | *string* | :heavy_minus_sign: | text Value of the Field | Field value |
+| `ShortText` | *string* | :heavy_minus_sign: | Reporting value of the Category, Its like a custom abbreviation | Category 1 Reporting value |
+| `Label` | *string* | :heavy_minus_sign: | Label of choice | Choice A |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ChoiceJson2.md b/packages/csharp/docs/Models/Components/ChoiceJson2.md
index 122d169f..3f7a655e 100644
--- a/packages/csharp/docs/Models/Components/ChoiceJson2.md
+++ b/packages/csharp/docs/Models/Components/ChoiceJson2.md
@@ -1,13 +1,11 @@
# ChoiceJson2
-A survey choice.
+This is used to denote the choice of custom field.
## Fields
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- |
-| `Id` | *string* | :heavy_minus_sign: | Text field ID. | |
-| `Text` | *string* | :heavy_minus_sign: | text Value of the Field | Field value |
-| `ShortText` | *string* | :heavy_minus_sign: | Reporting value of the Category, Its like a custom abbreviation | Category 1 Reporting value |
-| `Label` | *string* | :heavy_minus_sign: | Label of choice | Choice A |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Id` | *string* | :heavy_minus_sign: | The ID of the custom field choice. If you supply the choice's existing ID in a PUT call, the choice keeps its current ID and the choice text is updated. If this `id` field is left blank in a PUT call, this choice text will be replaced with the text supplied, and a new choice ID is created. | |
+| `Text` | *string* | :heavy_check_mark: | The text for the custom field choice. | What is your current designation? |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ChoiceJson2Input.md b/packages/csharp/docs/Models/Components/ChoiceJson2Input.md
new file mode 100644
index 00000000..ee92d776
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ChoiceJson2Input.md
@@ -0,0 +1,10 @@
+# ChoiceJson2Input
+
+This is used to denote the choice of custom field.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------- | ------------------------------------- | ------------------------------------- | ------------------------------------- | ------------------------------------- |
+| `Text` | *string* | :heavy_check_mark: | The text for the custom field choice. | What is your current designation? |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ChoiceJson3.md b/packages/csharp/docs/Models/Components/ChoiceJson3.md
deleted file mode 100644
index bed120c1..00000000
--- a/packages/csharp/docs/Models/Components/ChoiceJson3.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# ChoiceJson3
-
-This is used to denote the choice of custom field.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_minus_sign: | The ID of the custom field choice. If you supply the choice's existing ID in a PUT call, the choice keeps its current ID and the choice text is updated. If this `id` field is left blank in a PUT call, this choice text will be replaced with the text supplied, and a new choice ID is created. | |
-| `Text` | *string* | :heavy_check_mark: | The text for the custom field choice. | What is your current designation? |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ChoiceJson3Input.md b/packages/csharp/docs/Models/Components/ChoiceJson3Input.md
deleted file mode 100644
index 26f9ebae..00000000
--- a/packages/csharp/docs/Models/Components/ChoiceJson3Input.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# ChoiceJson3Input
-
-This is used to denote the choice of custom field.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------- | ------------------------------------- | ------------------------------------- | ------------------------------------- | ------------------------------------- |
-| `Text` | *string* | :heavy_check_mark: | The text for the custom field choice. | What is your current designation? |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ChoiceSortOrder.md b/packages/csharp/docs/Models/Components/ChoiceSortOrder.md
new file mode 100644
index 00000000..a33fedfe
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ChoiceSortOrder.md
@@ -0,0 +1,20 @@
+# ChoiceSortOrder
+
+The sort order for the choices. `AToZ`: sorted alphabetically in ascending order. `AsEntered`: Sorted in the order they were added, oldest choices first. `Random`: Random sort.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = ChoiceSortOrder.AToZ;
+```
+
+
+## Values
+
+| Name | Value |
+| ----------- | ----------- |
+| `AToZ` | AToZ |
+| `AsEntered` | AsEntered |
+| `Random` | Random |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ChoiceSortOrderJson.md b/packages/csharp/docs/Models/Components/ChoiceSortOrderJson.md
deleted file mode 100644
index 15bfccfc..00000000
--- a/packages/csharp/docs/Models/Components/ChoiceSortOrderJson.md
+++ /dev/null
@@ -1,20 +0,0 @@
-# ChoiceSortOrderJson
-
-The sort order for the choices. `AToZ`: sorted alphabetically in ascending order. `AsEntered`: Sorted in the order they were added, oldest choices first. `Random`: Random sort.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = ChoiceSortOrderJson.AToZ;
-```
-
-
-## Values
-
-| Name | Value |
-| ----------- | ----------- |
-| `AToZ` | AToZ |
-| `AsEntered` | AsEntered |
-| `Random` | Random |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Choices.md b/packages/csharp/docs/Models/Components/Choices.md
index 88c4d7f5..7a3e986d 100644
--- a/packages/csharp/docs/Models/Components/Choices.md
+++ b/packages/csharp/docs/Models/Components/Choices.md
@@ -7,5 +7,5 @@ Choices for a custom field.
| Field | Type | Required | Description |
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
-| `ChoicesValue` | List<[ChoiceJson3Input](../../Models/Components/ChoiceJson3Input.md)> | :heavy_minus_sign: | Choices of custom fields. |
+| `ChoicesValue` | List<[ChoiceJson2Input](../../Models/Components/ChoiceJson2Input.md)> | :heavy_minus_sign: | Choices of custom fields. |
| `DisplayType` | [ChoicesDisplayTypeJson](../../Models/Components/ChoicesDisplayTypeJson.md) | :heavy_minus_sign: | Display type indicating how to display the choices on UI. For 'Choice - Single Answer' custom field type, this defaults to Dropdown. For 'Choice - Multiple Answers' custom field type, this defaults to MultiSelectBox. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/CommentType.md b/packages/csharp/docs/Models/Components/CommentType.md
new file mode 100644
index 00000000..94d859a0
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/CommentType.md
@@ -0,0 +1,22 @@
+# CommentType
+
+Bid comment type
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = CommentType.Promotions;
+```
+
+
+## Values
+
+| Name | Value |
+| ------------------ | ------------------ |
+| `Promotions` | promotions |
+| `SpecialOffers` | special_offers |
+| `ChildPolicies` | child_policies |
+| `OtherInformation` | other_information |
+| `InternalComments` | internal_comments |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/CommentTypeJson.md b/packages/csharp/docs/Models/Components/CommentTypeJson.md
deleted file mode 100644
index 56b4fd99..00000000
--- a/packages/csharp/docs/Models/Components/CommentTypeJson.md
+++ /dev/null
@@ -1,22 +0,0 @@
-# CommentTypeJson
-
-Bid comment type
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = CommentTypeJson.Promotions;
-```
-
-
-## Values
-
-| Name | Value |
-| ------------------ | ------------------ |
-| `Promotions` | promotions |
-| `SpecialOffers` | special_offers |
-| `ChildPolicies` | child_policies |
-| `OtherInformation` | other_information |
-| `InternalComments` | internal_comments |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Compliance.md b/packages/csharp/docs/Models/Components/Compliance.md
index d20f8102..34fdd1f9 100644
--- a/packages/csharp/docs/Models/Components/Compliance.md
+++ b/packages/csharp/docs/Models/Components/Compliance.md
@@ -8,6 +8,6 @@ Privacy compliance fields for a contact.
| Field | Type | Required | Description | Example |
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
| `CreationTime` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Date-time (in GMT) when privacy compliance details were created for the contact. | 2021-03-08T17:30:01.727Z |
-| `ComplianceScope` | [ComplianceComplianceScope](../../Models/Components/ComplianceComplianceScope.md) | :heavy_minus_sign: | Scope of privacy compliance. | CCPA |
-| `Action` | [ComplianceAction](../../Models/Components/ComplianceAction.md) | :heavy_minus_sign: | Action to take for a compliance request. | DO_NOT_SELL |
-| `CreatedBy` | [ComplianceCreatedBy](../../Models/Components/ComplianceCreatedBy.md) | :heavy_minus_sign: | Denotes how the compliance request was created. | PLANNER |
\ No newline at end of file
+| `ComplianceScope` | [ComplianceScope](../../Models/Components/ComplianceScope.md) | :heavy_minus_sign: | Scope of privacy compliance. | CCPA |
+| `Action` | [Action](../../Models/Components/Action.md) | :heavy_minus_sign: | Action to take for a compliance request. | DO_NOT_SELL |
+| `CreatedBy` | [CreatedBy](../../Models/Components/CreatedBy.md) | :heavy_minus_sign: | Denotes how the compliance request was created. | PLANNER |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ComplianceAction.md b/packages/csharp/docs/Models/Components/ComplianceAction.md
deleted file mode 100644
index 00db37a9..00000000
--- a/packages/csharp/docs/Models/Components/ComplianceAction.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# ComplianceAction
-
-Action to take for a compliance request.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = ComplianceAction.DoNotSell;
-```
-
-
-## Values
-
-| Name | Value |
-| ----------- | ----------- |
-| `DoNotSell` | DO_NOT_SELL |
-| `OkToSell` | OK_TO_SELL |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ComplianceComplianceScope.md b/packages/csharp/docs/Models/Components/ComplianceComplianceScope.md
deleted file mode 100644
index 93da2312..00000000
--- a/packages/csharp/docs/Models/Components/ComplianceComplianceScope.md
+++ /dev/null
@@ -1,18 +0,0 @@
-# ComplianceComplianceScope
-
-Scope of privacy compliance.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = ComplianceComplianceScope.Ccpa;
-```
-
-
-## Values
-
-| Name | Value |
-| ------ | ------ |
-| `Ccpa` | CCPA |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ComplianceCreatedBy.md b/packages/csharp/docs/Models/Components/ComplianceCreatedBy.md
deleted file mode 100644
index a7e89478..00000000
--- a/packages/csharp/docs/Models/Components/ComplianceCreatedBy.md
+++ /dev/null
@@ -1,27 +0,0 @@
-# ComplianceCreatedBy
-
-Denotes how the compliance request was created.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = ComplianceCreatedBy.Attendee;
-```
-
-
-## Values
-
-| Name | Value |
-| ------------------- | ------------------- |
-| `Attendee` | ATTENDEE |
-| `Planner` | PLANNER |
-| `Import` | IMPORT |
-| `SoapApi` | SOAP_API |
-| `RestApi` | REST_API |
-| `Marketo` | MARKETO |
-| `Saleforce` | SALEFORCE |
-| `VideoCenterMember` | VIDEO_CENTER_MEMBER |
-| `Respondent` | RESPONDENT |
-| `NotSet` | NOT_SET |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ComplianceJson.md b/packages/csharp/docs/Models/Components/ComplianceJson.md
deleted file mode 100644
index 1fa38103..00000000
--- a/packages/csharp/docs/Models/Components/ComplianceJson.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# ComplianceJson
-
-Privacy compliance fields for a contact.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- |
-| `CreationTime` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Date-time (in GMT) when privacy compliance details were created for the contact. | 2021-03-08T17:30:01.727Z |
-| `ComplianceScope` | [ComplianceJsonComplianceScope](../../Models/Components/ComplianceJsonComplianceScope.md) | :heavy_minus_sign: | Scope of privacy compliance. | CCPA |
-| `Action` | [ComplianceJsonAction](../../Models/Components/ComplianceJsonAction.md) | :heavy_minus_sign: | Action to take for a compliance request. | DO_NOT_SELL |
-| `CreatedBy` | [ComplianceJsonCreatedBy](../../Models/Components/ComplianceJsonCreatedBy.md) | :heavy_minus_sign: | Denotes how the compliance request was created. | PLANNER |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ComplianceJsonAction.md b/packages/csharp/docs/Models/Components/ComplianceJsonAction.md
deleted file mode 100644
index 66a21ae1..00000000
--- a/packages/csharp/docs/Models/Components/ComplianceJsonAction.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# ComplianceJsonAction
-
-Action to take for a compliance request.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = ComplianceJsonAction.DoNotSell;
-```
-
-
-## Values
-
-| Name | Value |
-| ----------- | ----------- |
-| `DoNotSell` | DO_NOT_SELL |
-| `OkToSell` | OK_TO_SELL |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ComplianceJsonComplianceScope.md b/packages/csharp/docs/Models/Components/ComplianceJsonComplianceScope.md
deleted file mode 100644
index 29528258..00000000
--- a/packages/csharp/docs/Models/Components/ComplianceJsonComplianceScope.md
+++ /dev/null
@@ -1,18 +0,0 @@
-# ComplianceJsonComplianceScope
-
-Scope of privacy compliance.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = ComplianceJsonComplianceScope.Ccpa;
-```
-
-
-## Values
-
-| Name | Value |
-| ------ | ------ |
-| `Ccpa` | CCPA |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ComplianceJsonCreatedBy.md b/packages/csharp/docs/Models/Components/ComplianceJsonCreatedBy.md
deleted file mode 100644
index 42998070..00000000
--- a/packages/csharp/docs/Models/Components/ComplianceJsonCreatedBy.md
+++ /dev/null
@@ -1,27 +0,0 @@
-# ComplianceJsonCreatedBy
-
-Denotes how the compliance request was created.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = ComplianceJsonCreatedBy.Attendee;
-```
-
-
-## Values
-
-| Name | Value |
-| ------------------- | ------------------- |
-| `Attendee` | ATTENDEE |
-| `Planner` | PLANNER |
-| `Import` | IMPORT |
-| `SoapApi` | SOAP_API |
-| `RestApi` | REST_API |
-| `Marketo` | MARKETO |
-| `Saleforce` | SALEFORCE |
-| `VideoCenterMember` | VIDEO_CENTER_MEMBER |
-| `Respondent` | RESPONDENT |
-| `NotSet` | NOT_SET |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ComplianceScope.md b/packages/csharp/docs/Models/Components/ComplianceScope.md
new file mode 100644
index 00000000..e535b90b
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ComplianceScope.md
@@ -0,0 +1,18 @@
+# ComplianceScope
+
+Scope of privacy compliance.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = ComplianceScope.Ccpa;
+```
+
+
+## Values
+
+| Name | Value |
+| ------ | ------ |
+| `Ccpa` | CCPA |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ConflictResolution.md b/packages/csharp/docs/Models/Components/ConflictResolution.md
index 95482d2f..027fc33f 100644
--- a/packages/csharp/docs/Models/Components/ConflictResolution.md
+++ b/packages/csharp/docs/Models/Components/ConflictResolution.md
@@ -7,7 +7,7 @@ Represents choices in resolving conflicts in the contacts to be merged or to opt
| Field | Type | Required | Description |
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
-| `Events` | List<[EventContactIdJson](../../Models/Components/EventContactIdJson.md)> | :heavy_minus_sign: | For each event (designated by event id), choose a contact id whose linked attendee will be associated with the resulting merged contact. Use whenever at least two contacts exist as attendees in a single event. |
-| `Surveys` | List<[SurveyContactIdJson](../../Models/Components/SurveyContactIdJson.md)> | :heavy_minus_sign: | For each survey (designated by survey id), choose a contact id whose linked respondent will be associated with the resulting merged contact. Use whenever at least two contacts exist as respondents in a single survey. |
+| `Events` | List<[EventContactId](../../Models/Components/EventContactId.md)> | :heavy_minus_sign: | For each event (designated by event id), choose a contact id whose linked attendee will be associated with the resulting merged contact. Use whenever at least two contacts exist as attendees in a single event. |
+| `Surveys` | List<[SurveyContactId](../../Models/Components/SurveyContactId.md)> | :heavy_minus_sign: | For each survey (designated by survey id), choose a contact id whose linked respondent will be associated with the resulting merged contact. Use whenever at least two contacts exist as respondents in a single survey. |
| `RelatedContacts` | *string* | :heavy_minus_sign: | The id of the contact to keep the relationships of in the resulting merged contact. Only one contact can be chosen, and relationships of the other contact(s) will be discarded. |
-| `ContactFields` | List<[ContactMergeFieldJson](../../Models/Components/ContactMergeFieldJson.md)> | :heavy_minus_sign: | Specify which contact to use values from for any contact field. |
\ No newline at end of file
+| `ContactFields` | List<[ContactMergeField](../../Models/Components/ContactMergeField.md)> | :heavy_minus_sign: | Specify which contact to use values from for any contact field. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Contact.md b/packages/csharp/docs/Models/Components/Contact.md
index 86917995..6b56640c 100644
--- a/packages/csharp/docs/Models/Components/Contact.md
+++ b/packages/csharp/docs/Models/Components/Contact.md
@@ -17,33 +17,33 @@ Represents a contact that has been created and has an id.
| `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 can be cc'd on email communications. | h.porter@tesing.com |
-| `Gender` | [GenderJson](../../Models/Components/GenderJson.md) | :heavy_minus_sign: | The gender of the contact. | Male |
+| `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, typically an award or credential. | CPA |
| `Title` | *string* | :heavy_minus_sign: | The job title of the contact. | Event Planner |
-| `Type` | [AttendeeContactTypeJson](../../Models/Components/AttendeeContactTypeJson.md) | :heavy_minus_sign: | Contains details related to the attendee's contact type. | |
-| `Membership` | [MembershipJson](../../Models/Components/MembershipJson.md) | :heavy_minus_sign: | Contact Membership information | |
-| `PrimaryAddressType` | [AddressTypeJson](../../Models/Components/AddressTypeJson.md) | :heavy_minus_sign: | The type of address. | Home |
-| `HomeAddress` | [AddressJson](../../Models/Components/AddressJson.md) | :heavy_minus_sign: | Contact address details. | |
+| `Type` | [AttendeeContactType](../../Models/Components/AttendeeContactType.md) | :heavy_minus_sign: | Contains details related to the attendee's contact type. | |
+| `Membership` | [ContactMembership](../../Models/Components/ContactMembership.md) | :heavy_minus_sign: | Contact Membership information | |
+| `PrimaryAddressType` | [AddressType](../../Models/Components/AddressType.md) | :heavy_minus_sign: | The type of address. | Home |
+| `HomeAddress` | [Address](../../Models/Components/Address.md) | :heavy_minus_sign: | Contact address details. | |
| `HomePhone` | *string* | :heavy_minus_sign: | The phone number of the contact at their place of residence. | 555-555-5555 |
| `HomeFax` | *string* | :heavy_minus_sign: | The fax number of the contact at their place of residence. | 555-555-5555 |
-| `WorkAddress` | [AddressJson](../../Models/Components/AddressJson.md) | :heavy_minus_sign: | Contact address details. | |
+| `WorkAddress` | [Address](../../Models/Components/Address.md) | :heavy_minus_sign: | Contact address details. | |
| `WorkPhone` | *string* | :heavy_minus_sign: | The phone number of the contact at their place of work. | 555-555-5555 |
| `WorkFax` | *string* | :heavy_minus_sign: | The fax number of the contact at their place of work. | 555-555-5555 |
| `CustomFields` | List<[CustomField](../../Models/Components/CustomField.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 as part of the ID. | system-a-00000000-0000-0000-0000-000000000000 |
| `MobilePhone` | *string* | :heavy_minus_sign: | The contact's mobile phone number. | 555-555-5555 |
-| `Compliance` | List<[ComplianceJson](../../Models/Components/ComplianceJson.md)> | :heavy_minus_sign: | Detail related to compliance with the contact's privacy rights under various legislation. | |
+| `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: | Denotes what is traditionally a title of an individual. | Mr. |
| `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. Deleted contacts still have their data retained, but the contact is inactive. | false |
| `Purged` | *bool* | :heavy_minus_sign: | True indicates a contact is purged. Purged contacts have only partial data retained, and will be permanently deleted in 30 days. | false |
-| `OptOut` | [OptOutJson](../../Models/Components/OptOutJson.md) | :heavy_minus_sign: | Details of an opt-out for a Contact. | |
+| `OptOut` | [ContactOptOut](../../Models/Components/ContactOptOut.md) | :heavy_minus_sign: | Details of an opt-out for a Contact. | |
| `Npi` | *string* | :heavy_minus_sign: | Unique 10-digit identification number issued by the Centers for Medicare and Medicaid Services for health care providers in the United States. | 5555555555 |
-| `Links` | [ContactLinksJson](../../Models/Components/ContactLinksJson.md) | :heavy_minus_sign: | Collection of social media links for the contact. | |
+| `Links` | [ContactLinks](../../Models/Components/ContactLinks.md) | :heavy_minus_sign: | Collection of social media links for the contact. | |
| `DateOfBirth` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The date of birth of the contact.
Reading and writing of this field require the `event/contacts:read-sensitive` and `event/contacts:write-sensitive` scopes respectively. | 1990-01-01 |
| ~~`PassportNumber`~~ | *string* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
The passport number of the contact.
Reading and writing of this field require the `event/contacts:read-sensitive` and `event/contacts:write-sensitive` scopes respectively. This field has been deprecated. Instead, use the passport.number field. | 123456789 |
-| `Passport` | [PassportJson](../../Models/Components/PassportJson.md) | :heavy_minus_sign: | This entity represents a contact's passport information. | |
+| `Passport` | [Passport](../../Models/Components/Passport.md) | :heavy_minus_sign: | This entity represents a contact's passport information. | |
| `SocialSecurityNumber` | *string* | :heavy_minus_sign: | The social security number of the contact.
Reading and writing of this field require the `event/contacts:read-sensitive` and `event/contacts:write-sensitive` scopes respectively. | 123-45-6789 |
| `NationalIdentificationNumber` | *string* | :heavy_minus_sign: | The national identification number of the contact.
Reading and writing of this field require the `event/contacts:read-sensitive` and `event/contacts:write-sensitive` scopes respectively. | 123456789 |
| `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 |
diff --git a/packages/csharp/docs/Models/Components/Contact1.md b/packages/csharp/docs/Models/Components/Contact1.md
new file mode 100644
index 00000000..3d6ac863
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Contact1.md
@@ -0,0 +1,19 @@
+# Contact1
+
+Contact details of planner.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- |
+| `FirstName` | *string* | :heavy_check_mark: | The first name of the planner. | James |
+| `LastName` | *string* | :heavy_check_mark: | The last name of the planner. | West |
+| `Email` | *string* | :heavy_check_mark: | Email address of the planner. | jwest@example.com |
+| `Address` | [Address1](../../Models/Components/Address1.md) | :heavy_minus_sign: | Address details. | |
+| `CommissionRate` | *double* | :heavy_minus_sign: | Rate of commission chargeable by the planner. Precision up to 2 decimal places is accepted. | 10.75 |
+| `Commissionable` | *bool* | :heavy_minus_sign: | True indicates commission is to be charged from supplier. | |
+| `Phone` | *string* | :heavy_check_mark: | Phone number of the planner. | 555-555-5555 |
+| `OrganizationName` | *string* | :heavy_check_mark: | Name of the organization. | Five Star Planners Inc. |
+| `ThirdPartyPlanner` | *bool* | :heavy_minus_sign: | True indicates planner is a third party planner. | |
+| `PreferredContactMethods` | List<[ContactMethods](../../Models/Components/ContactMethods.md)> | :heavy_minus_sign: | List of preferred contact methods for the planner. | [
"CVENT"
] |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Contact2.md b/packages/csharp/docs/Models/Components/Contact2.md
new file mode 100644
index 00000000..d1152a43
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Contact2.md
@@ -0,0 +1,10 @@
+# Contact2
+
+The contact details who watched a video
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------- | ------------------------------------------------- | ------------------------------------------------- | ------------------------------------------------- | ------------------------------------------------- |
+| `Id` | *string* | :heavy_minus_sign: | The unique ID of the contact who watched a video. | 123e4567-e89b-12d3-a456-426614174000 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ContactBulkItemJson.md b/packages/csharp/docs/Models/Components/ContactBulkItemJson.md
deleted file mode 100644
index 9f3729c4..00000000
--- a/packages/csharp/docs/Models/Components/ContactBulkItemJson.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# ContactBulkItemJson
-
-This entity is used to represent a single item that is returned as part of a Bulk request call.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Data` | [ContactBulkItemJsonData](../../Models/Components/ContactBulkItemJsonData.md) | :heavy_check_mark: | N/A | |
-| `Status` | *long* | :heavy_check_mark: | http status code representing processing status of a single item | 400 |
-| `Message` | *string* | :heavy_minus_sign: | Quick description of what happened with processing | Example error message. |
-| `Request` | Dictionary | :heavy_minus_sign: | The processed request tied to this response. This field is only sent when processing fails. | {
"operation": "PUT",
"headers": {
"header1": "header1Value",
"header2": "header2Value"
},
"queryParams": {
"param1": "param1Value",
"param2": "param2Value"
}
} |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ContactBulkItemJsonData.md b/packages/csharp/docs/Models/Components/ContactBulkItemJsonData.md
deleted file mode 100644
index 689682fa..00000000
--- a/packages/csharp/docs/Models/Components/ContactBulkItemJsonData.md
+++ /dev/null
@@ -1,16 +0,0 @@
-# ContactBulkItemJsonData
-
-
-## Supported Types
-
-### ZeroAllOf7
-
-```csharp
-ContactBulkItemJsonData.CreateZeroAllOf7(/* values here */);
-```
-
-### ErrorResponse1
-
-```csharp
-ContactBulkItemJsonData.CreateErrorResponse1(/* values here */);
-```
diff --git a/packages/csharp/docs/Models/Components/ContactBulkResponseItem.md b/packages/csharp/docs/Models/Components/ContactBulkResponseItem.md
new file mode 100644
index 00000000..e075c1ee
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ContactBulkResponseItem.md
@@ -0,0 +1,13 @@
+# ContactBulkResponseItem
+
+This entity is used to represent a single item that is returned as part of a Bulk request call.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Data` | [ContactBulkResponseItemData](../../Models/Components/ContactBulkResponseItemData.md) | :heavy_check_mark: | N/A | |
+| `Status` | *long* | :heavy_check_mark: | http status code representing processing status of a single item | 400 |
+| `Message` | *string* | :heavy_minus_sign: | Quick description of what happened with processing | Example error message. |
+| `Request` | Dictionary | :heavy_minus_sign: | The processed request tied to this response. This field is only sent when processing fails. | {
"operation": "PUT",
"headers": {
"header1": "header1Value",
"header2": "header2Value"
},
"queryParams": {
"param1": "param1Value",
"param2": "param2Value"
}
} |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ContactBulkResponseItemData.md b/packages/csharp/docs/Models/Components/ContactBulkResponseItemData.md
new file mode 100644
index 00000000..2d1788a1
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ContactBulkResponseItemData.md
@@ -0,0 +1,16 @@
+# ContactBulkResponseItemData
+
+
+## Supported Types
+
+### Contact
+
+```csharp
+ContactBulkResponseItemData.CreateContact(/* values here */);
+```
+
+### ErrorResponse1
+
+```csharp
+ContactBulkResponseItemData.CreateErrorResponse1(/* values here */);
+```
diff --git a/packages/csharp/docs/Models/Components/ContactCreate.md b/packages/csharp/docs/Models/Components/ContactCreate.md
new file mode 100644
index 00000000..c3f01617
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ContactCreate.md
@@ -0,0 +1,45 @@
+# ContactCreate
+
+This entity is used to represent a single item that is posted for a contact create
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
+| `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 can be cc'd on 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, typically an award or credential. | CPA |
+| `Title` | *string* | :heavy_minus_sign: | The job title of the contact. | Event Planner |
+| `Type` | [AttendeeContactTypeInput](../../Models/Components/AttendeeContactTypeInput.md) | :heavy_minus_sign: | Contains details related to the attendee's contact type. | |
+| `PrimaryAddressType` | [AddressType](../../Models/Components/AddressType.md) | :heavy_minus_sign: | The type of address. | Home |
+| `HomeAddress` | [AddressInput](../../Models/Components/AddressInput.md) | :heavy_minus_sign: | Contact address details. | |
+| `HomePhone` | *string* | :heavy_minus_sign: | The phone number of the contact at their place of residence. | 555-555-5555 |
+| `HomeFax` | *string* | :heavy_minus_sign: | The fax number of the contact at their place of residence. | 555-555-5555 |
+| `WorkAddress` | [AddressInput](../../Models/Components/AddressInput.md) | :heavy_minus_sign: | Contact address details. | |
+| `WorkPhone` | *string* | :heavy_minus_sign: | The phone number of the contact at their place of work. | 555-555-5555 |
+| `WorkFax` | *string* | :heavy_minus_sign: | The fax number of the contact at their place of work. | 555-555-5555 |
+| `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 as part of the ID. | system-a-00000000-0000-0000-0000-000000000000 |
+| `MobilePhone` | *string* | :heavy_minus_sign: | The contact's mobile phone number. | 555-555-5555 |
+| `Prefix` | *string* | :heavy_minus_sign: | Denotes what is traditionally a title of an individual. | Mr. |
+| `Pager` | *string* | :heavy_minus_sign: | The pager number of the contact. | 555-555-5555 |
+| `OptOut` | [ContactOptOutInput](../../Models/Components/ContactOptOutInput.md) | :heavy_minus_sign: | Details of an opt-out for a Contact. | |
+| `Npi` | *string* | :heavy_minus_sign: | Unique 10-digit identification number issued by the Centers for Medicare and Medicaid Services for health care providers in the United States. | 5555555555 |
+| `Links` | [ContactLinksInput](../../Models/Components/ContactLinksInput.md) | :heavy_minus_sign: | Collection of social media links for the contact. | |
+| `DateOfBirth` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The date of birth of the contact.
Reading and writing of this field require the `event/contacts:read-sensitive` and `event/contacts:write-sensitive` scopes respectively. | 1990-01-01 |
+| ~~`PassportNumber`~~ | *string* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
The passport number of the contact.
Reading and writing of this field require the `event/contacts:read-sensitive` and `event/contacts:write-sensitive` scopes respectively. This field has been deprecated. Instead, use the passport.number field. | 123456789 |
+| `Passport` | [PassportInput](../../Models/Components/PassportInput.md) | :heavy_minus_sign: | This entity represents a contact's passport information. | |
+| `SocialSecurityNumber` | *string* | :heavy_minus_sign: | The social security number of the contact.
Reading and writing of this field require the `event/contacts:read-sensitive` and `event/contacts:write-sensitive` scopes respectively. | 123-45-6789 |
+| `NationalIdentificationNumber` | *string* | :heavy_minus_sign: | The national identification number of the contact.
Reading and writing of this field require the `event/contacts:read-sensitive` and `event/contacts:write-sensitive` scopes respectively. | 123456789 |
+| `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. |
+| `Pronouns` | *string* | :heavy_minus_sign: | Represents the preferred pronouns of a contact. | he/him/she/her/they/them |
+| ~~`ParentId`~~ | *string* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
ID of the parent contact, applicable with contact snapshot. This field has been deprecated. If the event has contact snapshot enabled, snapshot will be automatically created through the Add attendees API. | |
+| ~~`Event`~~ | [ContactCreateEvent](../../Models/Components/ContactCreateEvent.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
Event ID | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ContactCreateEvent.md b/packages/csharp/docs/Models/Components/ContactCreateEvent.md
new file mode 100644
index 00000000..d8b7bacc
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ContactCreateEvent.md
@@ -0,0 +1,12 @@
+# ~~ContactCreateEvent~~
+
+Event ID
+
+> :warning: **DEPRECATED**: This will be removed in a future release, please migrate away from it as soon as possible.
+
+
+## Fields
+
+| Field | Type | Required | Description |
+| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| ~~`Id`~~ | *string* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
ID of the event where the contact was created, applicable when contact snapshot is enabled for an event. This field has been deprecated. If the event has contact snapshot enabled, snapshot will be automatically created through the Add attendees API. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ContactCreateRequestJson.md b/packages/csharp/docs/Models/Components/ContactCreateRequestJson.md
deleted file mode 100644
index c64a5fb9..00000000
--- a/packages/csharp/docs/Models/Components/ContactCreateRequestJson.md
+++ /dev/null
@@ -1,45 +0,0 @@
-# ContactCreateRequestJson
-
-This entity is used to represent a single item that is posted for a contact create
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
-| `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 can be cc'd on email communications. | h.porter@tesing.com |
-| `Gender` | [GenderJson](../../Models/Components/GenderJson.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, typically an award or credential. | CPA |
-| `Title` | *string* | :heavy_minus_sign: | The job title of the contact. | Event Planner |
-| `Type` | [AttendeeContactTypeJsonInput](../../Models/Components/AttendeeContactTypeJsonInput.md) | :heavy_minus_sign: | Contains details related to the attendee's contact type. | |
-| `PrimaryAddressType` | [AddressTypeJson](../../Models/Components/AddressTypeJson.md) | :heavy_minus_sign: | The type of address. | Home |
-| `HomeAddress` | [AddressJsonInput](../../Models/Components/AddressJsonInput.md) | :heavy_minus_sign: | Contact address details. | |
-| `HomePhone` | *string* | :heavy_minus_sign: | The phone number of the contact at their place of residence. | 555-555-5555 |
-| `HomeFax` | *string* | :heavy_minus_sign: | The fax number of the contact at their place of residence. | 555-555-5555 |
-| `WorkAddress` | [AddressJsonInput](../../Models/Components/AddressJsonInput.md) | :heavy_minus_sign: | Contact address details. | |
-| `WorkPhone` | *string* | :heavy_minus_sign: | The phone number of the contact at their place of work. | 555-555-5555 |
-| `WorkFax` | *string* | :heavy_minus_sign: | The fax number of the contact at their place of work. | 555-555-5555 |
-| `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 as part of the ID. | system-a-00000000-0000-0000-0000-000000000000 |
-| `MobilePhone` | *string* | :heavy_minus_sign: | The contact's mobile phone number. | 555-555-5555 |
-| `Prefix` | *string* | :heavy_minus_sign: | Denotes what is traditionally a title of an individual. | Mr. |
-| `Pager` | *string* | :heavy_minus_sign: | The pager number of the contact. | 555-555-5555 |
-| `OptOut` | [OptOutJsonInput](../../Models/Components/OptOutJsonInput.md) | :heavy_minus_sign: | Details of an opt-out for a Contact. | |
-| `Npi` | *string* | :heavy_minus_sign: | Unique 10-digit identification number issued by the Centers for Medicare and Medicaid Services for health care providers in the United States. | 5555555555 |
-| `Links` | [ContactLinksJsonInput](../../Models/Components/ContactLinksJsonInput.md) | :heavy_minus_sign: | Collection of social media links for the contact. | |
-| `DateOfBirth` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The date of birth of the contact.
Reading and writing of this field require the `event/contacts:read-sensitive` and `event/contacts:write-sensitive` scopes respectively. | 1990-01-01 |
-| ~~`PassportNumber`~~ | *string* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
The passport number of the contact.
Reading and writing of this field require the `event/contacts:read-sensitive` and `event/contacts:write-sensitive` scopes respectively. This field has been deprecated. Instead, use the passport.number field. | 123456789 |
-| `Passport` | [PassportJsonInput](../../Models/Components/PassportJsonInput.md) | :heavy_minus_sign: | This entity represents a contact's passport information. | |
-| `SocialSecurityNumber` | *string* | :heavy_minus_sign: | The social security number of the contact.
Reading and writing of this field require the `event/contacts:read-sensitive` and `event/contacts:write-sensitive` scopes respectively. | 123-45-6789 |
-| `NationalIdentificationNumber` | *string* | :heavy_minus_sign: | The national identification number of the contact.
Reading and writing of this field require the `event/contacts:read-sensitive` and `event/contacts:write-sensitive` scopes respectively. | 123456789 |
-| `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. |
-| `Pronouns` | *string* | :heavy_minus_sign: | Represents the preferred pronouns of a contact. | he/him/she/her/they/them |
-| ~~`ParentId`~~ | *string* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
ID of the parent contact, applicable with contact snapshot. This field has been deprecated. If the event has contact snapshot enabled, snapshot will be automatically created through the Add attendees API. | |
-| ~~`Event`~~ | [ContactCreateRequestJsonEvent](../../Models/Components/ContactCreateRequestJsonEvent.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
Event ID | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ContactCreateRequestJsonEvent.md b/packages/csharp/docs/Models/Components/ContactCreateRequestJsonEvent.md
deleted file mode 100644
index 9b5e5d24..00000000
--- a/packages/csharp/docs/Models/Components/ContactCreateRequestJsonEvent.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# ~~ContactCreateRequestJsonEvent~~
-
-Event ID
-
-> :warning: **DEPRECATED**: This will be removed in a future release, please migrate away from it as soon as possible.
-
-
-## Fields
-
-| Field | Type | Required | Description |
-| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| ~~`Id`~~ | *string* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
ID of the event where the contact was created, applicable when contact snapshot is enabled for an event. This field has been deprecated. If the event has contact snapshot enabled, snapshot will be automatically created through the Add attendees API. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ContactGroup.md b/packages/csharp/docs/Models/Components/ContactGroup.md
index c66eac47..c7aba955 100644
--- a/packages/csharp/docs/Models/Components/ContactGroup.md
+++ b/packages/csharp/docs/Models/Components/ContactGroup.md
@@ -15,6 +15,6 @@ A group of contacts.
| `Name` | *string* | :heavy_check_mark: | Name of the contact group. | group name |
| `ShortDescription` | *string* | :heavy_minus_sign: | Short description of the contact group. | short description |
| `Description` | *string* | :heavy_minus_sign: | Full description of the contact group. | long description |
-| `Type` | [ContactGroupTypeJson](../../Models/Components/ContactGroupTypeJson.md) | :heavy_minus_sign: | Type of contact group. `BLACKLIST` are contacts that are not allowed to register for your events. `DISTRIBUTION_LIST` is a group of contacts you plan to send eMarketing emails to. `STANDARD` is a multi-purpose group for organizing contacts. | STANDARD |
+| `Type` | [ContactGroupType](../../Models/Components/ContactGroupType.md) | :heavy_minus_sign: | Type of contact group. `BLACKLIST` are contacts that are not allowed to register for your events. `DISTRIBUTION_LIST` is a group of contacts you plan to send eMarketing emails to. `STANDARD` is a multi-purpose group for organizing contacts. | STANDARD |
| ~~`Note`~~ | *string* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
Moved to internalNote in the DistributionListInfo object. The note field only applies to Distribution List. | Sample internal note |
-| `DistributionListInfo` | [DistributionListInfoJson](../../Models/Components/DistributionListInfoJson.md) | :heavy_minus_sign: | Model representing a distribution list info. Only required if the contact group type is DISTRIBUTION_LIST. | |
\ No newline at end of file
+| `DistributionListInfo` | [DistributionListInfo](../../Models/Components/DistributionListInfo.md) | :heavy_minus_sign: | Model representing a distribution list info. Only required if the contact group type is DISTRIBUTION_LIST. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ContactGroupInput.md b/packages/csharp/docs/Models/Components/ContactGroupInput.md
index b0d50be7..4741403d 100644
--- a/packages/csharp/docs/Models/Components/ContactGroupInput.md
+++ b/packages/csharp/docs/Models/Components/ContactGroupInput.md
@@ -10,6 +10,6 @@ A group of contacts.
| `Name` | *string* | :heavy_check_mark: | Name of the contact group. | group name |
| `ShortDescription` | *string* | :heavy_minus_sign: | Short description of the contact group. | short description |
| `Description` | *string* | :heavy_minus_sign: | Full description of the contact group. | long description |
-| `Type` | [ContactGroupTypeJson](../../Models/Components/ContactGroupTypeJson.md) | :heavy_minus_sign: | Type of contact group. `BLACKLIST` are contacts that are not allowed to register for your events. `DISTRIBUTION_LIST` is a group of contacts you plan to send eMarketing emails to. `STANDARD` is a multi-purpose group for organizing contacts. | STANDARD |
+| `Type` | [ContactGroupType](../../Models/Components/ContactGroupType.md) | :heavy_minus_sign: | Type of contact group. `BLACKLIST` are contacts that are not allowed to register for your events. `DISTRIBUTION_LIST` is a group of contacts you plan to send eMarketing emails to. `STANDARD` is a multi-purpose group for organizing contacts. | STANDARD |
| ~~`Note`~~ | *string* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
Moved to internalNote in the DistributionListInfo object. The note field only applies to Distribution List. | Sample internal note |
-| `DistributionListInfo` | [DistributionListInfoJsonInput](../../Models/Components/DistributionListInfoJsonInput.md) | :heavy_minus_sign: | Model representing a distribution list info. Only required if the contact group type is DISTRIBUTION_LIST. | |
\ No newline at end of file
+| `DistributionListInfo` | [DistributionListInfoInput](../../Models/Components/DistributionListInfoInput.md) | :heavy_minus_sign: | Model representing a distribution list info. Only required if the contact group type is DISTRIBUTION_LIST. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ContactGroupPaginatedResponse.md b/packages/csharp/docs/Models/Components/ContactGroupPaginatedResponse.md
index 728cf3b4..866786ff 100644
--- a/packages/csharp/docs/Models/Components/ContactGroupPaginatedResponse.md
+++ b/packages/csharp/docs/Models/Components/ContactGroupPaginatedResponse.md
@@ -7,5 +7,5 @@ The response from a request to get the list of contact groups. This includes th
| Field | Type | Required | Description |
| ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- |
-| `Paging` | [PagingJson](../../Models/Components/PagingJson.md) | :heavy_check_mark: | Represents pagination information for a collection of resources. |
+| `Paging` | [Paging](../../Models/Components/Paging.md) | :heavy_check_mark: | Represents pagination information for a collection of resources. |
| `Data` | List<[ContactGroup](../../Models/Components/ContactGroup.md)> | :heavy_check_mark: | Collection of contact groups. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ContactGroupType.md b/packages/csharp/docs/Models/Components/ContactGroupType.md
new file mode 100644
index 00000000..8cf12183
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ContactGroupType.md
@@ -0,0 +1,20 @@
+# ContactGroupType
+
+Type of contact group. `BLACKLIST` are contacts that are not allowed to register for your events. `DISTRIBUTION_LIST` is a group of contacts you plan to send eMarketing emails to. `STANDARD` is a multi-purpose group for organizing contacts.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = ContactGroupType.Blacklist;
+```
+
+
+## Values
+
+| Name | Value |
+| ------------------ | ------------------ |
+| `Blacklist` | BLACKLIST |
+| `DistributionList` | DISTRIBUTION_LIST |
+| `Standard` | STANDARD |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ContactGroupTypeJson.md b/packages/csharp/docs/Models/Components/ContactGroupTypeJson.md
deleted file mode 100644
index 554156ed..00000000
--- a/packages/csharp/docs/Models/Components/ContactGroupTypeJson.md
+++ /dev/null
@@ -1,20 +0,0 @@
-# ContactGroupTypeJson
-
-Type of contact group. `BLACKLIST` are contacts that are not allowed to register for your events. `DISTRIBUTION_LIST` is a group of contacts you plan to send eMarketing emails to. `STANDARD` is a multi-purpose group for organizing contacts.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = ContactGroupTypeJson.Blacklist;
-```
-
-
-## Values
-
-| Name | Value |
-| ------------------ | ------------------ |
-| `Blacklist` | BLACKLIST |
-| `DistributionList` | DISTRIBUTION_LIST |
-| `Standard` | STANDARD |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ContactHistory.md b/packages/csharp/docs/Models/Components/ContactHistory.md
new file mode 100644
index 00000000..dbfdaffd
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ContactHistory.md
@@ -0,0 +1,15 @@
+# ContactHistory
+
+A single instance of change for a specific contact in the contact's change history.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- |
+| `UpdatedFieldName` | *string* | :heavy_minus_sign: | The name of a field that was changed and tracked by this single instance of change in contact change history. | Last Name |
+| `OldValue` | *string* | :heavy_minus_sign: | The old value of a field that was changed. | Wilson |
+| `NewValue` | *string* | :heavy_minus_sign: | The new value of a field that was changed. | James |
+| `UpdatedThroughName` | [UpdatedThroughNameProperty](../../Models/Components/UpdatedThroughNameProperty.md) | :heavy_minus_sign: | Name of the place where this change was updated through. | Address Book Profile |
+| `UpdatedDate` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 formatted date-time when the associated contact, of this single instance of change in contact change history, was updated. | 2023-08-03T14:51:00.777Z |
+| `UpdatedBy` | *string* | :heavy_minus_sign: | The name of a person who updated a contact that is associated with this single instance of change in contact change history. | John Doe |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ContactHistoryJson.md b/packages/csharp/docs/Models/Components/ContactHistoryJson.md
deleted file mode 100644
index 6ad0c541..00000000
--- a/packages/csharp/docs/Models/Components/ContactHistoryJson.md
+++ /dev/null
@@ -1,15 +0,0 @@
-# ContactHistoryJson
-
-A single instance of change for a specific contact in the contact's change history.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- |
-| `UpdatedFieldName` | *string* | :heavy_minus_sign: | The name of a field that was changed and tracked by this single instance of change in contact change history. | Last Name |
-| `OldValue` | *string* | :heavy_minus_sign: | The old value of a field that was changed. | Wilson |
-| `NewValue` | *string* | :heavy_minus_sign: | The new value of a field that was changed. | James |
-| `UpdatedThroughName` | [UpdatedThroughNamePropertyJson](../../Models/Components/UpdatedThroughNamePropertyJson.md) | :heavy_minus_sign: | Name of the place where this change was updated through. | Address Book Profile |
-| `UpdatedDate` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 formatted date-time when the associated contact, of this single instance of change in contact change history, was updated. | 2023-08-03T14:51:00.777Z |
-| `UpdatedBy` | *string* | :heavy_minus_sign: | The name of a person who updated a contact that is associated with this single instance of change in contact change history. | John Doe |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ContactHistoryPaginatedResponse.md b/packages/csharp/docs/Models/Components/ContactHistoryPaginatedResponse.md
index c67e47ba..7fcdf765 100644
--- a/packages/csharp/docs/Models/Components/ContactHistoryPaginatedResponse.md
+++ b/packages/csharp/docs/Models/Components/ContactHistoryPaginatedResponse.md
@@ -5,7 +5,7 @@ The response of a request to get the change history for a specific contact.
## Fields
-| Field | Type | Required | Description |
-| ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- |
-| `Paging` | [PagingJson](../../Models/Components/PagingJson.md) | :heavy_minus_sign: | Represents pagination information for a collection of resources. |
-| `Data` | List<[ContactHistoryJson](../../Models/Components/ContactHistoryJson.md)> | :heavy_minus_sign: | Collection of change histories for a specific contact. |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- |
+| `Paging` | [Paging](../../Models/Components/Paging.md) | :heavy_minus_sign: | Represents pagination information for a collection of resources. |
+| `Data` | List<[ContactHistory](../../Models/Components/ContactHistory.md)> | :heavy_minus_sign: | Collection of change histories for a specific contact. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ContactId.md b/packages/csharp/docs/Models/Components/ContactId.md
new file mode 100644
index 00000000..0d60ef96
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ContactId.md
@@ -0,0 +1,10 @@
+# ContactId
+
+A contact id.
+
+
+## Fields
+
+| Field | Type | Required | Description |
+| ---------------------- | ---------------------- | ---------------------- | ---------------------- |
+| `Id` | *string* | :heavy_check_mark: | The ID of the contact. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ContactIdJson.md b/packages/csharp/docs/Models/Components/ContactIdJson.md
deleted file mode 100644
index 98202bca..00000000
--- a/packages/csharp/docs/Models/Components/ContactIdJson.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# ContactIdJson
-
-A contact id.
-
-
-## Fields
-
-| Field | Type | Required | Description |
-| ---------------------- | ---------------------- | ---------------------- | ---------------------- |
-| `Id` | *string* | :heavy_check_mark: | The ID of the contact. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ContactIdPaginatedResponse.md b/packages/csharp/docs/Models/Components/ContactIdPaginatedResponse.md
index e6cf4245..d4ab987f 100644
--- a/packages/csharp/docs/Models/Components/ContactIdPaginatedResponse.md
+++ b/packages/csharp/docs/Models/Components/ContactIdPaginatedResponse.md
@@ -7,5 +7,5 @@ The response from a request to get the ids of contacts in a contact group or rel
| Field | Type | Required | Description |
| ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- |
-| `Paging` | [PagingJson](../../Models/Components/PagingJson.md) | :heavy_check_mark: | Represents pagination information for a collection of resources. |
-| `Data` | List<[IdJson](../../Models/Components/IdJson.md)> | :heavy_check_mark: | Collection of contact ids. |
\ No newline at end of file
+| `Paging` | [Paging](../../Models/Components/Paging.md) | :heavy_check_mark: | Represents pagination information for a collection of resources. |
+| `Data` | List<[IdOnlyEntity](../../Models/Components/IdOnlyEntity.md)> | :heavy_check_mark: | Collection of contact ids. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ContactJson.md b/packages/csharp/docs/Models/Components/ContactJson.md
new file mode 100644
index 00000000..e2e8e019
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ContactJson.md
@@ -0,0 +1,28 @@
+# ContactJson
+
+The contact details.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- |
+| `ContactType` | [ContactTypeJson](../../Models/Components/ContactTypeJson.md) | :heavy_minus_sign: | The contact types used for the proposal. | |
+| `FirstName` | *string* | :heavy_minus_sign: | The first name of the contact. | Saurabh |
+| `LastName` | *string* | :heavy_minus_sign: | The last name of the contact. | Sachdeva |
+| `OrganizationWebsite` | *string* | :heavy_minus_sign: | The URL of the organization's website. | www.cvent.com |
+| `Organization` | *string* | :heavy_minus_sign: | The name of the organization. | Cvent |
+| `Title` | *string* | :heavy_minus_sign: | Designation of the contact. | Co-founder |
+| `Email` | *string* | :heavy_minus_sign: | The email address of the contact. | saurabhsachdeva@xyz.com |
+| `CountryCode` | *string* | :heavy_minus_sign: | The country code for the contact's phone number. | 1 |
+| `Phone` | *string* | :heavy_minus_sign: | The phone number of the organization. | 198752236 |
+| `Fax` | *string* | :heavy_minus_sign: | The organization's fax number. | 2487234567 |
+| `Mobile` | *string* | :heavy_minus_sign: | The mobile number of the contact. | 2487649053 |
+| `StreetAddress1` | *string* | :heavy_minus_sign: | Address line 1 of contact's street address. | 299 ABC Street |
+| `StreetAddress2` | *string* | :heavy_minus_sign: | Address line 2 of contact's street address. | Unit 1A |
+| `StreetAddress3` | *string* | :heavy_minus_sign: | Address line 3 of contact's street address. | Seattle, Washington |
+| `City` | *string* | :heavy_minus_sign: | The city of the contact. | Seattle |
+| `StateProvince` | [StateProvinceJson](../../Models/Components/StateProvinceJson.md) | :heavy_minus_sign: | The state province code used for contact information. | |
+| `PostalCode` | *string* | :heavy_minus_sign: | The postal code of the contact. | 110079 |
+| `Country` | [CountryJson](../../Models/Components/CountryJson.md) | :heavy_minus_sign: | ISO 3166 two-letter (alpha-2) country codes with some additional non-standard cvent specific codes. | |
+| `Notes` | *string* | :heavy_minus_sign: | Additional notes of the contact. | Available between 8am - 5pm. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ContactJson0.md b/packages/csharp/docs/Models/Components/ContactJson0.md
deleted file mode 100644
index d7319929..00000000
--- a/packages/csharp/docs/Models/Components/ContactJson0.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# ContactJson0
-
-Contact details of planner.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- |
-| `FirstName` | *string* | :heavy_check_mark: | The first name of the planner. | James |
-| `LastName` | *string* | :heavy_check_mark: | The last name of the planner. | West |
-| `Email` | *string* | :heavy_check_mark: | Email address of the planner. | jwest@example.com |
-| `Address` | [AddressJson0](../../Models/Components/AddressJson0.md) | :heavy_minus_sign: | Address details. | |
-| `CommissionRate` | *double* | :heavy_minus_sign: | Rate of commission chargeable by the planner. Precision up to 2 decimal places is accepted. | 10.75 |
-| `Commissionable` | *bool* | :heavy_minus_sign: | True indicates commission is to be charged from supplier. | |
-| `Phone` | *string* | :heavy_check_mark: | Phone number of the planner. | 555-555-5555 |
-| `OrganizationName` | *string* | :heavy_check_mark: | Name of the organization. | Five Star Planners Inc. |
-| `ThirdPartyPlanner` | *bool* | :heavy_minus_sign: | True indicates planner is a third party planner. | |
-| `PreferredContactMethods` | List<[ContactMethodsJson](../../Models/Components/ContactMethodsJson.md)> | :heavy_minus_sign: | List of preferred contact methods for the planner. | [
"CVENT"
] |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ContactJson1.md b/packages/csharp/docs/Models/Components/ContactJson1.md
deleted file mode 100644
index 51b34a78..00000000
--- a/packages/csharp/docs/Models/Components/ContactJson1.md
+++ /dev/null
@@ -1,28 +0,0 @@
-# ContactJson1
-
-The contact details.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- |
-| `ContactType` | [ContactTypeJson1](../../Models/Components/ContactTypeJson1.md) | :heavy_minus_sign: | The contact types used for the proposal. | |
-| `FirstName` | *string* | :heavy_minus_sign: | The first name of the contact. | Saurabh |
-| `LastName` | *string* | :heavy_minus_sign: | The last name of the contact. | Sachdeva |
-| `OrganizationWebsite` | *string* | :heavy_minus_sign: | The URL of the organization's website. | www.cvent.com |
-| `Organization` | *string* | :heavy_minus_sign: | The name of the organization. | Cvent |
-| `Title` | *string* | :heavy_minus_sign: | Designation of the contact. | Co-founder |
-| `Email` | *string* | :heavy_minus_sign: | The email address of the contact. | saurabhsachdeva@xyz.com |
-| `CountryCode` | *string* | :heavy_minus_sign: | The country code for the contact's phone number. | 1 |
-| `Phone` | *string* | :heavy_minus_sign: | The phone number of the organization. | 198752236 |
-| `Fax` | *string* | :heavy_minus_sign: | The organization's fax number. | 2487234567 |
-| `Mobile` | *string* | :heavy_minus_sign: | The mobile number of the contact. | 2487649053 |
-| `StreetAddress1` | *string* | :heavy_minus_sign: | Address line 1 of contact's street address. | 299 ABC Street |
-| `StreetAddress2` | *string* | :heavy_minus_sign: | Address line 2 of contact's street address. | Unit 1A |
-| `StreetAddress3` | *string* | :heavy_minus_sign: | Address line 3 of contact's street address. | Seattle, Washington |
-| `City` | *string* | :heavy_minus_sign: | The city of the contact. | Seattle |
-| `StateProvince` | [StateProvinceJson](../../Models/Components/StateProvinceJson.md) | :heavy_minus_sign: | The state province code used for contact information. | |
-| `PostalCode` | *string* | :heavy_minus_sign: | The postal code of the contact. | 110079 |
-| `Country` | [CountryJson](../../Models/Components/CountryJson.md) | :heavy_minus_sign: | ISO 3166 two-letter (alpha-2) country codes with some additional non-standard cvent specific codes. | |
-| `Notes` | *string* | :heavy_minus_sign: | Additional notes of the contact. | Available between 8am - 5pm. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ContactJson2.md b/packages/csharp/docs/Models/Components/ContactJson2.md
deleted file mode 100644
index 78bd8283..00000000
--- a/packages/csharp/docs/Models/Components/ContactJson2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# ContactJson2
-
-The contact details who watched a video
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------- | ------------------------------------------------- | ------------------------------------------------- | ------------------------------------------------- | ------------------------------------------------- |
-| `Id` | *string* | :heavy_minus_sign: | The unique ID of the contact who watched a video. | 123e4567-e89b-12d3-a456-426614174000 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ContactLinksInput.md b/packages/csharp/docs/Models/Components/ContactLinksInput.md
new file mode 100644
index 00000000..8bc6e327
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ContactLinksInput.md
@@ -0,0 +1,12 @@
+# ContactLinksInput
+
+Collection of social media links for the contact.
+
+
+## Fields
+
+| Field | Type | Required | Description |
+| ---------------------------------------- | ---------------------------------------- | ---------------------------------------- | ---------------------------------------- |
+| `TwitterUrl` | [Link](../../Models/Components/Link.md) | :heavy_minus_sign: | Represents a link to a related resource. |
+| `FacebookUrl` | [Link](../../Models/Components/Link.md) | :heavy_minus_sign: | Represents a link to a related resource. |
+| `LinkedInUrl` | [Link](../../Models/Components/Link.md) | :heavy_minus_sign: | Represents a link to a related resource. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ContactLinksJson.md b/packages/csharp/docs/Models/Components/ContactLinksJson.md
deleted file mode 100644
index 273bddad..00000000
--- a/packages/csharp/docs/Models/Components/ContactLinksJson.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# ContactLinksJson
-
-Collection of social media links for the contact.
-
-
-## Fields
-
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- |
-| `TwitterUrl` | [LinkJson](../../Models/Components/LinkJson.md) | :heavy_minus_sign: | Represents a link to a related resource. |
-| `FacebookUrl` | [LinkJson](../../Models/Components/LinkJson.md) | :heavy_minus_sign: | Represents a link to a related resource. |
-| `LinkedInUrl` | [LinkJson](../../Models/Components/LinkJson.md) | :heavy_minus_sign: | Represents a link to a related resource. |
-| `ProfilePicture` | [ContactLinksJsonLink](../../Models/Components/ContactLinksJsonLink.md) | :heavy_minus_sign: | Reference to a profile picture. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ContactLinksJsonInput.md b/packages/csharp/docs/Models/Components/ContactLinksJsonInput.md
deleted file mode 100644
index 7ee68a9a..00000000
--- a/packages/csharp/docs/Models/Components/ContactLinksJsonInput.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# ContactLinksJsonInput
-
-Collection of social media links for the contact.
-
-
-## Fields
-
-| Field | Type | Required | Description |
-| ----------------------------------------------- | ----------------------------------------------- | ----------------------------------------------- | ----------------------------------------------- |
-| `TwitterUrl` | [LinkJson](../../Models/Components/LinkJson.md) | :heavy_minus_sign: | Represents a link to a related resource. |
-| `FacebookUrl` | [LinkJson](../../Models/Components/LinkJson.md) | :heavy_minus_sign: | Represents a link to a related resource. |
-| `LinkedInUrl` | [LinkJson](../../Models/Components/LinkJson.md) | :heavy_minus_sign: | Represents a link to a related resource. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ContactLinksJsonLink.md b/packages/csharp/docs/Models/Components/ContactLinksJsonLink.md
deleted file mode 100644
index 755c9cff..00000000
--- a/packages/csharp/docs/Models/Components/ContactLinksJsonLink.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# ContactLinksJsonLink
-
-Reference to a profile picture.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ---------------------------------------- | ---------------------------------------- | ---------------------------------------- | ---------------------------------------- | ---------------------------------------- |
-| `Href` | *string* | :heavy_check_mark: | The url of the contact's profile picture | https://cvent.com/picture123 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ContactMembership.md b/packages/csharp/docs/Models/Components/ContactMembership.md
new file mode 100644
index 00000000..bacc24bb
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ContactMembership.md
@@ -0,0 +1,16 @@
+# ContactMembership
+
+Contact Membership information
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
+| `Type` | *string* | :heavy_minus_sign: | The type of membership the contact has signed up for. | Corporate Sponsor |
+| `Plan` | *string* | :heavy_minus_sign: | Describes the specific plan the contact has signed up for. | Gold Level |
+| `Joined` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The ISO-8601 formatted date the contact began their membership. | 2017-02-10 |
+| `Expiration` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The ISO-8601 formatted date the contact's membership will expire. | 2020-02-09 |
+| `LastRenewal` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The ISO-8601 formatted date the contact last renewed their membership. | 2019-02-08 |
+| `AmountDue` | *double* | :heavy_minus_sign: | The amount currently due for this membership. | 50.5 |
+| `ListInDirectory` | *bool* | :heavy_minus_sign: | Indicates if the member details should be included in the member directory. | false |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ContactMergeField.md b/packages/csharp/docs/Models/Components/ContactMergeField.md
new file mode 100644
index 00000000..e4feeaf3
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ContactMergeField.md
@@ -0,0 +1,11 @@
+# ContactMergeField
+
+A pair of a contact field name and a contact id.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
+| `FieldName` | *string* | :heavy_check_mark: | The name of a contact field. | firstName |
+| `ContactId` | *string* | :heavy_check_mark: | ID of the contact. | a45a3341-d30f-4bd9-bfd8-fbcdae37f0f2 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ContactMergeFieldJson.md b/packages/csharp/docs/Models/Components/ContactMergeFieldJson.md
deleted file mode 100644
index 99ea338d..00000000
--- a/packages/csharp/docs/Models/Components/ContactMergeFieldJson.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# ContactMergeFieldJson
-
-A pair of a contact field name and a contact id.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
-| `FieldName` | *string* | :heavy_check_mark: | The name of a contact field. | firstName |
-| `ContactId` | *string* | :heavy_check_mark: | ID of the contact. | a45a3341-d30f-4bd9-bfd8-fbcdae37f0f2 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ContactMethods.md b/packages/csharp/docs/Models/Components/ContactMethods.md
new file mode 100644
index 00000000..4afd3aa6
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ContactMethods.md
@@ -0,0 +1,22 @@
+# ContactMethods
+
+Medium for contacting the person.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = ContactMethods.Cvent;
+```
+
+
+## Values
+
+| Name | Value |
+| -------- | -------- |
+| `Cvent` | CVENT |
+| `Email` | EMAIL |
+| `Fax` | FAX |
+| `Mobile` | MOBILE |
+| `Phone` | PHONE |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ContactMethodsJson.md b/packages/csharp/docs/Models/Components/ContactMethodsJson.md
deleted file mode 100644
index f6add714..00000000
--- a/packages/csharp/docs/Models/Components/ContactMethodsJson.md
+++ /dev/null
@@ -1,22 +0,0 @@
-# ContactMethodsJson
-
-Medium for contacting the person.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = ContactMethodsJson.Cvent;
-```
-
-
-## Values
-
-| Name | Value |
-| -------- | -------- |
-| `Cvent` | CVENT |
-| `Email` | EMAIL |
-| `Fax` | FAX |
-| `Mobile` | MOBILE |
-| `Phone` | PHONE |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ContactObfuscationStatus.md b/packages/csharp/docs/Models/Components/ContactObfuscationStatus.md
index 71ca2f9e..39d3816a 100644
--- a/packages/csharp/docs/Models/Components/ContactObfuscationStatus.md
+++ b/packages/csharp/docs/Models/Components/ContactObfuscationStatus.md
@@ -7,6 +7,6 @@ Model representing an obfuscation status of a contact.
| Field | Type | Required | Description | Example |
| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Status` | [ContactObfuscationStatusTypeJson](../../Models/Components/ContactObfuscationStatusTypeJson.md) | :heavy_minus_sign: | Status of the request to obfuscate a contact.
INITIATED - The obfuscation request has been received.
QUEUED - The obfuscation request is currently waiting in the queue to be executed.
PROCESSING - The obfuscation request is currently being processed.
COMPLETED - The obfuscation request is complete.
FAILED - The obfuscation request failed due to an error. | INITIATED |
+| `Status` | [ContactObfuscationStatusType](../../Models/Components/ContactObfuscationStatusType.md) | :heavy_minus_sign: | Status of the request to obfuscate a contact.
INITIATED - The obfuscation request has been received.
QUEUED - The obfuscation request is currently waiting in the queue to be executed.
PROCESSING - The obfuscation request is currently being processed.
COMPLETED - The obfuscation request is complete.
FAILED - The obfuscation request failed due to an error. | INITIATED |
| `ObfuscateId` | *string* | :heavy_minus_sign: | The obfuscation job identifier. | |
-| `Contact` | [ContactIdJson](../../Models/Components/ContactIdJson.md) | :heavy_minus_sign: | A contact id. | |
\ No newline at end of file
+| `Contact` | [ContactId](../../Models/Components/ContactId.md) | :heavy_minus_sign: | A contact id. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ContactObfuscationStatusType.md b/packages/csharp/docs/Models/Components/ContactObfuscationStatusType.md
new file mode 100644
index 00000000..bfbc4579
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ContactObfuscationStatusType.md
@@ -0,0 +1,32 @@
+# ContactObfuscationStatusType
+
+Status of the request to obfuscate a contact.
+
+INITIATED - The obfuscation request has been received.
+
+QUEUED - The obfuscation request is currently waiting in the queue to be executed.
+
+PROCESSING - The obfuscation request is currently being processed.
+
+COMPLETED - The obfuscation request is complete.
+
+FAILED - The obfuscation request failed due to an error.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = ContactObfuscationStatusType.Initiated;
+```
+
+
+## Values
+
+| Name | Value |
+| ------------ | ------------ |
+| `Initiated` | INITIATED |
+| `Queued` | QUEUED |
+| `Processing` | PROCESSING |
+| `Completed` | COMPLETED |
+| `Failed` | FAILED |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ContactObfuscationStatusTypeJson.md b/packages/csharp/docs/Models/Components/ContactObfuscationStatusTypeJson.md
deleted file mode 100644
index 5c6984b0..00000000
--- a/packages/csharp/docs/Models/Components/ContactObfuscationStatusTypeJson.md
+++ /dev/null
@@ -1,32 +0,0 @@
-# ContactObfuscationStatusTypeJson
-
-Status of the request to obfuscate a contact.
-
-INITIATED - The obfuscation request has been received.
-
-QUEUED - The obfuscation request is currently waiting in the queue to be executed.
-
-PROCESSING - The obfuscation request is currently being processed.
-
-COMPLETED - The obfuscation request is complete.
-
-FAILED - The obfuscation request failed due to an error.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = ContactObfuscationStatusTypeJson.Initiated;
-```
-
-
-## Values
-
-| Name | Value |
-| ------------ | ------------ |
-| `Initiated` | INITIATED |
-| `Queued` | QUEUED |
-| `Processing` | PROCESSING |
-| `Completed` | COMPLETED |
-| `Failed` | FAILED |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ContactOptOut.md b/packages/csharp/docs/Models/Components/ContactOptOut.md
new file mode 100644
index 00000000..95119df1
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ContactOptOut.md
@@ -0,0 +1,12 @@
+# ContactOptOut
+
+Details of an opt-out for a Contact.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- |
+| `OptedOut` | *bool* | :heavy_minus_sign: | Used to denote if a contact has opted-out of receiving system generated emails. | false |
+| `Date` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when this contact was opted-out. This value can change if the contact opts out multiple times. | 2019-02-12T03:00:00Z |
+| `By` | [OptoutBy](../../Models/Components/OptoutBy.md) | :heavy_minus_sign: | This is used to denote how a contact is opt'd out of Cvent system. | Account User |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ContactOptOutInput.md b/packages/csharp/docs/Models/Components/ContactOptOutInput.md
new file mode 100644
index 00000000..08ec510f
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ContactOptOutInput.md
@@ -0,0 +1,10 @@
+# ContactOptOutInput
+
+Details of an opt-out for a Contact.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- |
+| `OptedOut` | *bool* | :heavy_minus_sign: | Used to denote if a contact has opted-out of receiving system generated emails. | false |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ContactPaginatedResponse.md b/packages/csharp/docs/Models/Components/ContactPaginatedResponse.md
index 013465b0..75eab90b 100644
--- a/packages/csharp/docs/Models/Components/ContactPaginatedResponse.md
+++ b/packages/csharp/docs/Models/Components/ContactPaginatedResponse.md
@@ -7,5 +7,5 @@ The response from a request to get the list of contacts. This includes the pagi
| Field | Type | Required | Description |
| ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- |
-| `Paging` | [PagingJson](../../Models/Components/PagingJson.md) | :heavy_check_mark: | Represents pagination information for a collection of resources. |
-| `Data` | List<[ZeroAllOf7](../../Models/Components/ZeroAllOf7.md)> | :heavy_check_mark: | Collection of contacts. |
\ No newline at end of file
+| `Paging` | [Paging](../../Models/Components/Paging.md) | :heavy_check_mark: | Represents pagination information for a collection of resources. |
+| `Data` | List<[Contact](../../Models/Components/Contact.md)> | :heavy_check_mark: | Collection of contacts. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ContactPatch.md b/packages/csharp/docs/Models/Components/ContactPatch.md
index f4dd1c55..9a76984b 100644
--- a/packages/csharp/docs/Models/Components/ContactPatch.md
+++ b/packages/csharp/docs/Models/Components/ContactPatch.md
@@ -17,24 +17,24 @@ This entity is used to represent a single item that is requested for a contact p
| `Company` | *object* | :heavy_minus_sign: | N/A | |
| `Designation` | *string* | :heavy_minus_sign: | The designation of the contact, typically an award or credential. | CPA |
| `Title` | *object* | :heavy_minus_sign: | N/A | |
-| `Type` | [AttendeeContactTypeJsonInput](../../Models/Components/AttendeeContactTypeJsonInput.md) | :heavy_minus_sign: | Contains details related to the attendee's contact type. | |
-| `PrimaryAddressType` | [AddressTypeJson](../../Models/Components/AddressTypeJson.md) | :heavy_minus_sign: | The type of address. | Home |
+| `Type` | [AttendeeContactTypeInput](../../Models/Components/AttendeeContactTypeInput.md) | :heavy_minus_sign: | Contains details related to the attendee's contact type. | |
+| `PrimaryAddressType` | [AddressType](../../Models/Components/AddressType.md) | :heavy_minus_sign: | The type of address. | Home |
| `HomeAddress` | [HomeAddress](../../Models/Components/HomeAddress.md) | :heavy_minus_sign: | N/A | |
| `HomePhone` | *object* | :heavy_minus_sign: | N/A | |
| `HomeFax` | *string* | :heavy_minus_sign: | The fax number of the contact at their place of residence. | 555-555-5555 |
-| `WorkAddress` | [AddressJsonInput](../../Models/Components/AddressJsonInput.md) | :heavy_minus_sign: | Contact address details. | |
+| `WorkAddress` | [AddressInput](../../Models/Components/AddressInput.md) | :heavy_minus_sign: | Contact address details. | |
| `WorkPhone` | *string* | :heavy_minus_sign: | The phone number of the contact at their place of work. | 555-555-5555 |
| `WorkFax` | *string* | :heavy_minus_sign: | The fax number of the contact at their place of work. | 555-555-5555 |
| `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 as part of the ID. | system-a-00000000-0000-0000-0000-000000000000 |
| `MobilePhone` | *string* | :heavy_minus_sign: | The contact's mobile phone number. | 555-555-5555 |
| `Prefix` | *string* | :heavy_minus_sign: | Denotes what is traditionally a title of an individual. | Mr. |
| `Pager` | *string* | :heavy_minus_sign: | The pager number of the contact. | 555-555-5555 |
-| `OptOut` | [OptOutJsonInput](../../Models/Components/OptOutJsonInput.md) | :heavy_minus_sign: | Details of an opt-out for a Contact. | |
+| `OptOut` | [ContactOptOutInput](../../Models/Components/ContactOptOutInput.md) | :heavy_minus_sign: | Details of an opt-out for a Contact. | |
| `Npi` | *string* | :heavy_minus_sign: | Unique 10-digit identification number issued by the Centers for Medicare and Medicaid Services for health care providers in the United States. | 5555555555 |
| `Links` | [ContactPatchLinks](../../Models/Components/ContactPatchLinks.md) | :heavy_minus_sign: | N/A | |
| `DateOfBirth` | *object* | :heavy_minus_sign: | N/A | |
| ~~`PassportNumber`~~ | *string* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
The passport number of the contact.
Reading and writing of this field require the `event/contacts:read-sensitive` and `event/contacts:write-sensitive` scopes respectively. This field has been deprecated. Instead, use the passport.number field. | 123456789 |
-| `Passport` | [PassportJsonInput](../../Models/Components/PassportJsonInput.md) | :heavy_minus_sign: | This entity represents a contact's passport information. | |
+| `Passport` | [PassportInput](../../Models/Components/PassportInput.md) | :heavy_minus_sign: | This entity represents a contact's passport information. | |
| `SocialSecurityNumber` | *object* | :heavy_minus_sign: | N/A | |
| `NationalIdentificationNumber` | *string* | :heavy_minus_sign: | The national identification number of the contact.
Reading and writing of this field require the `event/contacts:read-sensitive` and `event/contacts:write-sensitive` scopes respectively. | 123456789 |
| `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 |
diff --git a/packages/csharp/docs/Models/Components/ContactType.md b/packages/csharp/docs/Models/Components/ContactType.md
new file mode 100644
index 00000000..4999a8fd
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ContactType.md
@@ -0,0 +1,14 @@
+# ContactType
+
+This entity represents a contact type at contact level.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- |
+| `Id` | *string* | :heavy_check_mark: | The ID of the contact type. | |
+| `Code` | *string* | :heavy_check_mark: | The contact type code. Must be unique in the account. | VIP |
+| `Name` | *string* | :heavy_check_mark: | Name of the contact type. | VIP Attendee |
+| `Description` | *string* | :heavy_minus_sign: | Description of the contact type. | Very important attendee. |
+| `Active` | *bool* | :heavy_minus_sign: | Indicates whether the contact type is active. | true |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ContactTypeJson.md b/packages/csharp/docs/Models/Components/ContactTypeJson.md
index 5dc4a1b4..40c90b5d 100644
--- a/packages/csharp/docs/Models/Components/ContactTypeJson.md
+++ b/packages/csharp/docs/Models/Components/ContactTypeJson.md
@@ -1,14 +1,19 @@
# ContactTypeJson
-This entity represents a contact type at contact level.
+The contact types used for the proposal.
+## Example Usage
-## Fields
+```csharp
+using Cvent.SDK.Models.Components;
-| Field | Type | Required | Description | Example |
-| ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- |
-| `Id` | *string* | :heavy_check_mark: | The ID of the contact type. | |
-| `Code` | *string* | :heavy_check_mark: | The contact type code. Must be unique in the account. | VIP |
-| `Name` | *string* | :heavy_check_mark: | Name of the contact type. | VIP Attendee |
-| `Description` | *string* | :heavy_minus_sign: | Description of the contact type. | Very important attendee. |
-| `Active` | *bool* | :heavy_minus_sign: | Indicates whether the contact type is active. | true |
\ No newline at end of file
+var value = ContactTypeJson.Primary;
+```
+
+
+## Values
+
+| Name | Value |
+| ----------- | ----------- |
+| `Primary` | PRIMARY |
+| `Secondary` | SECONDARY |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ContactTypeJson1.md b/packages/csharp/docs/Models/Components/ContactTypeJson1.md
deleted file mode 100644
index 26f47837..00000000
--- a/packages/csharp/docs/Models/Components/ContactTypeJson1.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# ContactTypeJson1
-
-The contact types used for the proposal.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = ContactTypeJson1.Primary;
-```
-
-
-## Values
-
-| Name | Value |
-| ----------- | ----------- |
-| `Primary` | PRIMARY |
-| `Secondary` | SECONDARY |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ContactTypePaginatedResponse.md b/packages/csharp/docs/Models/Components/ContactTypePaginatedResponse.md
index 5b968ebb..a839aafe 100644
--- a/packages/csharp/docs/Models/Components/ContactTypePaginatedResponse.md
+++ b/packages/csharp/docs/Models/Components/ContactTypePaginatedResponse.md
@@ -5,7 +5,7 @@ The response from a request to get the list of contact types. This includes the
## Fields
-| Field | Type | Required | Description |
-| ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- |
-| `Paging` | [PagingJson](../../Models/Components/PagingJson.md) | :heavy_check_mark: | Represents pagination information for a collection of resources. |
-| `Data` | List<[ContactTypeJson](../../Models/Components/ContactTypeJson.md)> | :heavy_check_mark: | Collection of contact types. |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- |
+| `Paging` | [Paging](../../Models/Components/Paging.md) | :heavy_check_mark: | Represents pagination information for a collection of resources. |
+| `Data` | List<[ContactType](../../Models/Components/ContactType.md)> | :heavy_check_mark: | Collection of contact types. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ContactUpdate.md b/packages/csharp/docs/Models/Components/ContactUpdate.md
index ff160872..f1a71e95 100644
--- a/packages/csharp/docs/Models/Components/ContactUpdate.md
+++ b/packages/csharp/docs/Models/Components/ContactUpdate.md
@@ -13,28 +13,28 @@ This entity is used to represent a single item that is requested for a contact u
| `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 can be cc'd on email communications. | h.porter@tesing.com |
-| `Gender` | [GenderJson](../../Models/Components/GenderJson.md) | :heavy_minus_sign: | The gender of the contact. | Male |
+| `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, typically an award or credential. | CPA |
| `Title` | *string* | :heavy_minus_sign: | The job title of the contact. | Event Planner |
-| `Type` | [AttendeeContactTypeJsonInput](../../Models/Components/AttendeeContactTypeJsonInput.md) | :heavy_minus_sign: | Contains details related to the attendee's contact type. | |
-| `PrimaryAddressType` | [AddressTypeJson](../../Models/Components/AddressTypeJson.md) | :heavy_minus_sign: | The type of address. | Home |
-| `HomeAddress` | [AddressJsonInput](../../Models/Components/AddressJsonInput.md) | :heavy_minus_sign: | Contact address details. | |
+| `Type` | [AttendeeContactTypeInput](../../Models/Components/AttendeeContactTypeInput.md) | :heavy_minus_sign: | Contains details related to the attendee's contact type. | |
+| `PrimaryAddressType` | [AddressType](../../Models/Components/AddressType.md) | :heavy_minus_sign: | The type of address. | Home |
+| `HomeAddress` | [AddressInput](../../Models/Components/AddressInput.md) | :heavy_minus_sign: | Contact address details. | |
| `HomePhone` | *string* | :heavy_minus_sign: | The phone number of the contact at their place of residence. | 555-555-5555 |
| `HomeFax` | *string* | :heavy_minus_sign: | The fax number of the contact at their place of residence. | 555-555-5555 |
-| `WorkAddress` | [AddressJsonInput](../../Models/Components/AddressJsonInput.md) | :heavy_minus_sign: | Contact address details. | |
+| `WorkAddress` | [AddressInput](../../Models/Components/AddressInput.md) | :heavy_minus_sign: | Contact address details. | |
| `WorkPhone` | *string* | :heavy_minus_sign: | The phone number of the contact at their place of work. | 555-555-5555 |
| `WorkFax` | *string* | :heavy_minus_sign: | The fax number of the contact at their place of work. | 555-555-5555 |
| `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 as part of the ID. | system-a-00000000-0000-0000-0000-000000000000 |
| `MobilePhone` | *string* | :heavy_minus_sign: | The contact's mobile phone number. | 555-555-5555 |
| `Prefix` | *string* | :heavy_minus_sign: | Denotes what is traditionally a title of an individual. | Mr. |
| `Pager` | *string* | :heavy_minus_sign: | The pager number of the contact. | 555-555-5555 |
-| `OptOut` | [OptOutJsonInput](../../Models/Components/OptOutJsonInput.md) | :heavy_minus_sign: | Details of an opt-out for a Contact. | |
+| `OptOut` | [ContactOptOutInput](../../Models/Components/ContactOptOutInput.md) | :heavy_minus_sign: | Details of an opt-out for a Contact. | |
| `Npi` | *string* | :heavy_minus_sign: | Unique 10-digit identification number issued by the Centers for Medicare and Medicaid Services for health care providers in the United States. | 5555555555 |
-| `Links` | [ContactLinksJsonInput](../../Models/Components/ContactLinksJsonInput.md) | :heavy_minus_sign: | Collection of social media links for the contact. | |
+| `Links` | [ContactLinksInput](../../Models/Components/ContactLinksInput.md) | :heavy_minus_sign: | Collection of social media links for the contact. | |
| `DateOfBirth` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The date of birth of the contact.
Reading and writing of this field require the `event/contacts:read-sensitive` and `event/contacts:write-sensitive` scopes respectively. | 1990-01-01 |
| ~~`PassportNumber`~~ | *string* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
The passport number of the contact.
Reading and writing of this field require the `event/contacts:read-sensitive` and `event/contacts:write-sensitive` scopes respectively. This field has been deprecated. Instead, use the passport.number field. | 123456789 |
-| `Passport` | [PassportJsonInput](../../Models/Components/PassportJsonInput.md) | :heavy_minus_sign: | This entity represents a contact's passport information. | |
+| `Passport` | [PassportInput](../../Models/Components/PassportInput.md) | :heavy_minus_sign: | This entity represents a contact's passport information. | |
| `SocialSecurityNumber` | *string* | :heavy_minus_sign: | The social security number of the contact.
Reading and writing of this field require the `event/contacts:read-sensitive` and `event/contacts:write-sensitive` scopes respectively. | 123-45-6789 |
| `NationalIdentificationNumber` | *string* | :heavy_minus_sign: | The national identification number of the contact.
Reading and writing of this field require the `event/contacts:read-sensitive` and `event/contacts:write-sensitive` scopes respectively. | 123456789 |
| `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 |
diff --git a/packages/csharp/docs/Models/Components/CreateTransactionResponse.md b/packages/csharp/docs/Models/Components/CreateTransactionResponse.md
index b004e3ea..df41dc6e 100644
--- a/packages/csharp/docs/Models/Components/CreateTransactionResponse.md
+++ b/packages/csharp/docs/Models/Components/CreateTransactionResponse.md
@@ -13,7 +13,7 @@ Denotes the details of the transaction created for an attendee.
| `LastModifiedBy` | *string* | :heavy_minus_sign: | The identifier of the user that last updated this record. | hporter |
| `Id` | *string* | :heavy_minus_sign: | A unique ID representing the transaction. | 18549806a69f4727a315f2199a08d8b6 |
| `Event` | [Event2](../../Models/Components/Event2.md) | :heavy_minus_sign: | The reference to the event. Contains only the ID of the event. | |
-| `Attendee` | [Attendee2](../../Models/Components/Attendee2.md) | :heavy_minus_sign: | The reference to the attendee. Contains only the ID of the attendee. | |
+| `Attendee` | [Attendee](../../Models/Components/Attendee.md) | :heavy_minus_sign: | The reference to the attendee. Contains only the ID of the attendee. | |
| `Orders` | List<[Order](../../Models/Components/Order.md)> | :heavy_minus_sign: | This denotes the order IDs corresponding to this transaction. | [
{
"id": "7c4a5acd-9610-4c42-bd10-10e279e69ddc"
},
{
"id": "b479e85e-b5b0-49e7-9f11-65bad23350b1"
},
{
"id": "d1c24041-9ca4-4afd-a2f8-a0905d935aa9"
}
] |
| `JournalNumber` | *string* | :heavy_minus_sign: | Journal number for this transaction. Represents an identifier for the transaction in your bank or ledger. | PZNK2PKZH4N |
| `PaymentType` | [PaymentType](../../Models/Components/PaymentType.md) | :heavy_check_mark: | Denotes the type of transaction you're creating. Offline Charge: The transaction is a payment made to the attendee's order electronically in another system of record, or paid in physical currency. To create an offline charge, the attendee must have a balance owing. Offline Refund: The transaction is a refund issued to the attendee electronically in another system of record, or paid in physical currency. To create an offline refund, the attendee must have a balance due. | Offline Charge |
diff --git a/packages/csharp/docs/Models/Components/CreateTransactionResponseInput.md b/packages/csharp/docs/Models/Components/CreateTransactionResponseInput.md
index 298570fb..85938f5b 100644
--- a/packages/csharp/docs/Models/Components/CreateTransactionResponseInput.md
+++ b/packages/csharp/docs/Models/Components/CreateTransactionResponseInput.md
@@ -8,7 +8,7 @@ Denotes the details of the transaction created for an attendee.
| Field | Type | Required | Description | Example |
| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `Event` | [Event2](../../Models/Components/Event2.md) | :heavy_minus_sign: | The reference to the event. Contains only the ID of the event. | |
-| `Attendee` | [Attendee2](../../Models/Components/Attendee2.md) | :heavy_minus_sign: | The reference to the attendee. Contains only the ID of the attendee. | |
+| `Attendee` | [Attendee](../../Models/Components/Attendee.md) | :heavy_minus_sign: | The reference to the attendee. Contains only the ID of the attendee. | |
| `PaymentType` | [PaymentType](../../Models/Components/PaymentType.md) | :heavy_check_mark: | Denotes the type of transaction you're creating. Offline Charge: The transaction is a payment made to the attendee's order electronically in another system of record, or paid in physical currency. To create an offline charge, the attendee must have a balance owing. Offline Refund: The transaction is a refund issued to the attendee electronically in another system of record, or paid in physical currency. To create an offline refund, the attendee must have a balance due. | Offline Charge |
| `PaymentMethod` | [PaymentMethod](../../Models/Components/PaymentMethod.md) | :heavy_check_mark: | This denotes the payment method in a transaction. | Mastercard |
| `Date` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_check_mark: | The ISO 8601 zoned date time when attendee made the transaction. | 2018-01-13T02:00:00Z |
diff --git a/packages/csharp/docs/Models/Components/CreatedBy.md b/packages/csharp/docs/Models/Components/CreatedBy.md
new file mode 100644
index 00000000..b42c5174
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/CreatedBy.md
@@ -0,0 +1,27 @@
+# CreatedBy
+
+Denotes how the compliance request was created.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = CreatedBy.Attendee;
+```
+
+
+## Values
+
+| Name | Value |
+| ------------------- | ------------------- |
+| `Attendee` | ATTENDEE |
+| `Planner` | PLANNER |
+| `Import` | IMPORT |
+| `SoapApi` | SOAP_API |
+| `RestApi` | REST_API |
+| `Marketo` | MARKETO |
+| `Saleforce` | SALEFORCE |
+| `VideoCenterMember` | VIDEO_CENTER_MEMBER |
+| `Respondent` | RESPONDENT |
+| `NotSet` | NOT_SET |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/CurrencyJson1.md b/packages/csharp/docs/Models/Components/CurrencyJson1.md
deleted file mode 100644
index f3475ca5..00000000
--- a/packages/csharp/docs/Models/Components/CurrencyJson1.md
+++ /dev/null
@@ -1,184 +0,0 @@
-# CurrencyJson1
-
-The ISO 4217 standard format currency code used for RFPs.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = CurrencyJson1.Usd;
-```
-
-
-## Values
-
-| Name | Value |
-| ----- | ----- |
-| `Usd` | USD |
-| `Cad` | CAD |
-| `Aud` | AUD |
-| `Eur` | EUR |
-| `Gbp` | GBP |
-| `Hkd` | HKD |
-| `Nzd` | NZD |
-| `Aed` | AED |
-| `Nok` | NOK |
-| `Inr` | INR |
-| `Mxn` | MXN |
-| `Sek` | SEK |
-| `Dkk` | DKK |
-| `Myr` | MYR |
-| `Jpy` | JPY |
-| `Sgd` | SGD |
-| `Thb` | THB |
-| `Idr` | IDR |
-| `Krw` | KRW |
-| `Cny` | CNY |
-| `Twd` | TWD |
-| `Rub` | RUB |
-| `Chf` | CHF |
-| `Czk` | CZK |
-| `Huf` | HUF |
-| `Qar` | QAR |
-| `Zar` | ZAR |
-| `Ron` | RON |
-| `Hrk` | HRK |
-| `Try` | TRY |
-| `Brl` | BRL |
-| `Php` | PHP |
-| `Sar` | SAR |
-| `Pln` | PLN |
-| `Ars` | ARS |
-| `Awg` | AWG |
-| `Azn` | AZN |
-| `Bsd` | BSD |
-| `Bbd` | BBD |
-| `Bmd` | BMD |
-| `Clp` | CLP |
-| `Cop` | COP |
-| `Crc` | CRC |
-| `Dop` | DOP |
-| `Xcd` | XCD |
-| `Ils` | ILS |
-| `Jmd` | JMD |
-| `Lvl` | LVL |
-| `Ltl` | LTL |
-| `Mdl` | MDL |
-| `Ang` | ANG |
-| `Omr` | OMR |
-| `Ttd` | TTD |
-| `Uah` | UAH |
-| `Uyu` | UYU |
-| `Rsd` | RSD |
-| `Afn` | AFN |
-| `Amd` | AMD |
-| `Aoa` | AOA |
-| `Bam` | BAM |
-| `Bdt` | BDT |
-| `Bgn` | BGN |
-| `Bhd` | BHD |
-| `Bob` | BOB |
-| `Dzd` | DZD |
-| `Eek` | EEK |
-| `Egp` | EGP |
-| `Fjd` | FJD |
-| `Gtq` | GTQ |
-| `Hnl` | HNL |
-| `Isk` | ISK |
-| `Jod` | JOD |
-| `Kyd` | KYD |
-| `Kzt` | KZT |
-| `Lbp` | LBP |
-| `Mad` | MAD |
-| `Ngn` | NGN |
-| `Nio` | NIO |
-| `Esp` | ESP |
-| `Frf` | FRF |
-| `Pab` | PAB |
-| `Pen` | PEN |
-| `Pkr` | PKR |
-| `Pyg` | PYG |
-| `Svc` | SVC |
-| `Syp` | SYP |
-| `Vef` | VEF |
-| `Vnd` | VND |
-| `Xpf` | XPF |
-| `Gyd` | GYD |
-| `Mop` | MOP |
-| `Pgk` | PGK |
-| `Xof` | XOF |
-| `Xaf` | XAF |
-| `Bzd` | BZD |
-| `Byr` | BYR |
-| `Bwp` | BWP |
-| `Bnd` | BND |
-| `Bif` | BIF |
-| `Khr` | KHR |
-| `Cve` | CVE |
-| `Kmf` | KMF |
-| `Cdf` | CDF |
-| `Djf` | DJF |
-| `Ern` | ERN |
-| `Fkp` | FKP |
-| `Gmd` | GMD |
-| `Gel` | GEL |
-| `Ghs` | GHS |
-| `Gip` | GIP |
-| `Gnf` | GNF |
-| `Htg` | HTG |
-| `Kes` | KES |
-| `Kwd` | KWD |
-| `Kgs` | KGS |
-| `Lak` | LAK |
-| `Lrd` | LRD |
-| `Mkd` | MKD |
-| `Mga` | MGA |
-| `Mwk` | MWK |
-| `Mvr` | MVR |
-| `Mro` | MRO |
-| `Mur` | MUR |
-| `Mnt` | MNT |
-| `Mzn` | MZN |
-| `Mmk` | MMK |
-| `Nad` | NAD |
-| `Npr` | NPR |
-| `Rwf` | RWF |
-| `Shp` | SHP |
-| `Wst` | WST |
-| `Std` | STD |
-| `Sll` | SLL |
-| `Sbd` | SBD |
-| `Sos` | SOS |
-| `Lkr` | LKR |
-| `Srd` | SRD |
-| `Szl` | SZL |
-| `Top` | TOP |
-| `Tnd` | TND |
-| `Ugx` | UGX |
-| `Uzs` | UZS |
-| `Vuv` | VUV |
-| `Yer` | YER |
-| `Zmk` | ZMK |
-| `Zwd` | ZWD |
-| `Sr` | SR |
-| `Etb` | ETB |
-| `Gh` | GH |
-| `Gwp` | GWP |
-| `Iqd` | IQD |
-| `Irr` | IRR |
-| `Kpw` | KPW |
-| `Lsl` | LSL |
-| `Rol` | ROL |
-| `Sdg` | SDG |
-| `Skk` | SKK |
-| `Tjs` | TJS |
-| `Tmt` | TMT |
-| `Tzs` | TZS |
-| `All` | ALL |
-| `Btn` | BTN |
-| `Cup` | CUP |
-| `Ld` | LD |
-| `Scr` | SCR |
-| `Zmw` | ZMW |
-| `Zwl` | ZWL |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/CurrencyJson2.md b/packages/csharp/docs/Models/Components/CurrencyJson2.md
new file mode 100644
index 00000000..c500c835
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/CurrencyJson2.md
@@ -0,0 +1,184 @@
+# CurrencyJson2
+
+The ISO 4217 standard format currency code used for RFPs.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = CurrencyJson2.Usd;
+```
+
+
+## Values
+
+| Name | Value |
+| ----- | ----- |
+| `Usd` | USD |
+| `Cad` | CAD |
+| `Aud` | AUD |
+| `Eur` | EUR |
+| `Gbp` | GBP |
+| `Hkd` | HKD |
+| `Nzd` | NZD |
+| `Aed` | AED |
+| `Nok` | NOK |
+| `Inr` | INR |
+| `Mxn` | MXN |
+| `Sek` | SEK |
+| `Dkk` | DKK |
+| `Myr` | MYR |
+| `Jpy` | JPY |
+| `Sgd` | SGD |
+| `Thb` | THB |
+| `Idr` | IDR |
+| `Krw` | KRW |
+| `Cny` | CNY |
+| `Twd` | TWD |
+| `Rub` | RUB |
+| `Chf` | CHF |
+| `Czk` | CZK |
+| `Huf` | HUF |
+| `Qar` | QAR |
+| `Zar` | ZAR |
+| `Ron` | RON |
+| `Hrk` | HRK |
+| `Try` | TRY |
+| `Brl` | BRL |
+| `Php` | PHP |
+| `Sar` | SAR |
+| `Pln` | PLN |
+| `Ars` | ARS |
+| `Awg` | AWG |
+| `Azn` | AZN |
+| `Bsd` | BSD |
+| `Bbd` | BBD |
+| `Bmd` | BMD |
+| `Clp` | CLP |
+| `Cop` | COP |
+| `Crc` | CRC |
+| `Dop` | DOP |
+| `Xcd` | XCD |
+| `Ils` | ILS |
+| `Jmd` | JMD |
+| `Lvl` | LVL |
+| `Ltl` | LTL |
+| `Mdl` | MDL |
+| `Ang` | ANG |
+| `Omr` | OMR |
+| `Ttd` | TTD |
+| `Uah` | UAH |
+| `Uyu` | UYU |
+| `Rsd` | RSD |
+| `Afn` | AFN |
+| `Amd` | AMD |
+| `Aoa` | AOA |
+| `Bam` | BAM |
+| `Bdt` | BDT |
+| `Bgn` | BGN |
+| `Bhd` | BHD |
+| `Bob` | BOB |
+| `Dzd` | DZD |
+| `Eek` | EEK |
+| `Egp` | EGP |
+| `Fjd` | FJD |
+| `Gtq` | GTQ |
+| `Hnl` | HNL |
+| `Isk` | ISK |
+| `Jod` | JOD |
+| `Kyd` | KYD |
+| `Kzt` | KZT |
+| `Lbp` | LBP |
+| `Mad` | MAD |
+| `Ngn` | NGN |
+| `Nio` | NIO |
+| `Esp` | ESP |
+| `Frf` | FRF |
+| `Pab` | PAB |
+| `Pen` | PEN |
+| `Pkr` | PKR |
+| `Pyg` | PYG |
+| `Svc` | SVC |
+| `Syp` | SYP |
+| `Vef` | VEF |
+| `Vnd` | VND |
+| `Xpf` | XPF |
+| `Gyd` | GYD |
+| `Mop` | MOP |
+| `Pgk` | PGK |
+| `Xof` | XOF |
+| `Xaf` | XAF |
+| `Bzd` | BZD |
+| `Byr` | BYR |
+| `Bwp` | BWP |
+| `Bnd` | BND |
+| `Bif` | BIF |
+| `Khr` | KHR |
+| `Cve` | CVE |
+| `Kmf` | KMF |
+| `Cdf` | CDF |
+| `Djf` | DJF |
+| `Ern` | ERN |
+| `Fkp` | FKP |
+| `Gmd` | GMD |
+| `Gel` | GEL |
+| `Ghs` | GHS |
+| `Gip` | GIP |
+| `Gnf` | GNF |
+| `Htg` | HTG |
+| `Kes` | KES |
+| `Kwd` | KWD |
+| `Kgs` | KGS |
+| `Lak` | LAK |
+| `Lrd` | LRD |
+| `Mkd` | MKD |
+| `Mga` | MGA |
+| `Mwk` | MWK |
+| `Mvr` | MVR |
+| `Mro` | MRO |
+| `Mur` | MUR |
+| `Mnt` | MNT |
+| `Mzn` | MZN |
+| `Mmk` | MMK |
+| `Nad` | NAD |
+| `Npr` | NPR |
+| `Rwf` | RWF |
+| `Shp` | SHP |
+| `Wst` | WST |
+| `Std` | STD |
+| `Sll` | SLL |
+| `Sbd` | SBD |
+| `Sos` | SOS |
+| `Lkr` | LKR |
+| `Srd` | SRD |
+| `Szl` | SZL |
+| `Top` | TOP |
+| `Tnd` | TND |
+| `Ugx` | UGX |
+| `Uzs` | UZS |
+| `Vuv` | VUV |
+| `Yer` | YER |
+| `Zmk` | ZMK |
+| `Zwd` | ZWD |
+| `Sr` | SR |
+| `Etb` | ETB |
+| `Gh` | GH |
+| `Gwp` | GWP |
+| `Iqd` | IQD |
+| `Irr` | IRR |
+| `Kpw` | KPW |
+| `Lsl` | LSL |
+| `Rol` | ROL |
+| `Sdg` | SDG |
+| `Skk` | SKK |
+| `Tjs` | TJS |
+| `Tmt` | TMT |
+| `Tzs` | TZS |
+| `All` | ALL |
+| `Btn` | BTN |
+| `Cup` | CUP |
+| `Ld` | LD |
+| `Scr` | SCR |
+| `Zmw` | ZMW |
+| `Zwl` | ZWL |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/CustomField3.md b/packages/csharp/docs/Models/Components/CustomField3.md
index d913a56e..3c19c3aa 100644
--- a/packages/csharp/docs/Models/Components/CustomField3.md
+++ b/packages/csharp/docs/Models/Components/CustomField3.md
@@ -11,7 +11,7 @@ This is used to denote the custom field data.
| `Name` | *string* | :heavy_check_mark: | The actual text of the custom field. | What is a your favorite color? |
| `Code` | *string* | :heavy_check_mark: | Code to uniquely identify custom field. | FAVORITE_COLOR_CODE |
| `Required` | *bool* | :heavy_minus_sign: | Whether answer to custom field is mandatory or not. | true |
-| `Type` | [CustomFieldTypeJson1](../../Models/Components/CustomFieldTypeJson1.md) | :heavy_check_mark: | This is used to denote the type of data collected by a custom field. Auto-Increment custom fields are read only. | Open Ended Text - One Line |
+| `Type` | [CustomFieldTypeJson](../../Models/Components/CustomFieldTypeJson.md) | :heavy_check_mark: | This is used to denote the type of data collected by a custom field. Auto-Increment custom fields are read only. | Open Ended Text - One Line |
| `Details` | [CustomField3Details](../../Models/Components/CustomField3Details.md) | :heavy_minus_sign: | Type-specific details of the custom-field. | |
| `HelpText` | *string* | :heavy_minus_sign: | The help text of the custom field. | Enter your favorite color. |
| `DisplayInDataTag` | [DisplayInDataTagJson](../../Models/Components/DisplayInDataTagJson.md) | :heavy_minus_sign: | This option allows you to choose whether to display the custom field in emails. The field name and the value entered by the invitee are used in the My Agenda data tag. You can set the custom field to display always or only when answered. Only applicable to session custom fields. | No |
diff --git a/packages/csharp/docs/Models/Components/CustomFieldAnswers.md b/packages/csharp/docs/Models/Components/CustomFieldAnswers.md
new file mode 100644
index 00000000..a5262f23
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/CustomFieldAnswers.md
@@ -0,0 +1,11 @@
+# CustomFieldAnswers
+
+This object contains RFP custom fields attributes only.
+
+
+## Fields
+
+| Field | Type | Required | Description |
+| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `CustomField` | [ExpandableCustomObject](../../Models/Components/ExpandableCustomObject.md) | :heavy_check_mark: | An object containing custom field data. By default, contains only the field ID.
This is an **expandable** object. When requested via the `expand` query parameter with value `customField`, this object expands to include all properties of a custom field definition.
See the `expand` parameter documentation and refer to the [Get Custom Field](#tag/Custom-Fields/operation/getCustomField) API for the complete expanded schema. |
+| `Answers` | List<*string*> | :heavy_check_mark: | List of answers for the RFP custom field. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/CustomFieldJson.md b/packages/csharp/docs/Models/Components/CustomFieldJson.md
new file mode 100644
index 00000000..fc238aeb
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/CustomFieldJson.md
@@ -0,0 +1,14 @@
+# CustomFieldJson
+
+A Custom Field
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- |
+| `Id` | *string* | :heavy_check_mark: | The unique ID representing this custom field. | |
+| `Name` | *string* | :heavy_minus_sign: | The actual text of the custom field. | What is a your favorite color? |
+| `Type` | [CustomFieldJsonCustomFieldType](../../Models/Components/CustomFieldJsonCustomFieldType.md) | :heavy_minus_sign: | The type of data collected by a custom field. | MultiSelect |
+| `Value` | List<*string*> | :heavy_check_mark: | The set of answers or possible answers to a question. | [
"Choice C",
"Choice A"
] |
+| `Order` | *long* | :heavy_minus_sign: | The order of this question in the bigger list of questions. | 1 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/CustomFieldJson1.md b/packages/csharp/docs/Models/Components/CustomFieldJson1.md
index 3235fb6c..cf1aba23 100644
--- a/packages/csharp/docs/Models/Components/CustomFieldJson1.md
+++ b/packages/csharp/docs/Models/Components/CustomFieldJson1.md
@@ -1,14 +1,14 @@
# CustomFieldJson1
-A Custom Field
+A survey custom field.
## Fields
| Field | Type | Required | Description | Example |
| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_check_mark: | The unique ID representing this custom field. | |
+| `Id` | *string* | :heavy_check_mark: | The unique id representing this custom field. | bd57aeda-3483-4bcf-886e-c976e9f4454a |
| `Name` | *string* | :heavy_minus_sign: | The actual text of the custom field. | What is a your favorite color? |
-| `Type` | [CustomFieldJson1CustomFieldType](../../Models/Components/CustomFieldJson1CustomFieldType.md) | :heavy_minus_sign: | The type of data collected by a custom field. | MultiSelect |
-| `Value` | List<*string*> | :heavy_check_mark: | The set of answers or possible answers to a question. | [
"Choice C",
"Choice A"
] |
-| `Order` | *long* | :heavy_minus_sign: | The order of this question in the bigger list of questions. | 1 |
\ No newline at end of file
+| `Code` | *string* | :heavy_minus_sign: | Code to uniquely identify custom field. | FAVORITE_COLOR_CODE |
+| `Type` | [CustomFieldJson1CustomFieldType](../../Models/Components/CustomFieldJson1CustomFieldType.md) | :heavy_minus_sign: | N/A | Choice - Multiple Answers |
+| `Values` | List<*string*> | :heavy_check_mark: | The set of values or possible values to a custom field. | [
"Green",
"Blue"
] |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/CustomFieldJson1CustomFieldType.md b/packages/csharp/docs/Models/Components/CustomFieldJson1CustomFieldType.md
index f92b4590..07199003 100644
--- a/packages/csharp/docs/Models/Components/CustomFieldJson1CustomFieldType.md
+++ b/packages/csharp/docs/Models/Components/CustomFieldJson1CustomFieldType.md
@@ -1,36 +1,22 @@
# CustomFieldJson1CustomFieldType
-The type of data collected by a custom field.
+This is used to denote the type of data collected by a custom field.
## Example Usage
```csharp
using Cvent.SDK.Models.Components;
-var value = CustomFieldJson1CustomFieldType.AutoIncrement;
+var value = CustomFieldJson1CustomFieldType.OpenEndedTextDateTime;
```
## Values
-| Name | Value |
-| ------------------- | ------------------- |
-| `AutoIncrement` | AutoIncrement |
-| `ConsentQuestion` | ConsentQuestion |
-| `Currency` | Currency |
-| `Decimal` | Decimal |
-| `Date` | Date |
-| `DateTime` | DateTime |
-| `Email` | Email |
-| `FileUpload` | FileUpload |
-| `FreeText` | FreeText |
-| `General` | General |
-| `MultiChoice` | MultiChoice |
-| `MultiSelect` | MultiSelect |
-| `Number` | Number |
-| `OpenEndedDateTime` | OpenEndedDateTime |
-| `OpenEndedText` | OpenEndedText |
-| `SingleChoice` | SingleChoice |
-| `SingleSelect` | SingleSelect |
-| `USPhoneNumber` | USPhoneNumber |
-| `Unknown` | Unknown |
\ No newline at end of file
+| Name | Value |
+| ----------------------------- | ----------------------------- |
+| `OpenEndedTextDateTime` | Open Ended Text - Date/Time |
+| `OpenEndedTextOneLine` | Open Ended Text - One Line |
+| `OpenEndedTextCommentBox` | Open Ended Text - Comment Box |
+| `ChoiceSingleAnswer` | Choice - Single Answer |
+| `ChoiceMultipleAnswers` | Choice - Multiple Answers |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/CustomFieldJson2.md b/packages/csharp/docs/Models/Components/CustomFieldJson2.md
index 961366d6..02817e07 100644
--- a/packages/csharp/docs/Models/Components/CustomFieldJson2.md
+++ b/packages/csharp/docs/Models/Components/CustomFieldJson2.md
@@ -1,14 +1,14 @@
# CustomFieldJson2
-A survey custom field.
+A Custom Field
## Fields
| Field | Type | Required | Description | Example |
| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_check_mark: | The unique id representing this custom field. | bd57aeda-3483-4bcf-886e-c976e9f4454a |
-| `Name` | *string* | :heavy_minus_sign: | The actual text of the custom field. | What is a your favorite color? |
-| `Code` | *string* | :heavy_minus_sign: | Code to uniquely identify custom field. | FAVORITE_COLOR_CODE |
-| `Type` | [CustomFieldJson2CustomFieldType](../../Models/Components/CustomFieldJson2CustomFieldType.md) | :heavy_minus_sign: | N/A | Choice - Multiple Answers |
-| `Values` | List<*string*> | :heavy_check_mark: | The set of values or possible values to a custom field. | [
"Green",
"Blue"
] |
\ No newline at end of file
+| `Id` | *string* | :heavy_check_mark: | The unique ID representing this custom field. | |
+| `Name` | *string* | :heavy_minus_sign: | The actual text of the custom field. | What is your favorite color? |
+| `Value` | List<*string*> | :heavy_check_mark: | The set of answers or possible answers to a question. | [
"Choice C",
"Choice A"
] |
+| `Order` | *long* | :heavy_minus_sign: | The order of this question in the bigger list of questions. | 1 |
+| `Type` | [CustomFieldJson2CustomFieldType](../../Models/Components/CustomFieldJson2CustomFieldType.md) | :heavy_minus_sign: | The type of data collected by a custom field. | MultiSelect |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/CustomFieldJson2CustomFieldType.md b/packages/csharp/docs/Models/Components/CustomFieldJson2CustomFieldType.md
index a3bfd401..0cc18a27 100644
--- a/packages/csharp/docs/Models/Components/CustomFieldJson2CustomFieldType.md
+++ b/packages/csharp/docs/Models/Components/CustomFieldJson2CustomFieldType.md
@@ -1,22 +1,36 @@
# CustomFieldJson2CustomFieldType
-This is used to denote the type of data collected by a custom field.
+The type of data collected by a custom field.
## Example Usage
```csharp
using Cvent.SDK.Models.Components;
-var value = CustomFieldJson2CustomFieldType.OpenEndedTextDateTime;
+var value = CustomFieldJson2CustomFieldType.AutoIncrement;
```
## Values
-| Name | Value |
-| ----------------------------- | ----------------------------- |
-| `OpenEndedTextDateTime` | Open Ended Text - Date/Time |
-| `OpenEndedTextOneLine` | Open Ended Text - One Line |
-| `OpenEndedTextCommentBox` | Open Ended Text - Comment Box |
-| `ChoiceSingleAnswer` | Choice - Single Answer |
-| `ChoiceMultipleAnswers` | Choice - Multiple Answers |
\ No newline at end of file
+| Name | Value |
+| ------------------- | ------------------- |
+| `AutoIncrement` | AutoIncrement |
+| `ConsentQuestion` | ConsentQuestion |
+| `Currency` | Currency |
+| `Decimal` | Decimal |
+| `Date` | Date |
+| `DateTime` | DateTime |
+| `Email` | Email |
+| `FileUpload` | FileUpload |
+| `FreeText` | FreeText |
+| `General` | General |
+| `MultiChoice` | MultiChoice |
+| `MultiSelect` | MultiSelect |
+| `Number` | Number |
+| `OpenEndedDateTime` | OpenEndedDateTime |
+| `OpenEndedText` | OpenEndedText |
+| `SingleChoice` | SingleChoice |
+| `SingleSelect` | SingleSelect |
+| `USPhoneNumber` | USPhoneNumber |
+| `Unknown` | Unknown |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/CustomFieldJson3.md b/packages/csharp/docs/Models/Components/CustomFieldJson3.md
deleted file mode 100644
index eb4147be..00000000
--- a/packages/csharp/docs/Models/Components/CustomFieldJson3.md
+++ /dev/null
@@ -1,14 +0,0 @@
-# CustomFieldJson3
-
-A Custom Field
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_check_mark: | The unique ID representing this custom field. | |
-| `Name` | *string* | :heavy_minus_sign: | The actual text of the custom field. | What is your favorite color? |
-| `Value` | List<*string*> | :heavy_check_mark: | The set of answers or possible answers to a question. | [
"Choice C",
"Choice A"
] |
-| `Order` | *long* | :heavy_minus_sign: | The order of this question in the bigger list of questions. | 1 |
-| `Type` | [CustomFieldJson3CustomFieldType](../../Models/Components/CustomFieldJson3CustomFieldType.md) | :heavy_minus_sign: | The type of data collected by a custom field. | MultiSelect |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/CustomFieldJson3CustomFieldType.md b/packages/csharp/docs/Models/Components/CustomFieldJson3CustomFieldType.md
deleted file mode 100644
index b3a97f37..00000000
--- a/packages/csharp/docs/Models/Components/CustomFieldJson3CustomFieldType.md
+++ /dev/null
@@ -1,36 +0,0 @@
-# CustomFieldJson3CustomFieldType
-
-The type of data collected by a custom field.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = CustomFieldJson3CustomFieldType.AutoIncrement;
-```
-
-
-## Values
-
-| Name | Value |
-| ------------------- | ------------------- |
-| `AutoIncrement` | AutoIncrement |
-| `ConsentQuestion` | ConsentQuestion |
-| `Currency` | Currency |
-| `Decimal` | Decimal |
-| `Date` | Date |
-| `DateTime` | DateTime |
-| `Email` | Email |
-| `FileUpload` | FileUpload |
-| `FreeText` | FreeText |
-| `General` | General |
-| `MultiChoice` | MultiChoice |
-| `MultiSelect` | MultiSelect |
-| `Number` | Number |
-| `OpenEndedDateTime` | OpenEndedDateTime |
-| `OpenEndedText` | OpenEndedText |
-| `SingleChoice` | SingleChoice |
-| `SingleSelect` | SingleSelect |
-| `USPhoneNumber` | USPhoneNumber |
-| `Unknown` | Unknown |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/CustomFieldJsonCustomFieldType.md b/packages/csharp/docs/Models/Components/CustomFieldJsonCustomFieldType.md
new file mode 100644
index 00000000..d42b4900
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/CustomFieldJsonCustomFieldType.md
@@ -0,0 +1,36 @@
+# CustomFieldJsonCustomFieldType
+
+The type of data collected by a custom field.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = CustomFieldJsonCustomFieldType.AutoIncrement;
+```
+
+
+## Values
+
+| Name | Value |
+| ------------------- | ------------------- |
+| `AutoIncrement` | AutoIncrement |
+| `ConsentQuestion` | ConsentQuestion |
+| `Currency` | Currency |
+| `Decimal` | Decimal |
+| `Date` | Date |
+| `DateTime` | DateTime |
+| `Email` | Email |
+| `FileUpload` | FileUpload |
+| `FreeText` | FreeText |
+| `General` | General |
+| `MultiChoice` | MultiChoice |
+| `MultiSelect` | MultiSelect |
+| `Number` | Number |
+| `OpenEndedDateTime` | OpenEndedDateTime |
+| `OpenEndedText` | OpenEndedText |
+| `SingleChoice` | SingleChoice |
+| `SingleSelect` | SingleSelect |
+| `USPhoneNumber` | USPhoneNumber |
+| `Unknown` | Unknown |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/CustomFieldTypeJson.md b/packages/csharp/docs/Models/Components/CustomFieldTypeJson.md
new file mode 100644
index 00000000..6ffece5f
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/CustomFieldTypeJson.md
@@ -0,0 +1,23 @@
+# CustomFieldTypeJson
+
+This is used to denote the type of data collected by a custom field. Auto-Increment custom fields are read only.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = CustomFieldTypeJson.OpenEndedTextDateTime;
+```
+
+
+## Values
+
+| Name | Value |
+| ----------------------------- | ----------------------------- |
+| `OpenEndedTextDateTime` | Open Ended Text - Date/Time |
+| `OpenEndedTextOneLine` | Open Ended Text - One Line |
+| `OpenEndedTextCommentBox` | Open Ended Text - Comment Box |
+| `ChoiceSingleAnswer` | Choice - Single Answer |
+| `ChoiceMultipleAnswers` | Choice - Multiple Answers |
+| `AutoIncrement` | Auto-Increment |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/CustomFieldTypeJson1.md b/packages/csharp/docs/Models/Components/CustomFieldTypeJson1.md
deleted file mode 100644
index 319b4dd5..00000000
--- a/packages/csharp/docs/Models/Components/CustomFieldTypeJson1.md
+++ /dev/null
@@ -1,23 +0,0 @@
-# CustomFieldTypeJson1
-
-This is used to denote the type of data collected by a custom field. Auto-Increment custom fields are read only.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = CustomFieldTypeJson1.OpenEndedTextDateTime;
-```
-
-
-## Values
-
-| Name | Value |
-| ----------------------------- | ----------------------------- |
-| `OpenEndedTextDateTime` | Open Ended Text - Date/Time |
-| `OpenEndedTextOneLine` | Open Ended Text - One Line |
-| `OpenEndedTextCommentBox` | Open Ended Text - Comment Box |
-| `ChoiceSingleAnswer` | Choice - Single Answer |
-| `ChoiceMultipleAnswers` | Choice - Multiple Answers |
-| `AutoIncrement` | Auto-Increment |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/CustomQuestionAnswerJson0.md b/packages/csharp/docs/Models/Components/CustomQuestionAnswerJson0.md
deleted file mode 100644
index 158f48ec..00000000
--- a/packages/csharp/docs/Models/Components/CustomQuestionAnswerJson0.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# CustomQuestionAnswerJson0
-
-Represents custom question associated with a travel proposal.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- |
-| `Question` | [CustomQuestionAnswerJson0Question](../../Models/Components/CustomQuestionAnswerJson0Question.md) | :heavy_minus_sign: | Travel account that the proposal is responding to. | |
-| `Answer` | *string* | :heavy_minus_sign: | Hotel's answer to the program's custom question. | No. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/CustomQuestionAnswerJson0Question.md b/packages/csharp/docs/Models/Components/CustomQuestionAnswerJson0Question.md
deleted file mode 100644
index dc41dfb8..00000000
--- a/packages/csharp/docs/Models/Components/CustomQuestionAnswerJson0Question.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# CustomQuestionAnswerJson0Question
-
-Travel account that the proposal is responding to.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
-| `Id` | *string* | :heavy_minus_sign: | The unique ID of the question. | 565ceabb-786a-4a6d-8c85-e2fccc867e88 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/DateAnswerFormat.md b/packages/csharp/docs/Models/Components/DateAnswerFormat.md
new file mode 100644
index 00000000..f47f2b7c
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/DateAnswerFormat.md
@@ -0,0 +1,20 @@
+# DateAnswerFormat
+
+The answer format that a given date is stored in. `Date`: Answer format is stored in Date format. `DateTime`: Answer format is stored in DateTime format. `Time`: Answer format is stored in Time format.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = DateAnswerFormat.Date;
+```
+
+
+## Values
+
+| Name | Value |
+| ---------- | ---------- |
+| `Date` | Date |
+| `DateTime` | DateTime |
+| `Time` | Time |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/DateAnswerFormatJson.md b/packages/csharp/docs/Models/Components/DateAnswerFormatJson.md
deleted file mode 100644
index db2b4203..00000000
--- a/packages/csharp/docs/Models/Components/DateAnswerFormatJson.md
+++ /dev/null
@@ -1,20 +0,0 @@
-# DateAnswerFormatJson
-
-The answer format that a given date is stored in. `Date`: Answer format is stored in Date format. `DateTime`: Answer format is stored in DateTime format. `Time`: Answer format is stored in Time format.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = DateAnswerFormatJson.Date;
-```
-
-
-## Values
-
-| Name | Value |
-| ---------- | ---------- |
-| `Date` | Date |
-| `DateTime` | DateTime |
-| `Time` | Time |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/DatePattern1.md b/packages/csharp/docs/Models/Components/DatePattern1.md
new file mode 100644
index 00000000..9a8fc244
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/DatePattern1.md
@@ -0,0 +1,15 @@
+# DatePattern1
+
+Date pattern for days on which event can occur. Used when dateMode is DATE_PATTERN.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
+| `Note` | *string* | :heavy_minus_sign: | Note along with date pattern requirements. | Flexible dates on weekends. |
+| `EndDate` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_check_mark: | The ISO 8601 end date of the event. | 2016-10-15 |
+| `StartDate` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_check_mark: | The ISO 8601 start date of the event. | 2016-10-13 |
+| `DurationDays` | *long* | :heavy_check_mark: | Number of days the event will go on. | 3 |
+| `StartDays` | List<[DayOfWeek](../../Models/Components/DayOfWeek.md)> | :heavy_check_mark: | Days of the week when event can start. | |
+| `GeneratedDates` | List<[Dates1](../../Models/Components/Dates1.md)> | :heavy_minus_sign: | List of dates generated based on the date pattern. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/DatePatternJson0.md b/packages/csharp/docs/Models/Components/DatePatternJson0.md
deleted file mode 100644
index 745aba50..00000000
--- a/packages/csharp/docs/Models/Components/DatePatternJson0.md
+++ /dev/null
@@ -1,15 +0,0 @@
-# DatePatternJson0
-
-Date pattern for days on which event can occur. Used when dateMode is DATE_PATTERN.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
-| `Note` | *string* | :heavy_minus_sign: | Note along with date pattern requirements. | Flexible dates on weekends. |
-| `EndDate` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_check_mark: | The ISO 8601 end date of the event. | 2016-10-15 |
-| `StartDate` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_check_mark: | The ISO 8601 start date of the event. | 2016-10-13 |
-| `DurationDays` | *long* | :heavy_check_mark: | Number of days the event will go on. | 3 |
-| `StartDays` | List<[DayOfWeekJson0](../../Models/Components/DayOfWeekJson0.md)> | :heavy_check_mark: | Days of the week when event can start. | |
-| `GeneratedDates` | List<[DatesJson0](../../Models/Components/DatesJson0.md)> | :heavy_minus_sign: | List of dates generated based on the date pattern. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/DateRequirements1.md b/packages/csharp/docs/Models/Components/DateRequirements1.md
new file mode 100644
index 00000000..e03d4eb9
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/DateRequirements1.md
@@ -0,0 +1,13 @@
+# DateRequirements1
+
+Date requirements for the event.
+
+
+## Fields
+
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- |
+| `Mode` | [RfpDateMode](../../Models/Components/RfpDateMode.md) | :heavy_check_mark: | RfpDateMode |
+| `AlternateDates` | List<[Dates1](../../Models/Components/Dates1.md)> | :heavy_minus_sign: | List of dates for the event. Can be used to provide set of alternate event dates when mode is ALTERNATE_DATE. |
+| `Pattern` | [DatePattern1](../../Models/Components/DatePattern1.md) | :heavy_minus_sign: | Date pattern for days on which event can occur. Used when dateMode is DATE_PATTERN. |
+| `AvailabilityRangeRequired` | *bool* | :heavy_minus_sign: | True indicates that the event requires a range of availability dates. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/DateRequirementsJson0.md b/packages/csharp/docs/Models/Components/DateRequirementsJson0.md
deleted file mode 100644
index b2cff60d..00000000
--- a/packages/csharp/docs/Models/Components/DateRequirementsJson0.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# DateRequirementsJson0
-
-Date requirements for the event.
-
-
-## Fields
-
-| Field | Type | Required | Description |
-| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- |
-| `Mode` | [RfpDateModeJson0](../../Models/Components/RfpDateModeJson0.md) | :heavy_check_mark: | Way of specifying dates for the event. |
-| `AlternateDates` | List<[DatesJson0](../../Models/Components/DatesJson0.md)> | :heavy_minus_sign: | List of dates for the event. Can be used to provide set of alternate event dates when mode is ALTERNATE_DATE. |
-| `Pattern` | [DatePatternJson0](../../Models/Components/DatePatternJson0.md) | :heavy_minus_sign: | Date pattern for days on which event can occur. Used when dateMode is DATE_PATTERN. |
-| `AvailabilityRangeRequired` | *bool* | :heavy_minus_sign: | True indicates that the event requires a range of availability dates. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/DateTypeJson.md b/packages/csharp/docs/Models/Components/DateTypeJson.md
new file mode 100644
index 00000000..0a15ec76
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/DateTypeJson.md
@@ -0,0 +1,30 @@
+# DateTypeJson
+
+The date types used for the proposal, 'PREFERRED' have the highest priority. Values prefixed with 'ALTERNATE_' are decreasing in priority (e.g., ALTERNATE_1 has higher priority than 'ALTERNATE_2 and so on).
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = DateTypeJson.Preferred;
+```
+
+
+## Values
+
+| Name | Value |
+| ------------- | ------------- |
+| `Preferred` | PREFERRED |
+| `Alternate1` | ALTERNATE_1 |
+| `Alternate2` | ALTERNATE_2 |
+| `Alternate3` | ALTERNATE_3 |
+| `Alternate4` | ALTERNATE_4 |
+| `Alternate5` | ALTERNATE_5 |
+| `Alternate6` | ALTERNATE_6 |
+| `Alternate7` | ALTERNATE_7 |
+| `Alternate8` | ALTERNATE_8 |
+| `Alternate9` | ALTERNATE_9 |
+| `Alternate10` | ALTERNATE_10 |
+| `Alternate11` | ALTERNATE_11 |
+| `Alternate12` | ALTERNATE_12 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/DateTypeJson1.md b/packages/csharp/docs/Models/Components/DateTypeJson1.md
deleted file mode 100644
index ee7c16e2..00000000
--- a/packages/csharp/docs/Models/Components/DateTypeJson1.md
+++ /dev/null
@@ -1,30 +0,0 @@
-# DateTypeJson1
-
-The date types used for the proposal, 'PREFERRED' have the highest priority. Values prefixed with 'ALTERNATE_' are decreasing in priority (e.g., ALTERNATE_1 has higher priority than 'ALTERNATE_2 and so on).
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = DateTypeJson1.Preferred;
-```
-
-
-## Values
-
-| Name | Value |
-| ------------- | ------------- |
-| `Preferred` | PREFERRED |
-| `Alternate1` | ALTERNATE_1 |
-| `Alternate2` | ALTERNATE_2 |
-| `Alternate3` | ALTERNATE_3 |
-| `Alternate4` | ALTERNATE_4 |
-| `Alternate5` | ALTERNATE_5 |
-| `Alternate6` | ALTERNATE_6 |
-| `Alternate7` | ALTERNATE_7 |
-| `Alternate8` | ALTERNATE_8 |
-| `Alternate9` | ALTERNATE_9 |
-| `Alternate10` | ALTERNATE_10 |
-| `Alternate11` | ALTERNATE_11 |
-| `Alternate12` | ALTERNATE_12 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Dates1.md b/packages/csharp/docs/Models/Components/Dates1.md
new file mode 100644
index 00000000..d78ed296
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Dates1.md
@@ -0,0 +1,14 @@
+# Dates1
+
+Dates on which event will occur.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
+| `Preferred` | *bool* | :heavy_minus_sign: | True indicates these are preferred dates. | true |
+| `Id` | *string* | :heavy_minus_sign: | Unique identifier for dates. | 50dc08af-24a9-4d01-84be-3d43133dc945 |
+| `EndDate` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The ISO 8601 end date of the event. | 2016-10-13 |
+| `StartDate` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The ISO 8601 start date of the event. | 2016-10-15 |
+| `Note` | *string* | :heavy_minus_sign: | A note detailing the requirements for the dates. | Flexible dates |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/DatesJson0.md b/packages/csharp/docs/Models/Components/DatesJson0.md
deleted file mode 100644
index 11ad4bbd..00000000
--- a/packages/csharp/docs/Models/Components/DatesJson0.md
+++ /dev/null
@@ -1,14 +0,0 @@
-# DatesJson0
-
-Dates on which event will occur.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
-| `Preferred` | *bool* | :heavy_minus_sign: | True indicates these are preferred dates. | true |
-| `Id` | *string* | :heavy_minus_sign: | Unique identifier for dates. | 50dc08af-24a9-4d01-84be-3d43133dc945 |
-| `EndDate` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The ISO 8601 end date of the event. | 2016-10-13 |
-| `StartDate` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The ISO 8601 start date of the event. | 2016-10-15 |
-| `Note` | *string* | :heavy_minus_sign: | A note detailing the requirements for the dates. | Flexible dates |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/DayOfWeek.md b/packages/csharp/docs/Models/Components/DayOfWeek.md
new file mode 100644
index 00000000..1da2b9b2
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/DayOfWeek.md
@@ -0,0 +1,24 @@
+# DayOfWeek
+
+DayOfWeek
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = DayOfWeek.Sunday;
+```
+
+
+## Values
+
+| Name | Value |
+| ----------- | ----------- |
+| `Sunday` | SUNDAY |
+| `Monday` | MONDAY |
+| `Tuesday` | TUESDAY |
+| `Wednesday` | WEDNESDAY |
+| `Thursday` | THURSDAY |
+| `Friday` | FRIDAY |
+| `Saturday` | SATURDAY |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/DayOfWeekJson0.md b/packages/csharp/docs/Models/Components/DayOfWeekJson0.md
deleted file mode 100644
index daa211b1..00000000
--- a/packages/csharp/docs/Models/Components/DayOfWeekJson0.md
+++ /dev/null
@@ -1,24 +0,0 @@
-# DayOfWeekJson0
-
-Day of week.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = DayOfWeekJson0.Sunday;
-```
-
-
-## Values
-
-| Name | Value |
-| ----------- | ----------- |
-| `Sunday` | SUNDAY |
-| `Monday` | MONDAY |
-| `Tuesday` | TUESDAY |
-| `Wednesday` | WEDNESDAY |
-| `Thursday` | THURSDAY |
-| `Friday` | FRIDAY |
-| `Saturday` | SATURDAY |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Device1.md b/packages/csharp/docs/Models/Components/Device1.md
new file mode 100644
index 00000000..fbae000b
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Device1.md
@@ -0,0 +1,14 @@
+# ~~Device1~~
+
+The device details used to watched a video. This field has been deprecated.
+
+> :warning: **DEPRECATED**: This will be removed in a future release, please migrate away from it as soon as possible.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- |
+| `Id` | *string* | :heavy_minus_sign: | The unique ID of the device the viewer used to watch the video. | CA1.b4c5061e36fa60ebc5aad0ccea95f900b34794ecad49e965eaa94f7c534dec83 |
+| `Type` | [DeviceType](../../Models/Components/DeviceType.md) | :heavy_minus_sign: | The device used to watch the video. Videos can be viewed on desktop, mobile or tablet. | |
+| `OperatingSystem` | *string* | :heavy_minus_sign: | The device's operating system. | Mac OS |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/DeviceJson.md b/packages/csharp/docs/Models/Components/DeviceJson.md
deleted file mode 100644
index aaa4aa9a..00000000
--- a/packages/csharp/docs/Models/Components/DeviceJson.md
+++ /dev/null
@@ -1,14 +0,0 @@
-# ~~DeviceJson~~
-
-The device details used to watched a video. This field has been deprecated.
-
-> :warning: **DEPRECATED**: This will be removed in a future release, please migrate away from it as soon as possible.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_minus_sign: | The unique ID of the device the viewer used to watch the video. | CA1.b4c5061e36fa60ebc5aad0ccea95f900b34794ecad49e965eaa94f7c534dec83 |
-| `Type` | [DeviceTypeJson](../../Models/Components/DeviceTypeJson.md) | :heavy_minus_sign: | The device used to watch the video. Videos can be viewed on desktop, mobile or tablet. | |
-| `OperatingSystem` | *string* | :heavy_minus_sign: | The device's operating system. | Mac OS |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/DeviceType.md b/packages/csharp/docs/Models/Components/DeviceType.md
new file mode 100644
index 00000000..558977fa
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/DeviceType.md
@@ -0,0 +1,20 @@
+# DeviceType
+
+The device used to watch the video. Videos can be viewed on desktop, mobile or tablet.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = DeviceType.Desktop;
+```
+
+
+## Values
+
+| Name | Value |
+| --------- | --------- |
+| `Desktop` | DESKTOP |
+| `Mobile` | MOBILE |
+| `Tablet` | TABLET |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/DeviceTypeJson.md b/packages/csharp/docs/Models/Components/DeviceTypeJson.md
deleted file mode 100644
index 570c6047..00000000
--- a/packages/csharp/docs/Models/Components/DeviceTypeJson.md
+++ /dev/null
@@ -1,20 +0,0 @@
-# DeviceTypeJson
-
-The device used to watch the video. Videos can be viewed on desktop, mobile or tablet.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = DeviceTypeJson.Desktop;
-```
-
-
-## Values
-
-| Name | Value |
-| --------- | --------- |
-| `Desktop` | DESKTOP |
-| `Mobile` | MOBILE |
-| `Tablet` | TABLET |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/DisplayType.md b/packages/csharp/docs/Models/Components/DisplayType.md
new file mode 100644
index 00000000..8eb5a8b2
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/DisplayType.md
@@ -0,0 +1,23 @@
+# DisplayType
+
+The type of display for the field. `Bar`: It is associated with choice questions type. `DropDown`: It is associated with drop down type questions. `Horizontal`: It is associated with horizontal type questions. `List`: It is associated with list type questions. `MultiSelectBox`: It is associated with multi select box type questions. `Vertical`: It is associated with vertical type questions.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = DisplayType.Bar;
+```
+
+
+## Values
+
+| Name | Value |
+| ---------------- | ---------------- |
+| `Bar` | Bar |
+| `DropDown` | DropDown |
+| `Horizontal` | Horizontal |
+| `List` | List |
+| `MultiSelectBox` | MultiSelectBox |
+| `Vertical` | Vertical |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/DisplayTypeJson.md b/packages/csharp/docs/Models/Components/DisplayTypeJson.md
deleted file mode 100644
index e5fa0964..00000000
--- a/packages/csharp/docs/Models/Components/DisplayTypeJson.md
+++ /dev/null
@@ -1,23 +0,0 @@
-# DisplayTypeJson
-
-The type of display for the field. `Bar`: It is associated with choice questions type. `DropDown`: It is associated with drop down type questions. `Horizontal`: It is associated with horizontal type questions. `List`: It is associated with list type questions. `MultiSelectBox`: It is associated with multi select box type questions. `Vertical`: It is associated with vertical type questions.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = DisplayTypeJson.Bar;
-```
-
-
-## Values
-
-| Name | Value |
-| ---------------- | ---------------- |
-| `Bar` | Bar |
-| `DropDown` | DropDown |
-| `Horizontal` | Horizontal |
-| `List` | List |
-| `MultiSelectBox` | MultiSelectBox |
-| `Vertical` | Vertical |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/DistanceJson.md b/packages/csharp/docs/Models/Components/DistanceJson.md
new file mode 100644
index 00000000..b2e655ea
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/DistanceJson.md
@@ -0,0 +1,11 @@
+# DistanceJson
+
+Distance information.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- |
+| `Distance` | *double* | :heavy_check_mark: | Distance from the hotel to the venue. | 18.3 |
+| `DistanceUnit` | [DistanceUnit](../../Models/Components/DistanceUnit.md) | :heavy_check_mark: | Unit of measurement for the distance. | Kilometers |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/DistanceJson1.md b/packages/csharp/docs/Models/Components/DistanceJson1.md
deleted file mode 100644
index 6518aba7..00000000
--- a/packages/csharp/docs/Models/Components/DistanceJson1.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# DistanceJson1
-
-Distance information.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- |
-| `Distance` | *double* | :heavy_check_mark: | Distance from the hotel to the venue. | 18.3 |
-| `DistanceUnit` | [DistanceUnit](../../Models/Components/DistanceUnit.md) | :heavy_check_mark: | Unit of measurement for the distance. | Kilometers |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/DistributionListInfo.md b/packages/csharp/docs/Models/Components/DistributionListInfo.md
new file mode 100644
index 00000000..3a47d571
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/DistributionListInfo.md
@@ -0,0 +1,12 @@
+# DistributionListInfo
+
+Model representing a distribution list info. Only required if the contact group type is DISTRIBUTION_LIST.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `SecurityType` | [DistributionListSecurityType](../../Models/Components/DistributionListSecurityType.md) | :heavy_minus_sign: | Type of distribution list security. For a public list, contacts can sign up themselves. For a semi-private list, contacts can add themselves, but a planner must approve their membership before they can receive emails. For a private list, only planners can add contacts. Contacts can always remove themselves from lists on the Manage Profile page. | |
+| `InternalNote` | *string* | :heavy_minus_sign: | Internal note for Distribution Lists. | Sample distribution list internal note |
+| `Status` | [DistributionListStatus](../../Models/Components/DistributionListStatus.md) | :heavy_minus_sign: | Type of distribution list status. | PENDING |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/DistributionListInfoInput.md b/packages/csharp/docs/Models/Components/DistributionListInfoInput.md
new file mode 100644
index 00000000..77a1ee7e
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/DistributionListInfoInput.md
@@ -0,0 +1,11 @@
+# DistributionListInfoInput
+
+Model representing a distribution list info. Only required if the contact group type is DISTRIBUTION_LIST.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `SecurityType` | [DistributionListSecurityType](../../Models/Components/DistributionListSecurityType.md) | :heavy_minus_sign: | Type of distribution list security. For a public list, contacts can sign up themselves. For a semi-private list, contacts can add themselves, but a planner must approve their membership before they can receive emails. For a private list, only planners can add contacts. Contacts can always remove themselves from lists on the Manage Profile page. | |
+| `InternalNote` | *string* | :heavy_minus_sign: | Internal note for Distribution Lists. | Sample distribution list internal note |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/DistributionListInfoJson.md b/packages/csharp/docs/Models/Components/DistributionListInfoJson.md
deleted file mode 100644
index b03dfb8d..00000000
--- a/packages/csharp/docs/Models/Components/DistributionListInfoJson.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# DistributionListInfoJson
-
-Model representing a distribution list info. Only required if the contact group type is DISTRIBUTION_LIST.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `SecurityType` | [DistributionListSecurityTypeJson](../../Models/Components/DistributionListSecurityTypeJson.md) | :heavy_minus_sign: | Type of distribution list security. For a public list, contacts can sign up themselves. For a semi-private list, contacts can add themselves, but a planner must approve their membership before they can receive emails. For a private list, only planners can add contacts. Contacts can always remove themselves from lists on the Manage Profile page. | |
-| `InternalNote` | *string* | :heavy_minus_sign: | Internal note for Distribution Lists. | Sample distribution list internal note |
-| `Status` | [DistributionListStatusJson](../../Models/Components/DistributionListStatusJson.md) | :heavy_minus_sign: | Type of distribution list status. | PENDING |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/DistributionListInfoJsonInput.md b/packages/csharp/docs/Models/Components/DistributionListInfoJsonInput.md
deleted file mode 100644
index 4c406853..00000000
--- a/packages/csharp/docs/Models/Components/DistributionListInfoJsonInput.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# DistributionListInfoJsonInput
-
-Model representing a distribution list info. Only required if the contact group type is DISTRIBUTION_LIST.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `SecurityType` | [DistributionListSecurityTypeJson](../../Models/Components/DistributionListSecurityTypeJson.md) | :heavy_minus_sign: | Type of distribution list security. For a public list, contacts can sign up themselves. For a semi-private list, contacts can add themselves, but a planner must approve their membership before they can receive emails. For a private list, only planners can add contacts. Contacts can always remove themselves from lists on the Manage Profile page. | |
-| `InternalNote` | *string* | :heavy_minus_sign: | Internal note for Distribution Lists. | Sample distribution list internal note |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/DistributionListSecurityType.md b/packages/csharp/docs/Models/Components/DistributionListSecurityType.md
new file mode 100644
index 00000000..0b6a1324
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/DistributionListSecurityType.md
@@ -0,0 +1,20 @@
+# DistributionListSecurityType
+
+Type of distribution list security. For a public list, contacts can sign up themselves. For a semi-private list, contacts can add themselves, but a planner must approve their membership before they can receive emails. For a private list, only planners can add contacts. Contacts can always remove themselves from lists on the Manage Profile page.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = DistributionListSecurityType.Private;
+```
+
+
+## Values
+
+| Name | Value |
+| ------------- | ------------- |
+| `Private` | PRIVATE |
+| `SemiPrivate` | SEMI_PRIVATE |
+| `Public` | PUBLIC |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/DistributionListSecurityTypeJson.md b/packages/csharp/docs/Models/Components/DistributionListSecurityTypeJson.md
deleted file mode 100644
index 6a70f499..00000000
--- a/packages/csharp/docs/Models/Components/DistributionListSecurityTypeJson.md
+++ /dev/null
@@ -1,20 +0,0 @@
-# DistributionListSecurityTypeJson
-
-Type of distribution list security. For a public list, contacts can sign up themselves. For a semi-private list, contacts can add themselves, but a planner must approve their membership before they can receive emails. For a private list, only planners can add contacts. Contacts can always remove themselves from lists on the Manage Profile page.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = DistributionListSecurityTypeJson.Private;
-```
-
-
-## Values
-
-| Name | Value |
-| ------------- | ------------- |
-| `Private` | PRIVATE |
-| `SemiPrivate` | SEMI_PRIVATE |
-| `Public` | PUBLIC |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/DistributionListStatus.md b/packages/csharp/docs/Models/Components/DistributionListStatus.md
new file mode 100644
index 00000000..6b5a5d42
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/DistributionListStatus.md
@@ -0,0 +1,20 @@
+# DistributionListStatus
+
+Type of distribution list status.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = DistributionListStatus.Pending;
+```
+
+
+## Values
+
+| Name | Value |
+| ------------ | ------------ |
+| `Pending` | PENDING |
+| `Processing` | PROCESSING |
+| `Complete` | COMPLETE |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/DistributionListStatusJson.md b/packages/csharp/docs/Models/Components/DistributionListStatusJson.md
deleted file mode 100644
index f84e19a3..00000000
--- a/packages/csharp/docs/Models/Components/DistributionListStatusJson.md
+++ /dev/null
@@ -1,20 +0,0 @@
-# DistributionListStatusJson
-
-Type of distribution list status.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = DistributionListStatusJson.Pending;
-```
-
-
-## Values
-
-| Name | Value |
-| ------------ | ------------ |
-| `Pending` | PENDING |
-| `Processing` | PROCESSING |
-| `Complete` | COMPLETE |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/DocumentType1.md b/packages/csharp/docs/Models/Components/DocumentType1.md
new file mode 100644
index 00000000..776db2af
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/DocumentType1.md
@@ -0,0 +1,50 @@
+# DocumentType1
+
+The document type.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = DocumentType1.Ai;
+```
+
+
+## Values
+
+| Name | Value |
+| ------ | ------ |
+| `Ai` | AI |
+| `Avi` | AVI |
+| `Bmp` | BMP |
+| `Doc` | DOC |
+| `Docx` | DOCX |
+| `Eml` | EML |
+| `Eps` | EPS |
+| `Flv` | FLV |
+| `Gif` | GIF |
+| `Htm` | HTM |
+| `Html` | HTML |
+| `Ics` | ICS |
+| `Jfif` | JFIF |
+| `Jpeg` | JPEG |
+| `Jpg` | JPG |
+| `Link` | LINK |
+| `Mov` | MOV |
+| `Mp4` | MP4 |
+| `Msg` | MSG |
+| `One` | ONE |
+| `Ost` | OST |
+| `Pdf` | PDF |
+| `Png` | PNG |
+| `Ppt` | PPT |
+| `Pptx` | PPTX |
+| `Pst` | PST |
+| `Svg` | SVG |
+| `Tif` | TIF |
+| `Tiff` | TIFF |
+| `Txt` | TXT |
+| `Wmv` | WMV |
+| `Xls` | XLS |
+| `Xlsx` | XLSX |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/DocumentTypeJson0.md b/packages/csharp/docs/Models/Components/DocumentTypeJson0.md
deleted file mode 100644
index 3ebf158b..00000000
--- a/packages/csharp/docs/Models/Components/DocumentTypeJson0.md
+++ /dev/null
@@ -1,50 +0,0 @@
-# DocumentTypeJson0
-
-The document type.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = DocumentTypeJson0.Ai;
-```
-
-
-## Values
-
-| Name | Value |
-| ------ | ------ |
-| `Ai` | AI |
-| `Avi` | AVI |
-| `Bmp` | BMP |
-| `Doc` | DOC |
-| `Docx` | DOCX |
-| `Eml` | EML |
-| `Eps` | EPS |
-| `Flv` | FLV |
-| `Gif` | GIF |
-| `Htm` | HTM |
-| `Html` | HTML |
-| `Ics` | ICS |
-| `Jfif` | JFIF |
-| `Jpeg` | JPEG |
-| `Jpg` | JPG |
-| `Link` | LINK |
-| `Mov` | MOV |
-| `Mp4` | MP4 |
-| `Msg` | MSG |
-| `One` | ONE |
-| `Ost` | OST |
-| `Pdf` | PDF |
-| `Png` | PNG |
-| `Ppt` | PPT |
-| `Pptx` | PPTX |
-| `Pst` | PST |
-| `Svg` | SVG |
-| `Tif` | TIF |
-| `Tiff` | TIFF |
-| `Txt` | TXT |
-| `Wmv` | WMV |
-| `Xls` | XLS |
-| `Xlsx` | XLSX |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/EmailHistoryJson.md b/packages/csharp/docs/Models/Components/EmailHistoryJson.md
index 5923a472..2ebff451 100644
--- a/packages/csharp/docs/Models/Components/EmailHistoryJson.md
+++ b/packages/csharp/docs/Models/Components/EmailHistoryJson.md
@@ -18,7 +18,7 @@ Email History record.
| `Subject` | *string* | :heavy_minus_sign: | Subject of the email. | Event Invitation |
| `From` | *string* | :heavy_minus_sign: | From email address of the email. | example@example.com |
| `To` | *string* | :heavy_minus_sign: | Recipient address of the email. | example@example.com |
-| `Type` | [EmailTypeJson3](../../Models/Components/EmailTypeJson3.md) | :heavy_minus_sign: | Denotes the type of the email. | Invitation |
+| `Type` | [EmailTypeJson1](../../Models/Components/EmailTypeJson1.md) | :heavy_minus_sign: | Denotes the type of the email. | Invitation |
| `Sent` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when this email was sent. | 2017-01-02T02:30:00Z |
| `Status` | [EmailStatusJson](../../Models/Components/EmailStatusJson.md) | :heavy_minus_sign: | This is used to denote the status of the email sending | Sent |
| `Undeliverable` | *bool* | :heavy_minus_sign: | Flag to indicate if email was undelivered. | false |
diff --git a/packages/csharp/docs/Models/Components/EmailJson1.md b/packages/csharp/docs/Models/Components/EmailJson1.md
index 195d7f0e..450d4443 100644
--- a/packages/csharp/docs/Models/Components/EmailJson1.md
+++ b/packages/csharp/docs/Models/Components/EmailJson1.md
@@ -5,8 +5,8 @@ Email
## Fields
-| Field | Type | Required | Description | Example |
-| ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- |
-| `Type` | [EmailTypeJson1](../../Models/Components/EmailTypeJson1.md) | :heavy_minus_sign: | The type of the email. | work |
-| `Value` | *string* | :heavy_check_mark: | The email of the user. | support@cvent.com |
-| `Primary` | *bool* | :heavy_minus_sign: | True indicates the email is primary. | true |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- |
+| `Type` | [EmailTypeJson](../../Models/Components/EmailTypeJson.md) | :heavy_minus_sign: | The type of the email. | work |
+| `Value` | *string* | :heavy_check_mark: | The email of the user. | support@cvent.com |
+| `Primary` | *bool* | :heavy_minus_sign: | True indicates the email is primary. | true |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/EmailTypeJson.md b/packages/csharp/docs/Models/Components/EmailTypeJson.md
new file mode 100644
index 00000000..71209648
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/EmailTypeJson.md
@@ -0,0 +1,19 @@
+# EmailTypeJson
+
+The type of the email.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = EmailTypeJson.Work;
+```
+
+
+## Values
+
+| Name | Value |
+| ------ | ------ |
+| `Work` | work |
+| `Home` | home |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/EmailTypeJson1.md b/packages/csharp/docs/Models/Components/EmailTypeJson1.md
index 0173bf43..deb21b1d 100644
--- a/packages/csharp/docs/Models/Components/EmailTypeJson1.md
+++ b/packages/csharp/docs/Models/Components/EmailTypeJson1.md
@@ -1,19 +1,79 @@
# EmailTypeJson1
-The type of the email.
+Denotes the type of the email.
## Example Usage
```csharp
using Cvent.SDK.Models.Components;
-var value = EmailTypeJson1.Work;
+var value = EmailTypeJson1.Invitation;
```
## Values
-| Name | Value |
-| ------ | ------ |
-| `Work` | work |
-| `Home` | home |
\ No newline at end of file
+| Name | Value |
+| --------------------------------------- | --------------------------------------- |
+| `Invitation` | Invitation |
+| `InvitationReminder` | Invitation Reminder |
+| `RegistrationConfirmation` | Registration Confirmation |
+| `Regret` | Regret |
+| `PostEventFeedback` | Post Event Feedback |
+| `CustomInviteeMessage` | Custom Invitee Message |
+| `CustomDeclineeMessage` | Custom Declinee Message |
+| `EventReminder` | Event Reminder |
+| `CustomAttendeeMessage` | Custom Attendee Message |
+| `CustomOneTimeMessage` | Custom One-Time Message |
+| `PlannerReport` | Planner Report |
+| `EventUpdate` | Event Update |
+| `CustomUndecidedMessage` | Custom Undecided Message |
+| `CustomAttendedMessage` | Custom Attended Message |
+| `ModificationConfirmation` | Modification Confirmation |
+| `CancellationConfirmation` | Cancellation Confirmation |
+| `GuestEventReminder` | Guest Event Reminder |
+| `GuestRegistrationNotification` | Guest Registration Notification |
+| `CustomGuestMessage` | Custom Guest Message |
+| `GuestPostEventFeedback` | Guest Post Event Feedback |
+| `InviteeSessionEmail` | Invitee Session Email |
+| `GuestSessionEmail` | Guest Session Email |
+| `ApprovalPendingNotification` | Approval Pending Notification |
+| `ApprovalDeniedNotification` | Approval Denied Notification |
+| `AdministratorRegistrationConfirmation` | Administrator Registration Confirmation |
+| `CrowdCompassEventGuideInvitation` | CrowdCompass Event Guide Invitation |
+| `CrowdCompassAppDownload` | CrowdCompass App Download |
+| `WaitlistNotification` | Waitlist Notification |
+| `SessionWaitlistNotification` | Session Waitlist Notification |
+| `ShoulderDateNotification` | Shoulder Date Notification |
+| `SelectedRoommateNotification` | Selected Roommate Notification |
+| `MatchedRoommateNotification` | Matched Roommate Notification |
+| `DeclinedRoommateNotification` | Declined Roommate Notification |
+| `OnArrivalPostEventFeedback` | OnArrival Post Event Feedback |
+| `OnArrivalGuestPostEventFeedback` | OnArrival Guest Post Event Feedback |
+| `TravelModificationConfirmation` | Travel Modification Confirmation |
+| `Custom` | Custom |
+| `NewAppointment` | New Appointment |
+| `AppointmentAccepted` | Appointment Accepted |
+| `AppointmentDeclined` | Appointment Declined |
+| `AppointmentCancelled` | Appointment Cancelled |
+| `AppointmentEdited` | Appointment Edited |
+| `PendingAppointmentReminder` | Pending Appointment Reminder |
+| `UpcomingAppointmentReminder` | Upcoming Appointment Reminder |
+| `AttendeeRemoved` | Attendee Removed |
+| `OptInEmail` | Opt In Email |
+| `ResourceCenterInvitation` | Resource Center Invitation |
+| `SingleTaskReminder` | Single Task Reminder |
+| `MobileAppInvitation` | Mobile App Invitation |
+| `LoginVerificationCode` | Login Verification Code |
+| `SaveTheDate` | Save The Date |
+| `AllTasksReminder` | All Tasks Reminder |
+| `ExhibitorAdminInvitation` | Exhibitor Admin Invitation |
+| `ExhibitorAdminReminder` | Exhibitor Admin Reminder |
+| `ExhibitorDeviceRentalAccessCode` | Exhibitor Device Rental Access Code |
+| `ExhibitorAppLicenseAccessCode` | Exhibitor App License Access Code |
+| `ExhibitorLeadsExport` | Exhibitor Leads Export |
+| `StakeholderFeedbackInvitation` | Stakeholder Feedback Invitation |
+| `ExhibitorTaskReminder` | Exhibitor Task Reminder |
+| `LeadCaptureRequestedMaterials` | LeadCapture Requested Materials |
+| `IntegrationAlerts` | Integration Alerts |
+| `Unknown` | Unknown |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/EmailTypeJson3.md b/packages/csharp/docs/Models/Components/EmailTypeJson3.md
deleted file mode 100644
index 9a5766af..00000000
--- a/packages/csharp/docs/Models/Components/EmailTypeJson3.md
+++ /dev/null
@@ -1,79 +0,0 @@
-# EmailTypeJson3
-
-Denotes the type of the email.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = EmailTypeJson3.Invitation;
-```
-
-
-## Values
-
-| Name | Value |
-| --------------------------------------- | --------------------------------------- |
-| `Invitation` | Invitation |
-| `InvitationReminder` | Invitation Reminder |
-| `RegistrationConfirmation` | Registration Confirmation |
-| `Regret` | Regret |
-| `PostEventFeedback` | Post Event Feedback |
-| `CustomInviteeMessage` | Custom Invitee Message |
-| `CustomDeclineeMessage` | Custom Declinee Message |
-| `EventReminder` | Event Reminder |
-| `CustomAttendeeMessage` | Custom Attendee Message |
-| `CustomOneTimeMessage` | Custom One-Time Message |
-| `PlannerReport` | Planner Report |
-| `EventUpdate` | Event Update |
-| `CustomUndecidedMessage` | Custom Undecided Message |
-| `CustomAttendedMessage` | Custom Attended Message |
-| `ModificationConfirmation` | Modification Confirmation |
-| `CancellationConfirmation` | Cancellation Confirmation |
-| `GuestEventReminder` | Guest Event Reminder |
-| `GuestRegistrationNotification` | Guest Registration Notification |
-| `CustomGuestMessage` | Custom Guest Message |
-| `GuestPostEventFeedback` | Guest Post Event Feedback |
-| `InviteeSessionEmail` | Invitee Session Email |
-| `GuestSessionEmail` | Guest Session Email |
-| `ApprovalPendingNotification` | Approval Pending Notification |
-| `ApprovalDeniedNotification` | Approval Denied Notification |
-| `AdministratorRegistrationConfirmation` | Administrator Registration Confirmation |
-| `CrowdCompassEventGuideInvitation` | CrowdCompass Event Guide Invitation |
-| `CrowdCompassAppDownload` | CrowdCompass App Download |
-| `WaitlistNotification` | Waitlist Notification |
-| `SessionWaitlistNotification` | Session Waitlist Notification |
-| `ShoulderDateNotification` | Shoulder Date Notification |
-| `SelectedRoommateNotification` | Selected Roommate Notification |
-| `MatchedRoommateNotification` | Matched Roommate Notification |
-| `DeclinedRoommateNotification` | Declined Roommate Notification |
-| `OnArrivalPostEventFeedback` | OnArrival Post Event Feedback |
-| `OnArrivalGuestPostEventFeedback` | OnArrival Guest Post Event Feedback |
-| `TravelModificationConfirmation` | Travel Modification Confirmation |
-| `Custom` | Custom |
-| `NewAppointment` | New Appointment |
-| `AppointmentAccepted` | Appointment Accepted |
-| `AppointmentDeclined` | Appointment Declined |
-| `AppointmentCancelled` | Appointment Cancelled |
-| `AppointmentEdited` | Appointment Edited |
-| `PendingAppointmentReminder` | Pending Appointment Reminder |
-| `UpcomingAppointmentReminder` | Upcoming Appointment Reminder |
-| `AttendeeRemoved` | Attendee Removed |
-| `OptInEmail` | Opt In Email |
-| `ResourceCenterInvitation` | Resource Center Invitation |
-| `SingleTaskReminder` | Single Task Reminder |
-| `MobileAppInvitation` | Mobile App Invitation |
-| `LoginVerificationCode` | Login Verification Code |
-| `SaveTheDate` | Save The Date |
-| `AllTasksReminder` | All Tasks Reminder |
-| `ExhibitorAdminInvitation` | Exhibitor Admin Invitation |
-| `ExhibitorAdminReminder` | Exhibitor Admin Reminder |
-| `ExhibitorDeviceRentalAccessCode` | Exhibitor Device Rental Access Code |
-| `ExhibitorAppLicenseAccessCode` | Exhibitor App License Access Code |
-| `ExhibitorLeadsExport` | Exhibitor Leads Export |
-| `StakeholderFeedbackInvitation` | Stakeholder Feedback Invitation |
-| `ExhibitorTaskReminder` | Exhibitor Task Reminder |
-| `LeadCaptureRequestedMaterials` | LeadCapture Requested Materials |
-| `IntegrationAlerts` | Integration Alerts |
-| `Unknown` | Unknown |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/EncodingProfile.md b/packages/csharp/docs/Models/Components/EncodingProfile.md
new file mode 100644
index 00000000..9a35c38c
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/EncodingProfile.md
@@ -0,0 +1,19 @@
+# EncodingProfile
+
+Denotes the profile to use when encoding the video. Planner profile is for encoding high-quality event content, like session videos. Attendee profile is for encoding lower-quality content intended to go on attendee profiles and social feeds in the event.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = EncodingProfile.Planner;
+```
+
+
+## Values
+
+| Name | Value |
+| ---------- | ---------- |
+| `Planner` | Planner |
+| `Attendee` | Attendee |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/EncodingProfileJson.md b/packages/csharp/docs/Models/Components/EncodingProfileJson.md
deleted file mode 100644
index 82794364..00000000
--- a/packages/csharp/docs/Models/Components/EncodingProfileJson.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# EncodingProfileJson
-
-Denotes the profile to use when encoding the video. Planner profile is for encoding high-quality event content, like session videos. Attendee profile is for encoding lower-quality content intended to go on attendee profiles and social feeds in the event.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = EncodingProfileJson.Planner;
-```
-
-
-## Values
-
-| Name | Value |
-| ---------- | ---------- |
-| `Planner` | Planner |
-| `Attendee` | Attendee |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ErrorResponse1.md b/packages/csharp/docs/Models/Components/ErrorResponse1.md
index ec913a9b..7a570385 100644
--- a/packages/csharp/docs/Models/Components/ErrorResponse1.md
+++ b/packages/csharp/docs/Models/Components/ErrorResponse1.md
@@ -5,9 +5,9 @@ Represents an error response with additional details of cascading error messages
## Fields
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- |
-| `Code` | *long* | :heavy_check_mark: | The HTTP status code representing the error. | 400 |
-| `Message` | *string* | :heavy_check_mark: | A brief description of the error. | Bad Request |
-| `Target` | *string* | :heavy_minus_sign: | The target resource of the error. | example target |
-| `Details` | List<[ZeroAllOf1](../../Models/Components/ZeroAllOf1.md)> | :heavy_minus_sign: | Additional details of cascading error messages. | |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- |
+| `Code` | *long* | :heavy_check_mark: | The HTTP status code representing the error. | 400 |
+| `Message` | *string* | :heavy_check_mark: | A brief description of the error. | Bad Request |
+| `Target` | *string* | :heavy_minus_sign: | The target resource of the error. | example target |
+| `Details` | List<[ErrorResponseBase](../../Models/Components/ErrorResponseBase.md)> | :heavy_minus_sign: | Additional details of cascading error messages. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ErrorResponse2.md b/packages/csharp/docs/Models/Components/ErrorResponse2.md
index 073417fb..3fb42662 100644
--- a/packages/csharp/docs/Models/Components/ErrorResponse2.md
+++ b/packages/csharp/docs/Models/Components/ErrorResponse2.md
@@ -5,9 +5,9 @@ Represents an error response with additional details of cascading error messages
## Fields
-| Field | Type | Required | Description | Example |
-| ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- |
-| `Code` | *long* | :heavy_check_mark: | The HTTP status code representing the error. | 400 |
-| `Message` | *string* | :heavy_check_mark: | A brief description of the error. | Bad Request |
-| `Target` | *string* | :heavy_minus_sign: | The target resource of the error. | example target |
-| `Details` | List<[ErrorResponseBase](../../Models/Components/ErrorResponseBase.md)> | :heavy_minus_sign: | Additional details of cascading error messages. | |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- |
+| `Code` | *long* | :heavy_check_mark: | The HTTP status code representing the error. | 400 |
+| `Message` | *string* | :heavy_check_mark: | A brief description of the error. | Bad Request |
+| `Target` | *string* | :heavy_minus_sign: | The target resource of the error. | example target |
+| `Details` | List<[ZeroAllOf1](../../Models/Components/ZeroAllOf1.md)> | :heavy_minus_sign: | Additional details of cascading error messages. | |
\ 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 c782c169..0e64f229 100644
--- a/packages/csharp/docs/Models/Components/Event1.md
+++ b/packages/csharp/docs/Models/Components/Event1.md
@@ -35,9 +35,9 @@ Represents an event.
| `Capacity` | *long* | :heavy_minus_sign: | The maximum amount of attendees that can attend the event. Only used for events with the registration feature. | 50 |
| `Planners` | List<[PlannerJson2](../../Models/Components/PlannerJson2.md)> | :heavy_check_mark: | A collection of contacts representing the event planners. | |
| `Stakeholders` | List<[StakeholderJson](../../Models/Components/StakeholderJson.md)> | :heavy_minus_sign: | A collection of contacts representing event stakeholders. | |
-| `CustomFields` | List<[CustomFieldJson3](../../Models/Components/CustomFieldJson3.md)> | :heavy_minus_sign: | Collection of custom fields. | |
+| `CustomFields` | List<[CustomFieldJson2](../../Models/Components/CustomFieldJson2.md)> | :heavy_minus_sign: | Collection of custom fields. | |
| ~~`Category`~~ | [EventLookup](../../Models/Components/EventLookup.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
The category to which this event belongs (no longer supported). | |
-| `Type` | [EventTypeJson1](../../Models/Components/EventTypeJson1.md) | :heavy_check_mark: | Type of event being created. The following event types are not supported: Cvent Webinar, Cvent Essentials. | Conference |
+| `Type` | [EventTypeJson](../../Models/Components/EventTypeJson.md) | :heavy_check_mark: | Type of event being created. The following event types are not supported: Cvent Webinar, Cvent Essentials. | Conference |
| `Links` | [EventLinksJson](../../Models/Components/EventLinksJson.md) | :heavy_minus_sign: | Represents the links associated with an event. | {
"invitation": {
"href": "https://cvent.com"
},
"agenda": {
"href": "https://cvent.com"
},
"summary": {
"href": "https://cvent.com"
},
"registration": {
"href": "https://cvent.com"
}
} |
| `Created` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when this record was created. | 2017-01-02T02:00:00Z |
| `LastModified` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when this record was updated. | 2019-02-12T03:00:00Z |
diff --git a/packages/csharp/docs/Models/Components/Event12.md b/packages/csharp/docs/Models/Components/Event12.md
new file mode 100644
index 00000000..46ad6c4b
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Event12.md
@@ -0,0 +1,10 @@
+# Event12
+
+Event details.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ |
+| `Id` | *string* | :heavy_minus_sign: | Unique identifier for the event linked with the RFP, if any. | 50dc08af-24a9-4d01-84be-3d43133dc945 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Event21.md b/packages/csharp/docs/Models/Components/Event21.md
deleted file mode 100644
index 1320599d..00000000
--- a/packages/csharp/docs/Models/Components/Event21.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# Event21
-
-The Associated Event.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
-| `Id` | *string* | :heavy_check_mark: | Event id | 3db28cfc-db22-11eb-8d19-0242ac130003 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Event3.md b/packages/csharp/docs/Models/Components/Event3.md
new file mode 100644
index 00000000..67a3471b
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Event3.md
@@ -0,0 +1,10 @@
+# Event3
+
+The Associated Event.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
+| `Id` | *string* | :heavy_check_mark: | Event id | 3db28cfc-db22-11eb-8d19-0242ac130003 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/EventAllOf.md b/packages/csharp/docs/Models/Components/EventAllOf.md
deleted file mode 100644
index 04be9ccb..00000000
--- a/packages/csharp/docs/Models/Components/EventAllOf.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# EventAllOf
-
-Event ID
-
-
-## Fields
-
-| Field | Type | Required | Description |
-| -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_minus_sign: | ID of the event where the contact was created, applicable when contact snapshot is enabled for an event. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/EventContactId.md b/packages/csharp/docs/Models/Components/EventContactId.md
new file mode 100644
index 00000000..19d4d6bb
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/EventContactId.md
@@ -0,0 +1,11 @@
+# EventContactId
+
+A pair of event and contact id.
+
+
+## Fields
+
+| Field | Type | Required | Description |
+| ------------------ | ------------------ | ------------------ | ------------------ |
+| `EventId` | *string* | :heavy_check_mark: | ID of the event. |
+| `ContactId` | *string* | :heavy_check_mark: | ID of the contact. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/EventContactIdJson.md b/packages/csharp/docs/Models/Components/EventContactIdJson.md
deleted file mode 100644
index b891cba4..00000000
--- a/packages/csharp/docs/Models/Components/EventContactIdJson.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# EventContactIdJson
-
-A pair of event and contact id.
-
-
-## Fields
-
-| Field | Type | Required | Description |
-| ------------------ | ------------------ | ------------------ | ------------------ |
-| `EventId` | *string* | :heavy_check_mark: | ID of the event. |
-| `ContactId` | *string* | :heavy_check_mark: | ID of the contact. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/EventEmailsPaginatedResponse.md b/packages/csharp/docs/Models/Components/EventEmailsPaginatedResponse.md
index ddfb0c5c..b4ff3f78 100644
--- a/packages/csharp/docs/Models/Components/EventEmailsPaginatedResponse.md
+++ b/packages/csharp/docs/Models/Components/EventEmailsPaginatedResponse.md
@@ -7,5 +7,5 @@ Paginated response for the collection of emails for a specified event.
| Field | Type | Required | Description |
| ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- |
-| `Paging` | [PagingJson19](../../Models/Components/PagingJson19.md) | :heavy_check_mark: | Represents pagination information for a collection of resources. |
+| `Paging` | [PagingJson2](../../Models/Components/PagingJson2.md) | :heavy_check_mark: | Represents pagination information for a collection of resources. |
| `Data` | List<[EventEmailJson](../../Models/Components/EventEmailJson.md)> | :heavy_check_mark: | Collection of emails for a specific event. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/EventFormatType.md b/packages/csharp/docs/Models/Components/EventFormatType.md
new file mode 100644
index 00000000..6029c115
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/EventFormatType.md
@@ -0,0 +1,20 @@
+# EventFormatType
+
+Event format type.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = EventFormatType.InPerson;
+```
+
+
+## Values
+
+| Name | Value |
+| ---------- | ---------- |
+| `InPerson` | IN_PERSON |
+| `Hybrid` | HYBRID |
+| `Virtual` | VIRTUAL |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/EventFormatTypeJson0.md b/packages/csharp/docs/Models/Components/EventFormatTypeJson0.md
deleted file mode 100644
index 732645fc..00000000
--- a/packages/csharp/docs/Models/Components/EventFormatTypeJson0.md
+++ /dev/null
@@ -1,20 +0,0 @@
-# EventFormatTypeJson0
-
-Event format type.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = EventFormatTypeJson0.InPerson;
-```
-
-
-## Values
-
-| Name | Value |
-| ---------- | ---------- |
-| `InPerson` | IN_PERSON |
-| `Hybrid` | HYBRID |
-| `Virtual` | VIRTUAL |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/EventInput.md b/packages/csharp/docs/Models/Components/EventInput.md
index 8e06f278..559980b2 100644
--- a/packages/csharp/docs/Models/Components/EventInput.md
+++ b/packages/csharp/docs/Models/Components/EventInput.md
@@ -19,4 +19,4 @@ Represents an event.
| `Note` | *string* | :heavy_minus_sign: | Event note created by planners for internal use. | This event will need some coordination with external systems. |
| `Languages` | List<*string*> | :heavy_check_mark: | List of IETF language tags enabled for the event. This field supports reading multiple language tags but supports writing only one language to an event. | |
| `Planners` | List<[PlannerJson2Input](../../Models/Components/PlannerJson2Input.md)> | :heavy_check_mark: | A collection of contacts representing the event planners. | |
-| `Type` | [EventTypeJson1](../../Models/Components/EventTypeJson1.md) | :heavy_check_mark: | Type of event being created. The following event types are not supported: Cvent Webinar, Cvent Essentials. | Conference |
\ No newline at end of file
+| `Type` | [EventTypeJson](../../Models/Components/EventTypeJson.md) | :heavy_check_mark: | Type of event being created. The following event types are not supported: Cvent Webinar, Cvent Essentials. | Conference |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/EventJson.md b/packages/csharp/docs/Models/Components/EventJson.md
new file mode 100644
index 00000000..366ec1be
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/EventJson.md
@@ -0,0 +1,10 @@
+# EventJson
+
+ID of the event.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
+| `Id` | *string* | :heavy_check_mark: | UUID of the event. | 103097a4-143d-11e5-9f99-d0a637ee0032 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/EventJson0.md b/packages/csharp/docs/Models/Components/EventJson0.md
deleted file mode 100644
index cbb96b98..00000000
--- a/packages/csharp/docs/Models/Components/EventJson0.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# EventJson0
-
-Event details.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ |
-| `Id` | *string* | :heavy_minus_sign: | Unique identifier for the event linked with the RFP, if any. | 50dc08af-24a9-4d01-84be-3d43133dc945 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/EventJson1.md b/packages/csharp/docs/Models/Components/EventJson1.md
index e4e6833e..8546bccf 100644
--- a/packages/csharp/docs/Models/Components/EventJson1.md
+++ b/packages/csharp/docs/Models/Components/EventJson1.md
@@ -1,10 +1,10 @@
# EventJson1
-ID of the event.
+Event ID Information.
## Fields
| Field | Type | Required | Description | Example |
| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
-| `Id` | *string* | :heavy_check_mark: | UUID of the event. | 103097a4-143d-11e5-9f99-d0a637ee0032 |
\ No newline at end of file
+| `Id` | *string* | :heavy_minus_sign: | Identifier of a particular Event. | 3d808ee8-94f8-4f3a-9ad1-6b23f4e4c329 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/EventJson2.md b/packages/csharp/docs/Models/Components/EventJson2.md
deleted file mode 100644
index 23f93331..00000000
--- a/packages/csharp/docs/Models/Components/EventJson2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# EventJson2
-
-Event ID Information.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
-| `Id` | *string* | :heavy_minus_sign: | Identifier of a particular Event. | 3d808ee8-94f8-4f3a-9ad1-6b23f4e4c329 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/EventJson3.md b/packages/csharp/docs/Models/Components/EventJson3.md
new file mode 100644
index 00000000..8fb56dad
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/EventJson3.md
@@ -0,0 +1,10 @@
+# EventJson3
+
+Detail object of an event which is associated to a survey.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
+| `Id` | *string* | :heavy_minus_sign: | Id of the associated event | 9463c74e-18c6-401a-a710-ae0f485bf059 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/EventJson4.md b/packages/csharp/docs/Models/Components/EventJson4.md
deleted file mode 100644
index 8cf43a6f..00000000
--- a/packages/csharp/docs/Models/Components/EventJson4.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# EventJson4
-
-Detail object of an event which is associated to a survey.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
-| `Id` | *string* | :heavy_minus_sign: | Id of the associated event | 9463c74e-18c6-401a-a710-ae0f485bf059 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/EventJson5.md b/packages/csharp/docs/Models/Components/EventJson5.md
new file mode 100644
index 00000000..f69f71d4
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/EventJson5.md
@@ -0,0 +1,10 @@
+# EventJson5
+
+An event reference used in attendee insights to identify the event context for engagement data
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- |
+| `Id` | *string* | :heavy_check_mark: | A unique identifier (UUID) for the event where the engagement score applies | 04cb6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/EventJson6.md b/packages/csharp/docs/Models/Components/EventJson6.md
index ea2ef982..15156105 100644
--- a/packages/csharp/docs/Models/Components/EventJson6.md
+++ b/packages/csharp/docs/Models/Components/EventJson6.md
@@ -1,10 +1,10 @@
# EventJson6
-An event reference used in attendee insights to identify the event context for engagement data
+Details of the event.
## Fields
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_check_mark: | A unique identifier (UUID) for the event where the engagement score applies | 04cb6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
+| `Id` | *string* | :heavy_check_mark: | The unique ID of the event. | a150f1ee-6c54-4b01-90e6-d701748f0851 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/EventJson8.md b/packages/csharp/docs/Models/Components/EventJson8.md
deleted file mode 100644
index efc1420b..00000000
--- a/packages/csharp/docs/Models/Components/EventJson8.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# EventJson8
-
-Details of the event.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
-| `Id` | *string* | :heavy_check_mark: | The unique ID of the event. | a150f1ee-6c54-4b01-90e6-d701748f0851 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/EventLite.md b/packages/csharp/docs/Models/Components/EventLite.md
new file mode 100644
index 00000000..5bb7b608
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/EventLite.md
@@ -0,0 +1,10 @@
+# EventLite
+
+The unique identifier of an event.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
+| `Id` | *string* | :heavy_check_mark: | The unique identifier for an event. | 2ef03846-fced-4ce3-a077-d64ca891a4b1 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/EventLiteJson.md b/packages/csharp/docs/Models/Components/EventLiteJson.md
deleted file mode 100644
index 5a8d39be..00000000
--- a/packages/csharp/docs/Models/Components/EventLiteJson.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# EventLiteJson
-
-The unique identifier of an event.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
-| `Id` | *string* | :heavy_check_mark: | The unique identifier for an event. | 2ef03846-fced-4ce3-a077-d64ca891a4b1 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/EventOrganization1.md b/packages/csharp/docs/Models/Components/EventOrganization1.md
new file mode 100644
index 00000000..c0cb2a85
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/EventOrganization1.md
@@ -0,0 +1,16 @@
+# EventOrganization1
+
+Details of organization which is hosting the event.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- |
+| `Organization` | [Organization](../../Models/Components/Organization.md) | :heavy_minus_sign: | Organization details. | |
+| `ConfidentialProfile` | *bool* | :heavy_minus_sign: | True indicates organization profile has to be kept confidential. | |
+| `Industry` | [Industry1](../../Models/Components/Industry1.md) | :heavy_minus_sign: | Industry | |
+| `Name` | *string* | :heavy_check_mark: | Name of the organization hosting the event. | Cvent Inc. |
+| `Type` | [OrganizationType1](../../Models/Components/OrganizationType1.md) | :heavy_check_mark: | Organization type. | |
+| `Address` | [Address1](../../Models/Components/Address1.md) | :heavy_minus_sign: | Address details. | |
+| `EventsPerYear` | *long* | :heavy_minus_sign: | Number of events per year. | 450 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/EventQuestionJson.md b/packages/csharp/docs/Models/Components/EventQuestionJson.md
index d0321719..5095e4c0 100644
--- a/packages/csharp/docs/Models/Components/EventQuestionJson.md
+++ b/packages/csharp/docs/Models/Components/EventQuestionJson.md
@@ -18,5 +18,5 @@ Represents a question associated with an event.
| `Tag` | *string* | :heavy_minus_sign: | Tag of the question. It allows comparison of similar questions across multiple events. | All Admission Items |
| `Session` | [EventQuestionJsonSession](../../Models/Components/EventQuestionJsonSession.md) | :heavy_minus_sign: | Represents the session associated to the question, if any. Blank if no session is associated. In addition, only one of the `session` or `admissionItem` object are populated - never both. | |
| `AdmissionItem` | [EventQuestionJsonAdmissionItem](../../Models/Components/EventQuestionJsonAdmissionItem.md) | :heavy_minus_sign: | Represents the admission item associated to the question, if any. Blank if no admission item is associated. In addition, only one of the `session` or `admissionItem` object are populated - never both. | |
-| `Type` | [QuestionTypeJson3](../../Models/Components/QuestionTypeJson3.md) | :heavy_minus_sign: | This object represents the type of a question | |
+| `Type` | [QuestionTypeJson2](../../Models/Components/QuestionTypeJson2.md) | :heavy_minus_sign: | This object represents the type of a question | |
| `InternalNote` | *string* | :heavy_minus_sign: | Optional description to provide additional context of the question. | This question is for the event registration form. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/EventSurveyQuestionJson.md b/packages/csharp/docs/Models/Components/EventSurveyQuestionJson.md
index 906e839e..31b3303e 100644
--- a/packages/csharp/docs/Models/Components/EventSurveyQuestionJson.md
+++ b/packages/csharp/docs/Models/Components/EventSurveyQuestionJson.md
@@ -16,15 +16,15 @@ An event survey question.
| `ShortText` | *string* | :heavy_minus_sign: | Reporting value of the Category, Its like a custom abbreviation | Category 1 Reporting value |
| `HtmlText` | *string* | :heavy_minus_sign: | Html of the question | Question Html |
| `Code` | *string* | :heavy_minus_sign: | Question Code | 4l6x |
-| `Type` | [QuestionTypeJson2](../../Models/Components/QuestionTypeJson2.md) | :heavy_minus_sign: | Question Type. | SingleChoice |
-| `Choices` | List<[ChoiceJson2](../../Models/Components/ChoiceJson2.md)> | :heavy_minus_sign: | List of choices for the question. | |
-| `Categories` | List<[CategoryJson2](../../Models/Components/CategoryJson2.md)> | :heavy_minus_sign: | List of categories for the question. | |
-| `SubCategories` | List<[TextFieldJson1](../../Models/Components/TextFieldJson1.md)> | :heavy_minus_sign: | List of sub categories for matrix side-by-side questions | |
-| `NotApplicableAnswer` | [AdditionalChoiceJson1](../../Models/Components/AdditionalChoiceJson1.md) | :heavy_minus_sign: | Contains text of additional choice i.e N/A choice or otherAnswer choice | |
-| `OtherAnswer` | [AdditionalChoiceJson1](../../Models/Components/AdditionalChoiceJson1.md) | :heavy_minus_sign: | Contains text of additional choice i.e N/A choice or otherAnswer choice | |
+| `Type` | [QuestionTypeJson1](../../Models/Components/QuestionTypeJson1.md) | :heavy_minus_sign: | Question Type. | SingleChoice |
+| `Choices` | List<[ChoiceJson1](../../Models/Components/ChoiceJson1.md)> | :heavy_minus_sign: | List of choices for the question. | |
+| `Categories` | List<[CategoryJson1](../../Models/Components/CategoryJson1.md)> | :heavy_minus_sign: | List of categories for the question. | |
+| `SubCategories` | List<[TextFieldJson](../../Models/Components/TextFieldJson.md)> | :heavy_minus_sign: | List of sub categories for matrix side-by-side questions | |
+| `NotApplicableAnswer` | [AdditionalChoiceJson](../../Models/Components/AdditionalChoiceJson.md) | :heavy_minus_sign: | Contains text of additional choice i.e N/A choice or otherAnswer choice | |
+| `OtherAnswer` | [AdditionalChoiceJson](../../Models/Components/AdditionalChoiceJson.md) | :heavy_minus_sign: | Contains text of additional choice i.e N/A choice or otherAnswer choice | |
| `Comments` | *string* | :heavy_minus_sign: | Text Value of Comments Input box placeholder | Comments Text |
| `Required` | *bool* | :heavy_minus_sign: | Is this a mandatory question | true |
-| `Fields` | List<[FieldJson2](../../Models/Components/FieldJson2.md)> | :heavy_minus_sign: | List of fields for form/matrix questions | |
+| `Fields` | List<[FieldJson](../../Models/Components/FieldJson.md)> | :heavy_minus_sign: | List of fields for form/matrix questions | |
| `MaxScore` | *double* | :heavy_minus_sign: | Max possible score | 20 |
| `TotalSum` | *long* | :heavy_minus_sign: | Total configured sum of all choices for number allocation question | 45 |
| `Survey` | [UuidJson](../../Models/Components/UuidJson.md) | :heavy_minus_sign: | The reference to the related entity. Contains only the ID of the related entity. | |
diff --git a/packages/csharp/docs/Models/Components/EventSurveyRespondent.md b/packages/csharp/docs/Models/Components/EventSurveyRespondent.md
index a95641d4..ea8073b0 100644
--- a/packages/csharp/docs/Models/Components/EventSurveyRespondent.md
+++ b/packages/csharp/docs/Models/Components/EventSurveyRespondent.md
@@ -22,7 +22,7 @@ Respondent detail object for event survey.
| `PercentageScore` | *double* | :heavy_minus_sign: | Respondent Percentage Score | 70 |
| `Links` | [EventSurveyRespondentLinks](../../Models/Components/EventSurveyRespondentLinks.md) | :heavy_minus_sign: | Related links. | |
| `SourceId` | *string* | :heavy_minus_sign: | Source IDs track respondents in an external system integrated with the Cvent survey. | IN4IDS1 |
-| `Event` | [EventJson4](../../Models/Components/EventJson4.md) | :heavy_minus_sign: | Detail object of an event which is associated to a survey. | |
+| `Event` | [EventJson3](../../Models/Components/EventJson3.md) | :heavy_minus_sign: | Detail object of an event which is associated to a survey. | |
| `Attendee` | [EventSurveyRespondentAttendee](../../Models/Components/EventSurveyRespondentAttendee.md) | :heavy_minus_sign: | Associated attendee. | |
| `Contact` | [EventSurveyRespondentContact](../../Models/Components/EventSurveyRespondentContact.md) | :heavy_minus_sign: | Associated contact. | |
| `Surveys` | List<[RespondentEventSurveyReferenceJson](../../Models/Components/RespondentEventSurveyReferenceJson.md)> | :heavy_minus_sign: | List of associated surveys. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/EventSurveyResponse.md b/packages/csharp/docs/Models/Components/EventSurveyResponse.md
index edf2ceb4..b6e8e4d8 100644
--- a/packages/csharp/docs/Models/Components/EventSurveyResponse.md
+++ b/packages/csharp/docs/Models/Components/EventSurveyResponse.md
@@ -16,7 +16,7 @@ Response object for event survey respondent.
| `Question` | [UuidJson](../../Models/Components/UuidJson.md) | :heavy_check_mark: | The reference to the related entity. Contains only the ID of the related entity. | |
| `Answers` | List<[AnswerJson](../../Models/Components/AnswerJson.md)> | :heavy_check_mark: | List of responded survey answers. | |
| ~~`Score`~~ | *double* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
Answer score (This property is not supported). | 20 |
-| `Event` | [EventJson4](../../Models/Components/EventJson4.md) | :heavy_minus_sign: | Detail object of an event which is associated to a survey. | |
+| `Event` | [EventJson3](../../Models/Components/EventJson3.md) | :heavy_minus_sign: | Detail object of an event which is associated to a survey. | |
| `Survey` | [UuidJson](../../Models/Components/UuidJson.md) | :heavy_minus_sign: | The reference to the related entity. Contains only the ID of the related entity. | |
| `Session` | [UuidJson](../../Models/Components/UuidJson.md) | :heavy_minus_sign: | The reference to the related entity. Contains only the ID of the related entity. | |
| `Speaker` | [UuidJson](../../Models/Components/UuidJson.md) | :heavy_minus_sign: | The reference to the related entity. Contains only the ID of the related entity. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/EventType1.md b/packages/csharp/docs/Models/Components/EventType1.md
new file mode 100644
index 00000000..48142cd4
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/EventType1.md
@@ -0,0 +1,39 @@
+# EventType1
+
+Event type.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = EventType1.AnniversaryBirthday;
+```
+
+
+## Values
+
+| Name | Value |
+| --------------------------- | --------------------------- |
+| `AnniversaryBirthday` | ANNIVERSARY_BIRTHDAY |
+| `BachelorBacheloretteParty` | BACHELOR_BACHELORETTE_PARTY |
+| `BarBatMitzvah` | BAR_BAT_MITZVAH |
+| `BusinessMeeting` | BUSINESS_MEETING |
+| `ConferenceConvention` | CONFERENCE_CONVENTION |
+| `CorporateEvent` | CORPORATE_EVENT |
+| `CustomerEvent` | CUSTOMER_EVENT |
+| `EducationalSeminar` | EDUCATIONAL_SEMINAR |
+| `FraternitySororityGroup` | FRATERNITY_SORORITY_GROUP |
+| `FundraiserCharityEvent` | FUNDRAISER_CHARITY_EVENT |
+| `ReceptionHolidayParty` | RECEPTION_HOLIDAY_PARTY |
+| `IncentiveTravel` | INCENTIVE_TRAVEL |
+| `Reunion` | REUNION |
+| `ShareholdersMeeting` | SHAREHOLDERS_MEETING |
+| `SpecialEvent` | SPECIAL_EVENT |
+| `SportsEvent` | SPORTS_EVENT |
+| `TeamBuildingEvent` | TEAM_BUILDING_EVENT |
+| `TourGroupVacation` | TOUR_GROUP_VACATION |
+| `TradeShowConsumerShow` | TRADE_SHOW_CONSUMER_SHOW |
+| `Training` | TRAINING |
+| `Wedding` | WEDDING |
+| `Other` | OTHER |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/EventTypeJson.md b/packages/csharp/docs/Models/Components/EventTypeJson.md
new file mode 100644
index 00000000..b4326edb
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/EventTypeJson.md
@@ -0,0 +1,37 @@
+# EventTypeJson
+
+Type of event being created. The following event types are not supported: Cvent Webinar, Cvent Essentials.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = EventTypeJson.Celebration;
+```
+
+
+## Values
+
+| Name | Value |
+| ------------------- | ------------------- |
+| `Celebration` | Celebration |
+| `Conference` | Conference |
+| `CventEssentials` | CventEssentials |
+| `CventWebinar` | CventWebinar |
+| `Dinner` | Dinner |
+| `Forum` | Forum |
+| `FundraiserBenefit` | FundraiserBenefit |
+| `Holiday` | Holiday |
+| `IncentiveTrip` | IncentiveTrip |
+| `Meeting` | Meeting |
+| `OtherGeneral` | OtherGeneral |
+| `PoliticalEvent` | PoliticalEvent |
+| `Reunion` | Reunion |
+| `SaveTheDate` | SaveTheDate |
+| `Seminar` | Seminar |
+| `SimpleEvent` | SimpleEvent |
+| `SportsEvent` | SportsEvent |
+| `TradeShow` | TradeShow |
+| `TrainingSession` | TrainingSession |
+| `Webinar` | Webinar |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/EventTypeJson0.md b/packages/csharp/docs/Models/Components/EventTypeJson0.md
deleted file mode 100644
index e5e7a241..00000000
--- a/packages/csharp/docs/Models/Components/EventTypeJson0.md
+++ /dev/null
@@ -1,39 +0,0 @@
-# EventTypeJson0
-
-Event type.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = EventTypeJson0.AnniversaryBirthday;
-```
-
-
-## Values
-
-| Name | Value |
-| --------------------------- | --------------------------- |
-| `AnniversaryBirthday` | ANNIVERSARY_BIRTHDAY |
-| `BachelorBacheloretteParty` | BACHELOR_BACHELORETTE_PARTY |
-| `BarBatMitzvah` | BAR_BAT_MITZVAH |
-| `BusinessMeeting` | BUSINESS_MEETING |
-| `ConferenceConvention` | CONFERENCE_CONVENTION |
-| `CorporateEvent` | CORPORATE_EVENT |
-| `CustomerEvent` | CUSTOMER_EVENT |
-| `EducationalSeminar` | EDUCATIONAL_SEMINAR |
-| `FraternitySororityGroup` | FRATERNITY_SORORITY_GROUP |
-| `FundraiserCharityEvent` | FUNDRAISER_CHARITY_EVENT |
-| `ReceptionHolidayParty` | RECEPTION_HOLIDAY_PARTY |
-| `IncentiveTravel` | INCENTIVE_TRAVEL |
-| `Reunion` | REUNION |
-| `ShareholdersMeeting` | SHAREHOLDERS_MEETING |
-| `SpecialEvent` | SPECIAL_EVENT |
-| `SportsEvent` | SPORTS_EVENT |
-| `TeamBuildingEvent` | TEAM_BUILDING_EVENT |
-| `TourGroupVacation` | TOUR_GROUP_VACATION |
-| `TradeShowConsumerShow` | TRADE_SHOW_CONSUMER_SHOW |
-| `Training` | TRAINING |
-| `Wedding` | WEDDING |
-| `Other` | OTHER |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/EventTypeJson1.md b/packages/csharp/docs/Models/Components/EventTypeJson1.md
deleted file mode 100644
index f5eb6e2c..00000000
--- a/packages/csharp/docs/Models/Components/EventTypeJson1.md
+++ /dev/null
@@ -1,37 +0,0 @@
-# EventTypeJson1
-
-Type of event being created. The following event types are not supported: Cvent Webinar, Cvent Essentials.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = EventTypeJson1.Celebration;
-```
-
-
-## Values
-
-| Name | Value |
-| ------------------- | ------------------- |
-| `Celebration` | Celebration |
-| `Conference` | Conference |
-| `CventEssentials` | CventEssentials |
-| `CventWebinar` | CventWebinar |
-| `Dinner` | Dinner |
-| `Forum` | Forum |
-| `FundraiserBenefit` | FundraiserBenefit |
-| `Holiday` | Holiday |
-| `IncentiveTrip` | IncentiveTrip |
-| `Meeting` | Meeting |
-| `OtherGeneral` | OtherGeneral |
-| `PoliticalEvent` | PoliticalEvent |
-| `Reunion` | Reunion |
-| `SaveTheDate` | SaveTheDate |
-| `Seminar` | Seminar |
-| `SimpleEvent` | SimpleEvent |
-| `SportsEvent` | SportsEvent |
-| `TradeShow` | TradeShow |
-| `TrainingSession` | TrainingSession |
-| `Webinar` | Webinar |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/EventUpdate.md b/packages/csharp/docs/Models/Components/EventUpdate.md
index 7b6a3d16..c3581375 100644
--- a/packages/csharp/docs/Models/Components/EventUpdate.md
+++ b/packages/csharp/docs/Models/Components/EventUpdate.md
@@ -35,9 +35,9 @@ Represents updates to an event.
| `Capacity` | *long* | :heavy_minus_sign: | The maximum number of individuals that can attend the event. Only used for events with the registration feature. | 50 |
| `Planners` | List<[PlannerJson2](../../Models/Components/PlannerJson2.md)> | :heavy_check_mark: | A collection of contacts representing the event planners. | |
| `Stakeholders` | List<[StakeholderJson](../../Models/Components/StakeholderJson.md)> | :heavy_minus_sign: | A collection of contacts representing event stakeholders. | |
-| `CustomFields` | List<[CustomFieldJson3](../../Models/Components/CustomFieldJson3.md)> | :heavy_minus_sign: | Collection of custom fields. | |
+| `CustomFields` | List<[CustomFieldJson2](../../Models/Components/CustomFieldJson2.md)> | :heavy_minus_sign: | Collection of custom fields. | |
| ~~`Category`~~ | [EventUpdateLookup](../../Models/Components/EventUpdateLookup.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
The category to which this event belongs (no longer supported). | |
-| `Type` | [EventTypeJson1](../../Models/Components/EventTypeJson1.md) | :heavy_check_mark: | Type of event being created. The following event types are not supported: Cvent Webinar, Cvent Essentials. | Conference |
+| `Type` | [EventTypeJson](../../Models/Components/EventTypeJson.md) | :heavy_check_mark: | Type of event being created. The following event types are not supported: Cvent Webinar, Cvent Essentials. | Conference |
| `Links` | [EventLinksJson](../../Models/Components/EventLinksJson.md) | :heavy_minus_sign: | Represents the links associated with an event. | {
"invitation": {
"href": "https://cvent.com"
},
"agenda": {
"href": "https://cvent.com"
},
"summary": {
"href": "https://cvent.com"
},
"registration": {
"href": "https://cvent.com"
}
} |
| `Created` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when this record was created. | 2017-01-02T02:00:00Z |
| `LastModified` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when this record was updated. | 2019-02-12T03:00:00Z |
diff --git a/packages/csharp/docs/Models/Components/EventUpdateInput.md b/packages/csharp/docs/Models/Components/EventUpdateInput.md
index 96ec1ce2..2059ed57 100644
--- a/packages/csharp/docs/Models/Components/EventUpdateInput.md
+++ b/packages/csharp/docs/Models/Components/EventUpdateInput.md
@@ -22,4 +22,4 @@ Represents updates to an event.
| `Languages` | List<*string*> | :heavy_check_mark: | List of IETF language tags enabled for the event. This field supports reading multiple language tags but supports writing only one language to an event. | |
| `Capacity` | *long* | :heavy_minus_sign: | The maximum number of individuals that can attend the event. Only used for events with the registration feature. | 50 |
| `Planners` | List<[PlannerJson2Input](../../Models/Components/PlannerJson2Input.md)> | :heavy_check_mark: | A collection of contacts representing the event planners. | |
-| `Type` | [EventTypeJson1](../../Models/Components/EventTypeJson1.md) | :heavy_check_mark: | Type of event being created. The following event types are not supported: Cvent Webinar, Cvent Essentials. | Conference |
\ No newline at end of file
+| `Type` | [EventTypeJson](../../Models/Components/EventTypeJson.md) | :heavy_check_mark: | Type of event being created. The following event types are not supported: Cvent Webinar, Cvent Essentials. | Conference |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExhibitorCategoryRequest.md b/packages/csharp/docs/Models/Components/ExhibitorCategoryRequest.md
index 284806b3..ecdd0e93 100644
--- a/packages/csharp/docs/Models/Components/ExhibitorCategoryRequest.md
+++ b/packages/csharp/docs/Models/Components/ExhibitorCategoryRequest.md
@@ -7,7 +7,7 @@ JSON schema representing an Exhibitor Category object
| Field | Type | Required | Description | Example |
| --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- |
-| `Event` | [Event21](../../Models/Components/Event21.md) | :heavy_check_mark: | The Associated Event. | |
+| `Event` | [Event3](../../Models/Components/Event3.md) | :heavy_check_mark: | The Associated Event. | |
| `Name` | *string* | :heavy_check_mark: | Name of the exhibitor category | Automobile |
| `Description` | *string* | :heavy_minus_sign: | Exhibitor Category description | everything related to automobiles |
| `Order` | *long* | :heavy_check_mark: | order for exhibitor category | 3 |
diff --git a/packages/csharp/docs/Models/Components/ExhibitorCategoryResponse.md b/packages/csharp/docs/Models/Components/ExhibitorCategoryResponse.md
index d810ef67..8bf48890 100644
--- a/packages/csharp/docs/Models/Components/ExhibitorCategoryResponse.md
+++ b/packages/csharp/docs/Models/Components/ExhibitorCategoryResponse.md
@@ -11,7 +11,7 @@ A description of the Existing Exhibitor Category JSON schema
| `CreatedBy` | *string* | :heavy_minus_sign: | The identifier of the user that created this record. | hporter |
| `LastModified` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when this record was updated. | 2019-02-12T03:00:00Z |
| `LastModifiedBy` | *string* | :heavy_minus_sign: | The identifier of the user that last updated this record. | hporter |
-| `Event` | [Event21](../../Models/Components/Event21.md) | :heavy_check_mark: | The Associated Event. | |
+| `Event` | [Event3](../../Models/Components/Event3.md) | :heavy_check_mark: | The Associated Event. | |
| `Name` | *string* | :heavy_check_mark: | Name of the exhibitor category | Automobile |
| `Description` | *string* | :heavy_minus_sign: | Exhibitor Category description | everything related to automobiles |
| `Order` | *long* | :heavy_check_mark: | order for exhibitor category | 3 |
diff --git a/packages/csharp/docs/Models/Components/ExhibitorRequest.md b/packages/csharp/docs/Models/Components/ExhibitorRequest.md
index 5bc3d71f..7ccf0e33 100644
--- a/packages/csharp/docs/Models/Components/ExhibitorRequest.md
+++ b/packages/csharp/docs/Models/Components/ExhibitorRequest.md
@@ -7,13 +7,13 @@ A representation of an exhibitor including all relevant information.
| Field | Type | Required | Description | Example |
| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- |
-| `Event` | [Event21](../../Models/Components/Event21.md) | :heavy_check_mark: | The Associated Event. | |
+| `Event` | [Event3](../../Models/Components/Event3.md) | :heavy_check_mark: | The Associated Event. | |
| `Name` | *string* | :heavy_check_mark: | Name of the exhibitor. Cvent suggests limiting this to a maximum of 200 characters for optimal results. | Potterfield Harry |
| `Description` | *string* | :heavy_minus_sign: | Exhibitor description | A man who sells relatively good hotdogs |
| `Code` | *string* | :heavy_minus_sign: | Code used to identify the exhibitor | abc123 |
| `SourceId` | *string* | :heavy_minus_sign: | Code used for marketing groupings | software |
| `Location` | *string* | :heavy_minus_sign: | Exhibitor location | Taj Mahal |
-| `Address` | [Address2](../../Models/Components/Address2.md) | :heavy_minus_sign: | An object representing an address with various properties. | |
+| `Address` | [Address4](../../Models/Components/Address4.md) | :heavy_minus_sign: | An object representing an address with various properties. | |
| `Email` | *string* | :heavy_minus_sign: | Email address of the exhibitor | h.potterfield@test.com |
| `MobilePhone` | *string* | :heavy_minus_sign: | Mobile Phone of the exhibitor | 555-555-5555 |
| `WorkPhone` | *string* | :heavy_minus_sign: | Work Phone of the exhibitor | 555-555-5555 |
diff --git a/packages/csharp/docs/Models/Components/ExhibitorResponse.md b/packages/csharp/docs/Models/Components/ExhibitorResponse.md
index 35ba31fd..de85e7d0 100644
--- a/packages/csharp/docs/Models/Components/ExhibitorResponse.md
+++ b/packages/csharp/docs/Models/Components/ExhibitorResponse.md
@@ -11,13 +11,13 @@ JSON schema for the exhibitor object
| `CreatedBy` | *string* | :heavy_minus_sign: | The identifier of the user that created this record. | hporter |
| `LastModified` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when this record was updated. | 2019-02-12T03:00:00Z |
| `LastModifiedBy` | *string* | :heavy_minus_sign: | The identifier of the user that last updated this record. | hporter |
-| `Event` | [Event21](../../Models/Components/Event21.md) | :heavy_check_mark: | The Associated Event. | |
+| `Event` | [Event3](../../Models/Components/Event3.md) | :heavy_check_mark: | The Associated Event. | |
| `Name` | *string* | :heavy_check_mark: | Name of the exhibitor. Cvent suggests limiting this to a maximum of 200 characters for optimal results. | Potterfield Harry |
| `Description` | *string* | :heavy_minus_sign: | Exhibitor description | A man who sells relatively good hotdogs |
| `Code` | *string* | :heavy_minus_sign: | Code used to identify the exhibitor | abc123 |
| `SourceId` | *string* | :heavy_minus_sign: | Code used for marketing groupings | software |
| `Location` | *string* | :heavy_minus_sign: | Exhibitor location | Taj Mahal |
-| `Address` | [Address2](../../Models/Components/Address2.md) | :heavy_minus_sign: | An object representing an address with various properties. | |
+| `Address` | [Address4](../../Models/Components/Address4.md) | :heavy_minus_sign: | An object representing an address with various properties. | |
| `Email` | *string* | :heavy_minus_sign: | Email address of the exhibitor | h.potterfield@test.com |
| `MobilePhone` | *string* | :heavy_minus_sign: | Mobile Phone of the exhibitor | 555-555-5555 |
| `WorkPhone` | *string* | :heavy_minus_sign: | Work Phone of the exhibitor | 555-555-5555 |
diff --git a/packages/csharp/docs/Models/Components/ExistingAudienceSegment.md b/packages/csharp/docs/Models/Components/ExistingAudienceSegment.md
index 9a885dc0..4ff54b88 100644
--- a/packages/csharp/docs/Models/Components/ExistingAudienceSegment.md
+++ b/packages/csharp/docs/Models/Components/ExistingAudienceSegment.md
@@ -11,7 +11,7 @@ Details of an audience segment.
| `CreatedBy` | *string* | :heavy_minus_sign: | The identifier of the user that created this record. | hporter |
| `LastModified` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when this record was updated. | 2019-02-12T03:00:00Z |
| `LastModifiedBy` | *string* | :heavy_minus_sign: | The identifier of the user that last updated this record. | hporter |
-| `Event` | [EventJson1](../../Models/Components/EventJson1.md) | :heavy_check_mark: | ID of the event. | |
+| `Event` | [EventJson](../../Models/Components/EventJson.md) | :heavy_check_mark: | ID of the event. | |
| `Name` | *string* | :heavy_check_mark: | Name of the audience segment. Must be unique in the event where the segment exists. | VIP Attendees |
| `Description` | *string* | :heavy_minus_sign: | Description of the audience segment. | A group of VIP attendees. |
| `Id` | *string* | :heavy_minus_sign: | ID of the audience segment. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
diff --git a/packages/csharp/docs/Models/Components/ExistingAudioTrack.md b/packages/csharp/docs/Models/Components/ExistingAudioTrack.md
index 0998f4c5..4fd23b8c 100644
--- a/packages/csharp/docs/Models/Components/ExistingAudioTrack.md
+++ b/packages/csharp/docs/Models/Components/ExistingAudioTrack.md
@@ -11,12 +11,12 @@ Existing audio track.
| `CreatedBy` | *string* | :heavy_minus_sign: | The identifier of the user that created this record. | hporter |
| `LastModified` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when this record was updated. | 2019-02-12T03:00:00Z |
| `LastModifiedBy` | *string* | :heavy_minus_sign: | The identifier of the user that last updated this record. | hporter |
-| `Video` | [VideoAssetIdJson](../../Models/Components/VideoAssetIdJson.md) | :heavy_check_mark: | Video that this asset was created with. | |
-| `Type` | [AudioTrackTypeJson](../../Models/Components/AudioTrackTypeJson.md) | :heavy_check_mark: | Denotes the file format of the audio track. | mp3 |
+| `Video` | [VideoAssetID](../../Models/Components/VideoAssetID.md) | :heavy_check_mark: | Video that this asset was created with. | |
+| `Type` | [AudioTrackType](../../Models/Components/AudioTrackType.md) | :heavy_check_mark: | Denotes the file format of the audio track. | mp3 |
| `Language` | *string* | :heavy_check_mark: | IETF language tag for the audio track. | en-US |
-| `Variant` | [AudioTrackVariantJson](../../Models/Components/AudioTrackVariantJson.md) | :heavy_minus_sign: | Denotes the variant of an audio track. Main is the primary audio track for this video. Alternate is a possible alternative to the main track. Commentary is a commentary on the primary audio or video track, e.g. a director's commentary. Dub is a translated version of the main audio track. Descriptive is an audio description of a video track. | Alternate |
+| `Variant` | [AudioTrackVariant](../../Models/Components/AudioTrackVariant.md) | :heavy_minus_sign: | Denotes the variant of an audio track. Main is the primary audio track for this video. Alternate is a possible alternative to the main track. Commentary is a commentary on the primary audio or video track, e.g. a director's commentary. Dub is a translated version of the main audio track. Descriptive is an audio description of a video track. | Alternate |
| `Default` | *bool* | :heavy_minus_sign: | True indicates this is the default audio track. | |
| `Duration` | *long* | :heavy_minus_sign: | Audio track duration (in milliseconds). | 3600000 |
-| `Status` | [AudioTrackStatusJson](../../Models/Components/AudioTrackStatusJson.md) | :heavy_minus_sign: | Denotes the status of an audio track. Started indicates the request to upload in the API was submitted, and the URL you'll upload an audio track to was returned. Uploaded indicates that the upload was completed. Scanning indicates a virus scan is happening in a quarantine location; Scanned indicates a successful virus scan. Syncing indicates a complete virus scan, and now transcoding has begun. Rejected indicates a failed virus scan. Error indicates there was a problem processing the audio track. Available indicates the audio track is available for use. | Started |
+| `Status` | [AudioTrackStatus](../../Models/Components/AudioTrackStatus.md) | :heavy_minus_sign: | Denotes the status of an audio track. Started indicates the request to upload in the API was submitted, and the URL you'll upload an audio track to was returned. Uploaded indicates that the upload was completed. Scanning indicates a virus scan is happening in a quarantine location; Scanned indicates a successful virus scan. Syncing indicates a complete virus scan, and now transcoding has begun. Rejected indicates a failed virus scan. Error indicates there was a problem processing the audio track. Available indicates the audio track is available for use. | Started |
| `Id` | *string* | :heavy_check_mark: | The identifier of an audio track. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `Url` | [AssetLocationJson](../../Models/Components/AssetLocationJson.md) | :heavy_minus_sign: | A URL associated with the asset. | |
\ No newline at end of file
+| `Url` | [AssetLocation](../../Models/Components/AssetLocation.md) | :heavy_minus_sign: | A URL associated with the asset. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExistingCustomField.md b/packages/csharp/docs/Models/Components/ExistingCustomField.md
index 1e35a872..6b5e3d4a 100644
--- a/packages/csharp/docs/Models/Components/ExistingCustomField.md
+++ b/packages/csharp/docs/Models/Components/ExistingCustomField.md
@@ -15,7 +15,7 @@ This is used to denote an existing custom field.
| `Name` | *string* | :heavy_check_mark: | The actual text of the custom field. | What is a your favorite color? |
| `Code` | *string* | :heavy_check_mark: | Code to uniquely identify custom field. | FAVORITE_COLOR_CODE |
| `Required` | *bool* | :heavy_minus_sign: | Whether answer to custom field is mandatory or not. | true |
-| `Type` | [CustomFieldTypeJson1](../../Models/Components/CustomFieldTypeJson1.md) | :heavy_check_mark: | This is used to denote the type of data collected by a custom field. Auto-Increment custom fields are read only. | Open Ended Text - One Line |
+| `Type` | [CustomFieldTypeJson](../../Models/Components/CustomFieldTypeJson.md) | :heavy_check_mark: | This is used to denote the type of data collected by a custom field. Auto-Increment custom fields are read only. | Open Ended Text - One Line |
| `Details` | [ExistingCustomFieldDetails](../../Models/Components/ExistingCustomFieldDetails.md) | :heavy_minus_sign: | Type-specific details of the custom-field. | |
| `Order` | *long* | :heavy_minus_sign: | The order of the custom field on the display page. | 1 |
| `HelpText` | *string* | :heavy_minus_sign: | The help text of the custom field. | Enter your favorite color. |
diff --git a/packages/csharp/docs/Models/Components/ExistingCustomFieldDetails.md b/packages/csharp/docs/Models/Components/ExistingCustomFieldDetails.md
index e5e03e5b..93667717 100644
--- a/packages/csharp/docs/Models/Components/ExistingCustomFieldDetails.md
+++ b/packages/csharp/docs/Models/Components/ExistingCustomFieldDetails.md
@@ -11,10 +11,10 @@ Type-specific details of the custom-field.
ExistingCustomFieldDetails.CreateZeroOneOf1(/* values here */);
```
-### OneOneOf
+### One
```csharp
-ExistingCustomFieldDetails.CreateOneOneOf(/* values here */);
+ExistingCustomFieldDetails.CreateOne(/* values here */);
```
### Two
diff --git a/packages/csharp/docs/Models/Components/ExistingCustomFieldDetailsInput.md b/packages/csharp/docs/Models/Components/ExistingCustomFieldDetailsInput.md
index b9554c35..31e339c5 100644
--- a/packages/csharp/docs/Models/Components/ExistingCustomFieldDetailsInput.md
+++ b/packages/csharp/docs/Models/Components/ExistingCustomFieldDetailsInput.md
@@ -11,10 +11,10 @@ Type-specific details of the custom-field.
ExistingCustomFieldDetailsInput.CreateZeroOneOf1(/* values here */);
```
-### OneOneOf
+### One
```csharp
-ExistingCustomFieldDetailsInput.CreateOneOneOf(/* values here */);
+ExistingCustomFieldDetailsInput.CreateOne(/* values here */);
```
### Two
diff --git a/packages/csharp/docs/Models/Components/ExistingCustomFieldInput.md b/packages/csharp/docs/Models/Components/ExistingCustomFieldInput.md
index 06882c7c..cc98bb7b 100644
--- a/packages/csharp/docs/Models/Components/ExistingCustomFieldInput.md
+++ b/packages/csharp/docs/Models/Components/ExistingCustomFieldInput.md
@@ -11,7 +11,7 @@ This is used to denote an existing custom field.
| `Name` | *string* | :heavy_check_mark: | The actual text of the custom field. | What is a your favorite color? |
| `Code` | *string* | :heavy_check_mark: | Code to uniquely identify custom field. | FAVORITE_COLOR_CODE |
| `Required` | *bool* | :heavy_minus_sign: | Whether answer to custom field is mandatory or not. | true |
-| `Type` | [CustomFieldTypeJson1](../../Models/Components/CustomFieldTypeJson1.md) | :heavy_check_mark: | This is used to denote the type of data collected by a custom field. Auto-Increment custom fields are read only. | Open Ended Text - One Line |
+| `Type` | [CustomFieldTypeJson](../../Models/Components/CustomFieldTypeJson.md) | :heavy_check_mark: | This is used to denote the type of data collected by a custom field. Auto-Increment custom fields are read only. | Open Ended Text - One Line |
| `Details` | [ExistingCustomFieldDetailsInput](../../Models/Components/ExistingCustomFieldDetailsInput.md) | :heavy_minus_sign: | Type-specific details of the custom-field. | |
| `HelpText` | *string* | :heavy_minus_sign: | The help text of the custom field. | Enter your favorite color. |
| `DisplayInDataTag` | [DisplayInDataTagJson](../../Models/Components/DisplayInDataTagJson.md) | :heavy_minus_sign: | This option allows you to choose whether to display the custom field in emails. The field name and the value entered by the invitee are used in the My Agenda data tag. You can set the custom field to display always or only when answered. Only applicable to session custom fields. | No |
diff --git a/packages/csharp/docs/Models/Components/ExistingDurationType.md b/packages/csharp/docs/Models/Components/ExistingDurationType.md
index 28c36a53..83c09ec6 100644
--- a/packages/csharp/docs/Models/Components/ExistingDurationType.md
+++ b/packages/csharp/docs/Models/Components/ExistingDurationType.md
@@ -20,4 +20,7 @@ var value = ExistingDurationType.Rfid;
| `Edit` | EDIT |
| `Live` | LIVE |
| `OnDemand` | ON_DEMAND |
-| `Api` | API |
\ No newline at end of file
+| `Api` | API |
+| `Manual` | MANUAL |
+| `Import` | IMPORT |
+| `Eventapp` | EVENTAPP |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExistingELiteratureRequestDataForLead.md b/packages/csharp/docs/Models/Components/ExistingELiteratureRequestDataForLead.md
index d3a01355..f2b79ae2 100644
--- a/packages/csharp/docs/Models/Components/ExistingELiteratureRequestDataForLead.md
+++ b/packages/csharp/docs/Models/Components/ExistingELiteratureRequestDataForLead.md
@@ -11,7 +11,7 @@ A JSON Schema for an existing e-literature request data for a lead.
| `CreatedBy` | *string* | :heavy_minus_sign: | The identifier of the user that created this record. | hporter |
| `LastModified` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when this record was updated. | 2019-02-12T03:00:00Z |
| `LastModifiedBy` | *string* | :heavy_minus_sign: | The identifier of the user that last updated this record. | hporter |
-| `Event` | [Event21](../../Models/Components/Event21.md) | :heavy_check_mark: | The Associated Event. | |
+| `Event` | [Event3](../../Models/Components/Event3.md) | :heavy_check_mark: | The Associated Event. | |
| `Exhibitor` | [Models.Components.Exhibitor](../../Models/Components/Exhibitor.md) | :heavy_check_mark: | The Associated Exhibitor. | |
| `Lead` | [Lead2](../../Models/Components/Lead2.md) | :heavy_check_mark: | JSON schema for the Lead object | |
| `Documents` | List<[ELiteratureDocument](../../Models/Components/ELiteratureDocument.md)> | :heavy_check_mark: | Collection of E-literature documents sent to lead. | |
diff --git a/packages/csharp/docs/Models/Components/ExistingExhibitorAnswer.md b/packages/csharp/docs/Models/Components/ExistingExhibitorAnswer.md
index c427014b..3f799d8d 100644
--- a/packages/csharp/docs/Models/Components/ExistingExhibitorAnswer.md
+++ b/packages/csharp/docs/Models/Components/ExistingExhibitorAnswer.md
@@ -12,7 +12,7 @@ Existing Exhibitor Answer schema
| `LastModified` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when this record was updated. | 2019-02-12T03:00:00Z |
| `LastModifiedBy` | *string* | :heavy_minus_sign: | The identifier of the user that last updated this record. | hporter |
| `Question` | [Uuid](../../Models/Components/Uuid.md) | :heavy_check_mark: | The reference to the related entity. Contains only the ID of the related entity. | |
-| `Event` | [Event21](../../Models/Components/Event21.md) | :heavy_check_mark: | The Associated Event. | |
+| `Event` | [Event3](../../Models/Components/Event3.md) | :heavy_check_mark: | The Associated Event. | |
| `Exhibitor` | [Models.Components.Exhibitor](../../Models/Components/Exhibitor.md) | :heavy_check_mark: | The Associated Exhibitor. | |
| `Answers` | List<[Answer2](../../Models/Components/Answer2.md)> | :heavy_check_mark: | List of answers | |
| `Id` | *string* | :heavy_check_mark: | Exhibitor Answer id | 06d2bfce-1793-11ec-9621-0242ac130002 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExistingExhibitorAnswerInput.md b/packages/csharp/docs/Models/Components/ExistingExhibitorAnswerInput.md
index 46c4f04f..c4640d1c 100644
--- a/packages/csharp/docs/Models/Components/ExistingExhibitorAnswerInput.md
+++ b/packages/csharp/docs/Models/Components/ExistingExhibitorAnswerInput.md
@@ -8,6 +8,6 @@ Existing Exhibitor Answer schema
| Field | Type | Required | Description |
| -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- |
| `Question` | [Uuid](../../Models/Components/Uuid.md) | :heavy_check_mark: | The reference to the related entity. Contains only the ID of the related entity. |
-| `Event` | [Event21](../../Models/Components/Event21.md) | :heavy_check_mark: | The Associated Event. |
+| `Event` | [Event3](../../Models/Components/Event3.md) | :heavy_check_mark: | The Associated Event. |
| `Exhibitor` | [Models.Components.Exhibitor](../../Models/Components/Exhibitor.md) | :heavy_check_mark: | The Associated Exhibitor. |
| `Answers` | List<[Answer2](../../Models/Components/Answer2.md)> | :heavy_check_mark: | List of answers |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExistingExhibitorQuestion.md b/packages/csharp/docs/Models/Components/ExistingExhibitorQuestion.md
index 32a97c91..a15d4ca4 100644
--- a/packages/csharp/docs/Models/Components/ExistingExhibitorQuestion.md
+++ b/packages/csharp/docs/Models/Components/ExistingExhibitorQuestion.md
@@ -11,14 +11,14 @@ Schema for an existing exhibitor question
| `CreatedBy` | *string* | :heavy_minus_sign: | The identifier of the user that created this record. | hporter |
| `LastModified` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when this record was updated. | 2019-02-12T03:00:00Z |
| `LastModifiedBy` | *string* | :heavy_minus_sign: | The identifier of the user that last updated this record. | hporter |
-| `Event` | [Event21](../../Models/Components/Event21.md) | :heavy_check_mark: | The Associated Event. | |
+| `Event` | [Event3](../../Models/Components/Event3.md) | :heavy_check_mark: | The Associated Event. | |
| `Text` | *string* | :heavy_check_mark: | The actual text of the exhibitor question. | Is there a business need? |
| `Code` | *string* | :heavy_minus_sign: | System or User defined event level unique exhibitor question code. | A001 |
| `Type` | [ExhibitorQuestionType](../../Models/Components/ExhibitorQuestionType.md) | :heavy_check_mark: | Enumeration indicating the type of data collected by an exhibitor question. 'MultiChoice': Respondents select multiple options from a list. 'SingleChoice': restricts respondents to a single option from a list, often displayed as a dropdown or radio button. 'OpenEndedTextOneLine': brief text responses, such as names or short answers. 'OpenEndedTextCommentBox': longer text responses for detailed feedback. 'OpenEndedDateTime': captures date and time information from respondents. | SingleChoice |
| `Required` | *bool* | :heavy_check_mark: | A boolean indicating whether the question is mandatory or not | true |
| `Choices` | List<[BaseChoice](../../Models/Components/BaseChoice.md)> | :heavy_minus_sign: | An array of choices for the exhibitor question. | |
-| `NotApplicableAnswer` | [AdditionalChoice](../../Models/Components/AdditionalChoice.md) | :heavy_minus_sign: | Contains text of additional choice | |
-| `OtherAnswer` | [AdditionalChoice](../../Models/Components/AdditionalChoice.md) | :heavy_minus_sign: | Contains text of additional choice | |
+| `NotApplicableAnswer` | [AdditionalChoice1](../../Models/Components/AdditionalChoice1.md) | :heavy_minus_sign: | Contains text of additional choice | |
+| `OtherAnswer` | [AdditionalChoice1](../../Models/Components/AdditionalChoice1.md) | :heavy_minus_sign: | Contains text of additional choice | |
| `AnswerFormat` | [ExhibitorAnswerFormat](../../Models/Components/ExhibitorAnswerFormat.md) | :heavy_minus_sign: | Specifies the format for displaying answers based on the question type. For SingleChoice questions, choose between 'Dropdown' or 'RadioButton'. For OpenEndedTextOneLine questions, select 'General', 'EmailAddress', or 'PhoneNumber'. For OpenEndedDateTime questions, use 'DateAndTime' or 'Date'. | RadioButton |
| `AnswerLimits` | [ExhibitorAnswerLimits](../../Models/Components/ExhibitorAnswerLimits.md) | :heavy_minus_sign: | Defines the limits for answers to exhibitor questions. | |
| `DefaultToCurrentDate` | *bool* | :heavy_minus_sign: | True indicates the current date and time is automatically set as the default value for OpenEndedDateTime questions. | true |
diff --git a/packages/csharp/docs/Models/Components/ExistingFile.md b/packages/csharp/docs/Models/Components/ExistingFile.md
index 5d304498..8ce56e88 100644
--- a/packages/csharp/docs/Models/Components/ExistingFile.md
+++ b/packages/csharp/docs/Models/Components/ExistingFile.md
@@ -11,7 +11,7 @@ Content of existing exhibitor file
| `CreatedBy` | *string* | :heavy_minus_sign: | The identifier of the user that created this record. | hporter |
| `LastModified` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when this record was updated. | 2019-02-12T03:00:00Z |
| `LastModifiedBy` | *string* | :heavy_minus_sign: | The identifier of the user that last updated this record. | hporter |
-| `Event` | [Event21](../../Models/Components/Event21.md) | :heavy_check_mark: | The Associated Event. | |
+| `Event` | [Event3](../../Models/Components/Event3.md) | :heavy_check_mark: | The Associated Event. | |
| `Exhibitor` | [Models.Components.Exhibitor](../../Models/Components/Exhibitor.md) | :heavy_check_mark: | The Associated Exhibitor. | |
| `DisplayName` | *string* | :heavy_check_mark: | Display name of the file. | Marketing Page |
| `Hidden` | *bool* | :heavy_minus_sign: | True indicates the file is hidden from attendees. | |
diff --git a/packages/csharp/docs/Models/Components/ExistingSpeaker.md b/packages/csharp/docs/Models/Components/ExistingSpeaker.md
index aeb2ab5e..449ee6c6 100644
--- a/packages/csharp/docs/Models/Components/ExistingSpeaker.md
+++ b/packages/csharp/docs/Models/Components/ExistingSpeaker.md
@@ -20,8 +20,8 @@ An existing, event speaker.
| `Designation` | *string* | :heavy_minus_sign: | The speaker's Designation | PhD |
| `Company` | *string* | :heavy_minus_sign: | The company to which the speaker is associated | Cvent |
| `Title` | *string* | :heavy_minus_sign: | The speaker's title | Lead Engineer |
-| `Category` | [CategoryIdNameJson](../../Models/Components/CategoryIdNameJson.md) | :heavy_minus_sign: | A defined speaker category. | |
-| `Links` | [ContactLinksJson](../../Models/Components/ContactLinksJson.md) | :heavy_minus_sign: | Collection of social media links for the contact. | |
+| `Category` | [SpeakerCategory1](../../Models/Components/SpeakerCategory1.md) | :heavy_minus_sign: | A defined speaker category. | |
+| `Links` | [ContactLinks](../../Models/Components/ContactLinks.md) | :heavy_minus_sign: | Collection of social media links for the contact. | |
| `Visibility` | *bool* | :heavy_minus_sign: | Indicates if a given speaker should be displayed on Event Website | false |
| `Biography` | *string* | :heavy_minus_sign: | The speaker's biography | Presentation and Speaking voice expert, Barbara is a highly regarded coach and facilitator |
| `InternalNote` | *string* | :heavy_minus_sign: | The Internal Note of the speaker | Barbara is multilingual |
diff --git a/packages/csharp/docs/Models/Components/ExistingSpeakerInput.md b/packages/csharp/docs/Models/Components/ExistingSpeakerInput.md
index d5dc3f15..5b7f0524 100644
--- a/packages/csharp/docs/Models/Components/ExistingSpeakerInput.md
+++ b/packages/csharp/docs/Models/Components/ExistingSpeakerInput.md
@@ -16,8 +16,8 @@ An existing, event speaker.
| `Designation` | *string* | :heavy_minus_sign: | The speaker's Designation | PhD |
| `Company` | *string* | :heavy_minus_sign: | The company to which the speaker is associated | Cvent |
| `Title` | *string* | :heavy_minus_sign: | The speaker's title | Lead Engineer |
-| `Category` | [CategoryIdNameJson](../../Models/Components/CategoryIdNameJson.md) | :heavy_minus_sign: | A defined speaker category. | |
-| `Links` | [ContactLinksJsonInput](../../Models/Components/ContactLinksJsonInput.md) | :heavy_minus_sign: | Collection of social media links for the contact. | |
+| `Category` | [SpeakerCategory1](../../Models/Components/SpeakerCategory1.md) | :heavy_minus_sign: | A defined speaker category. | |
+| `Links` | [ContactLinksInput](../../Models/Components/ContactLinksInput.md) | :heavy_minus_sign: | Collection of social media links for the contact. | |
| `Visibility` | *bool* | :heavy_minus_sign: | Indicates if a given speaker should be displayed on Event Website | false |
| `Biography` | *string* | :heavy_minus_sign: | The speaker's biography | Presentation and Speaking voice expert, Barbara is a highly regarded coach and facilitator |
| `InternalNote` | *string* | :heavy_minus_sign: | The Internal Note of the speaker | Barbara is multilingual |
diff --git a/packages/csharp/docs/Models/Components/ExistingSponsorshipLevel.md b/packages/csharp/docs/Models/Components/ExistingSponsorshipLevel.md
index 00fb9e7f..9bf85a2c 100644
--- a/packages/csharp/docs/Models/Components/ExistingSponsorshipLevel.md
+++ b/packages/csharp/docs/Models/Components/ExistingSponsorshipLevel.md
@@ -11,7 +11,7 @@ Existing sponsorship level model
| `CreatedBy` | *string* | :heavy_minus_sign: | The identifier of the user that created this record. | hporter |
| `LastModified` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when this record was updated. | 2019-02-12T03:00:00Z |
| `LastModifiedBy` | *string* | :heavy_minus_sign: | The identifier of the user that last updated this record. | hporter |
-| `Event` | [Event21](../../Models/Components/Event21.md) | :heavy_check_mark: | The Associated Event. | |
+| `Event` | [Event3](../../Models/Components/Event3.md) | :heavy_check_mark: | The Associated Event. | |
| `Name` | *string* | :heavy_check_mark: | Name of the sponsorship level | Silver |
| `Id` | *string* | :heavy_minus_sign: | ID of event sponsorship level. | 1765848c-2a7f-48d2-85a2-6668b8e64ffb |
| `Rank` | *long* | :heavy_minus_sign: | Represents the order sponsors appear in a list. | 3 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExistingVideoResponse.md b/packages/csharp/docs/Models/Components/ExistingVideoResponse.md
index 500bd168..1efa1448 100644
--- a/packages/csharp/docs/Models/Components/ExistingVideoResponse.md
+++ b/packages/csharp/docs/Models/Components/ExistingVideoResponse.md
@@ -16,19 +16,19 @@ Response schema for GET/List endpoints, extending ExistingVideo and adding error
| `Filename` | *string* | :heavy_minus_sign: | Filename associated with the video at time of upload. Cannot be modified. | Cvent Keynote Version 5.mp4 |
| `Events` | List<*string*> | :heavy_minus_sign: | A list of events associated with this video asset | |
| `Duration` | *long* | :heavy_minus_sign: | Video duration (milliseconds) | 3600000 |
-| `Thumbnail` | [VideoThumbnailJson](../../Models/Components/VideoThumbnailJson.md) | :heavy_minus_sign: | Video thumbnail | |
-| `GeneratedThumbnail` | [VideoThumbnailJson](../../Models/Components/VideoThumbnailJson.md) | :heavy_minus_sign: | Video thumbnail | |
-| `Status` | [VideoStatusJson](../../Models/Components/VideoStatusJson.md) | :heavy_minus_sign: | Denotes the status of a video. Started indicates the request to upload in the API was submitted, and the URL to upload to was returned. Uploaded indicates that the upload was completed. Scanning indicates a virus scan is happening in a quarantine location; Scanned indicates a successful virus scan. Syncing indicates a complete virus scan, and now transcoding has begun. Rejected indicates a failed virus scan. Error indicates there was a problem processing the video. Available indicates the video is available for use. | Started |
-| `Source` | [VideoSourceJson](../../Models/Components/VideoSourceJson.md) | :heavy_minus_sign: | Source of video. | |
+| `Thumbnail` | [VideoThumbnail](../../Models/Components/VideoThumbnail.md) | :heavy_minus_sign: | Video thumbnail | |
+| `GeneratedThumbnail` | [VideoThumbnail](../../Models/Components/VideoThumbnail.md) | :heavy_minus_sign: | Video thumbnail | |
+| `Status` | [VideoStatus](../../Models/Components/VideoStatus.md) | :heavy_minus_sign: | Denotes the status of a video. Started indicates the request to upload in the API was submitted, and the URL to upload to was returned. Uploaded indicates that the upload was completed. Scanning indicates a virus scan is happening in a quarantine location; Scanned indicates a successful virus scan. Syncing indicates a complete virus scan, and now transcoding has begun. Rejected indicates a failed virus scan. Error indicates there was a problem processing the video. Available indicates the video is available for use. | Started |
+| `Source` | [VideoSource](../../Models/Components/VideoSource.md) | :heavy_minus_sign: | Source of video. | |
| `Tags` | List<*string*> | :heavy_minus_sign: | A list of tags associated with this video. This feature is a developer extensability framework to add data to videos. | [
"edited",
"exhibitor"
] |
-| `Type` | [VideoTypeJson](../../Models/Components/VideoTypeJson.md) | :heavy_minus_sign: | This is used to denote type of a video | mp4 |
+| `Type` | [VideoType](../../Models/Components/VideoType.md) | :heavy_minus_sign: | This is used to denote type of a video | mp4 |
| ~~`Event`~~ | [ExistingVideoResponseUUID](../../Models/Components/ExistingVideoResponseUUID.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
Event video asset was created with. This field has been deprecated. Use events instead. | |
| ~~`HlsInputs`~~ | List<*string*> | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
List of locations for HLS recordings that will be combined to form a new video. This field has been deprecated. Use hlsInputsWithClips instead. | |
-| `HlsInputsWithClips` | List<[HlsInputWithClipsJson](../../Models/Components/HlsInputWithClipsJson.md)> | :heavy_minus_sign: | A list of input object locations & clip information for HTTP Live Streaming (HLS) recordings. Used to trim & stitch all inputs together to form a new video. | |
+| `HlsInputsWithClips` | List<[HlsInputWithClips](../../Models/Components/HlsInputWithClips.md)> | :heavy_minus_sign: | A list of input object locations & clip information for HTTP Live Streaming (HLS) recordings. Used to trim & stitch all inputs together to form a new video. | |
| `Recording` | [RecordingDetails](../../Models/Components/RecordingDetails.md) | :heavy_minus_sign: | Recording details of video to be transcoded | |
-| `EncodingProfile` | [EncodingProfileJson](../../Models/Components/EncodingProfileJson.md) | :heavy_minus_sign: | Denotes the profile to use when encoding the video. Planner profile is for encoding high-quality event content, like session videos. Attendee profile is for encoding lower-quality content intended to go on attendee profiles and social feeds in the event. | Planner |
+| `EncodingProfile` | [EncodingProfile](../../Models/Components/EncodingProfile.md) | :heavy_minus_sign: | Denotes the profile to use when encoding the video. Planner profile is for encoding high-quality event content, like session videos. Attendee profile is for encoding lower-quality content intended to go on attendee profiles and social feeds in the event. | Planner |
| `Id` | *string* | :heavy_check_mark: | The identifier of a video. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `Url` | [AssetLocationJson](../../Models/Components/AssetLocationJson.md) | :heavy_minus_sign: | A URL associated with the asset. | |
+| `Url` | [AssetLocation](../../Models/Components/AssetLocation.md) | :heavy_minus_sign: | A URL associated with the asset. | |
| `Size` | *long* | :heavy_minus_sign: | File size in bytes for the video asset. | 32768 |
| `Sessions` | List<*string*> | :heavy_minus_sign: | Sessions associated with the video asset. | |
| `Exhibitors` | List<*string*> | :heavy_minus_sign: | Exhibitors associated with the video asset. | |
@@ -36,5 +36,5 @@ Response schema for GET/List endpoints, extending ExistingVideo and adding error
| `UploadStarted` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when the upload started. | 2024-01-05T15:30:00Z |
| `UploadCompleted` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when the uploaded ended. | 2024-01-05T15:35:00Z |
| `Parent` | *string* | :heavy_minus_sign: | The ID of the video this was created from. | |
-| `Errors` | List<[VideoErrorJson](../../Models/Components/VideoErrorJson.md)> | :heavy_minus_sign: | This is used to denote the errors for a video entity. | |
-| `Warnings` | List<[VideoWarningJson](../../Models/Components/VideoWarningJson.md)> | :heavy_minus_sign: | This is used to denote the warnings for a video entity. | |
\ No newline at end of file
+| `Errors` | List<[VideoError](../../Models/Components/VideoError.md)> | :heavy_minus_sign: | This is used to denote the errors for a video entity. | |
+| `Warnings` | List<[VideoWarning](../../Models/Components/VideoWarning.md)> | :heavy_minus_sign: | This is used to denote the warnings for a video entity. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExistingVideoTextTrack.md b/packages/csharp/docs/Models/Components/ExistingVideoTextTrack.md
index a968528d..59ac2d98 100644
--- a/packages/csharp/docs/Models/Components/ExistingVideoTextTrack.md
+++ b/packages/csharp/docs/Models/Components/ExistingVideoTextTrack.md
@@ -11,14 +11,14 @@ An existing video text track.
| `CreatedBy` | *string* | :heavy_minus_sign: | The identifier of the user that created this record. | hporter |
| `LastModified` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when this record was updated. | 2019-02-12T03:00:00Z |
| `LastModifiedBy` | *string* | :heavy_minus_sign: | The identifier of the user that last updated this record. | hporter |
-| `Video` | [VideoAssetIdJson](../../Models/Components/VideoAssetIdJson.md) | :heavy_minus_sign: | Video that this asset was created with. | |
+| `Video` | [VideoAssetID](../../Models/Components/VideoAssetID.md) | :heavy_minus_sign: | Video that this asset was created with. | |
| `Label` | *string* | :heavy_minus_sign: | Name of the text track. | English |
| `Language` | *string* | :heavy_check_mark: | IETF language tag for the text track. | en-US |
-| `Kind` | [VideoTextTrackKindJson](../../Models/Components/VideoTextTrackKindJson.md) | :heavy_check_mark: | Denotes the kind of video text track. Only subtitles are supported. | subtitles |
+| `Kind` | [VideoTextTrackKind](../../Models/Components/VideoTextTrackKind.md) | :heavy_check_mark: | Denotes the kind of video text track. Only subtitles are supported. | subtitles |
| `Published` | *bool* | :heavy_minus_sign: | True means that this text track has been published for your client. | |
| `Default` | *bool* | :heavy_minus_sign: | True indicates this is the default text track. Each kind of text track can have a separate default assigned. | |
-| `Status` | [VideoTextTrackStatusJson](../../Models/Components/VideoTextTrackStatusJson.md) | :heavy_check_mark: | Denotes the status of a video text track (VTT). Started indicates a request to upload in the API, and the URL to upload to was returned. Uploaded indicates that the upload was completed. Available indicates the VTT is available for use. Rejected indicates a failed virus scan. Error indicates there was a problem processing the VTT. | Started |
+| `Status` | [VideoTextTrackStatus](../../Models/Components/VideoTextTrackStatus.md) | :heavy_check_mark: | Denotes the status of a video text track (VTT). Started indicates a request to upload in the API, and the URL to upload to was returned. Uploaded indicates that the upload was completed. Available indicates the VTT is available for use. Rejected indicates a failed virus scan. Error indicates there was a problem processing the VTT. | Started |
| `AutoGenerated` | *bool* | :heavy_minus_sign: | True indicates this text track was generated via machine transcription of the audio. | |
| `Id` | *string* | :heavy_check_mark: | The identifier of a video text track. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `Url` | [AssetLocationJson](../../Models/Components/AssetLocationJson.md) | :heavy_minus_sign: | A URL associated with the asset. | |
+| `Url` | [AssetLocation](../../Models/Components/AssetLocation.md) | :heavy_minus_sign: | A URL associated with the asset. | |
| `ErrorMessage` | *string* | :heavy_minus_sign: | A message indicating the error processing the text track, if any. | Input file was empty |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExistingVideoTextTrackInput.md b/packages/csharp/docs/Models/Components/ExistingVideoTextTrackInput.md
index 6d65233b..fb765b0d 100644
--- a/packages/csharp/docs/Models/Components/ExistingVideoTextTrackInput.md
+++ b/packages/csharp/docs/Models/Components/ExistingVideoTextTrackInput.md
@@ -7,13 +7,13 @@ An existing video text track.
| Field | Type | Required | Description | Example |
| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Video` | [VideoAssetIdJson](../../Models/Components/VideoAssetIdJson.md) | :heavy_minus_sign: | Video that this asset was created with. | |
+| `Video` | [VideoAssetID](../../Models/Components/VideoAssetID.md) | :heavy_minus_sign: | Video that this asset was created with. | |
| `Label` | *string* | :heavy_minus_sign: | Name of the text track. | English |
| `Language` | *string* | :heavy_check_mark: | IETF language tag for the text track. | en-US |
-| `Kind` | [VideoTextTrackKindJson](../../Models/Components/VideoTextTrackKindJson.md) | :heavy_check_mark: | Denotes the kind of video text track. Only subtitles are supported. | subtitles |
+| `Kind` | [VideoTextTrackKind](../../Models/Components/VideoTextTrackKind.md) | :heavy_check_mark: | Denotes the kind of video text track. Only subtitles are supported. | subtitles |
| `Published` | *bool* | :heavy_minus_sign: | True means that this text track has been published for your client. | |
| `Default` | *bool* | :heavy_minus_sign: | True indicates this is the default text track. Each kind of text track can have a separate default assigned. | |
-| `Status` | [VideoTextTrackStatusJson](../../Models/Components/VideoTextTrackStatusJson.md) | :heavy_check_mark: | Denotes the status of a video text track (VTT). Started indicates a request to upload in the API, and the URL to upload to was returned. Uploaded indicates that the upload was completed. Available indicates the VTT is available for use. Rejected indicates a failed virus scan. Error indicates there was a problem processing the VTT. | Started |
+| `Status` | [VideoTextTrackStatus](../../Models/Components/VideoTextTrackStatus.md) | :heavy_check_mark: | Denotes the status of a video text track (VTT). Started indicates a request to upload in the API, and the URL to upload to was returned. Uploaded indicates that the upload was completed. Available indicates the VTT is available for use. Rejected indicates a failed virus scan. Error indicates there was a problem processing the VTT. | Started |
| `AutoGenerated` | *bool* | :heavy_minus_sign: | True indicates this text track was generated via machine transcription of the audio. | |
-| `Url` | [AssetLocationJsonInput](../../Models/Components/AssetLocationJsonInput.md) | :heavy_minus_sign: | A URL associated with the asset. | |
+| `Url` | [AssetLocationInput](../../Models/Components/AssetLocationInput.md) | :heavy_minus_sign: | A URL associated with the asset. | |
| `ErrorMessage` | *string* | :heavy_minus_sign: | A message indicating the error processing the text track, if any. | Input file was empty |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExistingWeblink.md b/packages/csharp/docs/Models/Components/ExistingWeblink.md
index ea493ce2..c5b271df 100644
--- a/packages/csharp/docs/Models/Components/ExistingWeblink.md
+++ b/packages/csharp/docs/Models/Components/ExistingWeblink.md
@@ -11,7 +11,7 @@ Content of existing exhibitor weblink
| `CreatedBy` | *string* | :heavy_minus_sign: | The identifier of the user that created this record. | hporter |
| `LastModified` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when this record was updated. | 2019-02-12T03:00:00Z |
| `LastModifiedBy` | *string* | :heavy_minus_sign: | The identifier of the user that last updated this record. | hporter |
-| `Event` | [Event21](../../Models/Components/Event21.md) | :heavy_check_mark: | The Associated Event. | |
+| `Event` | [Event3](../../Models/Components/Event3.md) | :heavy_check_mark: | The Associated Event. | |
| `Exhibitor` | [Models.Components.Exhibitor](../../Models/Components/Exhibitor.md) | :heavy_check_mark: | The Associated Exhibitor. | |
| `Name` | *string* | :heavy_check_mark: | Display name of the weblink. | Marketing Page |
| `Url` | *string* | :heavy_check_mark: | The URL of the weblink. | http://www.example.com |
diff --git a/packages/csharp/docs/Models/Components/FairSeasonType.md b/packages/csharp/docs/Models/Components/FairSeasonType.md
new file mode 100644
index 00000000..499e8c6f
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/FairSeasonType.md
@@ -0,0 +1,19 @@
+# FairSeasonType
+
+Fair season type. Blackout means that no special rate is negotiated for that date and Best Available Rates will apply
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = FairSeasonType.Negotiated;
+```
+
+
+## Values
+
+| Name | Value |
+| ------------ | ------------ |
+| `Negotiated` | negotiated |
+| `Blackout` | blackout |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/FairSeasonTypeJson.md b/packages/csharp/docs/Models/Components/FairSeasonTypeJson.md
deleted file mode 100644
index bf1a9e6d..00000000
--- a/packages/csharp/docs/Models/Components/FairSeasonTypeJson.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# FairSeasonTypeJson
-
-Fair season type. Blackout means that no special rate is negotiated for that date and Best Available Rates will apply
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = FairSeasonTypeJson.Negotiated;
-```
-
-
-## Values
-
-| Name | Value |
-| ------------ | ------------ |
-| `Negotiated` | negotiated |
-| `Blackout` | blackout |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Field.md b/packages/csharp/docs/Models/Components/Field.md
new file mode 100644
index 00000000..4fd6d31f
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Field.md
@@ -0,0 +1,17 @@
+# Field
+
+A question field.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Id` | *string* | :heavy_minus_sign: | Text field ID. | |
+| `Text` | *string* | :heavy_minus_sign: | Text value of the field. Displays to users in the UI. | Are you spending any significant time offsite and need transportation? |
+| `ShortText` | *string* | :heavy_minus_sign: | Concise version or abbreviation of the question text. Set by the planner to simplify presentation of the question in reports. | Needs offsite transportation? |
+| `Type` | [FieldType](../../Models/Components/FieldType.md) | :heavy_minus_sign: | Determines the required format for a field. `DateTime`: Data is in date-time format. `MultiChoice`: Data is one or more options from a list. `Number`: Data is a number. `SingleChoice`: Data is a a single option from a list. `Text`: Data is free-text input. | |
+| `Choices` | List<[Choice](../../Models/Components/Choice.md)> | :heavy_minus_sign: | List of choices for this field. | |
+| `NotApplicableAnswer` | [AdditionalChoice](../../Models/Components/AdditionalChoice.md) | :heavy_minus_sign: | Contains text of additional choice i.e notApplicableAnswer choice or otherAnswer choice. | |
+| `OtherAnswer` | [AdditionalChoice](../../Models/Components/AdditionalChoice.md) | :heavy_minus_sign: | Contains text of additional choice i.e notApplicableAnswer choice or otherAnswer choice. | |
+| `Required` | *bool* | :heavy_minus_sign: | True indicates this is a mandatory question field. | true |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/FieldJson.md b/packages/csharp/docs/Models/Components/FieldJson.md
index 3a1f9ec1..fed4bc44 100644
--- a/packages/csharp/docs/Models/Components/FieldJson.md
+++ b/packages/csharp/docs/Models/Components/FieldJson.md
@@ -1,17 +1,17 @@
# FieldJson
-A question field.
+A survey field.
## Fields
-| Field | Type | Required | Description | Example |
-| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_minus_sign: | Text field ID. | |
-| `Text` | *string* | :heavy_minus_sign: | Text value of the field. Displays to users in the UI. | Are you spending any significant time offsite and need transportation? |
-| `ShortText` | *string* | :heavy_minus_sign: | Concise version or abbreviation of the question text. Set by the planner to simplify presentation of the question in reports. | Needs offsite transportation? |
-| `Type` | [FieldTypeJson](../../Models/Components/FieldTypeJson.md) | :heavy_minus_sign: | Determines the required format for a field. `DateTime`: Data is in date-time format. `MultiChoice`: Data is one or more options from a list. `Number`: Data is a number. `SingleChoice`: Data is a a single option from a list. `Text`: Data is free-text input. | |
-| `Choices` | List<[ChoiceJson](../../Models/Components/ChoiceJson.md)> | :heavy_minus_sign: | List of choices for this field. | |
-| `NotApplicableAnswer` | [AdditionalChoiceJson2](../../Models/Components/AdditionalChoiceJson2.md) | :heavy_minus_sign: | Contains text of additional choice i.e notApplicableAnswer choice or otherAnswer choice. | |
-| `OtherAnswer` | [AdditionalChoiceJson2](../../Models/Components/AdditionalChoiceJson2.md) | :heavy_minus_sign: | Contains text of additional choice i.e notApplicableAnswer choice or otherAnswer choice. | |
-| `Required` | *bool* | :heavy_minus_sign: | True indicates this is a mandatory question field. | true |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- |
+| `Id` | *string* | :heavy_minus_sign: | Text field ID. | |
+| `Text` | *string* | :heavy_minus_sign: | text Value of the Field | Field value |
+| `ShortText` | *string* | :heavy_minus_sign: | Reporting value of the Category, Its like a custom abbreviation | Category 1 Reporting value |
+| `Type` | [FieldTypeJson](../../Models/Components/FieldTypeJson.md) | :heavy_minus_sign: | Field Type | SingleChoice |
+| `Choices` | List<[ChoiceJson1](../../Models/Components/ChoiceJson1.md)> | :heavy_minus_sign: | List of choices for this field. | |
+| `NotApplicableAnswer` | [AdditionalChoiceJson](../../Models/Components/AdditionalChoiceJson.md) | :heavy_minus_sign: | Contains text of additional choice i.e N/A choice or otherAnswer choice | |
+| `OtherAnswer` | [AdditionalChoiceJson](../../Models/Components/AdditionalChoiceJson.md) | :heavy_minus_sign: | Contains text of additional choice i.e N/A choice or otherAnswer choice | |
+| `Required` | *bool* | :heavy_minus_sign: | Is this a mandatory field | true |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/FieldJson2.md b/packages/csharp/docs/Models/Components/FieldJson2.md
deleted file mode 100644
index a46df37c..00000000
--- a/packages/csharp/docs/Models/Components/FieldJson2.md
+++ /dev/null
@@ -1,17 +0,0 @@
-# FieldJson2
-
-A survey field.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_minus_sign: | Text field ID. | |
-| `Text` | *string* | :heavy_minus_sign: | text Value of the Field | Field value |
-| `ShortText` | *string* | :heavy_minus_sign: | Reporting value of the Category, Its like a custom abbreviation | Category 1 Reporting value |
-| `Type` | [FieldTypeJson2](../../Models/Components/FieldTypeJson2.md) | :heavy_minus_sign: | Field Type | SingleChoice |
-| `Choices` | List<[ChoiceJson2](../../Models/Components/ChoiceJson2.md)> | :heavy_minus_sign: | List of choices for this field. | |
-| `NotApplicableAnswer` | [AdditionalChoiceJson1](../../Models/Components/AdditionalChoiceJson1.md) | :heavy_minus_sign: | Contains text of additional choice i.e N/A choice or otherAnswer choice | |
-| `OtherAnswer` | [AdditionalChoiceJson1](../../Models/Components/AdditionalChoiceJson1.md) | :heavy_minus_sign: | Contains text of additional choice i.e N/A choice or otherAnswer choice | |
-| `Required` | *bool* | :heavy_minus_sign: | Is this a mandatory field | true |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/FieldType.md b/packages/csharp/docs/Models/Components/FieldType.md
new file mode 100644
index 00000000..55cb8558
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/FieldType.md
@@ -0,0 +1,22 @@
+# FieldType
+
+Determines the required format for a field. `DateTime`: Data is in date-time format. `MultiChoice`: Data is one or more options from a list. `Number`: Data is a number. `SingleChoice`: Data is a a single option from a list. `Text`: Data is free-text input.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = FieldType.DateTime;
+```
+
+
+## Values
+
+| Name | Value |
+| -------------- | -------------- |
+| `DateTime` | DateTime |
+| `MultiChoice` | MultiChoice |
+| `Number` | Number |
+| `SingleChoice` | SingleChoice |
+| `Text` | Text |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/FieldTypeJson.md b/packages/csharp/docs/Models/Components/FieldTypeJson.md
index e355cd6d..4772c396 100644
--- a/packages/csharp/docs/Models/Components/FieldTypeJson.md
+++ b/packages/csharp/docs/Models/Components/FieldTypeJson.md
@@ -1,13 +1,13 @@
# FieldTypeJson
-Determines the required format for a field. `DateTime`: Data is in date-time format. `MultiChoice`: Data is one or more options from a list. `Number`: Data is a number. `SingleChoice`: Data is a a single option from a list. `Text`: Data is free-text input.
+Field Type
## Example Usage
```csharp
using Cvent.SDK.Models.Components;
-var value = FieldTypeJson.DateTime;
+var value = FieldTypeJson.SingleChoice;
```
@@ -15,8 +15,8 @@ var value = FieldTypeJson.DateTime;
| Name | Value |
| -------------- | -------------- |
-| `DateTime` | DateTime |
+| `SingleChoice` | SingleChoice |
| `MultiChoice` | MultiChoice |
+| `DateTime` | DateTime |
| `Number` | Number |
-| `SingleChoice` | SingleChoice |
| `Text` | Text |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/FieldTypeJson2.md b/packages/csharp/docs/Models/Components/FieldTypeJson2.md
deleted file mode 100644
index 35d0a753..00000000
--- a/packages/csharp/docs/Models/Components/FieldTypeJson2.md
+++ /dev/null
@@ -1,22 +0,0 @@
-# FieldTypeJson2
-
-Field Type
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = FieldTypeJson2.SingleChoice;
-```
-
-
-## Values
-
-| Name | Value |
-| -------------- | -------------- |
-| `SingleChoice` | SingleChoice |
-| `MultiChoice` | MultiChoice |
-| `DateTime` | DateTime |
-| `Number` | Number |
-| `Text` | Text |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/FileInput.md b/packages/csharp/docs/Models/Components/FileInput.md
index 68014dc1..640ee4f4 100644
--- a/packages/csharp/docs/Models/Components/FileInput.md
+++ b/packages/csharp/docs/Models/Components/FileInput.md
@@ -7,7 +7,7 @@ Content of exhibitor file.
| Field | Type | Required | Description | Example |
| ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- |
-| `Event` | [Event21](../../Models/Components/Event21.md) | :heavy_check_mark: | The Associated Event. | |
+| `Event` | [Event3](../../Models/Components/Event3.md) | :heavy_check_mark: | The Associated Event. | |
| `Exhibitor` | [Models.Components.Exhibitor](../../Models/Components/Exhibitor.md) | :heavy_check_mark: | The Associated Exhibitor. | |
| `DisplayName` | *string* | :heavy_check_mark: | Display name of the file. | Marketing Page |
| `Hidden` | *bool* | :heavy_minus_sign: | True indicates the file is hidden from attendees. | |
diff --git a/packages/csharp/docs/Models/Components/FormatType.md b/packages/csharp/docs/Models/Components/FormatType.md
new file mode 100644
index 00000000..2d5987aa
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/FormatType.md
@@ -0,0 +1,19 @@
+# FormatType
+
+Proposal format.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = FormatType.Gbta2013;
+```
+
+
+## Values
+
+| Name | Value |
+| ----------- | ----------- |
+| `Gbta2013` | gbta2013 |
+| `Universal` | universal |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/FormatTypeJson.md b/packages/csharp/docs/Models/Components/FormatTypeJson.md
deleted file mode 100644
index 561c59f5..00000000
--- a/packages/csharp/docs/Models/Components/FormatTypeJson.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# FormatTypeJson
-
-Proposal format.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = FormatTypeJson.Gbta2013;
-```
-
-
-## Values
-
-| Name | Value |
-| ----------- | ----------- |
-| `Gbta2013` | gbta2013 |
-| `Universal` | universal |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/GenderJson.md b/packages/csharp/docs/Models/Components/GenderJson.md
deleted file mode 100644
index de1ee317..00000000
--- a/packages/csharp/docs/Models/Components/GenderJson.md
+++ /dev/null
@@ -1,21 +0,0 @@
-# GenderJson
-
-The gender of the contact.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = GenderJson.Male;
-```
-
-
-## Values
-
-| Name | Value |
-| -------------- | -------------- |
-| `Male` | Male |
-| `Female` | Female |
-| `NonBinary` | Non-binary |
-| `RatherNotSay` | Rather not say |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/GuestJson.md b/packages/csharp/docs/Models/Components/GuestJson.md
index d4172721..89ca32f1 100644
--- a/packages/csharp/docs/Models/Components/GuestJson.md
+++ b/packages/csharp/docs/Models/Components/GuestJson.md
@@ -19,5 +19,5 @@ Guest details.
| `Email` | *string* | :heavy_minus_sign: | Email address of the guest. | guest@cvent.com |
| `HomePhone` | *string* | :heavy_minus_sign: | Home phone number of the guest. Required if the hotel/event requires address in reservations. | (231)-213-1222 |
| `WorkPhone` | *string* | :heavy_minus_sign: | Work phone number of the guest. | (231)-213-1222 |
-| `HomeAddress` | [AddressJson2](../../Models/Components/AddressJson2.md) | :heavy_minus_sign: | Address details. Required to create/update a guest's reservation if the hotel/event requires an address in reservations. | |
+| `HomeAddress` | [AddressJson](../../Models/Components/AddressJson.md) | :heavy_minus_sign: | Address details. Required to create/update a guest's reservation if the hotel/event requires an address in reservations. | |
| `PaymentInfo` | [PaymentInfoJson](../../Models/Components/PaymentInfoJson.md) | :heavy_minus_sign: | Payment information. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/GuestRoomOccupancy.md b/packages/csharp/docs/Models/Components/GuestRoomOccupancy.md
new file mode 100644
index 00000000..2bc3a665
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/GuestRoomOccupancy.md
@@ -0,0 +1,21 @@
+# GuestRoomOccupancy
+
+Guest room occupancy. `SINGLE`: Single occupant. `DOUBLE`: Two occupants. `TRIPLE`: Three occupants. `QUAD`: Four occupants.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = GuestRoomOccupancy.Single;
+```
+
+
+## Values
+
+| Name | Value |
+| -------- | -------- |
+| `Single` | SINGLE |
+| `Double` | DOUBLE |
+| `Triple` | TRIPLE |
+| `Quad` | QUAD |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/GuestRoomOccupancyJson.md b/packages/csharp/docs/Models/Components/GuestRoomOccupancyJson.md
deleted file mode 100644
index d7ba6236..00000000
--- a/packages/csharp/docs/Models/Components/GuestRoomOccupancyJson.md
+++ /dev/null
@@ -1,21 +0,0 @@
-# GuestRoomOccupancyJson
-
-Guest room occupancy. `SINGLE`: Single occupant. `DOUBLE`: Two occupants. `TRIPLE`: Three occupants. `QUAD`: Four occupants.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = GuestRoomOccupancyJson.Single;
-```
-
-
-## Values
-
-| Name | Value |
-| -------- | -------- |
-| `Single` | SINGLE |
-| `Double` | DOUBLE |
-| `Triple` | TRIPLE |
-| `Quad` | QUAD |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/GuestRoomOccupancyPerRoomType.md b/packages/csharp/docs/Models/Components/GuestRoomOccupancyPerRoomType.md
new file mode 100644
index 00000000..86c402d4
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/GuestRoomOccupancyPerRoomType.md
@@ -0,0 +1,11 @@
+# GuestRoomOccupancyPerRoomType
+
+Room occupancy for a room type.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Occupancy` | [GuestRoomOccupancy](../../Models/Components/GuestRoomOccupancy.md) | :heavy_minus_sign: | Guest room occupancy. `SINGLE`: Single occupant. `DOUBLE`: Two occupants. `TRIPLE`: Three occupants. `QUAD`: Four occupants. | SINGLE |
+| `Type` | [GuestRoomType](../../Models/Components/GuestRoomType.md) | :heavy_minus_sign: | Guest room type. `ANY`: Room can be any type. `SINGLE`: Room with one bed. `DOUBLE`: Room with two beds. `SUITE`: Room is an entire suite. `STAFF`: Room is for staff. | DOUBLE |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/GuestRoomOccupancyPerRoomTypeJson.md b/packages/csharp/docs/Models/Components/GuestRoomOccupancyPerRoomTypeJson.md
deleted file mode 100644
index 2eeb2329..00000000
--- a/packages/csharp/docs/Models/Components/GuestRoomOccupancyPerRoomTypeJson.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# GuestRoomOccupancyPerRoomTypeJson
-
-Room occupancy for a room type.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Occupancy` | [GuestRoomOccupancyJson](../../Models/Components/GuestRoomOccupancyJson.md) | :heavy_minus_sign: | Guest room occupancy. `SINGLE`: Single occupant. `DOUBLE`: Two occupants. `TRIPLE`: Three occupants. `QUAD`: Four occupants. | SINGLE |
-| `Type` | [GuestRoomTypeJson](../../Models/Components/GuestRoomTypeJson.md) | :heavy_minus_sign: | Guest room type. `ANY`: Room can be any type. `SINGLE`: Room with one bed. `DOUBLE`: Room with two beds. `SUITE`: Room is an entire suite. `STAFF`: Room is for staff. | DOUBLE |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/GuestRoomType.md b/packages/csharp/docs/Models/Components/GuestRoomType.md
new file mode 100644
index 00000000..cd84307e
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/GuestRoomType.md
@@ -0,0 +1,22 @@
+# GuestRoomType
+
+Guest room type. `ANY`: Room can be any type. `SINGLE`: Room with one bed. `DOUBLE`: Room with two beds. `SUITE`: Room is an entire suite. `STAFF`: Room is for staff.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = GuestRoomType.Any;
+```
+
+
+## Values
+
+| Name | Value |
+| -------- | -------- |
+| `Any` | ANY |
+| `Single` | SINGLE |
+| `Double` | DOUBLE |
+| `Suite` | SUITE |
+| `Staff` | STAFF |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/GuestRoomTypeJson.md b/packages/csharp/docs/Models/Components/GuestRoomTypeJson.md
deleted file mode 100644
index 064417f7..00000000
--- a/packages/csharp/docs/Models/Components/GuestRoomTypeJson.md
+++ /dev/null
@@ -1,22 +0,0 @@
-# GuestRoomTypeJson
-
-Guest room type. `ANY`: Room can be any type. `SINGLE`: Room with one bed. `DOUBLE`: Room with two beds. `SUITE`: Room is an entire suite. `STAFF`: Room is for staff.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = GuestRoomTypeJson.Any;
-```
-
-
-## Values
-
-| Name | Value |
-| -------- | -------- |
-| `Any` | ANY |
-| `Single` | SINGLE |
-| `Double` | DOUBLE |
-| `Suite` | SUITE |
-| `Staff` | STAFF |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/HlsInputWithClips.md b/packages/csharp/docs/Models/Components/HlsInputWithClips.md
new file mode 100644
index 00000000..b43a2d56
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/HlsInputWithClips.md
@@ -0,0 +1,11 @@
+# HlsInputWithClips
+
+HTTP Live Streaming input and clips.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- |
+| `HlsInput` | *string* | :heavy_minus_sign: | Location for HTTP Live Streaming (HLS) recording. | s3://bucket/path/to/recording/video.m3u8 |
+| `Clips` | List<[VideoClip](../../Models/Components/VideoClip.md)> | :heavy_minus_sign: | Clips for the HLS recording. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/HlsInputWithClipsJson.md b/packages/csharp/docs/Models/Components/HlsInputWithClipsJson.md
deleted file mode 100644
index 721c06a0..00000000
--- a/packages/csharp/docs/Models/Components/HlsInputWithClipsJson.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# HlsInputWithClipsJson
-
-HTTP Live Streaming input and clips.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- |
-| `HlsInput` | *string* | :heavy_minus_sign: | Location for HTTP Live Streaming (HLS) recording. | s3://bucket/path/to/recording/video.m3u8 |
-| `Clips` | List<[VideoClipJson](../../Models/Components/VideoClipJson.md)> | :heavy_minus_sign: | Clips for the HLS recording. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/HotelRequest.md b/packages/csharp/docs/Models/Components/HotelRequest.md
index a200066a..746db02b 100644
--- a/packages/csharp/docs/Models/Components/HotelRequest.md
+++ b/packages/csharp/docs/Models/Components/HotelRequest.md
@@ -44,6 +44,6 @@ Representation of a hotel request.
| `LatestShoulderDate` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time (in UTC) when the requester is requesting for an latest shoulder date. | 2023-05-19T00:00:00Z |
| `RoomTaxBillingExceptions` | *string* | :heavy_minus_sign: | Specifies who the hotel will charge for the room rate's tax. | exceptions noted here. |
| `IncidentalBillingExceptions` | *string* | :heavy_minus_sign: | Specifies who the hotel will charge incidental (extra) room expenses, like room service or long-distance calling. | exceptions noted here. |
-| `HotelAddress` | [Address3](../../Models/Components/Address3.md) | :heavy_minus_sign: | Address of the hotel. | |
+| `HotelAddress` | [Address5](../../Models/Components/Address5.md) | :heavy_minus_sign: | Address of the hotel. | |
| `HotelRoomRates` | List<[HotelRoomRate](../../Models/Components/HotelRoomRate.md)> | :heavy_minus_sign: | Collection of hotel room rates the requester has taken. | |
| `HotelRequestAnswers` | List<[AttendeeAnswer1](../../Models/Components/AttendeeAnswer1.md)> | :heavy_minus_sign: | Answer provided by requester to the hotel request related question. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/HousingEventHotel.md b/packages/csharp/docs/Models/Components/HousingEventHotel.md
index 4e71d979..ada8f4b3 100644
--- a/packages/csharp/docs/Models/Components/HousingEventHotel.md
+++ b/packages/csharp/docs/Models/Components/HousingEventHotel.md
@@ -16,4 +16,4 @@ Hotel details including name, description, policies and IDs.
| `Proximity` | [ProximityJson](../../Models/Components/ProximityJson.md) | :heavy_minus_sign: | Proximity of the event venue to the hotel. | |
| `Amenities` | List<*string*> | :heavy_minus_sign: | List of available amenities at the hotel. | |
| `Rating` | [HotelRatingJson](../../Models/Components/HotelRatingJson.md) | :heavy_minus_sign: | The hotel's rating, used to classify the hotel's quality. | 3 Star |
-| `Address` | [AddressJson2](../../Models/Components/AddressJson2.md) | :heavy_minus_sign: | Address details. Required to create/update a guest's reservation if the hotel/event requires an address in reservations. | |
\ No newline at end of file
+| `Address` | [AddressJson](../../Models/Components/AddressJson.md) | :heavy_minus_sign: | Address details. Required to create/update a guest's reservation if the hotel/event requires an address in reservations. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/HousingEventSummaryList.md b/packages/csharp/docs/Models/Components/HousingEventSummaryList.md
index dfaae098..9a64dd1d 100644
--- a/packages/csharp/docs/Models/Components/HousingEventSummaryList.md
+++ b/packages/csharp/docs/Models/Components/HousingEventSummaryList.md
@@ -8,4 +8,4 @@ List of housing events with key information, providing a summarized view of each
| Field | Type | Required | Description |
| --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- |
| `Paging` | [PagingJson](../../Models/Components/PagingJson.md) | :heavy_check_mark: | Represents pagination information for a collection of resources. |
-| `Data` | List<[ZeroAllOf9](../../Models/Components/ZeroAllOf9.md)> | :heavy_check_mark: | List of housing events with key information, providing a summarized view of each event. |
\ No newline at end of file
+| `Data` | List<[ZeroAllOf8](../../Models/Components/ZeroAllOf8.md)> | :heavy_check_mark: | List of housing events with key information, providing a summarized view of each event. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/IdJson.md b/packages/csharp/docs/Models/Components/IdJson.md
deleted file mode 100644
index 8ce2be00..00000000
--- a/packages/csharp/docs/Models/Components/IdJson.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# IdJson
-
-An entity which only has an id.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ---------------------- | ---------------------- | ---------------------- | ---------------------- | ---------------------- |
-| `Id` | *string* | :heavy_check_mark: | The entity's id value. | abc-123 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/IdOnlyEntity.md b/packages/csharp/docs/Models/Components/IdOnlyEntity.md
new file mode 100644
index 00000000..986278da
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/IdOnlyEntity.md
@@ -0,0 +1,10 @@
+# IdOnlyEntity
+
+An entity which only has an id.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ---------------------- | ---------------------- | ---------------------- | ---------------------- | ---------------------- |
+| `Id` | *string* | :heavy_check_mark: | The entity's id value. | abc-123 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Industry1.md b/packages/csharp/docs/Models/Components/Industry1.md
new file mode 100644
index 00000000..630b3fbe
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Industry1.md
@@ -0,0 +1,36 @@
+# Industry1
+
+Industry
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = Industry1.AgricultureAndMining;
+```
+
+
+## Values
+
+| Name | Value |
+| -------------------------------------- | -------------------------------------- |
+| `AgricultureAndMining` | AGRICULTURE_AND_MINING |
+| `BusinessServices` | BUSINESS_SERVICES |
+| `ComputersAndElectronics` | COMPUTERS_AND_ELECTRONICS |
+| `ConsumerServices` | CONSUMER_SERVICES |
+| `Education` | EDUCATION |
+| `EnergyAndUtilities` | ENERGY_AND_UTILITIES |
+| `FinancialServices` | FINANCIAL_SERVICES |
+| `Government` | GOVERNMENT |
+| `HealthcarePharmaceuticalsAndBiotech` | HEALTHCARE_PHARMACEUTICALS_AND_BIOTECH |
+| `Manufacturing` | MANUFACTURING |
+| `MediaAndEntertainment` | MEDIA_AND_ENTERTAINMENT |
+| `Other` | OTHER |
+| `RealEstateAndConstruction` | REAL_ESTATE_AND_CONSTRUCTION |
+| `Retail` | RETAIL |
+| `SoftwareAndInternet` | SOFTWARE_AND_INTERNET |
+| `Telecommunications` | TELECOMMUNICATIONS |
+| `TransportationAndStorage` | TRANSPORTATION_AND_STORAGE |
+| `TravelRecreationAndLeisure` | TRAVEL_RECREATION_AND_LEISURE |
+| `WholesaleAndDistribution` | WHOLESALE_AND_DISTRIBUTION |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/IndustryJson0.md b/packages/csharp/docs/Models/Components/IndustryJson0.md
deleted file mode 100644
index 9d4ff213..00000000
--- a/packages/csharp/docs/Models/Components/IndustryJson0.md
+++ /dev/null
@@ -1,36 +0,0 @@
-# IndustryJson0
-
-Industry
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = IndustryJson0.AgricultureAndMining;
-```
-
-
-## Values
-
-| Name | Value |
-| -------------------------------------- | -------------------------------------- |
-| `AgricultureAndMining` | AGRICULTURE_AND_MINING |
-| `BusinessServices` | BUSINESS_SERVICES |
-| `ComputersAndElectronics` | COMPUTERS_AND_ELECTRONICS |
-| `ConsumerServices` | CONSUMER_SERVICES |
-| `Education` | EDUCATION |
-| `EnergyAndUtilities` | ENERGY_AND_UTILITIES |
-| `FinancialServices` | FINANCIAL_SERVICES |
-| `Government` | GOVERNMENT |
-| `HealthcarePharmaceuticalsAndBiotech` | HEALTHCARE_PHARMACEUTICALS_AND_BIOTECH |
-| `Manufacturing` | MANUFACTURING |
-| `MediaAndEntertainment` | MEDIA_AND_ENTERTAINMENT |
-| `Other` | OTHER |
-| `RealEstateAndConstruction` | REAL_ESTATE_AND_CONSTRUCTION |
-| `Retail` | RETAIL |
-| `SoftwareAndInternet` | SOFTWARE_AND_INTERNET |
-| `Telecommunications` | TELECOMMUNICATIONS |
-| `TransportationAndStorage` | TRANSPORTATION_AND_STORAGE |
-| `TravelRecreationAndLeisure` | TRAVEL_RECREATION_AND_LEISURE |
-| `WholesaleAndDistribution` | WHOLESALE_AND_DISTRIBUTION |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/InvitationListPaginatedResponse.md b/packages/csharp/docs/Models/Components/InvitationListPaginatedResponse.md
index e46ba792..ed330561 100644
--- a/packages/csharp/docs/Models/Components/InvitationListPaginatedResponse.md
+++ b/packages/csharp/docs/Models/Components/InvitationListPaginatedResponse.md
@@ -7,5 +7,5 @@ Return a response object containing paginated data for the invitation list(s).
| Field | Type | Required | Description |
| ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- |
-| `Paging` | [PagingJson19](../../Models/Components/PagingJson19.md) | :heavy_check_mark: | Represents pagination information for a collection of resources. |
+| `Paging` | [PagingJson2](../../Models/Components/PagingJson2.md) | :heavy_check_mark: | Represents pagination information for a collection of resources. |
| `Data` | List<[InvitationListJson](../../Models/Components/InvitationListJson.md)> | :heavy_check_mark: | Collection of invitation list objects. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Lead.md b/packages/csharp/docs/Models/Components/Lead.md
index 337bb447..e67d844c 100644
--- a/packages/csharp/docs/Models/Components/Lead.md
+++ b/packages/csharp/docs/Models/Components/Lead.md
@@ -11,9 +11,9 @@ A JSON Schema file for Lead.
| `CreatedBy` | *string* | :heavy_minus_sign: | The identifier of the user that created this record. | hporter |
| `LastModified` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when this record was updated. | 2019-02-12T03:00:00Z |
| `LastModifiedBy` | *string* | :heavy_minus_sign: | The identifier of the user that last updated this record. | hporter |
-| `Event` | [Event21](../../Models/Components/Event21.md) | :heavy_minus_sign: | The Associated Event. | |
+| `Event` | [Event3](../../Models/Components/Event3.md) | :heavy_minus_sign: | The Associated Event. | |
| `Exhibitor` | [Models.Components.Exhibitor](../../Models/Components/Exhibitor.md) | :heavy_minus_sign: | The Associated Exhibitor. | |
-| `Attendee` | [Attendee12](../../Models/Components/Attendee12.md) | :heavy_minus_sign: | A JSON schema representing the Attendee object | |
+| `Attendee` | [Attendee13](../../Models/Components/Attendee13.md) | :heavy_minus_sign: | A JSON schema representing the Attendee object | |
| `BoothStaff` | [BoothStaff](../../Models/Components/BoothStaff.md) | :heavy_minus_sign: | A JSON schema representing Booth Staff entity | |
| `Device` | [Device](../../Models/Components/Device.md) | :heavy_minus_sign: | A JSON object representing an electronic device used to capture leads. | |
| `Appointment` | [Appointment1](../../Models/Components/Appointment1.md) | :heavy_minus_sign: | A JSON schema representing the structure of an appointment object. | |
@@ -23,9 +23,9 @@ A JSON Schema file for Lead.
| `Email` | *string* | :heavy_minus_sign: | The email address of the lead | h.potterfield@test.com |
| `Company` | *string* | :heavy_minus_sign: | The company/organization the lead belongs to. | Cvent Inc |
| `MobilePhone` | *string* | :heavy_minus_sign: | Mobile phone number of the lead | 555-555-5555 |
-| `HomeAddress` | [Address12](../../Models/Components/Address12.md) | :heavy_minus_sign: | Schema for address information | |
+| `HomeAddress` | [Address11](../../Models/Components/Address11.md) | :heavy_minus_sign: | Schema for address information | |
| `HomePhone` | *string* | :heavy_minus_sign: | Home phone number of the lead | 555-555-5555 |
-| `WorkAddress` | [Address12](../../Models/Components/Address12.md) | :heavy_minus_sign: | Schema for address information | |
+| `WorkAddress` | [Address11](../../Models/Components/Address11.md) | :heavy_minus_sign: | Schema for address information | |
| `WorkPhone` | *string* | :heavy_minus_sign: | Work Phone number of the lead | 555-555-5555 |
| `Type` | [LeadType](../../Models/Components/LeadType.md) | :heavy_minus_sign: | The type of lead. | |
| `Application` | [Application](../../Models/Components/Application.md) | :heavy_minus_sign: | The application used to capture lead. | |
diff --git a/packages/csharp/docs/Models/Components/LeadQualificationAnswers.md b/packages/csharp/docs/Models/Components/LeadQualificationAnswers.md
index f82bf972..e0dc59a5 100644
--- a/packages/csharp/docs/Models/Components/LeadQualificationAnswers.md
+++ b/packages/csharp/docs/Models/Components/LeadQualificationAnswers.md
@@ -13,7 +13,7 @@ This JSON schema file represents lead qualification answers
| `LastModifiedBy` | *string* | :heavy_minus_sign: | The identifier of the user that last updated this record. | hporter |
| `Id` | *string* | :heavy_minus_sign: | Lead Qualification Answer id | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
| `Question` | [Uuid](../../Models/Components/Uuid.md) | :heavy_minus_sign: | The reference to the related entity. Contains only the ID of the related entity. | |
-| `Event` | [Event21](../../Models/Components/Event21.md) | :heavy_minus_sign: | The Associated Event. | |
+| `Event` | [Event3](../../Models/Components/Event3.md) | :heavy_minus_sign: | The Associated Event. | |
| `Exhibitor` | [Models.Components.Exhibitor](../../Models/Components/Exhibitor.md) | :heavy_minus_sign: | The Associated Exhibitor. | |
| `Lead` | [Lead2](../../Models/Components/Lead2.md) | :heavy_minus_sign: | JSON schema for the Lead object | |
| `Answers` | List<[Answer1](../../Models/Components/Answer1.md)> | :heavy_minus_sign: | List of answers | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/LeadQualificationQuestion.md b/packages/csharp/docs/Models/Components/LeadQualificationQuestion.md
index c6021f91..3a925564 100644
--- a/packages/csharp/docs/Models/Components/LeadQualificationQuestion.md
+++ b/packages/csharp/docs/Models/Components/LeadQualificationQuestion.md
@@ -12,12 +12,12 @@ A JSON schema representing a Lead Qualification Question model
| `LastModified` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when this record was updated. | 2019-02-12T03:00:00Z |
| `LastModifiedBy` | *string* | :heavy_minus_sign: | The identifier of the user that last updated this record. | hporter |
| `Id` | *string* | :heavy_minus_sign: | Lead Qualification Question id | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `Event` | [Event21](../../Models/Components/Event21.md) | :heavy_minus_sign: | The Associated Event. | |
+| `Event` | [Event3](../../Models/Components/Event3.md) | :heavy_minus_sign: | The Associated Event. | |
| `Exhibitor` | [Models.Components.Exhibitor](../../Models/Components/Exhibitor.md) | :heavy_minus_sign: | The Associated Exhibitor. | |
| `Type` | [LeadQualificationQuestionType](../../Models/Components/LeadQualificationQuestionType.md) | :heavy_minus_sign: | Type of question | |
| `Code` | *string* | :heavy_minus_sign: | question code | cult |
-| `Choices` | List<[Choice](../../Models/Components/Choice.md)> | :heavy_minus_sign: | List of available choices for the question | |
-| `NotApplicableAnswer` | [AdditionalChoice](../../Models/Components/AdditionalChoice.md) | :heavy_minus_sign: | Contains text of additional choice | |
-| `OtherAnswers` | [AdditionalChoice](../../Models/Components/AdditionalChoice.md) | :heavy_minus_sign: | Contains text of additional choice | |
+| `Choices` | List<[Choice1](../../Models/Components/Choice1.md)> | :heavy_minus_sign: | List of available choices for the question | |
+| `NotApplicableAnswer` | [AdditionalChoice1](../../Models/Components/AdditionalChoice1.md) | :heavy_minus_sign: | Contains text of additional choice | |
+| `OtherAnswers` | [AdditionalChoice1](../../Models/Components/AdditionalChoice1.md) | :heavy_minus_sign: | Contains text of additional choice | |
| `Required` | *bool* | :heavy_minus_sign: | A boolean indicating whether the question is mandatory or not | true |
| `Text` | *string* | :heavy_minus_sign: | text of the question | Is there a business need? |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/LeadQualifiedQuestionResponseJson.md b/packages/csharp/docs/Models/Components/LeadQualifiedQuestionResponseJson.md
index 4d98b8c8..6932e0a9 100644
--- a/packages/csharp/docs/Models/Components/LeadQualifiedQuestionResponseJson.md
+++ b/packages/csharp/docs/Models/Components/LeadQualifiedQuestionResponseJson.md
@@ -7,5 +7,5 @@ A Question response.
| Field | Type | Required | Description |
| ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- |
-| `Question` | [QuestionJson3](../../Models/Components/QuestionJson3.md) | :heavy_minus_sign: | The question that was answered. |
+| `Question` | [QuestionJson2](../../Models/Components/QuestionJson2.md) | :heavy_minus_sign: | The question that was answered. |
| `Answers` | List<[LeadQualifiedAnswerJson](../../Models/Components/LeadQualifiedAnswerJson.md)> | :heavy_minus_sign: | List of answers. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/LeadSource.md b/packages/csharp/docs/Models/Components/LeadSource.md
index 9a9a4d82..78fb269e 100644
--- a/packages/csharp/docs/Models/Components/LeadSource.md
+++ b/packages/csharp/docs/Models/Components/LeadSource.md
@@ -8,4 +8,4 @@ Lead source details.
| Field | Type | Required | Description | Example |
| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `Id` | *string* | :heavy_minus_sign: | Unique identifier for source generating the RFP. Details about this lead source can be fetched using lead source API. | 50dc08af-24a9-4d01-84be-3d43133dc945 |
-| `Section` | [LeadSourceSectionJson](../../Models/Components/LeadSourceSectionJson.md) | :heavy_minus_sign: | Represents lead source section details, which is a sub area of source generating the RFP. | |
\ No newline at end of file
+| `Section` | [LeadSourceSection](../../Models/Components/LeadSourceSection.md) | :heavy_minus_sign: | Represents lead source section details, which is a sub area of source generating the RFP. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/LeadSourceJson.md b/packages/csharp/docs/Models/Components/LeadSourceJson.md
deleted file mode 100644
index e7ba1779..00000000
--- a/packages/csharp/docs/Models/Components/LeadSourceJson.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# LeadSourceJson
-
-Lead source details.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_minus_sign: | Unique identifier for source generating the RFP. Details about this lead source can be fetched using lead source API. | 50dc08af-24a9-4d01-84be-3d43133dc945 |
-| `Section` | [LeadSourceSectionJson](../../Models/Components/LeadSourceSectionJson.md) | :heavy_minus_sign: | Represents lead source section details, which is a sub area of source generating the RFP. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/LeadSourceSection.md b/packages/csharp/docs/Models/Components/LeadSourceSection.md
new file mode 100644
index 00000000..6d131beb
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/LeadSourceSection.md
@@ -0,0 +1,10 @@
+# LeadSourceSection
+
+Represents lead source section details, which is a sub area of source generating the RFP.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Id` | *string* | :heavy_minus_sign: | Unique identifier for sub area of source generating the RFP. Details about this lead source section can be fetched using lead source section API. | 40dc08af-24a9-4d01-84be-3d43133dc945 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/LeadSourceSectionJson.md b/packages/csharp/docs/Models/Components/LeadSourceSectionJson.md
deleted file mode 100644
index 372be664..00000000
--- a/packages/csharp/docs/Models/Components/LeadSourceSectionJson.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# LeadSourceSectionJson
-
-Represents lead source section details, which is a sub area of source generating the RFP.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_minus_sign: | Unique identifier for sub area of source generating the RFP. Details about this lead source section can be fetched using lead source section API. | 40dc08af-24a9-4d01-84be-3d43133dc945 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ManagementLevelType1.md b/packages/csharp/docs/Models/Components/ManagementLevelType1.md
new file mode 100644
index 00000000..998695e4
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ManagementLevelType1.md
@@ -0,0 +1,21 @@
+# ManagementLevelType1
+
+The management level of the travel account. Defined by the supply-side.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = ManagementLevelType1.Global;
+```
+
+
+## Values
+
+| Name | Value |
+| ---------- | ---------- |
+| `Global` | global |
+| `National` | national |
+| `Regional` | regional |
+| `Local` | local |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ManagementLevelTypeJson1.md b/packages/csharp/docs/Models/Components/ManagementLevelTypeJson1.md
deleted file mode 100644
index fbb3d7b2..00000000
--- a/packages/csharp/docs/Models/Components/ManagementLevelTypeJson1.md
+++ /dev/null
@@ -1,21 +0,0 @@
-# ManagementLevelTypeJson1
-
-The management level of the travel account. Defined by the supply-side.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = ManagementLevelTypeJson1.Global;
-```
-
-
-## Values
-
-| Name | Value |
-| ---------- | ---------- |
-| `Global` | global |
-| `National` | national |
-| `Regional` | regional |
-| `Local` | local |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/MeasurementUnit.md b/packages/csharp/docs/Models/Components/MeasurementUnit.md
new file mode 100644
index 00000000..30cafb35
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/MeasurementUnit.md
@@ -0,0 +1,23 @@
+# MeasurementUnit
+
+Unit of measurement for area or space.
+
+Values:
+- `SQUARE_FEET` — Square Feet
+- `SQUARE_METERS` — Square Meters
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = MeasurementUnit.SquareFeet;
+```
+
+
+## Values
+
+| Name | Value |
+| -------------- | -------------- |
+| `SquareFeet` | SQUARE_FEET |
+| `SquareMeters` | SQUARE_METERS |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/MeasurementUnitJson0.md b/packages/csharp/docs/Models/Components/MeasurementUnitJson0.md
deleted file mode 100644
index e7a94b0c..00000000
--- a/packages/csharp/docs/Models/Components/MeasurementUnitJson0.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# MeasurementUnitJson0
-
-Measurement unit.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = MeasurementUnitJson0.SquareFeet;
-```
-
-
-## Values
-
-| Name | Value |
-| -------------- | -------------- |
-| `SquareFeet` | SQUARE_FEET |
-| `SquareMeters` | SQUARE_METERS |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/MeetingRequestQuestionJson.md b/packages/csharp/docs/Models/Components/MeetingRequestQuestionJson.md
index 1b48a1b6..de68c864 100644
--- a/packages/csharp/docs/Models/Components/MeetingRequestQuestionJson.md
+++ b/packages/csharp/docs/Models/Components/MeetingRequestQuestionJson.md
@@ -9,7 +9,7 @@ A question and its answer for a meeting request. Some questions have fixed, well
| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `Id` | *string* | :heavy_check_mark: | The unique ID of the question. Some questions have fixed, well-known IDs shared across all accounts:
* Event Country/Region — `da9a6706-7af3-42fc-b2c1-708050a791c1`
* Requester Country/Region — `d8fa449b-ec97-4e91-8193-b753df11e064`
* Stakeholder Country/Region — `ddd9035a-44a2-49b0-8d31-66cdca0c13c7`
* Meeting Room Requirements — `9a224e41-58d9-43a2-ae59-6d1aa16442ce`
* Sleeping Room Requirements — `cc63aa7c-0800-4fa5-a04b-073793e197f3`
* Budget Estimates — `1479fb2d-e94c-4bfb-a63f-4af808a22160` | f1ea56cd-6860-4f1a-baf7-973118384384 |
| `Name` | *string* | :heavy_minus_sign: | The display text of the question. | What is your favorite color? |
-| `Type` | [QuestionTypeJson1](../../Models/Components/QuestionTypeJson1.md) | :heavy_minus_sign: | Denotes the type of data collected by a question. | SingleSelect |
+| `Type` | [QuestionTypeJson](../../Models/Components/QuestionTypeJson.md) | :heavy_minus_sign: | Denotes the type of data collected by a question. | SingleSelect |
| `Value` | List<*string*> | :heavy_check_mark: | An array of non-null answers to the question. The format of each item depends on the question `type`.
**Standard questions:** Each item is a plain string (for example, `"Green"`).
**Country/Region questions (`type: Country`):** Each item is either a country name (for example, `"Canada"`) or a country code (for example, `"CA"`). Clients should provide either country names or country codes, but not both formats in the same request. See the Country Codes reference for the list of supported country codes and corresponding country names.
**Complex questions (`type: MeetingRoomRequirements`, `SleepingRoomRequirements`, or `BudgetEstimates`):** Each item is a JSON-serialized string. See `compositeValue` for the same data in parsed form. | |
| `AnswerType` | [AnswerTypeJson](../../Models/Components/AnswerTypeJson.md) | :heavy_minus_sign: | Indicates the type of the answer, which determines how the `value` and `secondaryValue` fields are interpreted.
Set to **"Other"** when the question has the **"Other"** choice option enabled, indicating the answer in the **"secondaryValue"** field is a free-text response to that option.
Set to **"NA"** when the question has the **"N/A"** choice option enabled, to indicate an N/A type answer; in this case, `value` is omitted.
In all other cases, `answerType` is not expected to be set. | Other |
| `SecondaryValue` | *string* | :heavy_minus_sign: | The secondary value of the question. This can be the other answer of choice questions which have `Other` as an answer type. | The other answer for the question. |
diff --git a/packages/csharp/docs/Models/Components/MembershipJson.md b/packages/csharp/docs/Models/Components/MembershipJson.md
deleted file mode 100644
index 513a66b6..00000000
--- a/packages/csharp/docs/Models/Components/MembershipJson.md
+++ /dev/null
@@ -1,16 +0,0 @@
-# MembershipJson
-
-Contact Membership information
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
-| `Type` | *string* | :heavy_minus_sign: | The type of membership the contact has signed up for. | Corporate Sponsor |
-| `Plan` | *string* | :heavy_minus_sign: | Describes the specific plan the contact has signed up for. | Gold Level |
-| `Joined` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The ISO-8601 formatted date the contact began their membership. | 2017-02-10 |
-| `Expiration` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The ISO-8601 formatted date the contact's membership will expire. | 2020-02-09 |
-| `LastRenewal` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The ISO-8601 formatted date the contact last renewed their membership. | 2019-02-08 |
-| `AmountDue` | *double* | :heavy_minus_sign: | The amount currently due for this membership. | 50.5 |
-| `ListInDirectory` | *bool* | :heavy_minus_sign: | Indicates if the member details should be included in the member directory. | false |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/MessageRecipientResponse.md b/packages/csharp/docs/Models/Components/MessageRecipientResponse.md
new file mode 100644
index 00000000..d63f8662
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/MessageRecipientResponse.md
@@ -0,0 +1,11 @@
+# MessageRecipientResponse
+
+Members of the channel who received a message.
+
+
+## Fields
+
+| Field | Type | Required | Description |
+| ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- |
+| `Attendee` | [MessageRecipientResponseAttendee](../../Models/Components/MessageRecipientResponseAttendee.md) | :heavy_check_mark: | The attendee object |
+| `Channel` | [Channel](../../Models/Components/Channel.md) | :heavy_check_mark: | The channel object |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/MessageRecipientResponseAttendee.md b/packages/csharp/docs/Models/Components/MessageRecipientResponseAttendee.md
new file mode 100644
index 00000000..a76643d1
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/MessageRecipientResponseAttendee.md
@@ -0,0 +1,12 @@
+# MessageRecipientResponseAttendee
+
+The attendee object
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
+| `Id` | *string* | :heavy_check_mark: | Unique identifier for the attendee. | 0a459133-1f5e-43b2-8694-7da9541b3f58 |
+| `Active` | *bool* | :heavy_check_mark: | True indicates the recipient is active in the channel. | false |
+| `LeftChannelAt` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | ISO 8601 formatted timestamp when the attendee left the channel, if applicable. | 2025-03-13T18:00:00.000Z |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/MessageRecipientsPaginatedResponse.md b/packages/csharp/docs/Models/Components/MessageRecipientsPaginatedResponse.md
index 55ae7e79..c95c955b 100644
--- a/packages/csharp/docs/Models/Components/MessageRecipientsPaginatedResponse.md
+++ b/packages/csharp/docs/Models/Components/MessageRecipientsPaginatedResponse.md
@@ -5,7 +5,7 @@ The response matching the filter criteria for the list of channel members.
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- |
-| `Paging` | [PagingJson](../../Models/Components/PagingJson.md) | :heavy_check_mark: | Represents pagination information for a collection of resources. |
-| `Data` | List<[MessageRecipientsResponseJson](../../Models/Components/MessageRecipientsResponseJson.md)> | :heavy_check_mark: | Collection of channel members. |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
+| `Paging` | [Paging](../../Models/Components/Paging.md) | :heavy_check_mark: | Represents pagination information for a collection of resources. |
+| `Data` | List<[MessageRecipientResponse](../../Models/Components/MessageRecipientResponse.md)> | :heavy_check_mark: | Collection of channel members. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/MessageRecipientsResponseJson.md b/packages/csharp/docs/Models/Components/MessageRecipientsResponseJson.md
deleted file mode 100644
index 3e7cbb06..00000000
--- a/packages/csharp/docs/Models/Components/MessageRecipientsResponseJson.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# MessageRecipientsResponseJson
-
-Members of the channel who received a message.
-
-
-## Fields
-
-| Field | Type | Required | Description |
-| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- |
-| `Attendee` | [MessageRecipientsResponseJsonAttendee](../../Models/Components/MessageRecipientsResponseJsonAttendee.md) | :heavy_check_mark: | The attendee object |
-| `Channel` | [Channel](../../Models/Components/Channel.md) | :heavy_check_mark: | The channel object |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/MessageRecipientsResponseJsonAttendee.md b/packages/csharp/docs/Models/Components/MessageRecipientsResponseJsonAttendee.md
deleted file mode 100644
index 55df00fb..00000000
--- a/packages/csharp/docs/Models/Components/MessageRecipientsResponseJsonAttendee.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# MessageRecipientsResponseJsonAttendee
-
-The attendee object
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_check_mark: | Unique identifier for the attendee. | 0a459133-1f5e-43b2-8694-7da9541b3f58 |
-| `Active` | *bool* | :heavy_check_mark: | True indicates the recipient is active in the channel. | false |
-| `LeftChannelAt` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | ISO 8601 formatted timestamp when the attendee left the channel, if applicable. | 2025-03-13T18:00:00.000Z |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/NumericAnswerFormat.md b/packages/csharp/docs/Models/Components/NumericAnswerFormat.md
new file mode 100644
index 00000000..73772044
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/NumericAnswerFormat.md
@@ -0,0 +1,20 @@
+# NumericAnswerFormat
+
+The answer format that a given number is stored in.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = NumericAnswerFormat.Currency;
+```
+
+
+## Values
+
+| Name | Value |
+| ---------- | ---------- |
+| `Currency` | Currency |
+| `Decimal` | Decimal |
+| `Number` | Number |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/NumericAnswerFormatJson.md b/packages/csharp/docs/Models/Components/NumericAnswerFormatJson.md
deleted file mode 100644
index 81d80eb9..00000000
--- a/packages/csharp/docs/Models/Components/NumericAnswerFormatJson.md
+++ /dev/null
@@ -1,20 +0,0 @@
-# NumericAnswerFormatJson
-
-The answer format that a given number is stored in.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = NumericAnswerFormatJson.Currency;
-```
-
-
-## Values
-
-| Name | Value |
-| ---------- | ---------- |
-| `Currency` | Currency |
-| `Decimal` | Decimal |
-| `Number` | Number |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/OfferingCostType1.md b/packages/csharp/docs/Models/Components/OfferingCostType1.md
new file mode 100644
index 00000000..5b71ef97
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/OfferingCostType1.md
@@ -0,0 +1,79 @@
+# OfferingCostType1
+
+Cost type associated with organizing and hosting events and meetings.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = OfferingCostType1.AirportTransportation;
+```
+
+
+## Values
+
+| Name | Value |
+| ------------------------------ | ------------------------------ |
+| `AirportTransportation` | AIRPORT_TRANSPORTATION |
+| `AirConditioningHeating` | AIR_CONDITIONING_HEATING |
+| `AudioPatch` | AUDIO_PATCH |
+| `AvEquipment` | AV_EQUIPMENT |
+| `BellmanDelivery` | BELLMAN_DELIVERY |
+| `BreakfastBuffet` | BREAKFAST_BUFFET |
+| `BreakfastContinental` | BREAKFAST_CONTINENTAL |
+| `BreakfastPlated` | BREAKFAST_PLATED |
+| `BreakoutLarge` | BREAKOUT_LARGE |
+| `BreakoutMedium` | BREAKOUT_MEDIUM |
+| `BreakoutSmall` | BREAKOUT_SMALL |
+| `BreakoutTotal` | BREAKOUT_TOTAL |
+| `BreakAm` | BREAK_AM |
+| `BreakDrinksOnly` | BREAK_DRINKS_ONLY |
+| `BreakPm` | BREAK_PM |
+| `BreakSnacksAndDrinks` | BREAK_SNACKS_AND_DRINKS |
+| `BuildingOvertime` | BUILDING_OVERTIME |
+| `BusinessCenter` | BUSINESS_CENTER |
+| `Cmp` | CMP |
+| `ConferenceConcierge` | CONFERENCE_CONCIERGE |
+| `ConferencePlanningManager` | CONFERENCE_PLANNING_MANAGER |
+| `DdrFullDay` | DDR_FULL_DAY |
+| `DdrHalfDay` | DDR_HALF_DAY |
+| `DinnerBuffet` | DINNER_BUFFET |
+| `DinnerPlated` | DINNER_PLATED |
+| `ExhibitSpace` | EXHIBIT_SPACE |
+| `FacilityFee` | FACILITY_FEE |
+| `FitnessCenter` | FITNESS_CENTER |
+| `GallonCoffee` | GALLON_COFFEE |
+| `GeneralSession` | GENERAL_SESSION |
+| `Housekeeping` | HOUSEKEEPING |
+| `InternetGuestRoom` | INTERNET_GUEST_ROOM |
+| `InternetMeetingRoom` | INTERNET_MEETING_ROOM |
+| `Labor` | LABOR |
+| `Lighting` | LIGHTING |
+| `LocalTransportation` | LOCAL_TRANSPORTATION |
+| `LunchBoxed` | LUNCH_BOXED |
+| `LunchBuffet` | LUNCH_BUFFET |
+| `LunchPlated` | LUNCH_PLATED |
+| `MeetingRoomsTotal` | MEETING_ROOMS_TOTAL |
+| `None` | NONE |
+| `Office` | OFFICE |
+| `OtherFb` | OTHER_FB |
+| `OtherMisc` | OTHER_MISC |
+| `OtherRental` | OTHER_RENTAL |
+| `OtherTransportation` | OTHER_TRANSPORTATION |
+| `ParkingFeeSelf` | PARKING_FEE_SELF |
+| `ParkingFeeValet` | PARKING_FEE_VALET |
+| `PowerDrop` | POWER_DROP |
+| `ReceptionBeverage` | RECEPTION_BEVERAGE |
+| `ReceptionFood` | RECEPTION_FOOD |
+| `ReceptionHeavyHorsDOeuvres` | RECEPTION_HEAVY_HORS_D_OEUVRES |
+| `ReceptionLightAppetizers` | RECEPTION_LIGHT_APPETIZERS |
+| `ResortFee` | RESORT_FEE |
+| `RoomDrop` | ROOM_DROP |
+| `ServiceCharges` | SERVICE_CHARGES |
+| `Setup` | SETUP |
+| `ShippingReceiving` | SHIPPING_RECEIVING |
+| `GuestRooms` | GUEST_ROOMS |
+| `Storage` | STORAGE |
+| `Teardown` | TEARDOWN |
+| `TotalFbMinimum` | TOTAL_FB_MINIMUM |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/OfferingCostTypeJson0.md b/packages/csharp/docs/Models/Components/OfferingCostTypeJson0.md
deleted file mode 100644
index bf8afeee..00000000
--- a/packages/csharp/docs/Models/Components/OfferingCostTypeJson0.md
+++ /dev/null
@@ -1,79 +0,0 @@
-# OfferingCostTypeJson0
-
-Cost type associated with organizing and hosting events and meetings.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = OfferingCostTypeJson0.AirportTransportation;
-```
-
-
-## Values
-
-| Name | Value |
-| ------------------------------ | ------------------------------ |
-| `AirportTransportation` | AIRPORT_TRANSPORTATION |
-| `AirConditioningHeating` | AIR_CONDITIONING_HEATING |
-| `AudioPatch` | AUDIO_PATCH |
-| `AvEquipment` | AV_EQUIPMENT |
-| `BellmanDelivery` | BELLMAN_DELIVERY |
-| `BreakfastBuffet` | BREAKFAST_BUFFET |
-| `BreakfastContinental` | BREAKFAST_CONTINENTAL |
-| `BreakfastPlated` | BREAKFAST_PLATED |
-| `BreakoutLarge` | BREAKOUT_LARGE |
-| `BreakoutMedium` | BREAKOUT_MEDIUM |
-| `BreakoutSmall` | BREAKOUT_SMALL |
-| `BreakoutTotal` | BREAKOUT_TOTAL |
-| `BreakAm` | BREAK_AM |
-| `BreakDrinksOnly` | BREAK_DRINKS_ONLY |
-| `BreakPm` | BREAK_PM |
-| `BreakSnacksAndDrinks` | BREAK_SNACKS_AND_DRINKS |
-| `BuildingOvertime` | BUILDING_OVERTIME |
-| `BusinessCenter` | BUSINESS_CENTER |
-| `Cmp` | CMP |
-| `ConferenceConcierge` | CONFERENCE_CONCIERGE |
-| `ConferencePlanningManager` | CONFERENCE_PLANNING_MANAGER |
-| `DdrFullDay` | DDR_FULL_DAY |
-| `DdrHalfDay` | DDR_HALF_DAY |
-| `DinnerBuffet` | DINNER_BUFFET |
-| `DinnerPlated` | DINNER_PLATED |
-| `ExhibitSpace` | EXHIBIT_SPACE |
-| `FacilityFee` | FACILITY_FEE |
-| `FitnessCenter` | FITNESS_CENTER |
-| `GallonCoffee` | GALLON_COFFEE |
-| `GeneralSession` | GENERAL_SESSION |
-| `Housekeeping` | HOUSEKEEPING |
-| `InternetGuestRoom` | INTERNET_GUEST_ROOM |
-| `InternetMeetingRoom` | INTERNET_MEETING_ROOM |
-| `Labor` | LABOR |
-| `Lighting` | LIGHTING |
-| `LocalTransportation` | LOCAL_TRANSPORTATION |
-| `LunchBoxed` | LUNCH_BOXED |
-| `LunchBuffet` | LUNCH_BUFFET |
-| `LunchPlated` | LUNCH_PLATED |
-| `MeetingRoomsTotal` | MEETING_ROOMS_TOTAL |
-| `None` | NONE |
-| `Office` | OFFICE |
-| `OtherFb` | OTHER_FB |
-| `OtherMisc` | OTHER_MISC |
-| `OtherRental` | OTHER_RENTAL |
-| `OtherTransportation` | OTHER_TRANSPORTATION |
-| `ParkingFeeSelf` | PARKING_FEE_SELF |
-| `ParkingFeeValet` | PARKING_FEE_VALET |
-| `PowerDrop` | POWER_DROP |
-| `ReceptionBeverage` | RECEPTION_BEVERAGE |
-| `ReceptionFood` | RECEPTION_FOOD |
-| `ReceptionHeavyHorsDOeuvres` | RECEPTION_HEAVY_HORS_D_OEUVRES |
-| `ReceptionLightAppetizers` | RECEPTION_LIGHT_APPETIZERS |
-| `ResortFee` | RESORT_FEE |
-| `RoomDrop` | ROOM_DROP |
-| `ServiceCharges` | SERVICE_CHARGES |
-| `Setup` | SETUP |
-| `ShippingReceiving` | SHIPPING_RECEIVING |
-| `GuestRooms` | GUEST_ROOMS |
-| `Storage` | STORAGE |
-| `Teardown` | TEARDOWN |
-| `TotalFbMinimum` | TOTAL_FB_MINIMUM |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/One.md b/packages/csharp/docs/Models/Components/One.md
new file mode 100644
index 00000000..c75e167f
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/One.md
@@ -0,0 +1,14 @@
+# One
+
+This is used to denote the open ended date time type of custom field.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
+| `From` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned minimum date time accepted. | 2021-01-02T02:00:00Z |
+| `To` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned maximum date time accepted. | 2021-02-02T02:00:00Z |
+| `Format` | [DateTimeDisplayFormatJson](../../Models/Components/DateTimeDisplayFormatJson.md) | :heavy_minus_sign: | This is used to denote the display format type of date time type custom field. | DateOnlyMonthFirst |
+| `DefaultToCurrentDate` | *bool* | :heavy_minus_sign: | Whether it needs to be pre populated with current date. | false |
+| `DisplayPopUpCalendar` | *bool* | :heavy_minus_sign: | True means that a pop-up calendar will be displayed to assist date selection on UI. | false |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/OneAllOf.md b/packages/csharp/docs/Models/Components/OneAllOf.md
deleted file mode 100644
index fb2ce46d..00000000
--- a/packages/csharp/docs/Models/Components/OneAllOf.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# OneAllOf
-
-Represents a link to a related resource.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ----------------------------------------------- | ----------------------------------------------- | ----------------------------------------------- | ----------------------------------------------- | ----------------------------------------------- |
-| `Href` | *string* | :heavy_check_mark: | A url provided that can be followed for linking | ?token=90c5f062-76ad-4ea4-aa53-00eb698d9262 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/OneOneOf.md b/packages/csharp/docs/Models/Components/OneOneOf.md
deleted file mode 100644
index a7b39c2e..00000000
--- a/packages/csharp/docs/Models/Components/OneOneOf.md
+++ /dev/null
@@ -1,14 +0,0 @@
-# OneOneOf
-
-This is used to denote the open ended date time type of custom field.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
-| `From` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned minimum date time accepted. | 2021-01-02T02:00:00Z |
-| `To` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned maximum date time accepted. | 2021-02-02T02:00:00Z |
-| `Format` | [DateTimeDisplayFormatJson](../../Models/Components/DateTimeDisplayFormatJson.md) | :heavy_minus_sign: | This is used to denote the display format type of date time type custom field. | DateOnlyMonthFirst |
-| `DefaultToCurrentDate` | *bool* | :heavy_minus_sign: | Whether it needs to be pre populated with current date. | false |
-| `DisplayPopUpCalendar` | *bool* | :heavy_minus_sign: | True means that a pop-up calendar will be displayed to assist date selection on UI. | false |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/OptOutJson.md b/packages/csharp/docs/Models/Components/OptOutJson.md
deleted file mode 100644
index fc846048..00000000
--- a/packages/csharp/docs/Models/Components/OptOutJson.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# OptOutJson
-
-Details of an opt-out for a Contact.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- |
-| `OptedOut` | *bool* | :heavy_minus_sign: | Used to denote if a contact has opted-out of receiving system generated emails. | false |
-| `Date` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when this contact was opted-out. This value can change if the contact opts out multiple times. | 2019-02-12T03:00:00Z |
-| `By` | [OptoutByJson](../../Models/Components/OptoutByJson.md) | :heavy_minus_sign: | This is used to denote how a contact is opt'd out of Cvent system. | Account User |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/OptOutJsonInput.md b/packages/csharp/docs/Models/Components/OptOutJsonInput.md
deleted file mode 100644
index 524aa853..00000000
--- a/packages/csharp/docs/Models/Components/OptOutJsonInput.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# OptOutJsonInput
-
-Details of an opt-out for a Contact.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- |
-| `OptedOut` | *bool* | :heavy_minus_sign: | Used to denote if a contact has opted-out of receiving system generated emails. | false |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/OptoutBy.md b/packages/csharp/docs/Models/Components/OptoutBy.md
new file mode 100644
index 00000000..07368119
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/OptoutBy.md
@@ -0,0 +1,29 @@
+# OptoutBy
+
+This is used to denote how a contact is opt'd out of Cvent system.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = OptoutBy.AbuseComplaint;
+```
+
+
+## Values
+
+| Name | Value |
+| --------------------------- | --------------------------- |
+| `AbuseComplaint` | Abuse Complaint |
+| `AccountUser` | Account User |
+| `Api` | API |
+| `ContactSelfOptOut` | Contact Self Opt-Out |
+| `CventSupport` | Cvent Support |
+| `HardBounce` | Hard Bounce |
+| `Import` | Import |
+| `InviteeSelfUnsubscribe` | Invitee Self Unsubscribe |
+| `MultipleBounce` | Multiple Bounce |
+| `RespondentSelfUnsubscribe` | Respondent Self Unsubscribe |
+| `TemporaryBlock` | Temporary Block |
+| `CventSalesforceApp` | Cvent Salesforce App |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/OrderDetail.md b/packages/csharp/docs/Models/Components/OrderDetail.md
index e0bdec41..fe1d7f0b 100644
--- a/packages/csharp/docs/Models/Components/OrderDetail.md
+++ b/packages/csharp/docs/Models/Components/OrderDetail.md
@@ -13,7 +13,7 @@ This is used to denote the details of the order made by an attendee.
| `LastModifiedBy` | *string* | :heavy_minus_sign: | The identifier of the user that last updated this record. | hporter |
| `Id` | *string* | :heavy_minus_sign: | A string that has to be a format matching the industry standard uuid | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
| `Event` | [Event2](../../Models/Components/Event2.md) | :heavy_minus_sign: | The reference to the event. Contains only the ID of the event. | |
-| `Attendee` | [Attendee2](../../Models/Components/Attendee2.md) | :heavy_minus_sign: | The reference to the attendee. Contains only the ID of the attendee. | |
+| `Attendee` | [Attendee](../../Models/Components/Attendee.md) | :heavy_minus_sign: | The reference to the attendee. Contains only the ID of the attendee. | |
| `Number` | *string* | :heavy_minus_sign: | Order number for this order | PZNK2PKZH4N |
| `Cancelled` | *bool* | :heavy_minus_sign: | This denotes if an order is cancelled or not. | false |
| `Type` | [OrderType](../../Models/Components/OrderType.md) | :heavy_minus_sign: | This is used to denote the type of order made by an attendee. | Online Refund |
diff --git a/packages/csharp/docs/Models/Components/OrderItemResponse.md b/packages/csharp/docs/Models/Components/OrderItemResponse.md
index fc97544e..76ad0ea8 100644
--- a/packages/csharp/docs/Models/Components/OrderItemResponse.md
+++ b/packages/csharp/docs/Models/Components/OrderItemResponse.md
@@ -14,7 +14,7 @@ This is used to denote an item in the order
| `Id` | *string* | :heavy_minus_sign: | A string that has to be a format matching the industry standard uuid | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
| `Order` | [OrderRef](../../Models/Components/OrderRef.md) | :heavy_minus_sign: | Represents an order by its ID and includes the order type. | |
| `Event` | [Event2](../../Models/Components/Event2.md) | :heavy_minus_sign: | The reference to the event. Contains only the ID of the event. | |
-| `Attendee` | [Attendee2](../../Models/Components/Attendee2.md) | :heavy_minus_sign: | The reference to the attendee. Contains only the ID of the attendee. | |
+| `Attendee` | [Attendee](../../Models/Components/Attendee.md) | :heavy_minus_sign: | The reference to the attendee. Contains only the ID of the attendee. | |
| `Guest` | *bool* | :heavy_minus_sign: | Indicates if an attendee is a guest | true |
| `GuestDetail` | [Guest](../../Models/Components/Guest.md) | :heavy_minus_sign: | The reference to the guest. Contains only the ID of the guest. | |
| `Product` | [ProductOrderItem](../../Models/Components/ProductOrderItem.md) | :heavy_minus_sign: | This is used to denote the product details in an order item | |
diff --git a/packages/csharp/docs/Models/Components/Organization.md b/packages/csharp/docs/Models/Components/Organization.md
new file mode 100644
index 00000000..decf9788
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Organization.md
@@ -0,0 +1,10 @@
+# Organization
+
+Organization details.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| --------------------------------------- | --------------------------------------- | --------------------------------------- | --------------------------------------- | --------------------------------------- |
+| `Id` | *string* | :heavy_minus_sign: | Unique identifier for the organization. | 50dc08af-24a9-4d01-84be-3d43133dc945 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/OrganizationJson.md b/packages/csharp/docs/Models/Components/OrganizationJson.md
deleted file mode 100644
index c3b2ae06..00000000
--- a/packages/csharp/docs/Models/Components/OrganizationJson.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# OrganizationJson
-
-Organization details.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| --------------------------------------- | --------------------------------------- | --------------------------------------- | --------------------------------------- | --------------------------------------- |
-| `Id` | *string* | :heavy_minus_sign: | Unique identifier for the organization. | 50dc08af-24a9-4d01-84be-3d43133dc945 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/OrganizationType1.md b/packages/csharp/docs/Models/Components/OrganizationType1.md
new file mode 100644
index 00000000..d548a5c4
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/OrganizationType1.md
@@ -0,0 +1,26 @@
+# OrganizationType1
+
+Organization type.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = OrganizationType1.Corporate;
+```
+
+
+## Values
+
+| Name | Value |
+| --------------- | --------------- |
+| `Corporate` | CORPORATE |
+| `Association` | ASSOCIATION |
+| `Education` | EDUCATION |
+| `Government` | GOVERNMENT |
+| `SocialLeisure` | SOCIAL_LEISURE |
+| `Religious` | RELIGIOUS |
+| `Military` | MILITARY |
+| `Other` | OTHER |
+| `NonProfit` | NON_PROFIT |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/OrganizationTypeJson0.md b/packages/csharp/docs/Models/Components/OrganizationTypeJson0.md
deleted file mode 100644
index 18c597dc..00000000
--- a/packages/csharp/docs/Models/Components/OrganizationTypeJson0.md
+++ /dev/null
@@ -1,26 +0,0 @@
-# OrganizationTypeJson0
-
-Organization type.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = OrganizationTypeJson0.Corporate;
-```
-
-
-## Values
-
-| Name | Value |
-| --------------- | --------------- |
-| `Corporate` | CORPORATE |
-| `Association` | ASSOCIATION |
-| `Education` | EDUCATION |
-| `Government` | GOVERNMENT |
-| `SocialLeisure` | SOCIAL_LEISURE |
-| `Religious` | RELIGIOUS |
-| `Military` | MILITARY |
-| `Other` | OTHER |
-| `NonProfit` | NON_PROFIT |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/PackagePricingPreference.md b/packages/csharp/docs/Models/Components/PackagePricingPreference.md
new file mode 100644
index 00000000..e3214671
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/PackagePricingPreference.md
@@ -0,0 +1,20 @@
+# PackagePricingPreference
+
+Represents different preferences by planner for pricing packages response that supplier has to provide. NO_PREFERENCE means no pricing package information is need, OPTIONAL means it's not mandatory to provide pricing preference, and REQUIRED means package information is mandatory to be provided by supplier.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = PackagePricingPreference.NoPreference;
+```
+
+
+## Values
+
+| Name | Value |
+| -------------- | -------------- |
+| `NoPreference` | NO_PREFERENCE |
+| `Optional` | OPTIONAL |
+| `Required` | REQUIRED |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/PackagePricingPreferenceJson.md b/packages/csharp/docs/Models/Components/PackagePricingPreferenceJson.md
deleted file mode 100644
index 63d7e906..00000000
--- a/packages/csharp/docs/Models/Components/PackagePricingPreferenceJson.md
+++ /dev/null
@@ -1,20 +0,0 @@
-# PackagePricingPreferenceJson
-
-Represents different preferences by planner for pricing packages response that supplier has to provide. NO_PREFERENCE means no pricing package information is need, OPTIONAL means it's not mandatory to provide pricing preference, and REQUIRED means package information is mandatory to be provided by supplier.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = PackagePricingPreferenceJson.NoPreference;
-```
-
-
-## Values
-
-| Name | Value |
-| -------------- | -------------- |
-| `NoPreference` | NO_PREFERENCE |
-| `Optional` | OPTIONAL |
-| `Required` | REQUIRED |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/PaginatedInternalDocuments.md b/packages/csharp/docs/Models/Components/PaginatedInternalDocuments.md
index 62e9a049..e7008f1c 100644
--- a/packages/csharp/docs/Models/Components/PaginatedInternalDocuments.md
+++ b/packages/csharp/docs/Models/Components/PaginatedInternalDocuments.md
@@ -5,7 +5,7 @@ Paginated list of internal documents attached to an RFP.
## Fields
-| Field | Type | Required | Description |
-| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
-| `Paging` | [PagingJson](../../Models/Components/PagingJson.md) | :heavy_minus_sign: | Represents pagination information for a collection of resources. |
-| `Data` | List<[RfpInternalDocumentJson0](../../Models/Components/RfpInternalDocumentJson0.md)> | :heavy_minus_sign: | List of internal documents linked to an RFP. |
\ No newline at end of file
+| Field | Type | Required | Description |
+| --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- |
+| `Paging` | [Paging](../../Models/Components/Paging.md) | :heavy_minus_sign: | Represents pagination information for a collection of resources. |
+| `Data` | List<[RfpInternalDocument](../../Models/Components/RfpInternalDocument.md)> | :heavy_minus_sign: | List of internal documents linked to an RFP. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/PaginatedRfpAgendaItems.md b/packages/csharp/docs/Models/Components/PaginatedRfpAgendaItems.md
index 3408ee2e..b6773bc5 100644
--- a/packages/csharp/docs/Models/Components/PaginatedRfpAgendaItems.md
+++ b/packages/csharp/docs/Models/Components/PaginatedRfpAgendaItems.md
@@ -5,7 +5,7 @@ Paginated list of agenda items associated with an RFP.
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- |
-| `Paging` | [PagingJson](../../Models/Components/PagingJson.md) | :heavy_minus_sign: | Represents pagination information for a collection of resources. |
-| `Data` | List<[RfpAgendaItemJson](../../Models/Components/RfpAgendaItemJson.md)> | :heavy_minus_sign: | List of agenda items associated with an RFP. |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- |
+| `Paging` | [Paging](../../Models/Components/Paging.md) | :heavy_minus_sign: | Represents pagination information for a collection of resources. |
+| `Data` | List<[RfpAgendaItem](../../Models/Components/RfpAgendaItem.md)> | :heavy_minus_sign: | List of agenda items associated with an RFP. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/PaginatedRfpAgendaItemsSchedule.md b/packages/csharp/docs/Models/Components/PaginatedRfpAgendaItemsSchedule.md
index bd40787b..d5489034 100644
--- a/packages/csharp/docs/Models/Components/PaginatedRfpAgendaItemsSchedule.md
+++ b/packages/csharp/docs/Models/Components/PaginatedRfpAgendaItemsSchedule.md
@@ -5,7 +5,7 @@ Paginated list of agenda items schedule attached to an RFP.
## Fields
-| Field | Type | Required | Description |
-| --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- |
-| `Paging` | [PagingJson](../../Models/Components/PagingJson.md) | :heavy_minus_sign: | Represents pagination information for a collection of resources. |
-| `Data` | List<[RfpAgendaItemScheduleWithIdJson](../../Models/Components/RfpAgendaItemScheduleWithIdJson.md)> | :heavy_minus_sign: | List of agenda items schedule attached to an RFP. |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- |
+| `Paging` | [Paging](../../Models/Components/Paging.md) | :heavy_minus_sign: | Represents pagination information for a collection of resources. |
+| `Data` | List<[RfpAgendaItemScheduleWithId](../../Models/Components/RfpAgendaItemScheduleWithId.md)> | :heavy_minus_sign: | List of agenda items schedule attached to an RFP. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/PaginatedRfpAttachments.md b/packages/csharp/docs/Models/Components/PaginatedRfpAttachments.md
index d568ec0f..60448ce9 100644
--- a/packages/csharp/docs/Models/Components/PaginatedRfpAttachments.md
+++ b/packages/csharp/docs/Models/Components/PaginatedRfpAttachments.md
@@ -5,7 +5,7 @@ Paginated list of RFP attachments.
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- |
-| `Paging` | [PagingJson](../../Models/Components/PagingJson.md) | :heavy_check_mark: | Represents pagination information for a collection of resources. |
-| `Data` | List<[RfpAttachmentJson](../../Models/Components/RfpAttachmentJson.md)> | :heavy_check_mark: | List of attachments added on an RFP. |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- |
+| `Paging` | [Paging](../../Models/Components/Paging.md) | :heavy_check_mark: | Represents pagination information for a collection of resources. |
+| `Data` | List<[RfpAttachment](../../Models/Components/RfpAttachment.md)> | :heavy_check_mark: | List of attachments added on an RFP. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/PaginatedRfpCustomField.md b/packages/csharp/docs/Models/Components/PaginatedRfpCustomField.md
index e8de8ae5..0adbf199 100644
--- a/packages/csharp/docs/Models/Components/PaginatedRfpCustomField.md
+++ b/packages/csharp/docs/Models/Components/PaginatedRfpCustomField.md
@@ -7,5 +7,5 @@ Paginated list of RFP custom fields associated to a RFP.
| Field | Type | Required | Description |
| ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- |
-| `Paging` | [PagingJson](../../Models/Components/PagingJson.md) | :heavy_minus_sign: | Represents pagination information for a collection of resources. |
-| `Data` | List<[RfpCustomFieldJson](../../Models/Components/RfpCustomFieldJson.md)> | :heavy_minus_sign: | List of RFP custom fields linked to an RFP. |
\ No newline at end of file
+| `Paging` | [Paging](../../Models/Components/Paging.md) | :heavy_minus_sign: | Represents pagination information for a collection of resources. |
+| `Data` | List<[CustomFieldAnswers](../../Models/Components/CustomFieldAnswers.md)> | :heavy_minus_sign: | List of RFP custom fields linked to an RFP. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/PaginatedRfpQuestions.md b/packages/csharp/docs/Models/Components/PaginatedRfpQuestions.md
index dbcab875..e543c93a 100644
--- a/packages/csharp/docs/Models/Components/PaginatedRfpQuestions.md
+++ b/packages/csharp/docs/Models/Components/PaginatedRfpQuestions.md
@@ -5,7 +5,7 @@ Paginated response containing questions associated to an RFP.
## Fields
-| Field | Type | Required | Description |
-| ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- |
-| `Paging` | [PagingJson](../../Models/Components/PagingJson.md) | :heavy_minus_sign: | Represents pagination information for a collection of resources. |
-| `Data` | List<[RfpQuestionJson](../../Models/Components/RfpQuestionJson.md)> | :heavy_minus_sign: | List of questions associated to an RFP. |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- |
+| `Paging` | [Paging](../../Models/Components/Paging.md) | :heavy_minus_sign: | Represents pagination information for a collection of resources. |
+| `Data` | List<[RfpQuestion](../../Models/Components/RfpQuestion.md)> | :heavy_minus_sign: | List of questions associated to an RFP. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/PaginatedRfpRecipientsHistory.md b/packages/csharp/docs/Models/Components/PaginatedRfpRecipientsHistory.md
index 275af084..f04c54c0 100644
--- a/packages/csharp/docs/Models/Components/PaginatedRfpRecipientsHistory.md
+++ b/packages/csharp/docs/Models/Components/PaginatedRfpRecipientsHistory.md
@@ -5,7 +5,7 @@ Paginated response containing logs of all the recipients that were copied on an
## Fields
-| Field | Type | Required | Description |
-| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
-| `Paging` | [PagingJson](../../Models/Components/PagingJson.md) | :heavy_check_mark: | Represents pagination information for a collection of resources. |
-| `Data` | List<[RfpRecipientLogEntryJson](../../Models/Components/RfpRecipientLogEntryJson.md)> | :heavy_check_mark: | List of RFP recipient logs. |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- |
+| `Paging` | [Paging](../../Models/Components/Paging.md) | :heavy_check_mark: | Represents pagination information for a collection of resources. |
+| `Data` | List<[RfpRecipientLogEntry](../../Models/Components/RfpRecipientLogEntry.md)> | :heavy_check_mark: | List of RFP recipient logs. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/PaginatedRfpSuppliers.md b/packages/csharp/docs/Models/Components/PaginatedRfpSuppliers.md
index 4a6aeb13..98ed6a26 100644
--- a/packages/csharp/docs/Models/Components/PaginatedRfpSuppliers.md
+++ b/packages/csharp/docs/Models/Components/PaginatedRfpSuppliers.md
@@ -5,7 +5,7 @@ Paginated response containing suppliers associated with an RFP.
## Fields
-| Field | Type | Required | Description |
-| ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- |
-| `Paging` | [PagingJson](../../Models/Components/PagingJson.md) | :heavy_check_mark: | Represents pagination information for a collection of resources. |
-| `Data` | List<[RfpSupplierJson](../../Models/Components/RfpSupplierJson.md)> | :heavy_check_mark: | List of RFP suppliers. |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- |
+| `Paging` | [Paging](../../Models/Components/Paging.md) | :heavy_check_mark: | Represents pagination information for a collection of resources. |
+| `Data` | List<[RfpSupplier](../../Models/Components/RfpSupplier.md)> | :heavy_check_mark: | List of RFP suppliers. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/PagingJson19.md b/packages/csharp/docs/Models/Components/PagingJson19.md
deleted file mode 100644
index 26c01289..00000000
--- a/packages/csharp/docs/Models/Components/PagingJson19.md
+++ /dev/null
@@ -1,14 +0,0 @@
-# PagingJson19
-
-Represents pagination information for a collection of resources.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ |
-| `NextToken` | *string* | :heavy_minus_sign: | The pagination token for the next page; if available. You can use this to determine if there is additional data to fetch | 3b2359a7-4583-40ed-8afd-67e5f15373d3 |
-| `CurrentToken` | *string* | :heavy_minus_sign: | The pagination token for the current page | 90c5f062-76ad-4ea4-aa53-00eb698d9262 |
-| `Limit` | *long* | :heavy_minus_sign: | The number of records to return on the page not to exceed 200 | 100 |
-| `TotalCount` | *long* | :heavy_minus_sign: | The total number of records available | 2 |
-| `Links` | [PaginationLinksJson](../../Models/Components/PaginationLinksJson.md) | :heavy_check_mark: | Represents pagination links for navigating between pages of data. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/PagingJson2.md b/packages/csharp/docs/Models/Components/PagingJson2.md
new file mode 100644
index 00000000..8d3bc1b8
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/PagingJson2.md
@@ -0,0 +1,14 @@
+# PagingJson2
+
+Represents pagination information for a collection of resources.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ |
+| `NextToken` | *string* | :heavy_minus_sign: | The pagination token for the next page; if available. You can use this to determine if there is additional data to fetch | 3b2359a7-4583-40ed-8afd-67e5f15373d3 |
+| `CurrentToken` | *string* | :heavy_minus_sign: | The pagination token for the current page | 90c5f062-76ad-4ea4-aa53-00eb698d9262 |
+| `Limit` | *long* | :heavy_minus_sign: | The number of records to return on the page not to exceed 200 | 100 |
+| `TotalCount` | *long* | :heavy_minus_sign: | The total number of records available | 2 |
+| `Links` | [PaginationLinksJson](../../Models/Components/PaginationLinksJson.md) | :heavy_check_mark: | Represents pagination links for navigating between pages of data. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/PagingNoTotalCountJson.md b/packages/csharp/docs/Models/Components/PagingNoTotalCountJson.md
new file mode 100644
index 00000000..d07bbb15
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/PagingNoTotalCountJson.md
@@ -0,0 +1,14 @@
+# PagingNoTotalCountJson
+
+Represents pagination information for a collection of resources.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ |
+| `PreviousToken` | *string* | :heavy_minus_sign: | The pagination token for the previous page, if one exists. You can use this token to navigate to the previous page of data. | 1a2b3c4d5e6f7g8h9i10j11k |
+| `NextToken` | *string* | :heavy_minus_sign: | The pagination token for the next page. If this value is present in the response, there is another page of data you can fetch. | 1a2b3c4d5e6f7g8h9i10j11k |
+| `CurrentToken` | *string* | :heavy_minus_sign: | The pagination token for the current page. | 1a2b3c4d5e6f7g8h9i10j11k |
+| `Limit` | *long* | :heavy_minus_sign: | The number of records to return on the page. Not to exceed 200. | 100 |
+| `Links` | [PaginationLinksJson](../../Models/Components/PaginationLinksJson.md) | :heavy_check_mark: | Represents pagination links for navigating between pages of data. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/PagingNoTotalCountJson2.md b/packages/csharp/docs/Models/Components/PagingNoTotalCountJson2.md
deleted file mode 100644
index 13d69dc4..00000000
--- a/packages/csharp/docs/Models/Components/PagingNoTotalCountJson2.md
+++ /dev/null
@@ -1,14 +0,0 @@
-# PagingNoTotalCountJson2
-
-Represents pagination information for a collection of resources.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ |
-| `PreviousToken` | *string* | :heavy_minus_sign: | The pagination token for the previous page, if one exists. You can use this token to navigate to the previous page of data. | 1a2b3c4d5e6f7g8h9i10j11k |
-| `NextToken` | *string* | :heavy_minus_sign: | The pagination token for the next page. If this value is present in the response, there is another page of data you can fetch. | 1a2b3c4d5e6f7g8h9i10j11k |
-| `CurrentToken` | *string* | :heavy_minus_sign: | The pagination token for the current page. | 1a2b3c4d5e6f7g8h9i10j11k |
-| `Limit` | *long* | :heavy_minus_sign: | The number of records to return on the page. Not to exceed 200. | 100 |
-| `Links` | [PaginationLinksJson](../../Models/Components/PaginationLinksJson.md) | :heavy_check_mark: | Represents pagination links for navigating between pages of data. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Passport.md b/packages/csharp/docs/Models/Components/Passport.md
new file mode 100644
index 00000000..41050c1c
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Passport.md
@@ -0,0 +1,12 @@
+# Passport
+
+This entity represents a contact's passport information.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Number` | *string* | :heavy_minus_sign: | The passport number of the contact.
Reading and writing of this field require the `event/contacts:read-sensitive` and `event/contacts:write-sensitive` scopes respectively. | 123456789 |
+| `Country` | *string* | :heavy_minus_sign: | The passport country of the contact. | United Kingdom |
+| `CountryCode` | *string* | :heavy_minus_sign: | The passport country code of the contact. | GB |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/PassportInput.md b/packages/csharp/docs/Models/Components/PassportInput.md
new file mode 100644
index 00000000..a7f0beed
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/PassportInput.md
@@ -0,0 +1,11 @@
+# PassportInput
+
+This entity represents a contact's passport information.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Number` | *string* | :heavy_minus_sign: | The passport number of the contact.
Reading and writing of this field require the `event/contacts:read-sensitive` and `event/contacts:write-sensitive` scopes respectively. | 123456789 |
+| `CountryCode` | *string* | :heavy_minus_sign: | The passport country code of the contact. | GB |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/PassportJson.md b/packages/csharp/docs/Models/Components/PassportJson.md
deleted file mode 100644
index f053841a..00000000
--- a/packages/csharp/docs/Models/Components/PassportJson.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# PassportJson
-
-This entity represents a contact's passport information.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Number` | *string* | :heavy_minus_sign: | The passport number of the contact.
Reading and writing of this field require the `event/contacts:read-sensitive` and `event/contacts:write-sensitive` scopes respectively. | 123456789 |
-| `Country` | *string* | :heavy_minus_sign: | The passport country of the contact. | United Kingdom |
-| `CountryCode` | *string* | :heavy_minus_sign: | The passport country code of the contact. | GB |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/PassportJsonInput.md b/packages/csharp/docs/Models/Components/PassportJsonInput.md
deleted file mode 100644
index 04cc6ffc..00000000
--- a/packages/csharp/docs/Models/Components/PassportJsonInput.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# PassportJsonInput
-
-This entity represents a contact's passport information.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Number` | *string* | :heavy_minus_sign: | The passport number of the contact.
Reading and writing of this field require the `event/contacts:read-sensitive` and `event/contacts:write-sensitive` scopes respectively. | 123456789 |
-| `CountryCode` | *string* | :heavy_minus_sign: | The passport country code of the contact. | GB |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/PaymentInfoJson.md b/packages/csharp/docs/Models/Components/PaymentInfoJson.md
index 7e9c2c4c..4838c4b9 100644
--- a/packages/csharp/docs/Models/Components/PaymentInfoJson.md
+++ b/packages/csharp/docs/Models/Components/PaymentInfoJson.md
@@ -9,6 +9,6 @@ Payment information.
| ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ |
| `PaymentType` | [PaymentTypesJson](../../Models/Components/PaymentTypesJson.md) | :heavy_minus_sign: | Payment type. | |
| `FullName` | *string* | :heavy_minus_sign: | Full name. | Gustav Schultz |
-| `Address` | [AddressJson2](../../Models/Components/AddressJson2.md) | :heavy_minus_sign: | Address details. Required to create/update a guest's reservation if the hotel/event requires an address in reservations. | |
+| `Address` | [AddressJson](../../Models/Components/AddressJson.md) | :heavy_minus_sign: | Address details. Required to create/update a guest's reservation if the hotel/event requires an address in reservations. | |
| `Phone` | *string* | :heavy_minus_sign: | Phone number. | (231)213-1222 |
| `Other` | [OtherPaymentJson](../../Models/Components/OtherPaymentJson.md) | :heavy_minus_sign: | Other payment details. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/PlannerJson2.md b/packages/csharp/docs/Models/Components/PlannerJson2.md
index 9e8ec960..4f269977 100644
--- a/packages/csharp/docs/Models/Components/PlannerJson2.md
+++ b/packages/csharp/docs/Models/Components/PlannerJson2.md
@@ -31,7 +31,7 @@ Represents the planner of an event.
| ~~`WorkAddress`~~ | [PlannerJson2WorkAddressAddress](../../Models/Components/PlannerJson2WorkAddressAddress.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible. | |
| ~~`WorkPhone`~~ | *string* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
Work phone number. | 555-555-5555 |
| ~~`WorkFax`~~ | *string* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
Work fax number. | 555-555-5555 |
-| ~~`CustomFields`~~ | List<[CustomFieldJson3](../../Models/Components/CustomFieldJson3.md)> | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
Collection of custom fields. | |
+| ~~`CustomFields`~~ | List<[CustomFieldJson2](../../Models/Components/CustomFieldJson2.md)> | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
Collection of custom fields. | |
| ~~`SourceId`~~ | *string* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
This is an 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 as part of the ID. | system-a-00000000-0000-0000-0000-000000000000 |
| ~~`MobilePhone`~~ | *string* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
Mobile phone number. | 555-555-5555 |
| ~~`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 this record was created. | 2023-12-31T15:00:00Z |
diff --git a/packages/csharp/docs/Models/Components/PolicyValueType.md b/packages/csharp/docs/Models/Components/PolicyValueType.md
new file mode 100644
index 00000000..169e5dfa
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/PolicyValueType.md
@@ -0,0 +1,24 @@
+# PolicyValueType
+
+Value type of the policy
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = PolicyValueType.SelectionList;
+```
+
+
+## Values
+
+| Name | Value |
+| ---------------- | ---------------- |
+| `SelectionList` | selection_list |
+| `Integer` | integer |
+| `Money` | money |
+| `Percent` | percent |
+| `MultiSelect` | multi_select |
+| `TextMultiLine` | text_multi_line |
+| `PercentOrMoney` | percent_or_money |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/PolicyValueTypeJson.md b/packages/csharp/docs/Models/Components/PolicyValueTypeJson.md
deleted file mode 100644
index 96ec822a..00000000
--- a/packages/csharp/docs/Models/Components/PolicyValueTypeJson.md
+++ /dev/null
@@ -1,24 +0,0 @@
-# PolicyValueTypeJson
-
-Value type of the policy
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = PolicyValueTypeJson.SelectionList;
-```
-
-
-## Values
-
-| Name | Value |
-| ---------------- | ---------------- |
-| `SelectionList` | selection_list |
-| `Integer` | integer |
-| `Money` | money |
-| `Percent` | percent |
-| `MultiSelect` | multi_select |
-| `TextMultiLine` | text_multi_line |
-| `PercentOrMoney` | percent_or_money |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ProgramItemLite.md b/packages/csharp/docs/Models/Components/ProgramItemLite.md
new file mode 100644
index 00000000..be1bdded
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ProgramItemLite.md
@@ -0,0 +1,10 @@
+# ProgramItemLite
+
+The unique identifier of a program item.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ----------------------------------------- | ----------------------------------------- | ----------------------------------------- | ----------------------------------------- | ----------------------------------------- |
+| `Id` | *string* | :heavy_check_mark: | The unique identifier for a program item. | 221984b2-9e3e-4c1c-8ef4-306b1b75fa3e |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ProgramItemLiteJson.md b/packages/csharp/docs/Models/Components/ProgramItemLiteJson.md
deleted file mode 100644
index 28cb13be..00000000
--- a/packages/csharp/docs/Models/Components/ProgramItemLiteJson.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# ProgramItemLiteJson
-
-The unique identifier of a program item.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ----------------------------------------- | ----------------------------------------- | ----------------------------------------- | ----------------------------------------- | ----------------------------------------- |
-| `Id` | *string* | :heavy_check_mark: | The unique identifier for a program item. | 221984b2-9e3e-4c1c-8ef4-306b1b75fa3e |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ProgramItemSpeakerPaginatedResponse.md b/packages/csharp/docs/Models/Components/ProgramItemSpeakerPaginatedResponse.md
index 5bf39547..8c3c50e4 100644
--- a/packages/csharp/docs/Models/Components/ProgramItemSpeakerPaginatedResponse.md
+++ b/packages/csharp/docs/Models/Components/ProgramItemSpeakerPaginatedResponse.md
@@ -7,5 +7,5 @@ The response from a request to get the list of program item speakers.
| Field | Type | Required | Description |
| ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- |
-| `Paging` | [PagingJson](../../Models/Components/PagingJson.md) | :heavy_check_mark: | Represents pagination information for a collection of resources. |
+| `Paging` | [Paging](../../Models/Components/Paging.md) | :heavy_check_mark: | Represents pagination information for a collection of resources. |
| `Data` | List<[SpeakerProgramItem](../../Models/Components/SpeakerProgramItem.md)> | :heavy_check_mark: | Collection of program item speakers. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Property.md b/packages/csharp/docs/Models/Components/Property.md
index f1b6e7fb..c71e3b7c 100644
--- a/packages/csharp/docs/Models/Components/Property.md
+++ b/packages/csharp/docs/Models/Components/Property.md
@@ -18,5 +18,5 @@ Details of the property
| `Code` | *string* | :heavy_minus_sign: | The property code for the property. | GH101 |
| `Deleted` | *bool* | :heavy_minus_sign: | True indicates that the property is deleted. | false |
| `CurrencyCode` | *string* | :heavy_minus_sign: | The ISO 4217 standard format currency code specified for the property. | USD |
-| `Address` | [AddressJson3](../../Models/Components/AddressJson3.md) | :heavy_minus_sign: | A physical address. | |
+| `Address` | [AddressJson1](../../Models/Components/AddressJson1.md) | :heavy_minus_sign: | A physical address. | |
| `ExternalCodes` | List<[PropertyExternalCodeJson](../../Models/Components/PropertyExternalCodeJson.md)> | :heavy_minus_sign: | Collection of external codes for a property. This includes GDS nd other codes used to identify a property in external systems. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/PropertyRoom.md b/packages/csharp/docs/Models/Components/PropertyRoom.md
index c9671793..ccab8a83 100644
--- a/packages/csharp/docs/Models/Components/PropertyRoom.md
+++ b/packages/csharp/docs/Models/Components/PropertyRoom.md
@@ -16,7 +16,7 @@ Property room details.
| `Code` | *string* | :heavy_minus_sign: | Room code of the property room. | std |
| `Property` | [PropertyRoomProperty](../../Models/Components/PropertyRoomProperty.md) | :heavy_minus_sign: | The property that the room belongs to. | |
| `Deleted` | *bool* | :heavy_minus_sign: | True indicates the property room is deleted. | false |
-| `BedTypeCode` | [RoomBedTypeJson1](../../Models/Components/RoomBedTypeJson1.md) | :heavy_minus_sign: | Code representing the bed type. | queen |
+| `BedTypeCode` | [RoomBedTypeJson](../../Models/Components/RoomBedTypeJson.md) | :heavy_minus_sign: | Code representing the bed type. | queen |
| `NumberOfBeds` | *long* | :heavy_minus_sign: | The number of beds in the room. | 2 |
| `Capacity` | *long* | :heavy_minus_sign: | Maximum capacity of people that can sleep in the room. | 6 |
| `Description` | *string* | :heavy_minus_sign: | A description of the room. | A standard room with two queen beds. |
diff --git a/packages/csharp/docs/Models/Components/ProposalDateJson.md b/packages/csharp/docs/Models/Components/ProposalDateJson.md
index 8ca8a7ec..d418d9f5 100644
--- a/packages/csharp/docs/Models/Components/ProposalDateJson.md
+++ b/packages/csharp/docs/Models/Components/ProposalDateJson.md
@@ -7,6 +7,6 @@ The proposal date.
| Field | Type | Required | Description | Example |
| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `DateType` | [DateTypeJson1](../../Models/Components/DateTypeJson1.md) | :heavy_minus_sign: | The date types used for the proposal, 'PREFERRED' have the highest priority. Values prefixed with 'ALTERNATE_' are decreasing in priority (e.g., ALTERNATE_1 has higher priority than 'ALTERNATE_2 and so on). | |
+| `DateType` | [DateTypeJson](../../Models/Components/DateTypeJson.md) | :heavy_minus_sign: | The date types used for the proposal, 'PREFERRED' have the highest priority. Values prefixed with 'ALTERNATE_' are decreasing in priority (e.g., ALTERNATE_1 has higher priority than 'ALTERNATE_2 and so on). | |
| `StartDate` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The start date of the event. | 2021-01-13 |
| `EndDate` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The end date of the event. | 2021-01-13 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ProposalRequest.md b/packages/csharp/docs/Models/Components/ProposalRequest.md
index bd5480d8..cd0922aa 100644
--- a/packages/csharp/docs/Models/Components/ProposalRequest.md
+++ b/packages/csharp/docs/Models/Components/ProposalRequest.md
@@ -15,7 +15,7 @@ Schema for proposal request.
| `StatusSummary` | [StatusSummaryJson](../../Models/Components/StatusSummaryJson.md) | :heavy_minus_sign: | Represents a summary of status associated with this proposal. | |
| `Introduction` | *string* | :heavy_minus_sign: | Introduction text for the proposal. | Let us design the day of your dreams at our property. |
| ~~`BillingContractualResponse`~~ | *string* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
Details about concessions or contractual requirements from the supplier. DEPRECATED - This field is deprecated. Only applied to proposal made from vendor marketplace, a sunset product. | All invoices must be paid in 30 days. |
-| `CurrencyCode` | [CurrencyJson1](../../Models/Components/CurrencyJson1.md) | :heavy_minus_sign: | The ISO 4217 standard format currency code used for RFPs. | |
+| `CurrencyCode` | [CurrencyJson2](../../Models/Components/CurrencyJson2.md) | :heavy_minus_sign: | The ISO 4217 standard format currency code used for RFPs. | |
| `CommissionableBid` | *bool* | :heavy_minus_sign: | True indicates this is a commissionable bid. | true |
| `CommissionRate` | *double* | :heavy_minus_sign: | The proposal's commission rate. | 10.12 |
| `Name` | *string* | :heavy_minus_sign: | Name of the proposal. | Proposal for Royal Bank of Spain. |
@@ -25,6 +25,6 @@ Schema for proposal request.
| ~~`CategoryItemsCost`~~ | [CategoryItemsCostJson](../../Models/Components/CategoryItemsCostJson.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
Category items cost. DEPRECATED - This field is deprecated. Only applied to proposals made by vendors, and the vendor marketplace is sunset. | |
| `AggregatedCost` | [AggregatedCostJson](../../Models/Components/AggregatedCostJson.md) | :heavy_minus_sign: | The aggregated cost | |
| `EstimatedCost` | [EstimatedCostJson](../../Models/Components/EstimatedCostJson.md) | :heavy_minus_sign: | The estimated cost | |
-| `Contacts` | List<[ContactJson1](../../Models/Components/ContactJson1.md)> | :heavy_minus_sign: | List of all contacts. | |
-| `PlannerContacts` | List<[ContactJson1](../../Models/Components/ContactJson1.md)> | :heavy_minus_sign: | List of all planner contacts. | |
+| `Contacts` | List<[ContactJson](../../Models/Components/ContactJson.md)> | :heavy_minus_sign: | List of all contacts. | |
+| `PlannerContacts` | List<[ContactJson](../../Models/Components/ContactJson.md)> | :heavy_minus_sign: | List of all planner contacts. | |
| `MeetingRoom` | [MeetingRoomJson](../../Models/Components/MeetingRoomJson.md) | :heavy_minus_sign: | The meeting room. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ProposalResponse.md b/packages/csharp/docs/Models/Components/ProposalResponse.md
index d0fe2caa..568d3580 100644
--- a/packages/csharp/docs/Models/Components/ProposalResponse.md
+++ b/packages/csharp/docs/Models/Components/ProposalResponse.md
@@ -19,7 +19,7 @@ Schema for proposal.
| `StatusSummary` | [StatusSummaryJson](../../Models/Components/StatusSummaryJson.md) | :heavy_minus_sign: | Represents a summary of status associated with this proposal. | |
| `Introduction` | *string* | :heavy_minus_sign: | Introduction text for the proposal. | Let us design the day of your dreams at our property. |
| ~~`BillingContractualResponse`~~ | *string* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
Details about concessions or contractual requirements from the supplier. DEPRECATED - This field is deprecated. Only applied to proposal made from vendor marketplace, a sunset product. | All invoices must be paid in 30 days. |
-| `CurrencyCode` | [CurrencyJson1](../../Models/Components/CurrencyJson1.md) | :heavy_minus_sign: | The ISO 4217 standard format currency code used for RFPs. | |
+| `CurrencyCode` | [CurrencyJson2](../../Models/Components/CurrencyJson2.md) | :heavy_minus_sign: | The ISO 4217 standard format currency code used for RFPs. | |
| `CommissionableBid` | *bool* | :heavy_minus_sign: | True indicates this is a commissionable bid. | true |
| `CommissionRate` | *double* | :heavy_minus_sign: | The proposal's commission rate. | 10.12 |
| `Name` | *string* | :heavy_minus_sign: | Name of the proposal. | Proposal for Royal Bank of Spain. |
@@ -29,8 +29,8 @@ Schema for proposal.
| ~~`CategoryItemsCost`~~ | [CategoryItemsCostJson](../../Models/Components/CategoryItemsCostJson.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
Category items cost. DEPRECATED - This field is deprecated. Only applied to proposals made by vendors, and the vendor marketplace is sunset. | |
| `AggregatedCost` | [AggregatedCostJson](../../Models/Components/AggregatedCostJson.md) | :heavy_minus_sign: | The aggregated cost | |
| `EstimatedCost` | [EstimatedCostJson](../../Models/Components/EstimatedCostJson.md) | :heavy_minus_sign: | The estimated cost | |
-| `Contacts` | List<[ContactJson1](../../Models/Components/ContactJson1.md)> | :heavy_minus_sign: | List of all contacts. | |
-| `PlannerContacts` | List<[ContactJson1](../../Models/Components/ContactJson1.md)> | :heavy_minus_sign: | List of all planner contacts. | |
+| `Contacts` | List<[ContactJson](../../Models/Components/ContactJson.md)> | :heavy_minus_sign: | List of all contacts. | |
+| `PlannerContacts` | List<[ContactJson](../../Models/Components/ContactJson.md)> | :heavy_minus_sign: | List of all planner contacts. | |
| `MeetingRoom` | [MeetingRoomJson](../../Models/Components/MeetingRoomJson.md) | :heavy_minus_sign: | The meeting room. | |
| `Transaction` | [TransactionJson](../../Models/Components/TransactionJson.md) | :heavy_minus_sign: | The latest transaction that took place on a given proposal | |
| `Id` | *string* | :heavy_check_mark: | The unique ID of the proposal. | cf5fd2cc-3d09-11ee-be56-0242ac120002 |
diff --git a/packages/csharp/docs/Models/Components/ProposalStatusType.md b/packages/csharp/docs/Models/Components/ProposalStatusType.md
new file mode 100644
index 00000000..966df2e4
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ProposalStatusType.md
@@ -0,0 +1,30 @@
+# ProposalStatusType
+
+The status of the proposal
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = ProposalStatusType.ParticipationRequested;
+```
+
+
+## Values
+
+| Name | Value |
+| ------------------------ | ------------------------ |
+| `ParticipationRequested` | participation_requested |
+| `New` | new |
+| `Active` | active |
+| `Submitted` | submitted |
+| `DeclinedParticipation` | declined_participation |
+| `Verified` | verified |
+| `Approved` | approved |
+| `AccountAccepted` | account_accepted |
+| `AccountRejected` | account_rejected |
+| `InternalRejected` | internal_rejected |
+| `RequestRenegotiation` | request_renegotiation |
+| `DeclineRenegotiation` | decline_renegotiation |
+| `Deleted` | deleted |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ProposalStatusTypeJson.md b/packages/csharp/docs/Models/Components/ProposalStatusTypeJson.md
deleted file mode 100644
index 3bb77706..00000000
--- a/packages/csharp/docs/Models/Components/ProposalStatusTypeJson.md
+++ /dev/null
@@ -1,30 +0,0 @@
-# ProposalStatusTypeJson
-
-The status of the proposal
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = ProposalStatusTypeJson.ParticipationRequested;
-```
-
-
-## Values
-
-| Name | Value |
-| ------------------------ | ------------------------ |
-| `ParticipationRequested` | participation_requested |
-| `New` | new |
-| `Active` | active |
-| `Submitted` | submitted |
-| `DeclinedParticipation` | declined_participation |
-| `Verified` | verified |
-| `Approved` | approved |
-| `AccountAccepted` | account_accepted |
-| `AccountRejected` | account_rejected |
-| `InternalRejected` | internal_rejected |
-| `RequestRenegotiation` | request_renegotiation |
-| `DeclineRenegotiation` | decline_renegotiation |
-| `Deleted` | deleted |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ProximityJson.md b/packages/csharp/docs/Models/Components/ProximityJson.md
index adeb8bd6..751d856b 100644
--- a/packages/csharp/docs/Models/Components/ProximityJson.md
+++ b/packages/csharp/docs/Models/Components/ProximityJson.md
@@ -5,7 +5,7 @@ Proximity of the event venue to the hotel.
## Fields
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- |
-| `Distance` | [DistanceJson1](../../Models/Components/DistanceJson1.md) | :heavy_minus_sign: | Distance information. | |
-| `MapMessage` | *string* | :heavy_minus_sign: | Message shown on map. | Your hotel is located here. |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- |
+| `Distance` | [DistanceJson](../../Models/Components/DistanceJson.md) | :heavy_minus_sign: | Distance information. | |
+| `MapMessage` | *string* | :heavy_minus_sign: | Message shown on map. | Your hotel is located here. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Question.md b/packages/csharp/docs/Models/Components/Question.md
index 180da1cb..498d232a 100644
--- a/packages/csharp/docs/Models/Components/Question.md
+++ b/packages/csharp/docs/Models/Components/Question.md
@@ -14,7 +14,7 @@ A question, defined by the program, for the supplier to answer as part of their
| `Id` | *string* | :heavy_minus_sign: | The unique ID of the question. | 76c461cb-77f6-40b3-acc8-db44452f11c4 |
| `Text` | *string* | :heavy_minus_sign: | The text of the question. | What type of food is served in the hotel restaurant? |
| `Required` | *bool* | :heavy_minus_sign: | Is this question required by default? | true |
-| `ResponseType` | [QuestionResponseTypeJson](../../Models/Components/QuestionResponseTypeJson.md) | :heavy_minus_sign: | Code representing the type of response supported. Single represents a simple single value response, and choice means the user will be given a set of options for selection. | choice |
-| `ResponseDataType` | [QuestionResponseDataTypeJson](../../Models/Components/QuestionResponseDataTypeJson.md) | :heavy_minus_sign: | Code representing the expected data type of the question response. | text |
-| `ResponseFormat` | [QuestionResponseFormatJson](../../Models/Components/QuestionResponseFormatJson.md) | :heavy_minus_sign: | Code representing the format the text of the response will be in. | proper_case |
+| `ResponseType` | [QuestionResponseType](../../Models/Components/QuestionResponseType.md) | :heavy_minus_sign: | Code representing the type of response supported. Single represents a simple single value response, and choice means the user will be given a set of options for selection. | choice |
+| `ResponseDataType` | [QuestionResponseDataType](../../Models/Components/QuestionResponseDataType.md) | :heavy_minus_sign: | Code representing the expected data type of the question response. | text |
+| `ResponseFormat` | [QuestionResponseFormat](../../Models/Components/QuestionResponseFormat.md) | :heavy_minus_sign: | Code representing the format the text of the response will be in. | proper_case |
| `ResponseChoices` | List<*string*> | :heavy_minus_sign: | A list of options for the question. This only applies when responseType is 'choice' | [
"Mexican",
"American",
"French",
"Other"
] |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/QuestionClassificationType.md b/packages/csharp/docs/Models/Components/QuestionClassificationType.md
new file mode 100644
index 00000000..adca666a
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/QuestionClassificationType.md
@@ -0,0 +1,20 @@
+# QuestionClassificationType
+
+Indicates the types of RFP that can be assigned this custom question. `MEETING_ROOM`: Meeting room type RFPs can be assigned this custom question. `GUEST_ROOM`: Guest room type RFPs can be assigned this custom question. `ALL_RFPS`: All RFPs can be assigned this custom question.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = QuestionClassificationType.MeetingRoom;
+```
+
+
+## Values
+
+| Name | Value |
+| ------------- | ------------- |
+| `MeetingRoom` | MEETING_ROOM |
+| `GuestRoom` | GUEST_ROOM |
+| `AllRfps` | ALL_RFPS |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/QuestionClassificationTypeJson.md b/packages/csharp/docs/Models/Components/QuestionClassificationTypeJson.md
deleted file mode 100644
index 9e71a54d..00000000
--- a/packages/csharp/docs/Models/Components/QuestionClassificationTypeJson.md
+++ /dev/null
@@ -1,20 +0,0 @@
-# QuestionClassificationTypeJson
-
-Indicates the types of RFP that can be assigned this custom question. `MEETING_ROOM`: Meeting room type RFPs can be assigned this custom question. `GUEST_ROOM`: Guest room type RFPs can be assigned this custom question. `ALL_RFPS`: All RFPs can be assigned this custom question.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = QuestionClassificationTypeJson.MeetingRoom;
-```
-
-
-## Values
-
-| Name | Value |
-| ------------- | ------------- |
-| `MeetingRoom` | MEETING_ROOM |
-| `GuestRoom` | GUEST_ROOM |
-| `AllRfps` | ALL_RFPS |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/QuestionJson.md b/packages/csharp/docs/Models/Components/QuestionJson.md
new file mode 100644
index 00000000..d0a0ceb9
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/QuestionJson.md
@@ -0,0 +1,14 @@
+# QuestionJson
+
+Question details
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| -------------------------------------- | -------------------------------------- | -------------------------------------- | -------------------------------------- | -------------------------------------- |
+| `Id` | *string* | :heavy_check_mark: | The question ID. | 2385098a-ab4e-4e06-b3b7-487cad288587 |
+| `Text` | *string* | :heavy_minus_sign: | The question text. | Sample question? |
+| `Status` | *string* | :heavy_minus_sign: | The status of the question. | approved |
+| `Anonymous` | *bool* | :heavy_minus_sign: | Whether question is asked anonymously. | true |
+| `Answer` | *string* | :heavy_minus_sign: | The answer text. | Sample answer. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/QuestionJson1.md b/packages/csharp/docs/Models/Components/QuestionJson1.md
index 7e436fd5..2f9e6248 100644
--- a/packages/csharp/docs/Models/Components/QuestionJson1.md
+++ b/packages/csharp/docs/Models/Components/QuestionJson1.md
@@ -1,14 +1,31 @@
# QuestionJson1
-Question details
+A survey question.
## Fields
-| Field | Type | Required | Description | Example |
-| -------------------------------------- | -------------------------------------- | -------------------------------------- | -------------------------------------- | -------------------------------------- |
-| `Id` | *string* | :heavy_check_mark: | The question ID. | 2385098a-ab4e-4e06-b3b7-487cad288587 |
-| `Text` | *string* | :heavy_minus_sign: | The question text. | Sample question? |
-| `Status` | *string* | :heavy_minus_sign: | The status of the question. | approved |
-| `Anonymous` | *bool* | :heavy_minus_sign: | Whether question is asked anonymously. | true |
-| `Answer` | *string* | :heavy_minus_sign: | The answer text. | Sample answer. |
\ 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: | The ISO 8601 zoned date time when this record was created. | 2017-01-02T02:00:00Z |
+| `CreatedBy` | *string* | :heavy_minus_sign: | The identifier of the user that created this record. | hporter |
+| `LastModified` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when this record was updated. | 2019-02-12T03:00:00Z |
+| `LastModifiedBy` | *string* | :heavy_minus_sign: | The identifier of the user that last updated this record. | hporter |
+| `Id` | *string* | :heavy_minus_sign: | Text field ID. | |
+| `Text` | *string* | :heavy_minus_sign: | text Value of the Field | Field value |
+| `ShortText` | *string* | :heavy_minus_sign: | Reporting value of the Category, Its like a custom abbreviation | Category 1 Reporting value |
+| `HtmlText` | *string* | :heavy_minus_sign: | Html of the question | Question Html |
+| `Code` | *string* | :heavy_minus_sign: | Question Code | 4l6x |
+| `Type` | [QuestionTypeJson1](../../Models/Components/QuestionTypeJson1.md) | :heavy_minus_sign: | Question Type. | SingleChoice |
+| `Choices` | List<[ChoiceJson1](../../Models/Components/ChoiceJson1.md)> | :heavy_minus_sign: | List of choices for the question. | |
+| `Categories` | List<[CategoryJson1](../../Models/Components/CategoryJson1.md)> | :heavy_minus_sign: | List of categories for the question. | |
+| `SubCategories` | List<[TextFieldJson](../../Models/Components/TextFieldJson.md)> | :heavy_minus_sign: | List of sub categories for matrix side-by-side questions | |
+| `NotApplicableAnswer` | [AdditionalChoiceJson](../../Models/Components/AdditionalChoiceJson.md) | :heavy_minus_sign: | Contains text of additional choice i.e N/A choice or otherAnswer choice | |
+| `OtherAnswer` | [AdditionalChoiceJson](../../Models/Components/AdditionalChoiceJson.md) | :heavy_minus_sign: | Contains text of additional choice i.e N/A choice or otherAnswer choice | |
+| `Comments` | *string* | :heavy_minus_sign: | Text Value of Comments Input box placeholder | Comments Text |
+| `Required` | *bool* | :heavy_minus_sign: | Is this a mandatory question | true |
+| `Fields` | List<[FieldJson](../../Models/Components/FieldJson.md)> | :heavy_minus_sign: | List of fields for form/matrix questions | |
+| `MaxScore` | *double* | :heavy_minus_sign: | Max possible score | 20 |
+| `TotalSum` | *long* | :heavy_minus_sign: | Total configured sum of all choices for number allocation question | 45 |
+| `Survey` | [UuidJson](../../Models/Components/UuidJson.md) | :heavy_minus_sign: | The reference to the related entity. Contains only the ID of the related entity. | |
+| `Chapter` | [UuidJson](../../Models/Components/UuidJson.md) | :heavy_minus_sign: | The reference to the related entity. Contains only the ID of the related entity. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/QuestionJson2.md b/packages/csharp/docs/Models/Components/QuestionJson2.md
index 196140a1..b415fd8b 100644
--- a/packages/csharp/docs/Models/Components/QuestionJson2.md
+++ b/packages/csharp/docs/Models/Components/QuestionJson2.md
@@ -1,31 +1,12 @@
# QuestionJson2
-A survey question.
+The question that was answered.
## 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: | The ISO 8601 zoned date time when this record was created. | 2017-01-02T02:00:00Z |
-| `CreatedBy` | *string* | :heavy_minus_sign: | The identifier of the user that created this record. | hporter |
-| `LastModified` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when this record was updated. | 2019-02-12T03:00:00Z |
-| `LastModifiedBy` | *string* | :heavy_minus_sign: | The identifier of the user that last updated this record. | hporter |
-| `Id` | *string* | :heavy_minus_sign: | Text field ID. | |
-| `Text` | *string* | :heavy_minus_sign: | text Value of the Field | Field value |
-| `ShortText` | *string* | :heavy_minus_sign: | Reporting value of the Category, Its like a custom abbreviation | Category 1 Reporting value |
-| `HtmlText` | *string* | :heavy_minus_sign: | Html of the question | Question Html |
-| `Code` | *string* | :heavy_minus_sign: | Question Code | 4l6x |
-| `Type` | [QuestionTypeJson2](../../Models/Components/QuestionTypeJson2.md) | :heavy_minus_sign: | Question Type. | SingleChoice |
-| `Choices` | List<[ChoiceJson2](../../Models/Components/ChoiceJson2.md)> | :heavy_minus_sign: | List of choices for the question. | |
-| `Categories` | List<[CategoryJson2](../../Models/Components/CategoryJson2.md)> | :heavy_minus_sign: | List of categories for the question. | |
-| `SubCategories` | List<[TextFieldJson1](../../Models/Components/TextFieldJson1.md)> | :heavy_minus_sign: | List of sub categories for matrix side-by-side questions | |
-| `NotApplicableAnswer` | [AdditionalChoiceJson1](../../Models/Components/AdditionalChoiceJson1.md) | :heavy_minus_sign: | Contains text of additional choice i.e N/A choice or otherAnswer choice | |
-| `OtherAnswer` | [AdditionalChoiceJson1](../../Models/Components/AdditionalChoiceJson1.md) | :heavy_minus_sign: | Contains text of additional choice i.e N/A choice or otherAnswer choice | |
-| `Comments` | *string* | :heavy_minus_sign: | Text Value of Comments Input box placeholder | Comments Text |
-| `Required` | *bool* | :heavy_minus_sign: | Is this a mandatory question | true |
-| `Fields` | List<[FieldJson2](../../Models/Components/FieldJson2.md)> | :heavy_minus_sign: | List of fields for form/matrix questions | |
-| `MaxScore` | *double* | :heavy_minus_sign: | Max possible score | 20 |
-| `TotalSum` | *long* | :heavy_minus_sign: | Total configured sum of all choices for number allocation question | 45 |
-| `Survey` | [UuidJson](../../Models/Components/UuidJson.md) | :heavy_minus_sign: | The reference to the related entity. Contains only the ID of the related entity. | |
-| `Chapter` | [UuidJson](../../Models/Components/UuidJson.md) | :heavy_minus_sign: | The reference to the related entity. Contains only the ID of the related entity. | |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| -------------------------------------- | -------------------------------------- | -------------------------------------- | -------------------------------------- | -------------------------------------- |
+| `Id` | *string* | :heavy_minus_sign: | The unique identifier of the question. | 861b51ec-aa7e-475f-b38d-4c8e35c47d63 |
+| `Text` | *string* | :heavy_minus_sign: | Question text. | How would you rate this session? |
+| `Code` | *string* | :heavy_minus_sign: | Question code. | CODE_A |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/QuestionJson3.md b/packages/csharp/docs/Models/Components/QuestionJson3.md
deleted file mode 100644
index a3ad8732..00000000
--- a/packages/csharp/docs/Models/Components/QuestionJson3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# QuestionJson3
-
-The question that was answered.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| -------------------------------------- | -------------------------------------- | -------------------------------------- | -------------------------------------- | -------------------------------------- |
-| `Id` | *string* | :heavy_minus_sign: | The unique identifier of the question. | 861b51ec-aa7e-475f-b38d-4c8e35c47d63 |
-| `Text` | *string* | :heavy_minus_sign: | Question text. | How would you rate this session? |
-| `Code` | *string* | :heavy_minus_sign: | Question code. | CODE_A |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/QuestionPaginatedResponse.md b/packages/csharp/docs/Models/Components/QuestionPaginatedResponse.md
index 9e0cd5ee..650510d5 100644
--- a/packages/csharp/docs/Models/Components/QuestionPaginatedResponse.md
+++ b/packages/csharp/docs/Models/Components/QuestionPaginatedResponse.md
@@ -7,5 +7,5 @@ A paginated list of Questions.
| Field | Type | Required | Description |
| ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- |
-| `Paging` | [PagingJson](../../Models/Components/PagingJson.md) | :heavy_minus_sign: | Represents pagination information for a collection of resources. |
+| `Paging` | [Paging](../../Models/Components/Paging.md) | :heavy_minus_sign: | Represents pagination information for a collection of resources. |
| `Data` | List<[Question](../../Models/Components/Question.md)> | :heavy_minus_sign: | Collection of Questions. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/QuestionResponseDataType.md b/packages/csharp/docs/Models/Components/QuestionResponseDataType.md
new file mode 100644
index 00000000..83c6d664
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/QuestionResponseDataType.md
@@ -0,0 +1,24 @@
+# QuestionResponseDataType
+
+Code representing the expected data type of the question response.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = QuestionResponseDataType.Text;
+```
+
+
+## Values
+
+| Name | Value |
+| ---------- | ---------- |
+| `Text` | text |
+| `Date` | date |
+| `DateTime` | date_time |
+| `Time` | time |
+| `Number` | number |
+| `Email` | email |
+| `Boolean` | boolean |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/QuestionResponseDataTypeJson.md b/packages/csharp/docs/Models/Components/QuestionResponseDataTypeJson.md
deleted file mode 100644
index fb768ebc..00000000
--- a/packages/csharp/docs/Models/Components/QuestionResponseDataTypeJson.md
+++ /dev/null
@@ -1,24 +0,0 @@
-# QuestionResponseDataTypeJson
-
-Code representing the expected data type of the question response.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = QuestionResponseDataTypeJson.Text;
-```
-
-
-## Values
-
-| Name | Value |
-| ---------- | ---------- |
-| `Text` | text |
-| `Date` | date |
-| `DateTime` | date_time |
-| `Time` | time |
-| `Number` | number |
-| `Email` | email |
-| `Boolean` | boolean |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/QuestionResponseFormat.md b/packages/csharp/docs/Models/Components/QuestionResponseFormat.md
new file mode 100644
index 00000000..414b0858
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/QuestionResponseFormat.md
@@ -0,0 +1,20 @@
+# QuestionResponseFormat
+
+Code representing the format the text of the response will be in.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = QuestionResponseFormat.LowerCase;
+```
+
+
+## Values
+
+| Name | Value |
+| ------------ | ------------ |
+| `LowerCase` | lower_case |
+| `ProperCase` | proper_case |
+| `UpperCase` | upper_case |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/QuestionResponseFormatJson.md b/packages/csharp/docs/Models/Components/QuestionResponseFormatJson.md
deleted file mode 100644
index 77c74650..00000000
--- a/packages/csharp/docs/Models/Components/QuestionResponseFormatJson.md
+++ /dev/null
@@ -1,20 +0,0 @@
-# QuestionResponseFormatJson
-
-Code representing the format the text of the response will be in.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = QuestionResponseFormatJson.LowerCase;
-```
-
-
-## Values
-
-| Name | Value |
-| ------------ | ------------ |
-| `LowerCase` | lower_case |
-| `ProperCase` | proper_case |
-| `UpperCase` | upper_case |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/QuestionResponseJson.md b/packages/csharp/docs/Models/Components/QuestionResponseJson.md
index 3fa91458..d8fb7fb3 100644
--- a/packages/csharp/docs/Models/Components/QuestionResponseJson.md
+++ b/packages/csharp/docs/Models/Components/QuestionResponseJson.md
@@ -7,5 +7,5 @@ A Question response.
| Field | Type | Required | Description |
| ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- |
-| `Question` | [QuestionJson3](../../Models/Components/QuestionJson3.md) | :heavy_minus_sign: | The question that was answered. |
+| `Question` | [QuestionJson2](../../Models/Components/QuestionJson2.md) | :heavy_minus_sign: | The question that was answered. |
| `Answers` | List<[AnswerJson1](../../Models/Components/AnswerJson1.md)> | :heavy_minus_sign: | List of answers. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/QuestionResponseType.md b/packages/csharp/docs/Models/Components/QuestionResponseType.md
new file mode 100644
index 00000000..a0813ec2
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/QuestionResponseType.md
@@ -0,0 +1,19 @@
+# QuestionResponseType
+
+Code representing the type of response supported. Single represents a simple single value response, and choice means the user will be given a set of options for selection.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = QuestionResponseType.Single;
+```
+
+
+## Values
+
+| Name | Value |
+| -------- | -------- |
+| `Single` | single |
+| `Choice` | choice |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/QuestionResponseTypeJson.md b/packages/csharp/docs/Models/Components/QuestionResponseTypeJson.md
deleted file mode 100644
index 4f645597..00000000
--- a/packages/csharp/docs/Models/Components/QuestionResponseTypeJson.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# QuestionResponseTypeJson
-
-Code representing the type of response supported. Single represents a simple single value response, and choice means the user will be given a set of options for selection.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = QuestionResponseTypeJson.Single;
-```
-
-
-## Values
-
-| Name | Value |
-| -------- | -------- |
-| `Single` | single |
-| `Choice` | choice |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/QuestionSection.md b/packages/csharp/docs/Models/Components/QuestionSection.md
new file mode 100644
index 00000000..810a1568
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/QuestionSection.md
@@ -0,0 +1,19 @@
+# QuestionSection
+
+Code representing the section where the question belongs. Currently, program_client (client specific) and program_g_and_m (group and meeting) are supported.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = QuestionSection.ProgramClient;
+```
+
+
+## Values
+
+| Name | Value |
+| --------------- | --------------- |
+| `ProgramClient` | program_client |
+| `ProgramGAndM` | program_g_and_m |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/QuestionSectionJson.md b/packages/csharp/docs/Models/Components/QuestionSectionJson.md
deleted file mode 100644
index 8a005fa8..00000000
--- a/packages/csharp/docs/Models/Components/QuestionSectionJson.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# QuestionSectionJson
-
-Code representing the section where the question belongs. Currently, program_client (client specific) and program_g_and_m (group and meeting) are supported.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = QuestionSectionJson.ProgramClient;
-```
-
-
-## Values
-
-| Name | Value |
-| --------------- | --------------- |
-| `ProgramClient` | program_client |
-| `ProgramGAndM` | program_g_and_m |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/QuestionType.md b/packages/csharp/docs/Models/Components/QuestionType.md
new file mode 100644
index 00000000..3828b22d
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/QuestionType.md
@@ -0,0 +1,39 @@
+# QuestionType
+
+The type of question. See [this article](https://support.cvent.com/s/communityarticle/Survey-Adding-Questions) for details on each enum.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = QuestionType.CommentBox;
+```
+
+
+## Values
+
+| Name | Value |
+| ------------------------- | ------------------------- |
+| `CommentBox` | CommentBox |
+| `DateTime` | DateTime |
+| `FileUpload` | FileUpload |
+| `Form` | Form |
+| `LargeChoices` | LargeChoices |
+| `MatrixMultiChoice` | MatrixMultiChoice |
+| `MatrixRating` | MatrixRating |
+| `MatrixSideBySide` | MatrixSideBySide |
+| `MatrixSingleChoice` | MatrixSingleChoice |
+| `MatrixSpreadSheet` | MatrixSpreadSheet |
+| `MultiChoice` | MultiChoice |
+| `NetPromoter` | NetPromoter |
+| `Number` | Number |
+| `NumberAllocation` | NumberAllocation |
+| `OpenEndedDateTime` | OpenEndedDateTime |
+| `OpenEndedNumeric` | OpenEndedNumeric |
+| `OpenEndedTextCommentBox` | OpenEndedTextCommentBox |
+| `OpenEndedTextOneLine` | OpenEndedTextOneLine |
+| `RankOrder` | RankOrder |
+| `Rating` | Rating |
+| `SingleChoice` | SingleChoice |
+| `Text` | Text |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/QuestionTypeJson.md b/packages/csharp/docs/Models/Components/QuestionTypeJson.md
index cabd8414..20fa17c7 100644
--- a/packages/csharp/docs/Models/Components/QuestionTypeJson.md
+++ b/packages/csharp/docs/Models/Components/QuestionTypeJson.md
@@ -1,39 +1,36 @@
# QuestionTypeJson
-The type of question. See [this article](https://support.cvent.com/s/communityarticle/Survey-Adding-Questions) for details on each enum.
+Denotes the type of data collected by a question.
## Example Usage
```csharp
using Cvent.SDK.Models.Components;
-var value = QuestionTypeJson.CommentBox;
+var value = QuestionTypeJson.AutoIncrement;
```
## Values
-| Name | Value |
-| ------------------------- | ------------------------- |
-| `CommentBox` | CommentBox |
-| `DateTime` | DateTime |
-| `FileUpload` | FileUpload |
-| `Form` | Form |
-| `LargeChoices` | LargeChoices |
-| `MatrixMultiChoice` | MatrixMultiChoice |
-| `MatrixRating` | MatrixRating |
-| `MatrixSideBySide` | MatrixSideBySide |
-| `MatrixSingleChoice` | MatrixSingleChoice |
-| `MatrixSpreadSheet` | MatrixSpreadSheet |
-| `MultiChoice` | MultiChoice |
-| `NetPromoter` | NetPromoter |
-| `Number` | Number |
-| `NumberAllocation` | NumberAllocation |
-| `OpenEndedDateTime` | OpenEndedDateTime |
-| `OpenEndedNumeric` | OpenEndedNumeric |
-| `OpenEndedTextCommentBox` | OpenEndedTextCommentBox |
-| `OpenEndedTextOneLine` | OpenEndedTextOneLine |
-| `RankOrder` | RankOrder |
-| `Rating` | Rating |
-| `SingleChoice` | SingleChoice |
-| `Text` | Text |
\ No newline at end of file
+| Name | Value |
+| -------------------------- | -------------------------- |
+| `AutoIncrement` | AutoIncrement |
+| `BudgetEstimates` | BudgetEstimates |
+| `ConsentQuestion` | ConsentQuestion |
+| `Country` | Country |
+| `Currency` | Currency |
+| `Decimal` | Decimal |
+| `Date` | Date |
+| `DateTime` | DateTime |
+| `Email` | Email |
+| `FileUpload` | FileUpload |
+| `FreeText` | FreeText |
+| `General` | General |
+| `Number` | Number |
+| `MeetingRoomRequirements` | MeetingRoomRequirements |
+| `MultiSelect` | MultiSelect |
+| `SingleSelect` | SingleSelect |
+| `SleepingRoomRequirements` | SleepingRoomRequirements |
+| `USPhoneNumber` | USPhoneNumber |
+| `Unknown` | Unknown |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/QuestionTypeJson1.md b/packages/csharp/docs/Models/Components/QuestionTypeJson1.md
index 81e52293..b121a4ca 100644
--- a/packages/csharp/docs/Models/Components/QuestionTypeJson1.md
+++ b/packages/csharp/docs/Models/Components/QuestionTypeJson1.md
@@ -1,36 +1,35 @@
# QuestionTypeJson1
-Denotes the type of data collected by a question.
+Question Type.
## Example Usage
```csharp
using Cvent.SDK.Models.Components;
-var value = QuestionTypeJson1.AutoIncrement;
+var value = QuestionTypeJson1.SingleChoice;
```
## Values
-| Name | Value |
-| -------------------------- | -------------------------- |
-| `AutoIncrement` | AutoIncrement |
-| `BudgetEstimates` | BudgetEstimates |
-| `ConsentQuestion` | ConsentQuestion |
-| `Country` | Country |
-| `Currency` | Currency |
-| `Decimal` | Decimal |
-| `Date` | Date |
-| `DateTime` | DateTime |
-| `Email` | Email |
-| `FileUpload` | FileUpload |
-| `FreeText` | FreeText |
-| `General` | General |
-| `Number` | Number |
-| `MeetingRoomRequirements` | MeetingRoomRequirements |
-| `MultiSelect` | MultiSelect |
-| `SingleSelect` | SingleSelect |
-| `SleepingRoomRequirements` | SleepingRoomRequirements |
-| `USPhoneNumber` | USPhoneNumber |
-| `Unknown` | Unknown |
\ No newline at end of file
+| Name | Value |
+| -------------------- | -------------------- |
+| `SingleChoice` | SingleChoice |
+| `MultiChoice` | MultiChoice |
+| `MatrixSingleChoice` | MatrixSingleChoice |
+| `MatrixMultiChoice` | MatrixMultiChoice |
+| `MatrixSideBySide` | MatrixSideBySide |
+| `MatrixSpreadSheet` | MatrixSpreadSheet |
+| `DateTime` | DateTime |
+| `Number` | Number |
+| `Text` | Text |
+| `CommentBox` | CommentBox |
+| `Form` | Form |
+| `RankOrder` | RankOrder |
+| `FileUpload` | FileUpload |
+| `NetPromoter` | NetPromoter |
+| `Rating` | Rating |
+| `MatrixRating` | MatrixRating |
+| `NumberAllocation` | NumberAllocation |
+| `LargeChoices` | LargeChoices |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/QuestionTypeJson2.md b/packages/csharp/docs/Models/Components/QuestionTypeJson2.md
index 59b2e025..645427a8 100644
--- a/packages/csharp/docs/Models/Components/QuestionTypeJson2.md
+++ b/packages/csharp/docs/Models/Components/QuestionTypeJson2.md
@@ -1,6 +1,6 @@
# QuestionTypeJson2
-Question Type.
+This object represents the type of a question
## Example Usage
@@ -13,23 +13,14 @@ var value = QuestionTypeJson2.SingleChoice;
## Values
-| Name | Value |
-| -------------------- | -------------------- |
-| `SingleChoice` | SingleChoice |
-| `MultiChoice` | MultiChoice |
-| `MatrixSingleChoice` | MatrixSingleChoice |
-| `MatrixMultiChoice` | MatrixMultiChoice |
-| `MatrixSideBySide` | MatrixSideBySide |
-| `MatrixSpreadSheet` | MatrixSpreadSheet |
-| `DateTime` | DateTime |
-| `Number` | Number |
-| `Text` | Text |
-| `CommentBox` | CommentBox |
-| `Form` | Form |
-| `RankOrder` | RankOrder |
-| `FileUpload` | FileUpload |
-| `NetPromoter` | NetPromoter |
-| `Rating` | Rating |
-| `MatrixRating` | MatrixRating |
-| `NumberAllocation` | NumberAllocation |
-| `LargeChoices` | LargeChoices |
\ No newline at end of file
+| Name | Value |
+| ------------------------- | ------------------------- |
+| `SingleChoice` | SingleChoice |
+| `MultiChoice` | MultiChoice |
+| `OpenEndedDateTime` | OpenEndedDateTime |
+| `OpenEndedTextOneLine` | OpenEndedTextOneLine |
+| `OpenEndedTextCommentBox` | OpenEndedTextCommentBox |
+| `OpenEndedNumeric` | OpenEndedNumeric |
+| `FileUpload` | FileUpload |
+| `MatrixSinglePerRow` | MatrixSinglePerRow |
+| `MatrixMultiPerRow` | MatrixMultiPerRow |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/QuestionTypeJson3.md b/packages/csharp/docs/Models/Components/QuestionTypeJson3.md
deleted file mode 100644
index 29e0b55f..00000000
--- a/packages/csharp/docs/Models/Components/QuestionTypeJson3.md
+++ /dev/null
@@ -1,26 +0,0 @@
-# QuestionTypeJson3
-
-This object represents the type of a question
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = QuestionTypeJson3.SingleChoice;
-```
-
-
-## Values
-
-| Name | Value |
-| ------------------------- | ------------------------- |
-| `SingleChoice` | SingleChoice |
-| `MultiChoice` | MultiChoice |
-| `OpenEndedDateTime` | OpenEndedDateTime |
-| `OpenEndedTextOneLine` | OpenEndedTextOneLine |
-| `OpenEndedTextCommentBox` | OpenEndedTextCommentBox |
-| `OpenEndedNumeric` | OpenEndedNumeric |
-| `FileUpload` | FileUpload |
-| `MatrixSinglePerRow` | MatrixSinglePerRow |
-| `MatrixMultiPerRow` | MatrixMultiPerRow |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/QuestionWithProgramIdJson.md b/packages/csharp/docs/Models/Components/QuestionWithProgramIdJson.md
deleted file mode 100644
index d4c0bc93..00000000
--- a/packages/csharp/docs/Models/Components/QuestionWithProgramIdJson.md
+++ /dev/null
@@ -1,21 +0,0 @@
-# QuestionWithProgramIdJson
-
-A question, defined by the program, for the supplier to answer as part of their proposal.
-
-
-## 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: | The ISO 8601 zoned date time when this record was created. | 2017-01-02T02:00:00Z |
-| `CreatedBy` | *string* | :heavy_minus_sign: | The identifier of the user that created this record. | hporter |
-| `LastModified` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when this record was updated. | 2019-02-12T03:00:00Z |
-| `LastModifiedBy` | *string* | :heavy_minus_sign: | The identifier of the user that last updated this record. | hporter |
-| `TravelProgram` | [QuestionWithProgramIdJsonTravelProgram](../../Models/Components/QuestionWithProgramIdJsonTravelProgram.md) | :heavy_minus_sign: | Travel program that the question belongs to. | |
-| `Id` | *string* | :heavy_minus_sign: | The unique ID of the question. | 76c461cb-77f6-40b3-acc8-db44452f11c4 |
-| `Text` | *string* | :heavy_minus_sign: | The text of the question. | What type of food is served in the hotel restaurant? |
-| `Required` | *bool* | :heavy_minus_sign: | Is this question required by default? | true |
-| `ResponseType` | [QuestionResponseTypeJson](../../Models/Components/QuestionResponseTypeJson.md) | :heavy_minus_sign: | Code representing the type of response supported. Single represents a simple single value response, and choice means the user will be given a set of options for selection. | choice |
-| `ResponseDataType` | [QuestionResponseDataTypeJson](../../Models/Components/QuestionResponseDataTypeJson.md) | :heavy_minus_sign: | Code representing the expected data type of the question response. | text |
-| `ResponseFormat` | [QuestionResponseFormatJson](../../Models/Components/QuestionResponseFormatJson.md) | :heavy_minus_sign: | Code representing the format the text of the response will be in. | proper_case |
-| `ResponseChoices` | List<*string*> | :heavy_minus_sign: | A list of options for the question. This only applies when responseType is 'choice' | [
"Mexican",
"American",
"French",
"Other"
] |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/QuestionWithProgramIdJsonTravelProgram.md b/packages/csharp/docs/Models/Components/QuestionWithProgramIdJsonTravelProgram.md
deleted file mode 100644
index 8018efea..00000000
--- a/packages/csharp/docs/Models/Components/QuestionWithProgramIdJsonTravelProgram.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# QuestionWithProgramIdJsonTravelProgram
-
-Travel program that the question belongs to.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
-| `Id` | *string* | :heavy_minus_sign: | The unique ID of the travel program. | ddc61444-45c7-4e1d-9fdd-07713c8baf9b |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/QuestionsPaginatedResponse.md b/packages/csharp/docs/Models/Components/QuestionsPaginatedResponse.md
index 66195d46..0654985e 100644
--- a/packages/csharp/docs/Models/Components/QuestionsPaginatedResponse.md
+++ b/packages/csharp/docs/Models/Components/QuestionsPaginatedResponse.md
@@ -8,4 +8,4 @@ Response include paging and collection of questions of surveys
| Field | Type | Required | Description |
| ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- |
| `Paging` | [PagingJson](../../Models/Components/PagingJson.md) | :heavy_check_mark: | Represents pagination information for a collection of resources. |
-| `Data` | List<[QuestionJson2](../../Models/Components/QuestionJson2.md)> | :heavy_check_mark: | Collection of questions for surveys. |
\ No newline at end of file
+| `Data` | List<[QuestionJson1](../../Models/Components/QuestionJson1.md)> | :heavy_check_mark: | Collection of questions for surveys. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/QuestionsPaginatedResponse1.md b/packages/csharp/docs/Models/Components/QuestionsPaginatedResponse1.md
index de3e3a10..ac379392 100644
--- a/packages/csharp/docs/Models/Components/QuestionsPaginatedResponse1.md
+++ b/packages/csharp/docs/Models/Components/QuestionsPaginatedResponse1.md
@@ -5,7 +5,7 @@ A paginated list of Questions.
## Fields
-| Field | Type | Required | Description |
-| --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- |
-| `Paging` | [PagingJson](../../Models/Components/PagingJson.md) | :heavy_minus_sign: | Represents pagination information for a collection of resources. |
-| `Data` | List<[QuestionWithProgramIdJson](../../Models/Components/QuestionWithProgramIdJson.md)> | :heavy_minus_sign: | Collection of Questions. |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- |
+| `Paging` | [Paging](../../Models/Components/Paging.md) | :heavy_minus_sign: | Represents pagination information for a collection of resources. |
+| `Data` | List<[TravelProgramQuestion](../../Models/Components/TravelProgramQuestion.md)> | :heavy_minus_sign: | Collection of Questions. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RateLevelType.md b/packages/csharp/docs/Models/Components/RateLevelType.md
new file mode 100644
index 00000000..0c4ccfdb
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/RateLevelType.md
@@ -0,0 +1,20 @@
+# RateLevelType
+
+Rate level
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = RateLevelType.Corporate;
+```
+
+
+## Values
+
+| Name | Value |
+| ------------ | ------------ |
+| `Corporate` | corporate |
+| `Leisure` | leisure |
+| `Government` | government |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RateLevelTypeJson.md b/packages/csharp/docs/Models/Components/RateLevelTypeJson.md
deleted file mode 100644
index 418f8c2d..00000000
--- a/packages/csharp/docs/Models/Components/RateLevelTypeJson.md
+++ /dev/null
@@ -1,20 +0,0 @@
-# RateLevelTypeJson
-
-Rate level
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = RateLevelTypeJson.Corporate;
-```
-
-
-## Values
-
-| Name | Value |
-| ------------ | ------------ |
-| `Corporate` | corporate |
-| `Leisure` | leisure |
-| `Government` | government |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RateReviewStatusType.md b/packages/csharp/docs/Models/Components/RateReviewStatusType.md
new file mode 100644
index 00000000..10572af0
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/RateReviewStatusType.md
@@ -0,0 +1,21 @@
+# RateReviewStatusType
+
+The rate review status of the proposal
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = RateReviewStatusType.Requested;
+```
+
+
+## Values
+
+| Name | Value |
+| ------------- | ------------- |
+| `Requested` | requested |
+| `NotRequired` | not_required |
+| `Approved` | approved |
+| `Rejected` | rejected |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RateReviewStatusTypeJson.md b/packages/csharp/docs/Models/Components/RateReviewStatusTypeJson.md
deleted file mode 100644
index 1be7a618..00000000
--- a/packages/csharp/docs/Models/Components/RateReviewStatusTypeJson.md
+++ /dev/null
@@ -1,21 +0,0 @@
-# RateReviewStatusTypeJson
-
-The rate review status of the proposal
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = RateReviewStatusTypeJson.Requested;
-```
-
-
-## Values
-
-| Name | Value |
-| ------------- | ------------- |
-| `Requested` | requested |
-| `NotRequired` | not_required |
-| `Approved` | approved |
-| `Rejected` | rejected |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RateType.md b/packages/csharp/docs/Models/Components/RateType.md
new file mode 100644
index 00000000..aaaffaea
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/RateType.md
@@ -0,0 +1,20 @@
+# RateType
+
+Rate type.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = RateType.Fixed;
+```
+
+
+## Values
+
+| Name | Value |
+| -------------------- | -------------------- |
+| `Fixed` | fixed |
+| `Dynamic` | dynamic |
+| `Dynamicwithceiling` | dynamicwithceiling |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RateTypeJson.md b/packages/csharp/docs/Models/Components/RateTypeJson.md
deleted file mode 100644
index 6d659150..00000000
--- a/packages/csharp/docs/Models/Components/RateTypeJson.md
+++ /dev/null
@@ -1,20 +0,0 @@
-# RateTypeJson
-
-Rate type.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = RateTypeJson.Fixed;
-```
-
-
-## Values
-
-| Name | Value |
-| -------------------- | -------------------- |
-| `Fixed` | fixed |
-| `Dynamic` | dynamic |
-| `Dynamicwithceiling` | dynamicwithceiling |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RebateType.md b/packages/csharp/docs/Models/Components/RebateType.md
new file mode 100644
index 00000000..6ea9f2c3
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/RebateType.md
@@ -0,0 +1,19 @@
+# RebateType
+
+Rebate type for specifying the rebate value on citywide RFPs. If rebateType is `BY_AMOUNT`, the rebate value will be in decimal format. If rebateType is `BY_PERCENTAGE`, the rebate value will represent a percentage.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = RebateType.ByAmount;
+```
+
+
+## Values
+
+| Name | Value |
+| -------------- | -------------- |
+| `ByAmount` | BY_AMOUNT |
+| `ByPercentage` | BY_PERCENTAGE |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RebateTypeJson.md b/packages/csharp/docs/Models/Components/RebateTypeJson.md
deleted file mode 100644
index ee051b54..00000000
--- a/packages/csharp/docs/Models/Components/RebateTypeJson.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# RebateTypeJson
-
-Rebate type for specifying the rebate value on citywide RFPs. If rebateType is `BY_AMOUNT`, the rebate value will be in decimal format. If rebateType is `BY_PERCENTAGE`, the rebate value will represent a percentage.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = RebateTypeJson.ByAmount;
-```
-
-
-## Values
-
-| Name | Value |
-| -------------- | -------------- |
-| `ByAmount` | BY_AMOUNT |
-| `ByPercentage` | BY_PERCENTAGE |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RecipientInfo.md b/packages/csharp/docs/Models/Components/RecipientInfo.md
new file mode 100644
index 00000000..9da0895b
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/RecipientInfo.md
@@ -0,0 +1,12 @@
+# RecipientInfo
+
+Represents the details of the RFP recipient.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| --------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Order` | *long* | :heavy_minus_sign: | The position at which this recipient will be displayed. | 2 |
+| `Type` | [RecipientType](../../Models/Components/RecipientType.md) | :heavy_minus_sign: | Type of Recipient | |
+| `Value` | *string* | :heavy_minus_sign: | If the recipient is ACCOUNT_USER or ACCOUNT_USER_GROUP, this field holds their unique ID. If the recipient is EMAIL, this field holds the email provided by the user. | janeDoe@example.com |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RecipientInfoJson0.md b/packages/csharp/docs/Models/Components/RecipientInfoJson0.md
deleted file mode 100644
index 6b3ca16f..00000000
--- a/packages/csharp/docs/Models/Components/RecipientInfoJson0.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# RecipientInfoJson0
-
-Represents the details of the RFP recipient.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Order` | *long* | :heavy_minus_sign: | The position at which this recipient will be displayed. | 2 |
-| `Type` | [RecipientTypeJson0](../../Models/Components/RecipientTypeJson0.md) | :heavy_minus_sign: | Type of Recipient | |
-| `Value` | *string* | :heavy_minus_sign: | If the recipient is ACCOUNT_USER or ACCOUNT_USER_GROUP, this field holds their unique ID. If the recipient is EMAIL, this field holds the email provided by the user. | janeDoe@example.com |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RecipientType.md b/packages/csharp/docs/Models/Components/RecipientType.md
new file mode 100644
index 00000000..30b05042
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/RecipientType.md
@@ -0,0 +1,20 @@
+# RecipientType
+
+Type of Recipient
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = RecipientType.Email;
+```
+
+
+## Values
+
+| Name | Value |
+| ------------------ | ------------------ |
+| `Email` | EMAIL |
+| `AccountUser` | ACCOUNT_USER |
+| `AccountUserGroup` | ACCOUNT_USER_GROUP |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RecipientTypeJson0.md b/packages/csharp/docs/Models/Components/RecipientTypeJson0.md
deleted file mode 100644
index 6b1fca9d..00000000
--- a/packages/csharp/docs/Models/Components/RecipientTypeJson0.md
+++ /dev/null
@@ -1,20 +0,0 @@
-# RecipientTypeJson0
-
-Type of Recipient
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = RecipientTypeJson0.Email;
-```
-
-
-## Values
-
-| Name | Value |
-| ------------------ | ------------------ |
-| `Email` | EMAIL |
-| `AccountUser` | ACCOUNT_USER |
-| `AccountUserGroup` | ACCOUNT_USER_GROUP |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RegistrationPackRequest.md b/packages/csharp/docs/Models/Components/RegistrationPackRequest.md
index 3a20051f..7d5dcbd8 100644
--- a/packages/csharp/docs/Models/Components/RegistrationPackRequest.md
+++ b/packages/csharp/docs/Models/Components/RegistrationPackRequest.md
@@ -7,6 +7,6 @@ A registration pack defining the registration type capacity allocations for an e
| Field | Type | Required | Description |
| ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- |
-| `Event` | [Event21](../../Models/Components/Event21.md) | :heavy_check_mark: | The Associated Event. |
+| `Event` | [Event3](../../Models/Components/Event3.md) | :heavy_check_mark: | The Associated Event. |
| `Exhibitor` | [Models.Components.Exhibitor](../../Models/Components/Exhibitor.md) | :heavy_check_mark: | The Associated Exhibitor. |
| `Capacities` | List<[Capacity](../../Models/Components/Capacity.md)> | :heavy_check_mark: | An array of capacities for the registration pack. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RegistrationPackResponse.md b/packages/csharp/docs/Models/Components/RegistrationPackResponse.md
index 4962a561..648e7eed 100644
--- a/packages/csharp/docs/Models/Components/RegistrationPackResponse.md
+++ b/packages/csharp/docs/Models/Components/RegistrationPackResponse.md
@@ -8,6 +8,6 @@ Schema for existing registration pack object
| Field | Type | Required | Description | Example |
| ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- |
| `Id` | *string* | :heavy_check_mark: | Registration pack id | 50f4f0df-0c2d-4e6b-8e68-e1413b6917f5 |
-| `Event` | [Event21](../../Models/Components/Event21.md) | :heavy_check_mark: | The Associated Event. | |
+| `Event` | [Event3](../../Models/Components/Event3.md) | :heavy_check_mark: | The Associated Event. | |
| `Exhibitor` | [Models.Components.Exhibitor](../../Models/Components/Exhibitor.md) | :heavy_check_mark: | The Associated Exhibitor. | |
| `Capacities` | List<[ExistingCapacity](../../Models/Components/ExistingCapacity.md)> | :heavy_check_mark: | Capacities allocated per registration type for this exhibitor's registration pack. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ReservationGuestJsonInput.md b/packages/csharp/docs/Models/Components/ReservationGuestJsonInput.md
index b0397cbc..52016878 100644
--- a/packages/csharp/docs/Models/Components/ReservationGuestJsonInput.md
+++ b/packages/csharp/docs/Models/Components/ReservationGuestJsonInput.md
@@ -19,7 +19,7 @@ Guest details for confirmed reservation.
| `Email` | *string* | :heavy_check_mark: | Email address of the guest. | guest@cvent.com |
| `HomePhone` | *string* | :heavy_minus_sign: | Home phone number of the guest. Required if the hotel/event requires address in reservations. | (231)-213-1222 |
| `WorkPhone` | *string* | :heavy_minus_sign: | Work phone number of the guest. | (231)-213-1222 |
-| `HomeAddress` | [AddressJson2](../../Models/Components/AddressJson2.md) | :heavy_minus_sign: | Address details. Required to create/update a guest's reservation if the hotel/event requires an address in reservations. | |
+| `HomeAddress` | [AddressJson](../../Models/Components/AddressJson.md) | :heavy_minus_sign: | Address details. Required to create/update a guest's reservation if the hotel/event requires an address in reservations. | |
| `PaymentInfo` | [ReservationPaymentInfoJsonInput](../../Models/Components/ReservationPaymentInfoJsonInput.md) | :heavy_minus_sign: | Payment information. | |
| `AgeQualifyingCode` | [AgeQualifyingCode](../../Models/Components/AgeQualifyingCode.md) | :heavy_minus_sign: | Code that specifies if the guest is an adult or child. (10 - adult, 8 - child) | |
| `Primary` | *bool* | :heavy_minus_sign: | True indicates this guest is the primary guest for the reservation. | true |
diff --git a/packages/csharp/docs/Models/Components/ReservationGuestJsonOutput.md b/packages/csharp/docs/Models/Components/ReservationGuestJsonOutput.md
index 0e36a0d7..5279ef3e 100644
--- a/packages/csharp/docs/Models/Components/ReservationGuestJsonOutput.md
+++ b/packages/csharp/docs/Models/Components/ReservationGuestJsonOutput.md
@@ -19,7 +19,7 @@ Guest details for confirmed reservation.
| `Email` | *string* | :heavy_check_mark: | Email address of the guest. | guest@cvent.com |
| `HomePhone` | *string* | :heavy_minus_sign: | Home phone number of the guest. Required if the hotel/event requires address in reservations. | (231)-213-1222 |
| `WorkPhone` | *string* | :heavy_minus_sign: | Work phone number of the guest. | (231)-213-1222 |
-| `HomeAddress` | [AddressJson2](../../Models/Components/AddressJson2.md) | :heavy_minus_sign: | Address details. Required to create/update a guest's reservation if the hotel/event requires an address in reservations. | |
+| `HomeAddress` | [AddressJson](../../Models/Components/AddressJson.md) | :heavy_minus_sign: | Address details. Required to create/update a guest's reservation if the hotel/event requires an address in reservations. | |
| `PaymentInfo` | [ReservationPaymentInfoJsonOutput](../../Models/Components/ReservationPaymentInfoJsonOutput.md) | :heavy_minus_sign: | Payment information. | |
| `AgeQualifyingCode` | [AgeQualifyingCode](../../Models/Components/AgeQualifyingCode.md) | :heavy_minus_sign: | Code that specifies if the guest is an adult or child. (10 - adult, 8 - child) | |
| `Primary` | *bool* | :heavy_minus_sign: | True indicates this guest is the primary guest for the reservation. | true |
diff --git a/packages/csharp/docs/Models/Components/ReservationPaymentInfoJsonInput.md b/packages/csharp/docs/Models/Components/ReservationPaymentInfoJsonInput.md
index 9a44b17e..d0f3f080 100644
--- a/packages/csharp/docs/Models/Components/ReservationPaymentInfoJsonInput.md
+++ b/packages/csharp/docs/Models/Components/ReservationPaymentInfoJsonInput.md
@@ -9,7 +9,7 @@ Payment information.
| ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ |
| `PaymentType` | [PaymentTypesJson](../../Models/Components/PaymentTypesJson.md) | :heavy_minus_sign: | Payment type. | |
| `FullName` | *string* | :heavy_minus_sign: | Full name. | Gustav Schultz |
-| `Address` | [AddressJson2](../../Models/Components/AddressJson2.md) | :heavy_minus_sign: | Address details. Required to create/update a guest's reservation if the hotel/event requires an address in reservations. | |
+| `Address` | [AddressJson](../../Models/Components/AddressJson.md) | :heavy_minus_sign: | Address details. Required to create/update a guest's reservation if the hotel/event requires an address in reservations. | |
| `Phone` | *string* | :heavy_minus_sign: | Phone number. | (231)213-1222 |
| `Other` | [OtherPaymentJson](../../Models/Components/OtherPaymentJson.md) | :heavy_minus_sign: | Other payment details. | |
| `CreditCard` | [TokenizedCreditCardJsonInput](../../Models/Components/TokenizedCreditCardJsonInput.md) | :heavy_minus_sign: | Credit card info. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ReservationPaymentInfoJsonOutput.md b/packages/csharp/docs/Models/Components/ReservationPaymentInfoJsonOutput.md
index f11d5fa5..9949d00b 100644
--- a/packages/csharp/docs/Models/Components/ReservationPaymentInfoJsonOutput.md
+++ b/packages/csharp/docs/Models/Components/ReservationPaymentInfoJsonOutput.md
@@ -9,7 +9,7 @@ Payment information.
| ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ |
| `PaymentType` | [PaymentTypesJson](../../Models/Components/PaymentTypesJson.md) | :heavy_minus_sign: | Payment type. | |
| `FullName` | *string* | :heavy_minus_sign: | Full name. | Gustav Schultz |
-| `Address` | [AddressJson2](../../Models/Components/AddressJson2.md) | :heavy_minus_sign: | Address details. Required to create/update a guest's reservation if the hotel/event requires an address in reservations. | |
+| `Address` | [AddressJson](../../Models/Components/AddressJson.md) | :heavy_minus_sign: | Address details. Required to create/update a guest's reservation if the hotel/event requires an address in reservations. | |
| `Phone` | *string* | :heavy_minus_sign: | Phone number. | (231)213-1222 |
| `Other` | [OtherPaymentJson](../../Models/Components/OtherPaymentJson.md) | :heavy_minus_sign: | Other payment details. | |
| `CreditCard` | [TokenizedCreditCardJsonOutput](../../Models/Components/TokenizedCreditCardJsonOutput.md) | :heavy_minus_sign: | Credit card info. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RespondentJson.md b/packages/csharp/docs/Models/Components/RespondentJson.md
index b6dff2fa..5a50067c 100644
--- a/packages/csharp/docs/Models/Components/RespondentJson.md
+++ b/packages/csharp/docs/Models/Components/RespondentJson.md
@@ -22,7 +22,7 @@ Respondent object for survey respondents.
| `PercentageScore` | *double* | :heavy_minus_sign: | Respondent Percentage Score | 70 |
| `Links` | [RespondentJsonLinks](../../Models/Components/RespondentJsonLinks.md) | :heavy_minus_sign: | Related links. | |
| `SourceId` | *string* | :heavy_minus_sign: | Source IDs track respondents in an external system integrated with the Cvent survey. | IN4IDS1 |
-| `Event` | [EventJson4](../../Models/Components/EventJson4.md) | :heavy_minus_sign: | Detail object of an event which is associated to a survey. | |
+| `Event` | [EventJson3](../../Models/Components/EventJson3.md) | :heavy_minus_sign: | Detail object of an event which is associated to a survey. | |
| `Contact` | [UuidJson](../../Models/Components/UuidJson.md) | :heavy_minus_sign: | The reference to the related entity. Contains only the ID of the related entity. | |
| `Attendee` | [UuidJson](../../Models/Components/UuidJson.md) | :heavy_minus_sign: | The reference to the related entity. Contains only the ID of the related entity. | |
| `Survey` | [UuidJson](../../Models/Components/UuidJson.md) | :heavy_minus_sign: | The reference to the related entity. Contains only the ID of the related entity. | |
diff --git a/packages/csharp/docs/Models/Components/Rfp.md b/packages/csharp/docs/Models/Components/Rfp.md
index 28839349..fa439ca4 100644
--- a/packages/csharp/docs/Models/Components/Rfp.md
+++ b/packages/csharp/docs/Models/Components/Rfp.md
@@ -14,43 +14,43 @@ Basic RFP details
| `NeedsMeetingSpace` | *bool* | :heavy_check_mark: | True indicates meeting space is needed for event. | |
| `NeedsGuestRooms` | *bool* | :heavy_check_mark: | True indicates guest rooms are needed for event. | |
| `Description` | *string* | :heavy_minus_sign: | Description of RFP. | Planning to host company's annual event in an outdoor location. |
-| `DateRequirements` | [DateRequirementsJson0](../../Models/Components/DateRequirementsJson0.md) | :heavy_minus_sign: | Date requirements for the event. | |
-| `RfpEvent` | [RfpEventJson](../../Models/Components/RfpEventJson.md) | :heavy_minus_sign: | RFP event details. | |
+| `DateRequirements` | [DateRequirements1](../../Models/Components/DateRequirements1.md) | :heavy_minus_sign: | Date requirements for the event. | |
+| `RfpEvent` | [RfpEvent](../../Models/Components/RfpEvent.md) | :heavy_minus_sign: | RFP event details. | |
| `AgendaStartDate` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The ISO 8601 date representing the start date of agenda. | 2025-10-13 |
-| `Contact` | [ContactJson0](../../Models/Components/ContactJson0.md) | :heavy_minus_sign: | Contact details of planner. | |
-| `RfpEventOrganization` | [RfpEventOrganizationJson](../../Models/Components/RfpEventOrganizationJson.md) | :heavy_minus_sign: | Details of organization which is hosting the event. | |
+| `Contact` | [Contact1](../../Models/Components/Contact1.md) | :heavy_minus_sign: | Contact details of planner. | |
+| `RfpEventOrganization` | [EventOrganization1](../../Models/Components/EventOrganization1.md) | :heavy_minus_sign: | Details of organization which is hosting the event. | |
| `DecisionFactors` | *string* | :heavy_minus_sign: | Decision factors based on which RFP will be awarded. These can be price, location, or quality of service. | Price, location, and quality of service. |
| `CitywideEvent` | *bool* | :heavy_minus_sign: | True indicates event is city wide and might require multiple venues. | |
| `ResponseDueDate` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The ISO 8601 date by when the response for RFP is expected from suppliers. | 2016-10-13 |
| `DecisionDate` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The ISO 8601 date by which RFP will be awarded. | 2016-10-13 |
-| `BillingDetails` | [BillingDetailsJson0](../../Models/Components/BillingDetailsJson0.md) | :heavy_minus_sign: | Billing details for RFP. | |
+| `BillingDetails` | [BillingDetails1](../../Models/Components/BillingDetails1.md) | :heavy_minus_sign: | Billing details for RFP. | |
| `InternalNote` | *string* | :heavy_minus_sign: | Internal note for planners. This note is not shared with suppliers. | Don't award this RFP to the same venue as last year. |
| `CurrencyCode` | *string* | :heavy_minus_sign: | The ISO 4217 standard format currency code. | USD |
-| `MeasurementUnit` | [MeasurementUnitJson0](../../Models/Components/MeasurementUnitJson0.md) | :heavy_minus_sign: | Measurement unit. | |
-| `RequiredCostItems` | List<[OfferingCostTypeJson0](../../Models/Components/OfferingCostTypeJson0.md)> | :heavy_minus_sign: | This contains cost items which are marked as required for suppliers in the RFP. | [
"BREAK_AM",
"BREAK_PM"
] |
-| `HiddenCostItems` | List<[OfferingCostTypeJson0](../../Models/Components/OfferingCostTypeJson0.md)> | :heavy_minus_sign: | This contains cost items which are marked as not needed for suppliers in the RFP. | [
"BREAK_DRINKS_ONLY",
"BREAK_SNACKS_AND_DRINKS"
] |
+| `MeasurementUnit` | [MeasurementUnit](../../Models/Components/MeasurementUnit.md) | :heavy_minus_sign: | Unit of measurement for area or space.
Values:
- `SQUARE_FEET` — Square Feet
- `SQUARE_METERS` — Square Meters | |
+| `RequiredCostItems` | List<[OfferingCostType1](../../Models/Components/OfferingCostType1.md)> | :heavy_minus_sign: | This contains cost items which are marked as required for suppliers in the RFP. | [
"BREAK_AM",
"BREAK_PM"
] |
+| `HiddenCostItems` | List<[OfferingCostType1](../../Models/Components/OfferingCostType1.md)> | :heavy_minus_sign: | This contains cost items which are marked as not needed for suppliers in the RFP. | [
"BREAK_DRINKS_ONLY",
"BREAK_SNACKS_AND_DRINKS"
] |
| `Forwardable` | *bool* | :heavy_minus_sign: | True indicates suppliers added on the RFP should be allowed to forward the RFP. | |
| `CvbForwardLimit` | *long* | :heavy_minus_sign: | Limits the number of venues that a CVB (Convention and Visitors Bureau) can forward an RFP to. | 5 |
| `AllowEmailNotifications` | *bool* | :heavy_minus_sign: | True indicates email notifications are allowed for this RFP. | |
-| `NotificationRecipients` | List<[RecipientInfoJson0](../../Models/Components/RecipientInfoJson0.md)> | :heavy_minus_sign: | This contains recipients who would get notified every time a new response is received back from the suppliers | [
{
"order": 1,
"type": "EMAIL",
"value": "johnDoe@example.com"
},
{
"order": 2,
"type": "ACCOUNT_USER",
"value": "50dc08af-24a9-4d01-84be-3d43133dc945"
},
{
"order": 3,
"type": "ACCOUNT_USER_GROUP",
"value": "70de07af-24a9-4d01-84be-3d43133dc932"
}
] |
+| `NotificationRecipients` | List<[RecipientInfo](../../Models/Components/RecipientInfo.md)> | :heavy_minus_sign: | This contains recipients who would get notified every time a new response is received back from the suppliers | [
{
"order": 1,
"type": "EMAIL",
"value": "johnDoe@example.com"
},
{
"order": 2,
"type": "ACCOUNT_USER",
"value": "50dc08af-24a9-4d01-84be-3d43133dc945"
},
{
"order": 3,
"type": "ACCOUNT_USER_GROUP",
"value": "70de07af-24a9-4d01-84be-3d43133dc932"
}
] |
| `ShareAwardDetails` | *bool* | :heavy_minus_sign: | True indicates award details can be shared with other suppliers added in RFP. | |
-| `LeadSource` | [LeadSourceJson](../../Models/Components/LeadSourceJson.md) | :heavy_minus_sign: | Lead source details. | |
+| `LeadSource` | [LeadSource](../../Models/Components/LeadSource.md) | :heavy_minus_sign: | Lead source details. | |
| `SourceId` | *string* | :heavy_minus_sign: | Unique identifier for RFPs originating from outside Cvent network provided by source system where RFP was created. | 123456 |
| `ShowcaseEnabled` | *bool* | :heavy_minus_sign: | True indicates showcase is enabled for this RFP. | |
| `AutoAddToShowcaseEnabled` | *bool* | :heavy_minus_sign: | True indicates that the RFP will be automatically added to showcase in case there is a low response rate. | |
| `DestinationExpertsRequiredOnProposal` | *bool* | :heavy_minus_sign: | True indicates suppliers are required to copy the destination experts (i.e. CVB/DMC) on the proposal that is sent back through Cvent. | |
-| `WeddingDetails` | [WeddingDetailsJson0](../../Models/Components/WeddingDetailsJson0.md) | :heavy_minus_sign: | Wedding details. | |
+| `WeddingDetails` | [WeddingDetails1](../../Models/Components/WeddingDetails1.md) | :heavy_minus_sign: | Wedding details. | |
| `NeedsCatering` | *bool* | :heavy_minus_sign: | True indicates catering is required. | |
-| `PackagePricingPreference` | [PackagePricingPreferenceJson](../../Models/Components/PackagePricingPreferenceJson.md) | :heavy_minus_sign: | Represents different preferences by planner for pricing packages response that supplier has to provide. NO_PREFERENCE means no pricing package information is need, OPTIONAL means it's not mandatory to provide pricing preference, and REQUIRED means package information is mandatory to be provided by supplier. | OPTIONAL |
+| `PackagePricingPreference` | [PackagePricingPreference](../../Models/Components/PackagePricingPreference.md) | :heavy_minus_sign: | Represents different preferences by planner for pricing packages response that supplier has to provide. NO_PREFERENCE means no pricing package information is need, OPTIONAL means it's not mandatory to provide pricing preference, and REQUIRED means package information is mandatory to be provided by supplier. | OPTIONAL |
| `FeeTransparencyEnabled` | *bool* | :heavy_minus_sign: | True indicates RFP was created with fee transparency enabled. | |
| `Id` | *string* | :heavy_check_mark: | Unique identifier for RFP. | 50dc08af-24a9-4d01-84be-3d43133dc945 |
| `Code` | *string* | :heavy_minus_sign: | Unique code of RFP. | JBNJN7BGJ5J |
-| `Status` | [RfpStatusJson0](../../Models/Components/RfpStatusJson0.md) | :heavy_minus_sign: | Represents state of the RFP. | |
-| `Type` | [RfpTypeJson0](../../Models/Components/RfpTypeJson0.md) | :heavy_minus_sign: | RFP types based on event requirements. | |
+| `Status` | [RfpStatus1](../../Models/Components/RfpStatus1.md) | :heavy_minus_sign: | Represents state of the RFP. | |
+| `Type` | [RfpType1](../../Models/Components/RfpType1.md) | :heavy_minus_sign: | RFP types based on event requirements. | |
| `ApprovedBy` | *string* | :heavy_minus_sign: | Details of the user who approved the RFP. | approver@example.com |
| `ApprovedDateTime` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 date time (in UTC) when the RFP was approved. The initial value when RFP is not approved is 1900-01-01 00:00:00.000. | 2021-01-13T14:06:20.080Z |
| `Approved` | *bool* | :heavy_minus_sign: | True indicates RFP is approved. | true |
-| `CancellationDetails` | [CancellationDetailsJson](../../Models/Components/CancellationDetailsJson.md) | :heavy_minus_sign: | Information about cancellation of RFP. | |
+| `CancellationDetails` | [CancellationDetails](../../Models/Components/CancellationDetails.md) | :heavy_minus_sign: | Information about cancellation of RFP. | |
| `LastSentDateTime` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 date time (in UTC) when RFP was last sent. | 2021-01-13T14:06:20.080Z |
| `OriginalSentDateTime` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 date time (in UTC) when RFP was first sent. | 2021-01-13T14:06:20.080Z |
| `SentVenueCount` | *long* | :heavy_minus_sign: | Number of venues to which the planner has sent the RFP. | 5 |
diff --git a/packages/csharp/docs/Models/Components/RfpAgendaItem.md b/packages/csharp/docs/Models/Components/RfpAgendaItem.md
new file mode 100644
index 00000000..5b67ecd6
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/RfpAgendaItem.md
@@ -0,0 +1,29 @@
+# RfpAgendaItem
+
+Agenda item associated with an RFP.
+
+
+## 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: | The ISO 8601 zoned date time when this record was created. | 2017-01-02T02:00:00Z |
+| `CreatedBy` | *string* | :heavy_minus_sign: | The identifier of the user that created this record. | hporter |
+| `LastModified` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when this record was updated. | 2019-02-12T03:00:00Z |
+| `LastModifiedBy` | *string* | :heavy_minus_sign: | The identifier of the user that last updated this record. | hporter |
+| `Name` | *string* | :heavy_minus_sign: | The name of the agenda item. | Agenda Item 1 |
+| `Type` | [AgendaItemType](../../Models/Components/AgendaItemType.md) | :heavy_minus_sign: | Type of the agenda. | |
+| `Setup` | [AgendaItemSetup](../../Models/Components/AgendaItemSetup.md) | :heavy_minus_sign: | Setup type for the agenda. | |
+| `Note` | *string* | :heavy_minus_sign: | The note sent along with agenda item. | This is a sample comment for this agenda item. |
+| `StartTime` | *string* | :heavy_minus_sign: | The start time of the agenda item in 24-hour format (HH:mm:ss). This represents the local time at event location. For RFPs spanning multiple time zones, this time applies uniformly in each location's respective timezone (e.g., 13:00:00 means 1 PM local time at every venue). | 10:00:00 |
+| `EndTime` | *string* | :heavy_minus_sign: | The end time of the agenda item in 24-hour format (HH:mm:ss). This represents the local time at event location. For RFPs spanning multiple time zones, this time applies uniformly in each location's respective timezone (e.g., 14:00:00 means 2 PM local time at every venue). | 10:30:00 |
+| `RoomSize` | *long* | :heavy_minus_sign: | The required room size. It is specified in the default measurement unit of the RFP. Use GET RFP API to get the default measurement unit. | 1000 |
+| `AttendeeCount` | *long* | :heavy_minus_sign: | Expected number of people attending the agenda. | 10000 |
+| `RoomInfoRequired` | *bool* | :heavy_minus_sign: | True indicates room information like type, description is required. | false |
+| `TwentyFourHourHold` | *bool* | :heavy_minus_sign: | True indicates that twenty four hour hold is required. | true |
+| `LocatedAtPrimaryEventVenue` | *bool* | :heavy_minus_sign: | True indicates that agenda location is at primary event venue. | false |
+| `RfpMeal` | [RfpMeal](../../Models/Components/RfpMeal.md) | :heavy_minus_sign: | Meal type offered during the agenda. | |
+| `Number` | *long* | :heavy_check_mark: | The sequence number of the agenda item. | 5 |
+| `Schedules` | List<[RfpAgendaItemSchedule](../../Models/Components/RfpAgendaItemSchedule.md)> | :heavy_check_mark: | List of dates when this agenda item is scheduled. | |
+| `Id` | *string* | :heavy_check_mark: | Unique ID of the agenda item. | f56a51a4-84b0-46c9-a612-716dc95a1c96 |
+| `AgendaBuilderAttachment` | [AgendaBuilderAttachment](../../Models/Components/AgendaBuilderAttachment.md) | :heavy_minus_sign: | Attachment whose data was used to create the agenda item. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RfpAgendaItemJson.md b/packages/csharp/docs/Models/Components/RfpAgendaItemJson.md
deleted file mode 100644
index ddeb1321..00000000
--- a/packages/csharp/docs/Models/Components/RfpAgendaItemJson.md
+++ /dev/null
@@ -1,29 +0,0 @@
-# RfpAgendaItemJson
-
-Agenda item associated with an RFP.
-
-
-## 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: | The ISO 8601 zoned date time when this record was created. | 2017-01-02T02:00:00Z |
-| `CreatedBy` | *string* | :heavy_minus_sign: | The identifier of the user that created this record. | hporter |
-| `LastModified` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when this record was updated. | 2019-02-12T03:00:00Z |
-| `LastModifiedBy` | *string* | :heavy_minus_sign: | The identifier of the user that last updated this record. | hporter |
-| `Name` | *string* | :heavy_minus_sign: | The name of the agenda item. | Agenda Item 1 |
-| `Type` | [AgendaItemTypeJson](../../Models/Components/AgendaItemTypeJson.md) | :heavy_minus_sign: | Type of the agenda. | |
-| `Setup` | [AgendaItemSetupJson](../../Models/Components/AgendaItemSetupJson.md) | :heavy_minus_sign: | Setup type for the agenda. | |
-| `Note` | *string* | :heavy_minus_sign: | The note sent along with agenda item. | This is a sample comment for this agenda item. |
-| `StartTime` | *string* | :heavy_minus_sign: | The start time of the agenda item in 24-hour format (HH:mm:ss). This represents the local time at event location. For RFPs spanning multiple time zones, this time applies uniformly in each location's respective timezone (e.g., 13:00:00 means 1 PM local time at every venue). | 10:00:00 |
-| `EndTime` | *string* | :heavy_minus_sign: | The end time of the agenda item in 24-hour format (HH:mm:ss). This represents the local time at event location. For RFPs spanning multiple time zones, this time applies uniformly in each location's respective timezone (e.g., 14:00:00 means 2 PM local time at every venue). | 10:30:00 |
-| `RoomSize` | *long* | :heavy_minus_sign: | The required room size. It is specified in the default measurement unit of the RFP. Use GET RFP API to get the default measurement unit. | 1000 |
-| `AttendeeCount` | *long* | :heavy_minus_sign: | Expected number of people attending the agenda. | 10000 |
-| `RoomInfoRequired` | *bool* | :heavy_minus_sign: | True indicates room information like type, description is required. | false |
-| `TwentyFourHourHold` | *bool* | :heavy_minus_sign: | True indicates that twenty four hour hold is required. | true |
-| `LocatedAtPrimaryEventVenue` | *bool* | :heavy_minus_sign: | True indicates that agenda location is at primary event venue. | false |
-| `RfpMeal` | [RfpMealJson](../../Models/Components/RfpMealJson.md) | :heavy_minus_sign: | Meal type offered during the agenda. | |
-| `Number` | *long* | :heavy_check_mark: | The sequence number of the agenda item. | 5 |
-| `Schedules` | List<[RfpAgendaItemScheduleJson](../../Models/Components/RfpAgendaItemScheduleJson.md)> | :heavy_check_mark: | List of dates when this agenda item is scheduled. | |
-| `Id` | *string* | :heavy_check_mark: | Unique ID of the agenda item. | f56a51a4-84b0-46c9-a612-716dc95a1c96 |
-| `AgendaBuilderAttachment` | [AgendaBuilderAttachment](../../Models/Components/AgendaBuilderAttachment.md) | :heavy_minus_sign: | Attachment whose data was used to create the agenda item. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RfpAgendaItemSchedule.md b/packages/csharp/docs/Models/Components/RfpAgendaItemSchedule.md
new file mode 100644
index 00000000..d080e6e6
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/RfpAgendaItemSchedule.md
@@ -0,0 +1,11 @@
+# RfpAgendaItemSchedule
+
+Schedule information for an RFP agenda item.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
+| `DayNumber` | *long* | :heavy_check_mark: | Day number relative to start of event on which the agenda item occurs. | 1 |
+| `Date` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The ISO 8601 date of the agenda item. | 2021-07-03 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RfpAgendaItemScheduleJson.md b/packages/csharp/docs/Models/Components/RfpAgendaItemScheduleJson.md
deleted file mode 100644
index d1d243f4..00000000
--- a/packages/csharp/docs/Models/Components/RfpAgendaItemScheduleJson.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# RfpAgendaItemScheduleJson
-
-Schedule information for an RFP agenda item.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
-| `DayNumber` | *long* | :heavy_check_mark: | Day number relative to start of event on which the agenda item occurs. | 1 |
-| `Date` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The ISO 8601 date of the agenda item. | 2021-07-03 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RfpAgendaItemScheduleWithId.md b/packages/csharp/docs/Models/Components/RfpAgendaItemScheduleWithId.md
new file mode 100644
index 00000000..785827ae
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/RfpAgendaItemScheduleWithId.md
@@ -0,0 +1,12 @@
+# RfpAgendaItemScheduleWithId
+
+Contains RFP specific agenda items schedule information with agenda item id.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
+| `DayNumber` | *long* | :heavy_check_mark: | Day number relative to start of event on which the agenda item occurs. | 1 |
+| `Date` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The ISO 8601 date of the agenda item. | 2021-07-03 |
+| `Id` | *string* | :heavy_minus_sign: | Unique ID of the agenda item. | 50dc08af-24a9-4d01-84be-3d43133dc945 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RfpAgendaItemScheduleWithIdJson.md b/packages/csharp/docs/Models/Components/RfpAgendaItemScheduleWithIdJson.md
deleted file mode 100644
index c6ca58ec..00000000
--- a/packages/csharp/docs/Models/Components/RfpAgendaItemScheduleWithIdJson.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# RfpAgendaItemScheduleWithIdJson
-
-Contains RFP specific agenda items schedule information with agenda item id.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
-| `DayNumber` | *long* | :heavy_check_mark: | Day number relative to start of event on which the agenda item occurs. | 1 |
-| `Date` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The ISO 8601 date of the agenda item. | 2021-07-03 |
-| `Id` | *string* | :heavy_minus_sign: | Unique ID of the agenda item. | 50dc08af-24a9-4d01-84be-3d43133dc945 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RfpAttachment.md b/packages/csharp/docs/Models/Components/RfpAttachment.md
new file mode 100644
index 00000000..33197382
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/RfpAttachment.md
@@ -0,0 +1,25 @@
+# RfpAttachment
+
+This object contains Rfp specific attachments attributes.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Id` | *string* | :heavy_check_mark: | Unique identifier for this attachment record. | f56a51a4-84b0-46c9-a612-716dc95a1c96 |
+| `Created` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | ISO 8601 date-time the attachment was uploaded. | 2021-01-13T14:06:20.080Z |
+| `Size` | *long* | :heavy_minus_sign: | The size of attachment in bytes. | 777835 |
+| `Type` | [DocumentType1](../../Models/Components/DocumentType1.md) | :heavy_minus_sign: | The document type. | |
+| `Secure` | *bool* | :heavy_minus_sign: | True indicates the attachment is uploaded behind a secured URL. | true |
+| `Name` | *string* | :heavy_minus_sign: | Display name of the attachment. | BudgetCostSavings |
+| `UniqueName` | *string* | :heavy_minus_sign: | Name of the attachment. Must be unique in the account. | 183f9efaa4c14070985782ee31abbf3c.jpg |
+| `MimeType` | *string* | :heavy_minus_sign: | The content type of the attachment | image/jpeg |
+| `Source` | [AttachmentSource](../../Models/Components/AttachmentSource.md) | :heavy_minus_sign: | The source from where the attachment was uploaded. | |
+| `RelativePath` | *string* | :heavy_minus_sign: | The file path pointing to where the attachment is stored in Cvent. This path is relative to the base URL of the storage system and omits the root address. | 0B7DEF22676A4434982BDAD2D6EC591F/files/supplier/0713cef78d4e4d818899d4522022d5ad/73ab2e3054fd4321a5e0f846a7adb0d7.jpg |
+| `SendInEmail` | *bool* | :heavy_minus_sign: | True indicates the attachment should be sent in emails that notify suppliers about RFPs. | false |
+| `DeletionAllowed` | *bool* | :heavy_minus_sign: | True indicates this attachment can be deleted. | true |
+| `Url` | *string* | :heavy_minus_sign: | URL of the attachment if `secure` is false. This field is null if `secure` is true. | https://custom.t2.cvent.com/0B7DEF22676A4434982BDAD2D6EC591F/files/supplier/0713cef78d4e4d818899d4522022d5ad/73ab2e3054fd4321a5e0f846a7adb0d7.jpg |
+| `Supplier` | [RfpAttachmentSupplier](../../Models/Components/RfpAttachmentSupplier.md) | :heavy_minus_sign: | Supplier associated with the attachment. | |
+| `SupplierSpecific` | *bool* | :heavy_minus_sign: | True indicates the attachment is only shown in the UI to the supplier whose ID is present in supplier.id field. | true |
+| `SelectedForSupplier` | *bool* | :heavy_minus_sign: | True indicates the attachment is selected for the supplier whose ID is present in supplier.id field. | true |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RfpAttachmentJson.md b/packages/csharp/docs/Models/Components/RfpAttachmentJson.md
deleted file mode 100644
index 4679a22d..00000000
--- a/packages/csharp/docs/Models/Components/RfpAttachmentJson.md
+++ /dev/null
@@ -1,25 +0,0 @@
-# RfpAttachmentJson
-
-This object contains Rfp specific attachments attributes.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_check_mark: | Unique identifier for this attachment record. | f56a51a4-84b0-46c9-a612-716dc95a1c96 |
-| `Created` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | ISO 8601 date-time the attachment was uploaded. | 2021-01-13T14:06:20.080Z |
-| `Size` | *long* | :heavy_minus_sign: | The size of attachment in bytes. | 777835 |
-| `Type` | [DocumentTypeJson0](../../Models/Components/DocumentTypeJson0.md) | :heavy_minus_sign: | The document type. | |
-| `Secure` | *bool* | :heavy_minus_sign: | True indicates the attachment is uploaded behind a secured URL. | true |
-| `Name` | *string* | :heavy_minus_sign: | Display name of the attachment. | BudgetCostSavings |
-| `UniqueName` | *string* | :heavy_minus_sign: | Name of the attachment. Must be unique in the account. | 183f9efaa4c14070985782ee31abbf3c.jpg |
-| `MimeType` | *string* | :heavy_minus_sign: | The content type of the attachment | image/jpeg |
-| `Source` | [AttachmentSourceJson](../../Models/Components/AttachmentSourceJson.md) | :heavy_minus_sign: | The source from where the attachment was uploaded. | |
-| `RelativePath` | *string* | :heavy_minus_sign: | The file path pointing to where the attachment is stored in Cvent. This path is relative to the base URL of the storage system and omits the root address. | 0B7DEF22676A4434982BDAD2D6EC591F/files/supplier/0713cef78d4e4d818899d4522022d5ad/73ab2e3054fd4321a5e0f846a7adb0d7.jpg |
-| `SendInEmail` | *bool* | :heavy_minus_sign: | True indicates the attachment should be sent in emails that notify suppliers about RFPs. | false |
-| `DeletionAllowed` | *bool* | :heavy_minus_sign: | True indicates this attachment can be deleted. | true |
-| `Url` | *string* | :heavy_minus_sign: | URL of the attachment if `secure` is false. This field is null if `secure` is true. | https://custom.t2.cvent.com/0B7DEF22676A4434982BDAD2D6EC591F/files/supplier/0713cef78d4e4d818899d4522022d5ad/73ab2e3054fd4321a5e0f846a7adb0d7.jpg |
-| `Supplier` | [RfpAttachmentJsonSupplier](../../Models/Components/RfpAttachmentJsonSupplier.md) | :heavy_minus_sign: | Supplier associated with the attachment. | |
-| `SupplierSpecific` | *bool* | :heavy_minus_sign: | True indicates the attachment is only shown in the UI to the supplier whose ID is present in supplier.id field. | true |
-| `SelectedForSupplier` | *bool* | :heavy_minus_sign: | True indicates the attachment is selected for the supplier whose ID is present in supplier.id field. | true |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RfpAttachmentJsonSupplier.md b/packages/csharp/docs/Models/Components/RfpAttachmentJsonSupplier.md
deleted file mode 100644
index 58305e53..00000000
--- a/packages/csharp/docs/Models/Components/RfpAttachmentJsonSupplier.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# RfpAttachmentJsonSupplier
-
-Supplier associated with the attachment.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
-| `Id` | *string* | :heavy_minus_sign: | ID of the supplier. | C20A0114-2635-48C3-9F59-9386361B517B |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RfpAttachmentSupplier.md b/packages/csharp/docs/Models/Components/RfpAttachmentSupplier.md
new file mode 100644
index 00000000..6fb6a0f0
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/RfpAttachmentSupplier.md
@@ -0,0 +1,10 @@
+# RfpAttachmentSupplier
+
+Supplier associated with the attachment.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
+| `Id` | *string* | :heavy_minus_sign: | ID of the supplier. | C20A0114-2635-48C3-9F59-9386361B517B |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RfpCustomFieldJson.md b/packages/csharp/docs/Models/Components/RfpCustomFieldJson.md
deleted file mode 100644
index 721e53a9..00000000
--- a/packages/csharp/docs/Models/Components/RfpCustomFieldJson.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# RfpCustomFieldJson
-
-This object contains RFP custom fields attributes only.
-
-
-## Fields
-
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `CustomField` | [ExpandableCustomObject](../../Models/Components/ExpandableCustomObject.md) | :heavy_check_mark: | An object containing custom field data. By default, contains only the field ID.
This is an **expandable** object. When requested via the `expand` query parameter with value `customField`, this object expands to include all properties of a custom field definition.
See the `expand` parameter documentation and refer to the [Get Custom Field](#tag/Custom-Fields/operation/getCustomField) API for the complete expanded schema. |
-| `Answers` | List<*string*> | :heavy_check_mark: | List of answers for the RFP custom field. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RfpDateMode.md b/packages/csharp/docs/Models/Components/RfpDateMode.md
new file mode 100644
index 00000000..a25254e0
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/RfpDateMode.md
@@ -0,0 +1,19 @@
+# RfpDateMode
+
+RfpDateMode
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = RfpDateMode.AlternateDate;
+```
+
+
+## Values
+
+| Name | Value |
+| --------------- | --------------- |
+| `AlternateDate` | ALTERNATE_DATE |
+| `DatePattern` | DATE_PATTERN |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RfpDateModeJson0.md b/packages/csharp/docs/Models/Components/RfpDateModeJson0.md
deleted file mode 100644
index fcf37ca2..00000000
--- a/packages/csharp/docs/Models/Components/RfpDateModeJson0.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# RfpDateModeJson0
-
-Way of specifying dates for the event.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = RfpDateModeJson0.AlternateDate;
-```
-
-
-## Values
-
-| Name | Value |
-| --------------- | --------------- |
-| `AlternateDate` | ALTERNATE_DATE |
-| `DatePattern` | DATE_PATTERN |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RfpEvent.md b/packages/csharp/docs/Models/Components/RfpEvent.md
new file mode 100644
index 00000000..a14b4410
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/RfpEvent.md
@@ -0,0 +1,29 @@
+# RfpEvent
+
+RFP event details.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- |
+| `Event` | [Event12](../../Models/Components/Event12.md) | :heavy_minus_sign: | Event details. | |
+| `Name` | *string* | :heavy_minus_sign: | Name of the event linked with the RFP. | friday event |
+| `ContractSignatureLocation` | *string* | :heavy_minus_sign: | Location where the contract will be signed. | Atlanta |
+| `DestinationsUnderConsideration` | *string* | :heavy_minus_sign: | Destinations under consideration for the event. | New York |
+| `ExternalMeetingRequest` | *bool* | :heavy_minus_sign: | True indicates that the event is associated with an external meeting request. | true |
+| `Type` | [EventType1](../../Models/Components/EventType1.md) | :heavy_minus_sign: | Event type. | |
+| `TotalMeetingSpaceRequired` | [SpaceArea](../../Models/Components/SpaceArea.md) | :heavy_minus_sign: | Space area divisons. | |
+| `AudioVisualNeeds` | *string* | :heavy_minus_sign: | Audio visual requirements. | Need a projector in each meeting room. |
+| `PeakMeetingRooms` | *long* | :heavy_minus_sign: | Maximum number of meeting rooms required during the event. | 14 |
+| `FlexibleDates` | *bool* | :heavy_minus_sign: | True indicates the event dates are flexible. | |
+| `Repeat` | *bool* | :heavy_minus_sign: | True indicates event is a repeat occurrence. | |
+| `AttendeesPerDay` | *long* | :heavy_minus_sign: | Number of in-person attendees per day. | 500 |
+| `ReferenceNumber` | *string* | :heavy_minus_sign: | Reference number for the event. | XVYMP8970S |
+| `LargestMeetingSpaceRequired` | [SpaceArea](../../Models/Components/SpaceArea.md) | :heavy_minus_sign: | Space area divisons. | |
+| `MeetingRequestId` | *string* | :heavy_minus_sign: | Unique identifier for meeting request associated with the event. | 50dc08af-24a9-4d01-84be-3d43133dc945 |
+| `FormatType` | [EventFormatType](../../Models/Components/EventFormatType.md) | :heavy_minus_sign: | Event format type. | |
+| `VirtualAttendeesPerDay` | *long* | :heavy_minus_sign: | Number of virtual attendees per day. | 2000 |
+| `Budget` | *double* | :heavy_minus_sign: | Total budget amount. | 10000 |
+| `RoomRateBudget` | *double* | :heavy_minus_sign: | Budget for rooms rates. | 200 |
+| `FoodBeverageBudget` | *double* | :heavy_minus_sign: | Budget for food and beverage. | 1000 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RfpEventJson.md b/packages/csharp/docs/Models/Components/RfpEventJson.md
deleted file mode 100644
index 5933d73b..00000000
--- a/packages/csharp/docs/Models/Components/RfpEventJson.md
+++ /dev/null
@@ -1,29 +0,0 @@
-# RfpEventJson
-
-RFP event details.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- |
-| `Event` | [EventJson0](../../Models/Components/EventJson0.md) | :heavy_minus_sign: | Event details. | |
-| `Name` | *string* | :heavy_minus_sign: | Name of the event linked with the RFP. | friday event |
-| `ContractSignatureLocation` | *string* | :heavy_minus_sign: | Location where the contract will be signed. | Atlanta |
-| `DestinationsUnderConsideration` | *string* | :heavy_minus_sign: | Destinations under consideration for the event. | New York |
-| `ExternalMeetingRequest` | *bool* | :heavy_minus_sign: | True indicates that the event is associated with an external meeting request. | true |
-| `Type` | [EventTypeJson0](../../Models/Components/EventTypeJson0.md) | :heavy_minus_sign: | Event type. | |
-| `TotalMeetingSpaceRequired` | [SpaceAreaJson0](../../Models/Components/SpaceAreaJson0.md) | :heavy_minus_sign: | Space area divisons. | |
-| `AudioVisualNeeds` | *string* | :heavy_minus_sign: | Audio visual requirements. | Need a projector in each meeting room. |
-| `PeakMeetingRooms` | *long* | :heavy_minus_sign: | Maximum number of meeting rooms required during the event. | 14 |
-| `FlexibleDates` | *bool* | :heavy_minus_sign: | True indicates the event dates are flexible. | |
-| `Repeat` | *bool* | :heavy_minus_sign: | True indicates event is a repeat occurrence. | |
-| `AttendeesPerDay` | *long* | :heavy_minus_sign: | Number of in-person attendees per day. | 500 |
-| `ReferenceNumber` | *string* | :heavy_minus_sign: | Reference number for the event. | XVYMP8970S |
-| `LargestMeetingSpaceRequired` | [SpaceAreaJson0](../../Models/Components/SpaceAreaJson0.md) | :heavy_minus_sign: | Space area divisons. | |
-| `MeetingRequestId` | *string* | :heavy_minus_sign: | Unique identifier for meeting request associated with the event. | 50dc08af-24a9-4d01-84be-3d43133dc945 |
-| `FormatType` | [EventFormatTypeJson0](../../Models/Components/EventFormatTypeJson0.md) | :heavy_minus_sign: | Event format type. | |
-| `VirtualAttendeesPerDay` | *long* | :heavy_minus_sign: | Number of virtual attendees per day. | 2000 |
-| `Budget` | *double* | :heavy_minus_sign: | Total budget amount. | 10000 |
-| `RoomRateBudget` | *double* | :heavy_minus_sign: | Budget for rooms rates. | 200 |
-| `FoodBeverageBudget` | *double* | :heavy_minus_sign: | Budget for food and beverage. | 1000 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RfpEventOrganizationJson.md b/packages/csharp/docs/Models/Components/RfpEventOrganizationJson.md
deleted file mode 100644
index 825375f5..00000000
--- a/packages/csharp/docs/Models/Components/RfpEventOrganizationJson.md
+++ /dev/null
@@ -1,16 +0,0 @@
-# RfpEventOrganizationJson
-
-Details of organization which is hosting the event.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- |
-| `Organization` | [OrganizationJson](../../Models/Components/OrganizationJson.md) | :heavy_minus_sign: | Organization details. | |
-| `ConfidentialProfile` | *bool* | :heavy_minus_sign: | True indicates organization profile has to be kept confidential. | |
-| `Industry` | [IndustryJson0](../../Models/Components/IndustryJson0.md) | :heavy_minus_sign: | Industry | |
-| `Name` | *string* | :heavy_check_mark: | Name of the organization hosting the event. | Cvent Inc. |
-| `Type` | [OrganizationTypeJson0](../../Models/Components/OrganizationTypeJson0.md) | :heavy_check_mark: | Organization type. | |
-| `Address` | [AddressJson0](../../Models/Components/AddressJson0.md) | :heavy_minus_sign: | Address details. | |
-| `EventsPerYear` | *long* | :heavy_minus_sign: | Number of events per year. | 450 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RfpGuestRooms.md b/packages/csharp/docs/Models/Components/RfpGuestRooms.md
index 783254ea..53b64ce6 100644
--- a/packages/csharp/docs/Models/Components/RfpGuestRooms.md
+++ b/packages/csharp/docs/Models/Components/RfpGuestRooms.md
@@ -5,11 +5,11 @@ Guest Room Requirements
## Fields
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- |
-| `TotalRooms` | *long* | :heavy_minus_sign: | Sum of the number of rooms required each night across all the nights for the event. | 24 |
-| `PeakRooms` | *long* | :heavy_minus_sign: | The number of rooms required during peak nights. | 24 |
-| `Occupancies` | List<[GuestRoomOccupancyPerRoomTypeJson](../../Models/Components/GuestRoomOccupancyPerRoomTypeJson.md)> | :heavy_minus_sign: | Occupancies for every room type. | |
-| `CheckInDate` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The ISO 8601 check-in date. | 2025-10-13 |
-| `RoomBlocks` | List<[RoomBlockJson](../../Models/Components/RoomBlockJson.md)> | :heavy_minus_sign: | List of room blocks required. | |
-| `AdditionalInformation` | *string* | :heavy_minus_sign: | Additional Info (if any). | 2 Executive suites are mandatory. |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- |
+| `TotalRooms` | *long* | :heavy_minus_sign: | Sum of the number of rooms required each night across all the nights for the event. | 24 |
+| `PeakRooms` | *long* | :heavy_minus_sign: | The number of rooms required during peak nights. | 24 |
+| `Occupancies` | List<[GuestRoomOccupancyPerRoomType](../../Models/Components/GuestRoomOccupancyPerRoomType.md)> | :heavy_minus_sign: | Occupancies for every room type. | |
+| `CheckInDate` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The ISO 8601 check-in date. | 2025-10-13 |
+| `RoomBlocks` | List<[RoomBlock](../../Models/Components/RoomBlock.md)> | :heavy_minus_sign: | List of room blocks required. | |
+| `AdditionalInformation` | *string* | :heavy_minus_sign: | Additional Info (if any). | 2 Executive suites are mandatory. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RfpIdJson.md b/packages/csharp/docs/Models/Components/RfpIdJson.md
new file mode 100644
index 00000000..3ceaaff1
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/RfpIdJson.md
@@ -0,0 +1,10 @@
+# RfpIdJson
+
+RFP ID Information.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
+| `Id` | *string* | :heavy_minus_sign: | Identifier of a particular RFP. | 3d808ee8-94f8-4f3a-9ad1-6b23f4e4c329 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RfpIdJson1.md b/packages/csharp/docs/Models/Components/RfpIdJson1.md
deleted file mode 100644
index adcad608..00000000
--- a/packages/csharp/docs/Models/Components/RfpIdJson1.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# RfpIdJson1
-
-RFP ID Information.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
-| `Id` | *string* | :heavy_minus_sign: | Identifier of a particular RFP. | 3d808ee8-94f8-4f3a-9ad1-6b23f4e4c329 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RfpInternalDocument.md b/packages/csharp/docs/Models/Components/RfpInternalDocument.md
new file mode 100644
index 00000000..2c0f7b05
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/RfpInternalDocument.md
@@ -0,0 +1,17 @@
+# RfpInternalDocument
+
+This object contains RFP specific internal documents attributes only.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Id` | *string* | :heavy_check_mark: | Unique ID of the file. | f56a51a4-84b0-46c9-a612-716dc95a1c96 |
+| `Created` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | ISO 8601 date-time the document was uploaded. | 2021-01-13T14:06:20.080Z |
+| `Name` | *string* | :heavy_minus_sign: | Display name of the document. | BudgetCostSavings |
+| `UniqueName` | *string* | :heavy_minus_sign: | Name of the document. Must be unique in the account. | 183f9efaa4c14070985782ee31abbf3c.jpg |
+| `Size` | *long* | :heavy_minus_sign: | The size of document in bytes. | 777835 |
+| `Url` | *string* | :heavy_minus_sign: | URL of the document if `secure` is false. This field is null if `secure` is true. | https://custom.cvent.com/0B7DEF22676A4434982BDAD2D6EC591F/files/supplier/0713cef78d4e4d818899d4522022d5ad/73ab2e3054fd4321a5e0f846a7adb0d7.jpg |
+| `Type` | [DocumentType1](../../Models/Components/DocumentType1.md) | :heavy_minus_sign: | The document type. | |
+| `MimeType` | *string* | :heavy_minus_sign: | The content type of the document. | image/jpeg |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RfpInternalDocumentJson0.md b/packages/csharp/docs/Models/Components/RfpInternalDocumentJson0.md
deleted file mode 100644
index 87479107..00000000
--- a/packages/csharp/docs/Models/Components/RfpInternalDocumentJson0.md
+++ /dev/null
@@ -1,17 +0,0 @@
-# RfpInternalDocumentJson0
-
-This object contains RFP specific internal documents attributes only.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_check_mark: | Unique ID of the file. | f56a51a4-84b0-46c9-a612-716dc95a1c96 |
-| `Created` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | ISO 8601 date-time the document was uploaded. | 2021-01-13T14:06:20.080Z |
-| `Name` | *string* | :heavy_minus_sign: | Display name of the document. | BudgetCostSavings |
-| `UniqueName` | *string* | :heavy_minus_sign: | Name of the document. Must be unique in the account. | 183f9efaa4c14070985782ee31abbf3c.jpg |
-| `Size` | *long* | :heavy_minus_sign: | The size of document in bytes. | 777835 |
-| `Url` | *string* | :heavy_minus_sign: | URL of the document if `secure` is false. This field is null if `secure` is true. | https://custom.cvent.com/0B7DEF22676A4434982BDAD2D6EC591F/files/supplier/0713cef78d4e4d818899d4522022d5ad/73ab2e3054fd4321a5e0f846a7adb0d7.jpg |
-| `Type` | [DocumentTypeJson0](../../Models/Components/DocumentTypeJson0.md) | :heavy_minus_sign: | The document type. | |
-| `MimeType` | *string* | :heavy_minus_sign: | The content type of the document. | image/jpeg |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RfpMeal.md b/packages/csharp/docs/Models/Components/RfpMeal.md
new file mode 100644
index 00000000..da871737
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/RfpMeal.md
@@ -0,0 +1,30 @@
+# RfpMeal
+
+Meal type offered during the agenda.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = RfpMeal.BreakfastBuffet;
+```
+
+
+## Values
+
+| Name | Value |
+| --------------------------------- | --------------------------------- |
+| `BreakfastBuffet` | BREAKFAST_BUFFET |
+| `BreakfastContinental` | BREAKFAST_CONTINENTAL |
+| `BreakfastPlated` | BREAKFAST_PLATED |
+| `BreakDrinksOnly` | BREAK_DRINKS_ONLY |
+| `BreakSnacksAndDrinks` | BREAK_SNACKS_AND_DRINKS |
+| `ContactMeAboutFBRequirements` | CONTACT_ME_ABOUT_F_B_REQUIREMENTS |
+| `DinnerBuffet` | DINNER_BUFFET |
+| `DinnerPlated` | DINNER_PLATED |
+| `LunchBoxed` | LUNCH_BOXED |
+| `LunchBuffet` | LUNCH_BUFFET |
+| `LunchPlated` | LUNCH_PLATED |
+| `ReceptionHeavyHorsDOeuvres` | RECEPTION_HEAVY_HORS_D_OEUVRES |
+| `ReceptionLightAppetizers` | RECEPTION_LIGHT_APPETIZERS |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RfpMealJson.md b/packages/csharp/docs/Models/Components/RfpMealJson.md
deleted file mode 100644
index 2e131c91..00000000
--- a/packages/csharp/docs/Models/Components/RfpMealJson.md
+++ /dev/null
@@ -1,30 +0,0 @@
-# RfpMealJson
-
-Meal type offered during the agenda.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = RfpMealJson.BreakfastBuffet;
-```
-
-
-## Values
-
-| Name | Value |
-| --------------------------------- | --------------------------------- |
-| `BreakfastBuffet` | BREAKFAST_BUFFET |
-| `BreakfastContinental` | BREAKFAST_CONTINENTAL |
-| `BreakfastPlated` | BREAKFAST_PLATED |
-| `BreakDrinksOnly` | BREAK_DRINKS_ONLY |
-| `BreakSnacksAndDrinks` | BREAK_SNACKS_AND_DRINKS |
-| `ContactMeAboutFBRequirements` | CONTACT_ME_ABOUT_F_B_REQUIREMENTS |
-| `DinnerBuffet` | DINNER_BUFFET |
-| `DinnerPlated` | DINNER_PLATED |
-| `LunchBoxed` | LUNCH_BOXED |
-| `LunchBuffet` | LUNCH_BUFFET |
-| `LunchPlated` | LUNCH_PLATED |
-| `ReceptionHeavyHorsDOeuvres` | RECEPTION_HEAVY_HORS_D_OEUVRES |
-| `ReceptionLightAppetizers` | RECEPTION_LIGHT_APPETIZERS |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RfpPastEvent.md b/packages/csharp/docs/Models/Components/RfpPastEvent.md
new file mode 100644
index 00000000..722c1518
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/RfpPastEvent.md
@@ -0,0 +1,19 @@
+# RfpPastEvent
+
+This object includes information about past events hosted by the planner.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- |
+| `VenueName` | *string* | :heavy_minus_sign: | Name of the venue where the event was hosted. | Delta Inn by Supreme Hotels |
+| `City` | *string* | :heavy_minus_sign: | Name of the city where the event was hosted. | New Delhi |
+| `StateProvince` | *string* | :heavy_minus_sign: | ISO 3166-2 code for name of the state or province where the event was hosted. | US-AL |
+| `Date` | *string* | :heavy_minus_sign: | Free form text field for the planner to provide details on the event date. | First week of January 2024 |
+| `AttendeeCount` | *long* | :heavy_minus_sign: | Number of event attendees. | 500 |
+| `GuestRoomsPickedUp` | *long* | :heavy_minus_sign: | Count of rooms picked up by planners for use during the event. | 500 |
+| `GuestRoomsBlocked` | *long* | :heavy_minus_sign: | Count of rooms blocked by planner for the event. | 500 |
+| `FoodBeverageSpend` | *string* | :heavy_minus_sign: | Expenditure on food and beverage. | 3,000 dollars |
+| `Notes` | *string* | :heavy_minus_sign: | Any other information about the event. | This was the 25th event hosted by Alpha Planners. |
+| `Id` | *string* | :heavy_check_mark: | Unique ID for the event detail. | f56a51a4-84b0-46c9-a612-716dc95a1c96 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RfpPastEventJson.md b/packages/csharp/docs/Models/Components/RfpPastEventJson.md
deleted file mode 100644
index 55d991d8..00000000
--- a/packages/csharp/docs/Models/Components/RfpPastEventJson.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# RfpPastEventJson
-
-This object includes information about past events hosted by the planner.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- |
-| `VenueName` | *string* | :heavy_minus_sign: | Name of the venue where the event was hosted. | Delta Inn by Supreme Hotels |
-| `City` | *string* | :heavy_minus_sign: | Name of the city where the event was hosted. | New Delhi |
-| `StateProvince` | *string* | :heavy_minus_sign: | ISO 3166-2 code for name of the state or province where the event was hosted. | US-AL |
-| `Date` | *string* | :heavy_minus_sign: | Free form text field for the planner to provide details on the event date. | First week of January 2024 |
-| `AttendeeCount` | *long* | :heavy_minus_sign: | Number of event attendees. | 500 |
-| `GuestRoomsPickedUp` | *long* | :heavy_minus_sign: | Count of rooms picked up by planners for use during the event. | 500 |
-| `GuestRoomsBlocked` | *long* | :heavy_minus_sign: | Count of rooms blocked by planner for the event. | 500 |
-| `FoodBeverageSpend` | *string* | :heavy_minus_sign: | Expenditure on food and beverage. | 3,000 dollars |
-| `Notes` | *string* | :heavy_minus_sign: | Any other information about the event. | This was the 25th event hosted by Alpha Planners. |
-| `Id` | *string* | :heavy_check_mark: | Unique ID for the event detail. | f56a51a4-84b0-46c9-a612-716dc95a1c96 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RfpPastEvents.md b/packages/csharp/docs/Models/Components/RfpPastEvents.md
index fbffde74..edc31c90 100644
--- a/packages/csharp/docs/Models/Components/RfpPastEvents.md
+++ b/packages/csharp/docs/Models/Components/RfpPastEvents.md
@@ -5,6 +5,6 @@ List of past RFP events.
## Fields
-| Field | Type | Required | Description |
-| --------------------------------------------------------------------- | --------------------------------------------------------------------- | --------------------------------------------------------------------- | --------------------------------------------------------------------- |
-| `Data` | List<[RfpPastEventJson](../../Models/Components/RfpPastEventJson.md)> | :heavy_minus_sign: | List of past events saved on RFP by planner. |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- |
+| `Data` | List<[RfpPastEvent](../../Models/Components/RfpPastEvent.md)> | :heavy_minus_sign: | List of past events saved on RFP by planner. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RfpQuestion.md b/packages/csharp/docs/Models/Components/RfpQuestion.md
new file mode 100644
index 00000000..0062ec2f
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/RfpQuestion.md
@@ -0,0 +1,50 @@
+# RfpQuestion
+
+Question associated with an RFP.
+
+
+## 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: | The ISO 8601 zoned date time when this record was created. | 2017-01-02T02:00:00Z |
+| `CreatedBy` | *string* | :heavy_minus_sign: | The identifier of the user that created this record. | hporter |
+| `LastModified` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when this record was updated. | 2019-02-12T03:00:00Z |
+| `LastModifiedBy` | *string* | :heavy_minus_sign: | The identifier of the user that last updated this record. | hporter |
+| `Id` | *string* | :heavy_minus_sign: | Unique identifier of the question. | |
+| `Text` | *string* | :heavy_minus_sign: | Text value of the question field. Displays to users in the UI. | Are you spending any significant time offsite and need transportation? |
+| `ShortText` | *string* | :heavy_minus_sign: | Concise version or abbreviation of the question text. Set by the planner to simplify presentation of the question in reports. | Needs offsite transportation? |
+| `HtmlText` | *string* | :heavy_minus_sign: | Html of the question. | Question Html |
+| `Code` | *string* | :heavy_minus_sign: | Question code is unique identifier for every questions within a survey (can be same across surveys). This code is used in reporting and in question and answer data tags for emails. With every new question a random question code is generated. | 4l6x |
+| `Type` | [QuestionType](../../Models/Components/QuestionType.md) | :heavy_minus_sign: | The type of question. See [this article](https://support.cvent.com/s/communityarticle/Survey-Adding-Questions) for details on each enum. | SingleChoice |
+| `Choices` | List<[Choice](../../Models/Components/Choice.md)> | :heavy_minus_sign: | List of choices for the question. | |
+| `Categories` | List<[Category](../../Models/Components/Category.md)> | :heavy_minus_sign: | List of categories for the question. | |
+| `SubCategories` | List<[TextField](../../Models/Components/TextField.md)> | :heavy_minus_sign: | List of sub categories for matrix side-by-side questions. | |
+| `NotApplicableAnswer` | [AdditionalChoice](../../Models/Components/AdditionalChoice.md) | :heavy_minus_sign: | Contains text of additional choice i.e notApplicableAnswer choice or otherAnswer choice. | |
+| `OtherAnswer` | [AdditionalChoice](../../Models/Components/AdditionalChoice.md) | :heavy_minus_sign: | Contains text of additional choice i.e notApplicableAnswer choice or otherAnswer choice. | |
+| `Comments` | *string* | :heavy_minus_sign: | Text Value of Comments Input box placeholder. | Comments Text |
+| `Required` | *bool* | :heavy_minus_sign: | True indicates this is a mandatory question field. | true |
+| `Fields` | List<[Field](../../Models/Components/Field.md)> | :heavy_minus_sign: | List of fields for form/matrix questions. | |
+| `MaxScore` | *double* | :heavy_minus_sign: | Max possible score. | 20 |
+| `TotalSum` | *long* | :heavy_minus_sign: | Total configured sum of all choices for number allocation question. | 45 |
+| `ChoiceSortOrder` | [ChoiceSortOrder](../../Models/Components/ChoiceSortOrder.md) | :heavy_minus_sign: | The sort order for the choices. `AToZ`: sorted alphabetically in ascending order. `AsEntered`: Sorted in the order they were added, oldest choices first. `Random`: Random sort. | |
+| `DisplayType` | [DisplayType](../../Models/Components/DisplayType.md) | :heavy_minus_sign: | The type of display for the field. `Bar`: It is associated with choice questions type. `DropDown`: It is associated with drop down type questions. `Horizontal`: It is associated with horizontal type questions. `List`: It is associated with list type questions. `MultiSelectBox`: It is associated with multi select box type questions. `Vertical`: It is associated with vertical type questions. | |
+| `MinSelection` | *long* | :heavy_minus_sign: | Minimum number of choices that must be selected. | 1 |
+| `MaxSelection` | *long* | :heavy_minus_sign: | Maximum number of choices that can be selected. | 3 |
+| `MinDate` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The earliest date that can be selected, starting from or after this date. | 2020-01-01 |
+| `MaxDate` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The latest date that can be selected, up to or before this date. | 2020-12-31 |
+| `ShowDateSelector` | *bool* | :heavy_minus_sign: | Indicates if this is a date range question. | true |
+| `ShowCurrentDate` | *bool* | :heavy_minus_sign: | Indicates if the current date should be shown. | true |
+| `DateAnswerFormat` | [DateAnswerFormat](../../Models/Components/DateAnswerFormat.md) | :heavy_minus_sign: | The answer format that a given date is stored in. `Date`: Answer format is stored in Date format. `DateTime`: Answer format is stored in DateTime format. `Time`: Answer format is stored in Time format. | |
+| `NumericAnswerFormat` | [NumericAnswerFormat](../../Models/Components/NumericAnswerFormat.md) | :heavy_minus_sign: | The answer format that a given number is stored in. | |
+| `UnitLabel` | *string* | :heavy_minus_sign: | Label to add before or after textbox. | miles |
+| `UnitPosition` | [UnitPosition](../../Models/Components/UnitPosition.md) | :heavy_minus_sign: | Unit position used for text box question type. | |
+| `MinLength` | *long* | :heavy_minus_sign: | Minimum number of characters that must be entered. | 5 |
+| `MaxLength` | *long* | :heavy_minus_sign: | Maximum number of characters that can be entered. | 100 |
+| `TextAnswerFormat` | [TextAnswerFormat](../../Models/Components/TextAnswerFormat.md) | :heavy_minus_sign: | Text answer format. Used for `OpenEndedTextOneLine` question types.`CustomFormat`: Answers must follow a planner defined custom format. `EmailAddress`: Answers must follow the pattern of an email address. `General`: Answers can be any string. `USPhoneNumber`: Answers must be formatted as a phone number. | |
+| `CustomAnswerFormat` | [CustomAnswerFormat](../../Models/Components/CustomAnswerFormat.md) | :heavy_minus_sign: | An object that contains custom answer format data. | |
+| `SupplierTypes` | List<[SupplierType](../../Models/Components/SupplierType.md)> | :heavy_minus_sign: | List of supplier types that can view the question on the RFP. | [
"CVB",
"HOTEL"
] |
+| `ClassificationType` | [QuestionClassificationType](../../Models/Components/QuestionClassificationType.md) | :heavy_minus_sign: | Indicates the types of RFP that can be assigned this custom question. `MEETING_ROOM`: Meeting room type RFPs can be assigned this custom question. `GUEST_ROOM`: Guest room type RFPs can be assigned this custom question. `ALL_RFPS`: All RFPs can be assigned this custom question. | |
+| `Order` | *long* | :heavy_minus_sign: | Determines the display order for questions on the RFP. Questions with smaller values appear first. | 1 |
+| `StandardQuestion` | [StandardQuestion](../../Models/Components/StandardQuestion.md) | :heavy_minus_sign: | Standard questions are selected from a predefined list of Cvent questions that can be used in an RFP. | |
+| `AiQuestionGenerationSource` | *string* | :heavy_minus_sign: | Represents the AI generation source for the custom question on RFP. This field is set during question creation and cannot be modified afterwards. | MCP-Visual Studio Code/1.107.1 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RfpQuestionJson.md b/packages/csharp/docs/Models/Components/RfpQuestionJson.md
deleted file mode 100644
index da7219c3..00000000
--- a/packages/csharp/docs/Models/Components/RfpQuestionJson.md
+++ /dev/null
@@ -1,50 +0,0 @@
-# RfpQuestionJson
-
-Question associated with an RFP.
-
-
-## 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: | The ISO 8601 zoned date time when this record was created. | 2017-01-02T02:00:00Z |
-| `CreatedBy` | *string* | :heavy_minus_sign: | The identifier of the user that created this record. | hporter |
-| `LastModified` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when this record was updated. | 2019-02-12T03:00:00Z |
-| `LastModifiedBy` | *string* | :heavy_minus_sign: | The identifier of the user that last updated this record. | hporter |
-| `Id` | *string* | :heavy_minus_sign: | Unique identifier of the question. | |
-| `Text` | *string* | :heavy_minus_sign: | Text value of the question field. Displays to users in the UI. | Are you spending any significant time offsite and need transportation? |
-| `ShortText` | *string* | :heavy_minus_sign: | Concise version or abbreviation of the question text. Set by the planner to simplify presentation of the question in reports. | Needs offsite transportation? |
-| `HtmlText` | *string* | :heavy_minus_sign: | Html of the question. | Question Html |
-| `Code` | *string* | :heavy_minus_sign: | Question code is unique identifier for every questions within a survey (can be same across surveys). This code is used in reporting and in question and answer data tags for emails. With every new question a random question code is generated. | 4l6x |
-| `Type` | [QuestionTypeJson](../../Models/Components/QuestionTypeJson.md) | :heavy_minus_sign: | The type of question. See [this article](https://support.cvent.com/s/communityarticle/Survey-Adding-Questions) for details on each enum. | SingleChoice |
-| `Choices` | List<[ChoiceJson](../../Models/Components/ChoiceJson.md)> | :heavy_minus_sign: | List of choices for the question. | |
-| `Categories` | List<[CategoryJson](../../Models/Components/CategoryJson.md)> | :heavy_minus_sign: | List of categories for the question. | |
-| `SubCategories` | List<[TextFieldJson](../../Models/Components/TextFieldJson.md)> | :heavy_minus_sign: | List of sub categories for matrix side-by-side questions. | |
-| `NotApplicableAnswer` | [AdditionalChoiceJson2](../../Models/Components/AdditionalChoiceJson2.md) | :heavy_minus_sign: | Contains text of additional choice i.e notApplicableAnswer choice or otherAnswer choice. | |
-| `OtherAnswer` | [AdditionalChoiceJson2](../../Models/Components/AdditionalChoiceJson2.md) | :heavy_minus_sign: | Contains text of additional choice i.e notApplicableAnswer choice or otherAnswer choice. | |
-| `Comments` | *string* | :heavy_minus_sign: | Text Value of Comments Input box placeholder. | Comments Text |
-| `Required` | *bool* | :heavy_minus_sign: | True indicates this is a mandatory question field. | true |
-| `Fields` | List<[FieldJson](../../Models/Components/FieldJson.md)> | :heavy_minus_sign: | List of fields for form/matrix questions. | |
-| `MaxScore` | *double* | :heavy_minus_sign: | Max possible score. | 20 |
-| `TotalSum` | *long* | :heavy_minus_sign: | Total configured sum of all choices for number allocation question. | 45 |
-| `ChoiceSortOrder` | [ChoiceSortOrderJson](../../Models/Components/ChoiceSortOrderJson.md) | :heavy_minus_sign: | The sort order for the choices. `AToZ`: sorted alphabetically in ascending order. `AsEntered`: Sorted in the order they were added, oldest choices first. `Random`: Random sort. | |
-| `DisplayType` | [DisplayTypeJson](../../Models/Components/DisplayTypeJson.md) | :heavy_minus_sign: | The type of display for the field. `Bar`: It is associated with choice questions type. `DropDown`: It is associated with drop down type questions. `Horizontal`: It is associated with horizontal type questions. `List`: It is associated with list type questions. `MultiSelectBox`: It is associated with multi select box type questions. `Vertical`: It is associated with vertical type questions. | |
-| `MinSelection` | *long* | :heavy_minus_sign: | Minimum number of choices that must be selected. | 1 |
-| `MaxSelection` | *long* | :heavy_minus_sign: | Maximum number of choices that can be selected. | 3 |
-| `MinDate` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The earliest date that can be selected, starting from or after this date. | 2020-01-01 |
-| `MaxDate` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The latest date that can be selected, up to or before this date. | 2020-12-31 |
-| `ShowDateSelector` | *bool* | :heavy_minus_sign: | Indicates if this is a date range question. | true |
-| `ShowCurrentDate` | *bool* | :heavy_minus_sign: | Indicates if the current date should be shown. | true |
-| `DateAnswerFormat` | [DateAnswerFormatJson](../../Models/Components/DateAnswerFormatJson.md) | :heavy_minus_sign: | The answer format that a given date is stored in. `Date`: Answer format is stored in Date format. `DateTime`: Answer format is stored in DateTime format. `Time`: Answer format is stored in Time format. | |
-| `NumericAnswerFormat` | [NumericAnswerFormatJson](../../Models/Components/NumericAnswerFormatJson.md) | :heavy_minus_sign: | The answer format that a given number is stored in. | |
-| `UnitLabel` | *string* | :heavy_minus_sign: | Label to add before or after textbox. | miles |
-| `UnitPosition` | [UnitPositionJson](../../Models/Components/UnitPositionJson.md) | :heavy_minus_sign: | Unit position used for text box question type. | |
-| `MinLength` | *long* | :heavy_minus_sign: | Minimum number of characters that must be entered. | 5 |
-| `MaxLength` | *long* | :heavy_minus_sign: | Maximum number of characters that can be entered. | 100 |
-| `TextAnswerFormat` | [TextAnswerFormatJson](../../Models/Components/TextAnswerFormatJson.md) | :heavy_minus_sign: | Text answer format. Used for `OpenEndedTextOneLine` question types.`CustomFormat`: Answers must follow a planner defined custom format. `EmailAddress`: Answers must follow the pattern of an email address. `General`: Answers can be any string. `USPhoneNumber`: Answers must be formatted as a phone number. | |
-| `CustomAnswerFormat` | [CustomAnswerFormat](../../Models/Components/CustomAnswerFormat.md) | :heavy_minus_sign: | An object that contains custom answer format data. | |
-| `SupplierTypes` | List<[SupplierTypeJson](../../Models/Components/SupplierTypeJson.md)> | :heavy_minus_sign: | List of supplier types that can view the question on the RFP. | [
"CVB",
"HOTEL"
] |
-| `ClassificationType` | [QuestionClassificationTypeJson](../../Models/Components/QuestionClassificationTypeJson.md) | :heavy_minus_sign: | Indicates the types of RFP that can be assigned this custom question. `MEETING_ROOM`: Meeting room type RFPs can be assigned this custom question. `GUEST_ROOM`: Guest room type RFPs can be assigned this custom question. `ALL_RFPS`: All RFPs can be assigned this custom question. | |
-| `Order` | *long* | :heavy_minus_sign: | Determines the display order for questions on the RFP. Questions with smaller values appear first. | 1 |
-| `StandardQuestion` | [StandardQuestionJson](../../Models/Components/StandardQuestionJson.md) | :heavy_minus_sign: | Standard questions are selected from a predefined list of Cvent questions that can be used in an RFP. | |
-| `AiQuestionGenerationSource` | *string* | :heavy_minus_sign: | Represents the AI generation source for the custom question on RFP. This field is set during question creation and cannot be modified afterwards. | MCP-Visual Studio Code/1.107.1 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RfpRecipientLogEntry.md b/packages/csharp/docs/Models/Components/RfpRecipientLogEntry.md
new file mode 100644
index 00000000..745bb022
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/RfpRecipientLogEntry.md
@@ -0,0 +1,16 @@
+# RfpRecipientLogEntry
+
+Contains the log entry when the recipient was copied on an RFP.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- |
+| `Supplier` | [RfpRecipientLogEntrySupplier](../../Models/Components/RfpRecipientLogEntrySupplier.md) | :heavy_minus_sign: | The supplier associated with the recipient. | |
+| `RecipientIdentifier` | *string* | :heavy_minus_sign: | This can either be the email address or the code of the recipient. This will not be present if the target type is MEETING_BROKER | jwest@example.com |
+| `Active` | *bool* | :heavy_minus_sign: | True indicates that the recipient is active for receiving emails. | true |
+| `AddedByNso` | *bool* | :heavy_minus_sign: | True indicates that the recipient was added by the National Sales Office. | false |
+| `TargetType` | [TargetType](../../Models/Components/TargetType.md) | :heavy_minus_sign: | The target type can either refer to the type of recipient or the type of action that made the recipient a participant in the RFP process. | PUBLIC_NSO |
+| `SendDateTime` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 send date and time in UTC. | 2024-08-20T00:00:01Z |
+| `Message` | [RfpRecipientLogEntryMessage](../../Models/Components/RfpRecipientLogEntryMessage.md) | :heavy_minus_sign: | Message for the recipient. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RfpRecipientLogEntryJson.md b/packages/csharp/docs/Models/Components/RfpRecipientLogEntryJson.md
deleted file mode 100644
index 716154a8..00000000
--- a/packages/csharp/docs/Models/Components/RfpRecipientLogEntryJson.md
+++ /dev/null
@@ -1,16 +0,0 @@
-# RfpRecipientLogEntryJson
-
-Contains the log entry when the recipient was copied on an RFP.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- |
-| `Supplier` | [RfpRecipientLogEntryJsonSupplier](../../Models/Components/RfpRecipientLogEntryJsonSupplier.md) | :heavy_minus_sign: | The supplier associated with the recipient. | |
-| `RecipientIdentifier` | *string* | :heavy_minus_sign: | This can either be the email address or the code of the recipient. This will not be present if the target type is MEETING_BROKER | jwest@example.com |
-| `Active` | *bool* | :heavy_minus_sign: | True indicates that the recipient is active for receiving emails. | true |
-| `AddedByNso` | *bool* | :heavy_minus_sign: | True indicates that the recipient was added by the National Sales Office. | false |
-| `TargetType` | [TargetTypeJson](../../Models/Components/TargetTypeJson.md) | :heavy_minus_sign: | The target type can either refer to the type of recipient or the type of action that made the recipient a participant in the RFP process. | PUBLIC_NSO |
-| `SendDateTime` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 send date and time in UTC. | 2024-08-20T00:00:01Z |
-| `Message` | [RfpRecipientLogEntryJsonMessage](../../Models/Components/RfpRecipientLogEntryJsonMessage.md) | :heavy_minus_sign: | Message for the recipient. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RfpRecipientLogEntryJsonMessage.md b/packages/csharp/docs/Models/Components/RfpRecipientLogEntryJsonMessage.md
deleted file mode 100644
index 41b5185b..00000000
--- a/packages/csharp/docs/Models/Components/RfpRecipientLogEntryJsonMessage.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# RfpRecipientLogEntryJsonMessage
-
-Message for the recipient.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------- | ------------------------------------- | ------------------------------------- | ------------------------------------- | ------------------------------------- |
-| `Id` | *string* | :heavy_minus_sign: | The unique identifier of the message. | a1c776ab-51ee-44a7-8720-b3dfc44d689b |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RfpRecipientLogEntryJsonSupplier.md b/packages/csharp/docs/Models/Components/RfpRecipientLogEntryJsonSupplier.md
deleted file mode 100644
index 0833ad03..00000000
--- a/packages/csharp/docs/Models/Components/RfpRecipientLogEntryJsonSupplier.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# RfpRecipientLogEntryJsonSupplier
-
-The supplier associated with the recipient.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| -------------------------------------- | -------------------------------------- | -------------------------------------- | -------------------------------------- | -------------------------------------- |
-| `Id` | *string* | :heavy_minus_sign: | The unique identifier of the supplier. | d024cc04-adf1-443c-854a-97ab9f5a14b2 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RfpRecipientLogEntryMessage.md b/packages/csharp/docs/Models/Components/RfpRecipientLogEntryMessage.md
new file mode 100644
index 00000000..e4492a7f
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/RfpRecipientLogEntryMessage.md
@@ -0,0 +1,10 @@
+# RfpRecipientLogEntryMessage
+
+Message for the recipient.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------- | ------------------------------------- | ------------------------------------- | ------------------------------------- | ------------------------------------- |
+| `Id` | *string* | :heavy_minus_sign: | The unique identifier of the message. | a1c776ab-51ee-44a7-8720-b3dfc44d689b |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RfpRecipientLogEntrySupplier.md b/packages/csharp/docs/Models/Components/RfpRecipientLogEntrySupplier.md
new file mode 100644
index 00000000..7cbed908
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/RfpRecipientLogEntrySupplier.md
@@ -0,0 +1,10 @@
+# RfpRecipientLogEntrySupplier
+
+The supplier associated with the recipient.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| -------------------------------------- | -------------------------------------- | -------------------------------------- | -------------------------------------- | -------------------------------------- |
+| `Id` | *string* | :heavy_minus_sign: | The unique identifier of the supplier. | d024cc04-adf1-443c-854a-97ab9f5a14b2 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RfpResponseReason.md b/packages/csharp/docs/Models/Components/RfpResponseReason.md
new file mode 100644
index 00000000..6ee17d25
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/RfpResponseReason.md
@@ -0,0 +1,58 @@
+# RfpResponseReason
+
+Reason given for a response to an RFP.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = RfpResponseReason.BookedAnotherVenueOrDestination;
+```
+
+
+## Values
+
+| Name | Value |
+| ---------------------------------------- | ---------------------------------------- |
+| `BookedAnotherVenueOrDestination` | BOOKED_ANOTHER_VENUE_OR_DESTINATION |
+| `ClientBookedDirectly` | CLIENT_BOOKED_DIRECTLY |
+| `CompetitorContractAgreement` | COMPETITOR_CONTRACT_AGREEMENT |
+| `DatesOrPattern` | DATES_OR_PATTERN |
+| `DecisionDatePassed` | DECISION_DATE_PASSED |
+| `DidNotMeetRequirements` | DID_NOT_MEET_REQUIREMENTS |
+| `EpidemicOrPandemic` | EPIDEMIC_OR_PANDEMIC |
+| `EventCancelled` | EVENT_CANCELLED |
+| `EventPostponed` | EVENT_POSTPONED |
+| `FoodAndBeverageMinimumTooHigh` | FOOD_AND_BEVERAGE_MINIMUM_TOO_HIGH |
+| `FoodAndBeverageTooLow` | FOOD_AND_BEVERAGE_TOO_LOW |
+| `IncompleteRfp` | INCOMPLETE_RFP |
+| `LateResponse` | LATE_RESPONSE |
+| `LowBudget` | LOW_BUDGET |
+| `MedicalEmergency` | MEDICAL_EMERGENCY |
+| `MeetingRoomRentalTooHigh` | MEETING_ROOM_RENTAL_TOO_HIGH |
+| `MeetingSpaceCeilingHeight` | MEETING_SPACE_CEILING_HEIGHT |
+| `MeetingSpaceNoLongerAvailable` | MEETING_SPACE_NO_LONGER_AVAILABLE |
+| `MeetingSpaceUnavailable` | MEETING_SPACE_UNAVAILABLE |
+| `NaturalDisaster` | NATURAL_DISASTER |
+| `NoFoodAndBeverage` | NO_FOOD_AND_BEVERAGE |
+| `Other` | OTHER |
+| `PoliticalOrCivilUnrest` | POLITICAL_OR_CIVIL_UNREST |
+| `PreferredOrAlternateDatesUnavailable` | PREFERRED_OR_ALTERNATE_DATES_UNAVAILABLE |
+| `PropertyAmenitiesOrServices` | PROPERTY_AMENITIES_OR_SERVICES |
+| `PropertyLocation` | PROPERTY_LOCATION |
+| `Renovations` | RENOVATIONS |
+| `RequestedRoomRateTooLow` | REQUESTED_ROOM_RATE_TOO_LOW |
+| `RequirementsChanged` | REQUIREMENTS_CHANGED |
+| `RoomsToSpaceRatio` | ROOMS_TO_SPACE_RATIO |
+| `SelectedOtherCity` | SELECTED_OTHER_CITY |
+| `SelectedOtherHotelOrVenue` | SELECTED_OTHER_HOTEL_OR_VENUE |
+| `SizeOfMeetingSpace` | SIZE_OF_MEETING_SPACE |
+| `GuestRoomRateTooHigh` | GUEST_ROOM_RATE_TOO_HIGH |
+| `GuestRoomsNoLongerAvailable` | GUEST_ROOMS_NO_LONGER_AVAILABLE |
+| `GuestRoomsUnavailable` | GUEST_ROOMS_UNAVAILABLE |
+| `SuiteAvailability` | SUITE_AVAILABILITY |
+| `TooSpaceIntensive` | TOO_SPACE_INTENSIVE |
+| `VenuePermanentlyClosed` | VENUE_PERMANENTLY_CLOSED |
+| `VenueTemporarilyClosed` | VENUE_TEMPORARILY_CLOSED |
+| `VenueTooSmall` | VENUE_TOO_SMALL |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RfpResponseReasonJson.md b/packages/csharp/docs/Models/Components/RfpResponseReasonJson.md
deleted file mode 100644
index ae6a19a7..00000000
--- a/packages/csharp/docs/Models/Components/RfpResponseReasonJson.md
+++ /dev/null
@@ -1,58 +0,0 @@
-# RfpResponseReasonJson
-
-Reason given for a response to an RFP.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = RfpResponseReasonJson.BookedAnotherVenueOrDestination;
-```
-
-
-## Values
-
-| Name | Value |
-| ---------------------------------------- | ---------------------------------------- |
-| `BookedAnotherVenueOrDestination` | BOOKED_ANOTHER_VENUE_OR_DESTINATION |
-| `ClientBookedDirectly` | CLIENT_BOOKED_DIRECTLY |
-| `CompetitorContractAgreement` | COMPETITOR_CONTRACT_AGREEMENT |
-| `DatesOrPattern` | DATES_OR_PATTERN |
-| `DecisionDatePassed` | DECISION_DATE_PASSED |
-| `DidNotMeetRequirements` | DID_NOT_MEET_REQUIREMENTS |
-| `EpidemicOrPandemic` | EPIDEMIC_OR_PANDEMIC |
-| `EventCancelled` | EVENT_CANCELLED |
-| `EventPostponed` | EVENT_POSTPONED |
-| `FoodAndBeverageMinimumTooHigh` | FOOD_AND_BEVERAGE_MINIMUM_TOO_HIGH |
-| `FoodAndBeverageTooLow` | FOOD_AND_BEVERAGE_TOO_LOW |
-| `IncompleteRfp` | INCOMPLETE_RFP |
-| `LateResponse` | LATE_RESPONSE |
-| `LowBudget` | LOW_BUDGET |
-| `MedicalEmergency` | MEDICAL_EMERGENCY |
-| `MeetingRoomRentalTooHigh` | MEETING_ROOM_RENTAL_TOO_HIGH |
-| `MeetingSpaceCeilingHeight` | MEETING_SPACE_CEILING_HEIGHT |
-| `MeetingSpaceNoLongerAvailable` | MEETING_SPACE_NO_LONGER_AVAILABLE |
-| `MeetingSpaceUnavailable` | MEETING_SPACE_UNAVAILABLE |
-| `NaturalDisaster` | NATURAL_DISASTER |
-| `NoFoodAndBeverage` | NO_FOOD_AND_BEVERAGE |
-| `Other` | OTHER |
-| `PoliticalOrCivilUnrest` | POLITICAL_OR_CIVIL_UNREST |
-| `PreferredOrAlternateDatesUnavailable` | PREFERRED_OR_ALTERNATE_DATES_UNAVAILABLE |
-| `PropertyAmenitiesOrServices` | PROPERTY_AMENITIES_OR_SERVICES |
-| `PropertyLocation` | PROPERTY_LOCATION |
-| `Renovations` | RENOVATIONS |
-| `RequestedRoomRateTooLow` | REQUESTED_ROOM_RATE_TOO_LOW |
-| `RequirementsChanged` | REQUIREMENTS_CHANGED |
-| `RoomsToSpaceRatio` | ROOMS_TO_SPACE_RATIO |
-| `SelectedOtherCity` | SELECTED_OTHER_CITY |
-| `SelectedOtherHotelOrVenue` | SELECTED_OTHER_HOTEL_OR_VENUE |
-| `SizeOfMeetingSpace` | SIZE_OF_MEETING_SPACE |
-| `GuestRoomRateTooHigh` | GUEST_ROOM_RATE_TOO_HIGH |
-| `GuestRoomsNoLongerAvailable` | GUEST_ROOMS_NO_LONGER_AVAILABLE |
-| `GuestRoomsUnavailable` | GUEST_ROOMS_UNAVAILABLE |
-| `SuiteAvailability` | SUITE_AVAILABILITY |
-| `TooSpaceIntensive` | TOO_SPACE_INTENSIVE |
-| `VenuePermanentlyClosed` | VENUE_PERMANENTLY_CLOSED |
-| `VenueTemporarilyClosed` | VENUE_TEMPORARILY_CLOSED |
-| `VenueTooSmall` | VENUE_TOO_SMALL |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RfpStatus1.md b/packages/csharp/docs/Models/Components/RfpStatus1.md
new file mode 100644
index 00000000..e1237d6b
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/RfpStatus1.md
@@ -0,0 +1,24 @@
+# RfpStatus1
+
+Represents state of the RFP.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = RfpStatus1.Pending;
+```
+
+
+## Values
+
+| Name | Value |
+| ----------- | ----------- |
+| `Pending` | PENDING |
+| `Active` | ACTIVE |
+| `Awarded` | AWARDED |
+| `Draft` | DRAFT |
+| `Historic` | HISTORIC |
+| `Cancelled` | CANCELLED |
+| `Deleted` | DELETED |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RfpStatusJson0.md b/packages/csharp/docs/Models/Components/RfpStatusJson0.md
deleted file mode 100644
index 56db8631..00000000
--- a/packages/csharp/docs/Models/Components/RfpStatusJson0.md
+++ /dev/null
@@ -1,24 +0,0 @@
-# RfpStatusJson0
-
-Represents state of the RFP.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = RfpStatusJson0.Pending;
-```
-
-
-## Values
-
-| Name | Value |
-| ----------- | ----------- |
-| `Pending` | PENDING |
-| `Active` | ACTIVE |
-| `Awarded` | AWARDED |
-| `Draft` | DRAFT |
-| `Historic` | HISTORIC |
-| `Cancelled` | CANCELLED |
-| `Deleted` | DELETED |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RfpSupplier.md b/packages/csharp/docs/Models/Components/RfpSupplier.md
new file mode 100644
index 00000000..35b1c0b1
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/RfpSupplier.md
@@ -0,0 +1,39 @@
+# RfpSupplier
+
+Supplier data for an RFP.
+
+
+## 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: | The ISO 8601 zoned date time when this record was created. | 2017-01-02T02:00:00Z |
+| `CreatedBy` | *string* | :heavy_minus_sign: | The identifier of the user that created this record. | hporter |
+| `LastModified` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when this record was updated. | 2019-02-12T03:00:00Z |
+| `LastModifiedBy` | *string* | :heavy_minus_sign: | The identifier of the user that last updated this record. | hporter |
+| `Supplier` | [ReferenceToSupplier](../../Models/Components/ReferenceToSupplier.md) | :heavy_minus_sign: | The supplier associated with the RFP. | |
+| `Rfp` | [ReferenceToRFP](../../Models/Components/ReferenceToRFP.md) | :heavy_minus_sign: | N/A | |
+| `ExternalSupplier` | [ExternalSupplier](../../Models/Components/ExternalSupplier.md) | :heavy_minus_sign: | External supplier associated with the RFP. If planners cannot find a supplier in Cvent, they can add the supplier by providing the name when awarding the RFP. | |
+| `AssociatedAdvertisements` | [SupplierAssociatedAds](../../Models/Components/SupplierAssociatedAds.md) | :heavy_minus_sign: | N/A | |
+| `ProposalInProgress` | *bool* | :heavy_minus_sign: | True indicates that proposal creation is in progress by supplier. | true |
+| `InternalNote` | *string* | :heavy_minus_sign: | Internal note by planner for supplier. This is not visible to the supplier. | Don't award this RFP to the same venue as last year. |
+| `LeadSource` | [RfpSupplierLeadSource](../../Models/Components/RfpSupplierLeadSource.md) | :heavy_minus_sign: | N/A | |
+| `LargestMeetingRoomMet` | *bool* | :heavy_minus_sign: | True indicates the largest meeting room criteria is met. | true |
+| `NumberOfGuestRoomsMet` | *bool* | :heavy_minus_sign: | True indicates the number of guest rooms criteria is met. | true |
+| `TotalMeetingSpaceMet` | *bool* | :heavy_minus_sign: | True indicates the total meeting space criteria is met. | true |
+| `Promotion` | [Promotion](../../Models/Components/Promotion.md) | :heavy_minus_sign: | Promotion applied by planner while adding supplier on RFP. | |
+| `RecommendationNote` | *string* | :heavy_minus_sign: | Recommendations added by planner for supplier. | The staff should be courteous. |
+| `ShortlistOrder` | *long* | :heavy_minus_sign: | Shortlisted order for the supplier. | 45 |
+| `Showcase` | *bool* | :heavy_minus_sign: | True indicates the supplier was added by using RFP showcase feature. | true |
+| `Starred` | *bool* | :heavy_minus_sign: | True indicates the RFP is starred by supplier. This is not visible to the planner. | false |
+| `Status` | [RfpSupplierStatus](../../Models/Components/RfpSupplierStatus.md) | :heavy_minus_sign: | N/A | AWAITING_PROPOSAL |
+| `StatusChangedDateTime` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 date time (in UTC) when the status was last changed. | 2017-01-02T02:59:59.999Z |
+| `Responder` | *string* | :heavy_minus_sign: | Name of the recipient associated with supplier who responded to the RFP. | John Doe |
+| `Response` | [SupplierResponse](../../Models/Components/SupplierResponse.md) | :heavy_minus_sign: | N/A | |
+| `ExternalProposalId` | *string* | :heavy_minus_sign: | Unique identifier for proposal created by supplier in the external system where it originated. | 143227 |
+| `ExternalId` | *string* | :heavy_minus_sign: | Unique identifier for RFP in the external system where it originated. | 234123 |
+| `ForwardId` | *string* | :heavy_minus_sign: | The unique identifier generated when supplier forwards the RFP to other suppliers. | d024cc04-adf1-443c-854a-97ab9f5a14b2 |
+| `LastSentDateTime` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 date time (in UTC) when the RFP was last sent to the supplier. | 2017-01-02T02:59:59.999Z |
+| `LastViewedDateTime` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 date time (in UTC) when the RFP was last viewed by the supplier. | 2017-01-02T02:59:59.999Z |
+| `SentDateTime` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 date time (in UTC) when the RFP was originally sent to the supplier. | 2017-01-02T02:59:59.999Z |
+| `SentToNso` | *bool* | :heavy_minus_sign: | True indicates the RFP was sent to NSO (National Sales Office) associated with supplier. | false |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RfpSupplierJson.md b/packages/csharp/docs/Models/Components/RfpSupplierJson.md
deleted file mode 100644
index bf9c2405..00000000
--- a/packages/csharp/docs/Models/Components/RfpSupplierJson.md
+++ /dev/null
@@ -1,39 +0,0 @@
-# RfpSupplierJson
-
-Supplier data for an RFP.
-
-
-## 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: | The ISO 8601 zoned date time when this record was created. | 2017-01-02T02:00:00Z |
-| `CreatedBy` | *string* | :heavy_minus_sign: | The identifier of the user that created this record. | hporter |
-| `LastModified` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when this record was updated. | 2019-02-12T03:00:00Z |
-| `LastModifiedBy` | *string* | :heavy_minus_sign: | The identifier of the user that last updated this record. | hporter |
-| `Supplier` | [ReferenceToSupplier](../../Models/Components/ReferenceToSupplier.md) | :heavy_check_mark: | The supplier associated with the RFP. | |
-| `Rfp` | [ReferenceToRFP](../../Models/Components/ReferenceToRFP.md) | :heavy_minus_sign: | N/A | |
-| `ExternalSupplier` | [ExternalSupplier](../../Models/Components/ExternalSupplier.md) | :heavy_minus_sign: | External supplier associated with the RFP. If planners cannot find a supplier in Cvent, they can add the supplier by providing the name when awarding the RFP. | |
-| `AssociatedAdvertisements` | [SupplierAssociatedAds](../../Models/Components/SupplierAssociatedAds.md) | :heavy_minus_sign: | N/A | |
-| `ProposalInProgress` | *bool* | :heavy_minus_sign: | True indicates that proposal creation is in progress by supplier. | true |
-| `InternalNote` | *string* | :heavy_minus_sign: | Internal note by planner for supplier. This is not visible to the supplier. | Don't award this RFP to the same venue as last year. |
-| `LeadSource` | [LeadSource](../../Models/Components/LeadSource.md) | :heavy_minus_sign: | N/A | |
-| `LargestMeetingRoomMet` | *bool* | :heavy_minus_sign: | True indicates the largest meeting room criteria is met. | true |
-| `NumberOfGuestRoomsMet` | *bool* | :heavy_minus_sign: | True indicates the number of guest rooms criteria is met. | true |
-| `TotalMeetingSpaceMet` | *bool* | :heavy_minus_sign: | True indicates the total meeting space criteria is met. | true |
-| `Promotion` | [Promotion](../../Models/Components/Promotion.md) | :heavy_minus_sign: | Promotion applied by planner while adding supplier on RFP. | |
-| `RecommendationNote` | *string* | :heavy_minus_sign: | Recommendations added by planner for supplier. | The staff should be courteous. |
-| `ShortlistOrder` | *long* | :heavy_minus_sign: | Shortlisted order for the supplier. | 45 |
-| `Showcase` | *bool* | :heavy_minus_sign: | True indicates the supplier was added by using RFP showcase feature. | true |
-| `Starred` | *bool* | :heavy_minus_sign: | True indicates the RFP is starred by supplier. This is not visible to the planner. | false |
-| `Status` | [RfpSupplierStatus](../../Models/Components/RfpSupplierStatus.md) | :heavy_minus_sign: | N/A | AWAITING_PROPOSAL |
-| `StatusChangedDateTime` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 date time (in UTC) when the status was last changed. | 2017-01-02T02:59:59.999Z |
-| `Responder` | *string* | :heavy_minus_sign: | Name of the recipient associated with supplier who responded to the RFP. | John Doe |
-| `Response` | [SupplierResponse](../../Models/Components/SupplierResponse.md) | :heavy_minus_sign: | N/A | |
-| `ExternalProposalId` | *string* | :heavy_minus_sign: | Unique identifier for proposal created by supplier in the external system where it originated. | 143227 |
-| `ExternalId` | *string* | :heavy_minus_sign: | Unique identifier for RFP in the external system where it originated. | 234123 |
-| `ForwardId` | *string* | :heavy_minus_sign: | The unique identifier generated when supplier forwards the RFP to other suppliers. | d024cc04-adf1-443c-854a-97ab9f5a14b2 |
-| `LastSentDateTime` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 date time (in UTC) when the RFP was last sent to the supplier. | 2017-01-02T02:59:59.999Z |
-| `LastViewedDateTime` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 date time (in UTC) when the RFP was last viewed by the supplier. | 2017-01-02T02:59:59.999Z |
-| `SentDateTime` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 date time (in UTC) when the RFP was originally sent to the supplier. | 2017-01-02T02:59:59.999Z |
-| `SentToNso` | *bool* | :heavy_minus_sign: | True indicates the RFP was sent to NSO (National Sales Office) associated with supplier. | false |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RfpSupplierLeadSource.md b/packages/csharp/docs/Models/Components/RfpSupplierLeadSource.md
new file mode 100644
index 00000000..3b29a4de
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/RfpSupplierLeadSource.md
@@ -0,0 +1,11 @@
+# RfpSupplierLeadSource
+
+Lead source details.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Id` | *string* | :heavy_minus_sign: | Unique identifier for source generating the RFP. Details about this lead source can be fetched using lead source API. | 50dc08af-24a9-4d01-84be-3d43133dc945 |
+| `Section` | [LeadSourceSection](../../Models/Components/LeadSourceSection.md) | :heavy_minus_sign: | Represents lead source section details, which is a sub area of source generating the RFP. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RfpType1.md b/packages/csharp/docs/Models/Components/RfpType1.md
new file mode 100644
index 00000000..5a4e574a
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/RfpType1.md
@@ -0,0 +1,22 @@
+# RfpType1
+
+RFP types based on event requirements.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = RfpType1.MeetingSpaceAndGuestRooms;
+```
+
+
+## Values
+
+| Name | Value |
+| ----------------------------- | ----------------------------- |
+| `MeetingSpaceAndGuestRooms` | MEETING_SPACE_AND_GUEST_ROOMS |
+| `MeetingSpaceOnly` | MEETING_SPACE_ONLY |
+| `GuestRoomsOnly` | GUEST_ROOMS_ONLY |
+| `RestaurantRfp` | RESTAURANT_RFP |
+| `ServiceProvider` | SERVICE_PROVIDER |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RfpTypeJson0.md b/packages/csharp/docs/Models/Components/RfpTypeJson0.md
deleted file mode 100644
index 94c6431f..00000000
--- a/packages/csharp/docs/Models/Components/RfpTypeJson0.md
+++ /dev/null
@@ -1,22 +0,0 @@
-# RfpTypeJson0
-
-RFP types based on event requirements.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = RfpTypeJson0.MeetingSpaceAndGuestRooms;
-```
-
-
-## Values
-
-| Name | Value |
-| ----------------------------- | ----------------------------- |
-| `MeetingSpaceAndGuestRooms` | MEETING_SPACE_AND_GUEST_ROOMS |
-| `MeetingSpaceOnly` | MEETING_SPACE_ONLY |
-| `GuestRoomsOnly` | GUEST_ROOMS_ONLY |
-| `RestaurantRfp` | RESTAURANT_RFP |
-| `ServiceProvider` | SERVICE_PROVIDER |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RoomBedTypeJson.md b/packages/csharp/docs/Models/Components/RoomBedTypeJson.md
new file mode 100644
index 00000000..3acc5e7b
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/RoomBedTypeJson.md
@@ -0,0 +1,26 @@
+# RoomBedTypeJson
+
+Code representing the bed type.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = RoomBedTypeJson.SofaBed;
+```
+
+
+## Values
+
+| Name | Value |
+| ------------ | ------------ |
+| `SofaBed` | sofa_bed |
+| `Double` | double |
+| `Full` | full |
+| `King` | king |
+| `Murphy` | murphy |
+| `Queen` | queen |
+| `RunOfHouse` | run_of_house |
+| `Single` | single |
+| `Twin` | twin |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RoomBedTypeJson1.md b/packages/csharp/docs/Models/Components/RoomBedTypeJson1.md
deleted file mode 100644
index 0739c692..00000000
--- a/packages/csharp/docs/Models/Components/RoomBedTypeJson1.md
+++ /dev/null
@@ -1,26 +0,0 @@
-# RoomBedTypeJson1
-
-Code representing the bed type.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = RoomBedTypeJson1.SofaBed;
-```
-
-
-## Values
-
-| Name | Value |
-| ------------ | ------------ |
-| `SofaBed` | sofa_bed |
-| `Double` | double |
-| `Full` | full |
-| `King` | king |
-| `Murphy` | murphy |
-| `Queen` | queen |
-| `RunOfHouse` | run_of_house |
-| `Single` | single |
-| `Twin` | twin |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RoomBlock.md b/packages/csharp/docs/Models/Components/RoomBlock.md
new file mode 100644
index 00000000..b3d0a921
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/RoomBlock.md
@@ -0,0 +1,14 @@
+# RoomBlock
+
+Contains details related to room allotment for a day.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
+| `Id` | *string* | :heavy_minus_sign: | Unique identifier for the room block. | 1f6193da-e12b-4638-b1e2-13dd60d0adeb |
+| `Date` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The ISO 8601 date when the rooms are required. | 2025-10-13 |
+| `DayNumber` | *long* | :heavy_minus_sign: | Counter for day number. | 3 |
+| `TotalRooms` | *long* | :heavy_minus_sign: | Total number of rooms required for the day. | 24 |
+| `Details` | List<[RoomBlockDetails](../../Models/Components/RoomBlockDetails.md)> | :heavy_minus_sign: | Contains detail of quantity required for each room type. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RoomBlockDetails.md b/packages/csharp/docs/Models/Components/RoomBlockDetails.md
new file mode 100644
index 00000000..d9a7d318
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/RoomBlockDetails.md
@@ -0,0 +1,11 @@
+# RoomBlockDetails
+
+Contains details related to room allotment for a room type.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Quantity` | *long* | :heavy_minus_sign: | Quantity of rooms required. | 24 |
+| `Type` | [GuestRoomType](../../Models/Components/GuestRoomType.md) | :heavy_minus_sign: | Guest room type. `ANY`: Room can be any type. `SINGLE`: Room with one bed. `DOUBLE`: Room with two beds. `SUITE`: Room is an entire suite. `STAFF`: Room is for staff. | DOUBLE |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RoomBlockDetailsJson.md b/packages/csharp/docs/Models/Components/RoomBlockDetailsJson.md
deleted file mode 100644
index 1c35f482..00000000
--- a/packages/csharp/docs/Models/Components/RoomBlockDetailsJson.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# RoomBlockDetailsJson
-
-Contains details related to room allotment for a room type.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Quantity` | *long* | :heavy_minus_sign: | Quantity of rooms required. | 24 |
-| `Type` | [GuestRoomTypeJson](../../Models/Components/GuestRoomTypeJson.md) | :heavy_minus_sign: | Guest room type. `ANY`: Room can be any type. `SINGLE`: Room with one bed. `DOUBLE`: Room with two beds. `SUITE`: Room is an entire suite. `STAFF`: Room is for staff. | DOUBLE |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RoomBlockJson.md b/packages/csharp/docs/Models/Components/RoomBlockJson.md
deleted file mode 100644
index 9b63859b..00000000
--- a/packages/csharp/docs/Models/Components/RoomBlockJson.md
+++ /dev/null
@@ -1,14 +0,0 @@
-# RoomBlockJson
-
-Contains details related to room allotment for a day.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_minus_sign: | Unique identifier for the room block. | 1f6193da-e12b-4638-b1e2-13dd60d0adeb |
-| `Date` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The ISO 8601 date when the rooms are required. | 2025-10-13 |
-| `DayNumber` | *long* | :heavy_minus_sign: | Counter for day number. | 3 |
-| `TotalRooms` | *long* | :heavy_minus_sign: | Total number of rooms required for the day. | 24 |
-| `Details` | List<[RoomBlockDetailsJson](../../Models/Components/RoomBlockDetailsJson.md)> | :heavy_minus_sign: | Contains detail of quantity required for each room type. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ScoresJson.md b/packages/csharp/docs/Models/Components/ScoresJson.md
index 68cb9dfa..a2175a47 100644
--- a/packages/csharp/docs/Models/Components/ScoresJson.md
+++ b/packages/csharp/docs/Models/Components/ScoresJson.md
@@ -12,6 +12,6 @@ Insight score and ranking.
| `LastModified` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when this record was updated. | 2019-02-12T03:00:00Z |
| `LastModifiedBy` | *string* | :heavy_minus_sign: | The identifier of the user that last updated this record. | hporter |
| `Attendee` | [ScoresJsonAttendee](../../Models/Components/ScoresJsonAttendee.md) | :heavy_check_mark: | The attendee with points in this engagement score. | |
-| `Event` | [EventJson6](../../Models/Components/EventJson6.md) | :heavy_check_mark: | An event reference used in attendee insights to identify the event context for engagement data | |
+| `Event` | [EventJson5](../../Models/Components/EventJson5.md) | :heavy_check_mark: | An event reference used in attendee insights to identify the event context for engagement data | |
| `Points` | *long* | :heavy_minus_sign: | The number of points earned by an attendee in this engagement score. | 45 |
| `Rank` | *long* | :heavy_minus_sign: | Attendees rank amongst other attendees in terms of points scored. | 10 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/SendEmailEventRequest.md b/packages/csharp/docs/Models/Components/SendEmailEventRequest.md
index b8892469..5ce872f8 100644
--- a/packages/csharp/docs/Models/Components/SendEmailEventRequest.md
+++ b/packages/csharp/docs/Models/Components/SendEmailEventRequest.md
@@ -7,7 +7,7 @@ Request object to send an email to one or more event attendees.
| Field | Type | Required | Description | Example |
| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- |
-| `Event` | [EventJson8](../../Models/Components/EventJson8.md) | :heavy_check_mark: | Details of the event. | |
+| `Event` | [EventJson6](../../Models/Components/EventJson6.md) | :heavy_check_mark: | Details of the event. | |
| `Email` | [EmailJson2](../../Models/Components/EmailJson2.md) | :heavy_check_mark: | Details of an email to be send. | |
| `ResendToPreviousRecipients` | *bool* | :heavy_check_mark: | True indicates this email should be resent to attendees who had already received this email previously. | true |
| `Attendees` | List<*string*> | :heavy_check_mark: | Array of attendee identifiers to whom email is to be sent. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/SendEmailEventResponse.md b/packages/csharp/docs/Models/Components/SendEmailEventResponse.md
index 6723ee4a..adc584ad 100644
--- a/packages/csharp/docs/Models/Components/SendEmailEventResponse.md
+++ b/packages/csharp/docs/Models/Components/SendEmailEventResponse.md
@@ -14,7 +14,7 @@ Response object containing a request ID and a list of all email responses sent t
| `RequestId` | *string* | :heavy_check_mark: | The request ID for the email send request. | 3A541E55-3367-4C50-B21B-B6A7613DFB23 |
| `Status` | [SendEmailRequestStatusJson](../../Models/Components/SendEmailRequestStatusJson.md) | :heavy_minus_sign: | Denotes the status of the send email request. | ERROR |
| `Description` | *string* | :heavy_minus_sign: | The description of the response. If the `status` is `ERROR`, this field contains the reason for the failure. | Cannot send an email from deleted event. |
-| `Event` | [EventJson8](../../Models/Components/EventJson8.md) | :heavy_check_mark: | Details of the event. | |
+| `Event` | [EventJson6](../../Models/Components/EventJson6.md) | :heavy_check_mark: | Details of the event. | |
| `Email` | [EmailJson2](../../Models/Components/EmailJson2.md) | :heavy_check_mark: | Details of an email to be send. | |
| `ResendToPreviousRecipients` | *bool* | :heavy_check_mark: | True indicates this email should be resent to attendees who had already received this email previously. | true |
| `AttendeeResponses` | List<[AttendeeResponseJson](../../Models/Components/AttendeeResponseJson.md)> | :heavy_minus_sign: | List of responses specifying the status of email request for each attendee. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/SessionLite.md b/packages/csharp/docs/Models/Components/SessionLite.md
new file mode 100644
index 00000000..8016a580
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/SessionLite.md
@@ -0,0 +1,10 @@
+# SessionLite
+
+The unique identifier of a session.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
+| `Id` | *string* | :heavy_check_mark: | The unique identifier for a session. | 832cb481-74c5-4859-ba21-bbb5be8b86e0 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/SessionLiteJson.md b/packages/csharp/docs/Models/Components/SessionLiteJson.md
deleted file mode 100644
index 9bc7b186..00000000
--- a/packages/csharp/docs/Models/Components/SessionLiteJson.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# SessionLiteJson
-
-The unique identifier of a session.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
-| `Id` | *string* | :heavy_check_mark: | The unique identifier for a session. | 832cb481-74c5-4859-ba21-bbb5be8b86e0 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/SessionQaMessage.md b/packages/csharp/docs/Models/Components/SessionQaMessage.md
index 87c40c69..5e0f1127 100644
--- a/packages/csharp/docs/Models/Components/SessionQaMessage.md
+++ b/packages/csharp/docs/Models/Components/SessionQaMessage.md
@@ -9,4 +9,4 @@ A session question answer message
| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `ActionType` | [SessionQaActionTypeJson](../../Models/Components/SessionQaActionTypeJson.md) | :heavy_check_mark: | The user action that just occurred.
`question.asked` - A question was asked.
`question.upvoted` - A question was upvoted.
`question.statusUpdated` - The status of a question was updated.
`question.answered` - Either question was answered or the earlier provided answer was updated.
`answer.deleted` - An answer was deleted. | question.asked |
| `Attendee` | [AttendeeJson](../../Models/Components/AttendeeJson.md) | :heavy_check_mark: | Attendee details | |
-| `Question` | [QuestionJson1](../../Models/Components/QuestionJson1.md) | :heavy_check_mark: | Question details | |
\ No newline at end of file
+| `Question` | [QuestionJson](../../Models/Components/QuestionJson.md) | :heavy_check_mark: | Question details | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/SessionSpeaker.md b/packages/csharp/docs/Models/Components/SessionSpeaker.md
new file mode 100644
index 00000000..a29c1469
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/SessionSpeaker.md
@@ -0,0 +1,13 @@
+# SessionSpeaker
+
+A session speaker
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- |
+| `Id` | *string* | :heavy_minus_sign: | A string that has to be a format matching the industry standard uuid | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `Session` | [SessionLite](../../Models/Components/SessionLite.md) | :heavy_minus_sign: | The unique identifier of a session. | |
+| `Category` | [SpeakerCategory1](../../Models/Components/SpeakerCategory1.md) | :heavy_minus_sign: | A defined speaker category. | |
+| `Order` | *long* | :heavy_minus_sign: | The order of the speaker in a session. | 1 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/SessionSpeakerJson.md b/packages/csharp/docs/Models/Components/SessionSpeakerJson.md
deleted file mode 100644
index d65e881f..00000000
--- a/packages/csharp/docs/Models/Components/SessionSpeakerJson.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# SessionSpeakerJson
-
-A session speaker
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_minus_sign: | A string that has to be a format matching the industry standard uuid | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `Session` | [SessionLiteJson](../../Models/Components/SessionLiteJson.md) | :heavy_minus_sign: | The unique identifier of a session. | |
-| `Category` | [CategoryIdNameJson](../../Models/Components/CategoryIdNameJson.md) | :heavy_minus_sign: | A defined speaker category. | |
-| `Order` | *long* | :heavy_minus_sign: | The order of the speaker in a session. | 1 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/SessionSpeakerPaginatedResponse.md b/packages/csharp/docs/Models/Components/SessionSpeakerPaginatedResponse.md
index f2c2c14c..2bc583bb 100644
--- a/packages/csharp/docs/Models/Components/SessionSpeakerPaginatedResponse.md
+++ b/packages/csharp/docs/Models/Components/SessionSpeakerPaginatedResponse.md
@@ -5,7 +5,7 @@ The response from a request to get the list of session speakers. This includes
## Fields
-| Field | Type | Required | Description |
-| ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- |
-| `Paging` | [PagingJson](../../Models/Components/PagingJson.md) | :heavy_check_mark: | Represents pagination information for a collection of resources. |
-| `Data` | List<[SessionSpeakerJson](../../Models/Components/SessionSpeakerJson.md)> | :heavy_check_mark: | Collection of a session's speakers. |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- |
+| `Paging` | [Paging](../../Models/Components/Paging.md) | :heavy_check_mark: | Represents pagination information for a collection of resources. |
+| `Data` | List<[SessionSpeaker](../../Models/Components/SessionSpeaker.md)> | :heavy_check_mark: | Collection of a session's speakers. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/SleepingRoomBlockJson.md b/packages/csharp/docs/Models/Components/SleepingRoomBlockJson.md
index 89d19c99..a01657e8 100644
--- a/packages/csharp/docs/Models/Components/SleepingRoomBlockJson.md
+++ b/packages/csharp/docs/Models/Components/SleepingRoomBlockJson.md
@@ -7,7 +7,7 @@ The sleeping room block.
| Field | Type | Required | Description | Example |
| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `ProposalDateType` | [DateTypeJson1](../../Models/Components/DateTypeJson1.md) | :heavy_minus_sign: | The date types used for the proposal, 'PREFERRED' have the highest priority. Values prefixed with 'ALTERNATE_' are decreasing in priority (e.g., ALTERNATE_1 has higher priority than 'ALTERNATE_2 and so on). | |
+| `ProposalDateType` | [DateTypeJson](../../Models/Components/DateTypeJson.md) | :heavy_minus_sign: | The date types used for the proposal, 'PREFERRED' have the highest priority. Values prefixed with 'ALTERNATE_' are decreasing in priority (e.g., ALTERNATE_1 has higher priority than 'ALTERNATE_2 and so on). | |
| `SleepingRoomType` | [SleepingRoomTypeJson](../../Models/Components/SleepingRoomTypeJson.md) | :heavy_minus_sign: | Sleeping room type | |
| `Date` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | Date the rooms in the room block are available. | 2021-01-13 |
| `Quantity` | *long* | :heavy_minus_sign: | The total number of rooms for this room block. | 20 |
diff --git a/packages/csharp/docs/Models/Components/SleepingRoomJson.md b/packages/csharp/docs/Models/Components/SleepingRoomJson.md
index b432c38e..201a2329 100644
--- a/packages/csharp/docs/Models/Components/SleepingRoomJson.md
+++ b/packages/csharp/docs/Models/Components/SleepingRoomJson.md
@@ -7,7 +7,7 @@ The sleeping room.
| Field | Type | Required | Description | Example |
| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `ProposalDateType` | [DateTypeJson1](../../Models/Components/DateTypeJson1.md) | :heavy_minus_sign: | The date types used for the proposal, 'PREFERRED' have the highest priority. Values prefixed with 'ALTERNATE_' are decreasing in priority (e.g., ALTERNATE_1 has higher priority than 'ALTERNATE_2 and so on). | |
+| `ProposalDateType` | [DateTypeJson](../../Models/Components/DateTypeJson.md) | :heavy_minus_sign: | The date types used for the proposal, 'PREFERRED' have the highest priority. Values prefixed with 'ALTERNATE_' are decreasing in priority (e.g., ALTERNATE_1 has higher priority than 'ALTERNATE_2 and so on). | |
| `CheckInDate` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The check in date for attendees. | 2021-01-13 |
| `CheckOutDate` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The check out date for attendees. | 2021-01-13 |
| `PeakRoomNights` | *long* | :heavy_minus_sign: | The night during an event when the most sleeping rooms are occupied. | 2 |
diff --git a/packages/csharp/docs/Models/Components/Solution.md b/packages/csharp/docs/Models/Components/Solution.md
new file mode 100644
index 00000000..eb6cf8a4
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Solution.md
@@ -0,0 +1,19 @@
+# Solution
+
+The solution where the video exists. Attendee Hub and Events+ represent two different solutions where the video can be found.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = Solution.AttendeeHub;
+```
+
+
+## Values
+
+| Name | Value |
+| ------------- | ------------- |
+| `AttendeeHub` | ATTENDEE_HUB |
+| `EventsPlus` | EVENTS_PLUS |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/SolutionJson.md b/packages/csharp/docs/Models/Components/SolutionJson.md
deleted file mode 100644
index e8b67237..00000000
--- a/packages/csharp/docs/Models/Components/SolutionJson.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# SolutionJson
-
-The solution where the video exists. Attendee Hub and Events+ represent two different solutions where the video can be found.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = SolutionJson.AttendeeHub;
-```
-
-
-## Values
-
-| Name | Value |
-| ------------- | ------------- |
-| `AttendeeHub` | ATTENDEE_HUB |
-| `EventsPlus` | EVENTS_PLUS |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/SpaceArea.md b/packages/csharp/docs/Models/Components/SpaceArea.md
new file mode 100644
index 00000000..530decbd
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/SpaceArea.md
@@ -0,0 +1,91 @@
+# SpaceArea
+
+Space area divisons.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = SpaceArea.LessThanOneThousandSqFt;
+```
+
+
+## Values
+
+| Name | Value |
+| --------------------------------------- | --------------------------------------- |
+| `LessThanOneThousandSqFt` | LESS_THAN_ONE_THOUSAND_SQ_FT |
+| `OneThousandSqFt` | ONE_THOUSAND_SQ_FT |
+| `TwoThousandSqFt` | TWO_THOUSAND_SQ_FT |
+| `ThreeThousandSqFt` | THREE_THOUSAND_SQ_FT |
+| `FourThousandSqFt` | FOUR_THOUSAND_SQ_FT |
+| `FiveThousandSqFt` | FIVE_THOUSAND_SQ_FT |
+| `SixThousandSqFt` | SIX_THOUSAND_SQ_FT |
+| `SevenThousandSqFt` | SEVEN_THOUSAND_SQ_FT |
+| `EightThousandSqFt` | EIGHT_THOUSAND_SQ_FT |
+| `NineThousandSqFt` | NINE_THOUSAND_SQ_FT |
+| `TenThousandSqFt` | TEN_THOUSAND_SQ_FT |
+| `ElevenThousandSqFt` | ELEVEN_THOUSAND_SQ_FT |
+| `TwelveThousandSqFt` | TWELVE_THOUSAND_SQ_FT |
+| `ThirteenThousandSqFt` | THIRTEEN_THOUSAND_SQ_FT |
+| `FourteenThousandSqFt` | FOURTEEN_THOUSAND_SQ_FT |
+| `FifteenThousandSqFt` | FIFTEEN_THOUSAND_SQ_FT |
+| `SixteenThousandSqFt` | SIXTEEN_THOUSAND_SQ_FT |
+| `SeventeenThousandSqFt` | SEVENTEEN_THOUSAND_SQ_FT |
+| `EighteenThousandSqFt` | EIGHTEEN_THOUSAND_SQ_FT |
+| `NineteenThousandSqFt` | NINETEEN_THOUSAND_SQ_FT |
+| `TwentyThousandSqFt` | TWENTY_THOUSAND_SQ_FT |
+| `TwentyFiveThousandSqFt` | TWENTY_FIVE_THOUSAND_SQ_FT |
+| `ThirtyThousandSqFt` | THIRTY_THOUSAND_SQ_FT |
+| `ThirtyFiveThousandSqFt` | THIRTY_FIVE_THOUSAND_SQ_FT |
+| `FortyThousandSqFt` | FORTY_THOUSAND_SQ_FT |
+| `FortyFiveThousandSqFt` | FORTY_FIVE_THOUSAND_SQ_FT |
+| `FiftyThousandSqFt` | FIFTY_THOUSAND_SQ_FT |
+| `FiftyFiveThousandSqFt` | FIFTY_FIVE_THOUSAND_SQ_FT |
+| `SixtyThousandSqFt` | SIXTY_THOUSAND_SQ_FT |
+| `SixtyFiveThousandSqFt` | SIXTY_FIVE_THOUSAND_SQ_FT |
+| `SeventyThousandSqFt` | SEVENTY_THOUSAND_SQ_FT |
+| `SeventyFiveThousandSqFt` | SEVENTY_FIVE_THOUSAND_SQ_FT |
+| `EightyThousandSqFt` | EIGHTY_THOUSAND_SQ_FT |
+| `EightyFiveThousandSqFt` | EIGHTY_FIVE_THOUSAND_SQ_FT |
+| `NinetyThousandSqFt` | NINETY_THOUSAND_SQ_FT |
+| `OneHundredThousandSqFt` | ONE_HUNDRED_THOUSAND_SQ_FT |
+| `GreaterThanOneHundredThousandSqFt` | GREATER_THAN_ONE_HUNDRED_THOUSAND_SQ_FT |
+| `LessThanOneHundredSqMtr` | LESS_THAN_ONE_HUNDRED_SQ_MTR |
+| `OneHundredSqMtr` | ONE_HUNDRED_SQ_MTR |
+| `TwoHundredSqMtr` | TWO_HUNDRED_SQ_MTR |
+| `ThreeHundredSqMtr` | THREE_HUNDRED_SQ_MTR |
+| `FourHundredSqMtr` | FOUR_HUNDRED_SQ_MTR |
+| `FiveHundredSqMtr` | FIVE_HUNDRED_SQ_MTR |
+| `SixHundredSqMtr` | SIX_HUNDRED_SQ_MTR |
+| `SevenHundredSqMtr` | SEVEN_HUNDRED_SQ_MTR |
+| `EightHundredSqMtr` | EIGHT_HUNDRED_SQ_MTR |
+| `NineHundredSqMtr` | NINE_HUNDRED_SQ_MTR |
+| `OneThousandSqMtr` | ONE_THOUSAND_SQ_MTR |
+| `ElevenHundredSqMtr` | ELEVEN_HUNDRED_SQ_MTR |
+| `TwelveHundredSqMtr` | TWELVE_HUNDRED_SQ_MTR |
+| `ThirteenHundredSqMtr` | THIRTEEN_HUNDRED_SQ_MTR |
+| `FourteenHundredSqMtr` | FOURTEEN_HUNDRED_SQ_MTR |
+| `FifteenHundredSqMtr` | FIFTEEN_HUNDRED_SQ_MTR |
+| `SixteenHundredSqMtr` | SIXTEEN_HUNDRED_SQ_MTR |
+| `SeventeenHundredSqMtr` | SEVENTEEN_HUNDRED_SQ_MTR |
+| `EighteenHundredSqMtr` | EIGHTEEN_HUNDRED_SQ_MTR |
+| `NineteenHundredSqMtr` | NINETEEN_HUNDRED_SQ_MTR |
+| `TwoThousandSqMtr` | TWO_THOUSAND_SQ_MTR |
+| `TwentyFiveHundredSqMtr` | TWENTY_FIVE_HUNDRED_SQ_MTR |
+| `ThreeThousandSqMtr` | THREE_THOUSAND_SQ_MTR |
+| `ThirtyFiveHundredSqMtr` | THIRTY_FIVE_HUNDRED_SQ_MTR |
+| `FourThousandSqMtr` | FOUR_THOUSAND_SQ_MTR |
+| `FortyFiveHundredSqMtr` | FORTY_FIVE_HUNDRED_SQ_MTR |
+| `FiveThousandSqMtr` | FIVE_THOUSAND_SQ_MTR |
+| `FiftyFiveHundredSqMtr` | FIFTY_FIVE_HUNDRED_SQ_MTR |
+| `SixThousandSqMtr` | SIX_THOUSAND_SQ_MTR |
+| `SixtyFiveHundredSqMtr` | SIXTY_FIVE_HUNDRED_SQ_MTR |
+| `SevenThousandSqMtr` | SEVEN_THOUSAND_SQ_MTR |
+| `SeventyFiveHundredSqMtr` | SEVENTY_FIVE_HUNDRED_SQ_MTR |
+| `EightThousandSqMtr` | EIGHT_THOUSAND_SQ_MTR |
+| `EightyFiveHundredSqMtr` | EIGHTY_FIVE_HUNDRED_SQ_MTR |
+| `NineThousandSqMtr` | NINE_THOUSAND_SQ_MTR |
+| `TenThousandSqMtr` | TEN_THOUSAND_SQ_MTR |
+| `GreaterThanTenThousandSqMtr` | GREATER_THAN_TEN_THOUSAND_SQ_MTR |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/SpaceAreaJson0.md b/packages/csharp/docs/Models/Components/SpaceAreaJson0.md
deleted file mode 100644
index 5fb37802..00000000
--- a/packages/csharp/docs/Models/Components/SpaceAreaJson0.md
+++ /dev/null
@@ -1,91 +0,0 @@
-# SpaceAreaJson0
-
-Space area divisons.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = SpaceAreaJson0.LessThanOneThousandSqFt;
-```
-
-
-## Values
-
-| Name | Value |
-| --------------------------------------- | --------------------------------------- |
-| `LessThanOneThousandSqFt` | LESS_THAN_ONE_THOUSAND_SQ_FT |
-| `OneThousandSqFt` | ONE_THOUSAND_SQ_FT |
-| `TwoThousandSqFt` | TWO_THOUSAND_SQ_FT |
-| `ThreeThousandSqFt` | THREE_THOUSAND_SQ_FT |
-| `FourThousandSqFt` | FOUR_THOUSAND_SQ_FT |
-| `FiveThousandSqFt` | FIVE_THOUSAND_SQ_FT |
-| `SixThousandSqFt` | SIX_THOUSAND_SQ_FT |
-| `SevenThousandSqFt` | SEVEN_THOUSAND_SQ_FT |
-| `EightThousandSqFt` | EIGHT_THOUSAND_SQ_FT |
-| `NineThousandSqFt` | NINE_THOUSAND_SQ_FT |
-| `TenThousandSqFt` | TEN_THOUSAND_SQ_FT |
-| `ElevenThousandSqFt` | ELEVEN_THOUSAND_SQ_FT |
-| `TwelveThousandSqFt` | TWELVE_THOUSAND_SQ_FT |
-| `ThirteenThousandSqFt` | THIRTEEN_THOUSAND_SQ_FT |
-| `FourteenThousandSqFt` | FOURTEEN_THOUSAND_SQ_FT |
-| `FifteenThousandSqFt` | FIFTEEN_THOUSAND_SQ_FT |
-| `SixteenThousandSqFt` | SIXTEEN_THOUSAND_SQ_FT |
-| `SeventeenThousandSqFt` | SEVENTEEN_THOUSAND_SQ_FT |
-| `EighteenThousandSqFt` | EIGHTEEN_THOUSAND_SQ_FT |
-| `NineteenThousandSqFt` | NINETEEN_THOUSAND_SQ_FT |
-| `TwentyThousandSqFt` | TWENTY_THOUSAND_SQ_FT |
-| `TwentyFiveThousandSqFt` | TWENTY_FIVE_THOUSAND_SQ_FT |
-| `ThirtyThousandSqFt` | THIRTY_THOUSAND_SQ_FT |
-| `ThirtyFiveThousandSqFt` | THIRTY_FIVE_THOUSAND_SQ_FT |
-| `FortyThousandSqFt` | FORTY_THOUSAND_SQ_FT |
-| `FortyFiveThousandSqFt` | FORTY_FIVE_THOUSAND_SQ_FT |
-| `FiftyThousandSqFt` | FIFTY_THOUSAND_SQ_FT |
-| `FiftyFiveThousandSqFt` | FIFTY_FIVE_THOUSAND_SQ_FT |
-| `SixtyThousandSqFt` | SIXTY_THOUSAND_SQ_FT |
-| `SixtyFiveThousandSqFt` | SIXTY_FIVE_THOUSAND_SQ_FT |
-| `SeventyThousandSqFt` | SEVENTY_THOUSAND_SQ_FT |
-| `SeventyFiveThousandSqFt` | SEVENTY_FIVE_THOUSAND_SQ_FT |
-| `EightyThousandSqFt` | EIGHTY_THOUSAND_SQ_FT |
-| `EightyFiveThousandSqFt` | EIGHTY_FIVE_THOUSAND_SQ_FT |
-| `NinetyThousandSqFt` | NINETY_THOUSAND_SQ_FT |
-| `OneHundredThousandSqFt` | ONE_HUNDRED_THOUSAND_SQ_FT |
-| `GreaterThanOneHundredThousandSqFt` | GREATER_THAN_ONE_HUNDRED_THOUSAND_SQ_FT |
-| `LessThanOneHundredSqMtr` | LESS_THAN_ONE_HUNDRED_SQ_MTR |
-| `OneHundredSqMtr` | ONE_HUNDRED_SQ_MTR |
-| `TwoHundredSqMtr` | TWO_HUNDRED_SQ_MTR |
-| `ThreeHundredSqMtr` | THREE_HUNDRED_SQ_MTR |
-| `FourHundredSqMtr` | FOUR_HUNDRED_SQ_MTR |
-| `FiveHundredSqMtr` | FIVE_HUNDRED_SQ_MTR |
-| `SixHundredSqMtr` | SIX_HUNDRED_SQ_MTR |
-| `SevenHundredSqMtr` | SEVEN_HUNDRED_SQ_MTR |
-| `EightHundredSqMtr` | EIGHT_HUNDRED_SQ_MTR |
-| `NineHundredSqMtr` | NINE_HUNDRED_SQ_MTR |
-| `OneThousandSqMtr` | ONE_THOUSAND_SQ_MTR |
-| `ElevenHundredSqMtr` | ELEVEN_HUNDRED_SQ_MTR |
-| `TwelveHundredSqMtr` | TWELVE_HUNDRED_SQ_MTR |
-| `ThirteenHundredSqMtr` | THIRTEEN_HUNDRED_SQ_MTR |
-| `FourteenHundredSqMtr` | FOURTEEN_HUNDRED_SQ_MTR |
-| `FifteenHundredSqMtr` | FIFTEEN_HUNDRED_SQ_MTR |
-| `SixteenHundredSqMtr` | SIXTEEN_HUNDRED_SQ_MTR |
-| `SeventeenHundredSqMtr` | SEVENTEEN_HUNDRED_SQ_MTR |
-| `EighteenHundredSqMtr` | EIGHTEEN_HUNDRED_SQ_MTR |
-| `NineteenHundredSqMtr` | NINETEEN_HUNDRED_SQ_MTR |
-| `TwoThousandSqMtr` | TWO_THOUSAND_SQ_MTR |
-| `TwentyFiveHundredSqMtr` | TWENTY_FIVE_HUNDRED_SQ_MTR |
-| `ThreeThousandSqMtr` | THREE_THOUSAND_SQ_MTR |
-| `ThirtyFiveHundredSqMtr` | THIRTY_FIVE_HUNDRED_SQ_MTR |
-| `FourThousandSqMtr` | FOUR_THOUSAND_SQ_MTR |
-| `FortyFiveHundredSqMtr` | FORTY_FIVE_HUNDRED_SQ_MTR |
-| `FiveThousandSqMtr` | FIVE_THOUSAND_SQ_MTR |
-| `FiftyFiveHundredSqMtr` | FIFTY_FIVE_HUNDRED_SQ_MTR |
-| `SixThousandSqMtr` | SIX_THOUSAND_SQ_MTR |
-| `SixtyFiveHundredSqMtr` | SIXTY_FIVE_HUNDRED_SQ_MTR |
-| `SevenThousandSqMtr` | SEVEN_THOUSAND_SQ_MTR |
-| `SeventyFiveHundredSqMtr` | SEVENTY_FIVE_HUNDRED_SQ_MTR |
-| `EightThousandSqMtr` | EIGHT_THOUSAND_SQ_MTR |
-| `EightyFiveHundredSqMtr` | EIGHTY_FIVE_HUNDRED_SQ_MTR |
-| `NineThousandSqMtr` | NINE_THOUSAND_SQ_MTR |
-| `TenThousandSqMtr` | TEN_THOUSAND_SQ_MTR |
-| `GreaterThanTenThousandSqMtr` | GREATER_THAN_TEN_THOUSAND_SQ_MTR |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Speaker.md b/packages/csharp/docs/Models/Components/Speaker.md
index 2f82bc9c..da0cab9e 100644
--- a/packages/csharp/docs/Models/Components/Speaker.md
+++ b/packages/csharp/docs/Models/Components/Speaker.md
@@ -16,8 +16,8 @@ An event speaker.
| `Designation` | *string* | :heavy_minus_sign: | The speaker's Designation | PhD |
| `Company` | *string* | :heavy_minus_sign: | The company to which the speaker is associated | Cvent |
| `Title` | *string* | :heavy_minus_sign: | The speaker's title | Lead Engineer |
-| `Category` | [CategoryIdNameJson](../../Models/Components/CategoryIdNameJson.md) | :heavy_minus_sign: | A defined speaker category. | |
-| `Links` | [ContactLinksJsonInput](../../Models/Components/ContactLinksJsonInput.md) | :heavy_minus_sign: | Collection of social media links for the contact. | |
+| `Category` | [SpeakerCategory1](../../Models/Components/SpeakerCategory1.md) | :heavy_minus_sign: | A defined speaker category. | |
+| `Links` | [ContactLinksInput](../../Models/Components/ContactLinksInput.md) | :heavy_minus_sign: | Collection of social media links for the contact. | |
| `Visibility` | *bool* | :heavy_minus_sign: | Indicates if a given speaker should be displayed on Event Website | false |
| `Biography` | *string* | :heavy_minus_sign: | The speaker's biography | Presentation and Speaking voice expert, Barbara is a highly regarded coach and facilitator |
| `InternalNote` | *string* | :heavy_minus_sign: | The Internal Note of the speaker | Barbara is multilingual |
diff --git a/packages/csharp/docs/Models/Components/SpeakerCategory.md b/packages/csharp/docs/Models/Components/SpeakerCategory.md
deleted file mode 100644
index 7dd4e9f2..00000000
--- a/packages/csharp/docs/Models/Components/SpeakerCategory.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# SpeakerCategory
-
-A speaker category.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- |
-| `Name` | *string* | :heavy_minus_sign: | The name of the speaker category | Presenters |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/SpeakerCategory1.md b/packages/csharp/docs/Models/Components/SpeakerCategory1.md
new file mode 100644
index 00000000..214b021e
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/SpeakerCategory1.md
@@ -0,0 +1,11 @@
+# SpeakerCategory1
+
+A defined speaker category.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- |
+| `Id` | *string* | :heavy_check_mark: | A string that has to be a format matching the industry standard uuid | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `Name` | *string* | :heavy_minus_sign: | The name of the speaker category | Presenters |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/SpeakerCategory2.md b/packages/csharp/docs/Models/Components/SpeakerCategory2.md
new file mode 100644
index 00000000..9664676c
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/SpeakerCategory2.md
@@ -0,0 +1,10 @@
+# SpeakerCategory2
+
+A speaker category.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- |
+| `Name` | *string* | :heavy_minus_sign: | The name of the speaker category | Presenters |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/SpeakerCategoryPaginatedResponse.md b/packages/csharp/docs/Models/Components/SpeakerCategoryPaginatedResponse.md
index 022b8261..3059a908 100644
--- a/packages/csharp/docs/Models/Components/SpeakerCategoryPaginatedResponse.md
+++ b/packages/csharp/docs/Models/Components/SpeakerCategoryPaginatedResponse.md
@@ -7,5 +7,5 @@ The response from a request to get the list of speaker categories. This include
| Field | Type | Required | Description |
| ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- |
-| `Paging` | [PagingJson](../../Models/Components/PagingJson.md) | :heavy_check_mark: | Represents pagination information for a collection of resources. |
+| `Paging` | [Paging](../../Models/Components/Paging.md) | :heavy_check_mark: | Represents pagination information for a collection of resources. |
| `Data` | List<[ExistingSpeakerCategory](../../Models/Components/ExistingSpeakerCategory.md)> | :heavy_check_mark: | Collection of speaker categories. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/SpeakerDocumentPaginatedResponse.md b/packages/csharp/docs/Models/Components/SpeakerDocumentPaginatedResponse.md
index f06f093a..9e45871d 100644
--- a/packages/csharp/docs/Models/Components/SpeakerDocumentPaginatedResponse.md
+++ b/packages/csharp/docs/Models/Components/SpeakerDocumentPaginatedResponse.md
@@ -7,5 +7,5 @@ The response from a request to get the list of documents for a single speaker.
| Field | Type | Required | Description |
| ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- |
-| `Paging` | [PagingJson](../../Models/Components/PagingJson.md) | :heavy_check_mark: | Represents pagination information for a collection of resources. |
+| `Paging` | [Paging](../../Models/Components/Paging.md) | :heavy_check_mark: | Represents pagination information for a collection of resources. |
| `Data` | List<[SpeakerFile](../../Models/Components/SpeakerFile.md)> | :heavy_check_mark: | Collection of a speaker's documents. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/SpeakerLite.md b/packages/csharp/docs/Models/Components/SpeakerLite.md
index 432b1de3..be452121 100644
--- a/packages/csharp/docs/Models/Components/SpeakerLite.md
+++ b/packages/csharp/docs/Models/Components/SpeakerLite.md
@@ -5,6 +5,6 @@ The unique identifier of a speaker.
## Fields
-| Field | Type | Required | Description |
-| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
-| `Id` | *string* | :heavy_check_mark: | The unique identifier for a speaker. |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
+| `Id` | *string* | :heavy_check_mark: | The unique identifier for a speaker. | 6077a9f1-a230-40cd-9e32-b493a84aaa80 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/SpeakerLite1.md b/packages/csharp/docs/Models/Components/SpeakerLite1.md
new file mode 100644
index 00000000..5ec2cd71
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/SpeakerLite1.md
@@ -0,0 +1,10 @@
+# SpeakerLite1
+
+The unique identifier of a speaker.
+
+
+## Fields
+
+| Field | Type | Required | Description |
+| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
+| `Id` | *string* | :heavy_check_mark: | The unique identifier for a speaker. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/SpeakerLiteJson.md b/packages/csharp/docs/Models/Components/SpeakerLiteJson.md
deleted file mode 100644
index a330a586..00000000
--- a/packages/csharp/docs/Models/Components/SpeakerLiteJson.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# SpeakerLiteJson
-
-The unique identifier of a speaker.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
-| `Id` | *string* | :heavy_check_mark: | The unique identifier for a speaker. | 6077a9f1-a230-40cd-9e32-b493a84aaa80 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/SpeakerPaginatedResponse.md b/packages/csharp/docs/Models/Components/SpeakerPaginatedResponse.md
index c130071f..a888ed98 100644
--- a/packages/csharp/docs/Models/Components/SpeakerPaginatedResponse.md
+++ b/packages/csharp/docs/Models/Components/SpeakerPaginatedResponse.md
@@ -7,5 +7,5 @@ The response from a request to get the list of speakers. This includes the pagi
| Field | Type | Required | Description |
| ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- |
-| `Paging` | [PagingJson](../../Models/Components/PagingJson.md) | :heavy_check_mark: | Represents pagination information for a collection of resources. |
+| `Paging` | [Paging](../../Models/Components/Paging.md) | :heavy_check_mark: | Represents pagination information for a collection of resources. |
| `Data` | List<[ExistingSpeaker](../../Models/Components/ExistingSpeaker.md)> | :heavy_check_mark: | Collection of speakers. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/SpeakerProgramItem.md b/packages/csharp/docs/Models/Components/SpeakerProgramItem.md
index c19290c6..db5c583d 100644
--- a/packages/csharp/docs/Models/Components/SpeakerProgramItem.md
+++ b/packages/csharp/docs/Models/Components/SpeakerProgramItem.md
@@ -12,7 +12,7 @@ Represents a program item object that will be added to a speaker.
| `LastModified` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when this record was updated. | 2019-02-12T03:00:00Z |
| `LastModifiedBy` | *string* | :heavy_minus_sign: | The identifier of the user that last updated this record. | hporter |
| `Id` | *string* | :heavy_minus_sign: | ID of the speaker to program item relationship. | 38db6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `Event` | [EventLiteJson](../../Models/Components/EventLiteJson.md) | :heavy_check_mark: | The unique identifier of an event. | |
-| `Session` | [SessionLiteJson](../../Models/Components/SessionLiteJson.md) | :heavy_check_mark: | The unique identifier of a session. | |
-| `Speaker` | [SpeakerLiteJson](../../Models/Components/SpeakerLiteJson.md) | :heavy_check_mark: | The unique identifier of a speaker. | |
-| `ProgramItem` | [ProgramItemLiteJson](../../Models/Components/ProgramItemLiteJson.md) | :heavy_check_mark: | The unique identifier of a program item. | |
\ No newline at end of file
+| `Event` | [EventLite](../../Models/Components/EventLite.md) | :heavy_check_mark: | The unique identifier of an event. | |
+| `Session` | [SessionLite](../../Models/Components/SessionLite.md) | :heavy_check_mark: | The unique identifier of a session. | |
+| `Speaker` | [SpeakerLite](../../Models/Components/SpeakerLite.md) | :heavy_check_mark: | The unique identifier of a speaker. | |
+| `ProgramItem` | [ProgramItemLite](../../Models/Components/ProgramItemLite.md) | :heavy_check_mark: | The unique identifier of a program item. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/SpeakerSession.md b/packages/csharp/docs/Models/Components/SpeakerSession.md
index 491a9e64..0ef7c16d 100644
--- a/packages/csharp/docs/Models/Components/SpeakerSession.md
+++ b/packages/csharp/docs/Models/Components/SpeakerSession.md
@@ -8,5 +8,5 @@ A speaker to session relationship.
| Field | Type | Required | Description | Example |
| -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- |
| `Id` | *string* | :heavy_minus_sign: | A string that has to be a format matching the industry standard uuid | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `Speaker` | [SpeakerLite](../../Models/Components/SpeakerLite.md) | :heavy_minus_sign: | The unique identifier of a speaker. | |
+| `Speaker` | [SpeakerLite1](../../Models/Components/SpeakerLite1.md) | :heavy_minus_sign: | The unique identifier of a speaker. | |
| `Category` | [NamedObject](../../Models/Components/NamedObject.md) | :heavy_minus_sign: | A Named object | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/StakeholderJson.md b/packages/csharp/docs/Models/Components/StakeholderJson.md
index 0ba375b0..62d845f3 100644
--- a/packages/csharp/docs/Models/Components/StakeholderJson.md
+++ b/packages/csharp/docs/Models/Components/StakeholderJson.md
@@ -31,7 +31,7 @@ Represents an event stakeholder.
| ~~`PrimaryAddressType`~~ | [StakeholderJsonAddressType](../../Models/Components/StakeholderJsonAddressType.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible. | Home |
| ~~`HomeAddress`~~ | [StakeholderJsonHomeAddressAddress](../../Models/Components/StakeholderJsonHomeAddressAddress.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible. | |
| ~~`HomeFax`~~ | *string* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
Home fax number. | 555-555-5555 |
-| ~~`CustomFields`~~ | List<[CustomFieldJson3](../../Models/Components/CustomFieldJson3.md)> | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
Collection of custom fields. | |
+| ~~`CustomFields`~~ | List<[CustomFieldJson2](../../Models/Components/CustomFieldJson2.md)> | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
Collection of custom fields. | |
| ~~`SourceId`~~ | *string* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
This is an 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 as part of the ID. | system-a-00000000-0000-0000-0000-000000000000 |
| ~~`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 this record was created. | 2023-12-01T13: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 record. | hporter |
diff --git a/packages/csharp/docs/Models/Components/StandardQuestion.md b/packages/csharp/docs/Models/Components/StandardQuestion.md
new file mode 100644
index 00000000..18669703
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/StandardQuestion.md
@@ -0,0 +1,10 @@
+# StandardQuestion
+
+Standard questions are selected from a predefined list of Cvent questions that can be used in an RFP.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ---------------------------------------- | ---------------------------------------- | ---------------------------------------- | ---------------------------------------- | ---------------------------------------- |
+| `Id` | *string* | :heavy_minus_sign: | Unique identifier for standard question. | 50dc08af-24a9-4d01-84be-3d43133dc945 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/StandardQuestionJson.md b/packages/csharp/docs/Models/Components/StandardQuestionJson.md
deleted file mode 100644
index 3920c896..00000000
--- a/packages/csharp/docs/Models/Components/StandardQuestionJson.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# StandardQuestionJson
-
-Standard questions are selected from a predefined list of Cvent questions that can be used in an RFP.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ---------------------------------------- | ---------------------------------------- | ---------------------------------------- | ---------------------------------------- | ---------------------------------------- |
-| `Id` | *string* | :heavy_minus_sign: | Unique identifier for standard question. | 50dc08af-24a9-4d01-84be-3d43133dc945 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/StandardSurveyJson.md b/packages/csharp/docs/Models/Components/StandardSurveyJson.md
index 92a73ba5..4d8f3d3e 100644
--- a/packages/csharp/docs/Models/Components/StandardSurveyJson.md
+++ b/packages/csharp/docs/Models/Components/StandardSurveyJson.md
@@ -21,4 +21,4 @@ A standard survey.
| `ResponseCount` | *long* | :heavy_minus_sign: | The count of responses. | 10 |
| `Status` | [SurveyStatusJson](../../Models/Components/SurveyStatusJson.md) | :heavy_minus_sign: | Survey Status | Active |
| `ArchiveAfter` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The survey will be archived after this ISO 8601 formatted date and time. | 2022-05-07T12:00:00.000Z |
-| `CustomFields` | List<[CustomFieldJson2](../../Models/Components/CustomFieldJson2.md)> | :heavy_minus_sign: | Collection of survey custom fields. | |
\ No newline at end of file
+| `CustomFields` | List<[CustomFieldJson1](../../Models/Components/CustomFieldJson1.md)> | :heavy_minus_sign: | Collection of survey custom fields. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/StandardSurveyQuestionJson.md b/packages/csharp/docs/Models/Components/StandardSurveyQuestionJson.md
index dba63d86..64cba74c 100644
--- a/packages/csharp/docs/Models/Components/StandardSurveyQuestionJson.md
+++ b/packages/csharp/docs/Models/Components/StandardSurveyQuestionJson.md
@@ -16,15 +16,15 @@ A standard survey question.
| `ShortText` | *string* | :heavy_minus_sign: | Reporting value of the Category, Its like a custom abbreviation | Category 1 Reporting value |
| `HtmlText` | *string* | :heavy_minus_sign: | Html of the question | Question Html |
| `Code` | *string* | :heavy_minus_sign: | Question Code | 4l6x |
-| `Type` | [QuestionTypeJson2](../../Models/Components/QuestionTypeJson2.md) | :heavy_minus_sign: | Question Type. | SingleChoice |
-| `Choices` | List<[ChoiceJson2](../../Models/Components/ChoiceJson2.md)> | :heavy_minus_sign: | List of choices for the question. | |
-| `Categories` | List<[CategoryJson2](../../Models/Components/CategoryJson2.md)> | :heavy_minus_sign: | List of categories for the question. | |
-| `SubCategories` | List<[TextFieldJson1](../../Models/Components/TextFieldJson1.md)> | :heavy_minus_sign: | List of sub categories for matrix side-by-side questions | |
-| `NotApplicableAnswer` | [AdditionalChoiceJson1](../../Models/Components/AdditionalChoiceJson1.md) | :heavy_minus_sign: | Contains text of additional choice i.e N/A choice or otherAnswer choice | |
-| `OtherAnswer` | [AdditionalChoiceJson1](../../Models/Components/AdditionalChoiceJson1.md) | :heavy_minus_sign: | Contains text of additional choice i.e N/A choice or otherAnswer choice | |
+| `Type` | [QuestionTypeJson1](../../Models/Components/QuestionTypeJson1.md) | :heavy_minus_sign: | Question Type. | SingleChoice |
+| `Choices` | List<[ChoiceJson1](../../Models/Components/ChoiceJson1.md)> | :heavy_minus_sign: | List of choices for the question. | |
+| `Categories` | List<[CategoryJson1](../../Models/Components/CategoryJson1.md)> | :heavy_minus_sign: | List of categories for the question. | |
+| `SubCategories` | List<[TextFieldJson](../../Models/Components/TextFieldJson.md)> | :heavy_minus_sign: | List of sub categories for matrix side-by-side questions | |
+| `NotApplicableAnswer` | [AdditionalChoiceJson](../../Models/Components/AdditionalChoiceJson.md) | :heavy_minus_sign: | Contains text of additional choice i.e N/A choice or otherAnswer choice | |
+| `OtherAnswer` | [AdditionalChoiceJson](../../Models/Components/AdditionalChoiceJson.md) | :heavy_minus_sign: | Contains text of additional choice i.e N/A choice or otherAnswer choice | |
| `Comments` | *string* | :heavy_minus_sign: | Text Value of Comments Input box placeholder | Comments Text |
| `Required` | *bool* | :heavy_minus_sign: | Is this a mandatory question | true |
-| `Fields` | List<[FieldJson2](../../Models/Components/FieldJson2.md)> | :heavy_minus_sign: | List of fields for form/matrix questions | |
+| `Fields` | List<[FieldJson](../../Models/Components/FieldJson.md)> | :heavy_minus_sign: | List of fields for form/matrix questions | |
| `MaxScore` | *double* | :heavy_minus_sign: | Max possible score | 20 |
| `TotalSum` | *long* | :heavy_minus_sign: | Total configured sum of all choices for number allocation question | 45 |
| `Survey` | [UuidJson](../../Models/Components/UuidJson.md) | :heavy_minus_sign: | The reference to the related entity. Contains only the ID of the related entity. | |
diff --git a/packages/csharp/docs/Models/Components/SupplierResponse.md b/packages/csharp/docs/Models/Components/SupplierResponse.md
index f67b4a7d..08b00a55 100644
--- a/packages/csharp/docs/Models/Components/SupplierResponse.md
+++ b/packages/csharp/docs/Models/Components/SupplierResponse.md
@@ -8,5 +8,5 @@ Contains response from supplier on an RFP.
| Field | Type | Required | Description | Example |
| ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- |
| `DateTime` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 date time (in UTC) when the response was sent by supplier. | 2017-02-02T03:19:19.991Z |
-| `Reason` | [RfpResponseReasonJson](../../Models/Components/RfpResponseReasonJson.md) | :heavy_minus_sign: | Reason given for a response to an RFP. | GUEST_ROOMS_NO_LONGER_AVAILABLE |
+| `Reason` | [RfpResponseReason](../../Models/Components/RfpResponseReason.md) | :heavy_minus_sign: | Reason given for a response to an RFP. | GUEST_ROOMS_NO_LONGER_AVAILABLE |
| `Comment` | *string* | :heavy_minus_sign: | Comment for the response reason. | We are unable to accommodate the request on the required dates. Please let us know if we can help with any other dates. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/SupplierType.md b/packages/csharp/docs/Models/Components/SupplierType.md
new file mode 100644
index 00000000..6ab4ec9e
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/SupplierType.md
@@ -0,0 +1,21 @@
+# SupplierType
+
+Type of supplier. `CONVENTION_AND_CONFERENCE_CENTER`: Supplier of large event venues such as convention centers, conference centers, and exposition halls. `CVB`: CVBs (Convention and Visitors Bureau) are suppliers that assist in the promotion and facilitation of tourism, conventions, and events in their respective areas. `HOTEL`: Suppliers that are hotels or resorts. `OTHER`: Suppliers that do not fall under other categories.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = SupplierType.ConventionAndConferenceCenter;
+```
+
+
+## Values
+
+| Name | Value |
+| -------------------------------- | -------------------------------- |
+| `ConventionAndConferenceCenter` | CONVENTION_AND_CONFERENCE_CENTER |
+| `Cvb` | CVB |
+| `Hotel` | HOTEL |
+| `Other` | OTHER |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/SupplierTypeJson.md b/packages/csharp/docs/Models/Components/SupplierTypeJson.md
index aea4f9c7..324d6c4a 100644
--- a/packages/csharp/docs/Models/Components/SupplierTypeJson.md
+++ b/packages/csharp/docs/Models/Components/SupplierTypeJson.md
@@ -1,21 +1,18 @@
# SupplierTypeJson
-Type of supplier. `CONVENTION_AND_CONFERENCE_CENTER`: Supplier of large event venues such as convention centers, conference centers, and exposition halls. `CVB`: CVBs (Convention and Visitors Bureau) are suppliers that assist in the promotion and facilitation of tourism, conventions, and events in their respective areas. `HOTEL`: Suppliers that are hotels or resorts. `OTHER`: Suppliers that do not fall under other categories.
+The supplier's type. VENUE: A hotel, convention and visitors bureau (CVB), or other location for an event.
## Example Usage
```csharp
using Cvent.SDK.Models.Components;
-var value = SupplierTypeJson.ConventionAndConferenceCenter;
+var value = SupplierTypeJson.Venue;
```
## Values
-| Name | Value |
-| -------------------------------- | -------------------------------- |
-| `ConventionAndConferenceCenter` | CONVENTION_AND_CONFERENCE_CENTER |
-| `Cvb` | CVB |
-| `Hotel` | HOTEL |
-| `Other` | OTHER |
\ No newline at end of file
+| Name | Value |
+| ------- | ------- |
+| `Venue` | VENUE |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/SupplierTypeJson1.md b/packages/csharp/docs/Models/Components/SupplierTypeJson1.md
deleted file mode 100644
index 55df168d..00000000
--- a/packages/csharp/docs/Models/Components/SupplierTypeJson1.md
+++ /dev/null
@@ -1,18 +0,0 @@
-# SupplierTypeJson1
-
-The supplier's type. VENUE: A hotel, convention and visitors bureau (CVB), or other location for an event.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = SupplierTypeJson1.Venue;
-```
-
-
-## Values
-
-| Name | Value |
-| ------- | ------- |
-| `Venue` | VENUE |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/SurveyContactId.md b/packages/csharp/docs/Models/Components/SurveyContactId.md
new file mode 100644
index 00000000..fff87dc5
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/SurveyContactId.md
@@ -0,0 +1,11 @@
+# SurveyContactId
+
+A pair of survey and contact id.
+
+
+## Fields
+
+| Field | Type | Required | Description |
+| ------------------ | ------------------ | ------------------ | ------------------ |
+| `SurveyId` | *string* | :heavy_check_mark: | ID of the survey |
+| `ContactId` | *string* | :heavy_check_mark: | ID of the contact |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/SurveyContactIdJson.md b/packages/csharp/docs/Models/Components/SurveyContactIdJson.md
deleted file mode 100644
index 9e7821ff..00000000
--- a/packages/csharp/docs/Models/Components/SurveyContactIdJson.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# SurveyContactIdJson
-
-A pair of survey and contact id.
-
-
-## Fields
-
-| Field | Type | Required | Description |
-| ------------------ | ------------------ | ------------------ | ------------------ |
-| `SurveyId` | *string* | :heavy_check_mark: | ID of the survey |
-| `ContactId` | *string* | :heavy_check_mark: | ID of the contact |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/SurveyJson.md b/packages/csharp/docs/Models/Components/SurveyJson.md
index 1d266cee..6d459bc3 100644
--- a/packages/csharp/docs/Models/Components/SurveyJson.md
+++ b/packages/csharp/docs/Models/Components/SurveyJson.md
@@ -22,4 +22,4 @@ Parent survey detail object. It can be of two types namely: 'Event' and 'Standal
| `Status` | [SurveyStatusJson](../../Models/Components/SurveyStatusJson.md) | :heavy_minus_sign: | Survey Status | Active |
| `Type` | [SurveyTypeJson](../../Models/Components/SurveyTypeJson.md) | :heavy_minus_sign: | Describes the survey's type. `Standalone` indicates the survey exists independent of an event. `Event` indicates the survey is an event or session feedback survey. `Assessment` indicates the survey is associated with an event and is for assessing attendees. | Event |
| `ActivateDate` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The survey will be activated on this ISO 8601 formatted date and time. | 2022-02-01T23:59:00.000Z |
-| `Events` | List<[EventJson4](../../Models/Components/EventJson4.md)> | :heavy_minus_sign: | List of events with which this survey is linked. | |
\ No newline at end of file
+| `Events` | List<[EventJson3](../../Models/Components/EventJson3.md)> | :heavy_minus_sign: | List of events with which this survey is linked. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TargetType.md b/packages/csharp/docs/Models/Components/TargetType.md
new file mode 100644
index 00000000..c5e51fb2
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/TargetType.md
@@ -0,0 +1,35 @@
+# TargetType
+
+The target type can either refer to the type of recipient or the type of action that made the recipient a participant in the RFP process.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = TargetType.Assignee;
+```
+
+
+## Values
+
+| Name | Value |
+| -------------------- | -------------------- |
+| `Assignee` | ASSIGNEE |
+| `BillingContact` | BILLING_CONTACT |
+| `ForwardingNso` | FORWARDING_NSO |
+| `ForwardingSupplier` | FORWARDING_SUPPLIER |
+| `HyattEnvision` | HYATT_ENVISION |
+| `InProgress` | IN_PROGRESS |
+| `MarriottSiebel` | MARRIOTT_SIEBEL |
+| `MeetingBroker` | MEETING_BROKER |
+| `Opera` | OPERA |
+| `Planner` | PLANNER |
+| `PrivateNso` | PRIVATE_NSO |
+| `ProposalCc` | PROPOSAL_CC |
+| `Proposal` | PROPOSAL |
+| `PublicNso` | PUBLIC_NSO |
+| `ReceiptConfirmed` | RECEIPT_CONFIRMED |
+| `RfpCcRecipient` | RFP_CC_RECIPIENT |
+| `Supplier` | SUPPLIER |
+| `TurnDown` | TURN_DOWN |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TargetTypeJson.md b/packages/csharp/docs/Models/Components/TargetTypeJson.md
deleted file mode 100644
index 8385fcac..00000000
--- a/packages/csharp/docs/Models/Components/TargetTypeJson.md
+++ /dev/null
@@ -1,35 +0,0 @@
-# TargetTypeJson
-
-The target type can either refer to the type of recipient or the type of action that made the recipient a participant in the RFP process.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = TargetTypeJson.Assignee;
-```
-
-
-## Values
-
-| Name | Value |
-| -------------------- | -------------------- |
-| `Assignee` | ASSIGNEE |
-| `BillingContact` | BILLING_CONTACT |
-| `ForwardingNso` | FORWARDING_NSO |
-| `ForwardingSupplier` | FORWARDING_SUPPLIER |
-| `HyattEnvision` | HYATT_ENVISION |
-| `InProgress` | IN_PROGRESS |
-| `MarriottSiebel` | MARRIOTT_SIEBEL |
-| `MeetingBroker` | MEETING_BROKER |
-| `Opera` | OPERA |
-| `Planner` | PLANNER |
-| `PrivateNso` | PRIVATE_NSO |
-| `ProposalCc` | PROPOSAL_CC |
-| `Proposal` | PROPOSAL |
-| `PublicNso` | PUBLIC_NSO |
-| `ReceiptConfirmed` | RECEIPT_CONFIRMED |
-| `RfpCcRecipient` | RFP_CC_RECIPIENT |
-| `Supplier` | SUPPLIER |
-| `TurnDown` | TURN_DOWN |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TaxType.md b/packages/csharp/docs/Models/Components/TaxType.md
new file mode 100644
index 00000000..f85df316
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/TaxType.md
@@ -0,0 +1,26 @@
+# TaxType
+
+Bid tax type.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = TaxType.CityTax;
+```
+
+
+## Values
+
+| Name | Value |
+| -------------- | -------------- |
+| `CityTax` | city_tax |
+| `LodgingTax` | lodging_tax |
+| `OccupancyTax` | occupancy_tax |
+| `ServiceFee` | service_fee |
+| `StateTax` | state_tax |
+| `VatTax` | vat_tax |
+| `VatfbTax` | vatfb_tax |
+| `OtherTax` | other_tax |
+| `ResortFee` | resort_fee |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TaxTypeJson.md b/packages/csharp/docs/Models/Components/TaxTypeJson.md
deleted file mode 100644
index 68ba8f5b..00000000
--- a/packages/csharp/docs/Models/Components/TaxTypeJson.md
+++ /dev/null
@@ -1,26 +0,0 @@
-# TaxTypeJson
-
-Bid tax type.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = TaxTypeJson.CityTax;
-```
-
-
-## Values
-
-| Name | Value |
-| -------------- | -------------- |
-| `CityTax` | city_tax |
-| `LodgingTax` | lodging_tax |
-| `OccupancyTax` | occupancy_tax |
-| `ServiceFee` | service_fee |
-| `StateTax` | state_tax |
-| `VatTax` | vat_tax |
-| `VatfbTax` | vatfb_tax |
-| `OtherTax` | other_tax |
-| `ResortFee` | resort_fee |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TextAnswerFormat.md b/packages/csharp/docs/Models/Components/TextAnswerFormat.md
new file mode 100644
index 00000000..c13eea2e
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/TextAnswerFormat.md
@@ -0,0 +1,21 @@
+# TextAnswerFormat
+
+Text answer format. Used for `OpenEndedTextOneLine` question types.`CustomFormat`: Answers must follow a planner defined custom format. `EmailAddress`: Answers must follow the pattern of an email address. `General`: Answers can be any string. `USPhoneNumber`: Answers must be formatted as a phone number.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = TextAnswerFormat.CustomFormat;
+```
+
+
+## Values
+
+| Name | Value |
+| --------------- | --------------- |
+| `CustomFormat` | CustomFormat |
+| `EmailAddress` | EmailAddress |
+| `General` | General |
+| `USPhoneNumber` | USPhoneNumber |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TextAnswerFormatJson.md b/packages/csharp/docs/Models/Components/TextAnswerFormatJson.md
deleted file mode 100644
index 88782c21..00000000
--- a/packages/csharp/docs/Models/Components/TextAnswerFormatJson.md
+++ /dev/null
@@ -1,21 +0,0 @@
-# TextAnswerFormatJson
-
-Text answer format. Used for `OpenEndedTextOneLine` question types.`CustomFormat`: Answers must follow a planner defined custom format. `EmailAddress`: Answers must follow the pattern of an email address. `General`: Answers can be any string. `USPhoneNumber`: Answers must be formatted as a phone number.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = TextAnswerFormatJson.CustomFormat;
-```
-
-
-## Values
-
-| Name | Value |
-| --------------- | --------------- |
-| `CustomFormat` | CustomFormat |
-| `EmailAddress` | EmailAddress |
-| `General` | General |
-| `USPhoneNumber` | USPhoneNumber |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TextField.md b/packages/csharp/docs/Models/Components/TextField.md
new file mode 100644
index 00000000..e95ee1eb
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/TextField.md
@@ -0,0 +1,12 @@
+# TextField
+
+A survey text field.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
+| `Id` | *string* | :heavy_minus_sign: | Text field ID. | |
+| `Text` | *string* | :heavy_minus_sign: | Text value of the field. Displays to users in the UI. | Are you spending any significant time offsite and need transportation? |
+| `ShortText` | *string* | :heavy_minus_sign: | Concise version or abbreviation of the question text. Set by the planner to simplify presentation of the question in reports. | Needs offsite transportation? |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TextFieldJson.md b/packages/csharp/docs/Models/Components/TextFieldJson.md
index c327edaf..0895dc37 100644
--- a/packages/csharp/docs/Models/Components/TextFieldJson.md
+++ b/packages/csharp/docs/Models/Components/TextFieldJson.md
@@ -5,8 +5,8 @@ A survey text field.
## Fields
-| Field | Type | Required | Description | Example |
-| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_minus_sign: | Text field ID. | |
-| `Text` | *string* | :heavy_minus_sign: | Text value of the field. Displays to users in the UI. | Are you spending any significant time offsite and need transportation? |
-| `ShortText` | *string* | :heavy_minus_sign: | Concise version or abbreviation of the question text. Set by the planner to simplify presentation of the question in reports. | Needs offsite transportation? |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- |
+| `Id` | *string* | :heavy_minus_sign: | Text field ID. | |
+| `Text` | *string* | :heavy_minus_sign: | text Value of the Field | Field value |
+| `ShortText` | *string* | :heavy_minus_sign: | Reporting value of the Category, Its like a custom abbreviation | Category 1 Reporting value |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TextFieldJson1.md b/packages/csharp/docs/Models/Components/TextFieldJson1.md
deleted file mode 100644
index 3ef01a43..00000000
--- a/packages/csharp/docs/Models/Components/TextFieldJson1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# TextFieldJson1
-
-A survey text field.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- |
-| `Id` | *string* | :heavy_minus_sign: | Text field ID. | |
-| `Text` | *string* | :heavy_minus_sign: | text Value of the Field | Field value |
-| `ShortText` | *string* | :heavy_minus_sign: | Reporting value of the Category, Its like a custom abbreviation | Category 1 Reporting value |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Three.md b/packages/csharp/docs/Models/Components/Three.md
index 0d48692c..21540f23 100644
--- a/packages/csharp/docs/Models/Components/Three.md
+++ b/packages/csharp/docs/Models/Components/Three.md
@@ -7,5 +7,5 @@ Choices for a custom field.
| Field | Type | Required | Description |
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
-| `Choices` | List<[ChoiceJson3](../../Models/Components/ChoiceJson3.md)> | :heavy_minus_sign: | Choices of custom fields. |
+| `Choices` | List<[ChoiceJson2](../../Models/Components/ChoiceJson2.md)> | :heavy_minus_sign: | Choices of custom fields. |
| `DisplayType` | [ChoicesDisplayTypeJson](../../Models/Components/ChoicesDisplayTypeJson.md) | :heavy_minus_sign: | Display type indicating how to display the choices on UI. For 'Choice - Single Answer' custom field type, this defaults to Dropdown. For 'Choice - Multiple Answers' custom field type, this defaults to MultiSelectBox. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ThreeInput.md b/packages/csharp/docs/Models/Components/ThreeInput.md
index 34d09653..234d44f4 100644
--- a/packages/csharp/docs/Models/Components/ThreeInput.md
+++ b/packages/csharp/docs/Models/Components/ThreeInput.md
@@ -7,5 +7,5 @@ Choices for a custom field.
| Field | Type | Required | Description |
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
-| `Choices` | List<[ChoiceJson3Input](../../Models/Components/ChoiceJson3Input.md)> | :heavy_minus_sign: | Choices of custom fields. |
+| `Choices` | List<[ChoiceJson2Input](../../Models/Components/ChoiceJson2Input.md)> | :heavy_minus_sign: | Choices of custom fields. |
| `DisplayType` | [ChoicesDisplayTypeJson](../../Models/Components/ChoicesDisplayTypeJson.md) | :heavy_minus_sign: | Display type indicating how to display the choices on UI. For 'Choice - Single Answer' custom field type, this defaults to Dropdown. For 'Choice - Multiple Answers' custom field type, this defaults to MultiSelectBox. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ThumbnailStatus.md b/packages/csharp/docs/Models/Components/ThumbnailStatus.md
new file mode 100644
index 00000000..9eb82f5b
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ThumbnailStatus.md
@@ -0,0 +1,22 @@
+# ThumbnailStatus
+
+Denotes the status of a thumbnail. Started indicates the request to upload in the API was submitted, and the URL you'll upload a thumbnail to was returned. Uploaded indicates that the upload was completed. Processing indicates that a virus scan is in progress. Available indicates the thumbnail passed the scan and is ready for use. Rejected indicates there was a problem processing the thumbnail.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = ThumbnailStatus.Started;
+```
+
+
+## Values
+
+| Name | Value |
+| ------------ | ------------ |
+| `Started` | Started |
+| `Uploaded` | Uploaded |
+| `Processing` | Processing |
+| `Available` | Available |
+| `Rejected` | Rejected |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ThumbnailStatusJson.md b/packages/csharp/docs/Models/Components/ThumbnailStatusJson.md
deleted file mode 100644
index 8d341c4d..00000000
--- a/packages/csharp/docs/Models/Components/ThumbnailStatusJson.md
+++ /dev/null
@@ -1,22 +0,0 @@
-# ThumbnailStatusJson
-
-Denotes the status of a thumbnail. Started indicates the request to upload in the API was submitted, and the URL you'll upload a thumbnail to was returned. Uploaded indicates that the upload was completed. Processing indicates that a virus scan is in progress. Available indicates the thumbnail passed the scan and is ready for use. Rejected indicates there was a problem processing the thumbnail.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = ThumbnailStatusJson.Started;
-```
-
-
-## Values
-
-| Name | Value |
-| ------------ | ------------ |
-| `Started` | Started |
-| `Uploaded` | Uploaded |
-| `Processing` | Processing |
-| `Available` | Available |
-| `Rejected` | Rejected |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ThumbnailType.md b/packages/csharp/docs/Models/Components/ThumbnailType.md
new file mode 100644
index 00000000..0145f21b
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ThumbnailType.md
@@ -0,0 +1,24 @@
+# ThumbnailType
+
+This is used to denote the file type of a thumbnail
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = ThumbnailType.Bmp;
+```
+
+
+## Values
+
+| Name | Value |
+| ------ | ------ |
+| `Bmp` | bmp |
+| `Gif` | gif |
+| `Jpe` | jpe |
+| `Jpeg` | jpeg |
+| `Jpg` | jpg |
+| `Png` | png |
+| `Svg` | svg |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ThumbnailTypeJson.md b/packages/csharp/docs/Models/Components/ThumbnailTypeJson.md
deleted file mode 100644
index 5ffdf383..00000000
--- a/packages/csharp/docs/Models/Components/ThumbnailTypeJson.md
+++ /dev/null
@@ -1,24 +0,0 @@
-# ThumbnailTypeJson
-
-This is used to denote the file type of a thumbnail
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = ThumbnailTypeJson.Bmp;
-```
-
-
-## Values
-
-| Name | Value |
-| ------ | ------ |
-| `Bmp` | bmp |
-| `Gif` | gif |
-| `Jpe` | jpe |
-| `Jpeg` | jpeg |
-| `Jpg` | jpg |
-| `Png` | png |
-| `Svg` | svg |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TransactionDetailResponse.md b/packages/csharp/docs/Models/Components/TransactionDetailResponse.md
index 69d290d2..2885f02e 100644
--- a/packages/csharp/docs/Models/Components/TransactionDetailResponse.md
+++ b/packages/csharp/docs/Models/Components/TransactionDetailResponse.md
@@ -14,7 +14,7 @@ This is used to denote the details of the transaction made by an attendee.
| `Id` | *string* | :heavy_minus_sign: | A unique id representing the transaction. | 18549806a69f4727a315f2199a08d8b6 |
| `ProcessorTransactionId` | *string* | :heavy_minus_sign: | This denotes the online processor transaction Id for transactions. | ch_3Lrr4TBhiDV0mZz50nZpGx4a |
| `Event` | [Event2](../../Models/Components/Event2.md) | :heavy_minus_sign: | The reference to the event. Contains only the ID of the event. | |
-| `Attendee` | [Attendee2](../../Models/Components/Attendee2.md) | :heavy_minus_sign: | The reference to the attendee. Contains only the ID of the attendee. | |
+| `Attendee` | [Attendee](../../Models/Components/Attendee.md) | :heavy_minus_sign: | The reference to the attendee. Contains only the ID of the attendee. | |
| `Orders` | List<[Order](../../Models/Components/Order.md)> | :heavy_minus_sign: | This denotes the order IDs corresponding to this transaction. | [
{
"id": "7c4a5acd-9610-4c42-bd10-10e279e69ddc"
},
{
"id": "b479e85e-b5b0-49e7-9f11-65bad23350b1"
},
{
"id": "d1c24041-9ca4-4afd-a2f8-a0905d935aa9"
}
] |
| `JournalNumber` | *string* | :heavy_minus_sign: | Journal number for this transaction. | PZNK2PKZH4N |
| `PaymentType` | [PaymentType1](../../Models/Components/PaymentType1.md) | :heavy_minus_sign: | Denotes the type of payment made by an attendee. Authorization: Online payment that has been approved by the cardholder's bank but has not been executed. Online Charge: Online payment recieved in Cvent. Online Refund: Online refund to attendee processed in Cvent. Offline Charge: The transaction is a payment made to the attendee's order electronically in another system of record, or paid in physical currency. Offline Refund: The transaction is a refund issued to the attendee electronically in another system of record, or paid in physical currency. | Online Refund |
diff --git a/packages/csharp/docs/Models/Components/TransactionItemResponse.md b/packages/csharp/docs/Models/Components/TransactionItemResponse.md
index 9d78c6bc..f18b2bd1 100644
--- a/packages/csharp/docs/Models/Components/TransactionItemResponse.md
+++ b/packages/csharp/docs/Models/Components/TransactionItemResponse.md
@@ -15,7 +15,7 @@ This is used to denote an item in the transaction.
| `UniqueId` | *string* | :heavy_minus_sign: | A unique identifier for the transaction item. | 9a8b7c6d-e5f4-3210-bacd-3456789012de::7f3e2a1b-c4d5-6789-efab-2345678901bc |
| `Transaction` | [TransactionId](../../Models/Components/TransactionId.md) | :heavy_minus_sign: | This is used to denote the id and merchant/processor transaction id for transaction items. | |
| `Event` | [Event2](../../Models/Components/Event2.md) | :heavy_minus_sign: | The reference to the event. Contains only the ID of the event. | |
-| `Attendee` | [Attendee2](../../Models/Components/Attendee2.md) | :heavy_minus_sign: | The reference to the attendee. Contains only the ID of the attendee. | |
+| `Attendee` | [Attendee](../../Models/Components/Attendee.md) | :heavy_minus_sign: | The reference to the attendee. Contains only the ID of the attendee. | |
| `Product` | [ProductOrderItem](../../Models/Components/ProductOrderItem.md) | :heavy_minus_sign: | This is used to denote the product details in an order item | |
| `OrderItem` | [OrderItemRef](../../Models/Components/OrderItemRef.md) | :heavy_minus_sign: | Represents an order item by its ID. | |
| `Name` | *string* | :heavy_minus_sign: | This denotes the name of the item | Dinner Session |
diff --git a/packages/csharp/docs/Models/Components/TravelAccount.md b/packages/csharp/docs/Models/Components/TravelAccount.md
index fd2d32f7..7a275193 100644
--- a/packages/csharp/docs/Models/Components/TravelAccount.md
+++ b/packages/csharp/docs/Models/Components/TravelAccount.md
@@ -13,6 +13,6 @@ Travel account details.
| `LastModifiedBy` | *string* | :heavy_minus_sign: | The identifier of the user that last updated this record. | hporter |
| `Id` | *string* | :heavy_minus_sign: | A uuid used to uniquely identify the travel account. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
| `Name` | *string* | :heavy_minus_sign: | The name of the travel account. | Test Corporation |
-| `Type` | [TravelAccountTypeJson](../../Models/Components/TravelAccountTypeJson.md) | :heavy_minus_sign: | Code representing the travel account type. | corporate |
+| `Type` | [TravelAccountType](../../Models/Components/TravelAccountType.md) | :heavy_minus_sign: | Code representing the travel account type. | corporate |
| `Certified` | *bool* | :heavy_minus_sign: | Is this a certified travel account? | true |
-| `Addresses` | List<[AddressJson5](../../Models/Components/AddressJson5.md)> | :heavy_minus_sign: | List of addresses associated with the travel account. | |
\ No newline at end of file
+| `Addresses` | List<[Address6](../../Models/Components/Address6.md)> | :heavy_minus_sign: | List of addresses associated with the travel account. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelAccountPaginatedResponse.md b/packages/csharp/docs/Models/Components/TravelAccountPaginatedResponse.md
index 634e1b54..51197e5f 100644
--- a/packages/csharp/docs/Models/Components/TravelAccountPaginatedResponse.md
+++ b/packages/csharp/docs/Models/Components/TravelAccountPaginatedResponse.md
@@ -7,5 +7,5 @@ A paginated list of travel accounts.
| Field | Type | Required | Description |
| ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- |
-| `Paging` | [PagingJson](../../Models/Components/PagingJson.md) | :heavy_minus_sign: | Represents pagination information for a collection of resources. |
+| `Paging` | [Paging](../../Models/Components/Paging.md) | :heavy_minus_sign: | Represents pagination information for a collection of resources. |
| `Data` | List<[TravelAccount](../../Models/Components/TravelAccount.md)> | :heavy_minus_sign: | Collection of travel accounts and their related details. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelAccountSupplierAccount.md b/packages/csharp/docs/Models/Components/TravelAccountSupplierAccount.md
index 73323b48..8609faf1 100644
--- a/packages/csharp/docs/Models/Components/TravelAccountSupplierAccount.md
+++ b/packages/csharp/docs/Models/Components/TravelAccountSupplierAccount.md
@@ -9,7 +9,7 @@ Details for the supplier travel account. These details are supplier specific and
| ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- |
| `TravelAccount` | [TravelAccountSupplierAccountTravelAccount](../../Models/Components/TravelAccountSupplierAccountTravelAccount.md) | :heavy_minus_sign: | The travel account that the supplier account is associated with. | |
| `Name` | *string* | :heavy_minus_sign: | The name of the travel account. | Test Corporation |
-| `ManagementLevel` | [ManagementLevelTypeJson1](../../Models/Components/ManagementLevelTypeJson1.md) | :heavy_minus_sign: | The management level of the travel account. Defined by the supply-side. | global |
+| `ManagementLevel` | [ManagementLevelType1](../../Models/Components/ManagementLevelType1.md) | :heavy_minus_sign: | The management level of the travel account. Defined by the supply-side. | global |
| `Active` | *bool* | :heavy_minus_sign: | Is this account active for the supplier's hotels. | true |
| `CrmId` | *string* | :heavy_minus_sign: | ID of the travel account in the suppliers Customer Relationship Management system. Defined by supplier. | ABC123 |
| `ChainDefinedId` | *string* | :heavy_minus_sign: | Travel account ID defined at the supplier chain level. | 1000000299 |
diff --git a/packages/csharp/docs/Models/Components/TravelAccountSupplierAccountPaginatedResponse.md b/packages/csharp/docs/Models/Components/TravelAccountSupplierAccountPaginatedResponse.md
index ca3caeb7..c91b482c 100644
--- a/packages/csharp/docs/Models/Components/TravelAccountSupplierAccountPaginatedResponse.md
+++ b/packages/csharp/docs/Models/Components/TravelAccountSupplierAccountPaginatedResponse.md
@@ -7,5 +7,5 @@ A paginated list of supplier travel accounts.
| Field | Type | Required | Description |
| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- |
-| `Paging` | [PagingJson](../../Models/Components/PagingJson.md) | :heavy_minus_sign: | Represents pagination information for a collection of resources. |
+| `Paging` | [Paging](../../Models/Components/Paging.md) | :heavy_minus_sign: | Represents pagination information for a collection of resources. |
| `Data` | List<[TravelAccountSupplierAccount](../../Models/Components/TravelAccountSupplierAccount.md)> | :heavy_minus_sign: | Collection of suppliers travel accounts and their related details. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelAccountType.md b/packages/csharp/docs/Models/Components/TravelAccountType.md
new file mode 100644
index 00000000..205b907b
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/TravelAccountType.md
@@ -0,0 +1,20 @@
+# TravelAccountType
+
+Code representing the travel account type.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = TravelAccountType.Corporate;
+```
+
+
+## Values
+
+| Name | Value |
+| ----------- | ----------- |
+| `Corporate` | corporate |
+| `Leisure` | leisure |
+| `Consortia` | consortia |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelAccountTypeJson.md b/packages/csharp/docs/Models/Components/TravelAccountTypeJson.md
deleted file mode 100644
index 78138c41..00000000
--- a/packages/csharp/docs/Models/Components/TravelAccountTypeJson.md
+++ /dev/null
@@ -1,20 +0,0 @@
-# TravelAccountTypeJson
-
-Code representing the travel account type.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = TravelAccountTypeJson.Corporate;
-```
-
-
-## Values
-
-| Name | Value |
-| ----------- | ----------- |
-| `Corporate` | corporate |
-| `Leisure` | leisure |
-| `Consortia` | consortia |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelAmenityJson.md b/packages/csharp/docs/Models/Components/TravelAmenityJson.md
deleted file mode 100644
index 0b9a915a..00000000
--- a/packages/csharp/docs/Models/Components/TravelAmenityJson.md
+++ /dev/null
@@ -1,17 +0,0 @@
-# TravelAmenityJson
-
-Group and meeting amenity info.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- |
-| `LcdIncluded` | *bool* | :heavy_minus_sign: | True indicates a liquid crystal display (LCD) is included in the amenity. | |
-| `LcdPrice` | *double* | :heavy_minus_sign: | Price of the liquid crystal display (LCD). | 100 |
-| `ScreenIncluded` | *bool* | :heavy_minus_sign: | True indicates a screen is included in the amenity. | |
-| `ScreenPrice` | *double* | :heavy_minus_sign: | Price of the screen. | 100 |
-| `HsiaIncluded` | *bool* | :heavy_minus_sign: | True indicates high speed internet access is included in the amenity. | |
-| `HsiaPrice` | *double* | :heavy_minus_sign: | Price of high speed internet access (HSIA). | 100 |
-| `ComplementaryParkingIncluded` | *bool* | :heavy_minus_sign: | True indicates parking is included in the amenity. | |
-| `WhatCompanyProvidesAVEquipment` | *string* | :heavy_minus_sign: | Name of company providing AV equipment. | Some company |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelBidAmenity.md b/packages/csharp/docs/Models/Components/TravelBidAmenity.md
new file mode 100644
index 00000000..3987f524
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/TravelBidAmenity.md
@@ -0,0 +1,18 @@
+# TravelBidAmenity
+
+Amenity details for a travel bid.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
+| `Type` | [AmenityType](../../Models/Components/AmenityType.md) | :heavy_minus_sign: | Amenity type | amenity |
+| `Code` | *string* | :heavy_minus_sign: | The code representing the amenity. | parking_valet |
+| `Category` | *string* | :heavy_minus_sign: | The category of the amenity. | Parking |
+| `Included` | *bool* | :heavy_minus_sign: | True indicates the amenity price is included in the rate. | |
+| `Price` | *double* | :heavy_minus_sign: | The price of the amenity. | 100 |
+| `DiscountAmount` | *double* | :heavy_minus_sign: | The price of the amenity after discounts. | 90 |
+| `InternalCost` | *double* | :heavy_minus_sign: | Internal cost of the amenity. | 80 |
+| `Description` | *string* | :heavy_minus_sign: | Additional notes on the amenity. | Valet parking is available for all guests. |
+| `Status` | [BidItemStatusType](../../Models/Components/BidItemStatusType.md) | :heavy_minus_sign: | The status of the item in negotiation. e.g. The corporation might mark an item as delete_requested, and the hotel, if they agree, can update the item to deleted. | requested |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelBidAmenityJson.md b/packages/csharp/docs/Models/Components/TravelBidAmenityJson.md
deleted file mode 100644
index deda500d..00000000
--- a/packages/csharp/docs/Models/Components/TravelBidAmenityJson.md
+++ /dev/null
@@ -1,18 +0,0 @@
-# TravelBidAmenityJson
-
-Amenity details for a travel bid.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
-| `Type` | [AmenityTypeJson](../../Models/Components/AmenityTypeJson.md) | :heavy_minus_sign: | Amenity type | amenity |
-| `Code` | *string* | :heavy_minus_sign: | The code representing the amenity. | parking_valet |
-| `Category` | *string* | :heavy_minus_sign: | The category of the amenity. | Parking |
-| `Included` | *bool* | :heavy_minus_sign: | True indicates the amenity price is included in the rate. | |
-| `Price` | *double* | :heavy_minus_sign: | The price of the amenity. | 100 |
-| `DiscountAmount` | *double* | :heavy_minus_sign: | The price of the amenity after discounts. | 90 |
-| `InternalCost` | *double* | :heavy_minus_sign: | Internal cost of the amenity. | 80 |
-| `Description` | *string* | :heavy_minus_sign: | Additional notes on the amenity. | Valet parking is available for all guests. |
-| `Status` | [BidItemStatusTypeJson](../../Models/Components/BidItemStatusTypeJson.md) | :heavy_minus_sign: | The status of the item in negotiation. e.g. The corporation might mark an item as delete_requested, and the hotel, if they agree, can update the item to deleted. | requested |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelBidComment.md b/packages/csharp/docs/Models/Components/TravelBidComment.md
new file mode 100644
index 00000000..a4214a1e
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/TravelBidComment.md
@@ -0,0 +1,11 @@
+# TravelBidComment
+
+A comment on a travel bid.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- |
+| `CommentType` | [CommentType](../../Models/Components/CommentType.md) | :heavy_minus_sign: | Bid comment type | promotions |
+| `Comment` | *string* | :heavy_minus_sign: | The text of the comment. | This is a high value client. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelBidCommentJson.md b/packages/csharp/docs/Models/Components/TravelBidCommentJson.md
deleted file mode 100644
index 45a85355..00000000
--- a/packages/csharp/docs/Models/Components/TravelBidCommentJson.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# TravelBidCommentJson
-
-A comment on a travel bid.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- |
-| `CommentType` | [CommentTypeJson](../../Models/Components/CommentTypeJson.md) | :heavy_minus_sign: | Bid comment type | promotions |
-| `Comment` | *string* | :heavy_minus_sign: | The text of the comment. | This is a high value client. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelBidDiscount.md b/packages/csharp/docs/Models/Components/TravelBidDiscount.md
new file mode 100644
index 00000000..5e6160b8
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/TravelBidDiscount.md
@@ -0,0 +1,12 @@
+# TravelBidDiscount
+
+Discount for a travel bid.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
+| `PropertyRoom` | [TravelBidDiscountPropertyRoom](../../Models/Components/TravelBidDiscountPropertyRoom.md) | :heavy_minus_sign: | ID of the property's room. | |
+| `Discount` | *long* | :heavy_minus_sign: | Discount percentage for the dynamic rate. | 10 |
+| `Status` | [BidItemStatusType](../../Models/Components/BidItemStatusType.md) | :heavy_minus_sign: | The status of the item in negotiation. e.g. The corporation might mark an item as delete_requested, and the hotel, if they agree, can update the item to deleted. | requested |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelBidDiscountJson.md b/packages/csharp/docs/Models/Components/TravelBidDiscountJson.md
deleted file mode 100644
index fa8f6445..00000000
--- a/packages/csharp/docs/Models/Components/TravelBidDiscountJson.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# TravelBidDiscountJson
-
-Discount for a travel bid.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
-| `PropertyRoom` | [TravelBidDiscountJsonPropertyRoom](../../Models/Components/TravelBidDiscountJsonPropertyRoom.md) | :heavy_minus_sign: | ID of the property's room. | |
-| `Discount` | *long* | :heavy_minus_sign: | Discount percentage for the dynamic rate. | 10 |
-| `Status` | [BidItemStatusTypeJson](../../Models/Components/BidItemStatusTypeJson.md) | :heavy_minus_sign: | The status of the item in negotiation. e.g. The corporation might mark an item as delete_requested, and the hotel, if they agree, can update the item to deleted. | requested |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelBidDiscountJsonPropertyRoom.md b/packages/csharp/docs/Models/Components/TravelBidDiscountJsonPropertyRoom.md
deleted file mode 100644
index c239d87a..00000000
--- a/packages/csharp/docs/Models/Components/TravelBidDiscountJsonPropertyRoom.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# TravelBidDiscountJsonPropertyRoom
-
-ID of the property's room.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
-| `Id` | *string* | :heavy_minus_sign: | The unique ID of the property room. | 9ea95519-2fc5-49d8-991b-e954f49044fe |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelBidDiscountPropertyRoom.md b/packages/csharp/docs/Models/Components/TravelBidDiscountPropertyRoom.md
new file mode 100644
index 00000000..6f992562
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/TravelBidDiscountPropertyRoom.md
@@ -0,0 +1,10 @@
+# TravelBidDiscountPropertyRoom
+
+ID of the property's room.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
+| `Id` | *string* | :heavy_minus_sign: | The unique ID of the property room. | 9ea95519-2fc5-49d8-991b-e954f49044fe |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelBidDisposition.md b/packages/csharp/docs/Models/Components/TravelBidDisposition.md
new file mode 100644
index 00000000..1a594d8b
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/TravelBidDisposition.md
@@ -0,0 +1,12 @@
+# TravelBidDisposition
+
+Represents bid disposition details.
+
+
+## Fields
+
+| Field | Type | Required | Description |
+| ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- |
+| `Bid` | [TravelProposalBid1](../../Models/Components/TravelProposalBid1.md) | :heavy_minus_sign: | A travel proposal bid. |
+| `AcceptedBidRooms` | List<[TravelBidDispositionAcceptedRoom](../../Models/Components/TravelBidDispositionAcceptedRoom.md)> | :heavy_minus_sign: | List of accepted bid rooms. |
+| `RateType` | [RateType](../../Models/Components/RateType.md) | :heavy_minus_sign: | Rate type. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelBidDispositionAcceptedRoom.md b/packages/csharp/docs/Models/Components/TravelBidDispositionAcceptedRoom.md
new file mode 100644
index 00000000..9bc171bc
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/TravelBidDispositionAcceptedRoom.md
@@ -0,0 +1,12 @@
+# TravelBidDispositionAcceptedRoom
+
+Represents bid disposition's accepted room.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- |
+| `PropertyRoom` | [TravelBidDispositionAcceptedRoomPropertyRoom](../../Models/Components/TravelBidDispositionAcceptedRoomPropertyRoom.md) | :heavy_minus_sign: | ID of the property's room. | |
+| `LraRateAccepted` | *bool* | :heavy_minus_sign: | Indicates whether the LRA rates are accepted. | true |
+| `NlraRateAccepted` | *bool* | :heavy_minus_sign: | Indicates whether the NLRA rates are accepted. | true |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelBidDispositionAcceptedRoomJson.md b/packages/csharp/docs/Models/Components/TravelBidDispositionAcceptedRoomJson.md
deleted file mode 100644
index dcab38e1..00000000
--- a/packages/csharp/docs/Models/Components/TravelBidDispositionAcceptedRoomJson.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# TravelBidDispositionAcceptedRoomJson
-
-Represents bid disposition's accepted room.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- |
-| `PropertyRoom` | [TravelBidDispositionAcceptedRoomJsonPropertyRoom](../../Models/Components/TravelBidDispositionAcceptedRoomJsonPropertyRoom.md) | :heavy_minus_sign: | ID of the property's room. | |
-| `LraRateAccepted` | *bool* | :heavy_minus_sign: | Indicates whether the LRA rates are accepted. | true |
-| `NlraRateAccepted` | *bool* | :heavy_minus_sign: | Indicates whether the NLRA rates are accepted. | true |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelBidDispositionAcceptedRoomJsonPropertyRoom.md b/packages/csharp/docs/Models/Components/TravelBidDispositionAcceptedRoomJsonPropertyRoom.md
deleted file mode 100644
index 48f86a2f..00000000
--- a/packages/csharp/docs/Models/Components/TravelBidDispositionAcceptedRoomJsonPropertyRoom.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# TravelBidDispositionAcceptedRoomJsonPropertyRoom
-
-ID of the property's room.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
-| `Id` | *string* | :heavy_minus_sign: | The unique ID of the property room. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelBidDispositionAcceptedRoomPropertyRoom.md b/packages/csharp/docs/Models/Components/TravelBidDispositionAcceptedRoomPropertyRoom.md
new file mode 100644
index 00000000..93651cc8
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/TravelBidDispositionAcceptedRoomPropertyRoom.md
@@ -0,0 +1,10 @@
+# TravelBidDispositionAcceptedRoomPropertyRoom
+
+ID of the property's room.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
+| `Id` | *string* | :heavy_minus_sign: | The unique ID of the property room. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelBidDispositionJson.md b/packages/csharp/docs/Models/Components/TravelBidDispositionJson.md
deleted file mode 100644
index a8316801..00000000
--- a/packages/csharp/docs/Models/Components/TravelBidDispositionJson.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# TravelBidDispositionJson
-
-Represents bid disposition details.
-
-
-## Fields
-
-| Field | Type | Required | Description |
-| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- |
-| `Bid` | [TravelProposalBidIdJson](../../Models/Components/TravelProposalBidIdJson.md) | :heavy_minus_sign: | A travel proposal bid. |
-| `AcceptedBidRooms` | List<[TravelBidDispositionAcceptedRoomJson](../../Models/Components/TravelBidDispositionAcceptedRoomJson.md)> | :heavy_minus_sign: | List of accepted bid rooms. |
-| `RateType` | [RateTypeJson](../../Models/Components/RateTypeJson.md) | :heavy_minus_sign: | Rate type. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelBidFairSeason.md b/packages/csharp/docs/Models/Components/TravelBidFairSeason.md
new file mode 100644
index 00000000..d55ca1f8
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/TravelBidFairSeason.md
@@ -0,0 +1,17 @@
+# TravelBidFairSeason
+
+The fair season for a travel bid.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
+| `Type` | [FairSeasonType](../../Models/Components/FairSeasonType.md) | :heavy_minus_sign: | Fair season type. Blackout means that no special rate is negotiated for that date and Best Available Rates will apply | |
+| `Name` | *string* | :heavy_minus_sign: | Fair season name. | Fair season 1 |
+| `StartDate` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The ISO 8601 start date of the fair season. | 2021-07-13 |
+| `EndDate` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The ISO 8601 end date of the fair season. | 2021-07-13 |
+| `MinLengthOfStay` | *long* | :heavy_minus_sign: | Minimum length of stay for the fair season. | 1 |
+| `ReleasePeriod` | *long* | :heavy_minus_sign: | Release period for the fair season. Release period is the minimum number of days between the booking being made and the earliest arrival date. | 1 |
+| `Rates` | List<[TravelBidFairSeasonRate](../../Models/Components/TravelBidFairSeasonRate.md)> | :heavy_minus_sign: | Collection of rates for the fair season. | |
+| `Status` | [BidItemStatusType](../../Models/Components/BidItemStatusType.md) | :heavy_minus_sign: | The status of the item in negotiation. e.g. The corporation might mark an item as delete_requested, and the hotel, if they agree, can update the item to deleted. | requested |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelBidFairSeasonJson.md b/packages/csharp/docs/Models/Components/TravelBidFairSeasonJson.md
deleted file mode 100644
index 4564b53d..00000000
--- a/packages/csharp/docs/Models/Components/TravelBidFairSeasonJson.md
+++ /dev/null
@@ -1,17 +0,0 @@
-# TravelBidFairSeasonJson
-
-The fair season for a travel bid.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
-| `Type` | [FairSeasonTypeJson](../../Models/Components/FairSeasonTypeJson.md) | :heavy_minus_sign: | Fair season type. Blackout means that no special rate is negotiated for that date and Best Available Rates will apply | |
-| `Name` | *string* | :heavy_minus_sign: | Fair season name. | Fair season 1 |
-| `StartDate` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The ISO 8601 start date of the fair season. | 2021-07-13 |
-| `EndDate` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The ISO 8601 end date of the fair season. | 2021-07-13 |
-| `MinLengthOfStay` | *long* | :heavy_minus_sign: | Minimum length of stay for the fair season. | 1 |
-| `ReleasePeriod` | *long* | :heavy_minus_sign: | Release period for the fair season. Release period is the minimum number of days between the booking being made and the earliest arrival date. | 1 |
-| `Rates` | List<[TravelBidFairSeasonRateJson](../../Models/Components/TravelBidFairSeasonRateJson.md)> | :heavy_minus_sign: | Collection of rates for the fair season. | |
-| `Status` | [BidItemStatusTypeJson](../../Models/Components/BidItemStatusTypeJson.md) | :heavy_minus_sign: | The status of the item in negotiation. e.g. The corporation might mark an item as delete_requested, and the hotel, if they agree, can update the item to deleted. | requested |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelBidFairSeasonRate.md b/packages/csharp/docs/Models/Components/TravelBidFairSeasonRate.md
new file mode 100644
index 00000000..c3e1ec3c
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/TravelBidFairSeasonRate.md
@@ -0,0 +1,16 @@
+# TravelBidFairSeasonRate
+
+The negotiated rates for a property room during the fair season.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
+| `PropertyRoom` | [TravelBidFairSeasonRatePropertyRoom](../../Models/Components/TravelBidFairSeasonRatePropertyRoom.md) | :heavy_minus_sign: | ID of the property's room. | |
+| `SingleRate` | *double* | :heavy_minus_sign: | The single room rate. | 100 |
+| `DoubleRate` | *double* | :heavy_minus_sign: | The double room rate. | 101 |
+| `TripleRate` | *double* | :heavy_minus_sign: | The triple room rate. | 102 |
+| `QuadRate` | *double* | :heavy_minus_sign: | The quadruple room rate. | 103 |
+| `Allotment` | *long* | :heavy_minus_sign: | The number of rooms allotted at the negotiated rate. | 100 |
+| `Status` | [BidItemStatusType](../../Models/Components/BidItemStatusType.md) | :heavy_minus_sign: | The status of the item in negotiation. e.g. The corporation might mark an item as delete_requested, and the hotel, if they agree, can update the item to deleted. | requested |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelBidFairSeasonRateJson.md b/packages/csharp/docs/Models/Components/TravelBidFairSeasonRateJson.md
deleted file mode 100644
index 06bd8b2b..00000000
--- a/packages/csharp/docs/Models/Components/TravelBidFairSeasonRateJson.md
+++ /dev/null
@@ -1,16 +0,0 @@
-# TravelBidFairSeasonRateJson
-
-The negotiated rates for a property room during the fair season.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
-| `PropertyRoom` | [TravelBidFairSeasonRateJsonPropertyRoom](../../Models/Components/TravelBidFairSeasonRateJsonPropertyRoom.md) | :heavy_minus_sign: | ID of the property's room. | |
-| `SingleRate` | *double* | :heavy_minus_sign: | The single room rate. | 100 |
-| `DoubleRate` | *double* | :heavy_minus_sign: | The double room rate. | 101 |
-| `TripleRate` | *double* | :heavy_minus_sign: | The triple room rate. | 102 |
-| `QuadRate` | *double* | :heavy_minus_sign: | The quadruple room rate. | 103 |
-| `Allotment` | *long* | :heavy_minus_sign: | The number of rooms allotted at the negotiated rate. | 100 |
-| `Status` | [BidItemStatusTypeJson](../../Models/Components/BidItemStatusTypeJson.md) | :heavy_minus_sign: | The status of the item in negotiation. e.g. The corporation might mark an item as delete_requested, and the hotel, if they agree, can update the item to deleted. | requested |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelBidFairSeasonRateJsonPropertyRoom.md b/packages/csharp/docs/Models/Components/TravelBidFairSeasonRateJsonPropertyRoom.md
deleted file mode 100644
index 049f34da..00000000
--- a/packages/csharp/docs/Models/Components/TravelBidFairSeasonRateJsonPropertyRoom.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# TravelBidFairSeasonRateJsonPropertyRoom
-
-ID of the property's room.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
-| `Id` | *string* | :heavy_minus_sign: | The unique ID of the property room. | 9ea95519-2fc5-49d8-991b-e954f49044fe |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelBidFairSeasonRatePropertyRoom.md b/packages/csharp/docs/Models/Components/TravelBidFairSeasonRatePropertyRoom.md
new file mode 100644
index 00000000..3d0550dd
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/TravelBidFairSeasonRatePropertyRoom.md
@@ -0,0 +1,10 @@
+# TravelBidFairSeasonRatePropertyRoom
+
+ID of the property's room.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
+| `Id` | *string* | :heavy_minus_sign: | The unique ID of the property room. | 9ea95519-2fc5-49d8-991b-e954f49044fe |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelBidPolicy.md b/packages/csharp/docs/Models/Components/TravelBidPolicy.md
new file mode 100644
index 00000000..2b9c158e
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/TravelBidPolicy.md
@@ -0,0 +1,16 @@
+# TravelBidPolicy
+
+A policy that is associated with a travel bid.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
+| `Code` | *string* | :heavy_minus_sign: | The code representing the policy. | cancellation_period |
+| `Category` | *string* | :heavy_minus_sign: | The category the policy falls under. | cancellation_period |
+| `Value` | *string* | :heavy_minus_sign: | The value of the policy. | 24h |
+| `ValueType` | [PolicyValueType](../../Models/Components/PolicyValueType.md) | :heavy_minus_sign: | Value type of the policy | |
+| `Included` | *bool* | :heavy_minus_sign: | True indicates the policy fee included in the rate. Only applies to policies with a value type of money or percent. | |
+| `Description` | *string* | :heavy_minus_sign: | Additional notes on the policy. | The cancellation period is 24 hours. |
+| `Status` | [BidItemStatusType](../../Models/Components/BidItemStatusType.md) | :heavy_minus_sign: | The status of the item in negotiation. e.g. The corporation might mark an item as delete_requested, and the hotel, if they agree, can update the item to deleted. | requested |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelBidPolicyJson.md b/packages/csharp/docs/Models/Components/TravelBidPolicyJson.md
deleted file mode 100644
index 5bd31154..00000000
--- a/packages/csharp/docs/Models/Components/TravelBidPolicyJson.md
+++ /dev/null
@@ -1,16 +0,0 @@
-# TravelBidPolicyJson
-
-A policy that is associated with a travel bid.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
-| `Code` | *string* | :heavy_minus_sign: | The code representing the policy. | cancellation_period |
-| `Category` | *string* | :heavy_minus_sign: | The category the policy falls under. | cancellation_period |
-| `Value` | *string* | :heavy_minus_sign: | The value of the policy. | 24h |
-| `ValueType` | [PolicyValueTypeJson](../../Models/Components/PolicyValueTypeJson.md) | :heavy_minus_sign: | Value type of the policy | |
-| `Included` | *bool* | :heavy_minus_sign: | True indicates the policy fee included in the rate. Only applies to policies with a value type of money or percent. | |
-| `Description` | *string* | :heavy_minus_sign: | Additional notes on the policy. | The cancellation period is 24 hours. |
-| `Status` | [BidItemStatusTypeJson](../../Models/Components/BidItemStatusTypeJson.md) | :heavy_minus_sign: | The status of the item in negotiation. e.g. The corporation might mark an item as delete_requested, and the hotel, if they agree, can update the item to deleted. | requested |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelBidRateJson.md b/packages/csharp/docs/Models/Components/TravelBidRateJson.md
deleted file mode 100644
index 4795e8ed..00000000
--- a/packages/csharp/docs/Models/Components/TravelBidRateJson.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# TravelBidRateJson
-
-The rate (cost) information for a travel bid.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- |
-| `Level` | [RateLevelTypeJson](../../Models/Components/RateLevelTypeJson.md) | :heavy_minus_sign: | Rate level | corporate |
-| `Type` | [RateTypeJson](../../Models/Components/RateTypeJson.md) | :heavy_minus_sign: | Rate type. | |
-| `PlanCode` | *string* | :heavy_minus_sign: | The code given to the bid (also called rate plan) by the supplier. | rp123 |
-| `Tier` | *string* | :heavy_minus_sign: | The rate tier given to the bid (also called rate plan) by the supplier. | tier1 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelBidRoom.md b/packages/csharp/docs/Models/Components/TravelBidRoom.md
new file mode 100644
index 00000000..cda661d0
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/TravelBidRoom.md
@@ -0,0 +1,13 @@
+# TravelBidRoom
+
+A room in a travel bid.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
+| `PropertyRoom` | [TravelBidRoomPropertyRoom](../../Models/Components/TravelBidRoomPropertyRoom.md) | :heavy_minus_sign: | ID of the property's room. | |
+| `Allocation` | *long* | :heavy_minus_sign: | The number of rooms allocated to the bid. | 10 |
+| `Order` | *long* | :heavy_minus_sign: | The order of the room in the bid. | 1 |
+| `Status` | [BidItemStatusType](../../Models/Components/BidItemStatusType.md) | :heavy_minus_sign: | The status of the item in negotiation. e.g. The corporation might mark an item as delete_requested, and the hotel, if they agree, can update the item to deleted. | requested |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelBidRoomJson.md b/packages/csharp/docs/Models/Components/TravelBidRoomJson.md
deleted file mode 100644
index 99bcb0a1..00000000
--- a/packages/csharp/docs/Models/Components/TravelBidRoomJson.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# TravelBidRoomJson
-
-A room in a travel bid.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
-| `PropertyRoom` | [TravelBidRoomJsonPropertyRoom](../../Models/Components/TravelBidRoomJsonPropertyRoom.md) | :heavy_minus_sign: | ID of the property's room. | |
-| `Allocation` | *long* | :heavy_minus_sign: | The number of rooms allocated to the bid. | 10 |
-| `Order` | *long* | :heavy_minus_sign: | The order of the room in the bid. | 1 |
-| `Status` | [BidItemStatusTypeJson](../../Models/Components/BidItemStatusTypeJson.md) | :heavy_minus_sign: | The status of the item in negotiation. e.g. The corporation might mark an item as delete_requested, and the hotel, if they agree, can update the item to deleted. | requested |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelBidRoomJsonPropertyRoom.md b/packages/csharp/docs/Models/Components/TravelBidRoomJsonPropertyRoom.md
deleted file mode 100644
index 03cbff21..00000000
--- a/packages/csharp/docs/Models/Components/TravelBidRoomJsonPropertyRoom.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# TravelBidRoomJsonPropertyRoom
-
-ID of the property's room.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
-| `Id` | *string* | :heavy_minus_sign: | The unique ID of the property room. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelBidRoomPropertyRoom.md b/packages/csharp/docs/Models/Components/TravelBidRoomPropertyRoom.md
new file mode 100644
index 00000000..abddf772
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/TravelBidRoomPropertyRoom.md
@@ -0,0 +1,10 @@
+# TravelBidRoomPropertyRoom
+
+ID of the property's room.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
+| `Id` | *string* | :heavy_minus_sign: | The unique ID of the property room. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelBidSeason.md b/packages/csharp/docs/Models/Components/TravelBidSeason.md
new file mode 100644
index 00000000..375f72d9
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/TravelBidSeason.md
@@ -0,0 +1,17 @@
+# TravelBidSeason
+
+Season details for a travel bid.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
+| `Name` | *string* | :heavy_minus_sign: | Season name. | Season 1 |
+| `StartDate` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The ISO 8601 start date of the season. | 2021-07-13 |
+| `EndDate` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The ISO 8601 end date of the season. | 2021-07-13 |
+| `ReleasePeriod` | *long* | :heavy_minus_sign: | Number of release periods. | 1 |
+| `WeekendReleasePeriod` | *long* | :heavy_minus_sign: | Number of weekend release periods. | 2 |
+| `Rates` | List<[TravelBidSeasonRate](../../Models/Components/TravelBidSeasonRate.md)> | :heavy_minus_sign: | Collection of rates for the season. | |
+| `WeekendRates` | List<[TravelBidSeasonRate](../../Models/Components/TravelBidSeasonRate.md)> | :heavy_minus_sign: | Collection of weekend rates for the season. | |
+| `Status` | [BidItemStatusType](../../Models/Components/BidItemStatusType.md) | :heavy_minus_sign: | The status of the item in negotiation. e.g. The corporation might mark an item as delete_requested, and the hotel, if they agree, can update the item to deleted. | requested |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelBidSeasonJson.md b/packages/csharp/docs/Models/Components/TravelBidSeasonJson.md
deleted file mode 100644
index ee10716a..00000000
--- a/packages/csharp/docs/Models/Components/TravelBidSeasonJson.md
+++ /dev/null
@@ -1,17 +0,0 @@
-# TravelBidSeasonJson
-
-Season details for a travel bid.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
-| `Name` | *string* | :heavy_minus_sign: | Season name. | Season 1 |
-| `StartDate` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The ISO 8601 start date of the season. | 2021-07-13 |
-| `EndDate` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The ISO 8601 end date of the season. | 2021-07-13 |
-| `ReleasePeriod` | *long* | :heavy_minus_sign: | Number of release periods. | 1 |
-| `WeekendReleasePeriod` | *long* | :heavy_minus_sign: | Number of weekend release periods. | 2 |
-| `Rates` | List<[TravelBidSeasonRateJson](../../Models/Components/TravelBidSeasonRateJson.md)> | :heavy_minus_sign: | Collection of rates for the season. | |
-| `WeekendRates` | List<[TravelBidSeasonRateJson](../../Models/Components/TravelBidSeasonRateJson.md)> | :heavy_minus_sign: | Collection of weekend rates for the season. | |
-| `Status` | [BidItemStatusTypeJson](../../Models/Components/BidItemStatusTypeJson.md) | :heavy_minus_sign: | The status of the item in negotiation. e.g. The corporation might mark an item as delete_requested, and the hotel, if they agree, can update the item to deleted. | requested |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelBidSeasonRate.md b/packages/csharp/docs/Models/Components/TravelBidSeasonRate.md
new file mode 100644
index 00000000..342cf1ff
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/TravelBidSeasonRate.md
@@ -0,0 +1,18 @@
+# TravelBidSeasonRate
+
+The negotiated rates for a property room during a specific season.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
+| `PropertyRoom` | [TravelBidSeasonRatePropertyRoom](../../Models/Components/TravelBidSeasonRatePropertyRoom.md) | :heavy_minus_sign: | ID of the property's room. | |
+| `SingleRate` | *double* | :heavy_minus_sign: | The last room available (LRA) single rate. | 100 |
+| `DoubleRate` | *double* | :heavy_minus_sign: | The last room available (LRA) double rate. | 101 |
+| `TripleRate` | *double* | :heavy_minus_sign: | The last room available (LRA) triple rate. | 102 |
+| `QuadRate` | *double* | :heavy_minus_sign: | The last room available (LRA) quad rate. | 103 |
+| `NlraSingleRate` | *double* | :heavy_minus_sign: | The non last room available (NLRA) single rate. | 104 |
+| `NlraDoubleRate` | *double* | :heavy_minus_sign: | The non last room available (NLRA) double rate. | 105 |
+| `Allotment` | *long* | :heavy_minus_sign: | The number of rooms allotted at the negotiated rate. | 100 |
+| `Status` | [BidItemStatusType](../../Models/Components/BidItemStatusType.md) | :heavy_minus_sign: | The status of the item in negotiation. e.g. The corporation might mark an item as delete_requested, and the hotel, if they agree, can update the item to deleted. | requested |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelBidSeasonRateJson.md b/packages/csharp/docs/Models/Components/TravelBidSeasonRateJson.md
deleted file mode 100644
index be62cf94..00000000
--- a/packages/csharp/docs/Models/Components/TravelBidSeasonRateJson.md
+++ /dev/null
@@ -1,18 +0,0 @@
-# TravelBidSeasonRateJson
-
-The negotiated rates for a property room during a specific season.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
-| `PropertyRoom` | [TravelBidSeasonRateJsonPropertyRoom](../../Models/Components/TravelBidSeasonRateJsonPropertyRoom.md) | :heavy_minus_sign: | ID of the property's room. | |
-| `SingleRate` | *double* | :heavy_minus_sign: | The last room available (LRA) single rate. | 100 |
-| `DoubleRate` | *double* | :heavy_minus_sign: | The last room available (LRA) double rate. | 101 |
-| `TripleRate` | *double* | :heavy_minus_sign: | The last room available (LRA) triple rate. | 102 |
-| `QuadRate` | *double* | :heavy_minus_sign: | The last room available (LRA) quad rate. | 103 |
-| `NlraSingleRate` | *double* | :heavy_minus_sign: | The non last room available (NLRA) single rate. | 104 |
-| `NlraDoubleRate` | *double* | :heavy_minus_sign: | The non last room available (NLRA) double rate. | 105 |
-| `Allotment` | *long* | :heavy_minus_sign: | The number of rooms allotted at the negotiated rate. | 100 |
-| `Status` | [BidItemStatusTypeJson](../../Models/Components/BidItemStatusTypeJson.md) | :heavy_minus_sign: | The status of the item in negotiation. e.g. The corporation might mark an item as delete_requested, and the hotel, if they agree, can update the item to deleted. | requested |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelBidSeasonRateJsonPropertyRoom.md b/packages/csharp/docs/Models/Components/TravelBidSeasonRateJsonPropertyRoom.md
deleted file mode 100644
index 79ab9937..00000000
--- a/packages/csharp/docs/Models/Components/TravelBidSeasonRateJsonPropertyRoom.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# TravelBidSeasonRateJsonPropertyRoom
-
-ID of the property's room.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
-| `Id` | *string* | :heavy_minus_sign: | The unique ID of the property room. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelBidSeasonRatePropertyRoom.md b/packages/csharp/docs/Models/Components/TravelBidSeasonRatePropertyRoom.md
new file mode 100644
index 00000000..2026b3ed
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/TravelBidSeasonRatePropertyRoom.md
@@ -0,0 +1,10 @@
+# TravelBidSeasonRatePropertyRoom
+
+ID of the property's room.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
+| `Id` | *string* | :heavy_minus_sign: | The unique ID of the property room. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelBidTaxAndFee.md b/packages/csharp/docs/Models/Components/TravelBidTaxAndFee.md
new file mode 100644
index 00000000..1546815b
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/TravelBidTaxAndFee.md
@@ -0,0 +1,15 @@
+# TravelBidTaxAndFee
+
+A tax or fee associated with a travel bid.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
+| `Code` | [TaxType](../../Models/Components/TaxType.md) | :heavy_minus_sign: | Bid tax type. | city_tax |
+| `Amount` | *double* | :heavy_minus_sign: | The amount of the tax/fee. This may be a percent or monetary value depending on the value in `percent`. | 20 |
+| `Percent` | *bool* | :heavy_minus_sign: | True indicates the tax/fee amount represents a percentage, instead of a monetary value. | |
+| `Included` | *bool* | :heavy_minus_sign: | True indicates the tax/fee included in the negotiated rate. | |
+| `Notes` | *string* | :heavy_minus_sign: | Additional notes on the tax/fee. | This is a tax |
+| `Status` | [BidItemStatusType](../../Models/Components/BidItemStatusType.md) | :heavy_minus_sign: | The status of the item in negotiation. e.g. The corporation might mark an item as delete_requested, and the hotel, if they agree, can update the item to deleted. | requested |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelBidTaxFeeJson.md b/packages/csharp/docs/Models/Components/TravelBidTaxFeeJson.md
deleted file mode 100644
index f34fa60f..00000000
--- a/packages/csharp/docs/Models/Components/TravelBidTaxFeeJson.md
+++ /dev/null
@@ -1,15 +0,0 @@
-# TravelBidTaxFeeJson
-
-A tax or fee associated with a travel bid.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
-| `Code` | [TaxTypeJson](../../Models/Components/TaxTypeJson.md) | :heavy_minus_sign: | Bid tax type. | city_tax |
-| `Amount` | *double* | :heavy_minus_sign: | The amount of the tax/fee. This may be a percent or monetary value depending on the value in `percent`. | 20 |
-| `Percent` | *bool* | :heavy_minus_sign: | True indicates the tax/fee amount represents a percentage, instead of a monetary value. | |
-| `Included` | *bool* | :heavy_minus_sign: | True indicates the tax/fee included in the negotiated rate. | |
-| `Notes` | *string* | :heavy_minus_sign: | Additional notes on the tax/fee. | This is a tax |
-| `Status` | [BidItemStatusTypeJson](../../Models/Components/BidItemStatusTypeJson.md) | :heavy_minus_sign: | The status of the item in negotiation. e.g. The corporation might mark an item as delete_requested, and the hotel, if they agree, can update the item to deleted. | requested |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelBidWeekendDayJson.md b/packages/csharp/docs/Models/Components/TravelBidWeekendDayJson.md
deleted file mode 100644
index 121148f9..00000000
--- a/packages/csharp/docs/Models/Components/TravelBidWeekendDayJson.md
+++ /dev/null
@@ -1,24 +0,0 @@
-# TravelBidWeekendDayJson
-
-Days considered weekend days for pricing purposes in the travel bid.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = TravelBidWeekendDayJson.Monday;
-```
-
-
-## Values
-
-| Name | Value |
-| ----------- | ----------- |
-| `Monday` | Monday |
-| `Tuesday` | Tuesday |
-| `Wednesday` | Wednesday |
-| `Thursday` | Thursday |
-| `Friday` | Friday |
-| `Saturday` | Saturday |
-| `Sunday` | Sunday |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelBidWeekendDays.md b/packages/csharp/docs/Models/Components/TravelBidWeekendDays.md
new file mode 100644
index 00000000..8b2a0cf5
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/TravelBidWeekendDays.md
@@ -0,0 +1,24 @@
+# TravelBidWeekendDays
+
+Days considered weekend days for pricing purposes in the travel bid.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = TravelBidWeekendDays.Monday;
+```
+
+
+## Values
+
+| Name | Value |
+| ----------- | ----------- |
+| `Monday` | Monday |
+| `Tuesday` | Tuesday |
+| `Wednesday` | Wednesday |
+| `Thursday` | Thursday |
+| `Friday` | Friday |
+| `Saturday` | Saturday |
+| `Sunday` | Sunday |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelBreakOutRoomJson.md b/packages/csharp/docs/Models/Components/TravelBreakOutRoomJson.md
deleted file mode 100644
index 651b5de1..00000000
--- a/packages/csharp/docs/Models/Components/TravelBreakOutRoomJson.md
+++ /dev/null
@@ -1,14 +0,0 @@
-# TravelBreakOutRoomJson
-
-Break-out room information.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------ | ------------------------------------------------------ | ------------------------------------------------------ | ------------------------------------------------------ | ------------------------------------------------------ |
-| `TenPersonRoomIncluded` | *bool* | :heavy_minus_sign: | True indicates a 10 person room is included. | |
-| `Price10PersonRoom` | *double* | :heavy_minus_sign: | Price for 10 person room. | 100 |
-| `TwentyFivePersonRoomIncluded` | *bool* | :heavy_minus_sign: | True indicates a 25 person room included. | |
-| `Price25PersonRoom` | *double* | :heavy_minus_sign: | Price for 25 person room. | 100 |
-| `PermanentBoardRoomSetUp` | *bool* | :heavy_minus_sign: | True indicates there is a permanent board room set up. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelDayDelegateRateJson.md b/packages/csharp/docs/Models/Components/TravelDayDelegateRateJson.md
deleted file mode 100644
index 1d8d1bf9..00000000
--- a/packages/csharp/docs/Models/Components/TravelDayDelegateRateJson.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# TravelDayDelegateRateJson
-
-Day delegate rate information. This represents the costs for hosting meeting at the venue for a half or full day.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| -------------------------------------------- | -------------------------------------------- | -------------------------------------------- | -------------------------------------------- | -------------------------------------------- |
-| `FullDay10To50People` | *double* | :heavy_minus_sign: | Full day delegate rate for 10 to 50 people. | 100 |
-| `FullDay51To100People` | *double* | :heavy_minus_sign: | Full day delegate rate for 51 to 100 people. | 200 |
-| `HalfDay10To50People` | *double* | :heavy_minus_sign: | Half day delegate rate for 10 to 50 people. | 50 |
-| `HalfDay51To100People` | *double* | :heavy_minus_sign: | Half day delegate rate for 51 to 100 people. | 100 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelGroupAndMeetingJson.md b/packages/csharp/docs/Models/Components/TravelGroupAndMeetingJson.md
deleted file mode 100644
index 6a2c3d95..00000000
--- a/packages/csharp/docs/Models/Components/TravelGroupAndMeetingJson.md
+++ /dev/null
@@ -1,15 +0,0 @@
-# TravelGroupAndMeetingJson
-
-Group and meeting information.
-
-
-## Fields
-
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- |
-| `RunOfHouseRate` | [TravelRunOfHouseRateJson](../../Models/Components/TravelRunOfHouseRateJson.md) | :heavy_minus_sign: | Run of house rate information. |
-| `DayDelegateRate` | [TravelDayDelegateRateJson](../../Models/Components/TravelDayDelegateRateJson.md) | :heavy_minus_sign: | Day delegate rate information. This represents the costs for hosting meeting at the venue for a half or full day. |
-| `TaxAndServiceCharge` | [TravelTaxAndServiceChargeJson](../../Models/Components/TravelTaxAndServiceChargeJson.md) | :heavy_minus_sign: | Tax and service charge information. |
-| `MeetingRoomBasicInformation` | [TravelMeetingRoomBasicInfoJson](../../Models/Components/TravelMeetingRoomBasicInfoJson.md) | :heavy_minus_sign: | Meeting room basic information. |
-| `Amenity` | [TravelAmenityJson](../../Models/Components/TravelAmenityJson.md) | :heavy_minus_sign: | Group and meeting amenity info. |
-| `BreakOutRoom` | [TravelBreakOutRoomJson](../../Models/Components/TravelBreakOutRoomJson.md) | :heavy_minus_sign: | Break-out room information. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelMeetingRoomBasicInfoJson.md b/packages/csharp/docs/Models/Components/TravelMeetingRoomBasicInfoJson.md
deleted file mode 100644
index 93bc6040..00000000
--- a/packages/csharp/docs/Models/Components/TravelMeetingRoomBasicInfoJson.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# TravelMeetingRoomBasicInfoJson
-
-Meeting room basic information.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- |
-| `LargestMeetingRoom` | *long* | :heavy_minus_sign: | Size of the largest meeting room. Units of measurement determined by `unitOfMeasurement` field. | 1000 |
-| `UnitOfMeasurement` | *string* | :heavy_minus_sign: | Unit of measurement of the `largestMeetingRoom`'s size. | sq.ft. |
-| `MeetingRooms` | *long* | :heavy_minus_sign: | Total number of meeting rooms. | 10 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelProgram.md b/packages/csharp/docs/Models/Components/TravelProgram.md
index e95ac6e0..a138c953 100644
--- a/packages/csharp/docs/Models/Components/TravelProgram.md
+++ b/packages/csharp/docs/Models/Components/TravelProgram.md
@@ -14,13 +14,13 @@ Travel program details.
| `Id` | *string* | :heavy_minus_sign: | The unique ID of the travel program. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
| `Name` | *string* | :heavy_minus_sign: | The name of the travel program. | Test Program |
| `ContractPeriod` | *long* | :heavy_minus_sign: | The contract year in which the travel program originated. | 2023 |
-| `Type` | [TravelProgramTypeJson](../../Models/Components/TravelProgramTypeJson.md) | :heavy_minus_sign: | Code representing the travel program type. | corporate |
-| `Format` | [TravelProgramFormatTypeJson](../../Models/Components/TravelProgramFormatTypeJson.md) | :heavy_minus_sign: | Code representing the format of the travel program. | gbta2013 |
-| `Status` | [TravelProgramStatusJson](../../Models/Components/TravelProgramStatusJson.md) | :heavy_minus_sign: | Code representing the status of the travel program. | complete |
+| `Type` | [TravelProgramType](../../Models/Components/TravelProgramType.md) | :heavy_minus_sign: | Code representing the travel program type. | corporate |
+| `Format` | [TravelProgramFormatType](../../Models/Components/TravelProgramFormatType.md) | :heavy_minus_sign: | Code representing the format of the travel program. | gbta2013 |
+| `Status` | [TravelProgramStatus](../../Models/Components/TravelProgramStatus.md) | :heavy_minus_sign: | Code representing the status of the travel program. | complete |
| `TravelAccount` | [TravelProgramTravelAccount](../../Models/Components/TravelProgramTravelAccount.md) | :heavy_minus_sign: | Travel account that the program belongs to. | |
-| `StayType` | [TravelProgramStayTypeJson](../../Models/Components/TravelProgramStayTypeJson.md) | :heavy_minus_sign: | Code representing the stay types requested by the program. Programs can accept daily only, or daily and extended stay proposals. | daily |
+| `StayType` | [TravelProgramStayType](../../Models/Components/TravelProgramStayType.md) | :heavy_minus_sign: | Code representing the stay types requested by the program. Programs can accept daily only, or daily and extended stay proposals. | daily |
| `StartDate` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The ISO 8601 formatted start date (in GMT) of the travel program. | 2024-01-01 |
| `EndDate` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The ISO 8601 formatted end date (in GMT) of the travel program. | 2024-12-31 |
| `DueDate` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The ISO 8601 formatted due date (in GMT) of the travel program. | 2023-11-13 |
| `CloseoutDate` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The ISO 8601 formatted decision date (in GMT) of the travel program. | 2023-11-13 |
-| `Questions` | List<[TravelProgramQuestionJson](../../Models/Components/TravelProgramQuestionJson.md)> | :heavy_minus_sign: | A list of program specific questions for the supplier to answer as part of their proposal. | |
\ No newline at end of file
+| `Questions` | List<[TravelProgramQuestion1](../../Models/Components/TravelProgramQuestion1.md)> | :heavy_minus_sign: | A list of program specific questions for the supplier to answer as part of their proposal. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelProgramFormatType.md b/packages/csharp/docs/Models/Components/TravelProgramFormatType.md
new file mode 100644
index 00000000..f1f3bbe8
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/TravelProgramFormatType.md
@@ -0,0 +1,19 @@
+# TravelProgramFormatType
+
+Code representing the format of the travel program.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = TravelProgramFormatType.Gbta2013;
+```
+
+
+## Values
+
+| Name | Value |
+| ----------- | ----------- |
+| `Gbta2013` | gbta2013 |
+| `Universal` | universal |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelProgramFormatTypeJson.md b/packages/csharp/docs/Models/Components/TravelProgramFormatTypeJson.md
deleted file mode 100644
index e76c58f5..00000000
--- a/packages/csharp/docs/Models/Components/TravelProgramFormatTypeJson.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# TravelProgramFormatTypeJson
-
-Code representing the format of the travel program.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = TravelProgramFormatTypeJson.Gbta2013;
-```
-
-
-## Values
-
-| Name | Value |
-| ----------- | ----------- |
-| `Gbta2013` | gbta2013 |
-| `Universal` | universal |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelProgramPaginatedResponse.md b/packages/csharp/docs/Models/Components/TravelProgramPaginatedResponse.md
index 46150154..52cf7e96 100644
--- a/packages/csharp/docs/Models/Components/TravelProgramPaginatedResponse.md
+++ b/packages/csharp/docs/Models/Components/TravelProgramPaginatedResponse.md
@@ -7,5 +7,5 @@ A paginated list of travel programs.
| Field | Type | Required | Description |
| ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- |
-| `Paging` | [PagingJson](../../Models/Components/PagingJson.md) | :heavy_minus_sign: | Represents pagination information for a collection of resources. |
+| `Paging` | [Paging](../../Models/Components/Paging.md) | :heavy_minus_sign: | Represents pagination information for a collection of resources. |
| `Data` | List<[TravelProgram](../../Models/Components/TravelProgram.md)> | :heavy_minus_sign: | Collection of travel programs and their related details. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelProgramQuestion.md b/packages/csharp/docs/Models/Components/TravelProgramQuestion.md
new file mode 100644
index 00000000..45262808
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/TravelProgramQuestion.md
@@ -0,0 +1,21 @@
+# TravelProgramQuestion
+
+A question, defined by the program, for the supplier to answer as part of their proposal.
+
+
+## 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: | The ISO 8601 zoned date time when this record was created. | 2017-01-02T02:00:00Z |
+| `CreatedBy` | *string* | :heavy_minus_sign: | The identifier of the user that created this record. | hporter |
+| `LastModified` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when this record was updated. | 2019-02-12T03:00:00Z |
+| `LastModifiedBy` | *string* | :heavy_minus_sign: | The identifier of the user that last updated this record. | hporter |
+| `TravelProgram` | [TravelProgramQuestionTravelProgram](../../Models/Components/TravelProgramQuestionTravelProgram.md) | :heavy_minus_sign: | Travel program that the question belongs to. | |
+| `Id` | *string* | :heavy_minus_sign: | The unique ID of the question. | 76c461cb-77f6-40b3-acc8-db44452f11c4 |
+| `Text` | *string* | :heavy_minus_sign: | The text of the question. | What type of food is served in the hotel restaurant? |
+| `Required` | *bool* | :heavy_minus_sign: | Is this question required by default? | true |
+| `ResponseType` | [QuestionResponseType](../../Models/Components/QuestionResponseType.md) | :heavy_minus_sign: | Code representing the type of response supported. Single represents a simple single value response, and choice means the user will be given a set of options for selection. | choice |
+| `ResponseDataType` | [QuestionResponseDataType](../../Models/Components/QuestionResponseDataType.md) | :heavy_minus_sign: | Code representing the expected data type of the question response. | text |
+| `ResponseFormat` | [QuestionResponseFormat](../../Models/Components/QuestionResponseFormat.md) | :heavy_minus_sign: | Code representing the format the text of the response will be in. | proper_case |
+| `ResponseChoices` | List<*string*> | :heavy_minus_sign: | A list of options for the question. This only applies when responseType is 'choice' | [
"Mexican",
"American",
"French",
"Other"
] |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelProgramQuestion1.md b/packages/csharp/docs/Models/Components/TravelProgramQuestion1.md
new file mode 100644
index 00000000..48bddbfc
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/TravelProgramQuestion1.md
@@ -0,0 +1,13 @@
+# TravelProgramQuestion1
+
+A question, defined by the account, for the supplier to answer as part of their proposal.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ |
+| `QuestionId` | *string* | :heavy_minus_sign: | The unique ID of the custom question. | 76c461cb-77f6-40b3-acc8-db44452f11c4 |
+| `Section` | [QuestionSection](../../Models/Components/QuestionSection.md) | :heavy_minus_sign: | Code representing the section where the question belongs. Currently, program_client (client specific) and program_g_and_m (group and meeting) are supported. | program_client |
+| `Required` | *bool* | :heavy_minus_sign: | Is it required for suppliers to answer this question in their proposal? | true |
+| `Sequence` | *long* | :heavy_minus_sign: | The sequence number of the question within the proposal. | 1 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelProgramQuestionJson.md b/packages/csharp/docs/Models/Components/TravelProgramQuestionJson.md
deleted file mode 100644
index 1c014c51..00000000
--- a/packages/csharp/docs/Models/Components/TravelProgramQuestionJson.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# TravelProgramQuestionJson
-
-A question, defined by the account, for the supplier to answer as part of their proposal.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ |
-| `QuestionId` | *string* | :heavy_minus_sign: | The unique ID of the custom question. | 76c461cb-77f6-40b3-acc8-db44452f11c4 |
-| `Section` | [QuestionSectionJson](../../Models/Components/QuestionSectionJson.md) | :heavy_minus_sign: | Code representing the section where the question belongs. Currently, program_client (client specific) and program_g_and_m (group and meeting) are supported. | program_client |
-| `Required` | *bool* | :heavy_minus_sign: | Is it required for suppliers to answer this question in their proposal? | true |
-| `Sequence` | *long* | :heavy_minus_sign: | The sequence number of the question within the proposal. | 1 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelProgramQuestionTravelProgram.md b/packages/csharp/docs/Models/Components/TravelProgramQuestionTravelProgram.md
new file mode 100644
index 00000000..2a28db4d
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/TravelProgramQuestionTravelProgram.md
@@ -0,0 +1,10 @@
+# TravelProgramQuestionTravelProgram
+
+Travel program that the question belongs to.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
+| `Id` | *string* | :heavy_minus_sign: | The unique ID of the travel program. | ddc61444-45c7-4e1d-9fdd-07713c8baf9b |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelProgramStatus.md b/packages/csharp/docs/Models/Components/TravelProgramStatus.md
new file mode 100644
index 00000000..6a8ae499
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/TravelProgramStatus.md
@@ -0,0 +1,20 @@
+# TravelProgramStatus
+
+Code representing the status of the travel program.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = TravelProgramStatus.InProgress;
+```
+
+
+## Values
+
+| Name | Value |
+| ------------ | ------------ |
+| `InProgress` | in_progress |
+| `Complete` | complete |
+| `Closed` | closed |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelProgramStatusJson.md b/packages/csharp/docs/Models/Components/TravelProgramStatusJson.md
deleted file mode 100644
index cdc2b266..00000000
--- a/packages/csharp/docs/Models/Components/TravelProgramStatusJson.md
+++ /dev/null
@@ -1,20 +0,0 @@
-# TravelProgramStatusJson
-
-Code representing the status of the travel program.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = TravelProgramStatusJson.InProgress;
-```
-
-
-## Values
-
-| Name | Value |
-| ------------ | ------------ |
-| `InProgress` | in_progress |
-| `Complete` | complete |
-| `Closed` | closed |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelProgramStayType.md b/packages/csharp/docs/Models/Components/TravelProgramStayType.md
new file mode 100644
index 00000000..a22afbf7
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/TravelProgramStayType.md
@@ -0,0 +1,19 @@
+# TravelProgramStayType
+
+Code representing the stay types requested by the program. Programs can accept daily only, or daily and extended stay proposals.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = TravelProgramStayType.Daily;
+```
+
+
+## Values
+
+| Name | Value |
+| ----------------------- | ----------------------- |
+| `Daily` | daily |
+| `DailyAndExtendedStay` | daily_and_extended_stay |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelProgramStayTypeJson.md b/packages/csharp/docs/Models/Components/TravelProgramStayTypeJson.md
deleted file mode 100644
index ca556235..00000000
--- a/packages/csharp/docs/Models/Components/TravelProgramStayTypeJson.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# TravelProgramStayTypeJson
-
-Code representing the stay types requested by the program. Programs can accept daily only, or daily and extended stay proposals.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = TravelProgramStayTypeJson.Daily;
-```
-
-
-## Values
-
-| Name | Value |
-| ----------------------- | ----------------------- |
-| `Daily` | daily |
-| `DailyAndExtendedStay` | daily_and_extended_stay |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelProgramType.md b/packages/csharp/docs/Models/Components/TravelProgramType.md
new file mode 100644
index 00000000..35955242
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/TravelProgramType.md
@@ -0,0 +1,20 @@
+# TravelProgramType
+
+Code representing the travel program type.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = TravelProgramType.Corporate;
+```
+
+
+## Values
+
+| Name | Value |
+| ----------- | ----------- |
+| `Corporate` | corporate |
+| `Leisure` | leisure |
+| `Consortia` | consortia |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelProgramTypeJson.md b/packages/csharp/docs/Models/Components/TravelProgramTypeJson.md
deleted file mode 100644
index ffd84dc2..00000000
--- a/packages/csharp/docs/Models/Components/TravelProgramTypeJson.md
+++ /dev/null
@@ -1,20 +0,0 @@
-# TravelProgramTypeJson
-
-Code representing the travel program type.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = TravelProgramTypeJson.Corporate;
-```
-
-
-## Values
-
-| Name | Value |
-| ----------- | ----------- |
-| `Corporate` | corporate |
-| `Leisure` | leisure |
-| `Consortia` | consortia |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelProposal.md b/packages/csharp/docs/Models/Components/TravelProposal.md
index e3a099a1..8e7f887c 100644
--- a/packages/csharp/docs/Models/Components/TravelProposal.md
+++ b/packages/csharp/docs/Models/Components/TravelProposal.md
@@ -15,11 +15,11 @@ Represents travel proposals. Travel proposals are created by the travel supplier
| `SupplierProperty` | [SupplierProperty](../../Models/Components/SupplierProperty.md) | :heavy_minus_sign: | Supplier property that the proposal is tied to. | |
| `TravelProgram` | [TravelProposalTravelProgram](../../Models/Components/TravelProposalTravelProgram.md) | :heavy_minus_sign: | Travel program that the proposal is in response to. | |
| `ContractPeriod` | *long* | :heavy_minus_sign: | Contract period of the proposal. The year the contract begins. | 2021 |
-| `Status` | [ProposalStatusTypeJson](../../Models/Components/ProposalStatusTypeJson.md) | :heavy_minus_sign: | The status of the proposal | account_accepted |
+| `Status` | [ProposalStatusType](../../Models/Components/ProposalStatusType.md) | :heavy_minus_sign: | The status of the proposal | account_accepted |
| `Deleted` | *bool* | :heavy_minus_sign: | True indicates the proposal is deleted. | |
-| `RateReviewStatus` | [RateReviewStatusTypeJson](../../Models/Components/RateReviewStatusTypeJson.md) | :heavy_minus_sign: | The rate review status of the proposal | |
-| `BusinessType` | [BusinessTypeJson](../../Models/Components/BusinessTypeJson.md) | :heavy_minus_sign: | Business type. | corporate |
-| `Format` | [FormatTypeJson](../../Models/Components/FormatTypeJson.md) | :heavy_minus_sign: | Proposal format. | gbta2013 |
+| `RateReviewStatus` | [RateReviewStatusType](../../Models/Components/RateReviewStatusType.md) | :heavy_minus_sign: | The rate review status of the proposal | |
+| `BusinessType` | [BusinessType](../../Models/Components/BusinessType.md) | :heavy_minus_sign: | Business type. | corporate |
+| `Format` | [FormatType](../../Models/Components/FormatType.md) | :heavy_minus_sign: | Proposal format. | gbta2013 |
| `DocumentRead` | *bool* | :heavy_minus_sign: | True indicates the documents been read by the supply-side. | |
| `RejectReasonCode` | *string* | :heavy_minus_sign: | Reason the reject/decline action was performed. Used for certain actions/statuses. | Other |
| `RejectComment` | *string* | :heavy_minus_sign: | Comments regarding the reasoning for the reject/decline action. This only comes into play for certain actions/statuses. | other reasons |
@@ -28,7 +28,7 @@ Represents travel proposals. Travel proposals are created by the travel supplier
| `NegotiationDueDate` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 datetime when the negotiation response is due. | 2030-02-10T00:00:00.000Z |
| `RoomNightConsumption` | *long* | :heavy_minus_sign: | Client room nights produced at property from January 1 through June 30. | 100 |
| `Draft` | *bool* | :heavy_minus_sign: | True indicates this proposal is a draft copy that is not sent to the other party. | |
-| `Bids` | List<[TravelProposalBidIdJson](../../Models/Components/TravelProposalBidIdJson.md)> | :heavy_minus_sign: | Collection of bid IDs attached to the proposal. | |
-| `CustomQuestionAnswers` | List<[CustomQuestionAnswerJson0](../../Models/Components/CustomQuestionAnswerJson0.md)> | :heavy_minus_sign: | Collection of custom questions. | |
-| `GroupAndMeeting` | [TravelGroupAndMeetingJson](../../Models/Components/TravelGroupAndMeetingJson.md) | :heavy_minus_sign: | Group and meeting information. | |
-| `ProposalDisposition` | [TravelProposalDispositionJson](../../Models/Components/TravelProposalDispositionJson.md) | :heavy_minus_sign: | Represent proposal disposition details. | |
\ No newline at end of file
+| `Bids` | List<[TravelProposalBid1](../../Models/Components/TravelProposalBid1.md)> | :heavy_minus_sign: | Collection of bid IDs attached to the proposal. | |
+| `CustomQuestionAnswers` | List<[TravelProposalCustomQuestion](../../Models/Components/TravelProposalCustomQuestion.md)> | :heavy_minus_sign: | Collection of custom questions. | |
+| `GroupAndMeeting` | [TravelProposalGroupAndMeeting](../../Models/Components/TravelProposalGroupAndMeeting.md) | :heavy_minus_sign: | Group and meeting information. | |
+| `ProposalDisposition` | [TravelProposalDisposition](../../Models/Components/TravelProposalDisposition.md) | :heavy_minus_sign: | Represent proposal disposition details. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelProposalBid.md b/packages/csharp/docs/Models/Components/TravelProposalBid.md
deleted file mode 100644
index 1569dc8d..00000000
--- a/packages/csharp/docs/Models/Components/TravelProposalBid.md
+++ /dev/null
@@ -1,31 +0,0 @@
-# TravelProposalBid
-
-A travel proposal bid rate plan that is being proposed to a customer.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ |
-| `TravelProposal` | [TravelProposalBidTravelProposal](../../Models/Components/TravelProposalBidTravelProposal.md) | :heavy_minus_sign: | The travel proposal that the bid belongs to. | |
-| `Id` | *string* | :heavy_minus_sign: | The unique ID of the bid. | 3e2a8614-7d52-442e-8c4f-a6a18ed9ac4d |
-| `StayType` | [BidStayTypeJson](../../Models/Components/BidStayTypeJson.md) | :heavy_minus_sign: | Bid stay type. | |
-| `Order` | *long* | :heavy_minus_sign: | The order of the bid compared to other bids of the same stay type. This is used to distinguish between extended stay 1 vs extended stay 2. | 1 |
-| `Status` | [BidStatusTypeJson](../../Models/Components/BidStatusTypeJson.md) | :heavy_minus_sign: | Bid stay type. | |
-| `Name` | *string* | :heavy_minus_sign: | Name given to the bid. | My Corporate Bid |
-| `Rate` | [TravelBidRateJson](../../Models/Components/TravelBidRateJson.md) | :heavy_minus_sign: | The rate (cost) information for a travel bid. | |
-| `MarketCode` | *string* | :heavy_minus_sign: | The market code given to the rate plan / bid by the supplier. | mc12 |
-| `CurrencyCode` | *string* | :heavy_minus_sign: | The ISO 4217 currency code used for the rates and other monetary values in the bid. | USD |
-| `WeekendDays` | List<[TravelBidWeekendDayJson](../../Models/Components/TravelBidWeekendDayJson.md)> | :heavy_minus_sign: | Days of the week that are considered weekend days, to apply weekend rates. Does not apply when format is GBTA2013. | |
-| `Lra` | *bool* | :heavy_minus_sign: | Does the bid include LRA (Last Room Availability) rates? | |
-| `Nlra` | *bool* | :heavy_minus_sign: | Does the bid include non-LRA rates? | |
-| `FairDateLra` | *bool* | :heavy_minus_sign: | Are the fair date rates LRA (Last Room Availability)? | |
-| `InternalNote` | *string* | :heavy_minus_sign: | Additional comments passed from the domain-level rate plan. | |
-| `Comments` | List<[TravelBidCommentJson](../../Models/Components/TravelBidCommentJson.md)> | :heavy_minus_sign: | Additional Info | |
-| `RoomTypes` | List<[TravelBidRoomJson](../../Models/Components/TravelBidRoomJson.md)> | :heavy_minus_sign: | Room Types associated with the bid | |
-| `Seasons` | List<[TravelBidSeasonJson](../../Models/Components/TravelBidSeasonJson.md)> | :heavy_minus_sign: | Seasons associated with the bid | |
-| `Discounts` | List<[TravelBidDiscountJson](../../Models/Components/TravelBidDiscountJson.md)> | :heavy_minus_sign: | Dynamic discounts associated with the bid | |
-| `FairSeasons` | List<[TravelBidFairSeasonJson](../../Models/Components/TravelBidFairSeasonJson.md)> | :heavy_minus_sign: | Fair seasons associated with the bid | |
-| `Amenities` | List<[TravelBidAmenityJson](../../Models/Components/TravelBidAmenityJson.md)> | :heavy_minus_sign: | Amenities associated with the bid | |
-| `Policies` | List<[TravelBidPolicyJson](../../Models/Components/TravelBidPolicyJson.md)> | :heavy_minus_sign: | Policies associated with the bid | |
-| `TaxesAndFees` | List<[TravelBidTaxFeeJson](../../Models/Components/TravelBidTaxFeeJson.md)> | :heavy_minus_sign: | Taxes & fees associated with the bid | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelProposalBid1.md b/packages/csharp/docs/Models/Components/TravelProposalBid1.md
new file mode 100644
index 00000000..97bbb89c
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/TravelProposalBid1.md
@@ -0,0 +1,10 @@
+# TravelProposalBid1
+
+A travel proposal bid.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
+| `Id` | *string* | :heavy_minus_sign: | The ID of the bid. | 1c208c0d-cf96-42ec-a2c3-7ab7a5c04825 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelProposalBid2.md b/packages/csharp/docs/Models/Components/TravelProposalBid2.md
new file mode 100644
index 00000000..e58dec00
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/TravelProposalBid2.md
@@ -0,0 +1,31 @@
+# TravelProposalBid2
+
+A travel proposal bid rate plan that is being proposed to a customer.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ |
+| `TravelProposal` | [TravelProposalBidTravelProposal](../../Models/Components/TravelProposalBidTravelProposal.md) | :heavy_minus_sign: | The travel proposal that the bid belongs to. | |
+| `Id` | *string* | :heavy_minus_sign: | The unique ID of the bid. | 3e2a8614-7d52-442e-8c4f-a6a18ed9ac4d |
+| `StayType` | [BidStayType](../../Models/Components/BidStayType.md) | :heavy_minus_sign: | Bid stay type. | |
+| `Order` | *long* | :heavy_minus_sign: | The order of the bid compared to other bids of the same stay type. This is used to distinguish between extended stay 1 vs extended stay 2. | 1 |
+| `Status` | [BidStatusType](../../Models/Components/BidStatusType.md) | :heavy_minus_sign: | Bid stay type. | |
+| `Name` | *string* | :heavy_minus_sign: | Name given to the bid. | My Corporate Bid |
+| `Rate` | [TravelProposalBidRate](../../Models/Components/TravelProposalBidRate.md) | :heavy_minus_sign: | The rate (cost) information for a travel bid. | |
+| `MarketCode` | *string* | :heavy_minus_sign: | The market code given to the rate plan / bid by the supplier. | mc12 |
+| `CurrencyCode` | *string* | :heavy_minus_sign: | The ISO 4217 currency code used for the rates and other monetary values in the bid. | USD |
+| `WeekendDays` | List<[TravelBidWeekendDays](../../Models/Components/TravelBidWeekendDays.md)> | :heavy_minus_sign: | Days of the week that are considered weekend days, to apply weekend rates. Does not apply when format is GBTA2013. | |
+| `Lra` | *bool* | :heavy_minus_sign: | Does the bid include LRA (Last Room Availability) rates? | |
+| `Nlra` | *bool* | :heavy_minus_sign: | Does the bid include non-LRA rates? | |
+| `FairDateLra` | *bool* | :heavy_minus_sign: | Are the fair date rates LRA (Last Room Availability)? | |
+| `InternalNote` | *string* | :heavy_minus_sign: | Additional comments passed from the domain-level rate plan. | |
+| `Comments` | List<[TravelBidComment](../../Models/Components/TravelBidComment.md)> | :heavy_minus_sign: | Additional Info | |
+| `RoomTypes` | List<[TravelBidRoom](../../Models/Components/TravelBidRoom.md)> | :heavy_minus_sign: | Room Types associated with the bid | |
+| `Seasons` | List<[TravelBidSeason](../../Models/Components/TravelBidSeason.md)> | :heavy_minus_sign: | Seasons associated with the bid | |
+| `Discounts` | List<[TravelBidDiscount](../../Models/Components/TravelBidDiscount.md)> | :heavy_minus_sign: | Dynamic discounts associated with the bid | |
+| `FairSeasons` | List<[TravelBidFairSeason](../../Models/Components/TravelBidFairSeason.md)> | :heavy_minus_sign: | Fair seasons associated with the bid | |
+| `Amenities` | List<[TravelBidAmenity](../../Models/Components/TravelBidAmenity.md)> | :heavy_minus_sign: | Amenities associated with the bid | |
+| `Policies` | List<[TravelBidPolicy](../../Models/Components/TravelBidPolicy.md)> | :heavy_minus_sign: | Policies associated with the bid | |
+| `TaxesAndFees` | List<[TravelBidTaxAndFee](../../Models/Components/TravelBidTaxAndFee.md)> | :heavy_minus_sign: | Taxes & fees associated with the bid | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelProposalBidIdJson.md b/packages/csharp/docs/Models/Components/TravelProposalBidIdJson.md
deleted file mode 100644
index dd1172b9..00000000
--- a/packages/csharp/docs/Models/Components/TravelProposalBidIdJson.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# TravelProposalBidIdJson
-
-A travel proposal bid.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
-| `Id` | *string* | :heavy_minus_sign: | The ID of the bid. | 1c208c0d-cf96-42ec-a2c3-7ab7a5c04825 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelProposalBidPaginatedResponse.md b/packages/csharp/docs/Models/Components/TravelProposalBidPaginatedResponse.md
index 3f289540..5da923ad 100644
--- a/packages/csharp/docs/Models/Components/TravelProposalBidPaginatedResponse.md
+++ b/packages/csharp/docs/Models/Components/TravelProposalBidPaginatedResponse.md
@@ -5,7 +5,7 @@ A paginated list of travel proposals.
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- |
-| `Paging` | [PagingJson](../../Models/Components/PagingJson.md) | :heavy_minus_sign: | Represents pagination information for a collection of resources. |
-| `Data` | List<[TravelProposalBid](../../Models/Components/TravelProposalBid.md)> | :heavy_minus_sign: | Paginated list of business transient proposal bids. |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- |
+| `Paging` | [Paging](../../Models/Components/Paging.md) | :heavy_minus_sign: | Represents pagination information for a collection of resources. |
+| `Data` | List<[TravelProposalBid2](../../Models/Components/TravelProposalBid2.md)> | :heavy_minus_sign: | Paginated list of business transient proposal bids. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelProposalBidRate.md b/packages/csharp/docs/Models/Components/TravelProposalBidRate.md
new file mode 100644
index 00000000..2f9abb4d
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/TravelProposalBidRate.md
@@ -0,0 +1,13 @@
+# TravelProposalBidRate
+
+The rate (cost) information for a travel bid.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- |
+| `Level` | [RateLevelType](../../Models/Components/RateLevelType.md) | :heavy_minus_sign: | Rate level | corporate |
+| `Type` | [RateType](../../Models/Components/RateType.md) | :heavy_minus_sign: | Rate type. | |
+| `PlanCode` | *string* | :heavy_minus_sign: | The code given to the bid (also called rate plan) by the supplier. | rp123 |
+| `Tier` | *string* | :heavy_minus_sign: | The rate tier given to the bid (also called rate plan) by the supplier. | tier1 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelProposalCustomQuestion.md b/packages/csharp/docs/Models/Components/TravelProposalCustomQuestion.md
new file mode 100644
index 00000000..9e77eca7
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/TravelProposalCustomQuestion.md
@@ -0,0 +1,11 @@
+# TravelProposalCustomQuestion
+
+Represents custom question associated with a travel proposal.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- |
+| `Question` | [TravelProposalCustomQuestionQuestion](../../Models/Components/TravelProposalCustomQuestionQuestion.md) | :heavy_minus_sign: | Travel account that the proposal is responding to. | |
+| `Answer` | *string* | :heavy_minus_sign: | Hotel's answer to the program's custom question. | No. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelProposalCustomQuestionQuestion.md b/packages/csharp/docs/Models/Components/TravelProposalCustomQuestionQuestion.md
new file mode 100644
index 00000000..fdd08dc8
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/TravelProposalCustomQuestionQuestion.md
@@ -0,0 +1,10 @@
+# TravelProposalCustomQuestionQuestion
+
+Travel account that the proposal is responding to.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
+| `Id` | *string* | :heavy_minus_sign: | The unique ID of the question. | 565ceabb-786a-4a6d-8c85-e2fccc867e88 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelProposalDisposition.md b/packages/csharp/docs/Models/Components/TravelProposalDisposition.md
new file mode 100644
index 00000000..f1bbdf3a
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/TravelProposalDisposition.md
@@ -0,0 +1,11 @@
+# TravelProposalDisposition
+
+Represent proposal disposition details.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- |
+| `BidDispositions` | List<[TravelBidDisposition](../../Models/Components/TravelBidDisposition.md)> | :heavy_minus_sign: | List of bid dispositions. | |
+| `GroupAndMeetingAccepted` | *bool* | :heavy_minus_sign: | Indicates if the group and meeting is accepted. | true |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelProposalDispositionJson.md b/packages/csharp/docs/Models/Components/TravelProposalDispositionJson.md
deleted file mode 100644
index 34be05ee..00000000
--- a/packages/csharp/docs/Models/Components/TravelProposalDispositionJson.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# TravelProposalDispositionJson
-
-Represent proposal disposition details.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
-| `BidDispositions` | List<[TravelBidDispositionJson](../../Models/Components/TravelBidDispositionJson.md)> | :heavy_minus_sign: | List of bid dispositions. | |
-| `GroupAndMeetingAccepted` | *bool* | :heavy_minus_sign: | Indicates if the group and meeting is accepted. | true |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelProposalGroupAndMeeting.md b/packages/csharp/docs/Models/Components/TravelProposalGroupAndMeeting.md
new file mode 100644
index 00000000..9305596e
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/TravelProposalGroupAndMeeting.md
@@ -0,0 +1,15 @@
+# TravelProposalGroupAndMeeting
+
+Group and meeting information.
+
+
+## Fields
+
+| Field | Type | Required | Description |
+| ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- |
+| `RunOfHouseRate` | [TravelProposalGroupAndMeetingRunOfHouseRate](../../Models/Components/TravelProposalGroupAndMeetingRunOfHouseRate.md) | :heavy_minus_sign: | Run of house rate information. |
+| `DayDelegateRate` | [TravelProposalGroupAndMeetingDayDelegateRate](../../Models/Components/TravelProposalGroupAndMeetingDayDelegateRate.md) | :heavy_minus_sign: | Day delegate rate information. This represents the costs for hosting meeting at the venue for a half or full day. |
+| `TaxAndServiceCharge` | [TravelProposalGroupAndMeetingTaxAndServiceCharge](../../Models/Components/TravelProposalGroupAndMeetingTaxAndServiceCharge.md) | :heavy_minus_sign: | Tax and service charge information. |
+| `MeetingRoomBasicInformation` | [TravelProposalGroupAndMeetingMeetingRoomBasicInformation](../../Models/Components/TravelProposalGroupAndMeetingMeetingRoomBasicInformation.md) | :heavy_minus_sign: | Meeting room basic information. |
+| `Amenity` | [TravelProposalGroupAndMeetingAmenity](../../Models/Components/TravelProposalGroupAndMeetingAmenity.md) | :heavy_minus_sign: | Group and meeting amenity info. |
+| `BreakOutRoom` | [TravelProposalGroupAndMeetingBreakOutRoom](../../Models/Components/TravelProposalGroupAndMeetingBreakOutRoom.md) | :heavy_minus_sign: | Break-out room information. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelProposalGroupAndMeetingAmenity.md b/packages/csharp/docs/Models/Components/TravelProposalGroupAndMeetingAmenity.md
new file mode 100644
index 00000000..bb8ab1e3
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/TravelProposalGroupAndMeetingAmenity.md
@@ -0,0 +1,17 @@
+# TravelProposalGroupAndMeetingAmenity
+
+Group and meeting amenity info.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- |
+| `LcdIncluded` | *bool* | :heavy_minus_sign: | True indicates a liquid crystal display (LCD) is included in the amenity. | |
+| `LcdPrice` | *double* | :heavy_minus_sign: | Price of the liquid crystal display (LCD). | 100 |
+| `ScreenIncluded` | *bool* | :heavy_minus_sign: | True indicates a screen is included in the amenity. | |
+| `ScreenPrice` | *double* | :heavy_minus_sign: | Price of the screen. | 100 |
+| `HsiaIncluded` | *bool* | :heavy_minus_sign: | True indicates high speed internet access is included in the amenity. | |
+| `HsiaPrice` | *double* | :heavy_minus_sign: | Price of high speed internet access (HSIA). | 100 |
+| `ComplementaryParkingIncluded` | *bool* | :heavy_minus_sign: | True indicates parking is included in the amenity. | |
+| `WhatCompanyProvidesAVEquipment` | *string* | :heavy_minus_sign: | Name of company providing AV equipment. | Some company |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelProposalGroupAndMeetingBreakOutRoom.md b/packages/csharp/docs/Models/Components/TravelProposalGroupAndMeetingBreakOutRoom.md
new file mode 100644
index 00000000..9601993b
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/TravelProposalGroupAndMeetingBreakOutRoom.md
@@ -0,0 +1,14 @@
+# TravelProposalGroupAndMeetingBreakOutRoom
+
+Break-out room information.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------ | ------------------------------------------------------ | ------------------------------------------------------ | ------------------------------------------------------ | ------------------------------------------------------ |
+| `TenPersonRoomIncluded` | *bool* | :heavy_minus_sign: | True indicates a 10 person room is included. | |
+| `Price10PersonRoom` | *double* | :heavy_minus_sign: | Price for 10 person room. | 100 |
+| `TwentyFivePersonRoomIncluded` | *bool* | :heavy_minus_sign: | True indicates a 25 person room included. | |
+| `Price25PersonRoom` | *double* | :heavy_minus_sign: | Price for 25 person room. | 100 |
+| `PermanentBoardRoomSetUp` | *bool* | :heavy_minus_sign: | True indicates there is a permanent board room set up. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelProposalGroupAndMeetingDayDelegateRate.md b/packages/csharp/docs/Models/Components/TravelProposalGroupAndMeetingDayDelegateRate.md
new file mode 100644
index 00000000..44f098b0
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/TravelProposalGroupAndMeetingDayDelegateRate.md
@@ -0,0 +1,13 @@
+# TravelProposalGroupAndMeetingDayDelegateRate
+
+Day delegate rate information. This represents the costs for hosting meeting at the venue for a half or full day.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| -------------------------------------------- | -------------------------------------------- | -------------------------------------------- | -------------------------------------------- | -------------------------------------------- |
+| `FullDay10To50People` | *double* | :heavy_minus_sign: | Full day delegate rate for 10 to 50 people. | 100 |
+| `FullDay51To100People` | *double* | :heavy_minus_sign: | Full day delegate rate for 51 to 100 people. | 200 |
+| `HalfDay10To50People` | *double* | :heavy_minus_sign: | Half day delegate rate for 10 to 50 people. | 50 |
+| `HalfDay51To100People` | *double* | :heavy_minus_sign: | Half day delegate rate for 51 to 100 people. | 100 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelProposalGroupAndMeetingMeetingRoomBasicInformation.md b/packages/csharp/docs/Models/Components/TravelProposalGroupAndMeetingMeetingRoomBasicInformation.md
new file mode 100644
index 00000000..105e3823
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/TravelProposalGroupAndMeetingMeetingRoomBasicInformation.md
@@ -0,0 +1,12 @@
+# TravelProposalGroupAndMeetingMeetingRoomBasicInformation
+
+Meeting room basic information.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- |
+| `LargestMeetingRoom` | *long* | :heavy_minus_sign: | Size of the largest meeting room. Units of measurement determined by `unitOfMeasurement` field. | 1000 |
+| `UnitOfMeasurement` | *string* | :heavy_minus_sign: | Unit of measurement of the `largestMeetingRoom`'s size. | sq.ft. |
+| `MeetingRooms` | *long* | :heavy_minus_sign: | Total number of meeting rooms. | 10 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelProposalGroupAndMeetingRunOfHouseRate.md b/packages/csharp/docs/Models/Components/TravelProposalGroupAndMeetingRunOfHouseRate.md
new file mode 100644
index 00000000..b4e87938
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/TravelProposalGroupAndMeetingRunOfHouseRate.md
@@ -0,0 +1,19 @@
+# TravelProposalGroupAndMeetingRunOfHouseRate
+
+Run of house rate information.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------- | ------------------------------------------------- | ------------------------------------------------- | ------------------------------------------------- | ------------------------------------------------- |
+| `SeasonOne10To50People` | *double* | :heavy_minus_sign: | Season one run of house rate for 10-50 people. | 100 |
+| `SeasonOne51To100People` | *double* | :heavy_minus_sign: | Season one run of house rate for 51-100 people. | 200 |
+| `SeasonTwo10To50People` | *double* | :heavy_minus_sign: | Season two run of house rate for 10-50 people. | 300 |
+| `SeasonTwo51To100People` | *double* | :heavy_minus_sign: | Season two run of house rate for 51-100 people. | 400 |
+| `SeasonThree10To50People` | *double* | :heavy_minus_sign: | Season three run of house rate for 10-50 people. | 500 |
+| `SeasonThree51To100People` | *double* | :heavy_minus_sign: | Season three run of house rate for 51-100 people. | 600 |
+| `SeasonFour10To50People` | *double* | :heavy_minus_sign: | Season four run of house rate for 10-50 people. | 700 |
+| `SeasonFour51To100People` | *double* | :heavy_minus_sign: | Season four run of house rate for 51-100 people. | 800 |
+| `SeasonFive10To50People` | *double* | :heavy_minus_sign: | Season five run of house rate for 10-50 people. | 900 |
+| `SeasonFive51To100People` | *double* | :heavy_minus_sign: | Season five run of house rate for 51-100 people. | 1000 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelProposalGroupAndMeetingTaxAndServiceCharge.md b/packages/csharp/docs/Models/Components/TravelProposalGroupAndMeetingTaxAndServiceCharge.md
new file mode 100644
index 00000000..aa9d75dd
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/TravelProposalGroupAndMeetingTaxAndServiceCharge.md
@@ -0,0 +1,15 @@
+# TravelProposalGroupAndMeetingTaxAndServiceCharge
+
+Tax and service charge information.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- |
+| `TaxAmount` | *double* | :heavy_minus_sign: | Tax amount. | 0 |
+| `TaxPercent` | *bool* | :heavy_minus_sign: | True indicates the tax amount represents a percentage, instead of a monetary value. | |
+| `TaxIncluded` | *bool* | :heavy_minus_sign: | True indicates the tax included. | |
+| `ServiceChargeAmount` | *double* | :heavy_minus_sign: | Service charge amount. | 1 |
+| `ServiceChargePercent` | *bool* | :heavy_minus_sign: | True indicates the service charge amount represents a percentage, instead of a monetary value | |
+| `ServiceChargeIncluded` | *bool* | :heavy_minus_sign: | True indicates the service charge is included. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelProposalPaginatedResponse.md b/packages/csharp/docs/Models/Components/TravelProposalPaginatedResponse.md
index c470452f..e3bd513a 100644
--- a/packages/csharp/docs/Models/Components/TravelProposalPaginatedResponse.md
+++ b/packages/csharp/docs/Models/Components/TravelProposalPaginatedResponse.md
@@ -7,5 +7,5 @@ A paginated list of travel proposals.
| Field | Type | Required | Description |
| ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- |
-| `Paging` | [PagingJson](../../Models/Components/PagingJson.md) | :heavy_minus_sign: | Represents pagination information for a collection of resources. |
+| `Paging` | [Paging](../../Models/Components/Paging.md) | :heavy_minus_sign: | Represents pagination information for a collection of resources. |
| `Data` | List<[TravelProposal](../../Models/Components/TravelProposal.md)> | :heavy_minus_sign: | Paginated list of business transient proposals. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelRunOfHouseRateJson.md b/packages/csharp/docs/Models/Components/TravelRunOfHouseRateJson.md
deleted file mode 100644
index c1840c2a..00000000
--- a/packages/csharp/docs/Models/Components/TravelRunOfHouseRateJson.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# TravelRunOfHouseRateJson
-
-Run of house rate information.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------- | ------------------------------------------------- | ------------------------------------------------- | ------------------------------------------------- | ------------------------------------------------- |
-| `SeasonOne10To50People` | *double* | :heavy_minus_sign: | Season one run of house rate for 10-50 people. | 100 |
-| `SeasonOne51To100People` | *double* | :heavy_minus_sign: | Season one run of house rate for 51-100 people. | 200 |
-| `SeasonTwo10To50People` | *double* | :heavy_minus_sign: | Season two run of house rate for 10-50 people. | 300 |
-| `SeasonTwo51To100People` | *double* | :heavy_minus_sign: | Season two run of house rate for 51-100 people. | 400 |
-| `SeasonThree10To50People` | *double* | :heavy_minus_sign: | Season three run of house rate for 10-50 people. | 500 |
-| `SeasonThree51To100People` | *double* | :heavy_minus_sign: | Season three run of house rate for 51-100 people. | 600 |
-| `SeasonFour10To50People` | *double* | :heavy_minus_sign: | Season four run of house rate for 10-50 people. | 700 |
-| `SeasonFour51To100People` | *double* | :heavy_minus_sign: | Season four run of house rate for 51-100 people. | 800 |
-| `SeasonFive10To50People` | *double* | :heavy_minus_sign: | Season five run of house rate for 10-50 people. | 900 |
-| `SeasonFive51To100People` | *double* | :heavy_minus_sign: | Season five run of house rate for 51-100 people. | 1000 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/TravelTaxAndServiceChargeJson.md b/packages/csharp/docs/Models/Components/TravelTaxAndServiceChargeJson.md
deleted file mode 100644
index ee2ab1a7..00000000
--- a/packages/csharp/docs/Models/Components/TravelTaxAndServiceChargeJson.md
+++ /dev/null
@@ -1,15 +0,0 @@
-# TravelTaxAndServiceChargeJson
-
-Tax and service charge information.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- |
-| `TaxAmount` | *double* | :heavy_minus_sign: | Tax amount. | 0 |
-| `TaxPercent` | *bool* | :heavy_minus_sign: | True indicates the tax amount represents a percentage, instead of a monetary value. | |
-| `TaxIncluded` | *bool* | :heavy_minus_sign: | True indicates the tax included. | |
-| `ServiceChargeAmount` | *double* | :heavy_minus_sign: | Service charge amount. | 1 |
-| `ServiceChargePercent` | *bool* | :heavy_minus_sign: | True indicates the service charge amount represents a percentage, instead of a monetary value | |
-| `ServiceChargeIncluded` | *bool* | :heavy_minus_sign: | True indicates the service charge is included. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/UnitPosition.md b/packages/csharp/docs/Models/Components/UnitPosition.md
new file mode 100644
index 00000000..29855da1
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/UnitPosition.md
@@ -0,0 +1,19 @@
+# UnitPosition
+
+Unit position used for text box question type.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = UnitPosition.Left;
+```
+
+
+## Values
+
+| Name | Value |
+| ------- | ------- |
+| `Left` | Left |
+| `Right` | Right |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/UnitPositionJson.md b/packages/csharp/docs/Models/Components/UnitPositionJson.md
deleted file mode 100644
index e8f2dd8e..00000000
--- a/packages/csharp/docs/Models/Components/UnitPositionJson.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# UnitPositionJson
-
-Unit position used for text box question type.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = UnitPositionJson.Left;
-```
-
-
-## Values
-
-| Name | Value |
-| ------- | ------- |
-| `Left` | Left |
-| `Right` | Right |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/UpdatedThroughNameProperty.md b/packages/csharp/docs/Models/Components/UpdatedThroughNameProperty.md
new file mode 100644
index 00000000..feb3226b
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/UpdatedThroughNameProperty.md
@@ -0,0 +1,103 @@
+# UpdatedThroughNameProperty
+
+Name of the place where this change was updated through.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = UpdatedThroughNameProperty.AbstractGuestSideAuthorUpdate;
+```
+
+
+## Values
+
+| Name | Value |
+| --------------------------------------------------------------- | --------------------------------------------------------------- |
+| `AbstractGuestSideAuthorUpdate` | Abstract Guest Side Author Update |
+| `AbstractGuestSideReviewerUpdate` | Abstract Guest Side Reviewer Update |
+| `AbstractGuestSideUser` | Abstract Guest Side User |
+| `AbstractPlannerSide` | Abstract Planner side |
+| `AddressBookProfile` | Address Book Profile |
+| `AmexCardDelete` | Amex Card Delete |
+| `AmexCardInsert` | Amex Card Insert |
+| `AmexCardUpdate` | Amex Card Update |
+| `AnswersReplacedFromAdministration` | Answers Replaced from Administration |
+| `AppointmentGuestSide` | Appointment Guest Side |
+| `AttendeeHub` | Attendee Hub |
+| `BudgetAllocationUpdate` | Budget Allocation Update |
+| `BudgetAttendeeUpdate` | Budget Attendee Update |
+| `BudgetItemCustomFieldAnswersReplacedFromAdministration` | Budget Item Custom Field Answers Replaced from Administration |
+| `BudgetItemDelete` | Budget Item Delete |
+| `BudgetItemDuplicate` | Budget Item Duplicate |
+| `BudgetItemImport` | Budget Item Import |
+| `BudgetItemInsertViaRESTAPI` | Budget Item Insert via REST API |
+| `BudgetItemInsert` | Budget Item Insert |
+| `BudgetItemSingleUpdate` | Budget Item Single Update |
+| `BudgetItemTemplateImport` | Budget Item Template Import |
+| `BudgetItemUpdateViaRESTAPI` | Budget Item Update via REST API |
+| `BudgetItemsBulkAssignVendor` | Budget Items Bulk Assign Vendor |
+| `BudgetItemsBulkCopyCostLabel` | Budget Items Bulk Copy Cost label |
+| `BudgetItemsBulkCopy` | Budget Items Bulk Copy |
+| `BudgetItemsBulkDelete` | Budget Items Bulk Delete |
+| `BudgetItemsBulkUpdate` | Budget Items Bulk Update |
+| `BudgetVersionUpdate` | Budget Version Update |
+| `BulkUpdateContactFieldAnswer` | Bulk Update Contact Field Answer |
+| `ConcurReconciliationCreateNewBudgetItemForEachExpense` | Concur Reconciliation - Create New Budget Item For Each Expense |
+| `ConcurReconciliationMapToExistingBudgetItem` | Concur Reconciliation - Map to Existing Budget Item |
+| `ConfirmOptInEmail` | Confirm Opt In Email |
+| `ContactImport` | Contact Import |
+| `ContactNewMembership` | Contact New Membership |
+| `ContactPendingObfuscation` | Contact Pending Obfuscation |
+| `ContactWebsiteProfileUpdate` | Contact Website Profile Update |
+| `CreatedWithinMeetingRequest` | Created Within Meeting Request |
+| `CreatedFromAPI` | Created from API |
+| `CreatedFromRequestWebsite` | Created from Request Website |
+| `CrowdCompassProfileUpdate` | Crowd Compass Profile Update |
+| `CustomFieldAddedFromAdmin` | Custom Field Added From Admin |
+| `CustomFieldAddedViaRESTAPI` | Custom Field Added via REST API |
+| `CustomFieldDeletedFromAdmin` | Custom Field Deleted From Admin |
+| `CustomFieldModifiedFromAdmin` | Custom Field Modified From Admin |
+| `CustomFieldModifiedViaRESTAPI` | Custom Field Modified via REST API |
+| `DeletedWithinAdministration` | Deleted Within Administration |
+| `DeletedFromMeetingRequestForm` | Deleted from Meeting Request Form |
+| `DeletedFromRequestWebsite` | Deleted from Request Website |
+| `DeletedWithinMeetingRequest` | Deleted within Meeting Request |
+| `EventAutomaticallyCreatedFromMeetingRequest` | Event Automatically Created from Meeting Request |
+| `EventCreatedFromAPI` | Event Created from API |
+| `EventCreatedFromEventWizard` | Event Created from Event Wizard |
+| `EventGuestSideModification` | Event Guest Side Modification |
+| `EventGuestSideRegistration` | Event Guest Side Registration |
+| `EventImport` | Event Import |
+| `EventModifiedFromMeetingRequestViaAPI` | Event Modified from Meeting Request via API |
+| `EventModifiedFromMeetingRequest` | Event Modified from Meeting Request |
+| `EventOnsiteRegistration` | Event Onsite Registration |
+| `EventPOST` | Event POST |
+| `EventPlannerContactInformationUpdate` | Event Planner Contact Information Update |
+| `EventPlannerSideModification` | Event Planner Side Modification |
+| `EventPlannerSideRegistration` | Event Planner Side Registration |
+| `HotelRequestImport` | Hotel Request Import |
+| `MarketoContactImport` | Marketo Contact Import |
+| `ModifiedWithinEvent` | Modified Within Event |
+| `ModifiedWithinMeetingRequest` | Modified Within Meeting Request |
+| `ModifiedFromAPI` | Modified from API |
+| `ModifiedFromEventDocuments` | Modified from Event Documents |
+| `ModifiedFromMeetingRequestViaNotification` | Modified from Meeting Request via Notification |
+| `ModifiedFromRequestWebsite` | Modified from Request Website |
+| `RegistrationImport` | Registration Import |
+| `RestApi` | REST API |
+| `SalesforceIntegration` | Salesforce Integration |
+| `SurveyAuthorModification` | Survey Author Modification |
+| `SurveyAuthorResponse` | Survey Author Response |
+| `SurveyGuestSideModification` | Survey Guest Side Modification |
+| `SurveyGuestSideResponse` | Survey Guest Side Response |
+| `SurveyPOST` | Survey POST |
+| `TravelCostImportMapToExistingBudgetItem` | Travel Cost Import - Map to Existing Budget item |
+| `TravelCostImportMapToNewBudgetItem` | Travel Cost Import - Map to New Budget Item |
+| `VCNTransactionCreateNewBudgetItemForEachTransaction` | VCN Transaction - Create New Budget Item For Each Transaction |
+| `VCNTransactionMapToMultipleBudgetItem` | VCN Transaction - Map to Multiple Budget Item |
+| `VCNTransactionMapToSingleBudgetItem` | VCN Transaction - Map to Single Budget Item |
+| `VCNTransactionRemovedFromBudgetItem` | VCN Transaction - Removed from Budget Item |
+| `WebServices` | Web Services |
+| `EMarketingProfileUpdate` | eMarketing Profile Update |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/UpdatedThroughNamePropertyJson.md b/packages/csharp/docs/Models/Components/UpdatedThroughNamePropertyJson.md
deleted file mode 100644
index 4c6a36a1..00000000
--- a/packages/csharp/docs/Models/Components/UpdatedThroughNamePropertyJson.md
+++ /dev/null
@@ -1,103 +0,0 @@
-# UpdatedThroughNamePropertyJson
-
-Name of the place where this change was updated through.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = UpdatedThroughNamePropertyJson.AbstractGuestSideAuthorUpdate;
-```
-
-
-## Values
-
-| Name | Value |
-| --------------------------------------------------------------- | --------------------------------------------------------------- |
-| `AbstractGuestSideAuthorUpdate` | Abstract Guest Side Author Update |
-| `AbstractGuestSideReviewerUpdate` | Abstract Guest Side Reviewer Update |
-| `AbstractGuestSideUser` | Abstract Guest Side User |
-| `AbstractPlannerSide` | Abstract Planner side |
-| `AddressBookProfile` | Address Book Profile |
-| `AmexCardDelete` | Amex Card Delete |
-| `AmexCardInsert` | Amex Card Insert |
-| `AmexCardUpdate` | Amex Card Update |
-| `AnswersReplacedFromAdministration` | Answers Replaced from Administration |
-| `AppointmentGuestSide` | Appointment Guest Side |
-| `AttendeeHub` | Attendee Hub |
-| `BudgetAllocationUpdate` | Budget Allocation Update |
-| `BudgetAttendeeUpdate` | Budget Attendee Update |
-| `BudgetItemCustomFieldAnswersReplacedFromAdministration` | Budget Item Custom Field Answers Replaced from Administration |
-| `BudgetItemDelete` | Budget Item Delete |
-| `BudgetItemDuplicate` | Budget Item Duplicate |
-| `BudgetItemImport` | Budget Item Import |
-| `BudgetItemInsertViaRESTAPI` | Budget Item Insert via REST API |
-| `BudgetItemInsert` | Budget Item Insert |
-| `BudgetItemSingleUpdate` | Budget Item Single Update |
-| `BudgetItemTemplateImport` | Budget Item Template Import |
-| `BudgetItemUpdateViaRESTAPI` | Budget Item Update via REST API |
-| `BudgetItemsBulkAssignVendor` | Budget Items Bulk Assign Vendor |
-| `BudgetItemsBulkCopyCostLabel` | Budget Items Bulk Copy Cost label |
-| `BudgetItemsBulkCopy` | Budget Items Bulk Copy |
-| `BudgetItemsBulkDelete` | Budget Items Bulk Delete |
-| `BudgetItemsBulkUpdate` | Budget Items Bulk Update |
-| `BudgetVersionUpdate` | Budget Version Update |
-| `BulkUpdateContactFieldAnswer` | Bulk Update Contact Field Answer |
-| `ConcurReconciliationCreateNewBudgetItemForEachExpense` | Concur Reconciliation - Create New Budget Item For Each Expense |
-| `ConcurReconciliationMapToExistingBudgetItem` | Concur Reconciliation - Map to Existing Budget Item |
-| `ConfirmOptInEmail` | Confirm Opt In Email |
-| `ContactImport` | Contact Import |
-| `ContactNewMembership` | Contact New Membership |
-| `ContactPendingObfuscation` | Contact Pending Obfuscation |
-| `ContactWebsiteProfileUpdate` | Contact Website Profile Update |
-| `CreatedWithinMeetingRequest` | Created Within Meeting Request |
-| `CreatedFromAPI` | Created from API |
-| `CreatedFromRequestWebsite` | Created from Request Website |
-| `CrowdCompassProfileUpdate` | Crowd Compass Profile Update |
-| `CustomFieldAddedFromAdmin` | Custom Field Added From Admin |
-| `CustomFieldAddedViaRESTAPI` | Custom Field Added via REST API |
-| `CustomFieldDeletedFromAdmin` | Custom Field Deleted From Admin |
-| `CustomFieldModifiedFromAdmin` | Custom Field Modified From Admin |
-| `CustomFieldModifiedViaRESTAPI` | Custom Field Modified via REST API |
-| `DeletedWithinAdministration` | Deleted Within Administration |
-| `DeletedFromMeetingRequestForm` | Deleted from Meeting Request Form |
-| `DeletedFromRequestWebsite` | Deleted from Request Website |
-| `DeletedWithinMeetingRequest` | Deleted within Meeting Request |
-| `EventAutomaticallyCreatedFromMeetingRequest` | Event Automatically Created from Meeting Request |
-| `EventCreatedFromAPI` | Event Created from API |
-| `EventCreatedFromEventWizard` | Event Created from Event Wizard |
-| `EventGuestSideModification` | Event Guest Side Modification |
-| `EventGuestSideRegistration` | Event Guest Side Registration |
-| `EventImport` | Event Import |
-| `EventModifiedFromMeetingRequestViaAPI` | Event Modified from Meeting Request via API |
-| `EventModifiedFromMeetingRequest` | Event Modified from Meeting Request |
-| `EventOnsiteRegistration` | Event Onsite Registration |
-| `EventPOST` | Event POST |
-| `EventPlannerContactInformationUpdate` | Event Planner Contact Information Update |
-| `EventPlannerSideModification` | Event Planner Side Modification |
-| `EventPlannerSideRegistration` | Event Planner Side Registration |
-| `HotelRequestImport` | Hotel Request Import |
-| `MarketoContactImport` | Marketo Contact Import |
-| `ModifiedWithinEvent` | Modified Within Event |
-| `ModifiedWithinMeetingRequest` | Modified Within Meeting Request |
-| `ModifiedFromAPI` | Modified from API |
-| `ModifiedFromEventDocuments` | Modified from Event Documents |
-| `ModifiedFromMeetingRequestViaNotification` | Modified from Meeting Request via Notification |
-| `ModifiedFromRequestWebsite` | Modified from Request Website |
-| `RegistrationImport` | Registration Import |
-| `RestApi` | REST API |
-| `SalesforceIntegration` | Salesforce Integration |
-| `SurveyAuthorModification` | Survey Author Modification |
-| `SurveyAuthorResponse` | Survey Author Response |
-| `SurveyGuestSideModification` | Survey Guest Side Modification |
-| `SurveyGuestSideResponse` | Survey Guest Side Response |
-| `SurveyPOST` | Survey POST |
-| `TravelCostImportMapToExistingBudgetItem` | Travel Cost Import - Map to Existing Budget item |
-| `TravelCostImportMapToNewBudgetItem` | Travel Cost Import - Map to New Budget Item |
-| `VCNTransactionCreateNewBudgetItemForEachTransaction` | VCN Transaction - Create New Budget Item For Each Transaction |
-| `VCNTransactionMapToMultipleBudgetItem` | VCN Transaction - Map to Multiple Budget Item |
-| `VCNTransactionMapToSingleBudgetItem` | VCN Transaction - Map to Single Budget Item |
-| `VCNTransactionRemovedFromBudgetItem` | VCN Transaction - Removed from Budget Item |
-| `WebServices` | Web Services |
-| `EMarketingProfileUpdate` | eMarketing Profile Update |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/User.md b/packages/csharp/docs/Models/Components/User.md
index 2af29dfa..af6da97d 100644
--- a/packages/csharp/docs/Models/Components/User.md
+++ b/packages/csharp/docs/Models/Components/User.md
@@ -15,7 +15,7 @@ Generic sample User. Not a real model used by any Cvent service.
| `Emails` | List<[EmailJson1](../../Models/Components/EmailJson1.md)> | :heavy_check_mark: | The email of the user. The Cvent user can have only one email address.
If multiple email addresses are provided, only one is accepted and rest are ignored. One email is selected based on the following sequence of criteria: primary email, then work type, and finally first in the sequence. | |
| `Title` | *string* | :heavy_minus_sign: | The title of the user. | Vice President |
| `PhoneNumbers` | List<[PhoneNumberJson1](../../Models/Components/PhoneNumberJson1.md)> | :heavy_minus_sign: | The phone numbers of the user.
If more than one number per type is provided, only one is accepted and rest are ignored. | |
-| `Addresses` | List<[AddressJson4](../../Models/Components/AddressJson4.md)> | :heavy_minus_sign: | The address of the user. The user can have only one address.
If multiple addresses are provided, only one is accepted and rest are ignored. One address is selected based on the following sequence of criteria: primary, work type, first in the sequence | |
+| `Addresses` | List<[AddressJson2](../../Models/Components/AddressJson2.md)> | :heavy_minus_sign: | The address of the user. The user can have only one address.
If multiple addresses are provided, only one is accepted and rest are ignored. One address is selected based on the following sequence of criteria: primary, work type, first in the sequence | |
| `UserType` | [UserTypeJson](../../Models/Components/UserTypeJson.md) | :heavy_check_mark: | The type of the user. | Planner Account User |
| `Timezone` | *string* | :heavy_minus_sign: | List of Timezones supported. | America/New_York |
| `Locale` | *string* | :heavy_check_mark: | The locale of the user. The IETF Language Tag format is used. | en-US |
diff --git a/packages/csharp/docs/Models/Components/UserInput.md b/packages/csharp/docs/Models/Components/UserInput.md
index 0faaf4a8..8a30c8d5 100644
--- a/packages/csharp/docs/Models/Components/UserInput.md
+++ b/packages/csharp/docs/Models/Components/UserInput.md
@@ -13,7 +13,7 @@ Generic sample User. Not a real model used by any Cvent service.
| `Emails` | List<[EmailJson1](../../Models/Components/EmailJson1.md)> | :heavy_check_mark: | The email of the user. The Cvent user can have only one email address.
If multiple email addresses are provided, only one is accepted and rest are ignored. One email is selected based on the following sequence of criteria: primary email, then work type, and finally first in the sequence. | |
| `Title` | *string* | :heavy_minus_sign: | The title of the user. | Vice President |
| `PhoneNumbers` | List<[PhoneNumberJson1](../../Models/Components/PhoneNumberJson1.md)> | :heavy_minus_sign: | The phone numbers of the user.
If more than one number per type is provided, only one is accepted and rest are ignored. | |
-| `Addresses` | List<[AddressJson4](../../Models/Components/AddressJson4.md)> | :heavy_minus_sign: | The address of the user. The user can have only one address.
If multiple addresses are provided, only one is accepted and rest are ignored. One address is selected based on the following sequence of criteria: primary, work type, first in the sequence | |
+| `Addresses` | List<[AddressJson2](../../Models/Components/AddressJson2.md)> | :heavy_minus_sign: | The address of the user. The user can have only one address.
If multiple addresses are provided, only one is accepted and rest are ignored. One address is selected based on the following sequence of criteria: primary, work type, first in the sequence | |
| `UserType` | [UserTypeJson](../../Models/Components/UserTypeJson.md) | :heavy_check_mark: | The type of the user. | Planner Account User |
| `Timezone` | *string* | :heavy_minus_sign: | List of Timezones supported. | America/New_York |
| `Locale` | *string* | :heavy_check_mark: | The locale of the user. The IETF Language Tag format is used. | en-US |
diff --git a/packages/csharp/docs/Models/Components/UserJson.md b/packages/csharp/docs/Models/Components/UserJson.md
index 3ab50eef..f10034d1 100644
--- a/packages/csharp/docs/Models/Components/UserJson.md
+++ b/packages/csharp/docs/Models/Components/UserJson.md
@@ -15,7 +15,7 @@ Generic sample User. Not a real model used by any Cvent service.
| `Emails` | List<[EmailJson1](../../Models/Components/EmailJson1.md)> | :heavy_check_mark: | The email of the user. The Cvent user can have only one email address.
If multiple email addresses are provided, only one is accepted and rest are ignored. One email is selected based on the following sequence of criteria: primary email, then work type, and finally first in the sequence. | |
| `Title` | *string* | :heavy_minus_sign: | The title of the user. | Vice President |
| `PhoneNumbers` | List<[PhoneNumberJson1](../../Models/Components/PhoneNumberJson1.md)> | :heavy_minus_sign: | The phone numbers of the user.
If more than one number per type is provided, only one is accepted and rest are ignored. | |
-| `Addresses` | List<[AddressJson4](../../Models/Components/AddressJson4.md)> | :heavy_minus_sign: | The address of the user. The user can have only one address.
If multiple addresses are provided, only one is accepted and rest are ignored. One address is selected based on the following sequence of criteria: primary, work type, first in the sequence | |
+| `Addresses` | List<[AddressJson2](../../Models/Components/AddressJson2.md)> | :heavy_minus_sign: | The address of the user. The user can have only one address.
If multiple addresses are provided, only one is accepted and rest are ignored. One address is selected based on the following sequence of criteria: primary, work type, first in the sequence | |
| `UserType` | [UserTypeJson](../../Models/Components/UserTypeJson.md) | :heavy_check_mark: | The type of the user. | Planner Account User |
| `Timezone` | *string* | :heavy_minus_sign: | List of Timezones supported. | America/New_York |
| `Locale` | *string* | :heavy_check_mark: | The locale of the user. The IETF Language Tag format is used. | en-US |
diff --git a/packages/csharp/docs/Models/Components/VenueSummary.md b/packages/csharp/docs/Models/Components/VenueSummary.md
index c2c5de98..c5bc91c7 100644
--- a/packages/csharp/docs/Models/Components/VenueSummary.md
+++ b/packages/csharp/docs/Models/Components/VenueSummary.md
@@ -7,6 +7,6 @@ Represents a summary of venue information associated with current proposal.
| Field | Type | Required | Description | Example |
| ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- |
-| `Type` | [SupplierTypeJson1](../../Models/Components/SupplierTypeJson1.md) | :heavy_minus_sign: | The supplier's type. VENUE: A hotel, convention and visitors bureau (CVB), or other location for an event. | |
+| `Type` | [SupplierTypeJson](../../Models/Components/SupplierTypeJson.md) | :heavy_minus_sign: | The supplier's type. VENUE: A hotel, convention and visitors bureau (CVB), or other location for an event. | |
| `Id` | *string* | :heavy_minus_sign: | The unique ID of the venue. | bedc1f8e-f68b-40cf-b901-487e407f637a |
| `Name` | *string* | :heavy_minus_sign: | The name of the venue. | Hotel Grand San Francisco. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Video1.md b/packages/csharp/docs/Models/Components/Video1.md
new file mode 100644
index 00000000..4f7a8164
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Video1.md
@@ -0,0 +1,10 @@
+# Video1
+
+The details of a video
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
+| `Id` | *string* | :heavy_minus_sign: | The unique ID of the video. | 456e4567-e89b-12d3-a456-426614174000 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/VideoAssetID.md b/packages/csharp/docs/Models/Components/VideoAssetID.md
new file mode 100644
index 00000000..e2888dfd
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/VideoAssetID.md
@@ -0,0 +1,10 @@
+# VideoAssetID
+
+Video that this asset was created with.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
+| `Id` | *string* | :heavy_check_mark: | The identifier of a video. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/VideoAssetIdJson.md b/packages/csharp/docs/Models/Components/VideoAssetIdJson.md
deleted file mode 100644
index 9e191942..00000000
--- a/packages/csharp/docs/Models/Components/VideoAssetIdJson.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# VideoAssetIdJson
-
-Video that this asset was created with.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
-| `Id` | *string* | :heavy_check_mark: | The identifier of a video. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/VideoClip.md b/packages/csharp/docs/Models/Components/VideoClip.md
new file mode 100644
index 00000000..8b8be58b
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/VideoClip.md
@@ -0,0 +1,11 @@
+# VideoClip
+
+Video clip details.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ---------------------------------------------------- | ---------------------------------------------------- | ---------------------------------------------------- | ---------------------------------------------------- | ---------------------------------------------------- |
+| `Start` | *string* | :heavy_minus_sign: | The timecode to start the clip in HH:MM:SS:FF format | 00:01:01:00 |
+| `End` | *string* | :heavy_minus_sign: | The timecode to end the clip in HH:MM:SS:FF format. | 00:05:00:00 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/VideoClipJson.md b/packages/csharp/docs/Models/Components/VideoClipJson.md
deleted file mode 100644
index 1070684b..00000000
--- a/packages/csharp/docs/Models/Components/VideoClipJson.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# VideoClipJson
-
-Video clip details.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ---------------------------------------------------- | ---------------------------------------------------- | ---------------------------------------------------- | ---------------------------------------------------- | ---------------------------------------------------- |
-| `Start` | *string* | :heavy_minus_sign: | The timecode to start the clip in HH:MM:SS:FF format | 00:01:01:00 |
-| `End` | *string* | :heavy_minus_sign: | The timecode to end the clip in HH:MM:SS:FF format. | 00:05:00:00 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/VideoError.md b/packages/csharp/docs/Models/Components/VideoError.md
new file mode 100644
index 00000000..b916f9a1
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/VideoError.md
@@ -0,0 +1,11 @@
+# VideoError
+
+This is used to denote the errors for a video entity.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Code` | [VideoErrorCode](../../Models/Components/VideoErrorCode.md) | :heavy_check_mark: | This is used to denote the error codes for a video entity. | 601 |
+| `Message` | *string* | :heavy_check_mark: | Error message for the video. Message is a developer convenience never to be used in any context that needs localisation, subject to change at any time. | Transcoding failed due to an unsupported video codec. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/VideoErrorCode.md b/packages/csharp/docs/Models/Components/VideoErrorCode.md
new file mode 100644
index 00000000..dae93856
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/VideoErrorCode.md
@@ -0,0 +1,26 @@
+# VideoErrorCode
+
+This is used to denote the error codes for a video entity.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = VideoErrorCode.SixHundred;
+```
+
+
+## Values
+
+| Name | Value |
+| -------------------- | -------------------- |
+| `SixHundred` | 600 |
+| `SixHundredAndOne` | 601 |
+| `SixHundredAndTwo` | 602 |
+| `SixHundredAndThree` | 603 |
+| `SixHundredAndFour` | 604 |
+| `SixHundredAndFive` | 605 |
+| `SixHundredAndSix` | 606 |
+| `SixHundredAndSeven` | 607 |
+| `SixHundredAndEight` | 608 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/VideoErrorCodeJson.md b/packages/csharp/docs/Models/Components/VideoErrorCodeJson.md
deleted file mode 100644
index 25288e79..00000000
--- a/packages/csharp/docs/Models/Components/VideoErrorCodeJson.md
+++ /dev/null
@@ -1,26 +0,0 @@
-# VideoErrorCodeJson
-
-This is used to denote the error codes for a video entity.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = VideoErrorCodeJson.SixHundred;
-```
-
-
-## Values
-
-| Name | Value |
-| -------------------- | -------------------- |
-| `SixHundred` | 600 |
-| `SixHundredAndOne` | 601 |
-| `SixHundredAndTwo` | 602 |
-| `SixHundredAndThree` | 603 |
-| `SixHundredAndFour` | 604 |
-| `SixHundredAndFive` | 605 |
-| `SixHundredAndSix` | 606 |
-| `SixHundredAndSeven` | 607 |
-| `SixHundredAndEight` | 608 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/VideoErrorJson.md b/packages/csharp/docs/Models/Components/VideoErrorJson.md
deleted file mode 100644
index bb3ec2d1..00000000
--- a/packages/csharp/docs/Models/Components/VideoErrorJson.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# VideoErrorJson
-
-This is used to denote the errors for a video entity.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Code` | [VideoErrorCodeJson](../../Models/Components/VideoErrorCodeJson.md) | :heavy_check_mark: | This is used to denote the error codes for a video entity. | 601 |
-| `Message` | *string* | :heavy_check_mark: | Error message for the video. Message is a developer convenience never to be used in any context that needs localisation, subject to change at any time. | Transcoding failed due to an unsupported video codec. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/VideoJson.md b/packages/csharp/docs/Models/Components/VideoJson.md
deleted file mode 100644
index eb1838bd..00000000
--- a/packages/csharp/docs/Models/Components/VideoJson.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# VideoJson
-
-The details of a video
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
-| `Id` | *string* | :heavy_minus_sign: | The unique ID of the video. | 456e4567-e89b-12d3-a456-426614174000 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/VideoRendition.md b/packages/csharp/docs/Models/Components/VideoRendition.md
new file mode 100644
index 00000000..e2158d32
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/VideoRendition.md
@@ -0,0 +1,18 @@
+# VideoRendition
+
+Video rendition
+
+
+## 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: | The ISO 8601 zoned date time when this record was created. | 2017-01-02T02:00:00Z |
+| `CreatedBy` | *string* | :heavy_minus_sign: | The identifier of the user that created this record. | hporter |
+| `LastModified` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when this record was updated. | 2019-02-12T03:00:00Z |
+| `LastModifiedBy` | *string* | :heavy_minus_sign: | The identifier of the user that last updated this record. | hporter |
+| `Video` | [VideoAssetID](../../Models/Components/VideoAssetID.md) | :heavy_minus_sign: | Video that this asset was created with. | |
+| `Type` | [VideoRenditionType](../../Models/Components/VideoRenditionType.md) | :heavy_minus_sign: | Denotes the type of rendition. | Hls |
+| `Location` | [VideoRenditionLink](../../Models/Components/VideoRenditionLink.md) | :heavy_minus_sign: | Location where the rendition is stored. | |
+| `Width` | *long* | :heavy_minus_sign: | The video's frame width in pixels. | 300 |
+| `Height` | *long* | :heavy_minus_sign: | The video's frame height in pixels. | 400 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/VideoRenditionJson.md b/packages/csharp/docs/Models/Components/VideoRenditionJson.md
deleted file mode 100644
index 7b0912ea..00000000
--- a/packages/csharp/docs/Models/Components/VideoRenditionJson.md
+++ /dev/null
@@ -1,18 +0,0 @@
-# VideoRenditionJson
-
-Video rendition
-
-
-## 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: | The ISO 8601 zoned date time when this record was created. | 2017-01-02T02:00:00Z |
-| `CreatedBy` | *string* | :heavy_minus_sign: | The identifier of the user that created this record. | hporter |
-| `LastModified` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when this record was updated. | 2019-02-12T03:00:00Z |
-| `LastModifiedBy` | *string* | :heavy_minus_sign: | The identifier of the user that last updated this record. | hporter |
-| `Video` | [VideoAssetIdJson](../../Models/Components/VideoAssetIdJson.md) | :heavy_minus_sign: | Video that this asset was created with. | |
-| `Type` | [VideoRenditionTypeJson](../../Models/Components/VideoRenditionTypeJson.md) | :heavy_minus_sign: | Denotes the type of rendition. | Hls |
-| `Location` | [VideoRenditionJsonLink](../../Models/Components/VideoRenditionJsonLink.md) | :heavy_minus_sign: | Location where the rendition is stored. | |
-| `Width` | *long* | :heavy_minus_sign: | The video's frame width in pixels. | 300 |
-| `Height` | *long* | :heavy_minus_sign: | The video's frame height in pixels. | 400 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/VideoRenditionJsonLink.md b/packages/csharp/docs/Models/Components/VideoRenditionJsonLink.md
deleted file mode 100644
index b6a56953..00000000
--- a/packages/csharp/docs/Models/Components/VideoRenditionJsonLink.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# VideoRenditionJsonLink
-
-Location where the rendition is stored.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- |
-| `Href` | *string* | :heavy_check_mark: | A pre-signed URL with an expiration of 2 hours that provides the location. | https://example.com/M8/7f378243-2c62-49fa-82e9-90e5498d30c3?Policy=eyJTdGF0ZW1lbnUysx5cE4-KWfUQ__&Key-Pair-Id=K6XDZ8UJY4Q0X |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/VideoRenditionLink.md b/packages/csharp/docs/Models/Components/VideoRenditionLink.md
new file mode 100644
index 00000000..7f5fce48
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/VideoRenditionLink.md
@@ -0,0 +1,10 @@
+# VideoRenditionLink
+
+Location where the rendition is stored.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- |
+| `Href` | *string* | :heavy_check_mark: | A pre-signed URL with an expiration of 2 hours that provides the location. | https://example.com/M8/7f378243-2c62-49fa-82e9-90e5498d30c3?Policy=eyJTdGF0ZW1lbnUysx5cE4-KWfUQ__&Key-Pair-Id=K6XDZ8UJY4Q0X |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/VideoRenditionType.md b/packages/csharp/docs/Models/Components/VideoRenditionType.md
new file mode 100644
index 00000000..7b6fe7fc
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/VideoRenditionType.md
@@ -0,0 +1,24 @@
+# VideoRenditionType
+
+Denotes the type of rendition.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = VideoRenditionType.Hls;
+```
+
+
+## Values
+
+| Name | Value |
+| ------------ | ------------ |
+| `Hls` | Hls |
+| `HlsMaster` | HlsMaster |
+| `Mp4` | Mp4 |
+| `Poster` | Poster |
+| `Mp4Preview` | Mp4Preview |
+| `Mp3` | Mp3 |
+| `Audio` | Audio |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/VideoRenditionTypeJson.md b/packages/csharp/docs/Models/Components/VideoRenditionTypeJson.md
deleted file mode 100644
index 3b2a19a0..00000000
--- a/packages/csharp/docs/Models/Components/VideoRenditionTypeJson.md
+++ /dev/null
@@ -1,24 +0,0 @@
-# VideoRenditionTypeJson
-
-Denotes the type of rendition.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = VideoRenditionTypeJson.Hls;
-```
-
-
-## Values
-
-| Name | Value |
-| ------------ | ------------ |
-| `Hls` | Hls |
-| `HlsMaster` | HlsMaster |
-| `Mp4` | Mp4 |
-| `Poster` | Poster |
-| `Mp4Preview` | Mp4Preview |
-| `Mp3` | Mp3 |
-| `Audio` | Audio |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/VideoRenditionsResponse.md b/packages/csharp/docs/Models/Components/VideoRenditionsResponse.md
index 136a4170..c2f4a61b 100644
--- a/packages/csharp/docs/Models/Components/VideoRenditionsResponse.md
+++ b/packages/csharp/docs/Models/Components/VideoRenditionsResponse.md
@@ -5,6 +5,6 @@ The response from a request to get the list of video renditions.
## Fields
-| Field | Type | Required | Description |
-| ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- |
-| `Data` | List<[VideoRenditionJson](../../Models/Components/VideoRenditionJson.md)> | :heavy_minus_sign: | Collection of video renditions. |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- |
+| `Data` | List<[VideoRendition](../../Models/Components/VideoRendition.md)> | :heavy_minus_sign: | Collection of video renditions. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/VideoSource.md b/packages/csharp/docs/Models/Components/VideoSource.md
new file mode 100644
index 00000000..da848ffc
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/VideoSource.md
@@ -0,0 +1,11 @@
+# VideoSource
+
+Source of video.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- |
+| `Id` | *string* | :heavy_minus_sign: | The id of a video in the external system | VD134567 |
+| `Status` | [VideoSourceStatus](../../Models/Components/VideoSourceStatus.md) | :heavy_minus_sign: | Denotes the status of the video in the third-party system. | Active |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/VideoSourceJson.md b/packages/csharp/docs/Models/Components/VideoSourceJson.md
deleted file mode 100644
index 7b476c82..00000000
--- a/packages/csharp/docs/Models/Components/VideoSourceJson.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# VideoSourceJson
-
-Source of video.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_minus_sign: | The id of a video in the external system | VD134567 |
-| `Status` | [VideoSourceJsonStatus](../../Models/Components/VideoSourceJsonStatus.md) | :heavy_minus_sign: | Denotes the status of the video in the third-party system. | Active |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/VideoSourceJsonStatus.md b/packages/csharp/docs/Models/Components/VideoSourceJsonStatus.md
deleted file mode 100644
index c5b08616..00000000
--- a/packages/csharp/docs/Models/Components/VideoSourceJsonStatus.md
+++ /dev/null
@@ -1,21 +0,0 @@
-# VideoSourceJsonStatus
-
-Denotes the status of the video in the third-party system.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = VideoSourceJsonStatus.Active;
-```
-
-
-## Values
-
-| Name | Value |
-| ---------- | ---------- |
-| `Active` | Active |
-| `Inactive` | Inactive |
-| `Pending` | Pending |
-| `Deleted` | Deleted |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/VideoSourceStatus.md b/packages/csharp/docs/Models/Components/VideoSourceStatus.md
new file mode 100644
index 00000000..505b56d0
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/VideoSourceStatus.md
@@ -0,0 +1,21 @@
+# VideoSourceStatus
+
+Denotes the status of the video in the third-party system.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = VideoSourceStatus.Active;
+```
+
+
+## Values
+
+| Name | Value |
+| ---------- | ---------- |
+| `Active` | Active |
+| `Inactive` | Inactive |
+| `Pending` | Pending |
+| `Deleted` | Deleted |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/VideoStatus.md b/packages/csharp/docs/Models/Components/VideoStatus.md
new file mode 100644
index 00000000..76b56367
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/VideoStatus.md
@@ -0,0 +1,27 @@
+# VideoStatus
+
+Denotes the status of a video. Started indicates the request to upload in the API was submitted, and the URL to upload to was returned. Uploaded indicates that the upload was completed. Scanning indicates a virus scan is happening in a quarantine location; Scanned indicates a successful virus scan. Syncing indicates a complete virus scan, and now transcoding has begun. Rejected indicates a failed virus scan. Error indicates there was a problem processing the video. Available indicates the video is available for use.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = VideoStatus.Started;
+```
+
+
+## Values
+
+| Name | Value |
+| ----------- | ----------- |
+| `Started` | Started |
+| `Uploaded` | Uploaded |
+| `Scanning` | Scanning |
+| `Scanned` | Scanned |
+| `Syncing` | Syncing |
+| `Rejected` | Rejected |
+| `Error` | Error |
+| `Available` | Available |
+| `Upcoming` | Upcoming |
+| `ReSyncing` | ReSyncing |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/VideoStatusJson.md b/packages/csharp/docs/Models/Components/VideoStatusJson.md
deleted file mode 100644
index c66b8baf..00000000
--- a/packages/csharp/docs/Models/Components/VideoStatusJson.md
+++ /dev/null
@@ -1,27 +0,0 @@
-# VideoStatusJson
-
-Denotes the status of a video. Started indicates the request to upload in the API was submitted, and the URL to upload to was returned. Uploaded indicates that the upload was completed. Scanning indicates a virus scan is happening in a quarantine location; Scanned indicates a successful virus scan. Syncing indicates a complete virus scan, and now transcoding has begun. Rejected indicates a failed virus scan. Error indicates there was a problem processing the video. Available indicates the video is available for use.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = VideoStatusJson.Started;
-```
-
-
-## Values
-
-| Name | Value |
-| ----------- | ----------- |
-| `Started` | Started |
-| `Uploaded` | Uploaded |
-| `Scanning` | Scanning |
-| `Scanned` | Scanned |
-| `Syncing` | Syncing |
-| `Rejected` | Rejected |
-| `Error` | Error |
-| `Available` | Available |
-| `Upcoming` | Upcoming |
-| `ReSyncing` | ReSyncing |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/VideoTextTrack.md b/packages/csharp/docs/Models/Components/VideoTextTrack.md
index f9c0e540..e1ecf60e 100644
--- a/packages/csharp/docs/Models/Components/VideoTextTrack.md
+++ b/packages/csharp/docs/Models/Components/VideoTextTrack.md
@@ -7,11 +7,11 @@ Video text track
| Field | Type | Required | Description | Example |
| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Video` | [VideoAssetIdJson](../../Models/Components/VideoAssetIdJson.md) | :heavy_minus_sign: | Video that this asset was created with. | |
+| `Video` | [VideoAssetID](../../Models/Components/VideoAssetID.md) | :heavy_minus_sign: | Video that this asset was created with. | |
| `Label` | *string* | :heavy_minus_sign: | Name of the text track. | English |
| `Language` | *string* | :heavy_check_mark: | IETF language tag for the text track. | en-US |
-| `Kind` | [VideoTextTrackKindJson](../../Models/Components/VideoTextTrackKindJson.md) | :heavy_check_mark: | Denotes the kind of video text track. Only subtitles are supported. | subtitles |
+| `Kind` | [VideoTextTrackKind](../../Models/Components/VideoTextTrackKind.md) | :heavy_check_mark: | Denotes the kind of video text track. Only subtitles are supported. | subtitles |
| `Published` | *bool* | :heavy_minus_sign: | True means that this text track has been published for your client. | |
| `Default` | *bool* | :heavy_minus_sign: | True indicates this is the default text track. Each kind of text track can have a separate default assigned. | |
-| `Status` | [VideoTextTrackStatusJson](../../Models/Components/VideoTextTrackStatusJson.md) | :heavy_minus_sign: | Denotes the status of a video text track (VTT). Started indicates a request to upload in the API, and the URL to upload to was returned. Uploaded indicates that the upload was completed. Available indicates the VTT is available for use. Rejected indicates a failed virus scan. Error indicates there was a problem processing the VTT. | Started |
+| `Status` | [VideoTextTrackStatus](../../Models/Components/VideoTextTrackStatus.md) | :heavy_minus_sign: | Denotes the status of a video text track (VTT). Started indicates a request to upload in the API, and the URL to upload to was returned. Uploaded indicates that the upload was completed. Available indicates the VTT is available for use. Rejected indicates a failed virus scan. Error indicates there was a problem processing the VTT. | Started |
| `AutoGenerated` | *bool* | :heavy_minus_sign: | True indicates this text track was generated via machine transcription of the audio. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/VideoTextTrackKind.md b/packages/csharp/docs/Models/Components/VideoTextTrackKind.md
new file mode 100644
index 00000000..7d009c20
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/VideoTextTrackKind.md
@@ -0,0 +1,22 @@
+# VideoTextTrackKind
+
+Denotes the kind of video text track. Only subtitles are supported.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = VideoTextTrackKind.Subtitles;
+```
+
+
+## Values
+
+| Name | Value |
+| -------------- | -------------- |
+| `Subtitles` | subtitles |
+| `Captions` | captions |
+| `Descriptions` | descriptions |
+| `Chapters` | chapters |
+| `Metadata` | metadata |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/VideoTextTrackKindJson.md b/packages/csharp/docs/Models/Components/VideoTextTrackKindJson.md
deleted file mode 100644
index d5834e9b..00000000
--- a/packages/csharp/docs/Models/Components/VideoTextTrackKindJson.md
+++ /dev/null
@@ -1,22 +0,0 @@
-# VideoTextTrackKindJson
-
-Denotes the kind of video text track. Only subtitles are supported.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = VideoTextTrackKindJson.Subtitles;
-```
-
-
-## Values
-
-| Name | Value |
-| -------------- | -------------- |
-| `Subtitles` | subtitles |
-| `Captions` | captions |
-| `Descriptions` | descriptions |
-| `Chapters` | chapters |
-| `Metadata` | metadata |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/VideoTextTrackStatus.md b/packages/csharp/docs/Models/Components/VideoTextTrackStatus.md
new file mode 100644
index 00000000..69bc935b
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/VideoTextTrackStatus.md
@@ -0,0 +1,26 @@
+# VideoTextTrackStatus
+
+Denotes the status of a video text track (VTT). Started indicates a request to upload in the API, and the URL to upload to was returned. Uploaded indicates that the upload was completed. Available indicates the VTT is available for use. Rejected indicates a failed virus scan. Error indicates there was a problem processing the VTT.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = VideoTextTrackStatus.Started;
+```
+
+
+## Values
+
+| Name | Value |
+| -------------- | -------------- |
+| `Started` | Started |
+| `Uploaded` | Uploaded |
+| `Processing` | Processing |
+| `Available` | Available |
+| `Rejected` | Rejected |
+| `Updating` | Updating |
+| `Translating` | Translating |
+| `Transcribing` | Transcribing |
+| `Error` | Error |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/VideoTextTrackStatusJson.md b/packages/csharp/docs/Models/Components/VideoTextTrackStatusJson.md
deleted file mode 100644
index 4b7df227..00000000
--- a/packages/csharp/docs/Models/Components/VideoTextTrackStatusJson.md
+++ /dev/null
@@ -1,26 +0,0 @@
-# VideoTextTrackStatusJson
-
-Denotes the status of a video text track (VTT). Started indicates a request to upload in the API, and the URL to upload to was returned. Uploaded indicates that the upload was completed. Available indicates the VTT is available for use. Rejected indicates a failed virus scan. Error indicates there was a problem processing the VTT.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = VideoTextTrackStatusJson.Started;
-```
-
-
-## Values
-
-| Name | Value |
-| -------------- | -------------- |
-| `Started` | Started |
-| `Uploaded` | Uploaded |
-| `Processing` | Processing |
-| `Available` | Available |
-| `Rejected` | Rejected |
-| `Updating` | Updating |
-| `Translating` | Translating |
-| `Transcribing` | Transcribing |
-| `Error` | Error |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/VideoThumbnail.md b/packages/csharp/docs/Models/Components/VideoThumbnail.md
new file mode 100644
index 00000000..d49c96f9
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/VideoThumbnail.md
@@ -0,0 +1,15 @@
+# VideoThumbnail
+
+Video thumbnail
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Url` | [Link](../../Models/Components/Link.md) | :heavy_minus_sign: | Represents a link to a related resource. | |
+| `Size` | *long* | :heavy_minus_sign: | File size in bytes for the thumbnail | 4098675830 |
+| `Height` | *long* | :heavy_minus_sign: | frame height in pixels | 400 |
+| `Width` | *long* | :heavy_minus_sign: | frame width in pixels | 300 |
+| `Type` | [ThumbnailType](../../Models/Components/ThumbnailType.md) | :heavy_minus_sign: | This is used to denote the file type of a thumbnail | png |
+| `Status` | [ThumbnailStatus](../../Models/Components/ThumbnailStatus.md) | :heavy_minus_sign: | Denotes the status of a thumbnail. Started indicates the request to upload in the API was submitted, and the URL you'll upload a thumbnail to was returned. Uploaded indicates that the upload was completed. Processing indicates that a virus scan is in progress. Available indicates the thumbnail passed the scan and is ready for use. Rejected indicates there was a problem processing the thumbnail. | Started |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/VideoThumbnailJson.md b/packages/csharp/docs/Models/Components/VideoThumbnailJson.md
deleted file mode 100644
index c4ef44a4..00000000
--- a/packages/csharp/docs/Models/Components/VideoThumbnailJson.md
+++ /dev/null
@@ -1,15 +0,0 @@
-# VideoThumbnailJson
-
-Video thumbnail
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Url` | [OneAllOf](../../Models/Components/OneAllOf.md) | :heavy_minus_sign: | Represents a link to a related resource. | |
-| `Size` | *long* | :heavy_minus_sign: | File size in bytes for the thumbnail | 4098675830 |
-| `Height` | *long* | :heavy_minus_sign: | frame height in pixels | 400 |
-| `Width` | *long* | :heavy_minus_sign: | frame width in pixels | 300 |
-| `Type` | [ThumbnailTypeJson](../../Models/Components/ThumbnailTypeJson.md) | :heavy_minus_sign: | This is used to denote the file type of a thumbnail | png |
-| `Status` | [ThumbnailStatusJson](../../Models/Components/ThumbnailStatusJson.md) | :heavy_minus_sign: | Denotes the status of a thumbnail. Started indicates the request to upload in the API was submitted, and the URL you'll upload a thumbnail to was returned. Uploaded indicates that the upload was completed. Processing indicates that a virus scan is in progress. Available indicates the thumbnail passed the scan and is ready for use. Rejected indicates there was a problem processing the thumbnail. | Started |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/VideoType.md b/packages/csharp/docs/Models/Components/VideoType.md
new file mode 100644
index 00000000..34c158b3
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/VideoType.md
@@ -0,0 +1,28 @@
+# VideoType
+
+This is used to denote type of a video
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = VideoType.Mpg2;
+```
+
+
+## Values
+
+| Name | Value |
+| ------ | ------ |
+| `Mpg2` | mpg2 |
+| `Mov` | mov |
+| `Mp2` | mp2 |
+| `Mp4` | mp4 |
+| `Mpe` | mpe |
+| `Mpeg` | mpeg |
+| `Mpg` | mpg |
+| `Mpv` | mpv |
+| `Qt` | qt |
+| `Webm` | webm |
+| `Hls` | hls |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/VideoTypeJson.md b/packages/csharp/docs/Models/Components/VideoTypeJson.md
deleted file mode 100644
index 8670d427..00000000
--- a/packages/csharp/docs/Models/Components/VideoTypeJson.md
+++ /dev/null
@@ -1,28 +0,0 @@
-# VideoTypeJson
-
-This is used to denote type of a video
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = VideoTypeJson.Mpg2;
-```
-
-
-## Values
-
-| Name | Value |
-| ------ | ------ |
-| `Mpg2` | mpg2 |
-| `Mov` | mov |
-| `Mp2` | mp2 |
-| `Mp4` | mp4 |
-| `Mpe` | mpe |
-| `Mpeg` | mpeg |
-| `Mpg` | mpg |
-| `Mpv` | mpv |
-| `Qt` | qt |
-| `Webm` | webm |
-| `Hls` | hls |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/VideoView.md b/packages/csharp/docs/Models/Components/VideoView.md
new file mode 100644
index 00000000..5a3655d1
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/VideoView.md
@@ -0,0 +1,17 @@
+# VideoView
+
+Details of a single video view
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Contact` | [Contact2](../../Models/Components/Contact2.md) | :heavy_minus_sign: | The contact details who watched a video | |
+| `Solution` | [Solution](../../Models/Components/Solution.md) | :heavy_minus_sign: | The solution where the video exists. Attendee Hub and Events+ represent two different solutions where the video can be found. | EVENTS_PLUS |
+| ~~`Device`~~ | [Device1](../../Models/Components/Device1.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
The device details used to watched a video. This field has been deprecated. | |
+| `Video` | [Video1](../../Models/Components/Video1.md) | :heavy_minus_sign: | The details of a video | |
+| `Type` | [ViewType1](../../Models/Components/ViewType1.md) | :heavy_minus_sign: | The view type of the video. Videos can be viewed live or as a recording. | |
+| `TotalDuration` | *long* | :heavy_minus_sign: | The total duration of the video (in milliseconds). | 233000 |
+| `WatchDuration` | *long* | :heavy_minus_sign: | The total duration of the video watched by the viewer (in milliseconds). | 153600 |
+| `WatchPercentage` | *double* | :heavy_minus_sign: | The percentage of the video watched by the viewer. | 52 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/VideoViewJson.md b/packages/csharp/docs/Models/Components/VideoViewJson.md
deleted file mode 100644
index 8c84c420..00000000
--- a/packages/csharp/docs/Models/Components/VideoViewJson.md
+++ /dev/null
@@ -1,17 +0,0 @@
-# VideoViewJson
-
-Details of a single video view
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Contact` | [ContactJson2](../../Models/Components/ContactJson2.md) | :heavy_minus_sign: | The contact details who watched a video | |
-| `Solution` | [SolutionJson](../../Models/Components/SolutionJson.md) | :heavy_minus_sign: | The solution where the video exists. Attendee Hub and Events+ represent two different solutions where the video can be found. | EVENTS_PLUS |
-| ~~`Device`~~ | [DeviceJson](../../Models/Components/DeviceJson.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
The device details used to watched a video. This field has been deprecated. | |
-| `Video` | [VideoJson](../../Models/Components/VideoJson.md) | :heavy_minus_sign: | The details of a video | |
-| `Type` | [ViewTypeJson1](../../Models/Components/ViewTypeJson1.md) | :heavy_minus_sign: | The view type of the video. Videos can be viewed live or as a recording. | |
-| `TotalDuration` | *long* | :heavy_minus_sign: | The total duration of the video (in milliseconds). | 233000 |
-| `WatchDuration` | *long* | :heavy_minus_sign: | The total duration of the video watched by the viewer (in milliseconds). | 153600 |
-| `WatchPercentage` | *double* | :heavy_minus_sign: | The percentage of the video watched by the viewer. | 52 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/VideoViewsPaginatedResponse.md b/packages/csharp/docs/Models/Components/VideoViewsPaginatedResponse.md
index 5d222c62..f40f6151 100644
--- a/packages/csharp/docs/Models/Components/VideoViewsPaginatedResponse.md
+++ b/packages/csharp/docs/Models/Components/VideoViewsPaginatedResponse.md
@@ -7,5 +7,5 @@ Paginated list of video views.
| Field | Type | Required | Description |
| ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- |
-| `Paging` | [PagingJson](../../Models/Components/PagingJson.md) | :heavy_minus_sign: | Represents pagination information for a collection of resources. |
-| `Data` | List<[VideoViewJson](../../Models/Components/VideoViewJson.md)> | :heavy_minus_sign: | List of unique video views. |
\ No newline at end of file
+| `Paging` | [Paging](../../Models/Components/Paging.md) | :heavy_minus_sign: | Represents pagination information for a collection of resources. |
+| `Data` | List<[VideoView](../../Models/Components/VideoView.md)> | :heavy_minus_sign: | List of unique video views. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/VideoWarning.md b/packages/csharp/docs/Models/Components/VideoWarning.md
new file mode 100644
index 00000000..8fe8724e
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/VideoWarning.md
@@ -0,0 +1,11 @@
+# VideoWarning
+
+This is used to denote the warnings for a video entity.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Code` | [VideoWarningCode](../../Models/Components/VideoWarningCode.md) | :heavy_check_mark: | This is used to denote the warning codes for a video entity. | 700 |
+| `Message` | *string* | :heavy_check_mark: | Warning message for the video. Message is a developer convenience never to be used in any context that needs localisation, subject to change at any time. | Video with ID: 5779387f-3f50-4685-8641-b25a2909845f has a bitrate of 586 kbps, which is lower than the minimum allowed bitrate of 3500 kbps. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/VideoWarningCode.md b/packages/csharp/docs/Models/Components/VideoWarningCode.md
new file mode 100644
index 00000000..4d04455e
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/VideoWarningCode.md
@@ -0,0 +1,18 @@
+# VideoWarningCode
+
+This is used to denote the warning codes for a video entity.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = VideoWarningCode.SevenHundred;
+```
+
+
+## Values
+
+| Name | Value |
+| -------------- | -------------- |
+| `SevenHundred` | 700 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/VideoWarningCodeJson.md b/packages/csharp/docs/Models/Components/VideoWarningCodeJson.md
deleted file mode 100644
index da0cc1bb..00000000
--- a/packages/csharp/docs/Models/Components/VideoWarningCodeJson.md
+++ /dev/null
@@ -1,18 +0,0 @@
-# VideoWarningCodeJson
-
-This is used to denote the warning codes for a video entity.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = VideoWarningCodeJson.SevenHundred;
-```
-
-
-## Values
-
-| Name | Value |
-| -------------- | -------------- |
-| `SevenHundred` | 700 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/VideoWarningJson.md b/packages/csharp/docs/Models/Components/VideoWarningJson.md
deleted file mode 100644
index a3f00e5d..00000000
--- a/packages/csharp/docs/Models/Components/VideoWarningJson.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# VideoWarningJson
-
-This is used to denote the warnings for a video entity.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Code` | [VideoWarningCodeJson](../../Models/Components/VideoWarningCodeJson.md) | :heavy_check_mark: | This is used to denote the warning codes for a video entity. | 700 |
-| `Message` | *string* | :heavy_check_mark: | Warning message for the video. Message is a developer convenience never to be used in any context that needs localisation, subject to change at any time. | Video with ID: 5779387f-3f50-4685-8641-b25a2909845f has a bitrate of 586 kbps, which is lower than the minimum allowed bitrate of 3500 kbps. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/VideosPaginatedResponse.md b/packages/csharp/docs/Models/Components/VideosPaginatedResponse.md
index 148f9b2e..9ff5d63f 100644
--- a/packages/csharp/docs/Models/Components/VideosPaginatedResponse.md
+++ b/packages/csharp/docs/Models/Components/VideosPaginatedResponse.md
@@ -7,5 +7,5 @@ The response from a request to get the list of videos. This includes the paging
| Field | Type | Required | Description |
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- |
-| `Paging` | [PagingJson](../../Models/Components/PagingJson.md) | :heavy_check_mark: | Represents pagination information for a collection of resources. |
+| `Paging` | [Paging](../../Models/Components/Paging.md) | :heavy_check_mark: | Represents pagination information for a collection of resources. |
| `Data` | List<[ExistingVideoResponse](../../Models/Components/ExistingVideoResponse.md)> | :heavy_check_mark: | Collection of videos. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ViewType1.md b/packages/csharp/docs/Models/Components/ViewType1.md
new file mode 100644
index 00000000..bde16fad
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ViewType1.md
@@ -0,0 +1,19 @@
+# ViewType1
+
+The view type of the video. Videos can be viewed live or as a recording.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = ViewType1.Live;
+```
+
+
+## Values
+
+| Name | Value |
+| ----------- | ----------- |
+| `Live` | LIVE |
+| `Recording` | RECORDING |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ViewTypeJson1.md b/packages/csharp/docs/Models/Components/ViewTypeJson1.md
deleted file mode 100644
index d284d5e1..00000000
--- a/packages/csharp/docs/Models/Components/ViewTypeJson1.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# ViewTypeJson1
-
-The view type of the video. Videos can be viewed live or as a recording.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = ViewTypeJson1.Live;
-```
-
-
-## Values
-
-| Name | Value |
-| ----------- | ----------- |
-| `Live` | LIVE |
-| `Recording` | RECORDING |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Voucher.md b/packages/csharp/docs/Models/Components/Voucher.md
new file mode 100644
index 00000000..c3ad9f4f
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Voucher.md
@@ -0,0 +1,16 @@
+# Voucher
+
+Represents a voucher configured for an event. Event-level vouchers are special codes that can be assigned to invitees or attendees, enabling benefits such as free registration, discounted pricing, or other promotional entitlements during the registration process.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- |
+| `Id` | *string* | :heavy_check_mark: | Voucher ID. | 1800c9bd-b5f4-438a-a92c-ea1f59553a5c |
+| `Code` | *string* | :heavy_check_mark: | The unique planner-defined code that invitees enter during registration to redeem the voucher. | VIP-100 |
+| `Description` | *string* | :heavy_minus_sign: | A description of the voucher and its intended use. | VIP full-comp voucher for keynote attendees. |
+| `AlertEmailAddress` | *string* | :heavy_minus_sign: | The email address that receives a notification whenever the voucher is redeemed. | planner@example.com |
+| `Capacity` | [VoucherCapacity](../../Models/Components/VoucherCapacity.md) | :heavy_minus_sign: | Represents the capacity details for a voucher, including the total allowed redemptions and the number already redeemed. | |
+| `LastModifiedBy` | *string* | :heavy_minus_sign: | The identity of the user or system that last modified the voucher. | planner@example.com |
+| `LastModifiedDate` | [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 voucher was last modified, expressed in UTC. | 2026-04-08T02:05:12.000Z |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/VoucherCapacity.md b/packages/csharp/docs/Models/Components/VoucherCapacity.md
new file mode 100644
index 00000000..572a9c71
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/VoucherCapacity.md
@@ -0,0 +1,11 @@
+# VoucherCapacity
+
+Represents the capacity details for a voucher, including the total allowed redemptions and the number already redeemed.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- |
+| `Total` | *long* | :heavy_check_mark: | The maximum number of times the voucher can be redeemed. Default value of -1 indicates unlimited capacity. | 100 |
+| `RedeemedCount` | *long* | :heavy_check_mark: | The number of times the voucher has already been redeemed. | 42 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/VouchersPaginatedResponse.md b/packages/csharp/docs/Models/Components/VouchersPaginatedResponse.md
new file mode 100644
index 00000000..7a9cc4b0
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/VouchersPaginatedResponse.md
@@ -0,0 +1,11 @@
+# VouchersPaginatedResponse
+
+A paginated response of vouchers.
+
+
+## Fields
+
+| Field | Type | Required | Description |
+| ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- |
+| `Paging` | [Paging](../../Models/Components/Paging.md) | :heavy_check_mark: | Represents pagination information for a collection of resources. |
+| `Data` | List<[Voucher](../../Models/Components/Voucher.md)> | :heavy_check_mark: | Collection of vouchers. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Weblink.md b/packages/csharp/docs/Models/Components/Weblink.md
index 5252f039..c875b78f 100644
--- a/packages/csharp/docs/Models/Components/Weblink.md
+++ b/packages/csharp/docs/Models/Components/Weblink.md
@@ -7,7 +7,7 @@ Content of exhibitor weblink.
| Field | Type | Required | Description | Example |
| ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- |
-| `Event` | [Event21](../../Models/Components/Event21.md) | :heavy_check_mark: | The Associated Event. | |
+| `Event` | [Event3](../../Models/Components/Event3.md) | :heavy_check_mark: | The Associated Event. | |
| `Exhibitor` | [Models.Components.Exhibitor](../../Models/Components/Exhibitor.md) | :heavy_check_mark: | The Associated Exhibitor. | |
| `Name` | *string* | :heavy_check_mark: | Display name of the weblink. | Marketing Page |
| `Url` | *string* | :heavy_check_mark: | The URL of the weblink. | http://www.example.com |
diff --git a/packages/csharp/docs/Models/Components/WeddingDetails1.md b/packages/csharp/docs/Models/Components/WeddingDetails1.md
new file mode 100644
index 00000000..949beba0
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/WeddingDetails1.md
@@ -0,0 +1,15 @@
+# WeddingDetails1
+
+Wedding details.
+
+
+## Fields
+
+| Field | Type | Required | Description |
+| ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- |
+| `FirstPartner` | [WeddingPartner](../../Models/Components/WeddingPartner.md) | :heavy_minus_sign: | Represents wedding partner. |
+| `SecondPartner` | [WeddingPartner](../../Models/Components/WeddingPartner.md) | :heavy_minus_sign: | Represents wedding partner. |
+| `Ceremony` | *bool* | :heavy_minus_sign: | True indicates ceremony is planned. |
+| `Reception` | *bool* | :heavy_minus_sign: | True indicates reception is planned. |
+| `FarewellBrunch` | *bool* | :heavy_minus_sign: | True indicates farewell brunch is planned. |
+| `RehearsalDinner` | *bool* | :heavy_minus_sign: | True indicates rehearsal dinner is planned. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/WeddingDetailsJson0.md b/packages/csharp/docs/Models/Components/WeddingDetailsJson0.md
deleted file mode 100644
index ff8a8392..00000000
--- a/packages/csharp/docs/Models/Components/WeddingDetailsJson0.md
+++ /dev/null
@@ -1,15 +0,0 @@
-# WeddingDetailsJson0
-
-Wedding details.
-
-
-## Fields
-
-| Field | Type | Required | Description |
-| ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- |
-| `FirstPartner` | [WeddingPartnerJson](../../Models/Components/WeddingPartnerJson.md) | :heavy_minus_sign: | Represents wedding partner. |
-| `SecondPartner` | [WeddingPartnerJson](../../Models/Components/WeddingPartnerJson.md) | :heavy_minus_sign: | Represents wedding partner. |
-| `Ceremony` | *bool* | :heavy_minus_sign: | True indicates ceremony is planned. |
-| `Reception` | *bool* | :heavy_minus_sign: | True indicates reception is planned. |
-| `FarewellBrunch` | *bool* | :heavy_minus_sign: | True indicates farewell brunch is planned. |
-| `RehearsalDinner` | *bool* | :heavy_minus_sign: | True indicates rehearsal dinner is planned. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/WeddingPartner.md b/packages/csharp/docs/Models/Components/WeddingPartner.md
new file mode 100644
index 00000000..22e5fe99
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/WeddingPartner.md
@@ -0,0 +1,11 @@
+# WeddingPartner
+
+Represents wedding partner.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- |
+| `Type` | [BrideGroomType](../../Models/Components/BrideGroomType.md) | :heavy_minus_sign: | BrideGroomType | |
+| `Name` | *string* | :heavy_minus_sign: | Name of the partner of the wedding couple. | John Doe |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/WeddingPartnerJson.md b/packages/csharp/docs/Models/Components/WeddingPartnerJson.md
deleted file mode 100644
index 202fe348..00000000
--- a/packages/csharp/docs/Models/Components/WeddingPartnerJson.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# WeddingPartnerJson
-
-Represents wedding partner.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------------- | --------------------------------------------------------------------- | --------------------------------------------------------------------- | --------------------------------------------------------------------- | --------------------------------------------------------------------- |
-| `Type` | [BrideGroomTypeJson0](../../Models/Components/BrideGroomTypeJson0.md) | :heavy_minus_sign: | Bride groom type. | |
-| `Name` | *string* | :heavy_minus_sign: | Name of the partner of the wedding couple. | John Doe |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ZeroAllOf7.md b/packages/csharp/docs/Models/Components/ZeroAllOf7.md
index 8b47580c..e26e5f6c 100644
--- a/packages/csharp/docs/Models/Components/ZeroAllOf7.md
+++ b/packages/csharp/docs/Models/Components/ZeroAllOf7.md
@@ -1,55 +1,13 @@
# ZeroAllOf7
-Represents a contact that has been created and has an id.
+Represents an error response for the checkin APIs that includes a unique id.
## 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: | The ISO 8601 zoned date time when this record was created. | 2017-01-02T02:00:00Z |
-| `CreatedBy` | *string* | :heavy_minus_sign: | The identifier of the user that created this record. | hporter |
-| `LastModified` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The ISO 8601 zoned date time when this record was updated. | 2019-02-12T03:00:00Z |
-| `LastModifiedBy` | *string* | :heavy_minus_sign: | The identifier of the user that last updated this record. | hporter |
-| `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 can be cc'd on email communications. | h.porter@tesing.com |
-| `Gender` | [GenderJson](../../Models/Components/GenderJson.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, typically an award or credential. | CPA |
-| `Title` | *string* | :heavy_minus_sign: | The job title of the contact. | Event Planner |
-| `Type` | [AttendeeContactTypeJson](../../Models/Components/AttendeeContactTypeJson.md) | :heavy_minus_sign: | Contains details related to the attendee's contact type. | |
-| `Membership` | [MembershipJson](../../Models/Components/MembershipJson.md) | :heavy_minus_sign: | Contact Membership information | |
-| `PrimaryAddressType` | [AddressTypeJson](../../Models/Components/AddressTypeJson.md) | :heavy_minus_sign: | The type of address. | Home |
-| `HomeAddress` | [AddressJson](../../Models/Components/AddressJson.md) | :heavy_minus_sign: | Contact address details. | |
-| `HomePhone` | *string* | :heavy_minus_sign: | The phone number of the contact at their place of residence. | 555-555-5555 |
-| `HomeFax` | *string* | :heavy_minus_sign: | The fax number of the contact at their place of residence. | 555-555-5555 |
-| `WorkAddress` | [AddressJson](../../Models/Components/AddressJson.md) | :heavy_minus_sign: | Contact address details. | |
-| `WorkPhone` | *string* | :heavy_minus_sign: | The phone number of the contact at their place of work. | 555-555-5555 |
-| `WorkFax` | *string* | :heavy_minus_sign: | The fax number of the contact at their place of work. | 555-555-5555 |
-| `CustomFields` | List<[CustomField](../../Models/Components/CustomField.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 as part of the ID. | system-a-00000000-0000-0000-0000-000000000000 |
-| `MobilePhone` | *string* | :heavy_minus_sign: | The contact's mobile phone number. | 555-555-5555 |
-| `Compliance` | List<[ComplianceJson](../../Models/Components/ComplianceJson.md)> | :heavy_minus_sign: | Detail related to compliance with the contact's privacy rights under various legislation. | |
-| `Prefix` | *string* | :heavy_minus_sign: | Denotes what is traditionally a title of an individual. | Mr. |
-| `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. Deleted contacts still have their data retained, but the contact is inactive. | false |
-| `Purged` | *bool* | :heavy_minus_sign: | True indicates a contact is purged. Purged contacts have only partial data retained, and will be permanently deleted in 30 days. | false |
-| `OptOut` | [OptOutJson](../../Models/Components/OptOutJson.md) | :heavy_minus_sign: | Details of an opt-out for a Contact. | |
-| `Npi` | *string* | :heavy_minus_sign: | Unique 10-digit identification number issued by the Centers for Medicare and Medicaid Services for health care providers in the United States. | 5555555555 |
-| `Links` | [ContactLinksJson](../../Models/Components/ContactLinksJson.md) | :heavy_minus_sign: | Collection of social media links for the contact. | |
-| `DateOfBirth` | [DateOnly](https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0) | :heavy_minus_sign: | The date of birth of the contact.
Reading and writing of this field require the `event/contacts:read-sensitive` and `event/contacts:write-sensitive` scopes respectively. | 1990-01-01 |
-| ~~`PassportNumber`~~ | *string* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
The passport number of the contact.
Reading and writing of this field require the `event/contacts:read-sensitive` and `event/contacts:write-sensitive` scopes respectively. This field has been deprecated. Instead, use the passport.number field. | 123456789 |
-| `Passport` | [PassportJson](../../Models/Components/PassportJson.md) | :heavy_minus_sign: | This entity represents a contact's passport information. | |
-| `SocialSecurityNumber` | *string* | :heavy_minus_sign: | The social security number of the contact.
Reading and writing of this field require the `event/contacts:read-sensitive` and `event/contacts:write-sensitive` scopes respectively. | 123-45-6789 |
-| `NationalIdentificationNumber` | *string* | :heavy_minus_sign: | The national identification number of the contact.
Reading and writing of this field require the `event/contacts:read-sensitive` and `event/contacts:write-sensitive` scopes respectively. | 123456789 |
-| `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. |
-| `Pronouns` | *string* | :heavy_minus_sign: | Represents the preferred pronouns of a contact. | he/him/she/her/they/them |
-| `Id` | *string* | :heavy_minus_sign: | The ID of the contact. | |
-| `ParentId` | *string* | :heavy_minus_sign: | ID of the parent contact, applicable with contact snapshot. | |
-| `Event` | [EventAllOf](../../Models/Components/EventAllOf.md) | :heavy_minus_sign: | Event ID | |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| --------------------------------------------- | --------------------------------------------- | --------------------------------------------- | --------------------------------------------- | --------------------------------------------- |
+| `Id` | *string* | :heavy_minus_sign: | The unique identifier for the error response. | a96e7faa-b23e-49de-9040-c908473ba7ac |
+| `Code` | *long* | :heavy_check_mark: | The HTTP status code representing the error. | 400 |
+| `Message` | *string* | :heavy_check_mark: | A brief description of the error. | Bad Request |
+| `Target` | *string* | :heavy_minus_sign: | The target resource of the error. | example target |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ZeroAllOf8.md b/packages/csharp/docs/Models/Components/ZeroAllOf8.md
index aba0d108..424bd7dd 100644
--- a/packages/csharp/docs/Models/Components/ZeroAllOf8.md
+++ b/packages/csharp/docs/Models/Components/ZeroAllOf8.md
@@ -1,13 +1,17 @@
# ZeroAllOf8
-Represents an error response for the checkin APIs that includes a unique id.
+Information about housing event with key information, providing a summarized view.
## Fields
-| Field | Type | Required | Description | Example |
-| --------------------------------------------- | --------------------------------------------- | --------------------------------------------- | --------------------------------------------- | --------------------------------------------- |
-| `Id` | *string* | :heavy_minus_sign: | The unique identifier for the error response. | a96e7faa-b23e-49de-9040-c908473ba7ac |
-| `Code` | *long* | :heavy_check_mark: | The HTTP status code representing the error. | 400 |
-| `Message` | *string* | :heavy_check_mark: | A brief description of the error. | Bad Request |
-| `Target` | *string* | :heavy_minus_sign: | The target resource of the error. | example target |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Id` | *long* | :heavy_check_mark: | The unique ID of the housing event. | 21738574 |
+| `Name` | *string* | :heavy_check_mark: | Event name. | Summit 2027 |
+| `Start` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_check_mark: | The ISO 8601 formatted date and time of the first attended day of the event, excluding shoulder days. | 2027-01-13T05:00:00Z |
+| `End` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_check_mark: | The ISO 8601 date and time of the last attended day of the event, excluding shoulder days. | 2027-01-15T05:00:00Z |
+| `CutOff` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_check_mark: | The ISO 8601 formatted date and time of a contractually agreed date which triggers configurable business rules, like releasing reserved room blocks back to general availability. | 2026-10-13T04:00:00Z |
+| `TimeZone` | *string* | :heavy_check_mark: | The event timezone from the Olson specification. | America/New_York |
+| `Venue` | [VenueJson1](../../Models/Components/VenueJson1.md) | :heavy_check_mark: | Event venue details. | |
+| `Status` | [HousingEventStatusesJson](../../Models/Components/HousingEventStatusesJson.md) | :heavy_check_mark: | Housing event status. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ZeroAllOf9.md b/packages/csharp/docs/Models/Components/ZeroAllOf9.md
deleted file mode 100644
index c32b2acb..00000000
--- a/packages/csharp/docs/Models/Components/ZeroAllOf9.md
+++ /dev/null
@@ -1,17 +0,0 @@
-# ZeroAllOf9
-
-Information about housing event with key information, providing a summarized view.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Id` | *long* | :heavy_check_mark: | The unique ID of the housing event. | 21738574 |
-| `Name` | *string* | :heavy_check_mark: | Event name. | Summit 2027 |
-| `Start` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_check_mark: | The ISO 8601 formatted date and time of the first attended day of the event, excluding shoulder days. | 2027-01-13T05:00:00Z |
-| `End` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_check_mark: | The ISO 8601 date and time of the last attended day of the event, excluding shoulder days. | 2027-01-15T05:00:00Z |
-| `CutOff` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_check_mark: | The ISO 8601 formatted date and time of a contractually agreed date which triggers configurable business rules, like releasing reserved room blocks back to general availability. | 2026-10-13T04:00:00Z |
-| `TimeZone` | *string* | :heavy_check_mark: | The event timezone from the Olson specification. | America/New_York |
-| `Venue` | [VenueJson1](../../Models/Components/VenueJson1.md) | :heavy_check_mark: | Event venue details. | |
-| `Status` | [HousingEventStatusesJson](../../Models/Components/HousingEventStatusesJson.md) | :heavy_check_mark: | Housing event status. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Errors/ErrorResponse1.md b/packages/csharp/docs/Models/Errors/ErrorResponse1.md
index ec913a9b..7a570385 100644
--- a/packages/csharp/docs/Models/Errors/ErrorResponse1.md
+++ b/packages/csharp/docs/Models/Errors/ErrorResponse1.md
@@ -5,9 +5,9 @@ Represents an error response with additional details of cascading error messages
## Fields
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- |
-| `Code` | *long* | :heavy_check_mark: | The HTTP status code representing the error. | 400 |
-| `Message` | *string* | :heavy_check_mark: | A brief description of the error. | Bad Request |
-| `Target` | *string* | :heavy_minus_sign: | The target resource of the error. | example target |
-| `Details` | List<[ZeroAllOf1](../../Models/Components/ZeroAllOf1.md)> | :heavy_minus_sign: | Additional details of cascading error messages. | |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- |
+| `Code` | *long* | :heavy_check_mark: | The HTTP status code representing the error. | 400 |
+| `Message` | *string* | :heavy_check_mark: | A brief description of the error. | Bad Request |
+| `Target` | *string* | :heavy_minus_sign: | The target resource of the error. | example target |
+| `Details` | List<[ErrorResponseBase](../../Models/Components/ErrorResponseBase.md)> | :heavy_minus_sign: | Additional details of cascading error messages. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Errors/ErrorResponse2.md b/packages/csharp/docs/Models/Errors/ErrorResponse2.md
index 073417fb..3fb42662 100644
--- a/packages/csharp/docs/Models/Errors/ErrorResponse2.md
+++ b/packages/csharp/docs/Models/Errors/ErrorResponse2.md
@@ -5,9 +5,9 @@ Represents an error response with additional details of cascading error messages
## Fields
-| Field | Type | Required | Description | Example |
-| ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- |
-| `Code` | *long* | :heavy_check_mark: | The HTTP status code representing the error. | 400 |
-| `Message` | *string* | :heavy_check_mark: | A brief description of the error. | Bad Request |
-| `Target` | *string* | :heavy_minus_sign: | The target resource of the error. | example target |
-| `Details` | List<[ErrorResponseBase](../../Models/Components/ErrorResponseBase.md)> | :heavy_minus_sign: | Additional details of cascading error messages. | |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- |
+| `Code` | *long* | :heavy_check_mark: | The HTTP status code representing the error. | 400 |
+| `Message` | *string* | :heavy_check_mark: | A brief description of the error. | Bad Request |
+| `Target` | *string* | :heavy_minus_sign: | The target resource of the error. | example target |
+| `Details` | List<[ZeroAllOf1](../../Models/Components/ZeroAllOf1.md)> | :heavy_minus_sign: | Additional details of cascading error messages. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Errors/ErrorResponseJson12.md b/packages/csharp/docs/Models/Errors/ErrorResponseJson12.md
new file mode 100644
index 00000000..b84e0880
--- /dev/null
+++ b/packages/csharp/docs/Models/Errors/ErrorResponseJson12.md
@@ -0,0 +1,13 @@
+# ErrorResponseJson12
+
+The error response.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- |
+| `Schemas` | List<*string*> | :heavy_minus_sign: | The collection of error schemas. | |
+| `Status` | *long* | :heavy_check_mark: | Status code for error. | 400 |
+| `Detail` | *string* | :heavy_check_mark: | Details of the error. | Request is unparsable, syntactically incorrect, or violates schema. |
+| `ScimType` | [ErrorScimTypeJson](../../Models/Components/ErrorScimTypeJson.md) | :heavy_minus_sign: | This is used to denote the scim type of the error. | invalidSyntax |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Errors/ErrorResponseJson17.md b/packages/csharp/docs/Models/Errors/ErrorResponseJson17.md
deleted file mode 100644
index 367d2110..00000000
--- a/packages/csharp/docs/Models/Errors/ErrorResponseJson17.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# ErrorResponseJson17
-
-The error response.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- |
-| `Schemas` | List<*string*> | :heavy_minus_sign: | The collection of error schemas. | |
-| `Status` | *long* | :heavy_check_mark: | Status code for error. | 400 |
-| `Detail` | *string* | :heavy_check_mark: | Details of the error. | Request is unparsable, syntactically incorrect, or violates schema. |
-| `ScimType` | [ErrorScimTypeJson](../../Models/Components/ErrorScimTypeJson.md) | :heavy_minus_sign: | This is used to denote the scim type of the error. | invalidSyntax |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/CreateContactsRequest.md b/packages/csharp/docs/Models/Requests/CreateContactsRequest.md
index 4141ec8e..bed28b50 100644
--- a/packages/csharp/docs/Models/Requests/CreateContactsRequest.md
+++ b/packages/csharp/docs/Models/Requests/CreateContactsRequest.md
@@ -6,4 +6,4 @@
| Field | Type | Required | Description | Example |
| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `Upsert` | *bool* | :heavy_minus_sign: | This parameter determines whether the POST operation should be treated as an upsert. Upserts update existing contacts if they already exist, and otherwise create new contacts.
True indicates that this operation creates new contacts and updates existing contacts if they exist. False means that it only creates new contacts, and attempting to create an existing contact will result in the API returning an error.
Existing contacts are matched to the upsert request via the account's [match key](https://support.cvent.com/s/communityarticle/Allowing-Multiple-People-to-Use-the-Same-Email-Address). By default, the match key for contacts is their email. The match key can also be altered to match contacts based on a combination of their first name, last name, and email.
| true |
-| `RequestBody` | List<[ContactCreateRequestJson](../../Models/Components/ContactCreateRequestJson.md)> | :heavy_check_mark: | List of contacts to be created. Up to **10 contacts** can be created per call. | |
\ No newline at end of file
+| `RequestBody` | List<[ContactCreate](../../Models/Components/ContactCreate.md)> | :heavy_check_mark: | List of contacts to be created. Up to **10 contacts** can be created per call. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/CreateContactsResponse.md b/packages/csharp/docs/Models/Requests/CreateContactsResponse.md
index 915441e9..a1a6c7cf 100644
--- a/packages/csharp/docs/Models/Requests/CreateContactsResponse.md
+++ b/packages/csharp/docs/Models/Requests/CreateContactsResponse.md
@@ -3,7 +3,7 @@
## Fields
-| Field | Type | Required | Description |
-| --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- |
-| `HttpMeta` | [HTTPMetadata](../../Models/Components/HTTPMetadata.md) | :heavy_check_mark: | N/A |
-| `ContactBulkResponse` | List<[ContactBulkItemJson](../../Models/Components/ContactBulkItemJson.md)> | :heavy_minus_sign: | Successfully created a list of contacts. |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- |
+| `HttpMeta` | [HTTPMetadata](../../Models/Components/HTTPMetadata.md) | :heavy_check_mark: | N/A |
+| `ContactBulkResponse` | List<[ContactBulkResponseItem](../../Models/Components/ContactBulkResponseItem.md)> | :heavy_minus_sign: | Successfully created a list of contacts. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/GetAttendeeByIdResponse.md b/packages/csharp/docs/Models/Requests/GetAttendeeByIdResponse.md
index ae609e1e..953b9328 100644
--- a/packages/csharp/docs/Models/Requests/GetAttendeeByIdResponse.md
+++ b/packages/csharp/docs/Models/Requests/GetAttendeeByIdResponse.md
@@ -6,4 +6,4 @@
| Field | Type | Required | Description |
| ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- |
| `HttpMeta` | [HTTPMetadata](../../Models/Components/HTTPMetadata.md) | :heavy_check_mark: | N/A |
-| `Attendee` | [Attendee1](../../Models/Components/Attendee1.md) | :heavy_minus_sign: | Successfully retrieved an attendee object. |
\ No newline at end of file
+| `Attendee1` | [Attendee11](../../Models/Components/Attendee11.md) | :heavy_minus_sign: | Successfully retrieved an attendee object. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/GetAttendeeMessagesMembersRequest.md b/packages/csharp/docs/Models/Requests/GetAttendeeMessagesMembersRequest.md
index ac4bbb69..fbe6de14 100644
--- a/packages/csharp/docs/Models/Requests/GetAttendeeMessagesMembersRequest.md
+++ b/packages/csharp/docs/Models/Requests/GetAttendeeMessagesMembersRequest.md
@@ -3,9 +3,9 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `EventId` | *string* | :heavy_check_mark: | Unique ID of an event | eeeeb4b4-d132-4db4-aaa7-5ec58efd65c8 |
-| `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_check_mark: | Filters are used to narrow the results returned and support a combination of logical and comparison
operators.
The filter adheres to the pattern `filter='field' comparisonType 'value'`.
These are the comparison types that can be used in filter expressions:
- equals to: eq
- match any of the values in the list: in
The following operators can be used:
- or
The following fields are filterable:
* `channel.id` (eq/in)
Examples:
- Filter channel IDs:
* `filter=channel.id in ('production_group_0cb93bab-32d2-4f82-b430-e1911f2348ac', 'production_group_f6dfb98a-c734-487c-97e1-7c7a09a9125f')`
* `filter=channel.id eq 'production_attendee_616241fd-e97d-48c5-8c4b-4b926f50e8c3' or channel.id eq 'production_group_616241fd-e97d-48c5-8c4b-4b926f50e8c3'`
| |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
+| `EventId` | *string* | :heavy_check_mark: | Unique ID of an event | eeeeb4b4-d132-4db4-aaa7-5ec58efd65c8 |
+| `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_check_mark: | Filters narrow results returned based on the criteria you supply.
Filters follow the pattern `filter='field' operator 'value'`.
The following comparison operators are supported:
- `eq`: equals to
- `in`: match any of the values in the list
The following fields are supported:
\| Field \| Operators \|
\|------------------\|------------------------------------\|
\| channel.id \| `eq`, `in` \|
The following logical operators are supported for combining filters:
- `or`
**Examples:**
Filter channel IDs:
* `filter=channel.id in ('production_group_0cb93bab-32d2-4f82-b430-e1911f2348ac', 'production_group_f6dfb98a-c734-487c-97e1-7c7a09a9125f')`
* `filter=channel.id eq 'production_attendee_616241fd-e97d-48c5-8c4b-4b926f50e8c3' or channel.id eq 'production_group_616241fd-e97d-48c5-8c4b-4b926f50e8c3'`
| |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/GetTravelProposalBidResponse.md b/packages/csharp/docs/Models/Requests/GetTravelProposalBidResponse.md
index d6fb5754..4cc04c48 100644
--- a/packages/csharp/docs/Models/Requests/GetTravelProposalBidResponse.md
+++ b/packages/csharp/docs/Models/Requests/GetTravelProposalBidResponse.md
@@ -3,7 +3,7 @@
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- |
-| `HttpMeta` | [HTTPMetadata](../../Models/Components/HTTPMetadata.md) | :heavy_check_mark: | N/A |
-| `TravelProposalBid` | [TravelProposalBid](../../Models/Components/TravelProposalBid.md) | :heavy_minus_sign: | Successfully retrieved a travel proposal bid. |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- |
+| `HttpMeta` | [HTTPMetadata](../../Models/Components/HTTPMetadata.md) | :heavy_check_mark: | N/A |
+| `TravelProposalBid` | [TravelProposalBid2](../../Models/Components/TravelProposalBid2.md) | :heavy_minus_sign: | Successfully retrieved a travel proposal bid. |
\ 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 5210668a..4a418323 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: | A filter query string narrows search results and supports the combination of logical and comparison operators.
The filter adheres to the pattern filter='field' comparisonType 'value'.
The filter query supports maximum three fields in filter expression.
There is one comparison type that can be used in filter expressions:
* equal: eq
The following fields are filterable:
* contact.id (eq)
* solution (eq)
* device.type (eq) [deprecated]
* device.operatingSystem (eq) [deprecated]
* video.id (eq)
* type (eq)
The following operators are available:
* 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](/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/ListDurationsRequest.md b/packages/csharp/docs/Models/Requests/ListDurationsRequest.md
index 0f500808..7e9af531 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: | A filter string passed in the body of the request, narrows search results and supports the combination of logical and comparison operators.
The filter adheres to the pattern filter='field' comparisonType 'value'.
There are eight comparison types that can be used in filter expressions:
* equal: eq
* not equal: ne
* greater than: gt
* greater or equal: ge
* less than: lt
* less than or equal: le
* starts with: sw
* contains a value: contains
* includes value(s): in
The following fields are filterable:
* 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 operators are available:
* 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](/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/ListEventVoucherAttendeesRequest.md b/packages/csharp/docs/Models/Requests/ListEventVoucherAttendeesRequest.md
new file mode 100644
index 00000000..16a33b34
--- /dev/null
+++ b/packages/csharp/docs/Models/Requests/ListEventVoucherAttendeesRequest.md
@@ -0,0 +1,11 @@
+# ListEventVoucherAttendeesRequest
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ |
+| `Id` | *string* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `VoucherId` | *string* | :heavy_check_mark: | Unique ID of a voucher. | 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 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListEventVoucherAttendeesResponse.md b/packages/csharp/docs/Models/Requests/ListEventVoucherAttendeesResponse.md
new file mode 100644
index 00000000..35c70f22
--- /dev/null
+++ b/packages/csharp/docs/Models/Requests/ListEventVoucherAttendeesResponse.md
@@ -0,0 +1,9 @@
+# ListEventVoucherAttendeesResponse
+
+
+## Fields
+
+| Field | Type | Required | Description |
+| ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- |
+| `HttpMeta` | [HTTPMetadata](../../Models/Components/HTTPMetadata.md) | :heavy_check_mark: | N/A |
+| `AttendeesPaginatedResponse` | [AttendeesPaginatedResponse](../../Models/Components/AttendeesPaginatedResponse.md) | :heavy_minus_sign: | Successfully retrieved a paginated list of attendees for the voucher. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListEventVouchersPostFilterRequest.md b/packages/csharp/docs/Models/Requests/ListEventVouchersPostFilterRequest.md
new file mode 100644
index 00000000..d74caae1
--- /dev/null
+++ b/packages/csharp/docs/Models/Requests/ListEventVouchersPostFilterRequest.md
@@ -0,0 +1,14 @@
+# ListEventVouchersPostFilterRequest
+
+
+## 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` | [Filter](../../Models/Components/Filter.md) | :heavy_minus_sign: | See the `filter` parameter in [List Event Vouchers](#operation/listEventVouchers) for full filtering information.
| |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListEventVouchersPostFilterResponse.md b/packages/csharp/docs/Models/Requests/ListEventVouchersPostFilterResponse.md
new file mode 100644
index 00000000..765ed243
--- /dev/null
+++ b/packages/csharp/docs/Models/Requests/ListEventVouchersPostFilterResponse.md
@@ -0,0 +1,9 @@
+# ListEventVouchersPostFilterResponse
+
+
+## Fields
+
+| Field | Type | Required | Description |
+| --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- |
+| `HttpMeta` | [HTTPMetadata](../../Models/Components/HTTPMetadata.md) | :heavy_check_mark: | N/A |
+| `VouchersPaginatedResponse` | [VouchersPaginatedResponse](../../Models/Components/VouchersPaginatedResponse.md) | :heavy_minus_sign: | Successfully retrieved a paginated list of vouchers. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListEventVouchersRequest.md b/packages/csharp/docs/Models/Requests/ListEventVouchersRequest.md
new file mode 100644
index 00000000..2edb8522
--- /dev/null
+++ b/packages/csharp/docs/Models/Requests/ListEventVouchersRequest.md
@@ -0,0 +1,14 @@
+# ListEventVouchersRequest
+
+
+## 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
diff --git a/packages/csharp/docs/Models/Requests/ListEventVouchersResponse.md b/packages/csharp/docs/Models/Requests/ListEventVouchersResponse.md
new file mode 100644
index 00000000..748a3c99
--- /dev/null
+++ b/packages/csharp/docs/Models/Requests/ListEventVouchersResponse.md
@@ -0,0 +1,9 @@
+# ListEventVouchersResponse
+
+
+## Fields
+
+| Field | Type | Required | Description |
+| --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- |
+| `HttpMeta` | [HTTPMetadata](../../Models/Components/HTTPMetadata.md) | :heavy_check_mark: | N/A |
+| `VouchersPaginatedResponse` | [VouchersPaginatedResponse](../../Models/Components/VouchersPaginatedResponse.md) | :heavy_minus_sign: | Successfully retrieved a paginated list of vouchers. |
\ 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 2c3838ee..09c3510d 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: | A filter query string narrows search results and supports the combination of logical and comparison operators.
The filter adheres to the pattern filter='field' comparisonType 'value'.
There are six comparison types that can be used in filter expressions:
* equal: eq
* not equal: ne
* greater than: gt
* greater or equal: ge
* less than: lt
* less than or equal: le
The following fields are filterable:
* 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)
The following filterable fields have been deprecated, use the plural form above:
* event.id (eq\|ne)
| 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](/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/PatchContactsResponse.md b/packages/csharp/docs/Models/Requests/PatchContactsResponse.md
index cfc8918c..324faa02 100644
--- a/packages/csharp/docs/Models/Requests/PatchContactsResponse.md
+++ b/packages/csharp/docs/Models/Requests/PatchContactsResponse.md
@@ -3,7 +3,7 @@
## Fields
-| Field | Type | Required | Description |
-| --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- |
-| `HttpMeta` | [HTTPMetadata](../../Models/Components/HTTPMetadata.md) | :heavy_check_mark: | N/A |
-| `ContactBulkResponse` | List<[ContactBulkItemJson](../../Models/Components/ContactBulkItemJson.md)> | :heavy_minus_sign: | Successfully updated a list of contacts. |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- |
+| `HttpMeta` | [HTTPMetadata](../../Models/Components/HTTPMetadata.md) | :heavy_check_mark: | N/A |
+| `ContactBulkResponse` | List<[ContactBulkResponseItem](../../Models/Components/ContactBulkResponseItem.md)> | :heavy_minus_sign: | Successfully updated a list of contacts. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/UpdateAttendeeResponse.md b/packages/csharp/docs/Models/Requests/UpdateAttendeeResponse.md
index c813f74b..e80841ff 100644
--- a/packages/csharp/docs/Models/Requests/UpdateAttendeeResponse.md
+++ b/packages/csharp/docs/Models/Requests/UpdateAttendeeResponse.md
@@ -6,4 +6,4 @@
| Field | Type | Required | Description |
| ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- |
| `HttpMeta` | [HTTPMetadata](../../Models/Components/HTTPMetadata.md) | :heavy_check_mark: | N/A |
-| `Attendee` | [Attendee1](../../Models/Components/Attendee1.md) | :heavy_minus_sign: | Successfully updated the attendee. |
\ No newline at end of file
+| `Attendee1` | [Attendee11](../../Models/Components/Attendee11.md) | :heavy_minus_sign: | Successfully updated the attendee. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/UpdateContactsResponse.md b/packages/csharp/docs/Models/Requests/UpdateContactsResponse.md
index ac23ab85..51986309 100644
--- a/packages/csharp/docs/Models/Requests/UpdateContactsResponse.md
+++ b/packages/csharp/docs/Models/Requests/UpdateContactsResponse.md
@@ -3,7 +3,7 @@
## Fields
-| Field | Type | Required | Description |
-| --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------------- |
-| `HttpMeta` | [HTTPMetadata](../../Models/Components/HTTPMetadata.md) | :heavy_check_mark: | N/A |
-| `ContactBulkResponse` | List<[ContactBulkItemJson](../../Models/Components/ContactBulkItemJson.md)> | :heavy_minus_sign: | Successfully updated a list of Contacts. |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- |
+| `HttpMeta` | [HTTPMetadata](../../Models/Components/HTTPMetadata.md) | :heavy_check_mark: | N/A |
+| `ContactBulkResponse` | List<[ContactBulkResponseItem](../../Models/Components/ContactBulkResponseItem.md)> | :heavy_minus_sign: | Successfully updated a list of Contacts. |
\ No newline at end of file
diff --git a/packages/csharp/docs/sdks/appointments/README.md b/packages/csharp/docs/sdks/appointments/README.md
index 318a3895..db82b135 100644
--- a/packages/csharp/docs/sdks/appointments/README.md
+++ b/packages/csharp/docs/sdks/appointments/README.md
@@ -546,7 +546,8 @@ var res = await sdk.Appointments.CreateAppointmentAsync(req);
| Error Type | Status Code | Content Type |
| -------------------------------------- | -------------------------------------- | -------------------------------------- |
-| Cvent.SDK.Models.Errors.ErrorResponse1 | 400, 401, 403, 404, 422, 429 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponse2 | 422 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponse1 | 400, 401, 403, 404, 429 | application/json |
| Cvent.SDK.Models.Errors.APIException | 4XX, 5XX | \*/\* |
## UpdateAppointment
@@ -617,7 +618,8 @@ var res = await sdk.Appointments.UpdateAppointmentAsync(req);
| Error Type | Status Code | Content Type |
| -------------------------------------- | -------------------------------------- | -------------------------------------- |
-| Cvent.SDK.Models.Errors.ErrorResponse1 | 400, 401, 403, 404, 422, 429 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponse2 | 422 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponse1 | 400, 401, 403, 404, 429 | application/json |
| Cvent.SDK.Models.Errors.APIException | 4XX, 5XX | \*/\* |
## CancelAppointment
diff --git a/packages/csharp/docs/sdks/attendees/README.md b/packages/csharp/docs/sdks/attendees/README.md
index 5bd1e59a..3eb362b1 100644
--- a/packages/csharp/docs/sdks/attendees/README.md
+++ b/packages/csharp/docs/sdks/attendees/README.md
@@ -577,10 +577,10 @@ PostBadgeRequest req = new PostBadgeRequest() {
Id = "abc123",
Status = BadgeStatus.Active,
Type = BadgeType.Epc,
- Attendee = new Attendee11() {
+ Attendee = new Attendee12() {
Id = "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3",
},
- Event = new Event21() {
+ Event = new Event3() {
Id = "3db28cfc-db22-11eb-8d19-0242ac130003",
},
},
@@ -755,10 +755,10 @@ UpdateBadgeRequest req = new UpdateBadgeRequest() {
Id = "abc123",
Status = BadgeStatus.Active,
Type = BadgeType.Epc,
- Attendee = new Attendee11() {
+ Attendee = new Attendee12() {
Id = "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3",
},
- Event = new Event21() {
+ Event = new Event3() {
Id = "3db28cfc-db22-11eb-8d19-0242ac130003",
},
},
diff --git a/packages/csharp/docs/sdks/audiencesegments/README.md b/packages/csharp/docs/sdks/audiencesegments/README.md
index 08b987d5..47c0c339 100644
--- a/packages/csharp/docs/sdks/audiencesegments/README.md
+++ b/packages/csharp/docs/sdks/audiencesegments/README.md
@@ -215,7 +215,7 @@ var sdk = new CventSDK(security: new Security() {
});
AudienceSegmentCreate req = new AudienceSegmentCreate() {
- Event = new EventJson1() {
+ Event = new EventJson() {
Id = "103097a4-143d-11e5-9f99-d0a637ee0032",
},
Name = "VIP Attendees",
@@ -242,7 +242,8 @@ var res = await sdk.AudienceSegments.CreateAudienceSegmentAsync(req);
| Error Type | Status Code | Content Type |
| --------------------------------------------- | --------------------------------------------- | --------------------------------------------- |
| Cvent.SDK.Models.Errors.SegmentsErrorResponse | 400 | application/json |
-| Cvent.SDK.Models.Errors.ErrorResponse1 | 401, 403, 422, 429 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponse2 | 422 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponse1 | 401, 403, 429 | application/json |
| Cvent.SDK.Models.Errors.APIException | 4XX, 5XX | \*/\* |
## ListAudienceSegments
@@ -453,7 +454,7 @@ var sdk = new CventSDK(security: new Security() {
UpdateAudienceSegmentRequest req = new UpdateAudienceSegmentRequest() {
AudienceSegmentId = "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3",
AudienceSegment = new AudienceSegment() {
- Event = new EventJson1() {
+ Event = new EventJson() {
Id = "103097a4-143d-11e5-9f99-d0a637ee0032",
},
Name = "VIP Attendees",
@@ -480,7 +481,8 @@ var res = await sdk.AudienceSegments.UpdateAudienceSegmentAsync(req);
| Error Type | Status Code | Content Type |
| -------------------------------------- | -------------------------------------- | -------------------------------------- |
-| Cvent.SDK.Models.Errors.ErrorResponse1 | 400, 401, 403, 404, 422, 429 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponse2 | 422 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponse1 | 400, 401, 403, 404, 429 | application/json |
| Cvent.SDK.Models.Errors.APIException | 4XX, 5XX | \*/\* |
## DeleteAudienceSegment
@@ -644,7 +646,8 @@ var res = await sdk.AudienceSegments.AssociateAttendeeToSegmentAsync(req);
| Error Type | Status Code | Content Type |
| --------------------------------------------- | --------------------------------------------- | --------------------------------------------- |
| Cvent.SDK.Models.Errors.SegmentsErrorResponse | 400 | application/json |
-| Cvent.SDK.Models.Errors.ErrorResponse1 | 401, 403, 404, 422, 429 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponse2 | 422 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponse1 | 401, 403, 404, 429 | application/json |
| Cvent.SDK.Models.Errors.APIException | 4XX, 5XX | \*/\* |
## DisassociateAttendeeFromAudienceSegment
diff --git a/packages/csharp/docs/sdks/bulk/README.md b/packages/csharp/docs/sdks/bulk/README.md
index e01e862d..f986294b 100644
--- a/packages/csharp/docs/sdks/bulk/README.md
+++ b/packages/csharp/docs/sdks/bulk/README.md
@@ -111,8 +111,8 @@ var res = await sdk.Bulk.CreateBulkJobAsync(req);
| Error Type | Status Code | Content Type |
| -------------------------------------- | -------------------------------------- | -------------------------------------- |
-| Cvent.SDK.Models.Errors.ErrorResponse1 | 409 | application/json |
-| Cvent.SDK.Models.Errors.ErrorResponse2 | 400, 401, 403, 429 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponse2 | 409 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponse1 | 400, 401, 403, 429 | application/json |
| Cvent.SDK.Models.Errors.APIException | 4XX, 5XX | \*/\* |
## GetBulkJobById
@@ -159,7 +159,7 @@ var res = await sdk.Bulk.GetBulkJobByIdAsync(req);
| Error Type | Status Code | Content Type |
| -------------------------------------- | -------------------------------------- | -------------------------------------- |
-| Cvent.SDK.Models.Errors.ErrorResponse2 | 400, 401, 403, 404, 429 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponse1 | 400, 401, 403, 404, 429 | application/json |
| Cvent.SDK.Models.Errors.APIException | 4XX, 5XX | \*/\* |
## CancelBulkJob
@@ -206,7 +206,7 @@ var res = await sdk.Bulk.CancelBulkJobAsync(req);
| Error Type | Status Code | Content Type |
| -------------------------------------- | -------------------------------------- | -------------------------------------- |
-| Cvent.SDK.Models.Errors.ErrorResponse2 | 400, 401, 403, 404, 429 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponse1 | 400, 401, 403, 404, 429 | application/json |
| Cvent.SDK.Models.Errors.APIException | 4XX, 5XX | \*/\* |
## UploadBulkJobData
@@ -284,8 +284,8 @@ var res = await sdk.Bulk.UploadBulkJobDataAsync(req);
| Error Type | Status Code | Content Type |
| -------------------------------------- | -------------------------------------- | -------------------------------------- |
-| Cvent.SDK.Models.Errors.ErrorResponse1 | 409 | application/json |
-| Cvent.SDK.Models.Errors.ErrorResponse2 | 400, 401, 403, 404, 429 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponse2 | 409 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponse1 | 400, 401, 403, 404, 429 | application/json |
| Cvent.SDK.Models.Errors.APIException | 4XX, 5XX | \*/\* |
## ListBulkJobResult
@@ -342,7 +342,7 @@ while(res != null)
| Error Type | Status Code | Content Type |
| -------------------------------------- | -------------------------------------- | -------------------------------------- |
-| Cvent.SDK.Models.Errors.ErrorResponse2 | 400, 401, 403, 404, 429 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponse1 | 400, 401, 403, 404, 429 | application/json |
| Cvent.SDK.Models.Errors.APIException | 4XX, 5XX | \*/\* |
## RunBulkJob
@@ -391,6 +391,6 @@ var res = await sdk.Bulk.RunBulkJobAsync(req);
| Error Type | Status Code | Content Type |
| -------------------------------------- | -------------------------------------- | -------------------------------------- |
-| Cvent.SDK.Models.Errors.ErrorResponse1 | 409 | application/json |
-| Cvent.SDK.Models.Errors.ErrorResponse2 | 400, 401, 403, 404, 429 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponse2 | 409 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponse1 | 400, 401, 403, 404, 429 | application/json |
| Cvent.SDK.Models.Errors.APIException | 4XX, 5XX | \*/\* |
\ No newline at end of file
diff --git a/packages/csharp/docs/sdks/contacts/README.md b/packages/csharp/docs/sdks/contacts/README.md
index b866e6b5..f3e25c6b 100644
--- a/packages/csharp/docs/sdks/contacts/README.md
+++ b/packages/csharp/docs/sdks/contacts/README.md
@@ -62,7 +62,7 @@ ContactGroupInput req = new ContactGroupInput() {
Name = "group name",
ShortDescription = "short description",
Description = "long description",
- DistributionListInfo = new DistributionListInfoJsonInput() {
+ DistributionListInfo = new DistributionListInfoInput() {
InternalNote = "Sample distribution list internal note",
},
};
@@ -228,7 +228,7 @@ UpdateContactGroupRequest req = new UpdateContactGroupRequest() {
Name = "group name",
ShortDescription = "short description",
Description = "long description",
- DistributionListInfo = new DistributionListInfoJsonInput() {
+ DistributionListInfo = new DistributionListInfoInput() {
InternalNote = "Sample distribution list internal note",
},
},
@@ -673,12 +673,12 @@ List req = new List() {
Email = "h.potterfield@test.com",
CcEmail = "h.porter@tesing.com",
Designation = "CPA",
- Type = new AttendeeContactTypeJsonInput() {
+ Type = new AttendeeContactTypeInput() {
Id = "861B51EC-AA7E-475F-B38D-4C8E35C47D63",
},
- PrimaryAddressType = AddressTypeJson.Home,
+ PrimaryAddressType = AddressType.Home,
HomeFax = "555-555-5555",
- WorkAddress = new AddressJsonInput() {
+ WorkAddress = new AddressInput() {
Address1 = "Cvent Inc.",
Address2 = "4001 West Parmer Lane",
Address3 = "PO Box 123",
@@ -693,9 +693,9 @@ List req = new List() {
MobilePhone = "555-555-5555",
Prefix = "Mr.",
Pager = "555-555-5555",
- OptOut = new OptOutJsonInput() {},
+ OptOut = new ContactOptOutInput() {},
Npi = "5555555555",
- Passport = new PassportJsonInput() {
+ Passport = new PassportInput() {
Number = "123456789",
CountryCode = "GB",
},
@@ -760,23 +760,23 @@ var sdk = new CventSDK(security: new Security() {
CreateContactsRequest req = new CreateContactsRequest() {
Upsert = true,
- RequestBody = new List() {
- new ContactCreateRequestJson() {
+ RequestBody = new List() {
+ new ContactCreate() {
FirstName = "Henry",
LastName = "Potterfield",
MiddleName = "A",
Nickname = "Harry",
Email = "h.potterfield@test.com",
CcEmail = "h.porter@tesing.com",
- Gender = GenderJson.Male,
+ Gender = Gender.Male,
Company = "Cvent Inc.",
Designation = "CPA",
Title = "Event Planner",
- Type = new AttendeeContactTypeJsonInput() {
+ Type = new AttendeeContactTypeInput() {
Id = "861B51EC-AA7E-475F-B38D-4C8E35C47D63",
},
- PrimaryAddressType = AddressTypeJson.Home,
- HomeAddress = new AddressJsonInput() {
+ PrimaryAddressType = AddressType.Home,
+ HomeAddress = new AddressInput() {
Address1 = "Cvent Inc.",
Address2 = "4001 West Parmer Lane",
Address3 = "PO Box 123",
@@ -787,7 +787,7 @@ CreateContactsRequest req = new CreateContactsRequest() {
},
HomePhone = "555-555-5555",
HomeFax = "555-555-5555",
- WorkAddress = new AddressJsonInput() {
+ WorkAddress = new AddressInput() {
Address1 = "Cvent Inc.",
Address2 = "4001 West Parmer Lane",
Address3 = "PO Box 123",
@@ -802,21 +802,21 @@ CreateContactsRequest req = new CreateContactsRequest() {
MobilePhone = "555-555-5555",
Prefix = "Mr.",
Pager = "555-555-5555",
- OptOut = new OptOutJsonInput() {},
+ OptOut = new ContactOptOutInput() {},
Npi = "5555555555",
- Links = new ContactLinksJsonInput() {
- TwitterUrl = new LinkJson() {
+ Links = new ContactLinksInput() {
+ TwitterUrl = new Link() {
Href = "?token=90c5f062-76ad-4ea4-aa53-00eb698d9262",
},
- FacebookUrl = new LinkJson() {
+ FacebookUrl = new Link() {
Href = "?token=90c5f062-76ad-4ea4-aa53-00eb698d9262",
},
- LinkedInUrl = new LinkJson() {
+ LinkedInUrl = new Link() {
Href = "?token=90c5f062-76ad-4ea4-aa53-00eb698d9262",
},
},
DateOfBirth = DateOnly.Parse("1990-01-01"),
- Passport = new PassportJsonInput() {
+ Passport = new PassportInput() {
Number = "123456789",
CountryCode = "GB",
},
@@ -1122,15 +1122,15 @@ UpdateContactByIdRequest req = new UpdateContactByIdRequest() {
Nickname = "Harry",
Email = "h.potterfield@test.com",
CcEmail = "h.porter@tesing.com",
- Gender = GenderJson.Male,
+ Gender = Gender.Male,
Company = "Cvent Inc.",
Designation = "CPA",
Title = "Event Planner",
- Type = new AttendeeContactTypeJsonInput() {
+ Type = new AttendeeContactTypeInput() {
Id = "861B51EC-AA7E-475F-B38D-4C8E35C47D63",
},
- PrimaryAddressType = AddressTypeJson.Home,
- HomeAddress = new AddressJsonInput() {
+ PrimaryAddressType = AddressType.Home,
+ HomeAddress = new AddressInput() {
Address1 = "Cvent Inc.",
Address2 = "4001 West Parmer Lane",
Address3 = "PO Box 123",
@@ -1141,7 +1141,7 @@ UpdateContactByIdRequest req = new UpdateContactByIdRequest() {
},
HomePhone = "555-555-5555",
HomeFax = "555-555-5555",
- WorkAddress = new AddressJsonInput() {
+ WorkAddress = new AddressInput() {
Address1 = "Cvent Inc.",
Address2 = "4001 West Parmer Lane",
Address3 = "PO Box 123",
@@ -1156,21 +1156,21 @@ UpdateContactByIdRequest req = new UpdateContactByIdRequest() {
MobilePhone = "555-555-5555",
Prefix = "Mr.",
Pager = "555-555-5555",
- OptOut = new OptOutJsonInput() {},
+ OptOut = new ContactOptOutInput() {},
Npi = "5555555555",
- Links = new ContactLinksJsonInput() {
- TwitterUrl = new LinkJson() {
+ Links = new ContactLinksInput() {
+ TwitterUrl = new Link() {
Href = "?token=90c5f062-76ad-4ea4-aa53-00eb698d9262",
},
- FacebookUrl = new LinkJson() {
+ FacebookUrl = new Link() {
Href = "?token=90c5f062-76ad-4ea4-aa53-00eb698d9262",
},
- LinkedInUrl = new LinkJson() {
+ LinkedInUrl = new Link() {
Href = "?token=90c5f062-76ad-4ea4-aa53-00eb698d9262",
},
},
DateOfBirth = DateOnly.Parse("1990-01-01"),
- Passport = new PassportJsonInput() {
+ Passport = new PassportInput() {
Number = "123456789",
CountryCode = "GB",
},
@@ -1246,12 +1246,12 @@ PatchContactByIdRequest req = new PatchContactByIdRequest() {
Email = "h.potterfield@test.com",
CcEmail = "h.porter@tesing.com",
Designation = "CPA",
- Type = new AttendeeContactTypeJsonInput() {
+ Type = new AttendeeContactTypeInput() {
Id = "861B51EC-AA7E-475F-B38D-4C8E35C47D63",
},
- PrimaryAddressType = AddressTypeJson.Home,
+ PrimaryAddressType = AddressType.Home,
HomeFax = "555-555-5555",
- WorkAddress = new AddressJsonInput() {
+ WorkAddress = new AddressInput() {
Address1 = "Cvent Inc.",
Address2 = "4001 West Parmer Lane",
Address3 = "PO Box 123",
@@ -1266,9 +1266,9 @@ PatchContactByIdRequest req = new PatchContactByIdRequest() {
MobilePhone = "555-555-5555",
Prefix = "Mr.",
Pager = "555-555-5555",
- OptOut = new OptOutJsonInput() {},
+ OptOut = new ContactOptOutInput() {},
Npi = "5555555555",
- Passport = new PassportJsonInput() {
+ Passport = new PassportInput() {
Number = "123456789",
CountryCode = "GB",
},
@@ -1442,8 +1442,8 @@ MergeContactsRequest req = new MergeContactsRequest() {
"04ca6ae2-0dc3-487b-953e-86d6abbdf7d3",
},
ConflictResolution = new ConflictResolution() {
- ContactFields = new List() {
- new ContactMergeFieldJson() {
+ ContactFields = new List() {
+ new ContactMergeField() {
FieldName = "firstName",
ContactId = "a45a3341-d30f-4bd9-bfd8-fbcdae37f0f2",
},
diff --git a/packages/csharp/docs/sdks/customfields/README.md b/packages/csharp/docs/sdks/customfields/README.md
index dce99590..a53b019d 100644
--- a/packages/csharp/docs/sdks/customfields/README.md
+++ b/packages/csharp/docs/sdks/customfields/README.md
@@ -100,7 +100,7 @@ CustomField3 req = new CustomField3() {
Category = CustomFieldCategoryJson.Contact,
Name = "What is a your favorite color?",
Code = "FAVORITE_COLOR_CODE",
- Type = CustomFieldTypeJson1.OpenEndedTextOneLine,
+ Type = CustomFieldTypeJson.OpenEndedTextOneLine,
Details = CustomField3Details.CreateOpenEndedOneLine(
new OpenEndedOneLine() {
AnswerFormat = "General",
@@ -165,11 +165,11 @@ UpdateCustomFieldRequest req = new UpdateCustomFieldRequest() {
Category = CustomFieldCategoryJson.Contact,
Name = "What is a your favorite color?",
Code = "FAVORITE_COLOR_CODE",
- Type = CustomFieldTypeJson1.OpenEndedTextOneLine,
+ Type = CustomFieldTypeJson.OpenEndedTextOneLine,
Details = ExistingCustomFieldDetailsInput.CreateThreeInput(
new ThreeInput() {
- Choices = new List() {
- new ChoiceJson3Input() {
+ Choices = new List() {
+ new ChoiceJson2Input() {
Text = "What is your current designation?",
},
},
diff --git a/packages/csharp/docs/sdks/events/README.md b/packages/csharp/docs/sdks/events/README.md
index a65fa567..de191e77 100644
--- a/packages/csharp/docs/sdks/events/README.md
+++ b/packages/csharp/docs/sdks/events/README.md
@@ -46,6 +46,9 @@ Events are used to collect registrations and allow attendees to select their sch
* [ListEventUserGroups](#listeventusergroups) - List Event User Groups
* [AssociateEventUserGroup](#associateeventusergroup) - Associate User Group to Event
* [DisassociateEventUserGroup](#disassociateeventusergroup) - Disassociate Group from Event
+* [ListEventVouchers](#listeventvouchers) - List Event Vouchers
+* [ListEventVouchersPostFilter](#listeventvoucherspostfilter) - List Event Vouchers (Filter)
+* [ListEventVoucherAttendees](#listeventvoucherattendees) - List Voucher Attendees
* [UpdateQuantityItemRegistrationForAttendee](#updatequantityitemregistrationforattendee) - Update Quantity Item
* [ListSessionsAttendance](#listsessionsattendance) - Session Attendance
* [ListSessionsEnrollment](#listsessionsenrollment) - List Session Registrants
@@ -417,7 +420,7 @@ EventInput req = new EventInput() {
Email = "hsmith@example.com",
},
},
- Type = EventTypeJson1.Conference,
+ Type = EventTypeJson.Conference,
};
var res = await sdk.Events.CreateEventAsyncAsync(req);
@@ -567,7 +570,7 @@ var sdk = new CventSDK(security: new Security() {
});
SendEmailEventRequest req = new SendEmailEventRequest() {
- Event = new EventJson8() {
+ Event = new EventJson6() {
Id = "a150f1ee-6c54-4b01-90e6-d701748f0851",
},
Email = new EmailJson2() {
@@ -821,7 +824,7 @@ UpdateEventRequest req = new UpdateEventRequest() {
},
Capacity = 50,
Planners = new List() {},
- Type = EventTypeJson1.Conference,
+ Type = EventTypeJson.Conference,
},
};
@@ -2150,7 +2153,7 @@ PostTransactionsRequest req = new PostTransactionsRequest() {
Event = new Event2() {
Id = "4a0e8d1f-8fd6-4ebe-977a-602b4a1f9c56",
},
- Attendee = new Attendee2() {
+ Attendee = new Attendee() {
Id = "5b0e8d1f-8fd6-4ebe-977a-602b4a1f9c43",
},
PaymentType = PaymentType.OfflineCharge,
@@ -2411,6 +2414,181 @@ var res = await sdk.Events.DisassociateEventUserGroupAsync(req);
| Cvent.SDK.Models.Errors.ErrorResponse1 | 400, 401, 403, 404, 429 | application/json |
| Cvent.SDK.Models.Errors.APIException | 4XX, 5XX | \*/\* |
+## ListEventVouchers
+
+Retrieves a paginated list of vouchers set up for a specific event.
+
+
+### Example Usage
+
+
+```csharp
+using Cvent.SDK;
+using Cvent.SDK.Models.Components;
+using Cvent.SDK.Models.Requests;
+using System;
+
+var sdk = new CventSDK(security: new Security() {
+ OAuth2ClientCredentials = new SchemeOAuth2ClientCredentials() {
+ ClientID = "",
+ ClientSecret = "",
+ TokenURL = "",
+ Scopes = "",
+ },
+});
+
+ListEventVouchersRequest req = new ListEventVouchersRequest() {
+ Id = "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3",
+ Token = "0e28af57-511f-47ab-ae46-46cd1ca51a1a",
+ Before = System.DateTime.Parse("2017-01-02T02:00:00Z").ToUniversalTime(),
+ After = System.DateTime.Parse("2017-01-02T02:00:00Z").ToUniversalTime(),
+ Sort = "code:ASC",
+ Filter = "id in ('1800c9bd-b5f4-438a-a92c-ea1f59553a5c', '2900d8ce-c6f5-449b-b03d-fb2f60664b6d')",
+};
+
+ListEventVouchersResponse? res = await sdk.Events.ListEventVouchersAsync(req);
+
+while(res != null)
+{
+ // handle items
+
+ res = await res.Next!();
+}
+```
+
+### Parameters
+
+| Parameter | Type | Required | Description |
+| ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- |
+| `request` | [ListEventVouchersRequest](../../Models/Requests/ListEventVouchersRequest.md) | :heavy_check_mark: | The request object to use for the request. |
+
+### Response
+
+**[ListEventVouchersResponse](../../Models/Requests/ListEventVouchersResponse.md)**
+
+### Errors
+
+| Error Type | Status Code | Content Type |
+| -------------------------------------- | -------------------------------------- | -------------------------------------- |
+| Cvent.SDK.Models.Errors.ErrorResponse1 | 400, 401, 403, 404, 429 | application/json |
+| Cvent.SDK.Models.Errors.APIException | 4XX, 5XX | \*/\* |
+
+## ListEventVouchersPostFilter
+
+Retrieves a paginated list of vouchers configured for an event using a filter provided in the body of the request.
+
+
+### Example Usage
+
+
+```csharp
+using Cvent.SDK;
+using Cvent.SDK.Models.Components;
+using Cvent.SDK.Models.Requests;
+using System;
+
+var sdk = new CventSDK(security: new Security() {
+ OAuth2ClientCredentials = new SchemeOAuth2ClientCredentials() {
+ ClientID = "",
+ ClientSecret = "",
+ TokenURL = "",
+ Scopes = "",
+ },
+});
+
+ListEventVouchersPostFilterRequest req = new ListEventVouchersPostFilterRequest() {
+ Id = "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3",
+ Token = "0e28af57-511f-47ab-ae46-46cd1ca51a1a",
+ Before = System.DateTime.Parse("2017-01-02T02:00:00Z").ToUniversalTime(),
+ After = System.DateTime.Parse("2017-01-02T02:00:00Z").ToUniversalTime(),
+ Sort = "code:ASC",
+ Filter = new Filter() {
+ FilterValue = "id in ('1800c9bd-b5f4-438a-a92c-ea1f59553a5c', '2900d8ce-c6f5-449b-b03d-fb2f60664b6d')",
+ },
+};
+
+ListEventVouchersPostFilterResponse? res = await sdk.Events.ListEventVouchersPostFilterAsync(req);
+
+while(res != null)
+{
+ // handle items
+
+ res = await res.Next!();
+}
+```
+
+### Parameters
+
+| Parameter | Type | Required | Description |
+| ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- |
+| `request` | [ListEventVouchersPostFilterRequest](../../Models/Requests/ListEventVouchersPostFilterRequest.md) | :heavy_check_mark: | The request object to use for the request. |
+
+### Response
+
+**[ListEventVouchersPostFilterResponse](../../Models/Requests/ListEventVouchersPostFilterResponse.md)**
+
+### Errors
+
+| Error Type | Status Code | Content Type |
+| -------------------------------------- | -------------------------------------- | -------------------------------------- |
+| Cvent.SDK.Models.Errors.ErrorResponse1 | 400, 401, 403, 404, 429 | application/json |
+| Cvent.SDK.Models.Errors.APIException | 4XX, 5XX | \*/\* |
+
+## ListEventVoucherAttendees
+
+Retrieves a paginated list of attendees who have redeemed a specific voucher for the given event.
+
+
+### Example Usage
+
+
+```csharp
+using Cvent.SDK;
+using Cvent.SDK.Models.Components;
+using Cvent.SDK.Models.Requests;
+
+var sdk = new CventSDK(security: new Security() {
+ OAuth2ClientCredentials = new SchemeOAuth2ClientCredentials() {
+ ClientID = "",
+ ClientSecret = "",
+ TokenURL = "",
+ Scopes = "",
+ },
+});
+
+ListEventVoucherAttendeesRequest req = new ListEventVoucherAttendeesRequest() {
+ Id = "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3",
+ VoucherId = "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3",
+ Token = "0e28af57-511f-47ab-ae46-46cd1ca51a1a",
+};
+
+ListEventVoucherAttendeesResponse? res = await sdk.Events.ListEventVoucherAttendeesAsync(req);
+
+while(res != null)
+{
+ // handle items
+
+ res = await res.Next!();
+}
+```
+
+### Parameters
+
+| Parameter | Type | Required | Description |
+| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- |
+| `request` | [ListEventVoucherAttendeesRequest](../../Models/Requests/ListEventVoucherAttendeesRequest.md) | :heavy_check_mark: | The request object to use for the request. |
+
+### Response
+
+**[ListEventVoucherAttendeesResponse](../../Models/Requests/ListEventVoucherAttendeesResponse.md)**
+
+### Errors
+
+| Error Type | Status Code | Content Type |
+| -------------------------------------- | -------------------------------------- | -------------------------------------- |
+| Cvent.SDK.Models.Errors.ErrorResponse1 | 400, 401, 403, 404, 429 | application/json |
+| Cvent.SDK.Models.Errors.APIException | 4XX, 5XX | \*/\* |
+
## UpdateQuantityItemRegistrationForAttendee
Update a specific [quantity item](https://support.cvent.com/s/communityarticle/Creating-Quantity-Items) for an attendee's registration based on the details supplied in the body of the request.
diff --git a/packages/csharp/docs/sdks/exhibitor/README.md b/packages/csharp/docs/sdks/exhibitor/README.md
index b1ecfff5..72e8b78d 100644
--- a/packages/csharp/docs/sdks/exhibitor/README.md
+++ b/packages/csharp/docs/sdks/exhibitor/README.md
@@ -131,7 +131,7 @@ var sdk = new CventSDK(security: new Security() {
CreateExhibitorCategoryRequest req = new CreateExhibitorCategoryRequest() {
Id = "3db28cfc-db22-11eb-8d19-0242ac130003",
ExhibitorCategoryRequest = new ExhibitorCategoryRequest() {
- Event = new Event21() {
+ Event = new Event3() {
Id = "3db28cfc-db22-11eb-8d19-0242ac130003",
},
Name = "Automobile",
@@ -191,7 +191,7 @@ UpdateExhibitorCategoryRequest req = new UpdateExhibitorCategoryRequest() {
Id = "3db28cfc-db22-11eb-8d19-0242ac130003",
ExhibitorCategoryId = "534a465b-b4cb-471d-9498-4bf3917ad8bf",
ExhibitorCategoryRequest = new ExhibitorCategoryRequest() {
- Event = new Event21() {
+ Event = new Event3() {
Id = "3db28cfc-db22-11eb-8d19-0242ac130003",
},
Name = "Automobile",
@@ -679,7 +679,7 @@ var sdk = new CventSDK(security: new Security() {
CreateExhibitorRequest req = new CreateExhibitorRequest() {
Id = "3db28cfc-db22-11eb-8d19-0242ac130003",
ExhibitorRequest = new ExhibitorRequest() {
- Event = new Event21() {
+ Event = new Event3() {
Id = "3db28cfc-db22-11eb-8d19-0242ac130003",
},
Name = "Potterfield Harry",
@@ -687,9 +687,9 @@ CreateExhibitorRequest req = new CreateExhibitorRequest() {
Code = "abc123",
SourceId = "software",
Location = "Taj Mahal",
- Address = new Address2() {
+ Address = new Address4() {
Address1 = "Cvent Inc.",
- Address2Value = "4001 West Parmer Lane",
+ Address2 = "4001 West Parmer Lane",
City = "Austin",
Region = "Texas",
PostalCode = "78727",
@@ -821,7 +821,7 @@ UpdateExhibitorRequest req = new UpdateExhibitorRequest() {
Id = "3db28cfc-db22-11eb-8d19-0242ac130003",
ExhibitorId = "4888db54-db22-11eb-8d19-0242ac130003",
ExhibitorRequest = new ExhibitorRequest() {
- Event = new Event21() {
+ Event = new Event3() {
Id = "3db28cfc-db22-11eb-8d19-0242ac130003",
},
Name = "Potterfield Harry",
@@ -829,9 +829,9 @@ UpdateExhibitorRequest req = new UpdateExhibitorRequest() {
Code = "abc123",
SourceId = "software",
Location = "Taj Mahal",
- Address = new Address2() {
+ Address = new Address4() {
Address1 = "Cvent Inc.",
- Address2Value = "4001 West Parmer Lane",
+ Address2 = "4001 West Parmer Lane",
City = "Austin",
Region = "Texas",
PostalCode = "78727",
@@ -1127,7 +1127,7 @@ UpdateExhibitorAnswersRequest req = new UpdateExhibitorAnswersRequest() {
Question = new Uuid() {
Id = "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3",
},
- Event = new Event21() {
+ Event = new Event3() {
Id = "3db28cfc-db22-11eb-8d19-0242ac130003",
},
Exhibitor = new Cvent.SDK.Models.Components.Exhibitor() {
@@ -1410,7 +1410,7 @@ PostRegistrationPackRequest req = new PostRegistrationPackRequest() {
Id = "3db28cfc-db22-11eb-8d19-0242ac130003",
ExhibitorId = "4888db54-db22-11eb-8d19-0242ac130003",
RegistrationPackRequest = new RegistrationPackRequest() {
- Event = new Event21() {
+ Event = new Event3() {
Id = "3db28cfc-db22-11eb-8d19-0242ac130003",
},
Exhibitor = new Cvent.SDK.Models.Components.Exhibitor() {
@@ -1446,7 +1446,8 @@ var res = await sdk.Exhibitor.PostRegistrationPackAsync(req);
| Error Type | Status Code | Content Type |
| -------------------------------------- | -------------------------------------- | -------------------------------------- |
-| Cvent.SDK.Models.Errors.ErrorResponse1 | 400, 401, 403, 404, 409, 429 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponse2 | 409 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponse1 | 400, 401, 403, 404, 429 | application/json |
| Cvent.SDK.Models.Errors.APIException | 4XX, 5XX | \*/\* |
## GetExhibitorRegistrationPacks
@@ -1584,7 +1585,7 @@ UpdateRegistrationPackRequest req = new UpdateRegistrationPackRequest() {
ExhibitorId = "4888db54-db22-11eb-8d19-0242ac130003",
RegistrationPackId = "50f4f0df-0c2d-4e6b-8e68-e1413b6917f5",
RegistrationPackRequest = new RegistrationPackRequest() {
- Event = new Event21() {
+ Event = new Event3() {
Id = "3db28cfc-db22-11eb-8d19-0242ac130003",
},
Exhibitor = new Cvent.SDK.Models.Components.Exhibitor() {
@@ -1672,7 +1673,8 @@ var res = await sdk.Exhibitor.DeleteRegistrationPackAsync(req);
| Error Type | Status Code | Content Type |
| -------------------------------------- | -------------------------------------- | -------------------------------------- |
-| Cvent.SDK.Models.Errors.ErrorResponse1 | 401, 403, 404, 409, 429 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponse2 | 409 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponse1 | 401, 403, 404, 429 | application/json |
| Cvent.SDK.Models.Errors.APIException | 4XX, 5XX | \*/\* |
## GetSponsorshipLevels
diff --git a/packages/csharp/docs/sdks/exhibitorcontent/README.md b/packages/csharp/docs/sdks/exhibitorcontent/README.md
index 6784c0fa..9ff17db0 100644
--- a/packages/csharp/docs/sdks/exhibitorcontent/README.md
+++ b/packages/csharp/docs/sdks/exhibitorcontent/README.md
@@ -150,7 +150,7 @@ UpdateExhibitorFileRequest req = new UpdateExhibitorFileRequest() {
ExhibitorId = "4888db54-db22-11eb-8d19-0242ac130003",
FileId = "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3",
File = new FileInput() {
- Event = new Event21() {
+ Event = new Event3() {
Id = "3db28cfc-db22-11eb-8d19-0242ac130003",
},
Exhibitor = new Cvent.SDK.Models.Components.Exhibitor() {
@@ -180,7 +180,8 @@ var res = await sdk.ExhibitorContent.UpdateExhibitorFileAsync(req);
| Error Type | Status Code | Content Type |
| -------------------------------------- | -------------------------------------- | -------------------------------------- |
-| Cvent.SDK.Models.Errors.ErrorResponse1 | 400, 401, 403, 404, 422, 429 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponse2 | 422 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponse1 | 400, 401, 403, 404, 429 | application/json |
| Cvent.SDK.Models.Errors.APIException | 4XX, 5XX | \*/\* |
## DisassociateExhibitorFile
@@ -314,7 +315,7 @@ CreateExhibitorWeblinkRequest req = new CreateExhibitorWeblinkRequest() {
Id = "3db28cfc-db22-11eb-8d19-0242ac130003",
ExhibitorId = "4888db54-db22-11eb-8d19-0242ac130003",
Weblink = new Weblink() {
- Event = new Event21() {
+ Event = new Event3() {
Id = "3db28cfc-db22-11eb-8d19-0242ac130003",
},
Exhibitor = new Cvent.SDK.Models.Components.Exhibitor() {
@@ -345,7 +346,8 @@ var res = await sdk.ExhibitorContent.CreateExhibitorWeblinkAsync(req);
| Error Type | Status Code | Content Type |
| -------------------------------------- | -------------------------------------- | -------------------------------------- |
-| Cvent.SDK.Models.Errors.ErrorResponse1 | 400, 401, 403, 404, 422, 429 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponse2 | 422 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponse1 | 400, 401, 403, 404, 429 | application/json |
| Cvent.SDK.Models.Errors.APIException | 4XX, 5XX | \*/\* |
## GetExhibitorWeblink
@@ -429,7 +431,7 @@ UpdateExhibitorWeblinkRequest req = new UpdateExhibitorWeblinkRequest() {
ExhibitorId = "4888db54-db22-11eb-8d19-0242ac130003",
WeblinkId = "4d44b9e4-8c1a-403d-a20a-0b981f539935",
Weblink = new Weblink() {
- Event = new Event21() {
+ Event = new Event3() {
Id = "3db28cfc-db22-11eb-8d19-0242ac130003",
},
Exhibitor = new Cvent.SDK.Models.Components.Exhibitor() {
@@ -460,7 +462,8 @@ var res = await sdk.ExhibitorContent.UpdateExhibitorWeblinkAsync(req);
| Error Type | Status Code | Content Type |
| -------------------------------------- | -------------------------------------- | -------------------------------------- |
-| Cvent.SDK.Models.Errors.ErrorResponse1 | 400, 401, 403, 404, 422, 429 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponse2 | 422 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponse1 | 400, 401, 403, 404, 429 | application/json |
| Cvent.SDK.Models.Errors.APIException | 4XX, 5XX | \*/\* |
## DeleteExhibitorWeblink
diff --git a/packages/csharp/docs/sdks/exhibitorteam/README.md b/packages/csharp/docs/sdks/exhibitorteam/README.md
index c4154102..dc21b4a0 100644
--- a/packages/csharp/docs/sdks/exhibitorteam/README.md
+++ b/packages/csharp/docs/sdks/exhibitorteam/README.md
@@ -331,10 +331,10 @@ AssociateBoothStaffRequest req = new AssociateBoothStaffRequest() {
Id = "3db28cfc-db22-11eb-8d19-0242ac130003",
ExhibitorId = "4888db54-db22-11eb-8d19-0242ac130003",
BoothStaffRequest = new BoothStaffRequest() {
- Attendee = new Attendee11() {
+ Attendee = new Attendee12() {
Id = "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3",
},
- Event = new Event21() {
+ Event = new Event3() {
Id = "3db28cfc-db22-11eb-8d19-0242ac130003",
},
Exhibitor = new Cvent.SDK.Models.Components.Exhibitor() {
diff --git a/packages/csharp/docs/sdks/housing/README.md b/packages/csharp/docs/sdks/housing/README.md
index 5cd33aad..ff2cb3a2 100644
--- a/packages/csharp/docs/sdks/housing/README.md
+++ b/packages/csharp/docs/sdks/housing/README.md
@@ -790,7 +790,7 @@ UpdateReservationRequestRequest req = new UpdateReservationRequestRequest() {
Email = "guest@cvent.com",
HomePhone = "(231)-213-1222",
WorkPhone = "(231)-213-1222",
- HomeAddress = new AddressJson2() {
+ HomeAddress = new AddressJson() {
Address1 = "West St. 1",
Address2 = "Apt. 16",
City = "Austin",
@@ -802,7 +802,7 @@ UpdateReservationRequestRequest req = new UpdateReservationRequestRequest() {
},
PaymentInfo = new PaymentInfoJson() {
FullName = "Gustav Schultz",
- Address = new AddressJson2() {
+ Address = new AddressJson() {
Address1 = "West St. 1",
Address2 = "Apt. 16",
City = "Austin",
@@ -875,7 +875,8 @@ var res = await sdk.Housing.UpdateReservationRequestAsync(req);
| Error Type | Status Code | Content Type |
| -------------------------------------- | -------------------------------------- | -------------------------------------- |
-| Cvent.SDK.Models.Errors.ErrorResponse1 | 400, 401, 403, 404, 429 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponse2 | 400 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponse1 | 401, 403, 404, 429 | application/json |
| Cvent.SDK.Models.Errors.APIException | 4XX, 5XX | \*/\* |
## CancelReservationRequest
@@ -922,7 +923,8 @@ var res = await sdk.Housing.CancelReservationRequestAsync(req);
| Error Type | Status Code | Content Type |
| -------------------------------------- | -------------------------------------- | -------------------------------------- |
-| Cvent.SDK.Models.Errors.ErrorResponse1 | 400, 401, 403, 404, 429 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponse2 | 400 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponse1 | 401, 403, 404, 429 | application/json |
| Cvent.SDK.Models.Errors.APIException | 4XX, 5XX | \*/\* |
## LinkReservation
diff --git a/packages/csharp/docs/sdks/meetingrequest/README.md b/packages/csharp/docs/sdks/meetingrequest/README.md
index d1e24037..22acf9c6 100644
--- a/packages/csharp/docs/sdks/meetingrequest/README.md
+++ b/packages/csharp/docs/sdks/meetingrequest/README.md
@@ -168,7 +168,8 @@ var res = await sdk.MeetingRequest.GetMRFByIdAsync(req);
| Error Type | Status Code | Content Type |
| -------------------------------------- | -------------------------------------- | -------------------------------------- |
-| Cvent.SDK.Models.Errors.ErrorResponse1 | 401, 403, 404, 422, 429 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponse2 | 422 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponse1 | 401, 403, 404, 429 | application/json |
| Cvent.SDK.Models.Errors.APIException | 4XX, 5XX | \*/\* |
## CreateMeetingRequest
diff --git a/packages/csharp/docs/sdks/proposaldraft/README.md b/packages/csharp/docs/sdks/proposaldraft/README.md
index cf000fcf..9266acf1 100644
--- a/packages/csharp/docs/sdks/proposaldraft/README.md
+++ b/packages/csharp/docs/sdks/proposaldraft/README.md
@@ -93,8 +93,8 @@ ProposalRequest req = new ProposalRequest() {
FoodAndBeverageMinimum = 10D,
Notes = "Estimated cost includes taxes.",
},
- Contacts = new List() {
- new ContactJson1() {
+ Contacts = new List() {
+ new ContactJson() {
FirstName = "Saurabh",
LastName = "Sachdeva",
OrganizationWebsite = "www.cvent.com",
@@ -113,8 +113,8 @@ ProposalRequest req = new ProposalRequest() {
Notes = "Available between 8am - 5pm.",
},
},
- PlannerContacts = new List() {
- new ContactJson1() {
+ PlannerContacts = new List() {
+ new ContactJson() {
FirstName = "Saurabh",
LastName = "Sachdeva",
OrganizationWebsite = "www.cvent.com",
diff --git a/packages/csharp/docs/sdks/sessions/README.md b/packages/csharp/docs/sdks/sessions/README.md
index e828cf11..76253bac 100644
--- a/packages/csharp/docs/sdks/sessions/README.md
+++ b/packages/csharp/docs/sdks/sessions/README.md
@@ -573,7 +573,8 @@ var res = await sdk.Sessions.RelateProgramItemToSessionDocumentAsync(req);
| Error Type | Status Code | Content Type |
| -------------------------------------- | -------------------------------------- | -------------------------------------- |
-| Cvent.SDK.Models.Errors.ErrorResponse1 | 401, 403, 404, 409, 429 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponse2 | 409 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponse1 | 401, 403, 404, 429 | application/json |
| Cvent.SDK.Models.Errors.APIException | 4XX, 5XX | \*/\* |
## GetProgramItemSessionDocument
diff --git a/packages/csharp/docs/sdks/speakers/README.md b/packages/csharp/docs/sdks/speakers/README.md
index 6b4d0923..86a7b291 100644
--- a/packages/csharp/docs/sdks/speakers/README.md
+++ b/packages/csharp/docs/sdks/speakers/README.md
@@ -183,7 +183,8 @@ var res = await sdk.Speakers.CreateSessionProgramSpeakerAsync(req);
| Error Type | Status Code | Content Type |
| -------------------------------------- | -------------------------------------- | -------------------------------------- |
-| Cvent.SDK.Models.Errors.ErrorResponse1 | 401, 403, 404, 409, 429 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponse2 | 409 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponse1 | 401, 403, 404, 429 | application/json |
| Cvent.SDK.Models.Errors.APIException | 4XX, 5XX | \*/\* |
## GetSessionProgramSpeaker
@@ -362,7 +363,7 @@ var sdk = new CventSDK(security: new Security() {
},
});
-SpeakerCategory req = new SpeakerCategory() {
+SpeakerCategory2 req = new SpeakerCategory2() {
Name = "Presenters",
};
@@ -373,9 +374,9 @@ var res = await sdk.Speakers.AddSpeakerCategoryAsync(req);
### Parameters
-| Parameter | Type | Required | Description |
-| ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- |
-| `request` | [SpeakerCategory](../../Models/Components/SpeakerCategory.md) | :heavy_check_mark: | The request object to use for the request. |
+| Parameter | Type | Required | Description |
+| --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- |
+| `request` | [SpeakerCategory2](../../Models/Components/SpeakerCategory2.md) | :heavy_check_mark: | The request object to use for the request. |
### Response
@@ -479,18 +480,18 @@ Speaker req = new Speaker() {
Designation = "PhD",
Company = "Cvent",
Title = "Lead Engineer",
- Category = new CategoryIdNameJson() {
+ Category = new SpeakerCategory1() {
Id = "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3",
Name = "Presenters",
},
- Links = new ContactLinksJsonInput() {
- TwitterUrl = new LinkJson() {
+ Links = new ContactLinksInput() {
+ TwitterUrl = new Link() {
Href = "?token=90c5f062-76ad-4ea4-aa53-00eb698d9262",
},
- FacebookUrl = new LinkJson() {
+ FacebookUrl = new Link() {
Href = "?token=90c5f062-76ad-4ea4-aa53-00eb698d9262",
},
- LinkedInUrl = new LinkJson() {
+ LinkedInUrl = new Link() {
Href = "?token=90c5f062-76ad-4ea4-aa53-00eb698d9262",
},
},
@@ -619,18 +620,18 @@ UpdateSpeakerRequest req = new UpdateSpeakerRequest() {
Designation = "PhD",
Company = "Cvent",
Title = "Lead Engineer",
- Category = new CategoryIdNameJson() {
+ Category = new SpeakerCategory1() {
Id = "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3",
Name = "Presenters",
},
- Links = new ContactLinksJsonInput() {
- TwitterUrl = new LinkJson() {
+ Links = new ContactLinksInput() {
+ TwitterUrl = new Link() {
Href = "?token=90c5f062-76ad-4ea4-aa53-00eb698d9262",
},
- FacebookUrl = new LinkJson() {
+ FacebookUrl = new Link() {
Href = "?token=90c5f062-76ad-4ea4-aa53-00eb698d9262",
},
- LinkedInUrl = new LinkJson() {
+ LinkedInUrl = new Link() {
Href = "?token=90c5f062-76ad-4ea4-aa53-00eb698d9262",
},
},
diff --git a/packages/csharp/docs/sdks/userscim/README.md b/packages/csharp/docs/sdks/userscim/README.md
index ef2eea91..faa48529 100644
--- a/packages/csharp/docs/sdks/userscim/README.md
+++ b/packages/csharp/docs/sdks/userscim/README.md
@@ -63,7 +63,7 @@ var res = await sdk.UserSCIM.GetUserGroupsAsync(req);
| Error Type | Status Code | Content Type |
| ------------------------------------------- | ------------------------------------------- | ------------------------------------------- |
-| Cvent.SDK.Models.Errors.ErrorResponseJson17 | 400, 401, 403, 429 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponseJson12 | 400, 401, 403, 429 | application/json |
| Cvent.SDK.Models.Errors.APIException | 4XX, 5XX | \*/\* |
## GetResourceTypes
@@ -102,7 +102,7 @@ var res = await sdk.UserSCIM.GetResourceTypesAsync();
| Error Type | Status Code | Content Type |
| ------------------------------------------- | ------------------------------------------- | ------------------------------------------- |
-| Cvent.SDK.Models.Errors.ErrorResponseJson17 | 401, 403, 429 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponseJson12 | 401, 403, 429 | application/json |
| Cvent.SDK.Models.Errors.APIException | 4XX, 5XX | \*/\* |
## GetResourceType
@@ -152,7 +152,7 @@ var res = await sdk.UserSCIM.GetResourceTypeAsync(req);
| Error Type | Status Code | Content Type |
| ------------------------------------------- | ------------------------------------------- | ------------------------------------------- |
-| Cvent.SDK.Models.Errors.ErrorResponseJson17 | 400, 401, 403, 404, 429 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponseJson12 | 400, 401, 403, 404, 429 | application/json |
| Cvent.SDK.Models.Errors.APIException | 4XX, 5XX | \*/\* |
## GetSchemas
@@ -191,7 +191,7 @@ var res = await sdk.UserSCIM.GetSchemasAsync();
| Error Type | Status Code | Content Type |
| ------------------------------------------- | ------------------------------------------- | ------------------------------------------- |
-| Cvent.SDK.Models.Errors.ErrorResponseJson17 | 401, 403, 429 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponseJson12 | 401, 403, 429 | application/json |
| Cvent.SDK.Models.Errors.APIException | 4XX, 5XX | \*/\* |
## GetSchema
@@ -241,7 +241,7 @@ var res = await sdk.UserSCIM.GetSchemaAsync(req);
| Error Type | Status Code | Content Type |
| ------------------------------------------- | ------------------------------------------- | ------------------------------------------- |
-| Cvent.SDK.Models.Errors.ErrorResponseJson17 | 400, 401, 403, 404, 429 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponseJson12 | 400, 401, 403, 404, 429 | application/json |
| Cvent.SDK.Models.Errors.APIException | 4XX, 5XX | \*/\* |
## GetServiceProviderConfig
@@ -280,7 +280,7 @@ var res = await sdk.UserSCIM.GetServiceProviderConfigAsync();
| Error Type | Status Code | Content Type |
| ------------------------------------------- | ------------------------------------------- | ------------------------------------------- |
-| Cvent.SDK.Models.Errors.ErrorResponseJson17 | 401, 403, 429 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponseJson12 | 401, 403, 429 | application/json |
| Cvent.SDK.Models.Errors.APIException | 4XX, 5XX | \*/\* |
## CreateUser
@@ -323,9 +323,9 @@ UserInput req = new UserInput() {
Value = "+911234567890",
},
},
- Addresses = new List() {
- new AddressJson4() {
- Type = AddressTypeJson1.Work,
+ Addresses = new List() {
+ new AddressJson2() {
+ Type = AddressTypeJson.Work,
StreetAddress = "100 Universal City Plaza",
Locality = "Hollywood",
Region = "CA",
@@ -365,7 +365,7 @@ var res = await sdk.UserSCIM.CreateUserAsync(req);
| Error Type | Status Code | Content Type |
| ------------------------------------------- | ------------------------------------------- | ------------------------------------------- |
-| Cvent.SDK.Models.Errors.ErrorResponseJson17 | 400, 401, 403, 409, 429 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponseJson12 | 400, 401, 403, 409, 429 | application/json |
| Cvent.SDK.Models.Errors.APIException | 4XX, 5XX | \*/\* |
## ListUsers
@@ -415,7 +415,7 @@ var res = await sdk.UserSCIM.ListUsersAsync(req);
| Error Type | Status Code | Content Type |
| ------------------------------------------- | ------------------------------------------- | ------------------------------------------- |
-| Cvent.SDK.Models.Errors.ErrorResponseJson17 | 400, 401, 403, 429 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponseJson12 | 400, 401, 403, 429 | application/json |
| Cvent.SDK.Models.Errors.APIException | 4XX, 5XX | \*/\* |
## GetUser
@@ -465,7 +465,7 @@ var res = await sdk.UserSCIM.GetUserAsync(req);
| Error Type | Status Code | Content Type |
| ------------------------------------------- | ------------------------------------------- | ------------------------------------------- |
-| Cvent.SDK.Models.Errors.ErrorResponseJson17 | 400, 401, 403, 404, 429 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponseJson12 | 400, 401, 403, 404, 429 | application/json |
| Cvent.SDK.Models.Errors.APIException | 4XX, 5XX | \*/\* |
## UpdateUser
@@ -511,9 +511,9 @@ UpdateUserRequest req = new UpdateUserRequest() {
Value = "+911234567890",
},
},
- Addresses = new List() {
- new AddressJson4() {
- Type = AddressTypeJson1.Work,
+ Addresses = new List() {
+ new AddressJson2() {
+ Type = AddressTypeJson.Work,
StreetAddress = "100 Universal City Plaza",
Locality = "Hollywood",
Region = "CA",
@@ -559,7 +559,7 @@ var res = await sdk.UserSCIM.UpdateUserAsync(req);
| Error Type | Status Code | Content Type |
| ------------------------------------------- | ------------------------------------------- | ------------------------------------------- |
-| Cvent.SDK.Models.Errors.ErrorResponseJson17 | 400, 401, 403, 404, 429 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponseJson12 | 400, 401, 403, 404, 429 | application/json |
| Cvent.SDK.Models.Errors.APIException | 4XX, 5XX | \*/\* |
## DeleteUser
@@ -609,5 +609,5 @@ var res = await sdk.UserSCIM.DeleteUserAsync(req);
| Error Type | Status Code | Content Type |
| ------------------------------------------- | ------------------------------------------- | ------------------------------------------- |
-| Cvent.SDK.Models.Errors.ErrorResponseJson17 | 401, 403, 404, 429 | application/json |
+| Cvent.SDK.Models.Errors.ErrorResponseJson12 | 401, 403, 404, 429 | application/json |
| Cvent.SDK.Models.Errors.APIException | 4XX, 5XX | \*/\* |
\ No newline at end of file
diff --git a/packages/csharp/docs/sdks/video/README.md b/packages/csharp/docs/sdks/video/README.md
index 1d79940f..73dc74bd 100644
--- a/packages/csharp/docs/sdks/video/README.md
+++ b/packages/csharp/docs/sdks/video/README.md
@@ -248,13 +248,13 @@ var sdk = new CventSDK(security: new Security() {
CreateTextTrackRequest req = new CreateTextTrackRequest() {
VideoId = "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3",
VideoTextTrack = new VideoTextTrack() {
- Video = new VideoAssetIdJson() {
+ Video = new VideoAssetID() {
Id = "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3",
},
Label = "English",
Language = "en-US",
- Kind = VideoTextTrackKindJson.Subtitles,
- Status = VideoTextTrackStatusJson.Started,
+ Kind = VideoTextTrackKind.Subtitles,
+ Status = VideoTextTrackStatus.Started,
},
};
@@ -354,13 +354,13 @@ UpdateTextTrackRequest req = new UpdateTextTrackRequest() {
VideoId = "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3",
TextTrackId = "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3",
ExistingVideoTextTrack = new ExistingVideoTextTrackInput() {
- Video = new VideoAssetIdJson() {
+ Video = new VideoAssetID() {
Id = "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3",
},
Label = "English",
Language = "en-US",
- Kind = VideoTextTrackKindJson.Subtitles,
- Status = VideoTextTrackStatusJson.Started,
+ Kind = VideoTextTrackKind.Subtitles,
+ Status = VideoTextTrackStatus.Started,
ErrorMessage = "Input file was empty",
},
};
diff --git a/packages/csharp/src/Cvent/SDK/Appointments.cs b/packages/csharp/src/Cvent/SDK/Appointments.cs
index 2dea1460..b7690e31 100644
--- a/packages/csharp/src/Cvent/SDK/Appointments.cs
+++ b/packages/csharp/src/Cvent/SDK/Appointments.cs
@@ -212,7 +212,8 @@ public Task ListAppointmentTypesAsync(
/// The required parameter is null.
/// The HTTP request failed due to network issues.
/// The response body could not be deserialized.
- /// Bad request. Thrown when the API returns a 400, 401, 403, 404, 422 or 429 response.
+ /// Was not able to process the request. Thrown when the API returns a 422 response.
+ /// Bad request. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
/// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
public Task CreateAppointmentAsync(
Models.Requests.CreateAppointmentRequest request,
@@ -232,7 +233,8 @@ public Task CreateAppointmentAsync(
/// The required parameter is null.
/// The HTTP request failed due to network issues.
/// The response body could not be deserialized.
- /// Bad request. Thrown when the API returns a 400, 401, 403, 404, 422 or 429 response.
+ /// Was not able to process the request. Thrown when the API returns a 422 response.
+ /// Bad request. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
/// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
public Task UpdateAppointmentAsync(
Models.Requests.UpdateAppointmentRequest request,
@@ -1879,7 +1881,8 @@ public async Task ListAppointmentTypesAsync(
/// The required parameter is null.
/// The HTTP request failed due to network issues.
/// The response body could not be deserialized.
- /// Bad request. Thrown when the API returns a 400, 401, 403, 404, 422 or 429 response.
+ /// Was not able to process the request. Thrown when the API returns a 422 response.
+ /// Bad request. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
/// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
public async Task CreateAppointmentAsync(
Models.Requests.CreateAppointmentRequest request,
@@ -2007,7 +2010,27 @@ public async Task CreateAppointmentAsync(
throw new Models.Errors.APIException("Unknown content type received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
}
- else if (new List { 400, 401, 403, 404, 422, 429 }.Contains(responseStatusCode))
+ else if (responseStatusCode == 422)
+ {
+ if (Utilities.IsContentTypeMatch("application/json", contentType))
+ {
+ var httpResponseBody = await httpResponse.Content.ReadAsStringAsync();
+ Models.Errors.ErrorResponse2Payload payload;
+ try
+ {
+ payload = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
+ }
+ catch (Exception ex)
+ {
+ throw new ResponseValidationException("Failed to deserialize response body into Models.Errors.ErrorResponse2Payload.", httpRequest, httpResponse, httpResponseBody, ex);
+ }
+
+ throw new Models.Errors.ErrorResponse2(payload, httpRequest, httpResponse, httpResponseBody);
+ }
+
+ throw new Models.Errors.APIException("Unknown content type received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
+ }
+ else if (new List { 400, 401, 403, 404, 429 }.Contains(responseStatusCode))
{
if (Utilities.IsContentTypeMatch("application/json", contentType))
{
@@ -2052,7 +2075,8 @@ public async Task CreateAppointmentAsync(
/// The required parameter is null.
/// The HTTP request failed due to network issues.
/// The response body could not be deserialized.
- /// Bad request. Thrown when the API returns a 400, 401, 403, 404, 422 or 429 response.
+ /// Was not able to process the request. Thrown when the API returns a 422 response.
+ /// Bad request. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
/// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
public async Task UpdateAppointmentAsync(
Models.Requests.UpdateAppointmentRequest request,
@@ -2180,7 +2204,27 @@ public async Task UpdateAppointmentAsync(
throw new Models.Errors.APIException("Unknown content type received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
}
- else if (new List { 400, 401, 403, 404, 422, 429 }.Contains(responseStatusCode))
+ else if (responseStatusCode == 422)
+ {
+ if (Utilities.IsContentTypeMatch("application/json", contentType))
+ {
+ var httpResponseBody = await httpResponse.Content.ReadAsStringAsync();
+ Models.Errors.ErrorResponse2Payload payload;
+ try
+ {
+ payload = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
+ }
+ catch (Exception ex)
+ {
+ throw new ResponseValidationException("Failed to deserialize response body into Models.Errors.ErrorResponse2Payload.", httpRequest, httpResponse, httpResponseBody, ex);
+ }
+
+ throw new Models.Errors.ErrorResponse2(payload, httpRequest, httpResponse, httpResponseBody);
+ }
+
+ throw new Models.Errors.APIException("Unknown content type received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
+ }
+ else if (new List { 400, 401, 403, 404, 429 }.Contains(responseStatusCode))
{
if (Utilities.IsContentTypeMatch("application/json", contentType))
{
diff --git a/packages/csharp/src/Cvent/SDK/Attendees.cs b/packages/csharp/src/Cvent/SDK/Attendees.cs
index dc985cbe..915c87d7 100644
--- a/packages/csharp/src/Cvent/SDK/Attendees.cs
+++ b/packages/csharp/src/Cvent/SDK/Attendees.cs
@@ -1198,14 +1198,14 @@ public async Task GetAttendeeByIdAsync(
if (Utilities.IsContentTypeMatch("application/json", contentType))
{
var httpResponseBody = await httpResponse.Content.ReadAsStringAsync();
- Attendee1 obj;
+ Attendee11 obj;
try
{
- obj = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
+ obj = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
}
catch (Exception ex)
{
- throw new ResponseValidationException("Failed to deserialize response body into Attendee1.", httpRequest, httpResponse, httpResponseBody, ex);
+ throw new ResponseValidationException("Failed to deserialize response body into Attendee11.", httpRequest, httpResponse, httpResponseBody, ex);
}
var response = new GetAttendeeByIdResponse() {
@@ -1214,7 +1214,7 @@ public async Task GetAttendeeByIdAsync(
Request = httpRequest
}
};
- response.Attendee = obj;
+ response.Attendee1 = obj;
return response;
}
@@ -1371,14 +1371,14 @@ public async Task UpdateAttendeeAsync(
if (Utilities.IsContentTypeMatch("application/json", contentType))
{
var httpResponseBody = await httpResponse.Content.ReadAsStringAsync();
- Attendee1 obj;
+ Attendee11 obj;
try
{
- obj = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
+ obj = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
}
catch (Exception ex)
{
- throw new ResponseValidationException("Failed to deserialize response body into Attendee1.", httpRequest, httpResponse, httpResponseBody, ex);
+ throw new ResponseValidationException("Failed to deserialize response body into Attendee11.", httpRequest, httpResponse, httpResponseBody, ex);
}
var response = new UpdateAttendeeResponse() {
@@ -1387,7 +1387,7 @@ public async Task UpdateAttendeeAsync(
Request = httpRequest
}
};
- response.Attendee = obj;
+ response.Attendee1 = obj;
return response;
}
diff --git a/packages/csharp/src/Cvent/SDK/AudienceSegments.cs b/packages/csharp/src/Cvent/SDK/AudienceSegments.cs
index e5088921..0e84b8b7 100644
--- a/packages/csharp/src/Cvent/SDK/AudienceSegments.cs
+++ b/packages/csharp/src/Cvent/SDK/AudienceSegments.cs
@@ -107,7 +107,8 @@ public Task ListAssociatedAudienceSegmen
/// The HTTP request failed due to network issues.
/// The response body could not be deserialized.
/// Bad Request. Thrown when the API returns a 400 response.
- /// Bad or expired token. Thrown when the API returns a 401, 403, 422 or 429 response.
+ /// Was not able to process the request. Thrown when the API returns a 422 response.
+ /// Bad or expired token. Thrown when the API returns a 401, 403 or 429 response.
/// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
public Task CreateAudienceSegmentAsync(
AudienceSegmentCreate request,
@@ -194,7 +195,8 @@ public Task GetAudienceSegmentByIdAsync(
/// The required parameter is null.
/// The HTTP request failed due to network issues.
/// The response body could not be deserialized.
- /// Bad request. Thrown when the API returns a 400, 401, 403, 404, 422 or 429 response.
+ /// Was not able to process the request. Thrown when the API returns a 422 response.
+ /// Bad request. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
/// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
public Task UpdateAudienceSegmentAsync(
UpdateAudienceSegmentRequest request,
@@ -255,7 +257,8 @@ public Task ListSegmentAssociatedAttende
/// The HTTP request failed due to network issues.
/// The response body could not be deserialized.
/// Bad Request. Thrown when the API returns a 400 response.
- /// Bad or expired token. Thrown when the API returns a 401, 403, 404, 422 or 429 response.
+ /// Was not able to process the request. Thrown when the API returns a 422 response.
+ /// Bad or expired token. Thrown when the API returns a 401, 403, 404 or 429 response.
/// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
public Task AssociateAttendeeToSegmentAsync(
AssociateAttendeeToSegmentRequest request,
@@ -868,7 +871,8 @@ public async Task ListAssociatedAudience
/// The HTTP request failed due to network issues.
/// The response body could not be deserialized.
/// Bad Request. Thrown when the API returns a 400 response.
- /// Bad or expired token. Thrown when the API returns a 401, 403, 422 or 429 response.
+ /// Was not able to process the request. Thrown when the API returns a 422 response.
+ /// Bad or expired token. Thrown when the API returns a 401, 403 or 429 response.
/// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
public async Task CreateAudienceSegmentAsync(
AudienceSegmentCreate request,
@@ -1016,7 +1020,27 @@ public async Task CreateAudienceSegmentAsync(
throw new Models.Errors.APIException("Unknown content type received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
}
- else if (new List { 401, 403, 422, 429 }.Contains(responseStatusCode))
+ else if (responseStatusCode == 422)
+ {
+ if (Utilities.IsContentTypeMatch("application/json", contentType))
+ {
+ var httpResponseBody = await httpResponse.Content.ReadAsStringAsync();
+ Models.Errors.ErrorResponse2Payload payload;
+ try
+ {
+ payload = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
+ }
+ catch (Exception ex)
+ {
+ throw new ResponseValidationException("Failed to deserialize response body into Models.Errors.ErrorResponse2Payload.", httpRequest, httpResponse, httpResponseBody, ex);
+ }
+
+ throw new Models.Errors.ErrorResponse2(payload, httpRequest, httpResponse, httpResponseBody);
+ }
+
+ throw new Models.Errors.APIException("Unknown content type received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
+ }
+ else if (new List { 401, 403, 429 }.Contains(responseStatusCode))
{
if (Utilities.IsContentTypeMatch("application/json", contentType))
{
@@ -1641,7 +1665,8 @@ public async Task GetAudienceSegmentByIdAsync(
/// The required parameter is null.
/// The HTTP request failed due to network issues.
/// The response body could not be deserialized.
- /// Bad request. Thrown when the API returns a 400, 401, 403, 404, 422 or 429 response.
+ /// Was not able to process the request. Thrown when the API returns a 422 response.
+ /// Bad request. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
/// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
public async Task UpdateAudienceSegmentAsync(
UpdateAudienceSegmentRequest request,
@@ -1769,7 +1794,27 @@ public async Task UpdateAudienceSegmentAsync(
throw new Models.Errors.APIException("Unknown content type received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
}
- else if (new List { 400, 401, 403, 404, 422, 429 }.Contains(responseStatusCode))
+ else if (responseStatusCode == 422)
+ {
+ if (Utilities.IsContentTypeMatch("application/json", contentType))
+ {
+ var httpResponseBody = await httpResponse.Content.ReadAsStringAsync();
+ Models.Errors.ErrorResponse2Payload payload;
+ try
+ {
+ payload = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
+ }
+ catch (Exception ex)
+ {
+ throw new ResponseValidationException("Failed to deserialize response body into Models.Errors.ErrorResponse2Payload.", httpRequest, httpResponse, httpResponseBody, ex);
+ }
+
+ throw new Models.Errors.ErrorResponse2(payload, httpRequest, httpResponse, httpResponseBody);
+ }
+
+ throw new Models.Errors.APIException("Unknown content type received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
+ }
+ else if (new List { 400, 401, 403, 404, 429 }.Contains(responseStatusCode))
{
if (Utilities.IsContentTypeMatch("application/json", contentType))
{
@@ -2164,7 +2209,8 @@ public async Task ListSegmentAssociatedA
/// The HTTP request failed due to network issues.
/// The response body could not be deserialized.
/// Bad Request. Thrown when the API returns a 400 response.
- /// Bad or expired token. Thrown when the API returns a 401, 403, 404, 422 or 429 response.
+ /// Was not able to process the request. Thrown when the API returns a 422 response.
+ /// Bad or expired token. Thrown when the API returns a 401, 403, 404 or 429 response.
/// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
public async Task AssociateAttendeeToSegmentAsync(
AssociateAttendeeToSegmentRequest request,
@@ -2288,7 +2334,27 @@ public async Task AssociateAttendeeToSegment
throw new Models.Errors.APIException("Unknown content type received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
}
- else if (new List { 401, 403, 404, 422, 429 }.Contains(responseStatusCode))
+ else if (responseStatusCode == 422)
+ {
+ if (Utilities.IsContentTypeMatch("application/json", contentType))
+ {
+ var httpResponseBody = await httpResponse.Content.ReadAsStringAsync();
+ Models.Errors.ErrorResponse2Payload payload;
+ try
+ {
+ payload = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
+ }
+ catch (Exception ex)
+ {
+ throw new ResponseValidationException("Failed to deserialize response body into Models.Errors.ErrorResponse2Payload.", httpRequest, httpResponse, httpResponseBody, ex);
+ }
+
+ throw new Models.Errors.ErrorResponse2(payload, httpRequest, httpResponse, httpResponseBody);
+ }
+
+ throw new Models.Errors.APIException("Unknown content type received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
+ }
+ else if (new List { 401, 403, 404, 429 }.Contains(responseStatusCode))
{
if (Utilities.IsContentTypeMatch("application/json", contentType))
{
diff --git a/packages/csharp/src/Cvent/SDK/Bulk.cs b/packages/csharp/src/Cvent/SDK/Bulk.cs
index b5d873c3..0dab672d 100644
--- a/packages/csharp/src/Cvent/SDK/Bulk.cs
+++ b/packages/csharp/src/Cvent/SDK/Bulk.cs
@@ -61,8 +61,8 @@ public interface IBulk
/// The required parameter is null.
/// The HTTP request failed due to network issues.
/// The response body could not be deserialized.
- /// Exceeded limit for number of concurrently running bulk jobs. Thrown when the API returns a 409 response.
- /// Bad request. Thrown when the API returns a 400, 401, 403 or 429 response.
+ /// Exceeded limit for number of concurrently running bulk jobs. Thrown when the API returns a 409 response.
+ /// Bad request. Thrown when the API returns a 400, 401, 403 or 429 response.
/// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
public Task CreateBulkJobAsync(
BulkJobWithDataInput request,
@@ -81,7 +81,7 @@ public Task CreateBulkJobAsync(
/// The required parameter is null.
/// The HTTP request failed due to network issues.
/// The response body could not be deserialized.
- /// Bad request. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
+ /// Bad request. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
/// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
public Task GetBulkJobByIdAsync(
GetBulkJobByIdRequest request,
@@ -100,7 +100,7 @@ public Task GetBulkJobByIdAsync(
/// The required parameter is null.
/// The HTTP request failed due to network issues.
/// The response body could not be deserialized.
- /// Bad request. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
+ /// Bad request. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
/// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
public Task CancelBulkJobAsync(
CancelBulkJobRequest request,
@@ -124,8 +124,8 @@ public Task CancelBulkJobAsync(
/// The required parameter is null.
/// The HTTP request failed due to network issues.
/// The response body could not be deserialized.
- /// Exceeded limit for number of job data records. Thrown when the API returns a 409 response.
- /// Bad request. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
+ /// Exceeded limit for number of job data records. Thrown when the API returns a 409 response.
+ /// Bad request. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
/// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
public Task UploadBulkJobDataAsync(
UploadBulkJobDataRequest request,
@@ -144,7 +144,7 @@ public Task UploadBulkJobDataAsync(
/// The required parameter is null.
/// The HTTP request failed due to network issues.
/// The response body could not be deserialized.
- /// Bad request. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
+ /// Bad request. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
/// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
public Task ListBulkJobResultAsync(
ListBulkJobResultRequest request,
@@ -165,8 +165,8 @@ public Task ListBulkJobResultAsync(
/// The required parameter is null.
/// The HTTP request failed due to network issues.
/// The response body could not be deserialized.
- /// Exceeded limit for number of concurrently running bulk jobs. Thrown when the API returns a 409 response.
- /// Bad request. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
+ /// Exceeded limit for number of concurrently running bulk jobs. Thrown when the API returns a 409 response.
+ /// Bad request. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
/// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
public Task RunBulkJobAsync(RunBulkJobRequest request, RetryConfig? retryConfig = null);
}
@@ -219,8 +219,8 @@ public Bulk(SDKConfig config)
/// The required parameter is null.
/// The HTTP request failed due to network issues.
/// The response body could not be deserialized.
- /// Exceeded limit for number of concurrently running bulk jobs. Thrown when the API returns a 409 response.
- /// Bad request. Thrown when the API returns a 400, 401, 403 or 429 response.
+ /// Exceeded limit for number of concurrently running bulk jobs. Thrown when the API returns a 409 response.
+ /// Bad request. Thrown when the API returns a 400, 401, 403 or 429 response.
/// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
public async Task CreateBulkJobAsync(
BulkJobWithDataInput request,
@@ -353,17 +353,17 @@ public async Task CreateBulkJobAsync(
if (Utilities.IsContentTypeMatch("application/json", contentType))
{
var httpResponseBody = await httpResponse.Content.ReadAsStringAsync();
- Models.Errors.ErrorResponse1Payload payload;
+ Models.Errors.ErrorResponse2Payload payload;
try
{
- payload = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
+ payload = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
}
catch (Exception ex)
{
- throw new ResponseValidationException("Failed to deserialize response body into Models.Errors.ErrorResponse1Payload.", httpRequest, httpResponse, httpResponseBody, ex);
+ throw new ResponseValidationException("Failed to deserialize response body into Models.Errors.ErrorResponse2Payload.", httpRequest, httpResponse, httpResponseBody, ex);
}
- throw new Models.Errors.ErrorResponse1(payload, httpRequest, httpResponse, httpResponseBody);
+ throw new Models.Errors.ErrorResponse2(payload, httpRequest, httpResponse, httpResponseBody);
}
throw new Models.Errors.APIException("Unknown content type received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
@@ -373,17 +373,17 @@ public async Task CreateBulkJobAsync(
if (Utilities.IsContentTypeMatch("application/json", contentType))
{
var httpResponseBody = await httpResponse.Content.ReadAsStringAsync();
- Models.Errors.ErrorResponse2Payload payload;
+ Models.Errors.ErrorResponse1Payload payload;
try
{
- payload = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
+ payload = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
}
catch (Exception ex)
{
- throw new ResponseValidationException("Failed to deserialize response body into Models.Errors.ErrorResponse2Payload.", httpRequest, httpResponse, httpResponseBody, ex);
+ throw new ResponseValidationException("Failed to deserialize response body into Models.Errors.ErrorResponse1Payload.", httpRequest, httpResponse, httpResponseBody, ex);
}
- throw new Models.Errors.ErrorResponse2(payload, httpRequest, httpResponse, httpResponseBody);
+ throw new Models.Errors.ErrorResponse1(payload, httpRequest, httpResponse, httpResponseBody);
}
throw new Models.Errors.APIException("Unknown content type received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
@@ -412,7 +412,7 @@ public async Task CreateBulkJobAsync(
/// The required parameter is null.
/// The HTTP request failed due to network issues.
/// The response body could not be deserialized.
- /// Bad request. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
+ /// Bad request. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
/// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
public async Task GetBulkJobByIdAsync(
GetBulkJobByIdRequest request,
@@ -539,17 +539,17 @@ public async Task GetBulkJobByIdAsync(
if (Utilities.IsContentTypeMatch("application/json", contentType))
{
var httpResponseBody = await httpResponse.Content.ReadAsStringAsync();
- Models.Errors.ErrorResponse2Payload payload;
+ Models.Errors.ErrorResponse1Payload payload;
try
{
- payload = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
+ payload = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
}
catch (Exception ex)
{
- throw new ResponseValidationException("Failed to deserialize response body into Models.Errors.ErrorResponse2Payload.", httpRequest, httpResponse, httpResponseBody, ex);
+ throw new ResponseValidationException("Failed to deserialize response body into Models.Errors.ErrorResponse1Payload.", httpRequest, httpResponse, httpResponseBody, ex);
}
- throw new Models.Errors.ErrorResponse2(payload, httpRequest, httpResponse, httpResponseBody);
+ throw new Models.Errors.ErrorResponse1(payload, httpRequest, httpResponse, httpResponseBody);
}
throw new Models.Errors.APIException("Unknown content type received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
@@ -578,7 +578,7 @@ public async Task GetBulkJobByIdAsync(
/// The required parameter is null.
/// The HTTP request failed due to network issues.
/// The response body could not be deserialized.
- /// Bad request. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
+ /// Bad request. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
/// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
public async Task CancelBulkJobAsync(
CancelBulkJobRequest request,
@@ -705,17 +705,17 @@ public async Task CancelBulkJobAsync(
if (Utilities.IsContentTypeMatch("application/json", contentType))
{
var httpResponseBody = await httpResponse.Content.ReadAsStringAsync();
- Models.Errors.ErrorResponse2Payload payload;
+ Models.Errors.ErrorResponse1Payload payload;
try
{
- payload = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
+ payload = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
}
catch (Exception ex)
{
- throw new ResponseValidationException("Failed to deserialize response body into Models.Errors.ErrorResponse2Payload.", httpRequest, httpResponse, httpResponseBody, ex);
+ throw new ResponseValidationException("Failed to deserialize response body into Models.Errors.ErrorResponse1Payload.", httpRequest, httpResponse, httpResponseBody, ex);
}
- throw new Models.Errors.ErrorResponse2(payload, httpRequest, httpResponse, httpResponseBody);
+ throw new Models.Errors.ErrorResponse1(payload, httpRequest, httpResponse, httpResponseBody);
}
throw new Models.Errors.APIException("Unknown content type received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
@@ -749,8 +749,8 @@ public async Task CancelBulkJobAsync(
/// The required parameter is null.
/// The HTTP request failed due to network issues.
/// The response body could not be deserialized.
- /// Exceeded limit for number of job data records. Thrown when the API returns a 409 response.
- /// Bad request. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
+ /// Exceeded limit for number of job data records. Thrown when the API returns a 409 response.
+ /// Bad request. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
/// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
public async Task UploadBulkJobDataAsync(
UploadBulkJobDataRequest request,
@@ -883,17 +883,17 @@ public async Task UploadBulkJobDataAsync(
if (Utilities.IsContentTypeMatch("application/json", contentType))
{
var httpResponseBody = await httpResponse.Content.ReadAsStringAsync();
- Models.Errors.ErrorResponse1Payload payload;
+ Models.Errors.ErrorResponse2Payload payload;
try
{
- payload = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
+ payload = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
}
catch (Exception ex)
{
- throw new ResponseValidationException("Failed to deserialize response body into Models.Errors.ErrorResponse1Payload.", httpRequest, httpResponse, httpResponseBody, ex);
+ throw new ResponseValidationException("Failed to deserialize response body into Models.Errors.ErrorResponse2Payload.", httpRequest, httpResponse, httpResponseBody, ex);
}
- throw new Models.Errors.ErrorResponse1(payload, httpRequest, httpResponse, httpResponseBody);
+ throw new Models.Errors.ErrorResponse2(payload, httpRequest, httpResponse, httpResponseBody);
}
throw new Models.Errors.APIException("Unknown content type received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
@@ -903,17 +903,17 @@ public async Task UploadBulkJobDataAsync(
if (Utilities.IsContentTypeMatch("application/json", contentType))
{
var httpResponseBody = await httpResponse.Content.ReadAsStringAsync();
- Models.Errors.ErrorResponse2Payload payload;
+ Models.Errors.ErrorResponse1Payload payload;
try
{
- payload = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
+ payload = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
}
catch (Exception ex)
{
- throw new ResponseValidationException("Failed to deserialize response body into Models.Errors.ErrorResponse2Payload.", httpRequest, httpResponse, httpResponseBody, ex);
+ throw new ResponseValidationException("Failed to deserialize response body into Models.Errors.ErrorResponse1Payload.", httpRequest, httpResponse, httpResponseBody, ex);
}
- throw new Models.Errors.ErrorResponse2(payload, httpRequest, httpResponse, httpResponseBody);
+ throw new Models.Errors.ErrorResponse1(payload, httpRequest, httpResponse, httpResponseBody);
}
throw new Models.Errors.APIException("Unknown content type received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
@@ -942,7 +942,7 @@ public async Task UploadBulkJobDataAsync(
/// The required parameter is null.
/// The HTTP request failed due to network issues.
/// The response body could not be deserialized.
- /// Bad request. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
+ /// Bad request. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
/// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
public async Task ListBulkJobResultAsync(
ListBulkJobResultRequest request,
@@ -1101,17 +1101,17 @@ public async Task ListBulkJobResultAsync(
if (Utilities.IsContentTypeMatch("application/json", contentType))
{
var httpResponseBody = await httpResponse.Content.ReadAsStringAsync();
- Models.Errors.ErrorResponse2Payload payload;
+ Models.Errors.ErrorResponse1Payload payload;
try
{
- payload = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
+ payload = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
}
catch (Exception ex)
{
- throw new ResponseValidationException("Failed to deserialize response body into Models.Errors.ErrorResponse2Payload.", httpRequest, httpResponse, httpResponseBody, ex);
+ throw new ResponseValidationException("Failed to deserialize response body into Models.Errors.ErrorResponse1Payload.", httpRequest, httpResponse, httpResponseBody, ex);
}
- throw new Models.Errors.ErrorResponse2(payload, httpRequest, httpResponse, httpResponseBody);
+ throw new Models.Errors.ErrorResponse1(payload, httpRequest, httpResponse, httpResponseBody);
}
throw new Models.Errors.APIException("Unknown content type received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
@@ -1142,8 +1142,8 @@ public async Task ListBulkJobResultAsync(
/// The required parameter is null.
/// The HTTP request failed due to network issues.
/// The response body could not be deserialized.
- /// Exceeded limit for number of concurrently running bulk jobs. Thrown when the API returns a 409 response.
- /// Bad request. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
+ /// Exceeded limit for number of concurrently running bulk jobs. Thrown when the API returns a 409 response.
+ /// Bad request. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
/// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
public async Task RunBulkJobAsync(
RunBulkJobRequest request,
@@ -1270,17 +1270,17 @@ public async Task RunBulkJobAsync(
if (Utilities.IsContentTypeMatch("application/json", contentType))
{
var httpResponseBody = await httpResponse.Content.ReadAsStringAsync();
- Models.Errors.ErrorResponse1Payload payload;
+ Models.Errors.ErrorResponse2Payload payload;
try
{
- payload = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
+ payload = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
}
catch (Exception ex)
{
- throw new ResponseValidationException("Failed to deserialize response body into Models.Errors.ErrorResponse1Payload.", httpRequest, httpResponse, httpResponseBody, ex);
+ throw new ResponseValidationException("Failed to deserialize response body into Models.Errors.ErrorResponse2Payload.", httpRequest, httpResponse, httpResponseBody, ex);
}
- throw new Models.Errors.ErrorResponse1(payload, httpRequest, httpResponse, httpResponseBody);
+ throw new Models.Errors.ErrorResponse2(payload, httpRequest, httpResponse, httpResponseBody);
}
throw new Models.Errors.APIException("Unknown content type received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
@@ -1290,17 +1290,17 @@ public async Task RunBulkJobAsync(
if (Utilities.IsContentTypeMatch("application/json", contentType))
{
var httpResponseBody = await httpResponse.Content.ReadAsStringAsync();
- Models.Errors.ErrorResponse2Payload payload;
+ Models.Errors.ErrorResponse1Payload payload;
try
{
- payload = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
+ payload = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
}
catch (Exception ex)
{
- throw new ResponseValidationException("Failed to deserialize response body into Models.Errors.ErrorResponse2Payload.", httpRequest, httpResponse, httpResponseBody, ex);
+ throw new ResponseValidationException("Failed to deserialize response body into Models.Errors.ErrorResponse1Payload.", httpRequest, httpResponse, httpResponseBody, ex);
}
- throw new Models.Errors.ErrorResponse2(payload, httpRequest, httpResponse, httpResponseBody);
+ throw new Models.Errors.ErrorResponse1(payload, httpRequest, httpResponse, httpResponseBody);
}
throw new Models.Errors.APIException("Unknown content type received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
diff --git a/packages/csharp/src/Cvent/SDK/Contacts.cs b/packages/csharp/src/Cvent/SDK/Contacts.cs
index 6f861977..4cbfce0e 100644
--- a/packages/csharp/src/Cvent/SDK/Contacts.cs
+++ b/packages/csharp/src/Cvent/SDK/Contacts.cs
@@ -2497,14 +2497,14 @@ public async Task UpdateContactsAsync(
if (Utilities.IsContentTypeMatch("application/json", contentType))
{
var httpResponseBody = await httpResponse.Content.ReadAsStringAsync();
- List obj;
+ List obj;
try
{
- obj = ResponseBodyDeserializer.DeserializeNotNull>(httpResponseBody, NullValueHandling.Ignore);
+ obj = ResponseBodyDeserializer.DeserializeNotNull>(httpResponseBody, NullValueHandling.Ignore);
}
catch (Exception ex)
{
- throw new ResponseValidationException("Failed to deserialize response body into List.", httpRequest, httpResponse, httpResponseBody, ex);
+ throw new ResponseValidationException("Failed to deserialize response body into List.", httpRequest, httpResponse, httpResponseBody, ex);
}
var response = new UpdateContactsResponse() {
@@ -2676,14 +2676,14 @@ public async Task PatchContactsAsync(
if (Utilities.IsContentTypeMatch("application/json", contentType))
{
var httpResponseBody = await httpResponse.Content.ReadAsStringAsync();
- List obj;
+ List obj;
try
{
- obj = ResponseBodyDeserializer.DeserializeNotNull>(httpResponseBody, NullValueHandling.Ignore);
+ obj = ResponseBodyDeserializer.DeserializeNotNull>(httpResponseBody, NullValueHandling.Ignore);
}
catch (Exception ex)
{
- throw new ResponseValidationException("Failed to deserialize response body into List.", httpRequest, httpResponse, httpResponseBody, ex);
+ throw new ResponseValidationException("Failed to deserialize response body into List.", httpRequest, httpResponse, httpResponseBody, ex);
}
var response = new PatchContactsResponse() {
@@ -2850,14 +2850,14 @@ public async Task CreateContactsAsync(
if (Utilities.IsContentTypeMatch("application/json", contentType))
{
var httpResponseBody = await httpResponse.Content.ReadAsStringAsync();
- List obj;
+ List obj;
try
{
- obj = ResponseBodyDeserializer.DeserializeNotNull>(httpResponseBody, NullValueHandling.Ignore);
+ obj = ResponseBodyDeserializer.DeserializeNotNull>(httpResponseBody, NullValueHandling.Ignore);
}
catch (Exception ex)
{
- throw new ResponseValidationException("Failed to deserialize response body into List.", httpRequest, httpResponse, httpResponseBody, ex);
+ throw new ResponseValidationException("Failed to deserialize response body into List.", httpRequest, httpResponse, httpResponseBody, ex);
}
var response = new CreateContactsResponse() {
diff --git a/packages/csharp/src/Cvent/SDK/Cvent.SDK.csproj b/packages/csharp/src/Cvent/SDK/Cvent.SDK.csproj
index be85551f..1e6df09f 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.4.0
+ 1.5.0
net8.0
Cvent
Copyright (c) Cvent 2026
diff --git a/packages/csharp/src/Cvent/SDK/Events.cs b/packages/csharp/src/Cvent/SDK/Events.cs
index 309a59f2..494f3c4f 100644
--- a/packages/csharp/src/Cvent/SDK/Events.cs
+++ b/packages/csharp/src/Cvent/SDK/Events.cs
@@ -800,6 +800,63 @@ public Task DisassociateEventUserGroupAsync(
RetryConfig? retryConfig = null
);
+ ///
+ /// List Event Vouchers.
+ ///
+ ///
+ /// Retrieves a paginated list of vouchers set up for a specific event.
+ ///
+ /// A parameter.
+ /// The retry configuration to use for this operation.
+ /// An awaitable task that returns a response envelope when completed.
+ /// The required parameter is null.
+ /// The HTTP request failed due to network issues.
+ /// The response body could not be deserialized.
+ /// Bad request. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
+ /// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
+ public Task ListEventVouchersAsync(
+ ListEventVouchersRequest request,
+ RetryConfig? retryConfig = null
+ );
+
+ ///
+ /// List Event Vouchers (Filter).
+ ///
+ ///
+ /// Retrieves a paginated list of vouchers configured for an event using a filter provided in the body of the request.
+ ///
+ /// A parameter.
+ /// The retry configuration to use for this operation.
+ /// An awaitable task that returns a response envelope when completed.
+ /// The required parameter is null.
+ /// The HTTP request failed due to network issues.
+ /// The response body could not be deserialized.
+ /// Bad request. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
+ /// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
+ public Task ListEventVouchersPostFilterAsync(
+ ListEventVouchersPostFilterRequest request,
+ RetryConfig? retryConfig = null
+ );
+
+ ///
+ /// List Voucher Attendees.
+ ///
+ ///
+ /// Retrieves a paginated list of attendees who have redeemed a specific voucher for the given event.
+ ///
+ /// A parameter.
+ /// The retry configuration to use for this operation.
+ /// An awaitable task that returns a response envelope when completed.
+ /// The required parameter is null.
+ /// The HTTP request failed due to network issues.
+ /// The response body could not be deserialized.
+ /// Bad request. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
+ /// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
+ public Task ListEventVoucherAttendeesAsync(
+ ListEventVoucherAttendeesRequest request,
+ RetryConfig? retryConfig = null
+ );
+
///
/// Update Quantity Item.
///
@@ -8435,6 +8492,608 @@ public async Task DisassociateEventUserGroup
throw new Models.Errors.APIException("Unknown status code received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
}
+ ///
+ /// List Event Vouchers.
+ ///
+ ///
+ /// Retrieves a paginated list of vouchers set up for a specific event.
+ ///
+ /// A parameter.
+ /// The retry configuration to use for this operation.
+ /// An awaitable task that returns a response envelope when completed.
+ /// The required parameter is null.
+ /// The HTTP request failed due to network issues.
+ /// The response body could not be deserialized.
+ /// Bad request. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
+ /// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
+ public async Task ListEventVouchersAsync(
+ ListEventVouchersRequest request,
+ RetryConfig? retryConfig = null
+ )
+ {
+ if (request == null) throw new ArgumentNullException(nameof(request));
+
+ string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
+ var urlString = URLBuilder.Build(baseUrl, "/events/{id}/vouchers", request, null);
+
+ var httpRequest = new HttpRequestMessage(HttpMethod.Get, urlString);
+ httpRequest.Headers.Add("user-agent", SDKConfiguration.UserAgent);
+
+ if (!httpRequest.Headers.Contains("Accept"))
+ {
+ httpRequest.Headers.Add("Accept", "application/json");
+ }
+
+ if (SDKConfiguration.SecuritySource != null)
+ {
+ httpRequest = new SecurityMetadata(SDKConfiguration.SecuritySource).Apply(httpRequest);
+ }
+
+ var hookCtx = new HookContext(SDKConfiguration, baseUrl, "listEventVouchers", new List { "event/vouchers:read" }, SDKConfiguration.SecuritySource);
+
+ httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
+ if (retryConfig == null)
+ {
+ if (this.SDKConfiguration.RetryConfig != null)
+ {
+ retryConfig = this.SDKConfiguration.RetryConfig;
+ }
+ else
+ {
+ var backoff = new BackoffStrategy(
+ initialIntervalMs: 2000L,
+ maxIntervalMs: 16000L,
+ maxElapsedTimeMs: 40000L,
+ exponent: 2
+ );
+ retryConfig = new RetryConfig(
+ strategy: RetryConfig.RetryStrategy.BACKOFF,
+ backoff: backoff,
+ retryConnectionErrors: true
+ );
+ }
+ }
+
+ List statusCodes = new List {
+ "502",
+ "503",
+ "504",
+ };
+
+ Func> retrySend = async () =>
+ {
+ var _httpRequest = await SDKConfiguration.Client.CloneAsync(httpRequest);
+ return await SDKConfiguration.Client.SendAsync(_httpRequest);
+ };
+ var retries = new Cvent.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
+
+ HttpResponseMessage httpResponse;
+ try
+ {
+ httpResponse = await retries.Run();
+ int _statusCode = (int)httpResponse.StatusCode;
+
+ if (_statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
+ {
+ var _httpResponse = await this.SDKConfiguration.Hooks.AfterErrorAsync(new AfterErrorContext(hookCtx), httpResponse, null);
+ if (_httpResponse != null)
+ {
+ httpResponse = _httpResponse;
+ }
+ }
+ }
+ catch (Exception _hookError)
+ {
+ var _httpResponse = await this.SDKConfiguration.Hooks.AfterErrorAsync(new AfterErrorContext(hookCtx), null, _hookError);
+ if (_httpResponse != null)
+ {
+ httpResponse = _httpResponse;
+ }
+ else
+ {
+ throw;
+ }
+ }
+
+ httpResponse = await this.SDKConfiguration.Hooks.AfterSuccessAsync(new AfterSuccessContext(hookCtx), httpResponse);
+
+ Func> nextFunc = async delegate()
+ {
+ var body = JObject.Parse(await httpResponse.Content.ReadAsStringAsync());
+ var nextCursorToken = body.SelectToken("$.paging.nextToken");
+
+ if (nextCursorToken == null)
+ {
+ return null;
+ }
+
+ var nextCursor = nextCursorToken.Value();
+ if (string.IsNullOrWhiteSpace(nextCursor))
+ {
+ return null;
+ }
+
+ var newRequest = new ListEventVouchersRequest {
+ Id = request.Id,
+ Limit = request.Limit,
+ Token = nextCursor,
+ Before = request.Before,
+ After = request.After,
+ Sort = request.Sort,
+ Filter = request.Filter
+ };
+
+ return await ListEventVouchersAsync(
+ request: newRequest,
+ retryConfig: retryConfig
+ );
+ };
+
+ var contentType = httpResponse.Content.Headers.ContentType?.MediaType;
+ int responseStatusCode = (int)httpResponse.StatusCode;
+ if (responseStatusCode == 200)
+ {
+ if (Utilities.IsContentTypeMatch("application/json", contentType))
+ {
+ var httpResponseBody = await httpResponse.Content.ReadAsStringAsync();
+ VouchersPaginatedResponse obj;
+ try
+ {
+ obj = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
+ }
+ catch (Exception ex)
+ {
+ throw new ResponseValidationException("Failed to deserialize response body into VouchersPaginatedResponse.", httpRequest, httpResponse, httpResponseBody, ex);
+ }
+
+ var response = new ListEventVouchersResponse() {
+ HttpMeta = new Models.Components.HTTPMetadata() {
+ Response = httpResponse,
+ Request = httpRequest
+ },
+ Next = nextFunc
+ };
+ response.VouchersPaginatedResponse = obj;
+ return response;
+ }
+
+ throw new Models.Errors.APIException("Unknown content type received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
+ }
+ else if (new List { 400, 401, 403, 404, 429 }.Contains(responseStatusCode))
+ {
+ if (Utilities.IsContentTypeMatch("application/json", contentType))
+ {
+ var httpResponseBody = await httpResponse.Content.ReadAsStringAsync();
+ Models.Errors.ErrorResponse1Payload payload;
+ try
+ {
+ payload = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
+ }
+ catch (Exception ex)
+ {
+ throw new ResponseValidationException("Failed to deserialize response body into Models.Errors.ErrorResponse1Payload.", httpRequest, httpResponse, httpResponseBody, ex);
+ }
+
+ throw new Models.Errors.ErrorResponse1(payload, httpRequest, httpResponse, httpResponseBody);
+ }
+
+ throw new Models.Errors.APIException("Unknown content type received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
+ }
+ else if (responseStatusCode >= 400 && responseStatusCode < 500)
+ {
+ throw new Models.Errors.APIException("API error occurred", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
+ }
+ else if (responseStatusCode >= 500 && responseStatusCode < 600)
+ {
+ throw new Models.Errors.APIException("API error occurred", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
+ }
+
+ throw new Models.Errors.APIException("Unknown status code received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
+ }
+
+ ///
+ /// List Event Vouchers (Filter).
+ ///
+ ///
+ /// Retrieves a paginated list of vouchers configured for an event using a filter provided in the body of the request.
+ ///
+ /// A parameter.
+ /// The retry configuration to use for this operation.
+ /// An awaitable task that returns a response envelope when completed.
+ /// The required parameter is null.
+ /// The HTTP request failed due to network issues.
+ /// The response body could not be deserialized.
+ /// Bad request. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
+ /// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
+ public async Task ListEventVouchersPostFilterAsync(
+ ListEventVouchersPostFilterRequest request,
+ RetryConfig? retryConfig = null
+ )
+ {
+ if (request == null) throw new ArgumentNullException(nameof(request));
+
+ string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
+ var urlString = URLBuilder.Build(baseUrl, "/events/{id}/vouchers/filter", request, null);
+
+ var httpRequest = new HttpRequestMessage(HttpMethod.Post, urlString);
+ httpRequest.Headers.Add("user-agent", SDKConfiguration.UserAgent);
+
+ if (!httpRequest.Headers.Contains("Accept"))
+ {
+ httpRequest.Headers.Add("Accept", "application/json");
+ }
+
+ var serializedBody = RequestBodySerializer.Serialize(request, "Filter", "json", false, true);
+ if (serializedBody != null)
+ {
+ httpRequest.Content = serializedBody;
+ }
+
+ if (SDKConfiguration.SecuritySource != null)
+ {
+ httpRequest = new SecurityMetadata(SDKConfiguration.SecuritySource).Apply(httpRequest);
+ }
+
+ var hookCtx = new HookContext(SDKConfiguration, baseUrl, "listEventVouchersPostFilter", new List { "event/vouchers:read" }, SDKConfiguration.SecuritySource);
+
+ httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
+ if (retryConfig == null)
+ {
+ if (this.SDKConfiguration.RetryConfig != null)
+ {
+ retryConfig = this.SDKConfiguration.RetryConfig;
+ }
+ else
+ {
+ var backoff = new BackoffStrategy(
+ initialIntervalMs: 2000L,
+ maxIntervalMs: 16000L,
+ maxElapsedTimeMs: 40000L,
+ exponent: 2
+ );
+ retryConfig = new RetryConfig(
+ strategy: RetryConfig.RetryStrategy.BACKOFF,
+ backoff: backoff,
+ retryConnectionErrors: true
+ );
+ }
+ }
+
+ List statusCodes = new List {
+ "502",
+ "503",
+ "504",
+ };
+
+ Func> retrySend = async () =>
+ {
+ var _httpRequest = await SDKConfiguration.Client.CloneAsync(httpRequest);
+ return await SDKConfiguration.Client.SendAsync(_httpRequest);
+ };
+ var retries = new Cvent.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
+
+ HttpResponseMessage httpResponse;
+ try
+ {
+ httpResponse = await retries.Run();
+ int _statusCode = (int)httpResponse.StatusCode;
+
+ if (_statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
+ {
+ var _httpResponse = await this.SDKConfiguration.Hooks.AfterErrorAsync(new AfterErrorContext(hookCtx), httpResponse, null);
+ if (_httpResponse != null)
+ {
+ httpResponse = _httpResponse;
+ }
+ }
+ }
+ catch (Exception _hookError)
+ {
+ var _httpResponse = await this.SDKConfiguration.Hooks.AfterErrorAsync(new AfterErrorContext(hookCtx), null, _hookError);
+ if (_httpResponse != null)
+ {
+ httpResponse = _httpResponse;
+ }
+ else
+ {
+ throw;
+ }
+ }
+
+ httpResponse = await this.SDKConfiguration.Hooks.AfterSuccessAsync(new AfterSuccessContext(hookCtx), httpResponse);
+
+ Func> nextFunc = async delegate()
+ {
+ var body = JObject.Parse(await httpResponse.Content.ReadAsStringAsync());
+ var nextCursorToken = body.SelectToken("$.paging.nextToken");
+
+ if (nextCursorToken == null)
+ {
+ return null;
+ }
+
+ var nextCursor = nextCursorToken.Value();
+ if (string.IsNullOrWhiteSpace(nextCursor))
+ {
+ return null;
+ }
+
+ var newRequest = new ListEventVouchersPostFilterRequest {
+ Id = request.Id,
+ Limit = request.Limit,
+ Token = nextCursor,
+ Before = request.Before,
+ After = request.After,
+ Sort = request.Sort,
+ Filter = new Filter {
+ FilterValue = request.Filter?.FilterValue
+ }
+ };
+
+ return await ListEventVouchersPostFilterAsync(
+ request: newRequest,
+ retryConfig: retryConfig
+ );
+ };
+
+ var contentType = httpResponse.Content.Headers.ContentType?.MediaType;
+ int responseStatusCode = (int)httpResponse.StatusCode;
+ if (responseStatusCode == 200)
+ {
+ if (Utilities.IsContentTypeMatch("application/json", contentType))
+ {
+ var httpResponseBody = await httpResponse.Content.ReadAsStringAsync();
+ VouchersPaginatedResponse obj;
+ try
+ {
+ obj = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
+ }
+ catch (Exception ex)
+ {
+ throw new ResponseValidationException("Failed to deserialize response body into VouchersPaginatedResponse.", httpRequest, httpResponse, httpResponseBody, ex);
+ }
+
+ var response = new ListEventVouchersPostFilterResponse() {
+ HttpMeta = new Models.Components.HTTPMetadata() {
+ Response = httpResponse,
+ Request = httpRequest
+ },
+ Next = nextFunc
+ };
+ response.VouchersPaginatedResponse = obj;
+ return response;
+ }
+
+ throw new Models.Errors.APIException("Unknown content type received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
+ }
+ else if (new List { 400, 401, 403, 404, 429 }.Contains(responseStatusCode))
+ {
+ if (Utilities.IsContentTypeMatch("application/json", contentType))
+ {
+ var httpResponseBody = await httpResponse.Content.ReadAsStringAsync();
+ Models.Errors.ErrorResponse1Payload payload;
+ try
+ {
+ payload = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
+ }
+ catch (Exception ex)
+ {
+ throw new ResponseValidationException("Failed to deserialize response body into Models.Errors.ErrorResponse1Payload.", httpRequest, httpResponse, httpResponseBody, ex);
+ }
+
+ throw new Models.Errors.ErrorResponse1(payload, httpRequest, httpResponse, httpResponseBody);
+ }
+
+ throw new Models.Errors.APIException("Unknown content type received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
+ }
+ else if (responseStatusCode >= 400 && responseStatusCode < 500)
+ {
+ throw new Models.Errors.APIException("API error occurred", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
+ }
+ else if (responseStatusCode >= 500 && responseStatusCode < 600)
+ {
+ throw new Models.Errors.APIException("API error occurred", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
+ }
+
+ throw new Models.Errors.APIException("Unknown status code received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
+ }
+
+ ///
+ /// List Voucher Attendees.
+ ///
+ ///
+ /// Retrieves a paginated list of attendees who have redeemed a specific voucher for the given event.
+ ///
+ /// A parameter.
+ /// The retry configuration to use for this operation.
+ /// An awaitable task that returns a response envelope when completed.
+ /// The required parameter is null.
+ /// The HTTP request failed due to network issues.
+ /// The response body could not be deserialized.
+ /// Bad request. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
+ /// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
+ public async Task ListEventVoucherAttendeesAsync(
+ ListEventVoucherAttendeesRequest request,
+ RetryConfig? retryConfig = null
+ )
+ {
+ if (request == null) throw new ArgumentNullException(nameof(request));
+
+ string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
+ var urlString = URLBuilder.Build(baseUrl, "/events/{id}/vouchers/{voucherId}/attendees", request, null);
+
+ var httpRequest = new HttpRequestMessage(HttpMethod.Get, urlString);
+ httpRequest.Headers.Add("user-agent", SDKConfiguration.UserAgent);
+
+ if (!httpRequest.Headers.Contains("Accept"))
+ {
+ httpRequest.Headers.Add("Accept", "application/json");
+ }
+
+ if (SDKConfiguration.SecuritySource != null)
+ {
+ httpRequest = new SecurityMetadata(SDKConfiguration.SecuritySource).Apply(httpRequest);
+ }
+
+ var hookCtx = new HookContext(SDKConfiguration, baseUrl, "listEventVoucherAttendees", new List { "event/vouchers:read" }, SDKConfiguration.SecuritySource);
+
+ httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
+ if (retryConfig == null)
+ {
+ if (this.SDKConfiguration.RetryConfig != null)
+ {
+ retryConfig = this.SDKConfiguration.RetryConfig;
+ }
+ else
+ {
+ var backoff = new BackoffStrategy(
+ initialIntervalMs: 2000L,
+ maxIntervalMs: 16000L,
+ maxElapsedTimeMs: 40000L,
+ exponent: 2
+ );
+ retryConfig = new RetryConfig(
+ strategy: RetryConfig.RetryStrategy.BACKOFF,
+ backoff: backoff,
+ retryConnectionErrors: true
+ );
+ }
+ }
+
+ List statusCodes = new List {
+ "502",
+ "503",
+ "504",
+ };
+
+ Func> retrySend = async () =>
+ {
+ var _httpRequest = await SDKConfiguration.Client.CloneAsync(httpRequest);
+ return await SDKConfiguration.Client.SendAsync(_httpRequest);
+ };
+ var retries = new Cvent.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
+
+ HttpResponseMessage httpResponse;
+ try
+ {
+ httpResponse = await retries.Run();
+ int _statusCode = (int)httpResponse.StatusCode;
+
+ if (_statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
+ {
+ var _httpResponse = await this.SDKConfiguration.Hooks.AfterErrorAsync(new AfterErrorContext(hookCtx), httpResponse, null);
+ if (_httpResponse != null)
+ {
+ httpResponse = _httpResponse;
+ }
+ }
+ }
+ catch (Exception _hookError)
+ {
+ var _httpResponse = await this.SDKConfiguration.Hooks.AfterErrorAsync(new AfterErrorContext(hookCtx), null, _hookError);
+ if (_httpResponse != null)
+ {
+ httpResponse = _httpResponse;
+ }
+ else
+ {
+ throw;
+ }
+ }
+
+ httpResponse = await this.SDKConfiguration.Hooks.AfterSuccessAsync(new AfterSuccessContext(hookCtx), httpResponse);
+
+ Func> nextFunc = async delegate()
+ {
+ var body = JObject.Parse(await httpResponse.Content.ReadAsStringAsync());
+ var nextCursorToken = body.SelectToken("$.paging.nextToken");
+
+ if (nextCursorToken == null)
+ {
+ return null;
+ }
+
+ var nextCursor = nextCursorToken.Value();
+ if (string.IsNullOrWhiteSpace(nextCursor))
+ {
+ return null;
+ }
+
+ var newRequest = new ListEventVoucherAttendeesRequest {
+ Id = request.Id,
+ VoucherId = request.VoucherId,
+ Limit = request.Limit,
+ Token = nextCursor
+ };
+
+ return await ListEventVoucherAttendeesAsync(
+ request: newRequest,
+ retryConfig: retryConfig
+ );
+ };
+
+ var contentType = httpResponse.Content.Headers.ContentType?.MediaType;
+ int responseStatusCode = (int)httpResponse.StatusCode;
+ if (responseStatusCode == 200)
+ {
+ if (Utilities.IsContentTypeMatch("application/json", contentType))
+ {
+ var httpResponseBody = await httpResponse.Content.ReadAsStringAsync();
+ AttendeesPaginatedResponse obj;
+ try
+ {
+ obj = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
+ }
+ catch (Exception ex)
+ {
+ throw new ResponseValidationException("Failed to deserialize response body into AttendeesPaginatedResponse.", httpRequest, httpResponse, httpResponseBody, ex);
+ }
+
+ var response = new ListEventVoucherAttendeesResponse() {
+ HttpMeta = new Models.Components.HTTPMetadata() {
+ Response = httpResponse,
+ Request = httpRequest
+ },
+ Next = nextFunc
+ };
+ response.AttendeesPaginatedResponse = obj;
+ return response;
+ }
+
+ throw new Models.Errors.APIException("Unknown content type received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
+ }
+ else if (new List { 400, 401, 403, 404, 429 }.Contains(responseStatusCode))
+ {
+ if (Utilities.IsContentTypeMatch("application/json", contentType))
+ {
+ var httpResponseBody = await httpResponse.Content.ReadAsStringAsync();
+ Models.Errors.ErrorResponse1Payload payload;
+ try
+ {
+ payload = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
+ }
+ catch (Exception ex)
+ {
+ throw new ResponseValidationException("Failed to deserialize response body into Models.Errors.ErrorResponse1Payload.", httpRequest, httpResponse, httpResponseBody, ex);
+ }
+
+ throw new Models.Errors.ErrorResponse1(payload, httpRequest, httpResponse, httpResponseBody);
+ }
+
+ throw new Models.Errors.APIException("Unknown content type received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
+ }
+ else if (responseStatusCode >= 400 && responseStatusCode < 500)
+ {
+ throw new Models.Errors.APIException("API error occurred", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
+ }
+ else if (responseStatusCode >= 500 && responseStatusCode < 600)
+ {
+ throw new Models.Errors.APIException("API error occurred", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
+ }
+
+ throw new Models.Errors.APIException("Unknown status code received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
+ }
+
///
/// Update Quantity Item.
///
diff --git a/packages/csharp/src/Cvent/SDK/Exhibitor.cs b/packages/csharp/src/Cvent/SDK/Exhibitor.cs
index c14b6dbe..55b75ee5 100644
--- a/packages/csharp/src/Cvent/SDK/Exhibitor.cs
+++ b/packages/csharp/src/Cvent/SDK/Exhibitor.cs
@@ -518,7 +518,8 @@ public Task GetLeadQualificationQuestions
/// The required parameter is null.
/// The HTTP request failed due to network issues.
/// The response body could not be deserialized.
- /// Bad request. Thrown when the API returns a 400, 401, 403, 404, 409 or 429 response.
+ /// Registration pack for given exhibitor already exists. Thrown when the API returns a 409 response.
+ /// Bad request. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
/// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
public Task PostRegistrationPackAsync(
PostRegistrationPackRequest request,
@@ -599,7 +600,8 @@ public Task UpdateRegistrationPackAsync(
/// The required parameter is null.
/// The HTTP request failed due to network issues.
/// The response body could not be deserialized.
- /// Bad or expired token. Thrown when the API returns a 401, 403, 404, 409 or 429 response.
+ /// RegPack cannot be deleted when at least one or more booth staff are already assigned. Thrown when the API returns a 409 response.
+ /// Bad or expired token. Thrown when the API returns a 401, 403, 404 or 429 response.
/// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
public Task DeleteRegistrationPackAsync(
DeleteRegistrationPackRequest request,
@@ -4558,7 +4560,8 @@ public async Task GetLeadQualificationQue
/// The required parameter is null.
/// The HTTP request failed due to network issues.
/// The response body could not be deserialized.
- /// Bad request. Thrown when the API returns a 400, 401, 403, 404, 409 or 429 response.
+ /// Registration pack for given exhibitor already exists. Thrown when the API returns a 409 response.
+ /// Bad request. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
/// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
public async Task PostRegistrationPackAsync(
PostRegistrationPackRequest request,
@@ -4686,7 +4689,27 @@ public async Task PostRegistrationPackAsync(
throw new Models.Errors.APIException("Unknown content type received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
}
- else if (new List { 400, 401, 403, 404, 409, 429 }.Contains(responseStatusCode))
+ else if (responseStatusCode == 409)
+ {
+ if (Utilities.IsContentTypeMatch("application/json", contentType))
+ {
+ var httpResponseBody = await httpResponse.Content.ReadAsStringAsync();
+ Models.Errors.ErrorResponse2Payload payload;
+ try
+ {
+ payload = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
+ }
+ catch (Exception ex)
+ {
+ throw new ResponseValidationException("Failed to deserialize response body into Models.Errors.ErrorResponse2Payload.", httpRequest, httpResponse, httpResponseBody, ex);
+ }
+
+ throw new Models.Errors.ErrorResponse2(payload, httpRequest, httpResponse, httpResponseBody);
+ }
+
+ throw new Models.Errors.APIException("Unknown content type received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
+ }
+ else if (new List { 400, 401, 403, 404, 429 }.Contains(responseStatusCode))
{
if (Utilities.IsContentTypeMatch("application/json", contentType))
{
@@ -5239,7 +5262,8 @@ public async Task UpdateRegistrationPackAsync(
/// The required parameter is null.
/// The HTTP request failed due to network issues.
/// The response body could not be deserialized.
- /// Bad or expired token. Thrown when the API returns a 401, 403, 404, 409 or 429 response.
+ /// RegPack cannot be deleted when at least one or more booth staff are already assigned. Thrown when the API returns a 409 response.
+ /// Bad or expired token. Thrown when the API returns a 401, 403, 404 or 429 response.
/// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
public async Task DeleteRegistrationPackAsync(
DeleteRegistrationPackRequest request,
@@ -5343,7 +5367,27 @@ public async Task DeleteRegistrationPackAsync(
}
};
}
- else if (new List { 401, 403, 404, 409, 429 }.Contains(responseStatusCode))
+ else if (responseStatusCode == 409)
+ {
+ if (Utilities.IsContentTypeMatch("application/json", contentType))
+ {
+ var httpResponseBody = await httpResponse.Content.ReadAsStringAsync();
+ Models.Errors.ErrorResponse2Payload payload;
+ try
+ {
+ payload = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
+ }
+ catch (Exception ex)
+ {
+ throw new ResponseValidationException("Failed to deserialize response body into Models.Errors.ErrorResponse2Payload.", httpRequest, httpResponse, httpResponseBody, ex);
+ }
+
+ throw new Models.Errors.ErrorResponse2(payload, httpRequest, httpResponse, httpResponseBody);
+ }
+
+ throw new Models.Errors.APIException("Unknown content type received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
+ }
+ else if (new List { 401, 403, 404, 429 }.Contains(responseStatusCode))
{
if (Utilities.IsContentTypeMatch("application/json", contentType))
{
diff --git a/packages/csharp/src/Cvent/SDK/ExhibitorContent.cs b/packages/csharp/src/Cvent/SDK/ExhibitorContent.cs
index c128a7cf..6492f589 100644
--- a/packages/csharp/src/Cvent/SDK/ExhibitorContent.cs
+++ b/packages/csharp/src/Cvent/SDK/ExhibitorContent.cs
@@ -80,7 +80,8 @@ public Task GetExhibitorFileAsync(
/// The required parameter is null.
/// The HTTP request failed due to network issues.
/// The response body could not be deserialized.
- /// Bad request. Thrown when the API returns a 400, 401, 403, 404, 422 or 429 response.
+ /// Was not able to process the request. Thrown when the API returns a 422 response.
+ /// Bad request. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
/// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
public Task UpdateExhibitorFileAsync(
UpdateExhibitorFileRequest request,
@@ -140,7 +141,8 @@ public Task ListExhibitorWeblinksAsync(
/// The required parameter is null.
/// The HTTP request failed due to network issues.
/// The response body could not be deserialized.
- /// Bad request. Thrown when the API returns a 400, 401, 403, 404, 422 or 429 response.
+ /// Was not able to process the request. Thrown when the API returns a 422 response.
+ /// Bad request. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
/// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
public Task CreateExhibitorWeblinkAsync(
CreateExhibitorWeblinkRequest request,
@@ -180,7 +182,8 @@ public Task GetExhibitorWeblinkAsync(
/// The required parameter is null.
/// The HTTP request failed due to network issues.
/// The response body could not be deserialized.
- /// Bad request. Thrown when the API returns a 400, 401, 403, 404, 422 or 429 response.
+ /// Was not able to process the request. Thrown when the API returns a 422 response.
+ /// Bad request. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
/// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
public Task UpdateExhibitorWeblinkAsync(
UpdateExhibitorWeblinkRequest request,
@@ -571,7 +574,8 @@ public async Task GetExhibitorFileAsync(
/// The required parameter is null.
/// The HTTP request failed due to network issues.
/// The response body could not be deserialized.
- /// Bad request. Thrown when the API returns a 400, 401, 403, 404, 422 or 429 response.
+ /// Was not able to process the request. Thrown when the API returns a 422 response.
+ /// Bad request. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
/// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
public async Task UpdateExhibitorFileAsync(
UpdateExhibitorFileRequest request,
@@ -699,7 +703,27 @@ public async Task UpdateExhibitorFileAsync(
throw new Models.Errors.APIException("Unknown content type received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
}
- else if (new List { 400, 401, 403, 404, 422, 429 }.Contains(responseStatusCode))
+ else if (responseStatusCode == 422)
+ {
+ if (Utilities.IsContentTypeMatch("application/json", contentType))
+ {
+ var httpResponseBody = await httpResponse.Content.ReadAsStringAsync();
+ Models.Errors.ErrorResponse2Payload payload;
+ try
+ {
+ payload = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
+ }
+ catch (Exception ex)
+ {
+ throw new ResponseValidationException("Failed to deserialize response body into Models.Errors.ErrorResponse2Payload.", httpRequest, httpResponse, httpResponseBody, ex);
+ }
+
+ throw new Models.Errors.ErrorResponse2(payload, httpRequest, httpResponse, httpResponseBody);
+ }
+
+ throw new Models.Errors.APIException("Unknown content type received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
+ }
+ else if (new List { 400, 401, 403, 404, 429 }.Contains(responseStatusCode))
{
if (Utilities.IsContentTypeMatch("application/json", contentType))
{
@@ -1060,7 +1084,8 @@ public async Task ListExhibitorWeblinksAsync(
/// The required parameter is null.
/// The HTTP request failed due to network issues.
/// The response body could not be deserialized.
- /// Bad request. Thrown when the API returns a 400, 401, 403, 404, 422 or 429 response.
+ /// Was not able to process the request. Thrown when the API returns a 422 response.
+ /// Bad request. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
/// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
public async Task CreateExhibitorWeblinkAsync(
CreateExhibitorWeblinkRequest request,
@@ -1188,7 +1213,27 @@ public async Task CreateExhibitorWeblinkAsync(
throw new Models.Errors.APIException("Unknown content type received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
}
- else if (new List { 400, 401, 403, 404, 422, 429 }.Contains(responseStatusCode))
+ else if (responseStatusCode == 422)
+ {
+ if (Utilities.IsContentTypeMatch("application/json", contentType))
+ {
+ var httpResponseBody = await httpResponse.Content.ReadAsStringAsync();
+ Models.Errors.ErrorResponse2Payload payload;
+ try
+ {
+ payload = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
+ }
+ catch (Exception ex)
+ {
+ throw new ResponseValidationException("Failed to deserialize response body into Models.Errors.ErrorResponse2Payload.", httpRequest, httpResponse, httpResponseBody, ex);
+ }
+
+ throw new Models.Errors.ErrorResponse2(payload, httpRequest, httpResponse, httpResponseBody);
+ }
+
+ throw new Models.Errors.APIException("Unknown content type received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
+ }
+ else if (new List { 400, 401, 403, 404, 429 }.Contains(responseStatusCode))
{
if (Utilities.IsContentTypeMatch("application/json", contentType))
{
@@ -1400,7 +1445,8 @@ public async Task GetExhibitorWeblinkAsync(
/// The required parameter is null.
/// The HTTP request failed due to network issues.
/// The response body could not be deserialized.
- /// Bad request. Thrown when the API returns a 400, 401, 403, 404, 422 or 429 response.
+ /// Was not able to process the request. Thrown when the API returns a 422 response.
+ /// Bad request. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
/// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
public async Task UpdateExhibitorWeblinkAsync(
UpdateExhibitorWeblinkRequest request,
@@ -1528,7 +1574,27 @@ public async Task UpdateExhibitorWeblinkAsync(
throw new Models.Errors.APIException("Unknown content type received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
}
- else if (new List { 400, 401, 403, 404, 422, 429 }.Contains(responseStatusCode))
+ else if (responseStatusCode == 422)
+ {
+ if (Utilities.IsContentTypeMatch("application/json", contentType))
+ {
+ var httpResponseBody = await httpResponse.Content.ReadAsStringAsync();
+ Models.Errors.ErrorResponse2Payload payload;
+ try
+ {
+ payload = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
+ }
+ catch (Exception ex)
+ {
+ throw new ResponseValidationException("Failed to deserialize response body into Models.Errors.ErrorResponse2Payload.", httpRequest, httpResponse, httpResponseBody, ex);
+ }
+
+ throw new Models.Errors.ErrorResponse2(payload, httpRequest, httpResponse, httpResponseBody);
+ }
+
+ throw new Models.Errors.APIException("Unknown content type received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
+ }
+ else if (new List { 400, 401, 403, 404, 429 }.Contains(responseStatusCode))
{
if (Utilities.IsContentTypeMatch("application/json", contentType))
{
diff --git a/packages/csharp/src/Cvent/SDK/Hooks/OAuth2Scopes.cs b/packages/csharp/src/Cvent/SDK/Hooks/OAuth2Scopes.cs
index 395fe8ba..af6ccc4c 100644
--- a/packages/csharp/src/Cvent/SDK/Hooks/OAuth2Scopes.cs
+++ b/packages/csharp/src/Cvent/SDK/Hooks/OAuth2Scopes.cs
@@ -190,6 +190,16 @@ public enum OAuth2AuthorizationCodeOAuth2Scope
///
[JsonProperty("budget/transactions:write")] BudgetTransactionsWrite,
+ ///
+ /// Allows the reading of BT Bid data.
+ ///
+ [JsonProperty("business-transient/bids:read")] BusinessTransientBidsRead,
+
+ ///
+ /// Allows the reading of BT Proposal data.
+ ///
+ [JsonProperty("business-transient/proposals:read")] BusinessTransientProposalsRead,
+
///
/// Allows the reading of communication compliance.
///
@@ -645,6 +655,11 @@ public enum OAuth2AuthorizationCodeOAuth2Scope
///
[JsonProperty("event/videos:write")] EventVideosWrite,
+ ///
+ /// Allows reading of event vouchers and their associated attendees.
+ ///
+ [JsonProperty("event/vouchers:read")] EventVouchersRead,
+
///
/// Allows the deletion of webcast.
///
@@ -1267,6 +1282,21 @@ public enum OAuth2ClientCredentialsOAuth2Scope
///
[JsonProperty("business-transient/travel-supplier-accounts:read")] BusinessTransientTravelSupplierAccountsRead,
+ ///
+ /// Allows the reading of business travel account data.
+ ///
+ [JsonProperty("business-travel/travel-accounts:read")] BusinessTravelTravelAccountsRead,
+
+ ///
+ /// Allows the reading of business travel program question data.
+ ///
+ [JsonProperty("business-travel/travel-program-questions:read")] BusinessTravelTravelProgramQuestionsRead,
+
+ ///
+ /// Allows the reading of business travel program data.
+ ///
+ [JsonProperty("business-travel/travel-programs:read")] BusinessTravelTravelProgramsRead,
+
///
/// Allows the reading of communication compliance.
///
@@ -1722,6 +1752,11 @@ public enum OAuth2ClientCredentialsOAuth2Scope
///
[JsonProperty("event/videos:write")] EventVideosWrite,
+ ///
+ /// Allows reading of event vouchers.
+ ///
+ [JsonProperty("event/vouchers:read")] EventVouchersRead,
+
///
/// Allows the deletion of webcast.
///
diff --git a/packages/csharp/src/Cvent/SDK/Housing.cs b/packages/csharp/src/Cvent/SDK/Housing.cs
index ae9bd4e1..7e8e2c75 100644
--- a/packages/csharp/src/Cvent/SDK/Housing.cs
+++ b/packages/csharp/src/Cvent/SDK/Housing.cs
@@ -298,7 +298,8 @@ public Task GetReservationRequestAsync(
/// The required parameter is null.
/// The HTTP request failed due to network issues.
/// The response body could not be deserialized.
- /// Reservation request was cancelled and cannot be modified. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
+ /// Reservation request was cancelled and cannot be modified. Thrown when the API returns a 400 response.
+ /// Bad or expired token. Thrown when the API returns a 401, 403, 404 or 429 response.
/// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
public Task UpdateReservationRequestAsync(
UpdateReservationRequestRequest request,
@@ -317,7 +318,8 @@ public Task UpdateReservationRequestAsync(
/// The required parameter is null.
/// The HTTP request failed due to network issues.
/// The response body could not be deserialized.
- /// Reservation already exists for given reservation request, so we cannot cancel it. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
+ /// Reservation already exists for given reservation request, so we cannot cancel it. Thrown when the API returns a 400 response.
+ /// Bad or expired token. Thrown when the API returns a 401, 403, 404 or 429 response.
/// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
public Task CancelReservationRequestAsync(
CancelReservationRequestRequest request,
@@ -2642,7 +2644,8 @@ public async Task GetReservationRequestAsync(
/// The required parameter is null.
/// The HTTP request failed due to network issues.
/// The response body could not be deserialized.
- /// Reservation request was cancelled and cannot be modified. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
+ /// Reservation request was cancelled and cannot be modified. Thrown when the API returns a 400 response.
+ /// Bad or expired token. Thrown when the API returns a 401, 403, 404 or 429 response.
/// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
public async Task UpdateReservationRequestAsync(
UpdateReservationRequestRequest request,
@@ -2770,7 +2773,27 @@ public async Task UpdateReservationRequestAsyn
throw new Models.Errors.APIException("Unknown content type received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
}
- else if (new List { 400, 401, 403, 404, 429 }.Contains(responseStatusCode))
+ else if (responseStatusCode == 400)
+ {
+ if (Utilities.IsContentTypeMatch("application/json", contentType))
+ {
+ var httpResponseBody = await httpResponse.Content.ReadAsStringAsync();
+ Models.Errors.ErrorResponse2Payload payload;
+ try
+ {
+ payload = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
+ }
+ catch (Exception ex)
+ {
+ throw new ResponseValidationException("Failed to deserialize response body into Models.Errors.ErrorResponse2Payload.", httpRequest, httpResponse, httpResponseBody, ex);
+ }
+
+ throw new Models.Errors.ErrorResponse2(payload, httpRequest, httpResponse, httpResponseBody);
+ }
+
+ throw new Models.Errors.APIException("Unknown content type received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
+ }
+ else if (new List { 401, 403, 404, 429 }.Contains(responseStatusCode))
{
if (Utilities.IsContentTypeMatch("application/json", contentType))
{
@@ -2814,7 +2837,8 @@ public async Task UpdateReservationRequestAsyn
/// The required parameter is null.
/// The HTTP request failed due to network issues.
/// The response body could not be deserialized.
- /// Reservation already exists for given reservation request, so we cannot cancel it. Thrown when the API returns a 400, 401, 403, 404 or 429 response.
+ /// Reservation already exists for given reservation request, so we cannot cancel it. Thrown when the API returns a 400 response.
+ /// Bad or expired token. Thrown when the API returns a 401, 403, 404 or 429 response.
/// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
public async Task CancelReservationRequestAsync(
CancelReservationRequestRequest request,
@@ -2918,7 +2942,27 @@ public async Task CancelReservationRequestAsyn
}
};
}
- else if (new List { 400, 401, 403, 404, 429 }.Contains(responseStatusCode))
+ else if (responseStatusCode == 400)
+ {
+ if (Utilities.IsContentTypeMatch("application/json", contentType))
+ {
+ var httpResponseBody = await httpResponse.Content.ReadAsStringAsync();
+ Models.Errors.ErrorResponse2Payload payload;
+ try
+ {
+ payload = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
+ }
+ catch (Exception ex)
+ {
+ throw new ResponseValidationException("Failed to deserialize response body into Models.Errors.ErrorResponse2Payload.", httpRequest, httpResponse, httpResponseBody, ex);
+ }
+
+ throw new Models.Errors.ErrorResponse2(payload, httpRequest, httpResponse, httpResponseBody);
+ }
+
+ throw new Models.Errors.APIException("Unknown content type received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
+ }
+ else if (new List { 401, 403, 404, 429 }.Contains(responseStatusCode))
{
if (Utilities.IsContentTypeMatch("application/json", contentType))
{
diff --git a/packages/csharp/src/Cvent/SDK/MeetingRequest.cs b/packages/csharp/src/Cvent/SDK/MeetingRequest.cs
index 04cbb2ab..0d679707 100644
--- a/packages/csharp/src/Cvent/SDK/MeetingRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/MeetingRequest.cs
@@ -78,7 +78,8 @@ public Task GetMeetingRequestByEventIdAsync(
/// The required parameter is null.
/// The HTTP request failed due to network issues.
/// The response body could not be deserialized.
- /// Bad or expired token. Thrown when the API returns a 401, 403, 404, 422 or 429 response.
+ /// Was not able to process the request. Thrown when the API returns a 422 response.
+ /// Bad or expired token. Thrown when the API returns a 401, 403, 404 or 429 response.
/// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
public Task GetMRFByIdAsync(GetMRFByIdRequest request, RetryConfig? retryConfig = null);
@@ -572,7 +573,8 @@ public async Task ListMRFAsync(ListMRFRequest? request = null,
/// The required parameter is null.
/// The HTTP request failed due to network issues.
/// The response body could not be deserialized.
- /// Bad or expired token. Thrown when the API returns a 401, 403, 404, 422 or 429 response.
+ /// Was not able to process the request. Thrown when the API returns a 422 response.
+ /// Bad or expired token. Thrown when the API returns a 401, 403, 404 or 429 response.
/// Default API Exception. Thrown when the API returns a 4XX or 5XX response.
public async Task GetMRFByIdAsync(
GetMRFByIdRequest request,
@@ -694,7 +696,27 @@ public async Task GetMRFByIdAsync(
throw new Models.Errors.APIException("Unknown content type received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
}
- else if (new List { 401, 403, 404, 422, 429 }.Contains(responseStatusCode))
+ else if (responseStatusCode == 422)
+ {
+ if (Utilities.IsContentTypeMatch("application/json", contentType))
+ {
+ var httpResponseBody = await httpResponse.Content.ReadAsStringAsync();
+ Models.Errors.ErrorResponse2Payload payload;
+ try
+ {
+ payload = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
+ }
+ catch (Exception ex)
+ {
+ throw new ResponseValidationException("Failed to deserialize response body into Models.Errors.ErrorResponse2Payload.", httpRequest, httpResponse, httpResponseBody, ex);
+ }
+
+ throw new Models.Errors.ErrorResponse2(payload, httpRequest, httpResponse, httpResponseBody);
+ }
+
+ throw new Models.Errors.APIException("Unknown content type received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
+ }
+ else if (new List { 401, 403, 404, 429 }.Contains(responseStatusCode))
{
if (Utilities.IsContentTypeMatch("application/json", contentType))
{
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AccountBudgetItemListResponseJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AccountBudgetItemListResponseJson.cs
index 52b58ecb..c07ec3be 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/AccountBudgetItemListResponseJson.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/AccountBudgetItemListResponseJson.cs
@@ -47,13 +47,13 @@ public class AccountBudgetItemListResponseJson
/// Event ID Information.
///
[JsonProperty("event")]
- public EventJson2? Event { get; set; }
+ public EventJson1? Event { get; set; }
///
/// RFP ID Information.
///
[JsonProperty("rfp")]
- public RfpIdJson1? Rfp { get; set; }
+ public RfpIdJson? Rfp { get; set; }
///
/// Budget Version ID Information.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/Action.cs b/packages/csharp/src/Cvent/SDK/Models/Components/Action.cs
new file mode 100644
index 00000000..21487e76
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/Action.cs
@@ -0,0 +1,57 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Cvent.SDK.Models.Components
+{
+ using Cvent.SDK.Utils;
+ using Newtonsoft.Json;
+ using System;
+
+ ///
+ /// Action to take for a compliance request.
+ ///
+ public enum Action
+ {
+ [JsonProperty("DO_NOT_SELL")] DoNotSell,
+ [JsonProperty("OK_TO_SELL")] OkToSell,
+ }
+
+ public static class ActionExtension
+ {
+ public static string Value(this Action value)
+ {
+ return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString()) [0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
+ }
+
+ public static Action ToEnum(this string value)
+ {
+ foreach (var field in typeof(Action).GetFields())
+ {
+ var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
+ if (attributes.Length == 0)
+ {
+ continue;
+ }
+
+ var attribute = attributes[0] as JsonPropertyAttribute;
+ if (attribute != null && attribute.PropertyName == value)
+ {
+ var enumVal = field.GetValue(null);
+
+ if (enumVal is Action)
+ {
+ return (Action)enumVal;
+ }
+ }
+ }
+
+ throw new Exception($"Unknown value {value} for enum Action");
+ }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AdditionalChoice.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AdditionalChoice.cs
index 7643881f..dbcf80f5 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/AdditionalChoice.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/AdditionalChoice.cs
@@ -13,14 +13,20 @@ namespace Cvent.SDK.Models.Components
using Newtonsoft.Json;
///
- /// Contains text of additional choice.
+ /// Contains text of additional choice i.e notApplicableAnswer choice or otherAnswer choice.
///
public class AdditionalChoice
{
///
- /// Text Value of additional choice.
+ /// Display text of additional choice.
///
[JsonProperty("text")]
public string? Text { get; set; }
+
+ ///
+ /// Name of additional choice text in reporting.
+ ///
+ [JsonProperty("shortText")]
+ public string? ShortText { get; set; }
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AdditionalChoice1.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AdditionalChoice1.cs
new file mode 100644
index 00000000..854b624d
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/AdditionalChoice1.cs
@@ -0,0 +1,26 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Cvent.SDK.Models.Components
+{
+ using Cvent.SDK.Utils;
+ using Newtonsoft.Json;
+
+ ///
+ /// Contains text of additional choice.
+ ///
+ public class AdditionalChoice1
+ {
+ ///
+ /// Text Value of additional choice.
+ ///
+ [JsonProperty("text")]
+ public string? Text { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AdditionalChoiceJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AdditionalChoiceJson.cs
new file mode 100644
index 00000000..46ad3145
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/AdditionalChoiceJson.cs
@@ -0,0 +1,32 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Cvent.SDK.Models.Components
+{
+ using Cvent.SDK.Utils;
+ using Newtonsoft.Json;
+
+ ///
+ /// Contains text of additional choice i.e N/A choice or otherAnswer choice.
+ ///
+ public class AdditionalChoiceJson
+ {
+ ///
+ /// Text Value of additional choice.
+ ///
+ [JsonProperty("text")]
+ public string? Text { get; set; }
+
+ ///
+ /// Reporting value of additional choice text.
+ ///
+ [JsonProperty("shortText")]
+ public string? ShortText { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AdditionalChoiceJson1.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AdditionalChoiceJson1.cs
deleted file mode 100644
index 2c2d1420..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/AdditionalChoiceJson1.cs
+++ /dev/null
@@ -1,32 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
-//
-// Changes to this file may cause incorrect behavior and will be lost when
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-#nullable enable
-namespace Cvent.SDK.Models.Components
-{
- using Cvent.SDK.Utils;
- using Newtonsoft.Json;
-
- ///
- /// Contains text of additional choice i.e N/A choice or otherAnswer choice.
- ///
- public class AdditionalChoiceJson1
- {
- ///
- /// Text Value of additional choice.
- ///
- [JsonProperty("text")]
- public string? Text { get; set; }
-
- ///
- /// Reporting value of additional choice text.
- ///
- [JsonProperty("shortText")]
- public string? ShortText { get; set; }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AdditionalChoiceJson2.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AdditionalChoiceJson2.cs
deleted file mode 100644
index 636dbdac..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/AdditionalChoiceJson2.cs
+++ /dev/null
@@ -1,32 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
-//
-// Changes to this file may cause incorrect behavior and will be lost when
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-#nullable enable
-namespace Cvent.SDK.Models.Components
-{
- using Cvent.SDK.Utils;
- using Newtonsoft.Json;
-
- ///
- /// Contains text of additional choice i.e notApplicableAnswer choice or otherAnswer choice.
- ///
- public class AdditionalChoiceJson2
- {
- ///
- /// Display text of additional choice.
- ///
- [JsonProperty("text")]
- public string? Text { get; set; }
-
- ///
- /// Name of additional choice text in reporting.
- ///
- [JsonProperty("shortText")]
- public string? ShortText { get; set; }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/Address.cs b/packages/csharp/src/Cvent/SDK/Models/Components/Address.cs
new file mode 100644
index 00000000..38c8077e
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/Address.cs
@@ -0,0 +1,74 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Cvent.SDK.Models.Components
+{
+ using Cvent.SDK.Utils;
+ using Newtonsoft.Json;
+
+ ///
+ /// Contact address details.
+ ///
+ public class Address
+ {
+ ///
+ /// The first line of an address.
+ ///
+ [JsonProperty("address1")]
+ public string? Address1 { get; set; }
+
+ ///
+ /// The second line of an address.
+ ///
+ [JsonProperty("address2")]
+ public string? Address2 { get; set; }
+
+ ///
+ /// The third line of an address.
+ ///
+ [JsonProperty("address3")]
+ public string? Address3 { get; set; }
+
+ ///
+ /// The name of the city.
+ ///
+ [JsonProperty("city")]
+ public string? City { get; set; }
+
+ ///
+ /// ISO 3166 two-letter (alpha-2) country code.
+ ///
+ [JsonProperty("countryCode")]
+ public string? CountryCode { get; set; }
+
+ ///
+ /// Postal code (also known as zipcode) of the address.
+ ///
+ [JsonProperty("postalCode")]
+ public string? PostalCode { get; set; }
+
+ ///
+ /// The name of the state/province/region of the address.
+ ///
+ [JsonProperty("region")]
+ public string? Region { get; set; }
+
+ ///
+ /// The abbreviation of the state/province/region of the address.
+ ///
+ [JsonProperty("regionCode")]
+ public string? RegionCode { get; set; }
+
+ ///
+ /// Name of the country of the address.
+ ///
+ [JsonProperty("country")]
+ public string? Country { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/Address1.cs b/packages/csharp/src/Cvent/SDK/Models/Components/Address1.cs
new file mode 100644
index 00000000..db05b8e2
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/Address1.cs
@@ -0,0 +1,38 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Cvent.SDK.Models.Components
+{
+ using Cvent.SDK.Utils;
+ using Newtonsoft.Json;
+
+ ///
+ /// Address details.
+ ///
+ public class Address1
+ {
+ ///
+ /// ISO 3166 code for the country.
+ ///
+ [JsonProperty("countryCode")]
+ public string CountryCode { get; set; } = default!;
+
+ ///
+ /// The name of the city.
+ ///
+ [JsonProperty("city")]
+ public string City { get; set; } = default!;
+
+ ///
+ /// ISO 3166-2 code for the state/province/region.
+ ///
+ [JsonProperty("regionCode")]
+ public string? RegionCode { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/Address11.cs b/packages/csharp/src/Cvent/SDK/Models/Components/Address11.cs
index 0305e6e5..893a3e1d 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/Address11.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/Address11.cs
@@ -13,7 +13,7 @@ namespace Cvent.SDK.Models.Components
using Newtonsoft.Json;
///
- /// Address details.
+ /// Schema for address information.
///
public class Address11
{
@@ -29,30 +29,12 @@ public class Address11
[JsonProperty("address2")]
public string? Address2 { get; set; }
- ///
- /// The third line of an address.
- ///
- [JsonProperty("address3")]
- public string? Address3 { get; set; }
-
///
/// The name of the city.
///
[JsonProperty("city")]
public string? City { get; set; }
- ///
- /// ISO 3166 two-letter (alpha-2) country code.
- ///
- [JsonProperty("countryCode")]
- public string? CountryCode { get; set; }
-
- ///
- /// Postal code (also known as zipcode) of the address.
- ///
- [JsonProperty("postalCode")]
- public string? PostalCode { get; set; }
-
///
/// The name of the state/province/region of the address.
///
@@ -66,21 +48,21 @@ public class Address11
public string? RegionCode { get; set; }
///
- /// Name of the country of the address.
+ /// postal code (also known as zipcode) of the address.
///
- [JsonProperty("country")]
- public string? Country { get; set; }
+ [JsonProperty("postalCode")]
+ public string? PostalCode { get; set; }
///
- /// The geo latitude of the address.
+ /// Name of the country for example, 'United States'
///
- [JsonProperty("latitude")]
- public long? Latitude { get; set; }
+ [JsonProperty("country")]
+ public string? Country { get; set; }
///
- /// The geo longitude of the address.
+ /// ISO 3166 two-letter (alpha-2) country code.
///
- [JsonProperty("longitude")]
- public long? Longitude { get; set; }
+ [JsonProperty("countryCode")]
+ public string? CountryCode { get; set; }
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/Address12.cs b/packages/csharp/src/Cvent/SDK/Models/Components/Address12.cs
deleted file mode 100644
index a1dbddc1..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/Address12.cs
+++ /dev/null
@@ -1,68 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
-//
-// Changes to this file may cause incorrect behavior and will be lost when
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-#nullable enable
-namespace Cvent.SDK.Models.Components
-{
- using Cvent.SDK.Utils;
- using Newtonsoft.Json;
-
- ///
- /// Schema for address information.
- ///
- public class Address12
- {
- ///
- /// The first line of an address.
- ///
- [JsonProperty("address1")]
- public string? Address1 { get; set; }
-
- ///
- /// The second line of an address.
- ///
- [JsonProperty("address2")]
- public string? Address2 { get; set; }
-
- ///
- /// The name of the city.
- ///
- [JsonProperty("city")]
- public string? City { get; set; }
-
- ///
- /// The name of the state/province/region of the address.
- ///
- [JsonProperty("region")]
- public string? Region { get; set; }
-
- ///
- /// The abbreviation of the state/province/region of the address.
- ///
- [JsonProperty("regionCode")]
- public string? RegionCode { get; set; }
-
- ///
- /// postal code (also known as zipcode) of the address.
- ///
- [JsonProperty("postalCode")]
- public string? PostalCode { get; set; }
-
- ///
- /// Name of the country for example, 'United States'
- ///
- [JsonProperty("country")]
- public string? Country { get; set; }
-
- ///
- /// ISO 3166 two-letter (alpha-2) country code.
- ///
- [JsonProperty("countryCode")]
- public string? CountryCode { get; set; }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/Address2.cs b/packages/csharp/src/Cvent/SDK/Models/Components/Address2.cs
deleted file mode 100644
index d4ee6144..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/Address2.cs
+++ /dev/null
@@ -1,56 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
-//
-// Changes to this file may cause incorrect behavior and will be lost when
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-#nullable enable
-namespace Cvent.SDK.Models.Components
-{
- using Cvent.SDK.Utils;
- using Newtonsoft.Json;
-
- ///
- /// An object representing an address with various properties.
- ///
- public class Address2
- {
- ///
- /// The first line of an address.
- ///
- [JsonProperty("address1")]
- public string? Address1 { get; set; }
-
- ///
- /// The second line of an address.
- ///
- [JsonProperty("address2")]
- public string? Address2Value { get; set; }
-
- ///
- /// The name of the city.
- ///
- [JsonProperty("city")]
- public string? City { get; set; }
-
- ///
- /// The name of the state/province/region of the address.
- ///
- [JsonProperty("region")]
- public string? Region { get; set; }
-
- ///
- /// postal code (also known as zipcode) of the address.
- ///
- [JsonProperty("postalCode")]
- public string? PostalCode { get; set; }
-
- ///
- /// Name of the country for example, 'United States'
- ///
- [JsonProperty("country")]
- public string? Country { get; set; }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/Address3.cs b/packages/csharp/src/Cvent/SDK/Models/Components/Address3.cs
index d156aa28..b3c60957 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/Address3.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/Address3.cs
@@ -13,7 +13,7 @@ namespace Cvent.SDK.Models.Components
using Newtonsoft.Json;
///
- /// Address of the hotel.
+ /// Address details.
///
public class Address3
{
@@ -66,9 +66,21 @@ public class Address3
public string? RegionCode { get; set; }
///
- /// Name of the country.
+ /// Name of the country of the address.
///
[JsonProperty("country")]
public string? Country { get; set; }
+
+ ///
+ /// The geo latitude of the address.
+ ///
+ [JsonProperty("latitude")]
+ public long? Latitude { get; set; }
+
+ ///
+ /// The geo longitude of the address.
+ ///
+ [JsonProperty("longitude")]
+ public long? Longitude { get; set; }
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/Address4.cs b/packages/csharp/src/Cvent/SDK/Models/Components/Address4.cs
new file mode 100644
index 00000000..eeb8b984
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/Address4.cs
@@ -0,0 +1,56 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Cvent.SDK.Models.Components
+{
+ using Cvent.SDK.Utils;
+ using Newtonsoft.Json;
+
+ ///
+ /// An object representing an address with various properties.
+ ///
+ public class Address4
+ {
+ ///
+ /// The first line of an address.
+ ///
+ [JsonProperty("address1")]
+ public string? Address1 { get; set; }
+
+ ///
+ /// The second line of an address.
+ ///
+ [JsonProperty("address2")]
+ public string? Address2 { get; set; }
+
+ ///
+ /// The name of the city.
+ ///
+ [JsonProperty("city")]
+ public string? City { get; set; }
+
+ ///
+ /// The name of the state/province/region of the address.
+ ///
+ [JsonProperty("region")]
+ public string? Region { get; set; }
+
+ ///
+ /// postal code (also known as zipcode) of the address.
+ ///
+ [JsonProperty("postalCode")]
+ public string? PostalCode { get; set; }
+
+ ///
+ /// Name of the country for example, 'United States'
+ ///
+ [JsonProperty("country")]
+ public string? Country { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/Address5.cs b/packages/csharp/src/Cvent/SDK/Models/Components/Address5.cs
new file mode 100644
index 00000000..3e810b2a
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/Address5.cs
@@ -0,0 +1,74 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Cvent.SDK.Models.Components
+{
+ using Cvent.SDK.Utils;
+ using Newtonsoft.Json;
+
+ ///
+ /// Address of the hotel.
+ ///
+ public class Address5
+ {
+ ///
+ /// The first line of an address.
+ ///
+ [JsonProperty("address1")]
+ public string? Address1 { get; set; }
+
+ ///
+ /// The second line of an address.
+ ///
+ [JsonProperty("address2")]
+ public string? Address2 { get; set; }
+
+ ///
+ /// The third line of an address.
+ ///
+ [JsonProperty("address3")]
+ public string? Address3 { get; set; }
+
+ ///
+ /// The name of the city.
+ ///
+ [JsonProperty("city")]
+ public string? City { get; set; }
+
+ ///
+ /// ISO 3166 two-letter (alpha-2) country code.
+ ///
+ [JsonProperty("countryCode")]
+ public string? CountryCode { get; set; }
+
+ ///
+ /// Postal code (also known as zipcode) of the address.
+ ///
+ [JsonProperty("postalCode")]
+ public string? PostalCode { get; set; }
+
+ ///
+ /// The name of the state/province/region of the address.
+ ///
+ [JsonProperty("region")]
+ public string? Region { get; set; }
+
+ ///
+ /// The abbreviation of the state/province/region of the address.
+ ///
+ [JsonProperty("regionCode")]
+ public string? RegionCode { get; set; }
+
+ ///
+ /// Name of the country.
+ ///
+ [JsonProperty("country")]
+ public string? Country { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/Address6.cs b/packages/csharp/src/Cvent/SDK/Models/Components/Address6.cs
new file mode 100644
index 00000000..f469b097
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/Address6.cs
@@ -0,0 +1,68 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Cvent.SDK.Models.Components
+{
+ using Cvent.SDK.Utils;
+ using Newtonsoft.Json;
+
+ ///
+ /// Address details.
+ ///
+ public class Address6
+ {
+ ///
+ /// Address line 1.
+ ///
+ [JsonProperty("address1")]
+ public string? Address1 { get; set; }
+
+ ///
+ /// Address line 2.
+ ///
+ [JsonProperty("address2")]
+ public string? Address2 { get; set; }
+
+ ///
+ /// City name.
+ ///
+ [JsonProperty("city")]
+ public string? City { get; set; }
+
+ ///
+ /// Region name.
+ ///
+ [JsonProperty("region")]
+ public string? Region { get; set; }
+
+ ///
+ /// Region code.
+ ///
+ [JsonProperty("regionCode")]
+ public string? RegionCode { get; set; }
+
+ ///
+ /// Postal code.
+ ///
+ [JsonProperty("postalCode")]
+ public string? PostalCode { get; set; }
+
+ ///
+ /// Country name.
+ ///
+ [JsonProperty("country")]
+ public string? Country { get; set; }
+
+ ///
+ /// ISO 3166 alpha-2 country code.
+ ///
+ [JsonProperty("countryCode")]
+ public string? CountryCode { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AddressInput.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AddressInput.cs
new file mode 100644
index 00000000..4efe2d44
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/AddressInput.cs
@@ -0,0 +1,62 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Cvent.SDK.Models.Components
+{
+ using Cvent.SDK.Utils;
+ using Newtonsoft.Json;
+
+ ///
+ /// Contact address details.
+ ///
+ public class AddressInput
+ {
+ ///
+ /// The first line of an address.
+ ///
+ [JsonProperty("address1")]
+ public string? Address1 { get; set; }
+
+ ///
+ /// The second line of an address.
+ ///
+ [JsonProperty("address2")]
+ public string? Address2 { get; set; }
+
+ ///
+ /// The third line of an address.
+ ///
+ [JsonProperty("address3")]
+ public string? Address3 { get; set; }
+
+ ///
+ /// The name of the city.
+ ///
+ [JsonProperty("city")]
+ public string? City { get; set; }
+
+ ///
+ /// ISO 3166 two-letter (alpha-2) country code.
+ ///
+ [JsonProperty("countryCode")]
+ public string? CountryCode { get; set; }
+
+ ///
+ /// Postal code (also known as zipcode) of the address.
+ ///
+ [JsonProperty("postalCode")]
+ public string? PostalCode { get; set; }
+
+ ///
+ /// The abbreviation of the state/province/region of the address.
+ ///
+ [JsonProperty("regionCode")]
+ public string? RegionCode { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AddressJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AddressJson.cs
index 22a40268..f66d3cab 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/AddressJson.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/AddressJson.cs
@@ -13,62 +13,56 @@ namespace Cvent.SDK.Models.Components
using Newtonsoft.Json;
///
- /// Contact address details.
+ /// Address details. Required to create/update a guest's reservation if the hotel/event requires an address in reservations.
///
public class AddressJson
{
///
- /// The first line of an address.
+ /// Address line 1.
///
[JsonProperty("address1")]
public string? Address1 { get; set; }
///
- /// The second line of an address.
+ /// Address line 2.
///
[JsonProperty("address2")]
public string? Address2 { get; set; }
///
- /// The third line of an address.
- ///
- [JsonProperty("address3")]
- public string? Address3 { get; set; }
-
- ///
- /// The name of the city.
+ /// City name.
///
[JsonProperty("city")]
public string? City { get; set; }
///
- /// ISO 3166 two-letter (alpha-2) country code.
- ///
- [JsonProperty("countryCode")]
- public string? CountryCode { get; set; }
-
- ///
- /// Postal code (also known as zipcode) of the address.
- ///
- [JsonProperty("postalCode")]
- public string? PostalCode { get; set; }
-
- ///
- /// The name of the state/province/region of the address.
+ /// Region name.
///
[JsonProperty("region")]
public string? Region { get; set; }
///
- /// The abbreviation of the state/province/region of the address.
+ /// Region code.
///
[JsonProperty("regionCode")]
public string? RegionCode { get; set; }
///
- /// Name of the country of the address.
+ /// Postal code.
+ ///
+ [JsonProperty("postalCode")]
+ public string? PostalCode { get; set; }
+
+ ///
+ /// Country name.
///
[JsonProperty("country")]
public string? Country { get; set; }
+
+ ///
+ /// ISO 3166 alpha-2 country code.
+ ///
+ [JsonProperty("countryCode")]
+ public string? CountryCode { get; set; }
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AddressJson0.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AddressJson0.cs
deleted file mode 100644
index ed33ad78..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/AddressJson0.cs
+++ /dev/null
@@ -1,38 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
-//
-// Changes to this file may cause incorrect behavior and will be lost when
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-#nullable enable
-namespace Cvent.SDK.Models.Components
-{
- using Cvent.SDK.Utils;
- using Newtonsoft.Json;
-
- ///
- /// Address details.
- ///
- public class AddressJson0
- {
- ///
- /// ISO 3166 code for the country.
- ///
- [JsonProperty("countryCode")]
- public string CountryCode { get; set; } = default!;
-
- ///
- /// The name of the city.
- ///
- [JsonProperty("city")]
- public string City { get; set; } = default!;
-
- ///
- /// ISO 3166-2 code for the state/province/region.
- ///
- [JsonProperty("regionCode")]
- public string? RegionCode { get; set; }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AddressJson1.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AddressJson1.cs
new file mode 100644
index 00000000..d8b0fdf2
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/AddressJson1.cs
@@ -0,0 +1,68 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Cvent.SDK.Models.Components
+{
+ using Cvent.SDK.Utils;
+ using Newtonsoft.Json;
+
+ ///
+ /// A physical address.
+ ///
+ public class AddressJson1
+ {
+ ///
+ /// Address line 1.
+ ///
+ [JsonProperty("address1")]
+ public string? Address1 { get; set; }
+
+ ///
+ /// Address line 2.
+ ///
+ [JsonProperty("address2")]
+ public string? Address2 { get; set; }
+
+ ///
+ /// City name.
+ ///
+ [JsonProperty("city")]
+ public string? City { get; set; }
+
+ ///
+ /// Region name.
+ ///
+ [JsonProperty("region")]
+ public string? Region { get; set; }
+
+ ///
+ /// Region code.
+ ///
+ [JsonProperty("regionCode")]
+ public string? RegionCode { get; set; }
+
+ ///
+ /// Postal code.
+ ///
+ [JsonProperty("postalCode")]
+ public string? PostalCode { get; set; }
+
+ ///
+ /// Country name.
+ ///
+ [JsonProperty("country")]
+ public string? Country { get; set; }
+
+ ///
+ /// ISO 3166 alpha-2 country code.
+ ///
+ [JsonProperty("countryCode")]
+ public string? CountryCode { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AddressJson2.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AddressJson2.cs
index 84f50920..6f2d18cc 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/AddressJson2.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/AddressJson2.cs
@@ -9,60 +9,55 @@
#nullable enable
namespace Cvent.SDK.Models.Components
{
+ using Cvent.SDK.Models.Components;
using Cvent.SDK.Utils;
using Newtonsoft.Json;
///
- /// Address details. Required to create/update a guest's reservation if the hotel/event requires an address in reservations.
+ /// Address.
///
public class AddressJson2
{
///
- /// Address line 1.
+ /// The type of the address.
///
- [JsonProperty("address1")]
- public string? Address1 { get; set; }
+ [JsonProperty("type")]
+ public AddressTypeJson Type { get; set; } = default!;
///
- /// Address line 2.
+ /// The street address of the user.
///
- [JsonProperty("address2")]
- public string? Address2 { get; set; }
+ [JsonProperty("streetAddress")]
+ public string? StreetAddress { get; set; }
///
- /// City name.
+ /// The locality/city of the user.
///
- [JsonProperty("city")]
- public string? City { get; set; }
+ [JsonProperty("locality")]
+ public string? Locality { get; set; }
///
- /// Region name.
+ /// The region/state/province of the user.
///
[JsonProperty("region")]
public string? Region { get; set; }
///
- /// Region code.
- ///
- [JsonProperty("regionCode")]
- public string? RegionCode { get; set; }
-
- ///
- /// Postal code.
+ /// Postal code (also known as zipcode) of the user.
///
[JsonProperty("postalCode")]
public string? PostalCode { get; set; }
///
- /// Country name.
+ /// The country of the user.
///
[JsonProperty("country")]
public string? Country { get; set; }
///
- /// ISO 3166 alpha-2 country code.
+ /// True indicates the address is primary.
///
- [JsonProperty("countryCode")]
- public string? CountryCode { get; set; }
+ [JsonProperty("primary")]
+ public bool? Primary { get; set; } = false;
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AddressJson3.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AddressJson3.cs
deleted file mode 100644
index 0e4b17f3..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/AddressJson3.cs
+++ /dev/null
@@ -1,68 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
-//
-// Changes to this file may cause incorrect behavior and will be lost when
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-#nullable enable
-namespace Cvent.SDK.Models.Components
-{
- using Cvent.SDK.Utils;
- using Newtonsoft.Json;
-
- ///
- /// A physical address.
- ///
- public class AddressJson3
- {
- ///
- /// Address line 1.
- ///
- [JsonProperty("address1")]
- public string? Address1 { get; set; }
-
- ///
- /// Address line 2.
- ///
- [JsonProperty("address2")]
- public string? Address2 { get; set; }
-
- ///
- /// City name.
- ///
- [JsonProperty("city")]
- public string? City { get; set; }
-
- ///
- /// Region name.
- ///
- [JsonProperty("region")]
- public string? Region { get; set; }
-
- ///
- /// Region code.
- ///
- [JsonProperty("regionCode")]
- public string? RegionCode { get; set; }
-
- ///
- /// Postal code.
- ///
- [JsonProperty("postalCode")]
- public string? PostalCode { get; set; }
-
- ///
- /// Country name.
- ///
- [JsonProperty("country")]
- public string? Country { get; set; }
-
- ///
- /// ISO 3166 alpha-2 country code.
- ///
- [JsonProperty("countryCode")]
- public string? CountryCode { get; set; }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AddressJson4.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AddressJson4.cs
deleted file mode 100644
index edc9473e..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/AddressJson4.cs
+++ /dev/null
@@ -1,63 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
-//
-// Changes to this file may cause incorrect behavior and will be lost when
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-#nullable enable
-namespace Cvent.SDK.Models.Components
-{
- using Cvent.SDK.Models.Components;
- using Cvent.SDK.Utils;
- using Newtonsoft.Json;
-
- ///
- /// Address.
- ///
- public class AddressJson4
- {
- ///
- /// The type of the address.
- ///
- [JsonProperty("type")]
- public AddressTypeJson1 Type { get; set; } = default!;
-
- ///
- /// The street address of the user.
- ///
- [JsonProperty("streetAddress")]
- public string? StreetAddress { get; set; }
-
- ///
- /// The locality/city of the user.
- ///
- [JsonProperty("locality")]
- public string? Locality { get; set; }
-
- ///
- /// The region/state/province of the user.
- ///
- [JsonProperty("region")]
- public string? Region { get; set; }
-
- ///
- /// Postal code (also known as zipcode) of the user.
- ///
- [JsonProperty("postalCode")]
- public string? PostalCode { get; set; }
-
- ///
- /// The country of the user.
- ///
- [JsonProperty("country")]
- public string? Country { get; set; }
-
- ///
- /// True indicates the address is primary.
- ///
- [JsonProperty("primary")]
- public bool? Primary { get; set; } = false;
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AddressJson5.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AddressJson5.cs
deleted file mode 100644
index 2a49b96f..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/AddressJson5.cs
+++ /dev/null
@@ -1,68 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
-//
-// Changes to this file may cause incorrect behavior and will be lost when
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-#nullable enable
-namespace Cvent.SDK.Models.Components
-{
- using Cvent.SDK.Utils;
- using Newtonsoft.Json;
-
- ///
- /// Address details.
- ///
- public class AddressJson5
- {
- ///
- /// Address line 1.
- ///
- [JsonProperty("address1")]
- public string? Address1 { get; set; }
-
- ///
- /// Address line 2.
- ///
- [JsonProperty("address2")]
- public string? Address2 { get; set; }
-
- ///
- /// City name.
- ///
- [JsonProperty("city")]
- public string? City { get; set; }
-
- ///
- /// Region name.
- ///
- [JsonProperty("region")]
- public string? Region { get; set; }
-
- ///
- /// Region code.
- ///
- [JsonProperty("regionCode")]
- public string? RegionCode { get; set; }
-
- ///
- /// Postal code.
- ///
- [JsonProperty("postalCode")]
- public string? PostalCode { get; set; }
-
- ///
- /// Country name.
- ///
- [JsonProperty("country")]
- public string? Country { get; set; }
-
- ///
- /// ISO 3166 alpha-2 country code.
- ///
- [JsonProperty("countryCode")]
- public string? CountryCode { get; set; }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AddressJsonInput.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AddressJsonInput.cs
deleted file mode 100644
index 0adf5697..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/AddressJsonInput.cs
+++ /dev/null
@@ -1,62 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
-//
-// Changes to this file may cause incorrect behavior and will be lost when
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-#nullable enable
-namespace Cvent.SDK.Models.Components
-{
- using Cvent.SDK.Utils;
- using Newtonsoft.Json;
-
- ///
- /// Contact address details.
- ///
- public class AddressJsonInput
- {
- ///
- /// The first line of an address.
- ///
- [JsonProperty("address1")]
- public string? Address1 { get; set; }
-
- ///
- /// The second line of an address.
- ///
- [JsonProperty("address2")]
- public string? Address2 { get; set; }
-
- ///
- /// The third line of an address.
- ///
- [JsonProperty("address3")]
- public string? Address3 { get; set; }
-
- ///
- /// The name of the city.
- ///
- [JsonProperty("city")]
- public string? City { get; set; }
-
- ///
- /// ISO 3166 two-letter (alpha-2) country code.
- ///
- [JsonProperty("countryCode")]
- public string? CountryCode { get; set; }
-
- ///
- /// Postal code (also known as zipcode) of the address.
- ///
- [JsonProperty("postalCode")]
- public string? PostalCode { get; set; }
-
- ///
- /// The abbreviation of the state/province/region of the address.
- ///
- [JsonProperty("regionCode")]
- public string? RegionCode { get; set; }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AddressTypeJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AddressTypeJson.cs
index 6ae80178..65a28246 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/AddressTypeJson.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/AddressTypeJson.cs
@@ -14,12 +14,12 @@ namespace Cvent.SDK.Models.Components
using System;
///
- /// The type of address.
+ /// The type of the address.
///
public enum AddressTypeJson
{
- [JsonProperty("Home")] Home,
- [JsonProperty("Work")] Work,
+ [JsonProperty("work")] Work,
+ [JsonProperty("home")] Home,
}
public static class AddressTypeJsonExtension
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AddressTypeJson1.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AddressTypeJson1.cs
deleted file mode 100644
index 75eb5c08..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/AddressTypeJson1.cs
+++ /dev/null
@@ -1,57 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
-//
-// Changes to this file may cause incorrect behavior and will be lost when
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-#nullable enable
-namespace Cvent.SDK.Models.Components
-{
- using Cvent.SDK.Utils;
- using Newtonsoft.Json;
- using System;
-
- ///
- /// The type of the address.
- ///
- public enum AddressTypeJson1
- {
- [JsonProperty("work")] Work,
- [JsonProperty("home")] Home,
- }
-
- public static class AddressTypeJson1Extension
- {
- public static string Value(this AddressTypeJson1 value)
- {
- return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString()) [0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
- }
-
- public static AddressTypeJson1 ToEnum(this string value)
- {
- foreach (var field in typeof(AddressTypeJson1).GetFields())
- {
- var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
- if (attributes.Length == 0)
- {
- continue;
- }
-
- var attribute = attributes[0] as JsonPropertyAttribute;
- if (attribute != null && attribute.PropertyName == value)
- {
- var enumVal = field.GetValue(null);
-
- if (enumVal is AddressTypeJson1)
- {
- return (AddressTypeJson1)enumVal;
- }
- }
- }
-
- throw new Exception($"Unknown value {value} for enum AddressTypeJson1");
- }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AgendaItemSetup.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AgendaItemSetup.cs
new file mode 100644
index 00000000..69e18569
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/AgendaItemSetup.cs
@@ -0,0 +1,81 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Cvent.SDK.Models.Components
+{
+ using Cvent.SDK.Utils;
+ using Newtonsoft.Json;
+ using System;
+
+ ///
+ /// Setup type for the agenda.
+ ///
+ public enum AgendaItemSetup
+ {
+ [JsonProperty("BUFFET")] Buffet,
+ [JsonProperty("CABARET")] Cabaret,
+ [JsonProperty("CHEVRON")] Chevron,
+ [JsonProperty("CLASSROOM")] Classroom,
+ [JsonProperty("CONFERENCE")] Conference,
+ [JsonProperty("CRESCENT_ROUNDS")] CrescentRounds,
+ [JsonProperty("EIGHT_BY_TEN")] EightByTen,
+ [JsonProperty("FLOW")] Flow,
+ [JsonProperty("HERRINGBONE")] Herringbone,
+ [JsonProperty("HOLLOW_SQUARE")] HollowSquare,
+ [JsonProperty("ISLAND")] Island,
+ [JsonProperty("OFFSITE")] Offsite,
+ [JsonProperty("OTHER")] Other,
+ [JsonProperty("PENINSULA")] Peninsula,
+ [JsonProperty("PLATED")] Plated,
+ [JsonProperty("RECEPTION")] Reception,
+ [JsonProperty("ROUNDS")] Rounds,
+ [JsonProperty("ROUNDS_OF_10")] RoundsOf10,
+ [JsonProperty("ROUNDS_OF_6")] RoundsOf6,
+ [JsonProperty("ROUNDS_OF_8")] RoundsOf8,
+ [JsonProperty("SCHOOL_ROOM")] SchoolRoom,
+ [JsonProperty("TABLETOP")] Tabletop,
+ [JsonProperty("TEN_BY_TEN")] TenByTen,
+ [JsonProperty("THEATER")] Theater,
+ [JsonProperty("T_SHAPED")] TShaped,
+ [JsonProperty("U_SHAPED")] UShaped,
+ }
+
+ public static class AgendaItemSetupExtension
+ {
+ public static string Value(this AgendaItemSetup value)
+ {
+ return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString()) [0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
+ }
+
+ public static AgendaItemSetup ToEnum(this string value)
+ {
+ foreach (var field in typeof(AgendaItemSetup).GetFields())
+ {
+ var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
+ if (attributes.Length == 0)
+ {
+ continue;
+ }
+
+ var attribute = attributes[0] as JsonPropertyAttribute;
+ if (attribute != null && attribute.PropertyName == value)
+ {
+ var enumVal = field.GetValue(null);
+
+ if (enumVal is AgendaItemSetup)
+ {
+ return (AgendaItemSetup)enumVal;
+ }
+ }
+ }
+
+ throw new Exception($"Unknown value {value} for enum AgendaItemSetup");
+ }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AgendaItemSetupJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AgendaItemSetupJson.cs
deleted file mode 100644
index c69e3df1..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/AgendaItemSetupJson.cs
+++ /dev/null
@@ -1,81 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
-//
-// Changes to this file may cause incorrect behavior and will be lost when
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-#nullable enable
-namespace Cvent.SDK.Models.Components
-{
- using Cvent.SDK.Utils;
- using Newtonsoft.Json;
- using System;
-
- ///
- /// Setup type for the agenda.
- ///
- public enum AgendaItemSetupJson
- {
- [JsonProperty("BUFFET")] Buffet,
- [JsonProperty("CABARET")] Cabaret,
- [JsonProperty("CHEVRON")] Chevron,
- [JsonProperty("CLASSROOM")] Classroom,
- [JsonProperty("CONFERENCE")] Conference,
- [JsonProperty("CRESCENT_ROUNDS")] CrescentRounds,
- [JsonProperty("EIGHT_BY_TEN")] EightByTen,
- [JsonProperty("FLOW")] Flow,
- [JsonProperty("HERRINGBONE")] Herringbone,
- [JsonProperty("HOLLOW_SQUARE")] HollowSquare,
- [JsonProperty("ISLAND")] Island,
- [JsonProperty("OFFSITE")] Offsite,
- [JsonProperty("OTHER")] Other,
- [JsonProperty("PENINSULA")] Peninsula,
- [JsonProperty("PLATED")] Plated,
- [JsonProperty("RECEPTION")] Reception,
- [JsonProperty("ROUNDS")] Rounds,
- [JsonProperty("ROUNDS_OF_10")] RoundsOf10,
- [JsonProperty("ROUNDS_OF_6")] RoundsOf6,
- [JsonProperty("ROUNDS_OF_8")] RoundsOf8,
- [JsonProperty("SCHOOL_ROOM")] SchoolRoom,
- [JsonProperty("TABLETOP")] Tabletop,
- [JsonProperty("TEN_BY_TEN")] TenByTen,
- [JsonProperty("THEATER")] Theater,
- [JsonProperty("T_SHAPED")] TShaped,
- [JsonProperty("U_SHAPED")] UShaped,
- }
-
- public static class AgendaItemSetupJsonExtension
- {
- public static string Value(this AgendaItemSetupJson value)
- {
- return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString()) [0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
- }
-
- public static AgendaItemSetupJson ToEnum(this string value)
- {
- foreach (var field in typeof(AgendaItemSetupJson).GetFields())
- {
- var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
- if (attributes.Length == 0)
- {
- continue;
- }
-
- var attribute = attributes[0] as JsonPropertyAttribute;
- if (attribute != null && attribute.PropertyName == value)
- {
- var enumVal = field.GetValue(null);
-
- if (enumVal is AgendaItemSetupJson)
- {
- return (AgendaItemSetupJson)enumVal;
- }
- }
- }
-
- throw new Exception($"Unknown value {value} for enum AgendaItemSetupJson");
- }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AgendaItemType.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AgendaItemType.cs
new file mode 100644
index 00000000..2b525e8d
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/AgendaItemType.cs
@@ -0,0 +1,74 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Cvent.SDK.Models.Components
+{
+ using Cvent.SDK.Utils;
+ using Newtonsoft.Json;
+ using System;
+
+ ///
+ /// Type of the agenda.
+ ///
+ public enum AgendaItemType
+ {
+ [JsonProperty("BREAK")] Break,
+ [JsonProperty("BREAKFAST")] Breakfast,
+ [JsonProperty("BREAKOUT")] Breakout,
+ [JsonProperty("DINNER")] Dinner,
+ [JsonProperty("EXHIBIT")] Exhibit,
+ [JsonProperty("GENERAL_SESSION")] GeneralSession,
+ [JsonProperty("HOSPITALITY_DESK")] HospitalityDesk,
+ [JsonProperty("HOSPITALITY_SUITE")] HospitalitySuite,
+ [JsonProperty("LUNCH")] Lunch,
+ [JsonProperty("MEETING")] Meeting,
+ [JsonProperty("OFFICE")] Office,
+ [JsonProperty("OTHER")] Other,
+ [JsonProperty("RECEPTION")] Reception,
+ [JsonProperty("REGISTRATION")] Registration,
+ [JsonProperty("SETUP")] Setup,
+ [JsonProperty("SNACK")] Snack,
+ [JsonProperty("SPEAKER_ROOM")] SpeakerRoom,
+ [JsonProperty("STORAGE_ROOM")] StorageRoom,
+ [JsonProperty("TEARDOWN")] Teardown,
+ }
+
+ public static class AgendaItemTypeExtension
+ {
+ public static string Value(this AgendaItemType value)
+ {
+ return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString()) [0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
+ }
+
+ public static AgendaItemType ToEnum(this string value)
+ {
+ foreach (var field in typeof(AgendaItemType).GetFields())
+ {
+ var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
+ if (attributes.Length == 0)
+ {
+ continue;
+ }
+
+ var attribute = attributes[0] as JsonPropertyAttribute;
+ if (attribute != null && attribute.PropertyName == value)
+ {
+ var enumVal = field.GetValue(null);
+
+ if (enumVal is AgendaItemType)
+ {
+ return (AgendaItemType)enumVal;
+ }
+ }
+ }
+
+ throw new Exception($"Unknown value {value} for enum AgendaItemType");
+ }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AgendaItemTypeJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AgendaItemTypeJson.cs
deleted file mode 100644
index a3b1f115..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/AgendaItemTypeJson.cs
+++ /dev/null
@@ -1,74 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
-//
-// Changes to this file may cause incorrect behavior and will be lost when
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-#nullable enable
-namespace Cvent.SDK.Models.Components
-{
- using Cvent.SDK.Utils;
- using Newtonsoft.Json;
- using System;
-
- ///
- /// Type of the agenda.
- ///
- public enum AgendaItemTypeJson
- {
- [JsonProperty("BREAK")] Break,
- [JsonProperty("BREAKFAST")] Breakfast,
- [JsonProperty("BREAKOUT")] Breakout,
- [JsonProperty("DINNER")] Dinner,
- [JsonProperty("EXHIBIT")] Exhibit,
- [JsonProperty("GENERAL_SESSION")] GeneralSession,
- [JsonProperty("HOSPITALITY_DESK")] HospitalityDesk,
- [JsonProperty("HOSPITALITY_SUITE")] HospitalitySuite,
- [JsonProperty("LUNCH")] Lunch,
- [JsonProperty("MEETING")] Meeting,
- [JsonProperty("OFFICE")] Office,
- [JsonProperty("OTHER")] Other,
- [JsonProperty("RECEPTION")] Reception,
- [JsonProperty("REGISTRATION")] Registration,
- [JsonProperty("SETUP")] Setup,
- [JsonProperty("SNACK")] Snack,
- [JsonProperty("SPEAKER_ROOM")] SpeakerRoom,
- [JsonProperty("STORAGE_ROOM")] StorageRoom,
- [JsonProperty("TEARDOWN")] Teardown,
- }
-
- public static class AgendaItemTypeJsonExtension
- {
- public static string Value(this AgendaItemTypeJson value)
- {
- return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString()) [0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
- }
-
- public static AgendaItemTypeJson ToEnum(this string value)
- {
- foreach (var field in typeof(AgendaItemTypeJson).GetFields())
- {
- var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
- if (attributes.Length == 0)
- {
- continue;
- }
-
- var attribute = attributes[0] as JsonPropertyAttribute;
- if (attribute != null && attribute.PropertyName == value)
- {
- var enumVal = field.GetValue(null);
-
- if (enumVal is AgendaItemTypeJson)
- {
- return (AgendaItemTypeJson)enumVal;
- }
- }
- }
-
- throw new Exception($"Unknown value {value} for enum AgendaItemTypeJson");
- }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AmenityType.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AmenityType.cs
new file mode 100644
index 00000000..533aa0f5
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/AmenityType.cs
@@ -0,0 +1,58 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Cvent.SDK.Models.Components
+{
+ using Cvent.SDK.Utils;
+ using Newtonsoft.Json;
+ using System;
+
+ ///
+ /// Amenity type.
+ ///
+ public enum AmenityType
+ {
+ [JsonProperty("included_amenity")] IncludedAmenity,
+ [JsonProperty("amenity")] Amenity,
+ [JsonProperty("bundled_supplement")] BundledSupplement,
+ }
+
+ public static class AmenityTypeExtension
+ {
+ public static string Value(this AmenityType value)
+ {
+ return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString()) [0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
+ }
+
+ public static AmenityType ToEnum(this string value)
+ {
+ foreach (var field in typeof(AmenityType).GetFields())
+ {
+ var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
+ if (attributes.Length == 0)
+ {
+ continue;
+ }
+
+ var attribute = attributes[0] as JsonPropertyAttribute;
+ if (attribute != null && attribute.PropertyName == value)
+ {
+ var enumVal = field.GetValue(null);
+
+ if (enumVal is AmenityType)
+ {
+ return (AmenityType)enumVal;
+ }
+ }
+ }
+
+ throw new Exception($"Unknown value {value} for enum AmenityType");
+ }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AmenityTypeJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AmenityTypeJson.cs
deleted file mode 100644
index 1eaf59c2..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/AmenityTypeJson.cs
+++ /dev/null
@@ -1,58 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
-//
-// Changes to this file may cause incorrect behavior and will be lost when
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-#nullable enable
-namespace Cvent.SDK.Models.Components
-{
- using Cvent.SDK.Utils;
- using Newtonsoft.Json;
- using System;
-
- ///
- /// Amenity type.
- ///
- public enum AmenityTypeJson
- {
- [JsonProperty("included_amenity")] IncludedAmenity,
- [JsonProperty("amenity")] Amenity,
- [JsonProperty("bundled_supplement")] BundledSupplement,
- }
-
- public static class AmenityTypeJsonExtension
- {
- public static string Value(this AmenityTypeJson value)
- {
- return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString()) [0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
- }
-
- public static AmenityTypeJson ToEnum(this string value)
- {
- foreach (var field in typeof(AmenityTypeJson).GetFields())
- {
- var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
- if (attributes.Length == 0)
- {
- continue;
- }
-
- var attribute = attributes[0] as JsonPropertyAttribute;
- if (attribute != null && attribute.PropertyName == value)
- {
- var enumVal = field.GetValue(null);
-
- if (enumVal is AmenityTypeJson)
- {
- return (AmenityTypeJson)enumVal;
- }
- }
- }
-
- throw new Exception($"Unknown value {value} for enum AmenityTypeJson");
- }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AppointmentWithQuestions.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AppointmentWithQuestions.cs
index 6cad0a65..d1e43d63 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/AppointmentWithQuestions.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/AppointmentWithQuestions.cs
@@ -139,6 +139,6 @@ public class AppointmentWithQuestions
/// Collection of custom questions asked to participants of the appointment.
///
[JsonProperty("questions")]
- public List? Questions { get; set; }
+ public List? Questions { get; set; }
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AssetLocation.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AssetLocation.cs
new file mode 100644
index 00000000..dfd3930a
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/AssetLocation.cs
@@ -0,0 +1,26 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Cvent.SDK.Models.Components
+{
+ using Cvent.SDK.Utils;
+ using Newtonsoft.Json;
+
+ ///
+ /// A URL associated with the asset.
+ ///
+ public class AssetLocation
+ {
+ ///
+ /// A pre-signed URL with an expiration of 2 hours to the asset's location.
+ ///
+ [JsonProperty("href")]
+ public string Href { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AssetLocationInput.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AssetLocationInput.cs
new file mode 100644
index 00000000..cd319419
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/AssetLocationInput.cs
@@ -0,0 +1,20 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Cvent.SDK.Models.Components
+{
+ using Cvent.SDK.Utils;
+
+ ///
+ /// A URL associated with the asset.
+ ///
+ public class AssetLocationInput
+ {
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AssetLocationJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AssetLocationJson.cs
deleted file mode 100644
index a7c43b74..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/AssetLocationJson.cs
+++ /dev/null
@@ -1,26 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
-//
-// Changes to this file may cause incorrect behavior and will be lost when
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-#nullable enable
-namespace Cvent.SDK.Models.Components
-{
- using Cvent.SDK.Utils;
- using Newtonsoft.Json;
-
- ///
- /// A URL associated with the asset.
- ///
- public class AssetLocationJson
- {
- ///
- /// A pre-signed URL with an expiration of 2 hours to the asset's location.
- ///
- [JsonProperty("href")]
- public string Href { get; set; } = default!;
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AssetLocationJsonInput.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AssetLocationJsonInput.cs
deleted file mode 100644
index 186fd647..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/AssetLocationJsonInput.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
-//
-// Changes to this file may cause incorrect behavior and will be lost when
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-#nullable enable
-namespace Cvent.SDK.Models.Components
-{
- using Cvent.SDK.Utils;
-
- ///
- /// A URL associated with the asset.
- ///
- public class AssetLocationJsonInput
- {
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AttachmentSource.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AttachmentSource.cs
new file mode 100644
index 00000000..c580bf7b
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/AttachmentSource.cs
@@ -0,0 +1,60 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Cvent.SDK.Models.Components
+{
+ using Cvent.SDK.Utils;
+ using Newtonsoft.Json;
+ using System;
+
+ ///
+ /// The source from where the attachment was uploaded.
+ ///
+ public enum AttachmentSource
+ {
+ [JsonProperty("FILE_COPY_ADMIN_LIBRARY")] FileCopyAdminLibrary,
+ [JsonProperty("FILE_UPLOAD_LINK_URL")] FileUploadLinkUrl,
+ [JsonProperty("FILE_UPLOAD_TO_CUSTOM_DRIVE")] FileUploadToCustomDrive,
+ [JsonProperty("FILE_UPLOAD_TO_TEMP_LOCATION")] FileUploadToTempLocation,
+ [JsonProperty("USER_DOCUMENT_LINK_URL")] UserDocumentLinkUrl,
+ }
+
+ public static class AttachmentSourceExtension
+ {
+ public static string Value(this AttachmentSource value)
+ {
+ return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString()) [0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
+ }
+
+ public static AttachmentSource ToEnum(this string value)
+ {
+ foreach (var field in typeof(AttachmentSource).GetFields())
+ {
+ var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
+ if (attributes.Length == 0)
+ {
+ continue;
+ }
+
+ var attribute = attributes[0] as JsonPropertyAttribute;
+ if (attribute != null && attribute.PropertyName == value)
+ {
+ var enumVal = field.GetValue(null);
+
+ if (enumVal is AttachmentSource)
+ {
+ return (AttachmentSource)enumVal;
+ }
+ }
+ }
+
+ throw new Exception($"Unknown value {value} for enum AttachmentSource");
+ }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AttachmentSourceJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AttachmentSourceJson.cs
deleted file mode 100644
index eddf4c05..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/AttachmentSourceJson.cs
+++ /dev/null
@@ -1,60 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
-//
-// Changes to this file may cause incorrect behavior and will be lost when
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-#nullable enable
-namespace Cvent.SDK.Models.Components
-{
- using Cvent.SDK.Utils;
- using Newtonsoft.Json;
- using System;
-
- ///
- /// The source from where the attachment was uploaded.
- ///
- public enum AttachmentSourceJson
- {
- [JsonProperty("FILE_COPY_ADMIN_LIBRARY")] FileCopyAdminLibrary,
- [JsonProperty("FILE_UPLOAD_LINK_URL")] FileUploadLinkUrl,
- [JsonProperty("FILE_UPLOAD_TO_CUSTOM_DRIVE")] FileUploadToCustomDrive,
- [JsonProperty("FILE_UPLOAD_TO_TEMP_LOCATION")] FileUploadToTempLocation,
- [JsonProperty("USER_DOCUMENT_LINK_URL")] UserDocumentLinkUrl,
- }
-
- public static class AttachmentSourceJsonExtension
- {
- public static string Value(this AttachmentSourceJson value)
- {
- return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString()) [0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
- }
-
- public static AttachmentSourceJson ToEnum(this string value)
- {
- foreach (var field in typeof(AttachmentSourceJson).GetFields())
- {
- var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
- if (attributes.Length == 0)
- {
- continue;
- }
-
- var attribute = attributes[0] as JsonPropertyAttribute;
- if (attribute != null && attribute.PropertyName == value)
- {
- var enumVal = field.GetValue(null);
-
- if (enumVal is AttachmentSourceJson)
- {
- return (AttachmentSourceJson)enumVal;
- }
- }
- }
-
- throw new Exception($"Unknown value {value} for enum AttachmentSourceJson");
- }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/Attendee.cs b/packages/csharp/src/Cvent/SDK/Models/Components/Attendee.cs
new file mode 100644
index 00000000..27b6fb26
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/Attendee.cs
@@ -0,0 +1,26 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Cvent.SDK.Models.Components
+{
+ using Cvent.SDK.Utils;
+ using Newtonsoft.Json;
+
+ ///
+ /// The reference to the attendee. Contains only the ID of the attendee.
+ ///
+ public class Attendee
+ {
+ ///
+ /// Unique identifier of the primary invitee for the current attendee's registration.
+ ///
+ [JsonProperty("id")]
+ public string Id { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/Attendee1.cs b/packages/csharp/src/Cvent/SDK/Models/Components/Attendee1.cs
deleted file mode 100644
index 2689580d..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/Attendee1.cs
+++ /dev/null
@@ -1,314 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
-//
-// Changes to this file may cause incorrect behavior and will be lost when
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-#nullable enable
-namespace Cvent.SDK.Models.Components
-{
- using Cvent.SDK.Models.Components;
- using Cvent.SDK.Utils;
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
-
- ///
- /// An event attendee.
- ///
- public class Attendee1
- {
- ///
- /// The ISO 8601 zoned date time when this record was created.
- ///
- [JsonProperty("created")]
- public DateTime? Created { get; set; }
-
- ///
- /// The identifier of the user that created this record.
- ///
- [JsonProperty("createdBy")]
- public string? CreatedBy { get; set; }
-
- ///
- /// The ISO 8601 zoned date time when this record was updated.
- ///
- [JsonProperty("lastModified")]
- public DateTime? LastModified { get; set; }
-
- ///
- /// The identifier of the user that last updated this record.
- ///
- [JsonProperty("lastModifiedBy")]
- public string? LastModifiedBy { get; set; }
-
- ///
- /// The ID of attendee in the given event.
- ///
- [JsonProperty("id")]
- public string? Id { get; set; }
-
- ///
- /// The attendee's associated event.
- ///
- [JsonProperty("event")]
- public AttendeeEvent? Event { get; set; }
-
- ///
- /// The confirmation number is a code unique to each attendee. Cvent assigns one to the attendee upon registration for the event. Serves as proof of registration.
- ///
- [JsonProperty("confirmationNumber")]
- public string? ConfirmationNumber { get; set; }
-
- ///
- /// Information about attendee contact added to an event.
- ///
- [JsonProperty("contact")]
- public AttendeeContactInfo? Contact { get; set; }
-
- ///
- /// True indicates the attendee checked in to the event.
- ///
- [JsonProperty("checkedIn")]
- public bool? CheckedIn { get; set; }
-
- ///
- /// The date time when attendee was checked in to an event. Note: this field is deprecated. Please use the `checkIn` field instead.
- ///
- [Obsolete("This field will be removed in a future release, please migrate away from it as soon as possible")]
- [JsonProperty("checkin")]
- public DateTime? Checkin { get; set; }
-
- ///
- /// The ISO 8601 zoned date time when attendee was checked in to an event.
- ///
- [JsonProperty("checkIn")]
- public DateTime? CheckIn { get; set; }
-
- ///
- /// The ISO 8601 zoned date time when attendee checked out from an event.
- ///
- [JsonProperty("checkOut")]
- public DateTime? CheckOut { get; set; }
-
- ///
- /// The duration, in milliseconds, the attendee was present at the event.
- ///
- [JsonProperty("duration")]
- public long? Duration { get; set; }
-
- ///
- /// Lookup response object.
- ///
- [JsonProperty("registrationPath")]
- public Lookup? RegistrationPath { get; set; }
-
- ///
- /// A Named object.
- ///
- [JsonProperty("invitationList")]
- public NamedObject? InvitationList { get; set; }
-
- ///
- /// Web links for an attendee.
- ///
- [JsonProperty("webLinks")]
- public AttendeeWebLinks? WebLinks { get; set; }
-
- ///
- /// Lookup response object.
- ///
- [JsonProperty("registrationType")]
- public Lookup? RegistrationType { get; set; }
-
- ///
- /// The reference ID of an attendee. A planner determined string used to track which link attendee's used to reach the event registration.
- ///
- [JsonProperty("referenceId")]
- public string? ReferenceId { get; set; }
-
- ///
- /// The details of an attendee in an external systems.
- ///
- [JsonProperty("externalReferences")]
- public List? ExternalReferences { get; set; }
-
- ///