diff --git a/.speakeasy/workflow.lock b/.speakeasy/workflow.lock
index 4aa709f3..4861db5b 100644
--- a/.speakeasy/workflow.lock
+++ b/.speakeasy/workflow.lock
@@ -2,8 +2,8 @@ speakeasyVersion: 1.752.0
sources:
Public:
sourceNamespace: public
- sourceRevisionDigest: sha256:eea710d10651d03bb44e346d572f686a5b86c8762ff811bbb23cc412eca3f3b6
- sourceBlobDigest: sha256:74640e2387592cd4f2b25a61ef767dac8e3bc2b13e2c314e5a4cd6620039fe68
+ sourceRevisionDigest: sha256:fb9c696c7a1e1d84b5c7d175bed0ff73aa911fd2c6a645bedfd526ce395855fe
+ sourceBlobDigest: sha256:71cb3b73004dc8795997692168fdedd1f058f017a1bd3c88e88b3fae4db717ed
tags:
- latest
- ea
@@ -11,24 +11,24 @@ targets:
public-csharp:
source: Public
sourceNamespace: public
- sourceRevisionDigest: sha256:eea710d10651d03bb44e346d572f686a5b86c8762ff811bbb23cc412eca3f3b6
- sourceBlobDigest: sha256:74640e2387592cd4f2b25a61ef767dac8e3bc2b13e2c314e5a4cd6620039fe68
+ sourceRevisionDigest: sha256:fb9c696c7a1e1d84b5c7d175bed0ff73aa911fd2c6a645bedfd526ce395855fe
+ sourceBlobDigest: sha256:71cb3b73004dc8795997692168fdedd1f058f017a1bd3c88e88b3fae4db717ed
codeSamplesNamespace: csharp
- codeSamplesRevisionDigest: sha256:08d518fb82395ea2630acedca6612aa1df161056d8d8d16db34a5750a28f3c29
+ codeSamplesRevisionDigest: sha256:ca65b710d555326f3e959f9da0af139bb4565fb2944a06034263ee01285ad7e6
public-java:
source: Public
sourceNamespace: public
- sourceRevisionDigest: sha256:eea710d10651d03bb44e346d572f686a5b86c8762ff811bbb23cc412eca3f3b6
- sourceBlobDigest: sha256:74640e2387592cd4f2b25a61ef767dac8e3bc2b13e2c314e5a4cd6620039fe68
+ sourceRevisionDigest: sha256:fb9c696c7a1e1d84b5c7d175bed0ff73aa911fd2c6a645bedfd526ce395855fe
+ sourceBlobDigest: sha256:71cb3b73004dc8795997692168fdedd1f058f017a1bd3c88e88b3fae4db717ed
codeSamplesNamespace: java
- codeSamplesRevisionDigest: sha256:f8ef947e0acf5a8fee435d9205ab11d56912f19c3b3d47944164eadd801dc296
+ codeSamplesRevisionDigest: sha256:802c55559801d2c82b92abf243767d9e0a36829bc68b1c8f54113affeeff149b
public-typescript:
source: Public
sourceNamespace: public
- sourceRevisionDigest: sha256:eea710d10651d03bb44e346d572f686a5b86c8762ff811bbb23cc412eca3f3b6
- sourceBlobDigest: sha256:74640e2387592cd4f2b25a61ef767dac8e3bc2b13e2c314e5a4cd6620039fe68
+ sourceRevisionDigest: sha256:fb9c696c7a1e1d84b5c7d175bed0ff73aa911fd2c6a645bedfd526ce395855fe
+ sourceBlobDigest: sha256:71cb3b73004dc8795997692168fdedd1f058f017a1bd3c88e88b3fae4db717ed
codeSamplesNamespace: typescript
- codeSamplesRevisionDigest: sha256:f748331da48fdebcb44699f5df52b998a7fbddc3a3b00a02e26567909c3e00b7
+ codeSamplesRevisionDigest: sha256:393123ecf1afde5d8bcd4d5fb849d55f70668618033f1a0ed1821075b5e4c3d4
workflow:
workflowVersion: 1.0.0
speakeasyVersion: 1.752.0
diff --git a/cvent-public-spec/openapi.yaml b/cvent-public-spec/openapi.yaml
index 941c585a..743ff793 100644
--- a/cvent-public-spec/openapi.yaml
+++ b/cvent-public-spec/openapi.yaml
@@ -1851,6 +1851,42 @@ paths:
/attendees/{attendeeId}/audience-segments:
parameters:
- $ref: '#/components/parameters/attendeeId1'
+ get:
+ summary: List Associated Segments
+ description: Gets a paginated list of ACTIVE audience segment associations for the attendee. Use the filter query parameter to filter by segment ID.
+ operationId: listAttendeeAudienceSegments
+ parameters:
+ - $ref: '#/components/parameters/limit'
+ - $ref: '#/components/parameters/token'
+ - $ref: '#/components/parameters/filter-attendee-audience-segments'
+ tags:
+ - Audience Segments
+ security:
+ - OAuth2.clientCredentials:
+ - event/audience-segments:read
+ - OAuth2.authorizationCode:
+ - event/audience-segments:read
+ responses:
+ '200':
+ description: Successfully retrieved list of audience segments associated with the attendee.
+ headers: {}
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/attendee-audience-segment-associations-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'
+ externalDocs:
+ description: More about OAuth2 authorization code support for administrators
+ url: '#oauth2-auth-code-planner-admin'
delete:
summary: Delete Attendee Associations
description: disassociate an attendee from all audience segments
@@ -1877,6 +1913,65 @@ paths:
externalDocs:
description: More about OAuth2 authorization code support for administrators
url: '#oauth2-auth-code-planner-admin'
+ /attendees/{attendeeId}/audience-segments/filter:
+ parameters:
+ - $ref: '#/components/parameters/attendeeId1'
+ post:
+ summary: List Associated Segments
+ description: |
+ Gets a paginated list of ACTIVE audience segment associations for the attendee by sending filter in the body of the request. This method returns the same data as [GET List Associated Segments](#operation/listAttendeeAudienceSegments) but allows for longer filters.
+ operationId: listAssociatedAudienceSegments
+ parameters:
+ - $ref: '#/components/parameters/limit'
+ - $ref: '#/components/parameters/token'
+ tags:
+ - Audience Segments
+ security:
+ - OAuth2.clientCredentials:
+ - event/audience-segments:read
+ - OAuth2.authorizationCode:
+ - event/audience-segments:read
+ requestBody:
+ description: |
+ Use the filter property in the request body to limit results
+ to data that matches your criteria. See
+ [Filters](/docs/rest-api/reference/filters) for details.
+
+ Supported fields and operators are listed below:
+
+ | Field | Operators |
+ |------------------|-------------------------------------|
+ | segment.id | `eq`, `in` |
+
+ No logical operators are supported.
+ required: true
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/filter'
+ example:
+ filter: segment.id in ('313097a4-143d-11e5-9f99-d0a637ee0897', '423097a4-143d-11e5-9f99-d0a637ee0897')
+ responses:
+ '200':
+ description: Successfully retrieved list of audience segments associated with the attendee.
+ headers: {}
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/attendee-audience-segment-associations-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'
+ externalDocs:
+ description: More about OAuth2 authorization code support for administrators
+ url: '#oauth2-auth-code-planner-admin'
/attendees/{id}:
parameters:
- $ref: '#/components/parameters/attendeeId2'
@@ -2616,11 +2711,11 @@ paths:
schema:
$ref: '#/components/schemas/bulk-job-with-data'
'400':
- $ref: '#/components/responses/BadRequest34'
+ $ref: '#/components/responses/BadRequest35'
'401':
- $ref: '#/components/responses/Unauthorized34'
+ $ref: '#/components/responses/Unauthorized35'
'403':
- $ref: '#/components/responses/Forbidden34'
+ $ref: '#/components/responses/Forbidden35'
'409':
$ref: '#/components/responses/JobLimitExceeded'
'429':
@@ -2628,7 +2723,7 @@ paths:
deprecated: false
/bulk-jobs/{id}:
parameters:
- - $ref: '#/components/parameters/uuid'
+ - $ref: '#/components/parameters/uuid1'
get:
summary: Get Bulk Job
description: Gets a bulk job by its identifier.
@@ -2647,18 +2742,18 @@ paths:
schema:
$ref: '#/components/schemas/bulk-job'
'400':
- $ref: '#/components/responses/BadRequest34'
+ $ref: '#/components/responses/BadRequest35'
'401':
- $ref: '#/components/responses/Unauthorized34'
+ $ref: '#/components/responses/Unauthorized35'
'403':
- $ref: '#/components/responses/Forbidden34'
+ $ref: '#/components/responses/Forbidden35'
'404':
- $ref: '#/components/responses/NotFound34'
+ $ref: '#/components/responses/NotFound35'
'429':
$ref: '#/components/responses/TooManyRequests34'
/bulk-jobs/{id}/cancel:
parameters:
- - $ref: '#/components/parameters/uuid'
+ - $ref: '#/components/parameters/uuid1'
post:
summary: Cancel Bulk Job
description: Cancels the bulk job. The job will stop processing after it finishes processing its current batch, if any.
@@ -2677,18 +2772,18 @@ paths:
schema:
$ref: '#/components/schemas/bulk-job'
'400':
- $ref: '#/components/responses/BadRequest34'
+ $ref: '#/components/responses/BadRequest35'
'401':
- $ref: '#/components/responses/Unauthorized34'
+ $ref: '#/components/responses/Unauthorized35'
'403':
- $ref: '#/components/responses/Forbidden34'
+ $ref: '#/components/responses/Forbidden35'
'404':
- $ref: '#/components/responses/NotFound34'
+ $ref: '#/components/responses/NotFound35'
'429':
$ref: '#/components/responses/TooManyRequests34'
/bulk-jobs/{id}/data:
parameters:
- - $ref: '#/components/parameters/uuid'
+ - $ref: '#/components/parameters/uuid1'
post:
summary: Upload Bulk Job Data
description: |
@@ -2718,20 +2813,20 @@ paths:
schema:
$ref: '#/components/schemas/bulk-data-upload-response'
'400':
- $ref: '#/components/responses/BadRequest34'
+ $ref: '#/components/responses/BadRequest35'
'401':
- $ref: '#/components/responses/Unauthorized34'
+ $ref: '#/components/responses/Unauthorized35'
'403':
- $ref: '#/components/responses/Forbidden34'
+ $ref: '#/components/responses/Forbidden35'
'404':
- $ref: '#/components/responses/NotFound34'
+ $ref: '#/components/responses/NotFound35'
'409':
$ref: '#/components/responses/DataLimitExceeded'
'429':
$ref: '#/components/responses/TooManyRequests34'
/bulk-jobs/{id}/results:
parameters:
- - $ref: '#/components/parameters/uuid'
+ - $ref: '#/components/parameters/uuid1'
get:
summary: List Bulk Job Result
description: Used to list the results of a bulk Job.
@@ -2771,18 +2866,18 @@ paths:
schema:
$ref: '#/components/schemas/bulk-results-paginated-response'
'400':
- $ref: '#/components/responses/BadRequest34'
+ $ref: '#/components/responses/BadRequest35'
'401':
- $ref: '#/components/responses/Unauthorized34'
+ $ref: '#/components/responses/Unauthorized35'
'403':
- $ref: '#/components/responses/Forbidden34'
+ $ref: '#/components/responses/Forbidden35'
'404':
- $ref: '#/components/responses/NotFound34'
+ $ref: '#/components/responses/NotFound35'
'429':
$ref: '#/components/responses/TooManyRequests34'
/bulk-jobs/{id}/run:
parameters:
- - $ref: '#/components/parameters/uuid'
+ - $ref: '#/components/parameters/uuid1'
post:
summary: Run Bulk Job
description: |-
@@ -2804,13 +2899,13 @@ paths:
schema:
$ref: '#/components/schemas/bulk-job'
'400':
- $ref: '#/components/responses/BadRequest34'
+ $ref: '#/components/responses/BadRequest35'
'401':
- $ref: '#/components/responses/Unauthorized34'
+ $ref: '#/components/responses/Unauthorized35'
'403':
- $ref: '#/components/responses/Forbidden34'
+ $ref: '#/components/responses/Forbidden35'
'404':
- $ref: '#/components/responses/NotFound34'
+ $ref: '#/components/responses/NotFound35'
'409':
$ref: '#/components/responses/JobLimitExceeded'
'429':
@@ -5441,6 +5536,8 @@ paths:
parameters:
- $ref: '#/components/parameters/eventRoleAssignmentLimit'
- $ref: '#/components/parameters/token'
+ - $ref: '#/components/parameters/after'
+ - $ref: '#/components/parameters/before'
- $ref: '#/components/parameters/eventRoleExpand'
- name: filter
in: query
@@ -7072,7 +7169,7 @@ paths:
/events/{id}/check-in/{attendeeId}:
parameters:
- $ref: '#/components/parameters/id4'
- - $ref: '#/components/parameters/attendeeId3'
+ - $ref: '#/components/parameters/attendeeId4'
delete:
security:
- OAuth2.clientCredentials:
@@ -7430,17 +7527,19 @@ 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.
- Only 'includes value(s): in' comparison type can be used in filter expression.
+ Supported fields and operators are listed below:
- The following fields are filterable:
- * id (in)
- * registrationTypes (in)
+ | Field | Operators |
+ |-------------------|-----------|
+ | id | `in` |
+ | registrationTypes | `in` |
- The following operator is available:
- * and
+ The following logical operators are supported for combining filters:
+ * and
schema:
type: string
example: id in ('1b01ae34-6970-41f2-a4e8-b4f39185dc15', '1b01ae34-6970-41f2-a4e8-b4f39185dc16') and registrationTypes in ('1b01ae34-6970-41f2-a4e8-b4f39185dc28')
@@ -9663,28 +9762,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'.
+ 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)
- * product.id (eq|ne)
- * generalLedgerCodes.id (eq|ne)
- * product.type (eq|ne)
- * created (eq|ne|lt|le|gt|ge)
- * lastModified (eq|ne|lt|le|gt|ge)
+ | Field | Operators |
+ |-----------------------|------------------------------------|
+ | id | `eq`, `ne` |
+ | product.id | `eq`, `ne` |
+ | generalLedgerCodes.id | `eq`, `ne` |
+ | product.type | `eq`, `ne` |
+ | created | `eq`, `ne`, `lt`, `le`, `gt`, `ge` |
+ | lastModified | `eq`, `ne`, `lt`, `le`, `gt`, `ge` |
- The following operators are available:
- * and
- * or
+ The following logical operators are supported for combining filters:
+ * and
+ * or
schema:
type: string
example: id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' or product.id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d6'
@@ -9835,17 +9930,19 @@ 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.
- Only 'includes value(s): in' comparison type can be used in filter expression.
+ Supported fields and operators are listed below:
- The following fields are filterable:
- * id (in)
- * registrationTypes (in)
+ | Field | Operators |
+ |-------------------|-----------|
+ | id | `in` |
+ | registrationTypes | `in` |
- The following operator is available:
- * and
+ The following logical operators are supported for combining filters:
+ * and
schema:
type: string
example: id in ('1b01ae34-6970-41f2-a4e8-b4f39185dc15', '1b01ae34-6970-41f2-a4e8-b4f39185dc16') and registrationTypes in ('1b01ae34-6970-41f2-a4e8-b4f39185dc28')
@@ -9867,6 +9964,51 @@ paths:
$ref: '#/components/responses/NotFound1'
'429':
$ref: '#/components/responses/TooManyRequests1'
+ /events/{id}/membership-items/filter:
+ post:
+ summary: List Membership Items
+ operationId: listMembershipItemsPostFilter
+ tags:
+ - Events
+ security:
+ - OAuth2.clientCredentials:
+ - event/membership-items:read
+ - OAuth2.authorizationCode:
+ - event/membership-items:read
+ description: |
+ Gets a paginated list of membership items. [Membership items](https://support.cvent.com/s/communityarticle/Setting-Up-Memberships) are a type of [optional item](https://support.cvent.com/s/communityarticle/Understanding-Agenda-Items) that can be purchased during registration.
+ parameters:
+ - $ref: '#/components/parameters/eventId2'
+ - $ref: '#/components/parameters/limit'
+ - $ref: '#/components/parameters/token'
+ requestBody:
+ description: |
+ See the parameter description of filter in GET List Membership Items for full filtering information.
+ required: false
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/filter'
+ example:
+ filter: id in ('1b01ae34-6970-41f2-a4e8-b4f39185dc15', '1b01ae34-6970-41f2-a4e8-b4f39185dc16')
+ responses:
+ '200':
+ description: Successfully retrieved a paginated list of membership items.
+ headers: {}
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/membership-items-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}/orders:
get:
security:
@@ -10145,17 +10287,19 @@ 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.
- Only 'includes value(s): in' comparison type can be used in filter expression.
+ Supported fields and operators are listed below:
- The following fields are filterable:
- * id (in)
- * registrationTypes (in)
+ | Field | Operators |
+ |-------------------|-----------|
+ | id | `in` |
+ | registrationTypes | `in` |
- The following operator is available:
- * and
+ The following logical operators are supported for combining filters:
+ * and
schema:
type: string
example: id in ('1b01ae34-6970-41f2-a4e8-b4f39185dc15', '1b01ae34-6970-41f2-a4e8-b4f39185dc16') and registrationTypes in ('1b01ae34-6970-41f2-a4e8-b4f39185dc28')
@@ -11696,7 +11840,7 @@ paths:
- housing/housing-event-hotels:read
parameters:
- $ref: '#/components/parameters/housingEventId'
- - $ref: '#/components/parameters/hotelId'
+ - $ref: '#/components/parameters/hotelId1'
- $ref: '#/components/parameters/locale1'
responses:
'200':
@@ -11728,7 +11872,7 @@ paths:
- housing/housing-event-available-nights:read
parameters:
- $ref: '#/components/parameters/housingEventId'
- - $ref: '#/components/parameters/hotelId'
+ - $ref: '#/components/parameters/hotelId1'
- $ref: '#/components/parameters/availableNightsFilter'
- $ref: '#/components/parameters/availabilityLimit'
- $ref: '#/components/parameters/paginationParam'
@@ -11762,7 +11906,7 @@ paths:
- housing/housing-event-room-types:read
parameters:
- $ref: '#/components/parameters/housingEventId'
- - $ref: '#/components/parameters/hotelId'
+ - $ref: '#/components/parameters/hotelId1'
- $ref: '#/components/parameters/limitParam'
- $ref: '#/components/parameters/paginationParam'
- $ref: '#/components/parameters/roomTypesFilter'
@@ -11797,7 +11941,7 @@ paths:
- housing/housing-event-room-types:read
parameters:
- $ref: '#/components/parameters/housingEventId'
- - $ref: '#/components/parameters/hotelId'
+ - $ref: '#/components/parameters/hotelId1'
- $ref: '#/components/parameters/roomTypeId'
- $ref: '#/components/parameters/locale1'
responses:
@@ -11830,7 +11974,7 @@ paths:
- housing/housing-event-inventory:read
parameters:
- $ref: '#/components/parameters/housingEventId'
- - $ref: '#/components/parameters/hotelId'
+ - $ref: '#/components/parameters/hotelId1'
- $ref: '#/components/parameters/roomTypeId'
- $ref: '#/components/parameters/limitParam'
- $ref: '#/components/parameters/paginationParam'
@@ -12478,7 +12622,10 @@ paths:
- OAuth2.authorizationCode:
- event/meeting-requests:write
summary: Create MR (Bulk)
- description: Creates a collection of meeting requests for a given active form. For complex questions such as Meeting Room Requirements, Sleeping Room Requirements, or Budget Estimates, send the answer as a JSON-serialized string. See the question schema and the [Complex Questions Guide](/docs/rest-api/guides/meeting-request-complex-questions) for details.
+ description: |-
+ Creates a collection of meeting requests for a given active form. For complex questions such as Meeting Room Requirements, Sleeping Room Requirements, or Budget Estimates, send the answer as a JSON-serialized string. See the question schema and the [Complex Questions Guide](/docs/rest-api/guides/meeting-request-complex-questions) for details.
+
+ **Note:** If the meeting request form is configured to auto-create an event upon submission, the `event.id` field may not be populated in the response at the time of initial creation. Event creation is processed asynchronously after the meeting request is saved. To retrieve the associated event ID once it is available, poll the [Get MR](/documentation#tag/Meeting-Request/operation/getMeetingRequestById) endpoint.
parameters:
- in: query
name: skipRequiredQuestionValidation
@@ -12525,7 +12672,10 @@ paths:
- OAuth2.authorizationCode:
- event/meeting-requests:write
summary: Update MR (Bulk)
- description: Updates a collection of meeting requests for a given form, adding information to the existing meeting requests. For complex questions such as Meeting Room Requirements, Sleeping Room Requirements, or Budget Estimates, send the answer as a JSON-serialized string. See the question schema and the [Complex Questions Guide](/docs/rest-api/guides/meeting-request-complex-questions) for details.
+ description: |-
+ Updates a collection of meeting requests for a given form, adding information to the existing meeting requests. For complex questions such as Meeting Room Requirements, Sleeping Room Requirements, or Budget Estimates, send the answer as a JSON-serialized string. See the question schema and the [Complex Questions Guide](/docs/rest-api/guides/meeting-request-complex-questions) for details.
+
+ **Note:** If the meeting request form is configured to auto-create an event upon submission, the `event.id` field may not be populated in the response at the time of the update. Event creation is processed asynchronously after the meeting request is saved. To retrieve the associated event ID once it is available, poll the [Get MR](/documentation#tag/Meeting-Request/operation/getMeetingRequestById) endpoint.
parameters:
- in: query
name: skipRequiredQuestionValidation
@@ -14660,11 +14810,11 @@ paths:
'200':
$ref: '#/components/responses/UsersGroupsResponse'
'400':
- $ref: '#/components/responses/BadRequest25'
+ $ref: '#/components/responses/BadRequest26'
'401':
- $ref: '#/components/responses/Unauthorized25'
+ $ref: '#/components/responses/Unauthorized26'
'403':
- $ref: '#/components/responses/Forbidden25'
+ $ref: '#/components/responses/Forbidden26'
'429':
$ref: '#/components/responses/TooManyRequests25'
externalDocs:
@@ -14686,9 +14836,9 @@ paths:
'200':
$ref: '#/components/responses/ResourceTypes'
'401':
- $ref: '#/components/responses/Unauthorized25'
+ $ref: '#/components/responses/Unauthorized26'
'403':
- $ref: '#/components/responses/Forbidden25'
+ $ref: '#/components/responses/Forbidden26'
'429':
$ref: '#/components/responses/TooManyRequests25'
externalDocs:
@@ -14716,13 +14866,13 @@ paths:
schema:
$ref: '#/components/schemas/ResourceType'
'400':
- $ref: '#/components/responses/BadRequest25'
+ $ref: '#/components/responses/BadRequest26'
'401':
- $ref: '#/components/responses/Unauthorized25'
+ $ref: '#/components/responses/Unauthorized26'
'403':
- $ref: '#/components/responses/Forbidden25'
+ $ref: '#/components/responses/Forbidden26'
'404':
- $ref: '#/components/responses/NotFound25'
+ $ref: '#/components/responses/NotFound26'
'429':
$ref: '#/components/responses/TooManyRequests25'
externalDocs:
@@ -14744,9 +14894,9 @@ paths:
'200':
$ref: '#/components/responses/UsersSchemaResponse'
'401':
- $ref: '#/components/responses/Unauthorized25'
+ $ref: '#/components/responses/Unauthorized26'
'403':
- $ref: '#/components/responses/Forbidden25'
+ $ref: '#/components/responses/Forbidden26'
'429':
$ref: '#/components/responses/TooManyRequests25'
externalDocs:
@@ -14774,13 +14924,13 @@ paths:
schema:
$ref: '#/components/schemas/UsersSchema'
'400':
- $ref: '#/components/responses/BadRequest25'
+ $ref: '#/components/responses/BadRequest26'
'401':
- $ref: '#/components/responses/Unauthorized25'
+ $ref: '#/components/responses/Unauthorized26'
'403':
- $ref: '#/components/responses/Forbidden25'
+ $ref: '#/components/responses/Forbidden26'
'404':
- $ref: '#/components/responses/NotFound25'
+ $ref: '#/components/responses/NotFound26'
'429':
$ref: '#/components/responses/TooManyRequests25'
externalDocs:
@@ -14802,9 +14952,9 @@ paths:
'200':
$ref: '#/components/responses/ServiceProviderConfig'
'401':
- $ref: '#/components/responses/Unauthorized25'
+ $ref: '#/components/responses/Unauthorized26'
'403':
- $ref: '#/components/responses/Forbidden25'
+ $ref: '#/components/responses/Forbidden26'
'429':
$ref: '#/components/responses/TooManyRequests25'
externalDocs:
@@ -14835,11 +14985,11 @@ paths:
schema:
$ref: '#/components/schemas/User'
'400':
- $ref: '#/components/responses/BadRequest25'
+ $ref: '#/components/responses/BadRequest26'
'401':
- $ref: '#/components/responses/Unauthorized25'
+ $ref: '#/components/responses/Unauthorized26'
'403':
- $ref: '#/components/responses/Forbidden25'
+ $ref: '#/components/responses/Forbidden26'
'409':
$ref: '#/components/responses/Conflict16'
'429':
@@ -14899,11 +15049,11 @@ paths:
schema:
$ref: '#/components/schemas/Users'
'400':
- $ref: '#/components/responses/BadRequest25'
+ $ref: '#/components/responses/BadRequest26'
'401':
- $ref: '#/components/responses/Unauthorized25'
+ $ref: '#/components/responses/Unauthorized26'
'403':
- $ref: '#/components/responses/Forbidden25'
+ $ref: '#/components/responses/Forbidden26'
'429':
$ref: '#/components/responses/TooManyRequests25'
externalDocs:
@@ -14931,13 +15081,13 @@ paths:
schema:
$ref: '#/components/schemas/User'
'400':
- $ref: '#/components/responses/BadRequest25'
+ $ref: '#/components/responses/BadRequest26'
'401':
- $ref: '#/components/responses/Unauthorized25'
+ $ref: '#/components/responses/Unauthorized26'
'403':
- $ref: '#/components/responses/Forbidden25'
+ $ref: '#/components/responses/Forbidden26'
'404':
- $ref: '#/components/responses/NotFound25'
+ $ref: '#/components/responses/NotFound26'
'429':
$ref: '#/components/responses/TooManyRequests25'
externalDocs:
@@ -14969,13 +15119,13 @@ paths:
schema:
$ref: '#/components/schemas/User'
'400':
- $ref: '#/components/responses/BadRequest25'
+ $ref: '#/components/responses/BadRequest26'
'401':
- $ref: '#/components/responses/Unauthorized25'
+ $ref: '#/components/responses/Unauthorized26'
'403':
- $ref: '#/components/responses/Forbidden25'
+ $ref: '#/components/responses/Forbidden26'
'404':
- $ref: '#/components/responses/NotFound25'
+ $ref: '#/components/responses/NotFound26'
'429':
$ref: '#/components/responses/TooManyRequests25'
externalDocs:
@@ -14999,11 +15149,11 @@ paths:
description: Successfully deleted a User.
headers: {}
'401':
- $ref: '#/components/responses/Unauthorized25'
+ $ref: '#/components/responses/Unauthorized26'
'403':
- $ref: '#/components/responses/Forbidden25'
+ $ref: '#/components/responses/Forbidden26'
'404':
- $ref: '#/components/responses/NotFound25'
+ $ref: '#/components/responses/NotFound26'
'429':
$ref: '#/components/responses/TooManyRequests25'
externalDocs:
@@ -15636,7 +15786,7 @@ paths:
/sessions/{id}/attendance/{attendeeId}:
parameters:
- $ref: '#/components/parameters/sessionId3'
- - $ref: '#/components/parameters/attendeeId3'
+ - $ref: '#/components/parameters/attendeeId4'
delete:
security:
- OAuth2.clientCredentials:
@@ -15945,7 +16095,7 @@ paths:
/sessions/{id}/enrollment/{attendeeId}:
parameters:
- $ref: '#/components/parameters/sessionId3'
- - $ref: '#/components/parameters/attendeeId3'
+ - $ref: '#/components/parameters/attendeeId4'
post:
security:
- OAuth2.clientCredentials:
@@ -18974,7 +19124,7 @@ components:
required: true
schema:
$ref: '#/components/schemas/uuid-property'
- attendeeId3:
+ attendeeId4:
name: attendeeId
in: path
description: Unique ID of an attendee.
@@ -19294,20 +19444,20 @@ components:
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 two comparison types that can be used in filter expressions:
- * equal: eq
- * includes value(s): in
+ Supported fields and operators are listed below:
- The following fields are filterable:
- * discount.id (eq|in)
- * type (eq|in)
+ | Field | Operators |
+ |------------------|-------------------------------------|
+ | discount.id | `eq`, `in` |
+ | type | `eq`, `in` |
- The following operators are available:
- * and
- * or
+ The following logical operators are supported for combining filters:
+ * and
+ * or
schema:
type: string
example: type eq 'AdmissionItem' and discount.id in ('1b01ae34-6970-41f2-a4e8-b4f39185dc15', '1b01ae34-6970-41f2-a4e8-b4f39185dc16')
@@ -19325,22 +19475,22 @@ components:
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 two comparison types that can be used in filter expressions:
- * equal: eq
- * includes value(s): in
+ Supported fields and operators are listed below:
- The following fields are filterable:
- * id (in)
- * method.type (eq)
- * type (eq)
- * level (eq)
+ | Field | Operators |
+ |------------------|-------------------------------------|
+ | id | `in` |
+ | method.type | `eq` |
+ | type | `eq` |
+ | level | `eq` |
- The following operators are available:
- * and
- * or
+ The following logical operators are supported for combining filters:
+ * and
+ * or
schema:
type: string
example: id in ('1b01ae34-6970-41f2-a4e8-b4f39185dc15', '1b01ae34-6970-41f2-a4e8-b4f39185dc16') and method.type eq 'PERCENTAGE'
@@ -19638,6 +19788,25 @@ components:
schema:
type: string
example: disassociated eq 'false'
+ filter-attendee-audience-segments:
+ 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 |
+ |------------------|-------------------------------------|
+ | segment.id | `eq`, `in` |
+
+ No logical operators are supported.
+ schema:
+ type: string
+ example: segment.id eq '313097a4-143d-11e5-9f99-d0a637ee0897'
filter-cross-audience-segments:
name: filter
in: query
@@ -19689,7 +19858,7 @@ components:
schema:
type: string
example: HOTELCODE
- hotelId:
+ hotelId1:
in: path
name: hotelId
description: The hotel's unique ID.
@@ -19757,7 +19926,7 @@ components:
description: The identifier of an Events+ Hub
required: true
schema:
- $ref: '#/components/schemas/uuid-property'
+ $ref: '#/components/schemas/UUIDProperty'
id:
in: path
name: id
@@ -21064,7 +21233,7 @@ components:
schema:
type: string
example: id1
- uuid:
+ uuid1:
description: A uuid path parameter.
schema:
$ref: '#/components/schemas/uuid-property'
@@ -21137,7 +21306,7 @@ components:
example:
code: 400
message: Bad Request
- BadRequest25:
+ BadRequest26:
description: Bad request
content:
application/json:
@@ -21149,7 +21318,7 @@ components:
status: 400
detail: Request is unparsable, syntactically incorrect, or violates schema.
scimType: invalidSyntax
- BadRequest34:
+ BadRequest35:
description: Bad request
content:
application/json:
@@ -21212,7 +21381,7 @@ components:
example:
code: 403
message: Access Forbidden
- Forbidden25:
+ Forbidden26:
description: You do not have access to the resource
content:
application/json:
@@ -21223,7 +21392,7 @@ components:
- urn:ietf:params:scim:api:messages:2.0:Error
status: 403
detail: User is Forbidden to make this request
- Forbidden34:
+ Forbidden35:
description: You do not have access to the resource
content:
application/json:
@@ -21265,7 +21434,7 @@ components:
example:
code: 404
message: Not found
- NotFound25:
+ NotFound26:
description: Resource not found
content:
application/json:
@@ -21276,7 +21445,7 @@ components:
- urn:ietf:params:scim:api:messages:2.0:Error
status: 404
detail: HTTP 404 Not Found
- NotFound34:
+ NotFound35:
description: Resource not found
content:
application/json:
@@ -21341,7 +21510,7 @@ components:
example:
code: 401
message: Unauthorized
- Unauthorized25:
+ Unauthorized26:
description: Bad or expired token
content:
application/json:
@@ -21353,7 +21522,7 @@ components:
status: 401
detail: Request failed authentication/authorization process
scimType: invalidValue
- Unauthorized34:
+ Unauthorized35:
description: Bad or expired token
content:
application/json:
@@ -21575,7 +21744,7 @@ components:
example: hporter
properties:
event:
- $ref: '#/components/schemas/event.json4'
+ $ref: '#/components/schemas/event.json3'
rfp:
$ref: '#/components/schemas/rfp-id.json1'
budgetVersion:
@@ -22008,7 +22177,7 @@ components:
description: Base entity for an Activity Exhibitor.
properties:
exhibitor:
- $ref: '#/components/schemas/exhibitor.json1'
+ $ref: '#/components/schemas/exhibitor.json'
platform:
$ref: '#/components/schemas/user-platform.json'
properties:
@@ -22656,15 +22825,6 @@ components:
type: string
description: Name of additional choice text in reporting.
example: Dietary Preference - Other Allergies
- additional-choice.json1:
- 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
additional-guest-fees.json:
title: AdditionalGuestFees
description: Details about additional fees for extra guests.
@@ -22683,6 +22843,15 @@ components:
description: The value of the additional fee for extra guests.
type: number
example: 20
+ AdditionalChoice:
+ 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
additionalChoice.json:
title: additionalChoice
description: Contains text of additional choice i.e N/A choice or otherAnswer choice
@@ -22696,6 +22865,43 @@ components:
type: string
description: Reporting value of additional choice text
example: N/A or Other Reporting value
+ Address-1:
+ title: Address
+ description: Schema for address information
+ type: object
+ properties:
+ address1:
+ type: string
+ description: The first line of an address
+ example: Cvent Inc.
+ address2:
+ type: string
+ description: The second line of an address
+ example: 4001 West Parmer Lane
+ city:
+ type: string
+ description: The name of the city.
+ example: Austin
+ region:
+ type: string
+ description: The name of the state/province/region of the address.
+ example: Texas
+ regionCode:
+ type: string
+ description: The abbreviation of the state/province/region of the address.
+ example: TX
+ postalCode:
+ type: string
+ description: postal code (also known as zipcode) of the address
+ example: '78727'
+ country:
+ type: string
+ description: Name of the country for example, 'United States'
+ example: United States of America
+ countryCode:
+ type: string
+ description: ISO 3166 two-letter (alpha-2) country code
+ example: US
address-type.json:
title: AddressType
enum:
@@ -22775,7 +22981,6 @@ components:
description: Address details.
required:
- city
- - stateProvince
- countryCode
properties:
countryCode:
@@ -22791,7 +22996,7 @@ components:
type: string
description: ISO 3166-2 code for the state/province/region.
example: US-AL
- address.json3:
+ 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
@@ -22828,7 +23033,7 @@ components:
description: ISO 3166 alpha-2 country code.
type: string
example: US
- address.json4:
+ address.json3:
title: Address
description: Address details
type: object
@@ -22897,7 +23102,7 @@ components:
minimum: -180
maximum: 180
example: -97
- address.json5:
+ address.json4:
title: Address
description: A physical address.
type: object
@@ -22943,7 +23148,7 @@ components:
maxLength: 2
minLength: 2
example: US
- address.json6:
+ address.json5:
title: Address
description: Address
type: object
@@ -22980,7 +23185,7 @@ components:
description: True indicates the address is primary.
example: true
default: false
- address.json7:
+ address.json6:
title: Address
description: Address details.
type: object
@@ -23026,6 +23231,35 @@ components:
maxLength: 2
minLength: 2
example: US
+ Address1:
+ title: Address
+ type: object
+ description: An object representing an address with various properties.
+ properties:
+ address1:
+ type: string
+ description: The first line of an address
+ example: Cvent Inc.
+ address2:
+ type: string
+ description: The second line of an address
+ example: 4001 West Parmer Lane
+ city:
+ type: string
+ description: The name of the city.
+ example: Austin
+ region:
+ type: string
+ description: The name of the state/province/region of the address.
+ example: Texas
+ postalCode:
+ type: string
+ description: postal code (also known as zipcode) of the address
+ example: '78727'
+ country:
+ type: string
+ description: Name of the country for example, 'United States'
+ example: United States of America
admission-items-paginated-response:
title: AdmissionItemsPaginatedResponse
description: Paginated collection of admission items.
@@ -23687,56 +23921,7 @@ components:
maximum: 9999
description: The custom duration in days for the membership.
example: 120
- answer-type.json:
- title: AnswerType
- enum:
- - Choice
- - Text
- - ChoiceText
- - Other
- - NA
- type: string
- description: Type of answer
- example: File
- answer-type.json-0:
- title: AnswerType
- enum:
- - Choice
- - Text
- - Other
- - NA
- type: string
- description: Type of answer
- example: Choice
- answer-type.json1:
- title: AnswerType
- description: |-
- 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.
- type: string
- enum:
- - Other
- - NA
- example: Other
- answer-type.json2:
- title: AnswerType
- enum:
- - Choice
- - Text
- - ChoiceText
- - Comment
- - Other
- - NA
- - File
- type: string
- description: Type of answer
- example: ChoiceText
- answer.json:
+ Answer-1:
title: Answer
type: object
required:
@@ -23744,14 +23929,14 @@ components:
description: An object representing the possible answers for lead qualification questions.
properties:
type:
- $ref: '#/components/schemas/answer-type.json'
+ $ref: '#/components/schemas/AnswerType'
value:
type: string
description: 'Answered value like: Choice text, text answer input etc.'
example: Choice A
choice:
- $ref: '#/components/schemas/uuid.json'
- answer.json-0:
+ $ref: '#/components/schemas/UUID1'
+ Answer-2:
title: Answer
type: object
description: A JSON schema representing an answer object.
@@ -23759,7 +23944,7 @@ components:
- type
properties:
type:
- $ref: '#/components/schemas/answer-type.json-0'
+ $ref: '#/components/schemas/AnswerType-1'
value:
type: string
description: 'Answered value like: Choice text, text answer input etc.'
@@ -23772,7 +23957,35 @@ components:
type: string
format: uuid
description: The ID of the choice that was selected.
- answer.json1:
+ answer-type.json:
+ title: AnswerType
+ description: |-
+ 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.
+ type: string
+ enum:
+ - Other
+ - NA
+ example: Other
+ answer-type.json1:
+ title: AnswerType
+ enum:
+ - Choice
+ - Text
+ - ChoiceText
+ - Comment
+ - Other
+ - NA
+ - File
+ type: string
+ description: Type of answer
+ example: ChoiceText
+ answer.json:
title: Answer
description: A survey answer.
type: object
@@ -23780,7 +23993,7 @@ components:
- type
properties:
type:
- $ref: '#/components/schemas/answer-type.json2'
+ $ref: '#/components/schemas/answer-type.json1'
value:
type: string
description: 'Value property is used to send information like string, number and date in case of following types of answers only: ChoiceText, Text, Comment, Other. In case of Rank Order question, rank should be put into value. Refer to questions resource to get choice label or category label from their respective ids.'
@@ -23793,7 +24006,7 @@ components:
$ref: '#/components/schemas/uuid.json'
field:
$ref: '#/components/schemas/uuid.json'
- answer.json2:
+ answer.json1:
title: Answer
description: A question answer.
type: object
@@ -23805,6 +24018,37 @@ components:
description: 'Data type of an answer. DEPRECATED: This field is deprecated and not applicable to this activity.'
example: simple
deprecated: true
+ AnswerType:
+ title: AnswerType
+ enum:
+ - Choice
+ - Text
+ - ChoiceText
+ - Other
+ - NA
+ type: string
+ description: Type of answer
+ example: File
+ AnswerType-1:
+ title: AnswerType
+ enum:
+ - Choice
+ - Text
+ - Other
+ - NA
+ type: string
+ description: Type of answer
+ example: Choice
+ Appointment:
+ title: Appointment
+ description: A JSON schema representing the structure of an appointment object.
+ type: object
+ properties:
+ id:
+ type: string
+ format: uuid
+ example: 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3
+ description: Appointment id
appointment-attendee:
title: AppointmentAttendee
description: Attendee for an event appointment.
@@ -24586,6 +24830,28 @@ components:
description: The amount of credit associated with the attendee.
type: number
example: 10
+ Attendee:
+ description: The associated Attendee.
+ title: Attendee
+ type: object
+ required:
+ - id
+ properties:
+ id:
+ type: string
+ format: uuid
+ example: 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3
+ description: Attendee id
+ Attendee-1:
+ title: Attendee
+ type: object
+ description: A JSON schema representing the Attendee object
+ properties:
+ id:
+ type: string
+ format: uuid
+ example: 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3
+ description: Attendee id
attendee-activities-paginated-response:
title: AttendeeActivitiesPaginatedResponse
description: The response from a request to get the list of attendee activities. This includes the paging object as well as the collection of attendee activities.
@@ -24947,6 +25213,30 @@ components:
items:
$ref: '#/components/schemas/attendee-appointment-meeting-interest'
description: Collection of appointment meeting interests.
+ attendee-audience-segment-association.json:
+ title: AttendeeAudienceSegmentAssociation
+ description: Represents an audience segment associated with an attendee.
+ required:
+ - segment
+ type: object
+ properties:
+ segment:
+ $ref: '#/components/schemas/segment.json'
+ attendee-audience-segment-associations-paginated-response:
+ title: AttendeeAudienceSegmentAssociationsPaginatedResponse
+ description: The paginated response from a request to get the list of audience segments associated with an attendee.
+ required:
+ - paging
+ - data
+ type: object
+ properties:
+ paging:
+ $ref: '#/components/schemas/paging.json'
+ data:
+ type: array
+ items:
+ $ref: '#/components/schemas/attendee-audience-segment-association.json'
+ description: Collection of audience segment associations for the attendee.
attendee-contact-info.json:
title: AttendeeContactInfo
description: Information about attendee contact added to an event.
@@ -25049,7 +25339,7 @@ components:
primaryAddressType:
$ref: '#/components/schemas/address-type.json'
homeAddress:
- $ref: '#/components/schemas/address.json4'
+ $ref: '#/components/schemas/address.json3'
homePhone:
type: string
description: Home phone number
@@ -25061,7 +25351,7 @@ components:
maxLength: 30
example: 555-555-5555
workAddress:
- $ref: '#/components/schemas/address.json4'
+ $ref: '#/components/schemas/address.json3'
workPhone:
type: string
description: Work phone number
@@ -25341,7 +25631,7 @@ components:
description: Description of the engagement score.
example: A score to capture engagement for general attendees.
event:
- $ref: '#/components/schemas/event.json9'
+ $ref: '#/components/schemas/event.json7'
default:
type: boolean
description: True indicates this is the default engagement score in the event.
@@ -25937,18 +26227,6 @@ components:
description: A Cvent attendee.
format: uuid
example: 6dc0fe3d-4d1c-4bc6-af22-7d9126388388
- attendee.json3:
- title: Attendee
- type: object
- required:
- - id
- description: A JSON Schema for an Attendee object
- properties:
- id:
- type: string
- format: uuid
- example: 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3
- description: Attendee id
attendee.json4:
title: Attendee
description: Representation of the attendee
@@ -26065,7 +26343,7 @@ components:
audience-segment:
title: AudienceSegment
required:
- - eventId
+ - event
- name
description: Represents an audience segment. Audience segments are assigned to events and provide the ability for planners to segment their attendees into groups and better manage the attendee experience based on their defined segments.
allOf:
@@ -26073,7 +26351,7 @@ components:
type: object
properties:
event:
- $ref: '#/components/schemas/event.json3'
+ $ref: '#/components/schemas/event.json2'
name:
type: string
description: Name of the audience segment. Must be unique in the event where the segment exists.
@@ -26090,7 +26368,7 @@ components:
allOf:
- title: AudienceSegment
required:
- - eventId
+ - event
- name
description: Represents an audience segment. Audience segments are assigned to events and provide the ability for planners to segment their attendees into groups and better manage the attendee experience based on their defined segments.
allOf:
@@ -26098,7 +26376,7 @@ components:
type: object
properties:
event:
- $ref: '#/components/schemas/event.json3'
+ $ref: '#/components/schemas/event.json2'
name:
type: string
description: Name of the audience segment. Must be unique in the event where the segment exists.
@@ -26209,6 +26487,33 @@ components:
items:
$ref: '#/components/schemas/existing-audio-track'
description: Collection of audio tracks.
+ Audit:
+ 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
audit.json:
title: Audit
description: Audit information
@@ -26393,7 +26698,7 @@ components:
type: object
description: A JSON Schema for Badge object.
allOf:
- - $ref: '#/components/schemas/copy-mappings-response/allOf/0'
+ - $ref: '#/components/schemas/Audit'
required:
- id
- status
@@ -26407,20 +26712,20 @@ components:
example: abc123
description: Id of a badge
status:
- $ref: '#/components/schemas/badge-status.json'
+ $ref: '#/components/schemas/BadgeStatus'
type:
- $ref: '#/components/schemas/badge-type.json'
+ $ref: '#/components/schemas/BadgeType'
attendee:
- $ref: '#/components/schemas/attendee.json3'
+ $ref: '#/components/schemas/Attendee'
event:
- $ref: '#/components/schemas/event.json6'
+ $ref: '#/components/schemas/Event1'
badge-paginated-response:
title: BadgeListResponse
type: object
description: Badge List response including paging and badge data.
properties:
paging:
- $ref: '#/components/schemas/paging.json'
+ $ref: '#/components/schemas/Paging'
data:
type: array
items:
@@ -26495,6 +26800,19 @@ components:
properties:
id:
$ref: '#/components/schemas/uuid-property'
+ badge-printer-pool.json:
+ title: BadgePrinterPool
+ description: Badge Printer Pool.
+ type: object
+ required:
+ - name
+ properties:
+ name:
+ type: string
+ description: The name of the badge printer pool.
+ minLength: 1
+ maxLength: 50
+ example: Main Entrance
badge-printer-pools-paginated-response:
title: BadgePrinterPoolsPaginatedResponse
description: Page of Badge Printer Pools.
@@ -26507,7 +26825,7 @@ components:
items:
$ref: '#/components/schemas/existing-badge-printer-pool'
description: Collection of badge printer pools.
- badge-status.json:
+ BadgeStatus:
title: BadgeStatus
type: string
enum:
@@ -26517,7 +26835,7 @@ components:
- Deleted
description: Badge status
example: Active
- badge-type.json:
+ BadgeType:
title: BadgeType
type: string
enum:
@@ -26525,146 +26843,6 @@ components:
- Qr
description: Badge type
example: Epc
- banner:
- title: Banner
- description: A banner with its properties.
- required:
- - name
- - layout
- 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
- type: object
- properties:
- name:
- type: string
- description: The name of the banner.
- example: Technology
- maxLength: 100
- minLength: 1
- layout:
- type: string
- description: The name of the layout to use.
- example: Full
- maxLength: 1000
- minLength: 1
- text:
- $ref: '#/components/schemas/banner-text.json'
- button:
- $ref: '#/components/schemas/banner-button.json'
- imageUrl:
- description: The optimized banner image URL.
- type: string
- format: uri
- example: https://images.cvent.com/ab5d5f790f6b4a90b29a3711d4ec381f/57d4aad6989173b9a230d406453faa38/entityid/43c5b520abf9635f4168a2ce37a89d89!_!6fbef1a131b81d4bed2b16c175ef57cd.jpeg
- originalImageUrl:
- description: The original URL of the banner image that was uploaded to the Events+ hub.
- type: string
- format: uri
- example: https://custom.cvent.com/b45fd6ef989d4890ae48a7d0ed5e3f03/video-center/4833fde2-eedf-4751-92a5-f788cfa70674/banner/499bc760-d1a6-49cb-9ec8-05e230fec691/8e9c9c0547c7b7eae652e1c9f6920ea3.jpeg
- imageRelativePath:
- description: The relative path of a banner image in an Events+ hub.
- type: string
- example: ab5d5f790f6b4a90b29a3711d4ec381f/57d4aad6989173b9a230d406453faa38/entityid/43c5b520abf9635f4168a2ce37a89d89!_!6fbef1a131b81d4bed2b16c175ef57cd.jpeg
- imageAlignment:
- type: string
- description: The image alignment within the banner.
- enum:
- - Left
- - Right
- example: Left
- imageAltText:
- type: string
- description: Alternate text for the banner image.
- example: A mostly empty conference room.
- event:
- $ref: '#/components/schemas/banner-event.json'
- webLinks:
- type: array
- description: A list of HTTPS links with name & url properties to display for the banner.
- maxItems: 3
- minItems: 0
- uniqueItems: true
- items:
- $ref: '#/components/schemas/link-https-named.json'
- callToActionType:
- $ref: '#/components/schemas/call-to-action-type.json'
- calendar:
- $ref: '#/components/schemas/banner-calendar.json'
- banner-button.json:
- title: Banner Button
- description: Details about a button that is utilized by a banner.
- type: object
- properties:
- enabled:
- type: boolean
- description: True indicates the button is visible on the banner.
- example: true
- text:
- type: string
- description: The text that appears on the button.
- example: Technology
- maxLength: 100
- target:
- type: string
- description: The target URL for the button when target type is external.
- example: https://www.acme.com
- format: uri
- targetType:
- type: string
- description: Determines if the button's target URL is internal or external to the Events+ hub.
- enum:
- - Internal
- - External
- example: External
- internalTarget:
- type: string
- description: Page to link to when target type is internal, which may contain a generic or uuid identifier.
- example: Homepage
- banner-calendar.json:
- title: BannerCalendar
- type: object
- description: The event calendar associated with this Events+ hub banner for use in video engagement cards.
- properties:
- id:
- description: The ID of the calendar associated to an Events+ hub banner.
- title: UUID Property
- type: string
- format: uuid
- banner-event.json:
- title: BannerEvent
- type: object
- description: The event associated with an Events+ hub banner for use in video engagement cards.
- properties:
- id:
- description: The ID of the event associated to an Events+ hub banner.
- title: UUID Property
- type: string
- format: uuid
banner-link-target.json:
title: BannerLinkTarget
description: The target of the link clicked on the banner.
@@ -26685,34 +26863,6 @@ components:
type: string
description: The details of the target associated with the banner link.
example: https://www.cvent.com
- banner-text.json:
- title: Banner Text
- description: The text and its details on a banner.
- type: object
- properties:
- title:
- type: string
- description: Title text that appears on the banner.
- example: Technology
- maxLength: 100
- body:
- type: string
- description: For the banners that support it, this is the body text
- example: Technology Innovation at Acme Inc.
- maxLength: 1000
- alignment:
- type: string
- description: Text alignment within the banner
- enum:
- - Left
- - Right
- - Center
- - Baseline
- color:
- description: The color of the banner text.
- type: string
- example: '#0F0F0F'
- pattern: ^#?([0-9A-Fa-f]{6}|[0-9A-Fa-f]{3})$
base-address.json:
title: Base Address
description: Base Address Model
@@ -26762,7 +26912,19 @@ components:
type: string
description: Value of an answer.
example: my answer
- base-choice.json:
+ base-question-response.json:
+ title: BaseQuestionResponse
+ description: Base entity for a question response.
+ type: object
+ properties:
+ question:
+ $ref: '#/components/schemas/question.json3/allOf/0'
+ answers:
+ type: array
+ items:
+ $ref: '#/components/schemas/base-answer.json'
+ description: List of answers.
+ BaseChoice:
title: BaseChoice
type: object
description: A JSON schema representing a base choice object
@@ -26776,18 +26938,6 @@ components:
type: string
description: Text value of the field
example: Choice 1
- base-question-response.json:
- title: BaseQuestionResponse
- description: Base entity for a question response.
- type: object
- properties:
- question:
- $ref: '#/components/schemas/question.json3/allOf/0'
- answers:
- type: array
- items:
- $ref: '#/components/schemas/base-answer.json'
- description: List of answers.
baseErrorResponse:
title: ErrorResponse
description: Represents an error response with additional details of cascading error messages.
@@ -26953,11 +27103,11 @@ components:
description: Represents the booth staff list response, with paging information and a list of booth staff.
properties:
paging:
- $ref: '#/components/schemas/paging.json'
+ $ref: '#/components/schemas/Paging'
data:
type: array
items:
- $ref: '#/components/schemas/existing-booth-staff.json'
+ $ref: '#/components/schemas/booth-staff-response'
description: List of booth staff.
booth-staff-request:
title: Booth Staff
@@ -26968,35 +27118,20 @@ components:
- exhibitor
type: object
allOf:
- - $ref: '#/components/schemas/copy-mappings-response/allOf/0'
+ - $ref: '#/components/schemas/Audit'
properties:
attendee:
- $ref: '#/components/schemas/attendee.json3'
+ $ref: '#/components/schemas/Attendee'
event:
- $ref: '#/components/schemas/event.json6'
+ $ref: '#/components/schemas/Event1'
exhibitor:
- $ref: '#/components/schemas/exhibitor.json'
+ $ref: '#/components/schemas/Exhibitor'
booth-staff-response:
title: Booth Staff
type: object
description: Booth staff with an associated ID.
allOf:
- - title: Booth Staff
- description: A JSON schema representing booth staff.
- required:
- - attendee
- - event
- - exhibitor
- type: object
- allOf:
- - $ref: '#/components/schemas/copy-mappings-response/allOf/0'
- properties:
- attendee:
- $ref: '#/components/schemas/attendee.json3'
- event:
- $ref: '#/components/schemas/event.json6'
- exhibitor:
- $ref: '#/components/schemas/exhibitor.json'
+ - $ref: '#/components/schemas/booth-staff-request'
properties:
id:
type: string
@@ -27004,6 +27139,16 @@ components:
example: 4e0f5152-515e-11ee-be56-0242ac120002
description: ID of an exhibitor booth staff member.
readOnly: true
+ BoothStaff:
+ title: Booth Staff
+ type: object
+ description: A JSON schema representing Booth Staff entity
+ properties:
+ id:
+ type: string
+ format: uuid
+ example: 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3
+ description: Booth Staff id
bounce-details-response:
title: Paginated Bounce Details
description: The response from a request to get the bounce details of an email. This includes paging object
@@ -27088,7 +27233,7 @@ components:
maxLength: 50
example: Northern Hotel Group
address:
- $ref: '#/components/schemas/address.json5'
+ $ref: '#/components/schemas/address.json4'
deleted:
type: boolean
description: True indicates the brand is deleted.
@@ -28204,15 +28349,6 @@ components:
- $ref: '#/components/schemas/booking-website-link.json/allOf/0'
example:
href: https://manage.passkey.com/Login?src=api&redirect=ccbridge®acknumber=WODS7LK4-GA8C
- call-to-action-type.json:
- title: CallToActionType
- description: Distinguishes banners between carousel banners for Events+ hubs and card banners for video pages.
- type: string
- enum:
- - CAROUSEL
- - CARD
- default: CAROUSEL
- example: CAROUSEL
campaign-data.json:
title: Campaign Data
type: object
@@ -28308,7 +28444,7 @@ components:
- OTHER
- POLITICAL_OR_CIVIL_UNREST
- REQUIREMENTS_CHANGED
- capacity.json:
+ Capacity:
title: Capacity
type: object
required:
@@ -28332,7 +28468,7 @@ components:
description: Reserved capacity of the registration type for an exhibitor
example: 5
description: Registration capacity object containing registration type and reserved capacity
- capacity.json1:
+ capacity.json:
title: Capacity
description: Represents capacity statistics of the registration type.
required:
@@ -28803,7 +28939,7 @@ components:
type: string
example: NorthernHotels
address:
- $ref: '#/components/schemas/address.json5'
+ $ref: '#/components/schemas/address.json4'
deleted:
type: boolean
description: True indicates the chain is deleted.
@@ -28922,7 +29058,7 @@ components:
- message
- header
- event
- - stopCheckIn
+ - stopCheckin
- rules
allOf:
- title: Audit
@@ -29049,6 +29185,17 @@ components:
description: Duration (in milliseconds) the attendee was present at the event.
minimum: 0
example: 4000
+ Choice:
+ 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
choice-sort-order.json:
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.'
@@ -29092,17 +29239,6 @@ components:
description: Label of choice.
example: Choice A
choice.json2:
- title: Choice
- description: A schema representing a choice object
- type: object
- allOf:
- - $ref: '#/components/schemas/base-choice.json'
- properties:
- label:
- type: string
- description: Label of choice
- example: Choice A
- choice.json3:
title: Choice
description: A survey choice.
type: object
@@ -29113,7 +29249,7 @@ components:
type: string
description: Label of choice
example: Choice A
- choice.json4:
+ choice.json3:
title: Choice
type: object
description: This is used to denote the choice of custom field.
@@ -29280,6 +29416,44 @@ components:
items:
$ref: '#/components/schemas/communication-log-message.json'
description: Collection of communication log messages.
+ Compliance:
+ 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
compliance.json:
title: Compliance
description: Privacy compliance fields for a contact.
@@ -29955,19 +30129,6 @@ components:
type: string
description: The url of the contact's profile picture
example: https://cvent.com/picture123
- contact-links.json2:
- title: ContactLinks
- type: object
- description: A JSON schema representing contact links, including Twitter, Facebook, and LinkedIn URLs.
- properties:
- twitterUrl:
- $ref: '#/components/schemas/link.json'
- facebookUrl:
- $ref: '#/components/schemas/link.json'
- linkedInUrl:
- $ref: '#/components/schemas/link.json'
- instagramUrl:
- $ref: '#/components/schemas/link.json'
contact-merge:
title: ContactMergeRequest
description: This entity represents a request to merge one or two contacts with another 'main' contact.
@@ -30382,68 +30543,19 @@ components:
format: uuid
description: The unique ID of the contact who watched a video.
example: 123e4567-e89b-12d3-a456-426614174000
- copy-mapping-entity-type.json:
- title: Copy Mapping Entity Type
- type: string
- description: The entity type for the mapping.
- enum:
- - BOOTH_TYPE
- - BOOTH
- - EVENT
- - SPONSORSHIP_LEVEL
- - EXHIBITOR
- - EXHIBITOR_CATEGORY
- - EXHIBITOR_CUSTOM_QUESTION
- - EXHIBITOR_CUSTOM_ANSWER
- example: BOOTH
- copy-mappings-response:
- title: Copy Mappings Response
+ ContactLinks:
+ title: ContactLinks
type: object
- description: Response model for saved copy mappings.
- required:
- - id
- - event
- - type
- - mappingIds
- 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 JSON schema representing contact links, including Twitter, Facebook, and LinkedIn URLs.
properties:
- id:
- type: string
- format: uuid
- description: Unique identifier for the mapping record.
- example: 6b92a82d-4374-40bc-a24f-6dee46d68737
- event:
- $ref: '#/components/schemas/event.json6'
- type:
- $ref: '#/components/schemas/copy-mapping-entity-type.json'
- mappingIds:
- $ref: '#/components/schemas/mapping-ids.json'
+ twitterUrl:
+ $ref: '#/components/schemas/Link'
+ facebookUrl:
+ $ref: '#/components/schemas/Link'
+ linkedInUrl:
+ $ref: '#/components/schemas/Link'
+ instagramUrl:
+ $ref: '#/components/schemas/Link'
country-code.json:
title: Country Code
type: string
@@ -32004,7 +32116,7 @@ components:
choices:
type: array
items:
- $ref: '#/components/schemas/choice.json4'
+ $ref: '#/components/schemas/choice.json3'
description: Choices of custom fields.
displayType:
$ref: '#/components/schemas/choices-display-type.json'
@@ -32478,6 +32590,19 @@ components:
type: string
description: 'Method by which attendee registered for the event. Note: This field is deprecated. Previous documentation incorrectly listed support for this feature.'
example: Self-Responded
+ Device:
+ title: Device
+ type: object
+ description: A JSON object representing an electronic device used to capture leads.
+ properties:
+ id:
+ type: string
+ description: The id of device used to capture lead
+ example: EKEK993IF9F
+ name:
+ 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.
@@ -32954,7 +33079,19 @@ components:
type: number
example: 100
description: Maximum refund amount for an early bird price.
- eliterature-document.json:
+ eliterature-request-paginated-response:
+ title: E-literature Request Paginated Response
+ type: object
+ description: A paginated response for E-literature requests.
+ properties:
+ paging:
+ $ref: '#/components/schemas/Paging'
+ data:
+ type: array
+ items:
+ $ref: '#/components/schemas/ExistingELiteratureRequestDataForLead'
+ description: Collection of E-literature request data.
+ ELiteratureDocument:
title: E-literature Document
type: object
description: A JSON schema representing an E-literature Document
@@ -32979,18 +33116,31 @@ components:
- LINK
type: string
example: FILE
- eliterature-request-paginated-response:
- title: E-literature Request Paginated Response
+ ELiteratureRequestDataForLead:
+ title: E-literature Request Data for Lead
type: object
- description: A paginated response for E-literature requests.
+ description: E-literature request data containing event, exhibitor, lead, and documents information.
+ required:
+ - event
+ - exhibitor
+ - lead
+ - documents
+ allOf:
+ - $ref: '#/components/schemas/Audit'
properties:
- paging:
- $ref: '#/components/schemas/paging.json'
- data:
+ event:
+ $ref: '#/components/schemas/Event1'
+ exhibitor:
+ $ref: '#/components/schemas/Exhibitor'
+ lead:
+ $ref: '#/components/schemas/Lead-2'
+ documents:
type: array
items:
- $ref: '#/components/schemas/existing-eliterature-request-data.json'
- description: Collection of E-literature request data.
+ $ref: '#/components/schemas/ELiteratureDocument'
+ minItems: 1
+ maxItems: 25
+ description: Collection of E-literature documents sent to lead.
email-history-paginated-response:
title: Email History Paginated Response
description: The response from a request to get the list of email history. This includes the paging object as well as the collection of email history.
@@ -33393,25 +33543,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
@@ -33420,8 +33552,28 @@ components:
details:
type: array
items:
- $ref: '#/components/schemas/ErrorResponse/allOf/0'
+ $ref: '#/components/schemas/ErrorResponseBase'
description: Additional details of cascading error messages.
+ ErrorResponseBase:
+ 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
estimated-cost.json:
type: object
title: EstimatedCost
@@ -33990,7 +34142,7 @@ components:
type: object
properties:
paging:
- $ref: '#/components/schemas/paging.json25'
+ $ref: '#/components/schemas/paging.json23'
data:
type: array
items:
@@ -34517,7 +34669,7 @@ components:
description: Source IDs track respondents in an external system integrated with the Cvent survey.
properties:
event:
- $ref: '#/components/schemas/event.json7'
+ $ref: '#/components/schemas/event.json5'
attendee:
description: Associated attendee.
type: object
@@ -34588,7 +34740,7 @@ components:
description: List of responded survey answers.
type: array
items:
- $ref: '#/components/schemas/answer.json1'
+ $ref: '#/components/schemas/answer.json'
minItems: 1
score:
deprecated: true
@@ -34598,7 +34750,7 @@ components:
readOnly: true
properties:
event:
- $ref: '#/components/schemas/event.json7'
+ $ref: '#/components/schemas/event.json5'
survey:
$ref: '#/components/schemas/uuid.json'
session:
@@ -34823,19 +34975,7 @@ components:
format: uuid
description: Unique identifier for the event linked with the RFP, if any.
example: 50dc08af-24a9-4d01-84be-3d43133dc945
- event.json11:
- 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.
- event.json3:
+ event.json2:
title: Event
required:
- id
@@ -34847,7 +34987,7 @@ components:
format: uuid
description: UUID of the event.
example: 103097a4-143d-11e5-9f99-d0a637ee0032
- event.json4:
+ event.json3:
type: object
properties:
id:
@@ -34856,19 +34996,7 @@ components:
format: uuid
example: 3d808ee8-94f8-4f3a-9ad1-6b23f4e4c329
description: Event ID Information.
- event.json6:
- 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
- event.json7:
+ event.json5:
title: Event
type: object
description: Detail object of an event which is associated to a survey.
@@ -34879,7 +35007,7 @@ components:
example: 9463c74e-18c6-401a-a710-ae0f485bf059
description: Id of the associated event
readOnly: true
- event.json9:
+ event.json7:
title: Event
description: An event reference used in attendee insights to identify the event context for engagement data
type: object
@@ -34891,67 +35019,48 @@ components:
format: uuid
description: A unique identifier (UUID) for the event where the engagement score applies
example: 04cb6ae2-0dc3-487b-953e-86d6abbdf7d3
- exhibitor-address.json:
- title: Address
+ event.json9:
+ title: Event
+ description: Details of the event.
type: object
- description: An object representing an address with various properties.
+ required:
+ - id
properties:
- address1:
- type: string
- description: The first line of an address
- example: Cvent Inc.
- address2:
- type: string
- description: The second line of an address
- example: 4001 West Parmer Lane
- city:
- type: string
- description: The name of the city.
- example: Austin
- region:
+ id:
type: string
- description: The name of the state/province/region of the address.
- example: Texas
- postalCode:
+ format: uuid
+ example: a150f1ee-6c54-4b01-90e6-d701748f0851
+ description: The unique ID of the event.
+ Event1:
+ description: The Associated Event.
+ title: Event
+ type: object
+ required:
+ - id
+ properties:
+ id:
type: string
- description: postal code (also known as zipcode) of the address
- example: '78727'
- country:
+ format: uuid
+ example: 3db28cfc-db22-11eb-8d19-0242ac130003
+ description: Event id
+ Exhibitor:
+ description: The Associated Exhibitor.
+ title: Exhibitor
+ type: object
+ required:
+ - id
+ properties:
+ id:
type: string
- description: Name of the country for example, 'United States'
- example: United States of America
+ format: uuid
+ example: 4888db54-db22-11eb-8d19-0242ac130003
+ description: Exhibitor id
exhibitor-admin-request:
title: Exhibitor Admin
type: object
description: An object representing the exhibitor admin.
allOf:
- - title: OSS-Audit
- description: OSS 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.This filed is deprecated.
- deprecated: true
- readOnly: true
- example: hporter
+ - $ref: '#/components/schemas/OSSAudit'
required:
- exhibitor
- email
@@ -34959,7 +35068,7 @@ components:
- lastName
properties:
exhibitor:
- $ref: '#/components/schemas/exhibitor.json'
+ $ref: '#/components/schemas/Exhibitor'
firstName:
type: string
description: The first name of the exhibitor admin
@@ -34981,36 +35090,7 @@ components:
title: Exhibitor Admin
type: object
allOf:
- - title: Exhibitor Admin
- type: object
- description: An object representing the exhibitor admin.
- allOf:
- - $ref: '#/components/schemas/exhibitor-admin-request/allOf/0'
- required:
- - exhibitor
- - email
- - firstName
- - lastName
- properties:
- exhibitor:
- $ref: '#/components/schemas/exhibitor.json'
- firstName:
- type: string
- description: The first name of the exhibitor admin
- minLength: 1
- maxLength: 30
- example: John
- lastName:
- type: string
- description: The last name of the exhibitor admin
- minLength: 1
- maxLength: 30
- example: Eddy
- email:
- type: string
- format: email
- description: The email address of the exhibitor admin
- example: john.eddy@test.com
+ - $ref: '#/components/schemas/exhibitor-admin-request'
properties:
id:
type: string
@@ -35025,13 +35105,13 @@ components:
description: Exhibitor Admins List Response schema
properties:
paging:
- $ref: '#/components/schemas/paging.json'
+ $ref: '#/components/schemas/Paging'
data:
type: array
items:
- $ref: '#/components/schemas/existing-exhibitor-admin.json'
+ $ref: '#/components/schemas/exhibitor-admin-response'
description: List of exhibitor admins.
- exhibitor-answer-format.json:
+ exhibitor-answer-format:
type: string
description: 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'.
enum:
@@ -35043,37 +35123,6 @@ components:
- PhoneNumber
- RadioButton
example: RadioButton
- exhibitor-answer-limits.json:
- title: Exhibitor Answer Limits
- description: Defines the limits for answers to exhibitor questions.
- type: object
- properties:
- minLength:
- type: integer
- description: Minimum length of the answer for OpenEndedTextCommentBox questions. It must be less than or equal to maxLength.
- default: 1
- minimum: 1
- maximum: 2000
- example: 1
- maxLength:
- type: integer
- description: Maximum length of the answer for OpenEndedTextCommentBox questions.
- default: 2000
- minimum: 1
- maximum: 2000
- example: 2000
- minSelections:
- type: integer
- description: Minimum number of choices required for MultiChoice questions. It must be less than or equal to maxSelections.
- minimum: 1
- maximum: 100
- example: 1
- maxSelections:
- type: integer
- description: Maximum number of choices allowed for MultiChoice questions. It cannot exceed the total number of available choices.
- minimum: 1
- maximum: 100
- example: 10
exhibitor-answers-request:
title: Exhibitor Answers Request
description: An object representing the request for exhibitor answers.
@@ -35082,7 +35131,7 @@ components:
data:
type: array
items:
- $ref: '#/components/schemas/existing-exhibitor-answer.json'
+ $ref: '#/components/schemas/ExistingExhibitorAnswer'
description: List of answers for all exhibitor questions.
exhibitor-answers-response:
title: Exhibitor Answers List Response
@@ -35092,7 +35141,7 @@ components:
data:
type: array
items:
- $ref: '#/components/schemas/existing-exhibitor-answer.json'
+ $ref: '#/components/schemas/ExistingExhibitorAnswer'
description: List of answers for all exhibitor questions.
exhibitor-banner-logo-file:
title: Exhibitor Banner/Logo File
@@ -35117,11 +35166,11 @@ components:
type: object
properties:
paging:
- $ref: '#/components/schemas/paging.json'
+ $ref: '#/components/schemas/Paging'
data:
type: array
items:
- $ref: '#/components/schemas/existing-exhibitor-category.json'
+ $ref: '#/components/schemas/exhibitor-category-response'
description: Paginated list of all exhibitor categories for an event.
exhibitor-category-banner-file:
title: Exhibitor Category Banner File
@@ -35146,22 +35195,12 @@ components:
description: A paginated response containing a list of exhibitor category Ids.
properties:
paging:
- $ref: '#/components/schemas/paging.json'
+ $ref: '#/components/schemas/Paging'
data:
type: array
items:
- $ref: '#/components/schemas/exhibitor-category-id.json'
+ $ref: '#/components/schemas/ExhibitorCategoryId'
description: Paginated list of exhibitor category Ids for an exhibitor.
- exhibitor-category-id.json:
- title: ExhibitorCategoryId
- type: object
- description: Schema for Exhibitor Category ID.
- properties:
- id:
- type: string
- format: uuid
- example: 534a465b-b4cb-471d-9498-4bf3917ad8bf
- description: ID of exhibitor category.
exhibitor-category-request:
title: Exhibitor Category
type: object
@@ -35171,10 +35210,10 @@ components:
- order
- type
allOf:
- - $ref: '#/components/schemas/copy-mappings-response/allOf/0'
+ - $ref: '#/components/schemas/Audit'
properties:
event:
- $ref: '#/components/schemas/event.json6'
+ $ref: '#/components/schemas/Event1'
name:
type: string
description: Name of the exhibitor category
@@ -35203,41 +35242,7 @@ components:
description: A description of the Existing Exhibitor Category JSON schema
type: object
allOf:
- - title: Exhibitor Category
- type: object
- required:
- - event
- - name
- - order
- - type
- allOf:
- - $ref: '#/components/schemas/copy-mappings-response/allOf/0'
- properties:
- event:
- $ref: '#/components/schemas/event.json6'
- name:
- type: string
- description: Name of the exhibitor category
- maxLength: 50
- example: Automobile
- description:
- description: Exhibitor Category description
- type: string
- maxLength: 180
- example: everything related to automobiles
- order:
- description: order for exhibitor category
- type: integer
- example: 3
- minimum: 1
- type:
- description: Type of exhibitor category
- enum:
- - BANNER
- - LOGO
- type: string
- example: LOGO
- description: JSON schema representing an Exhibitor Category object
+ - $ref: '#/components/schemas/exhibitor-category-request'
properties:
id:
type: string
@@ -35263,20 +35268,62 @@ components:
description: Exhibitor Id Paginated Response schema
properties:
paging:
- $ref: '#/components/schemas/paging.json'
+ $ref: '#/components/schemas/Paging'
data:
type: array
items:
- $ref: '#/components/schemas/exhibitor-Id.json'
+ $ref: '#/components/schemas/ExhibitorId'
description: Paginated list of exhibitor Ids for an exhibitor category.
- exhibitor-Id.json:
- title: ExhibitorId
- description: A JSON Schema representation of an exhibitor ID.
+ exhibitor-question:
+ title: Exhibitor Question
+ description: A representation of an exhibitor question for an event.
type: object
+ allOf:
+ - $ref: '#/components/schemas/Audit'
+ required:
+ - event
+ - type
+ - text
+ - required
properties:
- id:
- $ref: '#/components/schemas/uuid-property'
- exhibitor-question-type.json:
+ event:
+ $ref: '#/components/schemas/Event1'
+ text:
+ type: string
+ description: The actual text of the exhibitor question.
+ example: Is there a business need?
+ code:
+ type: string
+ minLength: 4
+ maxLength: 10
+ example: A001
+ description: System or User defined event level unique exhibitor question code.
+ type:
+ $ref: '#/components/schemas/exhibitor-question-type'
+ required:
+ type: boolean
+ description: A boolean indicating whether the question is mandatory or not
+ example: true
+ choices:
+ type: array
+ description: An array of choices for the exhibitor question.
+ items:
+ $ref: '#/components/schemas/BaseChoice'
+ minItems: 1
+ maxItems: 100
+ notApplicableAnswer:
+ $ref: '#/components/schemas/AdditionalChoice'
+ otherAnswer:
+ $ref: '#/components/schemas/AdditionalChoice'
+ answerFormat:
+ $ref: '#/components/schemas/exhibitor-answer-format'
+ answerLimits:
+ $ref: '#/components/schemas/ExhibitorAnswerLimits'
+ defaultToCurrentDate:
+ type: boolean
+ description: True indicates the current date and time is automatically set as the default value for OpenEndedDateTime questions.
+ example: true
+ exhibitor-question-type:
type: string
description: "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."
enum:
@@ -35304,7 +35351,7 @@ components:
data:
type: array
items:
- $ref: '#/components/schemas/existing-registration-pack.json'
+ $ref: '#/components/schemas/registration-pack-response'
maxItems: 1
description: The registration pack for an exhibitor. Contains at most one item.
exhibitor-request:
@@ -35312,13 +35359,13 @@ components:
type: object
description: A representation of an exhibitor including all relevant information.
allOf:
- - $ref: '#/components/schemas/copy-mappings-response/allOf/0'
+ - $ref: '#/components/schemas/Audit'
required:
- event
- name
properties:
event:
- $ref: '#/components/schemas/event.json6'
+ $ref: '#/components/schemas/Event1'
name:
type: string
description: Name of the exhibitor. Cvent suggests limiting this to a maximum of 200 characters for optimal results.
@@ -35343,7 +35390,7 @@ components:
type: string
example: Taj Mahal
address:
- $ref: '#/components/schemas/exhibitor-address.json'
+ $ref: '#/components/schemas/Address1'
email:
type: string
format: email
@@ -35367,7 +35414,7 @@ components:
type: string
format: url
contactLinks:
- $ref: '#/components/schemas/contact-links.json2'
+ $ref: '#/components/schemas/ContactLinks'
deleted:
description: A boolean indicating whether the exhibitor is deleted or not
type: boolean
@@ -35385,90 +35432,13 @@ components:
description: A boolean indicating whether the exhibitor is designated as featured or not
default: false
sponsorshipLevel:
- $ref: '#/components/schemas/sponsorship-level.json'
+ $ref: '#/components/schemas/SponsorshipLevel'
exhibitor-response:
title: Exhibitor
description: JSON schema for the exhibitor object
type: object
allOf:
- - title: Exhibitor
- type: object
- description: A representation of an exhibitor including all relevant information.
- allOf:
- - $ref: '#/components/schemas/copy-mappings-response/allOf/0'
- required:
- - event
- - name
- properties:
- event:
- $ref: '#/components/schemas/event.json6'
- name:
- type: string
- description: Name of the exhibitor. Cvent suggests limiting this to a maximum of 200 characters for optimal results.
- minLength: 1
- maxLength: 500
- example: Potterfield Harry
- description:
- description: Exhibitor description
- type: string
- maxLength: 5000
- example: A man who sells relatively good hotdogs
- code:
- description: Code used to identify the exhibitor
- type: string
- example: abc123
- sourceId:
- description: Code used for marketing groupings
- type: string
- example: software
- location:
- description: Exhibitor location
- type: string
- example: Taj Mahal
- address:
- $ref: '#/components/schemas/exhibitor-address.json'
- email:
- type: string
- format: email
- description: Email address of the exhibitor
- example: h.potterfield@test.com
- mobilePhone:
- type: string
- description: Mobile Phone of the exhibitor
- example: 555-555-5555
- workPhone:
- type: string
- description: Work Phone of the exhibitor
- example: 555-555-5555
- otherPhone:
- type: string
- description: Any other phone of the exhibitor
- example: 555-555-5555
- website:
- description: Exhibitor's website URL
- example: www.superhappyfuntime.com
- type: string
- format: url
- contactLinks:
- $ref: '#/components/schemas/contact-links.json2'
- deleted:
- description: A boolean indicating whether the exhibitor is deleted or not
- type: boolean
- default: false
- hidden:
- description: True indicates that the exhibitor is hidden.
- type: boolean
- default: false
- eventSponsor:
- type: boolean
- description: A boolean indicating whether the exhibitor is an event sponsor or not
- default: false
- featured:
- type: boolean
- description: A boolean indicating whether the exhibitor is designated as featured or not
- default: false
- sponsorshipLevel:
- $ref: '#/components/schemas/sponsorship-level.json'
+ - $ref: '#/components/schemas/exhibitor-request'
properties:
id:
type: string
@@ -35501,18 +35471,6 @@ components:
example: https://images.cvent.com/pt/fileLocation/url_456
readOnly: true
exhibitor.json:
- description: The Associated Exhibitor.
- title: Exhibitor
- type: object
- required:
- - id
- properties:
- id:
- type: string
- format: uuid
- example: 4888db54-db22-11eb-8d19-0242ac130003
- description: Exhibitor id
- exhibitor.json1:
type: object
title: Exhibitor
description: An exhibitor.
@@ -35534,17 +35492,88 @@ components:
type: boolean
description: If the exhibitor is an event sponsor.
example: true
+ ExhibitorAnswer:
+ title: Exhibitor Answer
+ description: A JSON Schema representation of an exhibitor answer entity.
+ type: object
+ allOf:
+ - $ref: '#/components/schemas/Audit'
+ required:
+ - question
+ - exhibitor
+ - event
+ - answers
+ properties:
+ question:
+ $ref: '#/components/schemas/UUID1'
+ event:
+ $ref: '#/components/schemas/Event1'
+ exhibitor:
+ $ref: '#/components/schemas/Exhibitor'
+ answers:
+ description: List of answers
+ type: array
+ items:
+ $ref: '#/components/schemas/Answer-2'
+ ExhibitorAnswerLimits:
+ title: Exhibitor Answer Limits
+ description: Defines the limits for answers to exhibitor questions.
+ type: object
+ properties:
+ minLength:
+ type: integer
+ description: Minimum length of the answer for OpenEndedTextCommentBox questions. It must be less than or equal to maxLength.
+ default: 1
+ minimum: 1
+ maximum: 2000
+ example: 1
+ maxLength:
+ type: integer
+ description: Maximum length of the answer for OpenEndedTextCommentBox questions.
+ default: 2000
+ minimum: 1
+ maximum: 2000
+ example: 2000
+ minSelections:
+ type: integer
+ description: Minimum number of choices required for MultiChoice questions. It must be less than or equal to maxSelections.
+ minimum: 1
+ maximum: 100
+ example: 1
+ maxSelections:
+ type: integer
+ description: Maximum number of choices allowed for MultiChoice questions. It cannot exceed the total number of available choices.
+ minimum: 1
+ maximum: 100
+ example: 10
+ ExhibitorCategoryId:
+ title: ExhibitorCategoryId
+ type: object
+ description: Schema for Exhibitor Category ID.
+ properties:
+ id:
+ type: string
+ format: uuid
+ example: 534a465b-b4cb-471d-9498-4bf3917ad8bf
+ description: ID of exhibitor category.
+ ExhibitorId:
+ title: ExhibitorId
+ description: A JSON Schema representation of an exhibitor ID.
+ type: object
+ properties:
+ id:
+ $ref: '#/components/schemas/uuid-property'
exhibitors-paginated-response:
title: ExhibitorsPaginatedResponse
type: object
description: A paginated response containing a list of exhibitors for an event.
properties:
paging:
- $ref: '#/components/schemas/paging.json'
+ $ref: '#/components/schemas/Paging'
data:
type: array
items:
- $ref: '#/components/schemas/existing-exhibitor.json'
+ $ref: '#/components/schemas/exhibitor-response'
description: Paginated list of exhibitors for an event.
existing-admission-item:
title: ExistingAdmissionItem
@@ -35769,18 +35798,7 @@ components:
- disabled
- name
allOf:
- - title: BadgePrinterPool
- description: Badge Printer Pool.
- type: object
- required:
- - name
- properties:
- name:
- type: string
- description: The name of the badge printer pool.
- minLength: 1
- maxLength: 50
- example: Main Entrance
+ - $ref: '#/components/schemas/badge-printer-pool.json'
properties:
id:
$ref: '#/components/schemas/uuid-property-readonly.json'
@@ -35788,32 +35806,6 @@ components:
type: boolean
description: A flag to indicate if the pool is disabled.
example: false
- existing-booth-staff.json:
- title: Booth Staff
- type: object
- description: Booth staff with an associated ID.
- allOf:
- - $ref: '#/components/schemas/booth-staff-response/allOf/0'
- properties:
- id:
- type: string
- format: uuid
- example: 4e0f5152-515e-11ee-be56-0242ac120002
- description: ID of an exhibitor booth staff member.
- readOnly: true
- existing-capacity.json:
- title: ExistingCapacity
- type: object
- description: Represents the existing capacity of the registration type for an exhibitor
- allOf:
- - $ref: '#/components/schemas/capacity.json'
- required:
- - availableCapacity
- properties:
- availableCapacity:
- type: integer
- description: Available capacity of the registration type for an exhibitor
- example: 4
existing-custom-field:
title: ExistingCustomField
description: This is used to denote an existing custom field.
@@ -36012,169 +36004,12 @@ components:
description: internal id
example: ce359543-61f5-492d-b8de-875c3473e8ae_@_0ca2e0af-166b-48fa-b976-980c34e21e82_@_5c068898-3b72-452d-919f-2c046441339f
readOnly: true
- existing-eliterature-request-data.json:
- title: Existing E-literature Request Data for Lead
- type: object
- allOf:
- - title: E-literature Request Data for Lead
- type: object
- description: E-literature request data containing event, exhibitor, lead, and documents information.
- required:
- - event
- - exhibitor
- - lead
- - documents
- allOf:
- - $ref: '#/components/schemas/copy-mappings-response/allOf/0'
- properties:
- event:
- $ref: '#/components/schemas/event.json6'
- exhibitor:
- $ref: '#/components/schemas/exhibitor.json'
- lead:
- $ref: '#/components/schemas/lead.json'
- documents:
- type: array
- items:
- $ref: '#/components/schemas/eliterature-document.json'
- minItems: 1
- maxItems: 25
- description: Collection of E-literature documents sent to lead.
- properties:
- id:
- type: string
- format: uuid
- example: 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3
- description: Request identifier
- readOnly: true
- description: A JSON Schema for an existing e-literature request data for a lead.
- existing-exhibitor-admin.json:
- title: Exhibitor Admin
- type: object
- allOf:
- - $ref: '#/components/schemas/exhibitor-admin-response/allOf/0'
- properties:
- id:
- type: string
- format: uuid
- example: 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3
- description: Exhibitor Admin id
- readOnly: true
- description: Existing Exhibitor Admin with an id property
- existing-exhibitor-answer.json:
- title: Existing Exhibitor Answer
- type: object
- description: Existing Exhibitor Answer schema
- allOf:
- - title: Exhibitor Answer
- description: A JSON Schema representation of an exhibitor answer entity.
- type: object
- allOf:
- - $ref: '#/components/schemas/copy-mappings-response/allOf/0'
- required:
- - question
- - exhibitor
- - event
- - answers
- properties:
- question:
- $ref: '#/components/schemas/uuid.json'
- event:
- $ref: '#/components/schemas/event.json6'
- exhibitor:
- $ref: '#/components/schemas/exhibitor.json'
- answers:
- description: List of answers
- type: array
- items:
- $ref: '#/components/schemas/answer.json-0'
- required:
- - id
- properties:
- id:
- type: string
- format: uuid
- readOnly: true
- example: 06d2bfce-1793-11ec-9621-0242ac130002
- description: Exhibitor Answer id
- existing-exhibitor-category.json:
- title: Existing Exhibitor Category
- description: A description of the Existing Exhibitor Category JSON schema
- type: object
- allOf:
- - $ref: '#/components/schemas/exhibitor-category-response/allOf/0'
- properties:
- id:
- type: string
- format: uuid
- example: 534a465b-b4cb-471d-9498-4bf3917ad8bf
- description: ID of exhibitor category.
- readOnly: true
- bannerId:
- description: File ID for exhibitor category banner.
- format: uuid
- type: string
- example: 22ca5ab1-0dc3-487b-953e-41d6dacde3e6
- readOnly: true
- bannerUrl:
- description: URL for exhibitor category banner.
- format: uri
- type: string
- example: https://images.cvent.com/pt/fileLocation/url_456
- readOnly: true
existing-exhibitor-question:
title: Existing Exhibitor Question
type: object
description: Schema for an existing exhibitor question
allOf:
- - title: Exhibitor Question
- description: A representation of an exhibitor question for an event.
- type: object
- allOf:
- - $ref: '#/components/schemas/copy-mappings-response/allOf/0'
- required:
- - event
- - type
- - text
- - required
- properties:
- event:
- $ref: '#/components/schemas/event.json6'
- text:
- type: string
- description: The actual text of the exhibitor question.
- example: Is there a business need?
- code:
- type: string
- minLength: 4
- maxLength: 10
- example: A001
- description: System or User defined event level unique exhibitor question code.
- type:
- $ref: '#/components/schemas/exhibitor-question-type.json'
- required:
- type: boolean
- description: A boolean indicating whether the question is mandatory or not
- example: true
- choices:
- type: array
- description: An array of choices for the exhibitor question.
- items:
- $ref: '#/components/schemas/base-choice.json'
- minItems: 1
- maxItems: 100
- notApplicableAnswer:
- $ref: '#/components/schemas/additional-choice.json1'
- otherAnswer:
- $ref: '#/components/schemas/additional-choice.json1'
- answerFormat:
- $ref: '#/components/schemas/exhibitor-answer-format.json'
- answerLimits:
- $ref: '#/components/schemas/exhibitor-answer-limits.json'
- defaultToCurrentDate:
- type: boolean
- description: True indicates the current date and time is automatically set as the default value for OpenEndedDateTime questions.
- example: true
+ - $ref: '#/components/schemas/exhibitor-question'
required:
- id
properties:
@@ -36191,77 +36026,12 @@ components:
readOnly: true
default: 1
minimum: 1
- existing-exhibitor.json:
- title: Exhibitor
- description: JSON schema for the exhibitor object
- type: object
- allOf:
- - $ref: '#/components/schemas/exhibitor-response/allOf/0'
- properties:
- id:
- type: string
- format: uuid
- example: 4888db54-db22-11eb-8d19-0242ac130003
- description: ID of an exhibitor.
- readOnly: true
- profileLogoId:
- description: File ID for exhibitor profile logo.
- format: uuid
- type: string
- example: 31bd3ae1-0dc3-487b-953e-41d6bbade7d2
- readOnly: true
- profileLogoUrl:
- description: URL for exhibitor profile logo.
- format: uri
- type: string
- example: https://images.cvent.com/pt/fileLocation/url_123
- readOnly: true
- bannerId:
- description: File ID for exhibitor banner.
- format: uuid
- type: string
- example: 12ca3ae2-0dc3-487b-953e-86d6acadf7d5
- readOnly: true
- bannerUrl:
- description: URL for exhibitor banner.
- format: uri
- type: string
- example: https://images.cvent.com/pt/fileLocation/url_456
- readOnly: true
existing-file:
description: Content of existing exhibitor file
title: File Response
type: object
allOf:
- - description: Content of exhibitor file.
- title: File Request
- type: object
- allOf:
- - $ref: '#/components/schemas/copy-mappings-response/allOf/0'
- properties:
- event:
- $ref: '#/components/schemas/event.json6'
- exhibitor:
- $ref: '#/components/schemas/exhibitor.json'
- displayName:
- description: Display name of the file.
- example: Marketing Page
- type: string
- minLength: 1
- hidden:
- type: boolean
- description: True indicates the file is hidden from attendees.
- default: false
- order:
- description: Display order for exhibitor file content.
- type: integer
- example: 3
- minimum: 1
- required:
- - event
- - exhibitor
- - displayName
- - order
+ - $ref: '#/components/schemas/file'
properties:
id:
description: Unique ID of the file.
@@ -36274,312 +36044,12 @@ components:
description: Represents an existing Events+ hub.
type: object
allOf:
- - title: Hub
- type: object
- description: An Events+ hub consists of basic information and theme data such as title, owner*Name, url, backgroundColor and logoImage.
- required:
- - title
- - owner
- allOf:
- - $ref: '#/components/schemas/banner/allOf/0'
- properties:
- title:
- type: string
- description: A short descriptor of the Events+ hub.
- example: Future Technologies
- maxLength: 255
- minLength: 1
- owner:
- $ref: '#/components/schemas/hub-owner.json'
- customDomain:
- type: string
- description: Custom domain name of the Events+ hub.
- example: example.com
- maxLength: 255
- url:
- title: Events+ Hub URL
- description: The URL that links to the Events+ hub.
- type: string
- format: uri
- pattern: ^https:\/\/[\S]{2,}
- example: https://web.cvent.com/eventsplus
- maxLength: 255
- colors:
- $ref: '#/components/schemas/hub-colors.json'
- themeSafeMode:
- type: boolean
- description: True guarantees that controls shown on the page will contrast with the background color.
- example: true
- default: false
- logo:
- $ref: '#/components/schemas/hub-logo.json'
- background:
- $ref: '#/components/schemas/hub-background.json'
- locale:
- type: string
- description: An IETF BCP 47 language tag used to indicate the language of the Events+ hub.
- example: en-GB
- maxLength: 255
- calendar:
- $ref: '#/components/schemas/hub-calendar.json'
- helpEmailAddress:
- type: string
- format: email
- description: Help email address to reach out in case of any issues logging in or registering.
- example: abc@example.com
- maxLength: 255
- autoDetectBrowserLocale:
- type: boolean
- description: True indicates the Events+ hub should detect the browser locale. If translations for the detected language are enabled in the Events+ hub, the Events+ hub will switch to the detected language.
- example: true
- faviconUrl:
- description: URL of the Events+ hub favicon.
- type: string
- format: uri
- example: https://cvent.com/bucket/scope/logo.png
- maxLength: 255
- utmOverride:
- $ref: '#/components/schemas/utm-override.json'
- fonts:
- $ref: '#/components/schemas/hub-fonts.json'
- login:
- $ref: '#/components/schemas/hub-login.json'
+ - $ref: '#/components/schemas/Hub'
properties:
id:
- $ref: '#/components/schemas/hub-id-property-read-only.json'
+ $ref: '#/components/schemas/HubIdPropertyReadOnly'
status:
- $ref: '#/components/schemas/hub-status-property.json'
- existing-lead.json:
- title: Lead
- type: object
- description: A JSON Schema file for Lead.
- allOf:
- - title: Lead
- type: object
- description: Lead object representing a lead captured at an event
- allOf:
- - $ref: '#/components/schemas/copy-mappings-response/allOf/0'
- properties:
- event:
- $ref: '#/components/schemas/event.json6'
- exhibitor:
- $ref: '#/components/schemas/exhibitor.json'
- attendee:
- $ref: '#/components/schemas/lead-attendee.json'
- boothStaff:
- $ref: '#/components/schemas/lead-booth-staff.json'
- device:
- $ref: '#/components/schemas/lead-device.json'
- appointment:
- $ref: '#/components/schemas/lead-appointment.json'
- title:
- type: string
- description: The title of the lead
- example: Mr.
- firstName:
- type: string
- description: The first name of the lead
- example: Henry
- lastName:
- type: string
- description: The last name of the lead
- example: Potterfield
- email:
- type: string
- format: email
- description: The email address of the lead
- example: h.potterfield@test.com
- company:
- type: string
- description: The company/organization the lead belongs to.
- example: Cvent Inc
- mobilePhone:
- type: string
- description: Mobile phone number of the lead
- maxLength: 30
- example: 555-555-5555
- homeAddress:
- $ref: '#/components/schemas/lead-address.json'
- homePhone:
- type: string
- description: Home phone number of the lead
- example: 555-555-5555
- workAddress:
- $ref: '#/components/schemas/lead-address.json'
- workPhone:
- type: string
- description: Work Phone number of the lead
- example: 555-555-5555
- type:
- description: The type of lead.
- type: string
- default: leadcapture
- enum:
- - leadcapture
- - inbound
- - appointment
- application:
- description: The application used to capture lead.
- type: string
- default: leadcapture
- enum:
- - leadcapture
- - attendeehub_mobile
- - attendeehub_web
- - appointment_app
- source:
- description: The source of entry for the lead
- type: string
- enum:
- - scanned
- - manual
- - business_card_scanned
- - ulc_scanned
- - inbound
- - appointment
- deleted:
- description: A boolean indicating whether a lead is deleted or not
- type: boolean
- default: false
- comments:
- type: string
- description: Comments about the lead
- example: I am interested in your product.
- licenseCode:
- description: License (access code) that was used to capture the lead
- type: string
- example: nag1248
- matched:
- description: A boolean indicating whether the lead is matched or not
- type: boolean
- example: true
- transcriptionStatus:
- description: Current status of business card transcription
- type: string
- enum:
- - pending
- - submitted
- - completed
- - failed
- qualified:
- description: A boolean indicating whether a lead is qualified or not
- type: boolean
- example: true
- additionalBadgekitFields:
- description: Map containing extra properties from badgekit provider
- type: object
- properties:
- id:
- type: string
- format: uuid
- example: cdd0d110-3a84-4bc5-a420-37c007716c73
- description: ID of Lead.
- readOnly: true
- existing-member.json:
- title: Existing Member
- description: An existing member.
- type: object
- allOf:
- - title: MemberProfile
- type: object
- description: Events+ member profile details.
- required:
- - firstName
- - lastName
- properties:
- firstName:
- type: string
- description: Member's first name.
- example: Mateo
- maxLength: 30
- lastName:
- type: string
- description: Member's last name
- example: Allende
- maxLength: 30
- prefix:
- type: string
- description: Used to denote title of member e.g. Mr., Mrs., Dr. etc.
- example: Dr.
- maxLength: 30
- designation:
- type: string
- description: Member's designation in the company.
- maxLength: 30
- example: White Wolf
- jobTitle:
- type: string
- description: Member's job title.
- maxLength: 100
- example: Director
- companyName:
- type: string
- description: Member's company name.
- maxLength: 100
- example: Cvent.inc
- headline:
- type: string
- description: Member's biographical writeup.
- example: A visionary in the field of event planning.
- maxLength: 220
- pronouns:
- type: string
- description: Member's pronouns.
- maxLength: 30
- example: she/her
- socialMediaLinks:
- $ref: '#/components/schemas/social-media-links.json'
- profileImageUrl:
- title: Link
- required:
- - href
- type: object
- description: The optimized URL of the Events+ member's profile image.
- properties:
- href:
- type: string
- description: A URL pointing to the member's profile image.
- example: '?token=90c5f062-76ad-4ea4-aa53-00eb698d9262'
- emailAddress:
- type: string
- description: Member's email address.
- maxLength: 80
- example: abc@example.com
- mobileNumber:
- type: string
- maxLength: 30
- example: 555-555-5555
- description: Member's mobile number.
- workAddress:
- $ref: '#/components/schemas/work-address.json'
- compliance:
- $ref: '#/components/schemas/compliance.json'
- locale:
- type: string
- description: Member's preferred language. Used for localization of the UI and emails. The value should be in the form of an ISO-639 language code and ISO 3166-1 Alpha-2 country code separated by a hyphen. e.g. en-US, fr-FR, es-ES etc.
- example: en-US
- registrationDate:
- type: string
- format: date-time
- description: The ISO 8601 zoned date time when the member registered.
- example: '2017-01-02T02:00:00Z'
- readOnly: true
- lastLoginDate:
- type: string
- format: date-time
- description: The ISO 8601 zoned date time when the member last logged in.
- readOnly: true
- example: '2017-01-02T02:00:00Z'
- visible:
- type: boolean
- default: false
- description: True indicates member profile is visible to other members.
- properties:
- id:
- type: string
- description: The unique ID of the member.
- example: c764fb48-a62b-4c5f-b98f-01b5dae2c2ff
- format: uuid
+ $ref: '#/components/schemas/HubStatusProperty'
existing-player:
title: ExistingPlayer
description: An existing webcast player.
@@ -36629,30 +36099,6 @@ components:
format: uuid
description: Player ID
readOnly: true
- existing-registration-pack.json:
- title: ExistingRegistrationPack
- type: object
- required:
- - id
- - event
- - exhibitor
- - capacities
- description: Schema for existing registration pack object
- properties:
- id:
- type: string
- format: uuid
- example: 50f4f0df-0c2d-4e6b-8e68-e1413b6917f5
- description: Registration pack id
- event:
- $ref: '#/components/schemas/event.json6'
- exhibitor:
- $ref: '#/components/schemas/exhibitor.json'
- capacities:
- type: array
- items:
- $ref: '#/components/schemas/existing-capacity.json'
- description: Capacities allocated per registration type for this exhibitor's registration pack.
existing-registration-path.json:
title: ExistingRegistrationPath
description: Represents the details of an existing registration path.
@@ -36706,7 +36152,7 @@ components:
readOnly: true
example: 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3
capacity:
- $ref: '#/components/schemas/capacity.json1'
+ $ref: '#/components/schemas/capacity.json'
properties:
registrationPath:
$ref: '#/components/schemas/associated-registration-path.json'
@@ -36988,7 +36434,7 @@ components:
example: 327PP24H
readOnly: true
locale:
- $ref: '#/components/schemas/locale.json-01'
+ $ref: '#/components/schemas/locale.json-0'
housingEvent:
$ref: '#/components/schemas/housing-event-id.json'
block:
@@ -37262,21 +36708,7 @@ components:
type: object
description: Existing sponsorship level model
allOf:
- - title: Sponsorship level
- type: object
- description: A file representing the sponsorship level
- required:
- - event
- - name
- allOf:
- - $ref: '#/components/schemas/copy-mappings-response/allOf/0'
- properties:
- event:
- $ref: '#/components/schemas/event.json6'
- name:
- type: string
- description: Name of the sponsorship level
- example: Silver
+ - $ref: '#/components/schemas/SponsorshipLevel-1'
properties:
id:
type: string
@@ -37809,41 +37241,7 @@ components:
title: Weblink Response
type: object
allOf:
- - description: Content of exhibitor weblink.
- title: Weblink Request
- type: object
- allOf:
- - $ref: '#/components/schemas/copy-mappings-response/allOf/0'
- properties:
- event:
- $ref: '#/components/schemas/event.json6'
- exhibitor:
- $ref: '#/components/schemas/exhibitor.json'
- name:
- description: Display name of the weblink.
- example: Marketing Page
- type: string
- minLength: 1
- url:
- type: string
- format: uri
- description: The URL of the weblink.
- example: http://www.example.com
- hidden:
- type: boolean
- description: True indicates the weblink is hidden from attendees.
- default: false
- order:
- description: Display order for exhibitor weblink content.
- type: integer
- example: 3
- minimum: 1
- required:
- - event
- - exhibitor
- - url
- - name
- - order
+ - $ref: '#/components/schemas/weblink'
properties:
id:
description: Unique ID of the weblink.
@@ -37851,6 +37249,59 @@ components:
format: uuid
example: 4d44b9e4-8c1a-403d-a20a-0b981f539935
type: string
+ ExistingCapacity:
+ title: ExistingCapacity
+ type: object
+ description: Represents the existing capacity of the registration type for an exhibitor
+ allOf:
+ - $ref: '#/components/schemas/Capacity'
+ required:
+ - availableCapacity
+ properties:
+ availableCapacity:
+ type: integer
+ description: Available capacity of the registration type for an exhibitor
+ example: 4
+ ExistingELiteratureRequestDataForLead:
+ title: Existing E-literature Request Data for Lead
+ type: object
+ allOf:
+ - $ref: '#/components/schemas/ELiteratureRequestDataForLead'
+ properties:
+ id:
+ type: string
+ format: uuid
+ example: 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3
+ description: Request identifier
+ readOnly: true
+ description: A JSON Schema for an existing e-literature request data for a lead.
+ ExistingExhibitorAnswer:
+ title: Existing Exhibitor Answer
+ type: object
+ description: Existing Exhibitor Answer schema
+ allOf:
+ - $ref: '#/components/schemas/ExhibitorAnswer'
+ required:
+ - id
+ properties:
+ id:
+ type: string
+ format: uuid
+ readOnly: true
+ example: 06d2bfce-1793-11ec-9621-0242ac130002
+ description: Exhibitor Answer id
+ ExistingMember:
+ title: Existing Member
+ description: An existing member.
+ type: object
+ allOf:
+ - $ref: '#/components/schemas/member-profile'
+ properties:
+ id:
+ type: string
+ description: The unique ID of the member.
+ example: c764fb48-a62b-4c5f-b98f-01b5dae2c2ff
+ format: uuid
expandable-credit-type.json:
title: ExpandableCreditType
description: |-
@@ -38175,7 +37626,8 @@ components:
| `Exhibitors` | Centralizes exhibitor setup—profiles, tasks, content/categories—and booth staff and LeadCapture management, with exhibitor listings and engagement surfaced in Attendee Hub. |
| `Vendors` | Allows planners to source and manage event services directly from the container event. |
| `EventAds` | Allows planners to create, place, and track targeted ads across Attendee Hub and the event app. |
- | `EventCredits` | Allows planners to set rules and track credits attendees earn for sessions and the event. |
+ | `EventCredits` | Allows planners to set rules and track credits attendees earn for sessions and the event. Only one of `EventCredits` or `CreditsAndCertificates` can be active at a time. |
+ | `CreditsAndCertificates` | Allows planners to create credit rules, link them to events and sessions, and award credits to attendees. Also enables creating certificates, linking them to credit rules, and awarding them to attendees. Only one of `EventCredits` or `CreditsAndCertificates` can be active at a time. |
type: string
enum:
- Website
@@ -38193,6 +37645,7 @@ components:
- Vendors
- EventAds
- EventCredits
+ - CreditsAndCertificates
example: Registration
feature-update:
title: FeatureUpdate
@@ -38389,7 +37842,7 @@ components:
default: false
description: True indicates this is a mandatory question field.
example: true
- field.json5:
+ field.json3:
title: Field
description: A survey field.
type: object
@@ -38402,7 +37855,7 @@ components:
type: array
description: List of choices for this field.
items:
- $ref: '#/components/schemas/choice.json3'
+ $ref: '#/components/schemas/choice.json2'
notApplicableAnswer:
$ref: '#/components/schemas/additionalChoice.json'
otherAnswer:
@@ -38417,12 +37870,12 @@ components:
title: File Request
type: object
allOf:
- - $ref: '#/components/schemas/copy-mappings-response/allOf/0'
+ - $ref: '#/components/schemas/Audit'
properties:
event:
- $ref: '#/components/schemas/event.json6'
+ $ref: '#/components/schemas/Event1'
exhibitor:
- $ref: '#/components/schemas/exhibitor.json'
+ $ref: '#/components/schemas/Exhibitor'
displayName:
description: Display name of the file.
example: Marketing Page
@@ -38894,7 +38347,7 @@ components:
type: string
example: (231)-213-1222
homeAddress:
- $ref: '#/components/schemas/address.json3'
+ $ref: '#/components/schemas/address.json2'
paymentInfo:
$ref: '#/components/schemas/payment-info.json'
hls-input-with-clips.json:
@@ -39508,12 +38961,12 @@ components:
example: '2026-12-13T05:00:00Z'
format: date-time
defaultLocale:
- $ref: '#/components/schemas/locale.json-01'
+ $ref: '#/components/schemas/locale.json-0'
locales:
description: List of event locales.
type: array
items:
- $ref: '#/components/schemas/locale.json-01'
+ $ref: '#/components/schemas/locale.json-0'
image:
description: Event image URL.
type: string
@@ -39581,7 +39034,7 @@ components:
rating:
$ref: '#/components/schemas/hotel-rating.json'
address:
- $ref: '#/components/schemas/address.json3'
+ $ref: '#/components/schemas/address.json2'
housing-event-hotels-list:
type: object
title: HotelsList
@@ -39645,7 +39098,78 @@ components:
items:
$ref: '#/components/schemas/housing-event/allOf/0'
description: List of housing events with key information, providing a summarized view of each event.
- hub-background.json:
+ Hub:
+ title: Hub
+ type: object
+ description: An Events+ hub consists of basic information and theme data such as title, owner*Name, url, backgroundColor and logoImage.
+ required:
+ - title
+ - owner
+ allOf:
+ - $ref: '#/components/schemas/Audit'
+ properties:
+ title:
+ type: string
+ description: A short descriptor of the Events+ hub.
+ example: Future Technologies
+ maxLength: 255
+ minLength: 1
+ owner:
+ $ref: '#/components/schemas/HubOwner'
+ customDomain:
+ type: string
+ description: Custom domain name of the Events+ hub.
+ example: example.com
+ maxLength: 255
+ url:
+ title: Events+ Hub URL
+ description: The URL that links to the Events+ hub.
+ type: string
+ format: uri
+ pattern: ^https:\/\/[\S]{2,}
+ example: https://web.cvent.com/eventsplus
+ maxLength: 255
+ colors:
+ $ref: '#/components/schemas/HubColors'
+ themeSafeMode:
+ type: boolean
+ description: True guarantees that controls shown on the page will contrast with the background color.
+ example: true
+ default: false
+ logo:
+ $ref: '#/components/schemas/HubLogo'
+ background:
+ $ref: '#/components/schemas/HubBackground'
+ locale:
+ type: string
+ description: An IETF BCP 47 language tag used to indicate the language of the Events+ hub.
+ example: en-GB
+ maxLength: 255
+ calendar:
+ $ref: '#/components/schemas/HubCalendar'
+ helpEmailAddress:
+ type: string
+ format: email
+ description: Help email address to reach out in case of any issues logging in or registering.
+ example: abc@example.com
+ maxLength: 255
+ autoDetectBrowserLocale:
+ type: boolean
+ description: True indicates the Events+ hub should detect the browser locale. If translations for the detected language are enabled in the Events+ hub, the Events+ hub will switch to the detected language.
+ example: true
+ faviconUrl:
+ description: URL of the Events+ hub favicon.
+ type: string
+ format: uri
+ example: https://cvent.com/bucket/scope/logo.png
+ maxLength: 255
+ utmOverride:
+ $ref: '#/components/schemas/UTMOverride'
+ fonts:
+ $ref: '#/components/schemas/HubFonts'
+ login:
+ $ref: '#/components/schemas/HubLogin'
+ HubBackground:
title: HubBackground
type: object
description: The background image of the Events+ hub.
@@ -39666,7 +39190,7 @@ components:
example: A mostly empty conference room.
minLength: 1
maxLength: 100
- hub-calendar.json:
+ HubCalendar:
title: HubCalendar
type: object
description: The event calendar associated with this Events+ hub. The event calendar allows you to share multiple events and sessions in a list or calendar format.
@@ -39684,7 +39208,7 @@ components:
- List
- Grid
example: List
- hub-colors.json:
+ HubColors:
title: HubColors
type: object
description: All the colors associated with the Events+ hub.
@@ -39718,7 +39242,7 @@ components:
pattern: ^#?([0-9A-Fa-f]{6}|[0-9A-Fa-f]{3})$
default: '#FFFFFF'
maxLength: 7
- hub-fonts.json:
+ HubFonts:
title: HubFonts
type: object
description: The fonts of the Events+ hub.
@@ -39733,14 +39257,14 @@ components:
format: uuid
example: 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3
description: The id of the font used in this Events+ hub's body text. Custom fonts are previously uploaded in account.
- hub-id-property-read-only.json:
+ HubIdPropertyReadOnly:
title: HubIdPropertyReadOnly
description: The unique ID of an Events+ Hub.
type: string
format: uuid
example: 1e7e0f38-d73c-4326-9f93-422086b91304
readOnly: true
- hub-login.json:
+ HubLogin:
title: HubLogin
type: object
properties:
@@ -39763,7 +39287,7 @@ components:
description: The service provider-initiated URL, used by Events+ hub members for single sign-on (SSO). Used when the `type` property is SSO or BOTH.
example: https://login.cvent.com/redirect?redirectUrl=https://cvent-login.com/oauth2/oauth-redirect&productId=0oaztigu7sVcS4PHM0h7&identityProviderName=OneloginforFlexGuestside
description: Fields relating to the login process for the Events+ hub.
- hub-logo.json:
+ HubLogo:
title: HubLogo
type: object
description: The logo for the Events+ hub.
@@ -39784,7 +39308,7 @@ components:
example: A mostly empty conference room.
minLength: 1
maxLength: 100
- hub-owner.json:
+ HubOwner:
title: HubOwner
type: object
description: The owner of the Events+ hub and their information.
@@ -39808,14 +39332,6 @@ components:
example: owner@example.com
maxLength: 255
minLength: 1
- hub-status-property.json:
- title: HubStatusProperty
- type: string
- enum:
- - Inactive
- - Active
- - Deleted
- description: 'The current Events+ Hub status. Inactive: The Events+ Hub is inactive and unavailable to members. Active: Members can access the Events+ Hub. Deleted: The Events+ Hub has been deleted and is unavailable to members or planners.'
hubs-paginated-response:
title: HubsPaginatedResponse
description: The response from a request to get the list of Events+ hubs. This includes the paging object as well as the collection of Events+ hubs.
@@ -39825,13 +39341,21 @@ components:
type: object
properties:
paging:
- $ref: '#/components/schemas/paging.json'
+ $ref: '#/components/schemas/Paging'
data:
type: array
maxItems: 200
items:
$ref: '#/components/schemas/existing-hub'
description: List of Events+ hubs.
+ HubStatusProperty:
+ title: HubStatusProperty
+ type: string
+ enum:
+ - Inactive
+ - Active
+ - Deleted
+ description: 'The current Events+ Hub status. Inactive: The Events+ Hub is inactive and unavailable to members. Active: Members can access the Events+ Hub. Deleted: The Events+ Hub has been deleted and is unavailable to members or planners.'
id-name.json:
title: NamedObject
description: A Named object
@@ -39929,7 +39453,7 @@ components:
type: object
properties:
paging:
- $ref: '#/components/schemas/paging.json25'
+ $ref: '#/components/schemas/paging.json23'
data:
type: array
items:
@@ -40144,86 +39668,146 @@ components:
- Website
- Registration
example: Registration
- lead-address.json:
- title: Address
- description: Schema for address information
+ Lead:
+ title: Lead
type: object
+ description: A JSON Schema file for Lead.
+ allOf:
+ - $ref: '#/components/schemas/Lead-1'
properties:
- address1:
+ id:
type: string
- description: The first line of an address
- example: Cvent Inc.
- address2:
+ format: uuid
+ example: cdd0d110-3a84-4bc5-a420-37c007716c73
+ description: ID of Lead.
+ readOnly: true
+ Lead-1:
+ title: Lead
+ type: object
+ description: Lead object representing a lead captured at an event
+ allOf:
+ - $ref: '#/components/schemas/Audit'
+ properties:
+ event:
+ $ref: '#/components/schemas/Event1'
+ exhibitor:
+ $ref: '#/components/schemas/Exhibitor'
+ attendee:
+ $ref: '#/components/schemas/Attendee-1'
+ boothStaff:
+ $ref: '#/components/schemas/BoothStaff'
+ device:
+ $ref: '#/components/schemas/Device'
+ appointment:
+ $ref: '#/components/schemas/Appointment'
+ title:
type: string
- description: The second line of an address
- example: 4001 West Parmer Lane
- city:
+ description: The title of the lead
+ example: Mr.
+ firstName:
type: string
- description: The name of the city.
- example: Austin
- region:
+ description: The first name of the lead
+ example: Henry
+ lastName:
type: string
- description: The name of the state/province/region of the address.
- example: Texas
- regionCode:
+ description: The last name of the lead
+ example: Potterfield
+ email:
type: string
- description: The abbreviation of the state/province/region of the address.
- example: TX
- postalCode:
+ format: email
+ description: The email address of the lead
+ example: h.potterfield@test.com
+ company:
type: string
- description: postal code (also known as zipcode) of the address
- example: '78727'
- country:
+ description: The company/organization the lead belongs to.
+ example: Cvent Inc
+ mobilePhone:
type: string
- description: Name of the country for example, 'United States'
- example: United States of America
- countryCode:
+ description: Mobile phone number of the lead
+ maxLength: 30
+ example: 555-555-5555
+ homeAddress:
+ $ref: '#/components/schemas/Address-1'
+ homePhone:
type: string
- description: ISO 3166 two-letter (alpha-2) country code
- example: US
- lead-appointment.json:
- title: Appointment
- description: A JSON schema representing the structure of an appointment object.
- type: object
- properties:
- id:
+ description: Home phone number of the lead
+ example: 555-555-5555
+ workAddress:
+ $ref: '#/components/schemas/Address-1'
+ workPhone:
type: string
- format: uuid
- example: 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3
- description: Appointment id
- lead-attendee.json:
- title: Attendee
- type: object
- description: A JSON schema representing the Attendee object
- properties:
- id:
+ description: Work Phone number of the lead
+ example: 555-555-5555
+ type:
+ description: The type of lead.
type: string
- format: uuid
- example: 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3
- description: Attendee id
- lead-booth-staff.json:
- title: Booth Staff
- type: object
- description: A JSON schema representing Booth Staff entity
- properties:
- id:
+ default: leadcapture
+ enum:
+ - leadcapture
+ - inbound
+ - appointment
+ application:
+ description: The application used to capture lead.
type: string
- format: uuid
- example: 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3
- description: Booth Staff id
- lead-device.json:
- title: Device
+ default: leadcapture
+ enum:
+ - leadcapture
+ - attendeehub_mobile
+ - attendeehub_web
+ - appointment_app
+ source:
+ description: The source of entry for the lead
+ type: string
+ enum:
+ - scanned
+ - manual
+ - business_card_scanned
+ - ulc_scanned
+ - inbound
+ - appointment
+ deleted:
+ description: A boolean indicating whether a lead is deleted or not
+ type: boolean
+ default: false
+ comments:
+ type: string
+ description: Comments about the lead
+ example: I am interested in your product.
+ licenseCode:
+ description: License (access code) that was used to capture the lead
+ type: string
+ example: nag1248
+ matched:
+ description: A boolean indicating whether the lead is matched or not
+ type: boolean
+ example: true
+ transcriptionStatus:
+ description: Current status of business card transcription
+ type: string
+ enum:
+ - pending
+ - submitted
+ - completed
+ - failed
+ qualified:
+ description: A boolean indicating whether a lead is qualified or not
+ type: boolean
+ example: true
+ additionalBadgekitFields:
+ description: Map containing extra properties from badgekit provider
+ type: object
+ Lead-2:
+ title: Lead
type: object
- description: A JSON object representing an electronic device used to capture leads.
+ required:
+ - id
properties:
id:
type: string
- description: The id of device used to capture lead
- example: EKEK993IF9F
- name:
- type: string
- description: The name of device used to capture lead
- example: North Gate
+ format: uuid
+ example: 4e74f930-db22-11eb-8d19-0242ac130003
+ description: Lead id
+ description: JSON schema for the Lead object
lead-object.json:
type: object
title: LeadObject
@@ -40277,80 +39861,8 @@ components:
data:
type: array
items:
- $ref: '#/components/schemas/lead-qualification-answers.json'
+ $ref: '#/components/schemas/LeadQualificationAnswers'
description: Collection of Lead Qualification Answers.
- lead-qualification-answers.json:
- title: Lead Qualification Answers
- description: This JSON schema file represents lead qualification answers
- type: object
- allOf:
- - $ref: '#/components/schemas/copy-mappings-response/allOf/0'
- properties:
- id:
- type: string
- format: uuid
- example: 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3
- description: Lead Qualification Answer id
- question:
- $ref: '#/components/schemas/uuid.json'
- event:
- $ref: '#/components/schemas/event.json6'
- exhibitor:
- $ref: '#/components/schemas/exhibitor.json'
- lead:
- $ref: '#/components/schemas/lead.json'
- answers:
- description: List of answers
- type: array
- items:
- $ref: '#/components/schemas/answer.json'
- lead-qualification-question.json:
- title: Lead Qualification Question
- type: object
- description: A JSON schema representing a Lead Qualification Question model
- allOf:
- - $ref: '#/components/schemas/copy-mappings-response/allOf/0'
- properties:
- id:
- type: string
- format: uuid
- example: 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3
- description: Lead Qualification Question id
- event:
- $ref: '#/components/schemas/event.json6'
- exhibitor:
- $ref: '#/components/schemas/exhibitor.json'
- type:
- type: string
- description: Type of question
- enum:
- - MultiChoice
- - SingleChoice
- - Rating
- - OpenEndedTextOneLine
- - OpenEndedTextCommentBox
- - OpenEndedDateTime
- code:
- type: string
- description: question code
- example: cult
- choices:
- type: array
- description: List of available choices for the question
- items:
- $ref: '#/components/schemas/choice.json2'
- notApplicableAnswer:
- $ref: '#/components/schemas/additional-choice.json1'
- otherAnswers:
- $ref: '#/components/schemas/additional-choice.json1'
- required:
- type: boolean
- description: A boolean indicating whether the question is mandatory or not
- example: true
- text:
- type: string
- description: text of the question
- example: Is there a business need?
lead-qualification-questions-list-response:
title: Lead Qualification Questions List Response
type: object
@@ -40359,7 +39871,7 @@ components:
data:
type: array
items:
- $ref: '#/components/schemas/lead-qualification-question.json'
+ $ref: '#/components/schemas/LeadQualificationQuestion'
description: Collection of lead qualification questions.
lead-qualified-answer.json:
title: LeadQualifiedAnswer
@@ -40392,7 +39904,7 @@ components:
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 (under development currently).
+ 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
@@ -40402,32 +39914,92 @@ components:
id:
type: string
format: uuid
- description: Unique identifier for source generating the RFP. Details about this lead source section can be fetched using lead source API. (under development currently)
+ 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'
- lead.json:
- title: Lead
+ LeadQualificationAnswers:
+ title: Lead Qualification Answers
+ description: This JSON schema file represents lead qualification answers
type: object
- required:
- - id
+ allOf:
+ - $ref: '#/components/schemas/Audit'
properties:
id:
type: string
format: uuid
- example: 4e74f930-db22-11eb-8d19-0242ac130003
- description: Lead id
- description: JSON schema for the Lead object
+ example: 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3
+ description: Lead Qualification Answer id
+ question:
+ $ref: '#/components/schemas/UUID1'
+ event:
+ $ref: '#/components/schemas/Event1'
+ exhibitor:
+ $ref: '#/components/schemas/Exhibitor'
+ lead:
+ $ref: '#/components/schemas/Lead-2'
+ answers:
+ description: List of answers
+ type: array
+ items:
+ $ref: '#/components/schemas/Answer-1'
+ LeadQualificationQuestion:
+ title: Lead Qualification Question
+ type: object
+ description: A JSON schema representing a Lead Qualification Question model
+ allOf:
+ - $ref: '#/components/schemas/Audit'
+ properties:
+ id:
+ type: string
+ format: uuid
+ example: 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3
+ description: Lead Qualification Question id
+ event:
+ $ref: '#/components/schemas/Event1'
+ exhibitor:
+ $ref: '#/components/schemas/Exhibitor'
+ type:
+ type: string
+ description: Type of question
+ enum:
+ - MultiChoice
+ - SingleChoice
+ - Rating
+ - OpenEndedTextOneLine
+ - OpenEndedTextCommentBox
+ - OpenEndedDateTime
+ code:
+ type: string
+ description: question code
+ example: cult
+ choices:
+ type: array
+ description: List of available choices for the question
+ items:
+ $ref: '#/components/schemas/Choice'
+ notApplicableAnswer:
+ $ref: '#/components/schemas/AdditionalChoice'
+ otherAnswers:
+ $ref: '#/components/schemas/AdditionalChoice'
+ required:
+ type: boolean
+ description: A boolean indicating whether the question is mandatory or not
+ example: true
+ text:
+ type: string
+ description: text of the question
+ example: Is there a business need?
leads-paginated-response:
title: LeadsPaginatedResponse
type: object
properties:
paging:
- $ref: '#/components/schemas/paging.json'
+ $ref: '#/components/schemas/Paging'
data:
type: array
items:
- $ref: '#/components/schemas/existing-lead.json'
+ $ref: '#/components/schemas/Lead'
description: Collection of leads.
description: A paginated response of leads.
leg-detail.json:
@@ -40452,27 +40024,17 @@ components:
type: string
description: General time of day or specific time when the flight of the passenger's journey starts.
example: Morning
- link-https-named.json:
- description: A link object that requires a short name and url property with an https:// prefix.
- title: LinkHttpsNamed
- type: object
+ Link:
+ title: Link
required:
- - name
- - url
+ - href
+ type: object
+ description: Represents a link to a related resource.
properties:
- name:
- title: name
- description: Text that will be displayed as a clickable link.
- type: string
- example: Example Home
- minLength: 1
- maxLength: 100
- url:
- title: url
- description: A link beginning with https://.
+ href:
type: string
- pattern: ^https://.*
- example: https://example.com
+ description: A url provided that can be followed for linking
+ example: '?token=90c5f062-76ad-4ea4-aa53-00eb698d9262'
link.json:
title: Link
required:
@@ -40573,7 +40135,7 @@ components:
example: en-US
minLength: 1
maxLength: 200
- locale.json-01:
+ locale.json-0:
description: Locale code in IETF language tag format.
title: Locale
type: string
@@ -40675,12 +40237,6 @@ components:
type: string
description: The management level of the travel account. Defined by the supply-side.
example: global
- mapping-ids.json:
- title: Event copy mapping IDs
- type: object
- description: A map of entity IDs from source event to target event. Keys and values are UUIDs.
- example:
- 9a6cea18-2961-4a10-aaaf-2e3a6051ce9b: 84fc290a-9da4-48df-9d94-e7b76bf7391d
max-guests.json:
title: MaxGuests
description: Maximum number of guests the room can accommodate.
@@ -40769,7 +40325,7 @@ components:
id:
type: string
format: uuid
- description: Event ID.
+ description: Event ID. This field may be absent immediately after creation when the meeting request form is configured to auto-create an event on submission, as event creation is processed asynchronously.
description: The event the request is associated with.
sourceId:
type: string
@@ -40835,7 +40391,6 @@ components:
type: object
required:
- name
- - meetingRequestForm
- questions
properties:
name:
@@ -40965,7 +40520,7 @@ components:
type: array
uniqueItems: true
items:
- $ref: '#/components/schemas/answer-type.json1'
+ $ref: '#/components/schemas/answer-type.json'
meeting-request-document-paginated-response:
title: MeetingRequestDocumentPaginatedResponse
description: Paginated collection of meeting request documents.
@@ -41156,7 +40711,7 @@ components:
**Complex questions (`type: MeetingRoomRequirements`, `SleepingRoomRequirements`, or `BudgetEstimates`):** Each item is a JSON-serialized string. See `compositeValue` for the same data in parsed form.
answerType:
- $ref: '#/components/schemas/answer-type.json1'
+ $ref: '#/components/schemas/answer-type.json'
secondaryValue:
$ref: '#/components/schemas/secondary-value.json'
compositeValue:
@@ -41310,6 +40865,101 @@ components:
maxLength: 2500
description: Planner note about the meeting room.
example: This meeting room has the best audio quality.
+ member-profile:
+ title: MemberProfile
+ type: object
+ description: Events+ member profile details.
+ required:
+ - firstName
+ - lastName
+ properties:
+ firstName:
+ type: string
+ description: Member's first name.
+ example: Mateo
+ maxLength: 30
+ lastName:
+ type: string
+ description: Member's last name
+ example: Allende
+ maxLength: 30
+ prefix:
+ type: string
+ description: Used to denote title of member e.g. Mr., Mrs., Dr. etc.
+ example: Dr.
+ maxLength: 30
+ designation:
+ type: string
+ description: Member's designation in the company.
+ maxLength: 30
+ example: White Wolf
+ jobTitle:
+ type: string
+ description: Member's job title.
+ maxLength: 100
+ example: Director
+ companyName:
+ type: string
+ description: Member's company name.
+ maxLength: 100
+ example: Cvent.inc
+ headline:
+ type: string
+ description: Member's biographical writeup.
+ example: A visionary in the field of event planning.
+ maxLength: 220
+ pronouns:
+ type: string
+ description: Member's pronouns.
+ maxLength: 30
+ example: she/her
+ socialMediaLinks:
+ $ref: '#/components/schemas/SocialMediaLinks'
+ profileImageUrl:
+ title: Link
+ required:
+ - href
+ type: object
+ description: The optimized URL of the Events+ member's profile image.
+ properties:
+ href:
+ type: string
+ description: A URL pointing to the member's profile image.
+ example: '?token=90c5f062-76ad-4ea4-aa53-00eb698d9262'
+ emailAddress:
+ type: string
+ description: Member's email address.
+ maxLength: 80
+ example: abc@example.com
+ mobileNumber:
+ type: string
+ maxLength: 30
+ example: 555-555-5555
+ description: Member's mobile number.
+ workAddress:
+ $ref: '#/components/schemas/WorkAddress'
+ compliance:
+ $ref: '#/components/schemas/Compliance'
+ locale:
+ type: string
+ description: Member's preferred language. Used for localization of the UI and emails. The value should be in the form of an ISO-639 language code and ISO 3166-1 Alpha-2 country code separated by a hyphen. e.g. en-US, fr-FR, es-ES etc.
+ example: en-US
+ registrationDate:
+ type: string
+ format: date-time
+ description: The ISO 8601 zoned date time when the member registered.
+ example: '2017-01-02T02:00:00Z'
+ readOnly: true
+ lastLoginDate:
+ type: string
+ format: date-time
+ description: The ISO 8601 zoned date time when the member last logged in.
+ readOnly: true
+ example: '2017-01-02T02:00:00Z'
+ visible:
+ type: boolean
+ default: false
+ description: True indicates member profile is visible to other members.
membership-items-paginated-response:
title: Membership Items Paginated Response
required:
@@ -42106,6 +41756,34 @@ components:
format: uuid
description: Unique identifier for the organization.
example: 50dc08af-24a9-4d01-84be-3d43133dc945
+ OSSAudit:
+ title: OSS-Audit
+ description: OSS 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.This filed is deprecated.
+ deprecated: true
+ readOnly: true
+ example: hporter
other-payment.json:
description: Other payment details.
title: OtherPay
@@ -42177,11 +41855,11 @@ components:
type: object
properties:
paging:
- $ref: '#/components/schemas/paging.json'
+ $ref: '#/components/schemas/Paging'
data:
type: array
items:
- $ref: '#/components/schemas/existing-member.json'
+ $ref: '#/components/schemas/ExistingMember'
description: Collection of Events+ members.
PaginatedInternalDocuments:
title: PaginatedInternalDocuments
@@ -42299,6 +41977,46 @@ components:
$ref: '#/components/schemas/link.json'
prev:
$ref: '#/components/schemas/link.json'
+ PaginationLinks:
+ title: PaginationLinks
+ type: object
+ description: Represents pagination links for navigating between pages of data.
+ properties:
+ next:
+ $ref: '#/components/schemas/Link'
+ self:
+ $ref: '#/components/schemas/Link'
+ prev:
+ $ref: '#/components/schemas/Link'
+ Paging:
+ title: Paging
+ required:
+ - _links
+ type: object
+ description: Represents pagination information for a collection of resources.
+ properties:
+ previousToken:
+ type: string
+ description: The pagination token for the previous page, if one exists. You can use this token to navigate to the previous page of data.
+ example: 1a2b3c4d5e6f7g8h9i10j11k
+ nextToken:
+ type: string
+ description: The pagination token for the next page. If this value is present in the response, there is another page of data you can fetch.
+ example: 1a2b3c4d5e6f7g8h9i10j11k
+ currentToken:
+ type: string
+ description: The pagination token for the current page.
+ example: 1a2b3c4d5e6f7g8h9i10j11k
+ limit:
+ type: integer
+ description: The number of records to return on the page. Not to exceed 200.
+ example: 100
+ totalCount:
+ type: integer
+ description: The total number of records available. This field may return blank, even if there are more records. To confirm if there are more records, check the `nextToken` field.
+ example: 2
+ _links:
+ $ref: '#/components/schemas/PaginationLinks'
paging-no-total-count.json2:
title: Paging
required:
@@ -42353,7 +42071,7 @@ components:
example: 2
_links:
$ref: '#/components/schemas/pagination-links.json'
- paging.json25:
+ paging.json23:
title: Paging
required:
- _links
@@ -42492,7 +42210,7 @@ components:
type: string
example: Gustav Schultz
address:
- $ref: '#/components/schemas/address.json3'
+ $ref: '#/components/schemas/address.json2'
phone:
description: Phone number.
type: string
@@ -43532,8 +43250,8 @@ components:
title: ProcessFormSubmission
description: Represents a process form submission in the context of a specific event.
required:
- - id, event
- - form
+ - id
+ - event
type: object
allOf:
- $ref: '#/components/schemas/meeting-request/allOf/0'
@@ -44022,7 +43740,7 @@ components:
example: USD
description: The ISO 4217 standard format currency code specified for the property.
address:
- $ref: '#/components/schemas/address.json5'
+ $ref: '#/components/schemas/address.json4'
externalCodes:
type: array
items:
@@ -44372,34 +44090,10 @@ components:
description: Object representing an API Platform Usage Tier, including information when the usage plan is scheduled to revert to a previous plan, if any.
type: object
allOf:
- - title: Usage Plan
- description: Object representing an API Platform Usage Tier
- required:
- - name
- - quota
- - burstLimit
- - rateLimit
- type: object
- properties:
- name:
- type: string
- description: The name of the usage tier
- example: API_Platform_Free_Tier
- quota:
- type: number
- description: The daily quota of the usage tier. If this value is null, this means the usage tier is unlimited.
- example: 1000
- burstLimit:
- type: number
- description: The burst limit capacity of the usage tier
- example: 1
- rateLimit:
- type: number
- description: The per-second steady rate-limit of the usage tier
- example: 2
+ - $ref: '#/components/schemas/UsagePlan'
properties:
switchBackPlan:
- $ref: '#/components/schemas/switch-back-target-usage-plan.json'
+ $ref: '#/components/schemas/SwitchBackTargetUsagePlan'
quantity-item:
title: Quantity Item
description: Represents a quantity item. A quantity item allows invitees to specify the amount of a particular product, such as raffle tickets, t-shirts, or tote bags, they would like to purchase.
@@ -44642,7 +44336,7 @@ components:
type: array
description: List of answers.
items:
- $ref: '#/components/schemas/answer.json2'
+ $ref: '#/components/schemas/answer.json1'
question-section.json:
title: Question Section
enum:
@@ -44866,7 +44560,7 @@ components:
type: array
description: List of choices for the question.
items:
- $ref: '#/components/schemas/choice.json3'
+ $ref: '#/components/schemas/choice.json2'
categories:
type: array
description: List of categories for the question.
@@ -44894,7 +44588,7 @@ components:
type: array
description: List of fields for form/matrix questions
items:
- $ref: '#/components/schemas/field.json5'
+ $ref: '#/components/schemas/field.json3'
maxScore:
type: number
description: Max possible score
@@ -45154,14 +44848,14 @@ components:
description: A registration pack defining the registration type capacity allocations for an exhibitor at an event.
properties:
event:
- $ref: '#/components/schemas/event.json6'
+ $ref: '#/components/schemas/Event1'
exhibitor:
- $ref: '#/components/schemas/exhibitor.json'
+ $ref: '#/components/schemas/Exhibitor'
capacities:
type: array
minItems: 1
items:
- $ref: '#/components/schemas/capacity.json'
+ $ref: '#/components/schemas/Capacity'
description: An array of capacities for the registration pack.
registration-pack-response:
title: ExistingRegistrationPack
@@ -45179,13 +44873,13 @@ components:
example: 50f4f0df-0c2d-4e6b-8e68-e1413b6917f5
description: Registration pack id
event:
- $ref: '#/components/schemas/event.json6'
+ $ref: '#/components/schemas/Event1'
exhibitor:
- $ref: '#/components/schemas/exhibitor.json'
+ $ref: '#/components/schemas/Exhibitor'
capacities:
type: array
items:
- $ref: '#/components/schemas/existing-capacity.json'
+ $ref: '#/components/schemas/ExistingCapacity'
description: Capacities allocated per registration type for this exhibitor's registration pack.
registration-path-paginated-response:
title: RegistrationPathPaginatedResponse
@@ -45306,7 +45000,7 @@ components:
readOnly: true
example: 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3
capacity:
- $ref: '#/components/schemas/capacity.json1'
+ $ref: '#/components/schemas/capacity.json'
registration-type-update:
$ref: '#/components/schemas/registration-type-response'
relevance.json:
@@ -45381,7 +45075,7 @@ components:
*Budget Estimate example:*
`"{\"currency\":\"USD\",\"costType\":\"VARIABLE\",\"costDetail\":[{\"category\":{\"id\":1},\"units\":100,\"cost\":25.50}]}"`
answerType:
- $ref: '#/components/schemas/answer-type.json1'
+ $ref: '#/components/schemas/answer-type.json'
compositeValue:
$ref: '#/components/schemas/composite-value.json'
secondaryValue:
@@ -45435,7 +45129,7 @@ components:
paymentInfo:
$ref: '#/components/schemas/reservation-payment-info.json'
locale:
- $ref: '#/components/schemas/locale.json-01'
+ $ref: '#/components/schemas/locale.json-0'
reservation-night-rate.json:
description: Rate details for a single reservation night.
title: ReservationNightRate
@@ -45510,7 +45204,7 @@ components:
example: 327PP24H
readOnly: true
locale:
- $ref: '#/components/schemas/locale.json-01'
+ $ref: '#/components/schemas/locale.json-0'
housingEvent:
$ref: '#/components/schemas/housing-event-id.json'
block:
@@ -45879,7 +45573,7 @@ components:
- $ref: '#/components/schemas/event-survey-respondent/allOf/0'
properties:
event:
- $ref: '#/components/schemas/event.json7'
+ $ref: '#/components/schemas/event.json5'
contact:
$ref: '#/components/schemas/uuid.json'
attendee:
@@ -45973,7 +45667,7 @@ components:
description: List of responded survey answers.
type: array
items:
- $ref: '#/components/schemas/answer.json1'
+ $ref: '#/components/schemas/answer.json'
minItems: 1
score:
deprecated: true
@@ -46043,7 +45737,6 @@ components:
description: Request body for creating or updating an RFP.
type: object
required:
- - name
- needsGuestRooms
- needsMeetingSpace
allOf:
@@ -47397,7 +47090,6 @@ components:
description: Request body for creating or updating an RFP.
type: object
required:
- - name
- needsGuestRooms
- needsMeetingSpace
allOf:
@@ -48129,7 +47821,7 @@ components:
description: Attendee ID
description: The attendee with points in this engagement score.
event:
- $ref: '#/components/schemas/event.json9'
+ $ref: '#/components/schemas/event.json7'
points:
type: integer
default: 0
@@ -48315,7 +48007,7 @@ components:
type: object
properties:
event:
- $ref: '#/components/schemas/event.json11'
+ $ref: '#/components/schemas/event.json9'
email:
$ref: '#/components/schemas/email.json2'
resendToPreviousRecipients:
@@ -48388,7 +48080,7 @@ components:
- attendeeResponse
properties:
event:
- $ref: '#/components/schemas/event.json11'
+ $ref: '#/components/schemas/event.json9'
email:
$ref: '#/components/schemas/email.json2'
resendToPreviousRecipients:
@@ -49530,19 +49222,19 @@ components:
description: List of sleeping room blocks for this sleeping room type.
items:
$ref: '#/components/schemas/sleeping-room-block.json'
- social-media-links.json:
+ SocialMediaLinks:
title: SocialMediaLinks
type: object
description: Member's social media links.
properties:
facebookUrl:
- $ref: '#/components/schemas/link.json'
+ $ref: '#/components/schemas/Link'
twitterUrl:
- $ref: '#/components/schemas/link.json'
+ $ref: '#/components/schemas/Link'
linkedinUrl:
- $ref: '#/components/schemas/link.json'
+ $ref: '#/components/schemas/Link'
websiteUrl:
- $ref: '#/components/schemas/link.json'
+ $ref: '#/components/schemas/Link'
solution-type.json:
title: SolutionType
enum:
@@ -49951,7 +49643,7 @@ components:
items:
$ref: '#/components/schemas/existing-sponsorship-level'
description: List of sponsorship level.
- sponsorship-level.json:
+ SponsorshipLevel:
title: Sponsorship level
description: Associated sponsorship level for an exhibitor
type: object
@@ -49963,6 +49655,22 @@ components:
format: uuid
example: 3db28cfc-db22-11eb-8d19-0242ac130003
description: Sponsorship Level Id
+ SponsorshipLevel-1:
+ title: Sponsorship level
+ type: object
+ description: A file representing the sponsorship level
+ required:
+ - event
+ - name
+ allOf:
+ - $ref: '#/components/schemas/Audit'
+ properties:
+ event:
+ $ref: '#/components/schemas/Event1'
+ name:
+ type: string
+ description: Name of the sponsorship level
+ example: Silver
stakeholder.json:
title: Stakeholder
description: Represents an event stakeholder.
@@ -51574,7 +51282,7 @@ components:
type: array
uniqueItems: true
items:
- $ref: '#/components/schemas/event.json7'
+ $ref: '#/components/schemas/event.json5'
description: List of events with which this survey is linked.
surveys-paginated-response:
title: SurveysPaginatedResponse
@@ -51591,7 +51299,7 @@ components:
items:
$ref: '#/components/schemas/survey.json'
description: Collection of surveys.
- switch-back-target-usage-plan.json:
+ SwitchBackTargetUsagePlan:
title: Switch Back Target Usage Plan
description: Object representing the target usage plan and the date when the current plan is scheduled to revert to it. This object is only present when a switch-back is scheduled.
type: object
@@ -52266,7 +51974,7 @@ components:
title: Addresses
type: array
items:
- $ref: '#/components/schemas/address.json7'
+ $ref: '#/components/schemas/address.json6'
description: List of addresses associated with the travel account.
travel-account-paginated-response:
title: Travel account paginated response
@@ -53615,6 +53323,22 @@ components:
- Web Services
- eMarketing Profile Update
example: Address Book Profile
+ Usage:
+ title: Usage
+ description: A usage object represents the usage of a resource on a given day
+ required:
+ - date
+ - used
+ - remaining
+ - total
+ type: object
+ allOf:
+ - $ref: '#/components/schemas/UsageQuotaFields'
+ properties:
+ date:
+ type: string
+ description: The date the usage occurred, as an ISO8601 date
+ example: '2020-01-01'
usage-paginated-response:
title: Usage Paginated Response
description: The list of usage for the caller's account in the date range specified.
@@ -53623,13 +53347,39 @@ components:
type: object
properties:
paging:
- $ref: '#/components/schemas/paging.json'
+ $ref: '#/components/schemas/Paging'
data:
type: array
items:
- $ref: '#/components/schemas/usage.json'
+ $ref: '#/components/schemas/Usage'
description: Collection of usage objects.
- usage-quota-fields.json:
+ UsagePlan:
+ title: Usage Plan
+ description: Object representing an API Platform Usage Tier
+ required:
+ - name
+ - quota
+ - burstLimit
+ - rateLimit
+ type: object
+ properties:
+ name:
+ type: string
+ description: The name of the usage tier
+ example: API_Platform_Free_Tier
+ quota:
+ type: number
+ description: The daily quota of the usage tier. If this value is null, this means the usage tier is unlimited.
+ example: 1000
+ burstLimit:
+ type: number
+ description: The burst limit capacity of the usage tier
+ example: 1
+ rateLimit:
+ type: number
+ description: The per-second steady rate-limit of the usage tier
+ example: 2
+ UsageQuotaFields:
title: Usage Quota Fields
description: Fields representing usage quota information. Usage quota represents the number of API requests that can be made in a given usage period. Usage periods reset daily at midnight UTC.
type: object
@@ -53650,22 +53400,6 @@ components:
type: integer
description: The total number of API requests allowed in the current usage period. Usage periods reset daily at midnight UTC.
example: 300000
- usage.json:
- title: Usage
- description: A usage object represents the usage of a resource on a given day
- required:
- - date
- - used
- - remaining
- - total
- type: object
- allOf:
- - $ref: '#/components/schemas/usage-quota-fields.json'
- properties:
- date:
- type: string
- description: The date the usage occurred, as an ISO8601 date
- example: '2020-01-01'
User:
title: User
description: Generic sample User. Not a real model used by any Cvent service.
@@ -53728,7 +53462,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.json6'
+ $ref: '#/components/schemas/address.json5'
userType:
$ref: '#/components/schemas/user-type.json'
timezone:
@@ -53945,7 +53679,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.json6'
+ $ref: '#/components/schemas/address.json5'
userType:
$ref: '#/components/schemas/user-type.json'
timezone:
@@ -54079,7 +53813,7 @@ components:
items:
$ref: '#/components/schemas/schema.json'
description: The collection of schema resources.
- utm-override.json:
+ UTMOverride:
title: UTMOverride
description: 'Specifies how UTM (urchin tracking module: a key and value that is attached to URLs for the purpose of identifying and tracking traffic) settings will override passed in items.'
type: string
@@ -54110,6 +53844,21 @@ components:
properties:
id:
$ref: '#/components/schemas/uuid-property'
+ UUID1:
+ title: UUID
+ description: The reference to the related entity. Contains only the ID of the related entity.
+ required:
+ - id
+ type: object
+ properties:
+ id:
+ $ref: '#/components/schemas/uuid-property'
+ UUIDProperty:
+ 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
ValidToken:
title: Valid Token
description: Validity status of an authentication token.
@@ -54199,7 +53948,7 @@ components:
title: VenueAddress
description: Address details for venue.
allOf:
- - $ref: '#/components/schemas/address.json3'
+ - $ref: '#/components/schemas/address.json2'
properties:
latitude:
description: Location latitude.
@@ -54675,7 +54424,7 @@ components:
device:
$ref: '#/components/schemas/device.json'
video:
- $ref: '#/components/schemas/video.json1'
+ $ref: '#/components/schemas/video.json'
type:
$ref: '#/components/schemas/view-type.json1'
totalDuration:
@@ -54733,7 +54482,7 @@ components:
maxItems: 100
items:
$ref: '#/components/schemas/video-warning.json'
- video.json1:
+ video.json:
title: Video
type: object
description: The details of a video
@@ -55044,12 +54793,12 @@ components:
title: Weblink Request
type: object
allOf:
- - $ref: '#/components/schemas/copy-mappings-response/allOf/0'
+ - $ref: '#/components/schemas/Audit'
properties:
event:
- $ref: '#/components/schemas/event.json6'
+ $ref: '#/components/schemas/Event1'
exhibitor:
- $ref: '#/components/schemas/exhibitor.json'
+ $ref: '#/components/schemas/Exhibitor'
name:
description: Display name of the weblink.
example: Marketing Page
@@ -55120,7 +54869,7 @@ components:
minLength: 0
maxLength: 300
example: John Doe
- work-address.json:
+ WorkAddress:
title: WorkAddress
type: object
description: Member's work address details.
diff --git a/overlays/public_overlay.yaml b/overlays/public_overlay.yaml
index b6d0d116..ed766bbf 100644
--- a/overlays/public_overlay.yaml
+++ b/overlays/public_overlay.yaml
@@ -54,6 +54,14 @@ actions:
update: "#/components/schemas/error-response"
- target: $["components"]["responses"]["Unauthorized34"]["content"]["application/json"]["schema"]["$ref"]
update: "#/components/schemas/error-response"
+ - target: $["components"]["responses"]["BadRequest35"]["content"]["application/json"]["schema"]["$ref"]
+ update: "#/components/schemas/error-response"
+ - target: $["components"]["responses"]["Forbidden35"]["content"]["application/json"]["schema"]["$ref"]
+ update: "#/components/schemas/error-response"
+ - target: $["components"]["responses"]["NotFound35"]["content"]["application/json"]["schema"]["$ref"]
+ update: "#/components/schemas/error-response"
+ - target: $["components"]["responses"]["Unauthorized35"]["content"]["application/json"]["schema"]["$ref"]
+ update: "#/components/schemas/error-response"
- target: $["components"]["schemas"]["ErrorResponse"]
remove: true
- target: $["components"]["schemas"]["supplier-summary.json"]["properties"]["supplier"]["oneOf"][0]
diff --git a/packages/csharp/.speakeasy/gen.lock b/packages/csharp/.speakeasy/gen.lock
index a66cf57a..df267f4f 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: d102ff2d61db687e73460aa2c29e6458
+ docChecksum: b7ce829725c97f1ad93af5d1f28e9c93
docVersion: ea
speakeasyVersion: 1.752.0
generationVersion: 2.859.2
- releaseVersion: 1.2.3
- configChecksum: 4b13f155f207196d791c616ec0796f72
+ releaseVersion: 1.3.0
+ configChecksum: ef3161a57751819440ce1436855a27d0
published: true
persistentEdits:
generation_id: c50843e4-e393-4964-8f45-57aa92ab8994
@@ -45,7 +45,7 @@ trackedFiles:
pristine_git_object: ec6bbb4bbe2f8ad9230b01a2da715a63475f5e3d
NUGET.md:
id: f4c8a442a6e5
- last_write_checksum: sha1:877a911beb43702c163ef4fa9ae8a9e47925e01c
+ last_write_checksum: sha1:1dc1516865b65ca92df1bcd5650eaef114bdae84
pristine_git_object: 7a318ebe39215ade31d133b8f5920eb190ea74e3
USAGE.md:
id: 3aed33ce6e6f
@@ -65,16 +65,12 @@ trackedFiles:
pristine_git_object: 6c637a212603fa79d44b28d4f084cdaa34f59707
docs/Models/Components/AccountBudgetItemListResponseJson.md:
id: 820ac3be10e1
- last_write_checksum: sha1:8c7f09242dff23520a66f6547132bfee24b18871
+ last_write_checksum: sha1:853b34f57d87404b68ca3a184a1aacd57619fc17
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:
- id: 60391174ba02
- last_write_checksum: sha1:987caa3d5a68a6f27955aa3b172585dc9a810983
- pristine_git_object: f6ad3274f133a7eb235ba880588c4d2a4be6ed74
docs/Models/Components/ActivityAdJson.md:
id: 9bb5e5f9295e
last_write_checksum: sha1:57696acbef8d107a58ed2ce727db5e00bd04e3be
@@ -215,40 +211,44 @@ trackedFiles:
id: 42cfa7c913eb
last_write_checksum: sha1:fbbf20cabfafa6319088c317a8d3dad9fa834ab5
pristine_git_object: c232eba3e3ae418311f8feadc50fefd9faa360c1
- docs/Models/Components/AdditionalChoiceJson11.md:
- last_write_checksum: sha1:1bf161f5bec84bba5d1a43d904ac39292e129fcd
+ 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:a75fba0930a1fc0a3d9778a16d2aa3cb39c395e6
+ last_write_checksum: sha1:f6e0772cd31610cd16732dea1d0fe38a7e9e5d93
docs/Models/Components/AdditionalGuestFeesJson.md:
id: 8056a5291292
last_write_checksum: sha1:38882fd7641ffe58c1844388c6a1e60e0da1d00b
pristine_git_object: 8fd3807edf2246549fd6130f5b477760bdbddf58
+ docs/Models/Components/Address11.md:
+ last_write_checksum: sha1:947ed0c2f7dfae6d88961789a2b0b435056006d1
+ docs/Models/Components/Address12.md:
+ last_write_checksum: sha1:b9eea80b3fd81595619cd6b78b533ebcbc6464b5
docs/Models/Components/AddressJson.md:
id: 7ecdc2f5de1f
last_write_checksum: sha1:a826695cc69f4d4ace8d3de5c9f2d39d51d8a573
pristine_git_object: 752704eeccdeff8e20b70cb3b4b35a2f11cb7e4a
docs/Models/Components/AddressJson0.md:
last_write_checksum: sha1:fca1f03411fb0883bcb8f82d4f6b2e863c5ad5b8
+ docs/Models/Components/AddressJson2.md:
+ last_write_checksum: sha1:aacf400393e16ba4174cd92750eb7c646d8ef3e0
docs/Models/Components/AddressJson3.md:
id: 6481012a7f85
- last_write_checksum: sha1:f8e0254b5fd765df7401a43482609a0f38848305
+ last_write_checksum: sha1:71e063291b56249b55aaf3a7bb822ac0e6cf501f
pristine_git_object: d159c5c2ff34ed97810336511d8ae26f06a78856
docs/Models/Components/AddressJson4.md:
id: 790686dbb409
- last_write_checksum: sha1:d29660e407cb08652451d51ff3464fb095f8e377
+ last_write_checksum: sha1:e382277220ef7ea9a2c697fc8bc39a80e63b37c6
pristine_git_object: 04f417d34993fcaf9ce3fac6e10509b0d5b5b17a
docs/Models/Components/AddressJson5.md:
id: 9048e80b59c9
- last_write_checksum: sha1:b4216a4656615f81525df0e750201996f6ef399e
+ last_write_checksum: sha1:76bdb7693fa242e9c5edf7fd88968f41fb749112
pristine_git_object: df576b36566068495aa957a408dd4028e3415e51
docs/Models/Components/AddressJson6.md:
id: 011ba43d0a7a
- last_write_checksum: sha1:c461ff978dc8432f0116cfedf40e1d28021d6bc5
+ last_write_checksum: sha1:6845f3c72f5179640b2531adbdd395b1460157e1
pristine_git_object: 04ca534aef1279eb625e6ad335dcd3087d54759a
- docs/Models/Components/AddressJson7.md:
- id: da47ba6c9ea6
- last_write_checksum: sha1:6f23b1981d6ba78148176b43f74af3ad7bc52e25
- pristine_git_object: 3f57f9d00f8920b2857f2d5a0d436f9f76681139
docs/Models/Components/AddressJsonInput.md:
id: bfd910c54345
last_write_checksum: sha1:4b350f0ba70a7b754dff9622f47052cefa6180c0
@@ -371,40 +371,38 @@ trackedFiles:
last_write_checksum: sha1:27b935e7687551bf3e4bf15be96bac38d2a4ffa0
docs/Models/Components/AnniversaryMembershipItemJsonContactType.md:
last_write_checksum: sha1:f17d7f721c71969abff5248485776c9b80e00d2b
+ docs/Models/Components/Answer1.md:
+ last_write_checksum: sha1:0d108e38ba7bc45a8c88f94739b98341067f606d
+ docs/Models/Components/Answer2.md:
+ last_write_checksum: sha1:129600d495d218022018ab8da28c58c8e6d05cfd
+ docs/Models/Components/Answer2Choice.md:
+ last_write_checksum: sha1:56039852124b3ffe5019d70d853ac03d3e3e47e9
docs/Models/Components/AnswerJson.md:
id: 24d53c811e00
- last_write_checksum: sha1:01ffa5a5805fbce8c95f7e685b8d5ca449641fb2
+ last_write_checksum: sha1:f957a26787e6fb2538caa630fb8396f56de69462
pristine_git_object: f1cbee8bd6317237f90d2b79f34da3d758b296b2
- docs/Models/Components/AnswerJson0.md:
- id: 045c7a2c3c82
- last_write_checksum: sha1:42419de76457e6e691e53d8350ed19c90ad51dea
- pristine_git_object: 41c1e9b63c00d4f0e659899e77ea20a1f93d8cff
docs/Models/Components/AnswerJson1.md:
id: 126f28897535
- last_write_checksum: sha1:6f731553c687ea88d395554ab526d7f1622aac10
+ last_write_checksum: sha1:9957e3491017a46ee4598a6e1444b16c9c2ffac8
pristine_git_object: 00febe4e1c27bf7827a336c08a7c156493652dba
- docs/Models/Components/AnswerJson2.md:
- id: 866c061beace
- last_write_checksum: sha1:1cbb48868ba64ebfcc9319bb97537c2fe723d99c
- pristine_git_object: ea1ebb05d5c39417014ee7d8146a3d8601c02710
+ docs/Models/Components/AnswerType.md:
+ last_write_checksum: sha1:228cfd57b116f0358a04321f39861fb0b1c67d31
+ docs/Models/Components/AnswerType1.md:
+ last_write_checksum: sha1:dbfe2b541d820946308fe6e232f2874758be7c33
docs/Models/Components/AnswerTypeJson.md:
id: 091a52dc5d12
- last_write_checksum: sha1:0472de980de7c1557dc3ffd9e61af2cd82d03f16
+ last_write_checksum: sha1:2557bdc53b15107376829bfdac08360d8eebf527
pristine_git_object: 1b98af55de40d4e40df8e8ab6d64109bb49ba94a
- docs/Models/Components/AnswerTypeJson0.md:
- id: fd022747cd2b
- last_write_checksum: sha1:a131a85df892669ec638a0efcc51a84b85768492
- pristine_git_object: 8ed9843502885d323a580c1714dff65dc8f35ee3
docs/Models/Components/AnswerTypeJson1.md:
id: 2a965db3b1f7
- last_write_checksum: sha1:b0d30e0df2794f5960a149797cc710e8f973fa05
+ last_write_checksum: sha1:2172384c84b5ab7d5e300b51d0c2d211b5f58bc9
pristine_git_object: bb06ead8ca269a17ba912b059eb590f75d509846
- docs/Models/Components/AnswerTypeJson2.md:
- last_write_checksum: sha1:a5ed5a8758f211ee61ad72317d2a64ada37c7e1e
docs/Models/Components/Application.md:
id: 538c092db2b8
last_write_checksum: sha1:1ff1e4c1171a095ad9b1934d24a7f8e94506a8cb
pristine_git_object: f0416048e74206d5de5c7103063f79d80205a339
+ docs/Models/Components/Appointment.md:
+ last_write_checksum: sha1:b87bc71a1c22be3c81bbf5f24a0ab9dc39cd3fea
docs/Models/Components/AppointmentAccepted.md:
id: a39607fc050d
last_write_checksum: sha1:851fe8afc624370e3529ae1e3c6e8bbc3739fd44
@@ -541,10 +539,12 @@ trackedFiles:
pristine_git_object: bff28259740dae8ca324cdfba8a63de4617d1898
docs/Models/Components/AttachmentSourceJson.md:
last_write_checksum: sha1:b0cb66e2488972df8ab6d1589bf1a6afbed654bc
- docs/Models/Components/Attendee.md:
- id: 8aa4994bbf68
- last_write_checksum: sha1:207781baaabc198d4a08962f3037cd278cbd2ef7
- pristine_git_object: d4d85d910a1e5ee868f1cb4eca60f7685f74bf49
+ docs/Models/Components/Attendee1.md:
+ last_write_checksum: sha1:2a2ca82930c9db9656bb5eccb9eeda352c474c95
+ docs/Models/Components/Attendee12.md:
+ last_write_checksum: sha1:edc47b71c683e399e46f281af7f7b81192ae8981
+ docs/Models/Components/Attendee2.md:
+ last_write_checksum: sha1:ce0ca518c5a9cf6143e6b8e38e58344c0bdd7100
docs/Models/Components/AttendeeActivitiesPaginatedResponse.md:
id: 8f50a4266de0
last_write_checksum: sha1:4b29e8c1be39e738026a986e1b1cbfae58af416a
@@ -641,9 +641,13 @@ trackedFiles:
id: f7e4d593a254
last_write_checksum: sha1:ba127f614f914c0e0e2626c55082c7d812a86211
pristine_git_object: 1212f3b193b34a50f30b204e99317d36bcf58930
+ docs/Models/Components/AttendeeAudienceSegmentAssociationJson.md:
+ last_write_checksum: sha1:9a6b6ca2fec510160e6f3117ccc4fd9141d152c0
+ docs/Models/Components/AttendeeAudienceSegmentAssociationsPaginatedResponse.md:
+ last_write_checksum: sha1:e2576d547b78618e13999af2f0dc242849dab257
docs/Models/Components/AttendeeContactInfoJson.md:
id: cc19e2d29676
- last_write_checksum: sha1:07490627c5a2b2377f4121fba160da4adfd6482d
+ last_write_checksum: sha1:255bb061fc8a25239f43d08fc3782d0bf1be065e
pristine_git_object: ffa35a8d37f60fb0afc05a2e548e88779bdf8d89
docs/Models/Components/AttendeeContactMembershipJson.md:
id: e76fa7d399f6
@@ -691,7 +695,7 @@ trackedFiles:
pristine_git_object: cf3de11f966ebbeb30ea4fa822d4e525af94e40e
docs/Models/Components/AttendeeInsights.md:
id: bbcc97a1384e
- last_write_checksum: sha1:a9b20fdd0effde123943255ffe34a456d44d409c
+ last_write_checksum: sha1:fc46e8e3d15eba65778e352ffca4ffddae093c32
pristine_git_object: 1e1c53633ddf544aae2aa6ea3f2ba087af797b6c
docs/Models/Components/AttendeeInsightsPaginatedResponse.md:
id: 11d5d7cd839a
@@ -725,10 +729,6 @@ trackedFiles:
id: c4d6de4ea627
last_write_checksum: sha1:419546a031249f1f9a83f99dfa9e9ae66c93db50
pristine_git_object: 71967ed4969a18fa8190d25c90e0ddb5166fdb0a
- docs/Models/Components/AttendeeJson3.md:
- id: 28ae868918b6
- last_write_checksum: sha1:78a30ea24d8467967aa5db0292d10470280cc73b
- pristine_git_object: 529a4ee57d25e1315b9c993d48206e8c51330680
docs/Models/Components/AttendeeJson4.md:
id: bd6cb2c8579a
last_write_checksum: sha1:59f88e6de2bd88793528a6a0ed82dfcb3b22c7f3
@@ -751,7 +751,7 @@ trackedFiles:
pristine_git_object: 0fe91ba68a0096dd90d124922d7a96baa0474335
docs/Models/Components/AttendeePaginatedResponse.md:
id: 811b815a5ad4
- last_write_checksum: sha1:ed3fe26c293f8f1f388af9f088f77a1ffc18387f
+ last_write_checksum: sha1:ae77f61727a4075dc26ce40215c563a08d767fa4
pristine_git_object: 6fb36c5abc10d2c8120541a340d07397142f8af6
docs/Models/Components/AttendeeResponseJson.md:
id: e3715cbec63e
@@ -869,11 +869,11 @@ trackedFiles:
pristine_git_object: 82584043fe13a7e539a7128d57fa67387dddc366
docs/Models/Components/AudienceSegment.md:
id: 22bbeb27687e
- last_write_checksum: sha1:8803555fd60c7e89bb3769ea86e6d89f6f330052
+ last_write_checksum: sha1:200800ede73df523d690d11d565df8ee8f65d16e
pristine_git_object: 02fd4a64371215d6d3673bc490b08c9996430d3b
docs/Models/Components/AudienceSegmentCreate.md:
id: cfb44e8d1f90
- last_write_checksum: sha1:df5bc237d25f21bf54b0972a3bd4ee5758ad7606
+ last_write_checksum: sha1:afcccb7f156776b0d5e78bec416a6b8fdb98fd81
pristine_git_object: ac41e6db924a0120579909a8aa47add3d38d8003
docs/Models/Components/AudienceSegmentCreationTypeJson.md:
id: cfaaad00b208
@@ -881,7 +881,7 @@ trackedFiles:
pristine_git_object: 1aaac235e9e44907fac201f985aac0328c80af91
docs/Models/Components/AudienceSegmentResponse.md:
id: c9bd889ff9d6
- last_write_checksum: sha1:02a04cb2398a6bb3adcc68f044caee55ad276c0a
+ last_write_checksum: sha1:a9d5b05cb2102fd3369f2bf54f2e8bd8e1c53b7f
pristine_git_object: b06419136081fddb0dffe2501bb278a308f74c4e
docs/Models/Components/AudienceSegmentsPaginatedResponse.md:
id: 7b8297ecf1db
@@ -933,15 +933,15 @@ trackedFiles:
pristine_git_object: bcba9e34844a0037c2c15a4cc88baba9729c6232
docs/Models/Components/Badge.md:
id: 789f28b0ffc6
- last_write_checksum: sha1:078e3651fc9e7126d379bc2bb1a0fec3ced05879
+ last_write_checksum: sha1:39c14a76d075ab1df2094e8466bde5ef80e55008
pristine_git_object: c50e92e18e32695c33883cdd06d5ccc42d833ed4
docs/Models/Components/BadgeInput.md:
id: 9ac546a08741
- last_write_checksum: sha1:012b8be1389df20f9aac65e7dbe5672212e55482
+ last_write_checksum: sha1:26b528f22a282e6c4c1d17190160705d75a9f070
pristine_git_object: 5637bdb8526623e229720dc4606f6186afe7f38a
docs/Models/Components/BadgePaginatedResponse.md:
id: 3c09599a7d86
- last_write_checksum: sha1:dc3f871bb755771769904e1d1e6cf92c06ccd1ef
+ last_write_checksum: sha1:98c88a37120b9730784ab71ee61dfca481eb24dd
pristine_git_object: df0107a0308271585323759715076a1a29951d7e
docs/Models/Components/BadgePrintJobCreated.md:
id: 4615c7dd7c23
@@ -979,14 +979,10 @@ trackedFiles:
id: 51b3b94256f3
last_write_checksum: sha1:ebde2d14c6a4311d70cbd220f8de83a21204b437
pristine_git_object: f3a7ff7c9419a5725737c2b98c4079f2e2580c90
- docs/Models/Components/BadgeStatusJson.md:
- id: 67099013b7c6
- last_write_checksum: sha1:0d07b76a4d79c38acb7e35f670990f4d35f7dde3
- pristine_git_object: 6fbbffe9dba8cb67cae9bef25ebadf72dcf97d47
- docs/Models/Components/BadgeTypeJson.md:
- id: ba73d386147b
- last_write_checksum: sha1:6876a84281c75011bf50bf334293cf018bac63a3
- pristine_git_object: 59b959fc3406fd493d73fae7c7655d8dd746340c
+ docs/Models/Components/BadgeStatus.md:
+ last_write_checksum: sha1:8c215997eb7306d110e94e771b488923a5cb1e2d
+ docs/Models/Components/BadgeType.md:
+ last_write_checksum: sha1:7473a1220ab4e511ab5ca7df0d1906fd9c279bda
docs/Models/Components/Banner.md:
id: 3eb030bf1b6f
last_write_checksum: sha1:fb2ca824a60cc1b8fb7033b4139c29f3ca9c77b8
@@ -1005,10 +1001,8 @@ trackedFiles:
id: d44ab4cf5ad5
last_write_checksum: sha1:f81d1fafbeec7894e3417967ed2602270ca604d2
pristine_git_object: a6123679a7bc19d208e64403823f1751963eb737
- docs/Models/Components/BaseChoiceJson.md:
- id: cd9684070a88
- last_write_checksum: sha1:5a2e2b45f38157b4168bd0ff8f8ac74bbc164ee3
- pristine_git_object: e00e3567e135cfc3d8f249b7ebb444c1701db8df
+ docs/Models/Components/BaseChoice.md:
+ last_write_checksum: sha1:6b214f5c21f9a2c923e252a9a699df656ac07b26
docs/Models/Components/BaseQuestionResponseJson.md:
id: 3f88d1edff81
last_write_checksum: sha1:28ca1222d12643c08af2dbfa71df6cdbf9735742
@@ -1047,17 +1041,19 @@ trackedFiles:
id: 78dab28e0d9c
last_write_checksum: sha1:e73c4e7c16e346bf953eea52e6c3d495a144f06d
pristine_git_object: 32c777453e5efdf75f6ce1684bcb5166881b3dbf
+ docs/Models/Components/BoothStaff.md:
+ last_write_checksum: sha1:5d4d4f5b26e6caa7255f590fec79b6487fc7a9eb
docs/Models/Components/BoothStaffListResponse.md:
id: 500b2ac664bd
- last_write_checksum: sha1:31f497603329849c75a787d8f7f241c264b8074b
+ last_write_checksum: sha1:608a5c4db3c7381859ae9781f57903bb7705a699
pristine_git_object: 29cef323e9f39ed86fa3fcf5c62e73541a401285
docs/Models/Components/BoothStaffRequest.md:
id: 8e3b4565e2a9
- last_write_checksum: sha1:60b47c3cc9372acc97c892f6ffb39fca1e1d5f6a
+ last_write_checksum: sha1:14a2b54e3e7df3985c36eee405135c269536f70c
pristine_git_object: b80b8ea5d4d3e327f14a595a70a5b0a7499bd359
docs/Models/Components/BoothStaffResponse.md:
id: 336612e7cbcb
- last_write_checksum: sha1:3d15f21f9f4688994100831ad7a0167d72af735a
+ last_write_checksum: sha1:d12b8888529abcc18f6b92f6516b589a5bb6f7c8
pristine_git_object: e676cb3cfa7de1b726ee256c2d057464d6028767
docs/Models/Components/BounceDetailsJson.md:
id: 6758c8a10fd8
@@ -1069,7 +1065,7 @@ trackedFiles:
pristine_git_object: c124bb1bf6d0fcb54b1a158137b148173e993392
docs/Models/Components/Brand.md:
id: 242f0ed4060b
- last_write_checksum: sha1:e135bc46b034e3a94e156ea33f7876db69a1a7bd
+ last_write_checksum: sha1:451ade96e9ebf216ab46f9f2a918fd6d7b0e86d1
pristine_git_object: 47fb66f5aeb4e06531341e65365322b378743c61
docs/Models/Components/BrandPaginatedResponse.md:
id: 198ace0b2bf5
@@ -1325,22 +1321,16 @@ trackedFiles:
pristine_git_object: 48ed1cb480a2ba28110d10ab71f0e1fc0df1d12f
docs/Models/Components/CancelledReasonJson0.md:
last_write_checksum: sha1:ae1e29766ae6772681beb0011402f7282b69b999
+ docs/Models/Components/Capacity.md:
+ last_write_checksum: sha1:06c2fe6b6d1b80f3929c0decfab0669906aa80a7
docs/Models/Components/CapacityJson.md:
id: 21b61eacdb39
- last_write_checksum: sha1:7c6951b4a90800a8fc144e9592dc9dce08cd33bc
+ last_write_checksum: sha1:ee4cc18e09ad3de58d74224e09d2fcd8c4d1ed56
pristine_git_object: 6ffd06812edfa1806d8ad487abb9d4e2abf6ca9e
- docs/Models/Components/CapacityJson1.md:
- id: 6f2f4223a3fa
- last_write_checksum: sha1:c05498469326f7270542cc091b628bcb786e10e6
- pristine_git_object: 7e0aff28e0b4f8feddf1e9e61cca4c1e214fe263
- docs/Models/Components/CapacityJson1Input.md:
- id: 79a1e274b952
- last_write_checksum: sha1:b0c42f5548535b5dd10ae4f46fbbf8bd381c5f33
- pristine_git_object: 5c0c5aaf9647f5cab4a5506e2edb93ee787164fd
- docs/Models/Components/CapacityJsonRegistrationType.md:
- id: f608c0fcef4b
- last_write_checksum: sha1:488095b567d582b02a4e1e8ea6f96fd97324183a
- pristine_git_object: bdd504a478caf69b71c2a5cc0798a2a26aa7f9c8
+ docs/Models/Components/CapacityJsonInput.md:
+ last_write_checksum: sha1:03598bd92d43620696dc6109f43909adaa6e98ad
+ docs/Models/Components/CapacityRegistrationType.md:
+ last_write_checksum: sha1:ef1fa680d69374a70f2fe402299173fb871ce0ec
docs/Models/Components/Card.md:
id: 289510ae7884
last_write_checksum: sha1:4c0d9e54826467749a892d4e5390ca50a06ff378
@@ -1425,7 +1415,7 @@ trackedFiles:
pristine_git_object: d208b08a3a78b27cfbb46d621043dd4553345557
docs/Models/Components/Chain.md:
id: 43249e399385
- last_write_checksum: sha1:6966f99c9b1e2509b8ec6495881d298ab36eefb9
+ last_write_checksum: sha1:25f081b891eeb49f1d9165a1361e269852ce85ec
pristine_git_object: 55b8aae55db0e3309cf858e0ade73f396c7c70a1
docs/Models/Components/ChainBrand.md:
id: ef796e573861
@@ -1473,26 +1463,20 @@ trackedFiles:
pristine_git_object: 64f4057b6b551c9decab585276bd2f84527493d4
docs/Models/Components/Choice.md:
id: c39c226c098e
- last_write_checksum: sha1:d837d595df174cdb8865ad1524bb9605592b79c4
+ last_write_checksum: sha1:33f6593eab522cb4004e507741b23992f1e2e20d
pristine_git_object: 79377a632e3332e4dea6951aecd192eddbfd8ca2
docs/Models/Components/ChoiceJson.md:
last_write_checksum: sha1:6f6dfbb5041812f6257498fcfab4a3188aca4afd
docs/Models/Components/ChoiceJson2.md:
id: af36e17a0803
- last_write_checksum: sha1:009888b298ac59d61b5bb177734bd7e7e35df62d
+ last_write_checksum: sha1:41ce40e66643c8ce88ec02ee4db04104aa774d80
pristine_git_object: caaa3feacc6793d3ccebb7667ada43db544b896b
docs/Models/Components/ChoiceJson3.md:
id: 1c215a609f6a
- last_write_checksum: sha1:8a11955798272c2d76bde10d247dc561f9f6615f
+ last_write_checksum: sha1:1a6e0740f31c371cf63f5f02302d3ba673e300c1
pristine_git_object: 4ae636afc26b4eb42c287cdc20ac60a0cf6c59c0
- docs/Models/Components/ChoiceJson4.md:
- id: dbf47228481b
- last_write_checksum: sha1:3ec1ba6facf13319b0479df3fcaca10cb3024181
- pristine_git_object: e59e0f9c60ddb2c664fce2e1a7d44c083c73976b
- docs/Models/Components/ChoiceJson4Input.md:
- id: c5985e0c6d5a
- last_write_checksum: sha1:260f822e6709d6170704601e0cb297fda23a723c
- pristine_git_object: f2b82ed0467e5b2154da44fccd66ffff594be384
+ docs/Models/Components/ChoiceJson3Input.md:
+ last_write_checksum: sha1:8cf3e77cb5b3e86170d1f235ae461fe35d3d69ca
docs/Models/Components/ChoiceSortOrderJson.md:
last_write_checksum: sha1:fd8f894e01b172c344ca6fa2877832f518280b5f
docs/Models/Components/ChoiceTranslationJson.md:
@@ -1503,7 +1487,7 @@ trackedFiles:
last_write_checksum: sha1:753f7cab9a6bbd72f4f55b2520eb3aefa88d2864
docs/Models/Components/Choices.md:
id: 1d10f7fb8042
- last_write_checksum: sha1:9c05fb24ecd1d65eced7502c00152a2b9b605bba
+ last_write_checksum: sha1:faecf6599c4f9fe3943014adc34ccc5246ea3cba
pristine_git_object: ac01c8a5a9b9e055d2740e17eef87acd25d7373b
docs/Models/Components/ChoicesDisplayTypeJson.md:
id: 09b45a786d79
@@ -1529,14 +1513,24 @@ trackedFiles:
id: b5c3eb8f3f39
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:06c1c3d79157e25b4246da62efe51ed1cc549454
+ last_write_checksum: sha1:6836bd3a355d6064411b8778546d734b3d91d95e
pristine_git_object: 1ffcd58be8308139c08bc66b63d165ad8b79c4b3
- docs/Models/Components/ComplianceScope.md:
- id: e7c3c7cceea4
- last_write_checksum: sha1:745ebe0ecb4382b42159ec01fe3aac13442a0feb
- pristine_git_object: 2845f5ab65aceabbe8e251251b5a179d5cea3777
+ 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
docs/Models/Components/CompositeValueJson.md:
id: 84fe87e7ac46
last_write_checksum: sha1:5ee3dc318c8201cbfaff56c18c9b3fb45a4dc1a9
@@ -1653,14 +1647,12 @@ trackedFiles:
id: bcfd9f6a14d7
last_write_checksum: sha1:6f261ef6406d160b97666f05ce459bf6f1e8c3c7
pristine_git_object: 78bd82835b59725ed983b85a4981c9d8b238091e
+ docs/Models/Components/ContactLinks.md:
+ last_write_checksum: sha1:d1a5ade4e7eb44693e8aee40a94aaf2e070f19c2
docs/Models/Components/ContactLinksJson.md:
id: 7bff75635d1a
last_write_checksum: sha1:1a5c3e6b20209cd1e77f7c6affe69f714a0358e4
pristine_git_object: 273bddad381979353cf5bcbc1a39f39a47b391a3
- docs/Models/Components/ContactLinksJson2.md:
- id: 1f1e7c557701
- last_write_checksum: sha1:796c50ee11c7ed8a2ece934635dcd729e48a5006
- pristine_git_object: b7d327c96a64764e61285e464b2d11b9f734f7d4
docs/Models/Components/ContactLinksJsonInput.md:
id: ae9c2c28d247
last_write_checksum: sha1:69ec8bf42975b58d35df37229b9568c1301d5659
@@ -1767,10 +1759,6 @@ trackedFiles:
id: cd1563ff397f
last_write_checksum: sha1:f36a5081c8c7272917f6a89c330ed9b41474c67d
pristine_git_object: bceb471ed6c896ff539c4b163b6a319f45f88806
- docs/Models/Components/CreatedBy.md:
- id: 67dd8c105d90
- last_write_checksum: sha1:4f8bdd1c9530addd9b87354a73e2fe5bcf5e3082
- pristine_git_object: bda1f57067693db6c4bdbddaddc275a85d4ce425
docs/Models/Components/CreditCardRequestJson.md:
id: f09331a7d062
last_write_checksum: sha1:a28bba9562f93e35a00875fba31d05557b902812
@@ -1907,6 +1895,8 @@ trackedFiles:
id: 6d5ecc901460
last_write_checksum: sha1:b381ce05aa865ce6e7eca961ee59ea0c356e5695
pristine_git_object: d5f0618aee4f7197a6f04a35d480685cae1acde2
+ docs/Models/Components/Device.md:
+ last_write_checksum: sha1:1f8233c032340e79aa04d5f6f1c9b7af08e65055
docs/Models/Components/DeviceJson.md:
id: 8fa25a76ad95
last_write_checksum: sha1:3056a6b84cd2dbdc90cd59eecda77f4b5ec9c4ea
@@ -1999,21 +1989,17 @@ trackedFiles:
id: d89c61ea0b80
last_write_checksum: sha1:0920f0be94973b368acec6a3a9fc3cd80b8f9a75
pristine_git_object: 3331994cbc6d7e5a843dfd7f3856948e0255cbe2
+ docs/Models/Components/ELiteratureDocument.md:
+ last_write_checksum: sha1:5f08f224cc4b12ddb7629db229fbbe40d63a8d73
+ docs/Models/Components/ELiteratureDocumentType.md:
+ last_write_checksum: sha1:2e0d9aa98fc5b871f94b1a77bf7da3c82d92afe0
docs/Models/Components/EarlyBirdPricingJson.md:
id: 03293a5a2cd9
last_write_checksum: sha1:c679cb8114af9822a408050bfa3ec0c8641103d8
pristine_git_object: 656766dc6ba517ba69452253c51db032ddf14922
- docs/Models/Components/EliteratureDocumentJson.md:
- id: 311361f7f283
- last_write_checksum: sha1:50dd16cc3f91304faf6e6b6e9254e352c0a5728f
- pristine_git_object: 8e09b1f113655cf06d7466905f00591e672c25a9
- docs/Models/Components/EliteratureDocumentJsonType.md:
- id: 29188f736df0
- last_write_checksum: sha1:840efc09ec0bd70f79399c92603dbc9af7f6fabc
- pristine_git_object: 1a09e6eddbea178f768a0a2d90d2c2e05a6c6bb5
docs/Models/Components/EliteratureRequestPaginatedResponse.md:
id: b17074059aed
- last_write_checksum: sha1:cb2c0c65507e87eecd9bd03888616849c60b2e6c
+ last_write_checksum: sha1:bd95efb5091f96a7d58f2719156eb1fb17a6b7e7
pristine_git_object: 061a197be8d6acf5891c6b4d2939d07cb5ce434c
docs/Models/Components/EmailBounced.md:
id: b749523071db
@@ -2123,6 +2109,8 @@ trackedFiles:
id: 0008851f1381
last_write_checksum: sha1:1b3434543e7b84d61c4c9926a16acc422af397e1
pristine_git_object: 45964f87bdf229f4012a49ea2570efdd15f1f7d1
+ docs/Models/Components/Event1.md:
+ last_write_checksum: sha1:cdd2c47f2eaccd8e2d44b789bd674f9bf1e989ce
docs/Models/Components/EventActivityDetailsJson.md:
id: 6d1cce021ecb
last_write_checksum: sha1:6e741062c39cd74b6db884e0e473b2f51d15df3b
@@ -2173,7 +2161,7 @@ trackedFiles:
pristine_git_object: 4345c4093e91beef9c3659f557aa062a80a27d25
docs/Models/Components/EventBannerLinkClicked.md:
id: 33fd1f9bff11
- last_write_checksum: sha1:391666fd56a775fc00b8ee17b4e20efd7333caa6
+ last_write_checksum: sha1:a9718408e9221ec23d09f7586eeb2b327d1ac574
pristine_git_object: 0701f459a0f9f8162976568b726ba1130c2a6a85
docs/Models/Components/EventBudgetCostDetailJson.md:
id: 868cf164bc6a
@@ -2221,11 +2209,11 @@ trackedFiles:
pristine_git_object: b32504791cd399abd24f3ef24d21ef9294dfa510
docs/Models/Components/EventEmailsPaginatedResponse.md:
id: 0d8cda0847a9
- last_write_checksum: sha1:ed50fc6e383676371d51784a37a5b417ef8907c1
+ last_write_checksum: sha1:2ca2d27e4fa69dbe0292d1a77af4b667d007316d
pristine_git_object: 0a2ad76a85d69bfb393b219a395439204bc2a55c
docs/Models/Components/EventFeatureJson.md:
id: 4424d928f340
- last_write_checksum: sha1:a21efdc580f6c359d2ee52be3addb73b98507fca
+ last_write_checksum: sha1:32adc9a4fc533f79d8058cb2278d62c460c32393
pristine_git_object: 66414e98b9c45628eacfb958a9b4a5b9bcd36782
docs/Models/Components/EventFeatureJsonConfig.md:
id: c95d44901a3e
@@ -2241,7 +2229,7 @@ trackedFiles:
pristine_git_object: 2bfa465442a981207574e185670ca604205799de
docs/Models/Components/EventFeaturesResponse.md:
id: 3815fa396446
- last_write_checksum: sha1:5569004b48075fc56661c54dc097300a1f63af03
+ last_write_checksum: sha1:746b14c8ec9ac0a9c161c31c2544a8a89798c5fe
pristine_git_object: 376b698a6c436e6b252aa923261b27d01c8684dd
docs/Models/Components/EventFeaturesResponseConfig.md:
id: b5f4a4e51479
@@ -2267,22 +2255,18 @@ trackedFiles:
pristine_git_object: 910b6cbe46b85edf62e65a06ecbcac161cd075c0
docs/Models/Components/EventJson0.md:
last_write_checksum: sha1:8fe25b536c81375f86f58118e5d048b670bfcb56
- docs/Models/Components/EventJson11.md:
- last_write_checksum: sha1:1b949702e54fd2c82961f9dfd1bc115511a6cf5b
+ docs/Models/Components/EventJson2.md:
+ last_write_checksum: sha1:ce7e62ba4f00939dc3d7a7344017a5c79e89e0f9
docs/Models/Components/EventJson3.md:
id: e0577a241b11
- last_write_checksum: sha1:96ec39fbb45d62b55966e4b6f06606d12934070c
+ last_write_checksum: sha1:f7cdf989a14c9f9fd14e9bf4b78381c56c182621
pristine_git_object: 999545de6e861557aa06f38d0b72f16a2c924120
- docs/Models/Components/EventJson4.md:
- last_write_checksum: sha1:235a5e56ed0025cb0ef185e80d94a95d3c250eca
- docs/Models/Components/EventJson6.md:
- id: 5bad4b9006d2
- last_write_checksum: sha1:50bf2a2bc172e55a42d32fbc03f8e26c162b39a8
- pristine_git_object: aac2ee2dfa1ae3a7890d83f9d0b0866438917029
+ docs/Models/Components/EventJson5.md:
+ last_write_checksum: sha1:b79755923ba54ee8b2e0c50971156c9aa380c2d3
docs/Models/Components/EventJson7.md:
- last_write_checksum: sha1:cd7fd4daf3cc4bec177409e88ce0aed6c7e34487
+ last_write_checksum: sha1:5b9fd79b651ca7fa99f4ea3fd11bd0f404707864
docs/Models/Components/EventJson9.md:
- last_write_checksum: sha1:4ee8c2f4976607172cf75be15002332bf8378b32
+ last_write_checksum: sha1:532f328ee6383acfed613b59a11d04f3fbe046bc
docs/Models/Components/EventLinksJson.md:
id: 10d087b72bd0
last_write_checksum: sha1:bb6e959c06e87b77345b3c1ee325276f928298ca
@@ -2395,7 +2379,7 @@ trackedFiles:
pristine_git_object: c808fabcb046c9d95bf4879ed8a8df8af5ec3143
docs/Models/Components/EventSurveyQuestionJson.md:
id: 8b4fdeb88172
- last_write_checksum: sha1:17ad7ac4dc03d02f7f5938ad71cf0336b87011c8
+ last_write_checksum: sha1:fca1263ef657fc41f8d43ce250fd1efbd1d1fcc2
pristine_git_object: 7eaad50803b3d6fd1521b3f409d8898f7ab0f870
docs/Models/Components/EventSurveyQuestionsPaginatedResponse.md:
id: 3afea1410f20
@@ -2403,7 +2387,7 @@ trackedFiles:
pristine_git_object: 91b77939fd514df05fe3633f6ba9d293d9d7df23
docs/Models/Components/EventSurveyRespondent.md:
id: ce08bda9f8ca
- last_write_checksum: sha1:54d460da900e1f447b561655d6937a5b547dd6c7
+ last_write_checksum: sha1:e558a0c6dc82757a44a8545f810fed3114f8e0c6
pristine_git_object: 581b5d45b87cd90ff357b0f2739881855bbb51ba
docs/Models/Components/EventSurveyRespondentAttendee.md:
id: 5f995ac1331f
@@ -2427,11 +2411,11 @@ trackedFiles:
pristine_git_object: f7d88c4cad8e8a84053ea8e016fa83fd113b9c13
docs/Models/Components/EventSurveyResponse.md:
id: 05b78fae1ebf
- last_write_checksum: sha1:8cdeaa6a307a6d8f7e3c6a8d2ae19ec882d98a28
+ last_write_checksum: sha1:84c24f57b90d2c0fd0022b47bff1dab379fd360d
pristine_git_object: 4f410a68e7e263552e43eac848be2ba8d0d433af
docs/Models/Components/EventSurveyResponseInput.md:
id: a69bb5fd8ec1
- last_write_checksum: sha1:875d3cdfa8c3d6cbd5b653b1490544237e937f1b
+ last_write_checksum: sha1:baa078af752e053ac61c06b62041abcfd4a2f04a
pristine_git_object: 74539ec0026654acf3f64f49d419a0a17356b04d
docs/Models/Components/EventSurveyResponseUUID.md:
id: 59150c556c89
@@ -2489,37 +2473,31 @@ trackedFiles:
pristine_git_object: 5d4473d5089601f6fd2116f8b75451a4268a860d
docs/Models/Components/EventWeblinksPaginatedResponsePaging.md:
last_write_checksum: sha1:1f079516cf66040e0d5ba81323ba876025565a4e
- docs/Models/Components/ExhibitorAddressJson.md:
- id: fb5a22044e00
- last_write_checksum: sha1:e8a4e5270fbc9ea29820a813929ad55cb821239e
- pristine_git_object: f9ee049c3c823e100550787d339deb7710a29656
+ docs/Models/Components/Exhibitor.md:
+ last_write_checksum: sha1:2d2c6c1adef46dd1d02608408f8a2c1d4fb70522
docs/Models/Components/ExhibitorAdminRequest.md:
id: e815ec1dfd5b
- last_write_checksum: sha1:97840ea2991324259a91c6936d53ec573cd52667
+ last_write_checksum: sha1:9d454755c453ad4819d2f402fea0da87e31fd0c1
pristine_git_object: 30029dc0344814d8df0694be9928cbfb1ad6e853
docs/Models/Components/ExhibitorAdminResponse.md:
id: 2cef0f7831a3
- last_write_checksum: sha1:3d5ac05ec31876b8b720001fc8725e3b23296161
+ last_write_checksum: sha1:5ba32ee078b738d1e942e68d486c8ee466933043
pristine_git_object: 423c2dc84cd6c44e040d6e50b0e3db1e32d38f29
docs/Models/Components/ExhibitorAdminsListResponse.md:
id: 048834c36e45
- last_write_checksum: sha1:4d254a1a81acdf677175ec701e9ddf8ef901678e
+ last_write_checksum: sha1:51b3afa5492bcc6e9fc1a1e9b0d0df0a1f70c92b
pristine_git_object: 20e2190b694abf8e0178a7729142ab1f7bbbd7d7
- docs/Models/Components/ExhibitorAnswerFormatJson.md:
- id: 3c97f63d1c78
- last_write_checksum: sha1:b37fd6c54bd73a54b41fe68f0812ec6496bb3f36
- pristine_git_object: adfb9617b35d83a40cf1d20093f405543e551b77
- docs/Models/Components/ExhibitorAnswerLimitsJson.md:
- id: 9f905b45cf29
- last_write_checksum: sha1:2bd0b330142fedc13f0f10e549840d228d5393b8
- pristine_git_object: d96b718ef9afa10748cebdf2e178c5542b0a2adb
+ docs/Models/Components/ExhibitorAnswerFormat.md:
+ last_write_checksum: sha1:82ed79a81ce85e1c5c999e8530d3d3be93a102c1
+ docs/Models/Components/ExhibitorAnswerLimits.md:
+ last_write_checksum: sha1:05ab6a65962e45335f3e3fc03070a4f1081ccb68
docs/Models/Components/ExhibitorAnswersRequest.md:
id: 106eee253d6a
- last_write_checksum: sha1:375586e3637b17f4b9ba2f8d4756e132cce55d12
+ last_write_checksum: sha1:876dd88d14aa7ac3ce75265b3c794cc989d0ac07
pristine_git_object: 59ead4a19c69295450c2bd7ad2e425b65e9081d5
docs/Models/Components/ExhibitorAnswersResponse.md:
id: 9b72fa3ed54e
- last_write_checksum: sha1:787b6e4744a1ef00de757416944458a07aa7028a
+ last_write_checksum: sha1:fc6d6c2921f1230fa7ab0f9f1edee909079b6971
pristine_git_object: ae3ed804aa52af8c78a51000b72ede7fad5f2c43
docs/Models/Components/ExhibitorBannerLogoFile.md:
id: 43d1c552641c
@@ -2531,7 +2509,7 @@ trackedFiles:
pristine_git_object: 5aedc73087cf84715cbcc58c8a7567fb2697ae7b
docs/Models/Components/ExhibitorCategoriesPaginatedResponse.md:
id: 0360b5df3e78
- last_write_checksum: sha1:58f409c54ecc50fdfa7612f32c76e823ea77ee80
+ last_write_checksum: sha1:9078f0f3b574cea030e3af1580b05c3615a63010
pristine_git_object: da74f5c31afb215f758786a67c18468c8b2c9033
docs/Models/Components/ExhibitorCategoryBannerFile.md:
id: ef221c92a30a
@@ -2541,17 +2519,15 @@ trackedFiles:
id: e113f92477cb
last_write_checksum: sha1:d65643751318b00eb23fad53bbff81aa74f339a0
pristine_git_object: 9593f8966805363cbda89aba77f0105b3666a3bc
- docs/Models/Components/ExhibitorCategoryIdJson.md:
- id: 1a0084d593a2
- last_write_checksum: sha1:defebcc6c30bf320c629f78fe178a92255d2aa58
- pristine_git_object: 82af013aca06406513fd8824193a49d87509aa25
+ docs/Models/Components/ExhibitorCategoryId.md:
+ last_write_checksum: sha1:f1cac97189716bfc8265543a6f96e53e09a35f70
docs/Models/Components/ExhibitorCategoryIdListResponse.md:
id: 9269346fdf5f
- last_write_checksum: sha1:90f19691ee36280b7b31ea0d0763f0d43e1b5664
+ last_write_checksum: sha1:346eb40603ea73dc905bc55896a12cfc1dcf82bb
pristine_git_object: 8bb95f2a4cf9b6c06f60817378680bdc809f9c69
docs/Models/Components/ExhibitorCategoryRequest.md:
id: 8693227891d8
- last_write_checksum: sha1:12f5ff741221b2e40634e12cf5f5b42fd8035064
+ last_write_checksum: sha1:7bc2b53c473adaf797524c62737e48b05a7dd93d
pristine_git_object: 909a791815a3e7a579ddd96f20632d67ea39cb6a
docs/Models/Components/ExhibitorCategoryRequestType.md:
id: 40f0f389bac2
@@ -2559,7 +2535,7 @@ trackedFiles:
pristine_git_object: 6c95b4a98b81eeefbb523a85548bd0df9b6955bd
docs/Models/Components/ExhibitorCategoryResponse.md:
id: d5f621904af8
- last_write_checksum: sha1:d277a9dff9f2987f9e4b5813858a7de70cd26bad
+ last_write_checksum: sha1:0f45fb4a15902820eb2d704abb3df10817518cc3
pristine_git_object: 5fb5b7e3f9b4689aab11002df02537f14a9ec3a1
docs/Models/Components/ExhibitorCategoryResponseType.md:
id: a3624f809a33
@@ -2567,59 +2543,51 @@ trackedFiles:
pristine_git_object: 97aa94fdccb4550897ddb0cedbf073bba70774ae
docs/Models/Components/ExhibitorDocumentOpened.md:
id: c48ba8bda437
- last_write_checksum: sha1:d01a0c4f41436e1f14794a452cebc8dcb0e05651
+ last_write_checksum: sha1:3d917672d79eff5b3eb88ae92fd68e336f087517
pristine_git_object: 136c8160e5e503d261a4c2d19ed6a2511b9d3e7d
- docs/Models/Components/ExhibitorIdJson.md:
- id: 4d376fed8c4b
- last_write_checksum: sha1:7affddcf94172c4abdd043e87f70927f96ed810f
- pristine_git_object: f86096660c0410f85962f51facc1c1cc5fced7b3
+ docs/Models/Components/ExhibitorId.md:
+ last_write_checksum: sha1:64b535705c23df5dc4ca43d3b834921523c1380b
docs/Models/Components/ExhibitorIdListResponse.md:
id: 0841250061c3
- last_write_checksum: sha1:9e4432e69c9cd7383b6d425c129b11d3d2f9fc50
+ last_write_checksum: sha1:ba1e985a407e8b85a9e23bfc311c2c5646d0245c
pristine_git_object: 27170978c1ccefd7523f14e443f3e33504e0612f
docs/Models/Components/ExhibitorJson.md:
id: b91d8d82e546
- last_write_checksum: sha1:09072bbc2ee460adb3edcd3d861ab14810fd1a7c
+ last_write_checksum: sha1:7189f71007e7544d3a3fe08b0fa4a9db028bb457
pristine_git_object: 3e68a67609063aa93af3ed28e30afc79ba6dd2be
- docs/Models/Components/ExhibitorJson1.md:
- id: a86df65c2281
- last_write_checksum: sha1:43d877905947db9e24d03284da590f176637e7e9
- pristine_git_object: 38c0f19df6b27531ebc8b2ba358f7c985fd54ddd
- docs/Models/Components/ExhibitorQuestionTypeJson.md:
- id: d403f4f6a2ed
- last_write_checksum: sha1:3ee22775a21847c43cf4cc01c744f35868a29998
- pristine_git_object: b581a67a4091ecaee8aa606928e75e84ca9e56f1
+ docs/Models/Components/ExhibitorQuestionType.md:
+ last_write_checksum: sha1:8202aa1a77af6b6a2e0e88e0e5f54b6f43b5862a
docs/Models/Components/ExhibitorQuestionsResponse.md:
id: 8239b3de6637
last_write_checksum: sha1:213d2841c426d3fbf76f0db332b6de237d05971d
pristine_git_object: 4f9b4af7901250e78fb17a64a4b0244a4917cfdc
docs/Models/Components/ExhibitorRegistrationPackListResponse.md:
id: ac1520a31bdb
- last_write_checksum: sha1:1f3ea8e826fe0705c94c1efe5395ae95bc263460
+ last_write_checksum: sha1:4c2a3edee436800e1aeaa3e28dbe07ae9fe649e9
pristine_git_object: 8b27cb16de23fa4fecbf85b70ab29fa25821f6d8
docs/Models/Components/ExhibitorRequest.md:
id: 715ca92dd402
- last_write_checksum: sha1:7281272b8e8d308dc6215ae26507c1da0a3c431a
+ last_write_checksum: sha1:feb94219dc37dc5e090943da7393371c23b3b821
pristine_git_object: e7e5e5db90d93c805f20608ff6ec4fcc439e6a29
docs/Models/Components/ExhibitorResponse.md:
id: 8270ba4f39f7
- last_write_checksum: sha1:f63e1cb2530b982912f67e25c8b6040c0ec7dc22
+ last_write_checksum: sha1:33e9f04e31e443cfb74a96b160787bc7eb6b5295
pristine_git_object: d3bfeb7494fa9d3673844926e7a2f1a456639187
docs/Models/Components/ExhibitorSocialLinkOpened.md:
id: c4a7a3dac67f
- last_write_checksum: sha1:735fadc1d6e28be8fc9511ddb67def6e17abcfee
+ last_write_checksum: sha1:cd122b53af2b298bc7a9ea162c1cdd43b144a564
pristine_git_object: fc97960662df5d8a5ebcdc3f566f1b9258ad080c
docs/Models/Components/ExhibitorViewed.md:
id: 4c2a8c8b1c76
- last_write_checksum: sha1:92a0613d025afcb28d5b8f786375b428f6095d9c
+ last_write_checksum: sha1:b4efca2bdcaa31a59d1b628b5afa092919358ec8
pristine_git_object: fabe8dcba8f52451aa94249492504aa156dbe5ce
docs/Models/Components/ExhibitorVirtualBoothJoined.md:
id: b7c11ca6a175
- last_write_checksum: sha1:3177e1890d5602b4b2b3ac60be3411dd53965229
+ last_write_checksum: sha1:894a121b9c219ca4cb9158c7e3d897882883e0a7
pristine_git_object: 06e91e228d35609a5ce7af382301af2e1b22fcd0
docs/Models/Components/ExhibitorWeblinkOpened.md:
id: e177e8aa8ef2
- last_write_checksum: sha1:4d04cb148595929a0f1fe0c9cba3b0fb4757e09f
+ last_write_checksum: sha1:808fca98d8844bd9c77d08e1b97ee498015bf281
pristine_git_object: afe1339e158c64a8407a4f26a57c69c2d58adbdc
docs/Models/Components/ExhibitorsEventCopyOverride.md:
id: 794fb4405583
@@ -2627,7 +2595,7 @@ trackedFiles:
pristine_git_object: 4608cac3df3de3e50dae805fc7cc72a923978f31
docs/Models/Components/ExhibitorsPaginatedResponse.md:
id: 67ce290cd2d9
- last_write_checksum: sha1:efcbe6725d74ae0ac88476866c370d31e9131dd1
+ last_write_checksum: sha1:b79c570b8fe8117e023949ab855ae1b6a165de2a
pristine_git_object: 299856f641ee5cebbd3b119644beacebd86ba40f
docs/Models/Components/ExistingAdmissionItem.md:
id: 711ceb20a169
@@ -2643,7 +2611,7 @@ trackedFiles:
pristine_git_object: 6889314798efd7b4ee565129ecbb5216b5f4c240
docs/Models/Components/ExistingAudienceSegment.md:
id: efd3f5d865b8
- last_write_checksum: sha1:b0b1954adcb30ca3604fe3ab728e306757a42bfd
+ last_write_checksum: sha1:bae4fe87250f5895adac3afd99bec1be119b1995
pristine_git_object: 487d032347baa56b67eb9ef3975a79c35322f645
docs/Models/Components/ExistingAudienceSegmentCreationTypeJson.md:
id: 053052e28259
@@ -2661,18 +2629,10 @@ trackedFiles:
id: ddd716891f9a
last_write_checksum: sha1:82e418258d96068b204434238c14aed06aea5b22
pristine_git_object: 0c631386676f8e484397ac7948b75e2db9e60fc2
- docs/Models/Components/ExistingBoothStaffJson.md:
- id: cfd23deae81c
- last_write_checksum: sha1:b17ad4a9c490c87c9173bca8956551361d4dd2fe
- pristine_git_object: ad95625d69fcd6c203e01f4f68ed954ab097b8ff
- docs/Models/Components/ExistingCapacityJson.md:
- id: d1ab3fcb59ab
- last_write_checksum: sha1:8fc8b6f261433f09a01b6797cf23f0947fd091d9
- pristine_git_object: 5b1a49ffc6fb68efa11113efa5bbf55b308c4614
- docs/Models/Components/ExistingCapacityJsonRegistrationType.md:
- id: 1e33ea026f90
- last_write_checksum: sha1:a2534d4699cbfc5751b18015a114135fbe0d2906
- pristine_git_object: 8079bf3af1a52647b202b3adf239811eee8bfd2b
+ docs/Models/Components/ExistingCapacity.md:
+ last_write_checksum: sha1:971504bc537713ae50f1ee54f6e95129742ec0f5
+ docs/Models/Components/ExistingCapacityRegistrationType.md:
+ last_write_checksum: sha1:b4f39199ec0e2f3bd0e1461063b00da07883a6dd
docs/Models/Components/ExistingCustomField.md:
id: bc02edd528b6
last_write_checksum: sha1:3030b3e47f9be65289e4f3ae2a45526d8fa5e0c3
@@ -2717,77 +2677,39 @@ trackedFiles:
id: b8f659d2f70f
last_write_checksum: sha1:dc60426a29c3bf457522b1ad149d0f22e8669492
pristine_git_object: 62f32d4a37237533f5b6d340bf5ae4246d75063c
- docs/Models/Components/ExistingEliteratureRequestDataJson.md:
- id: 4e6a20ade606
- last_write_checksum: sha1:fc42af786d5a2e26e658f0ae1219618270a35bbb
- pristine_git_object: e1e76c4b181cbab3c4e55788c1249df793b67ff2
- docs/Models/Components/ExistingExhibitorAdminJson.md:
- id: 1de17958ca97
- last_write_checksum: sha1:b3c84847f72366ae07f8d012e3ae23cb77d88974
- pristine_git_object: 0152009bae58ac78fb8a5f0a68ed7ae460f61c3b
- docs/Models/Components/ExistingExhibitorAnswerJson.md:
- id: fac5723fd15f
- last_write_checksum: sha1:81da8405109af064cff24f306d7a95cadc605a45
- pristine_git_object: 431c0e2162df88000e9ab6805b24fd7f4ede02df
- docs/Models/Components/ExistingExhibitorAnswerJsonInput.md:
- id: a714093e6142
- last_write_checksum: sha1:1e01eb6a388220786e578a9fb3d4008bbdb9811c
- pristine_git_object: 89d09d74e3f27ce18ad4c2091e997df95eb87e24
- docs/Models/Components/ExistingExhibitorCategoryJson.md:
- id: cba4f39fc694
- last_write_checksum: sha1:f8cc63ae19cc93f68873448b0cb1f713e50ee516
- pristine_git_object: 0ef1d6f141853644839179ac1602aa33a130fb6c
- docs/Models/Components/ExistingExhibitorCategoryJsonType.md:
- id: 23b007e43b3e
- last_write_checksum: sha1:3cb7a1467d216215412b4531e63ddd3dd3f04592
- pristine_git_object: 7a1694c97bc2f35a471d1b13fc43e3bdf551c80e
- docs/Models/Components/ExistingExhibitorJson.md:
- id: 4df9d9f9a856
- last_write_checksum: sha1:7afd1c51fab91cea48b3774c79316a0df27e238e
- pristine_git_object: 13e1858b4f5f7f1b29dee56707fa6dde6dad5946
+ docs/Models/Components/ExistingELiteratureRequestDataForLead.md:
+ last_write_checksum: sha1:13b74e1513fd63fceaf2d0c6d5361e4e468007ba
+ docs/Models/Components/ExistingExhibitorAnswer.md:
+ last_write_checksum: sha1:bd1c236f4e87b85a3328500dcc0c124f523dfde7
+ docs/Models/Components/ExistingExhibitorAnswerInput.md:
+ last_write_checksum: sha1:405708a0051272266cb7197371a7419898694c75
docs/Models/Components/ExistingExhibitorQuestion.md:
id: 4c90a240a21f
- last_write_checksum: sha1:417381330eeb7ac17f7b716843ea7206dfdeb2fa
+ last_write_checksum: sha1:0b4630e21d6387e01dee19a152d26b70285defcd
pristine_git_object: a821ee772473199954c79569b0d1556b069e03c0
docs/Models/Components/ExistingFile.md:
id: d90ad4c474cb
- last_write_checksum: sha1:009d4c1fb41d63c0cee8562bf5219fd850eae8eb
+ last_write_checksum: sha1:f3e12ece7fd916e949f2693bcd414300ab0c39fd
pristine_git_object: c1db46c47bf395113dfc22abb12c7111802229e9
docs/Models/Components/ExistingHub.md:
id: 4c2abd932332
- last_write_checksum: sha1:327199c5a54b89706ef76b5418e4e307b5d3c40f
+ last_write_checksum: sha1:7ae2aa72b5a4a02315f3e4080b71300e3b5ea11d
pristine_git_object: 68f40c6d91b51cd2806664f3a5abd996cc751646
- docs/Models/Components/ExistingLeadJson.md:
- id: c4fe8767b908
- last_write_checksum: sha1:037c2a781624f27dad5a040b05f41848c4ef53c1
- pristine_git_object: 3b8dc53a0c851ab793a52d15df263b2d3937689d
- docs/Models/Components/ExistingLeadJsonType.md:
- id: c4bd3004f5ca
- last_write_checksum: sha1:269a2f545b71f07e4028a82fd3880ee7d784e54d
- pristine_git_object: 45bf08553e7efe6b8800dbd0fdabe838820541d1
- docs/Models/Components/ExistingMemberJson.md:
- id: 2a5c8a5c396d
- last_write_checksum: sha1:b6aafbcd6fc1d78a825dc945723b9a3db3acd986
- pristine_git_object: 156a2feb3cd542cc76ea7a9e1b4839ff3fa0810b
- docs/Models/Components/ExistingMemberJsonLink.md:
- id: 1c06f17a1461
- last_write_checksum: sha1:6d173c2f3a1477ab36a2953a432f49e56a931038
- pristine_git_object: 5ac899e0a1c49baec7059e445fb1b559c867fdba
+ docs/Models/Components/ExistingMember.md:
+ last_write_checksum: sha1:fd87207a9c2960b7304c47992843360aad1ce3e1
+ docs/Models/Components/ExistingMemberLink.md:
+ last_write_checksum: sha1:b3ca633d3bc3d895672078648c1b59f526a46e65
docs/Models/Components/ExistingPlayer.md:
id: 4406c0d81862
last_write_checksum: sha1:bfa099a611351b0c78af1ebd9a61b90899cffad2
pristine_git_object: 15061df46eb29b8bc6277b413980418f61389959
- docs/Models/Components/ExistingRegistrationPackJson.md:
- id: 65ec9b722a1d
- last_write_checksum: sha1:8e8c64d177e470f6a5b763c74dfed6433ac4a0bc
- pristine_git_object: b84f454900d61714933c794122c6471e99dd7458
docs/Models/Components/ExistingRegistrationPathJson.md:
id: 057f8c95b2ce
last_write_checksum: sha1:63608949303e46177aa4ff0827e48b7f06679780
pristine_git_object: 90f4be40941ba932ef0a0da287c4ec75d6680075
docs/Models/Components/ExistingRegistrationTypeWithAssociatedRegPathJson.md:
id: d81d39b675c9
- last_write_checksum: sha1:a7bd3e76e9f39850c8cd15999e154302cf488774
+ last_write_checksum: sha1:ddb174b5524182282fe1bc5f000fcd976d4e1b90
pristine_git_object: e5f387c3f9bea6812a46494dfb72207f2e28734d
docs/Models/Components/ExistingRegistrationTypeWithAssociatedRegPathJsonEvent.md:
id: 087d2635ddfa
@@ -2843,7 +2765,7 @@ trackedFiles:
pristine_git_object: d5dc3f1559844ef64ec648af7b31ff71a99fa059
docs/Models/Components/ExistingSponsorshipLevel.md:
id: eca302273648
- last_write_checksum: sha1:4a24185995d87c8fd5c8717a6c9b4c6066e8ed5a
+ last_write_checksum: sha1:eeec059835a689e65d4ba8416b779daa4457cdb1
pristine_git_object: 4e5fb47fb962db3bec4092c61876a663d2d91283
docs/Models/Components/ExistingTableWithSeats.md:
id: fd9778f44795
@@ -2887,7 +2809,7 @@ trackedFiles:
pristine_git_object: 6dc2ea427218c9f9f160d05855ae4557044644d9
docs/Models/Components/ExistingWeblink.md:
id: 2ce1aa717cdc
- last_write_checksum: sha1:c08d0f437475e690fa01d5ec3eb8824102701fc2
+ last_write_checksum: sha1:c964e3c01e2ee714b91d99cbcd780ea3982362d8
pristine_git_object: 321012164470b2f6ff8665d4af15b7ded8f966e4
docs/Models/Components/Expand.md:
id: 8ad164f459ed
@@ -3001,11 +2923,11 @@ trackedFiles:
pristine_git_object: cbbd67926507dbcda582cf941da0e59d5278b5b3
docs/Models/Components/FeatureTypeJson.md:
id: 1138b7b8964c
- last_write_checksum: sha1:e41d914a174935e59650ed45857d815d63c7460f
+ last_write_checksum: sha1:a374f4c421f2720945c39d77127dae6bdbe146b8
pristine_git_object: 17320d587e0c99f6bb3945eb4c6bc089b521d4a4
docs/Models/Components/FeatureUpdate.md:
id: 3b1ac56deaf4
- last_write_checksum: sha1:5ca12661bebdca41d06878296bfff60cbbb1c363
+ last_write_checksum: sha1:03fe7e1e8f9f2a36eb57f94899cca9bde0df6d8b
pristine_git_object: 7b58db73fb927d5f579bc6c98344f5b73800f513
docs/Models/Components/FeatureUpdateConfig.md:
id: e39914258760
@@ -3025,15 +2947,15 @@ trackedFiles:
pristine_git_object: 893155aece3ef99a999d1b387bf4969fd9dc8304
docs/Models/Components/FieldJson.md:
last_write_checksum: sha1:5b53ab9483012a048ad4ee360d2eefcd061a3a90
- docs/Models/Components/FieldJson5.md:
- last_write_checksum: sha1:572c8c8a48afeffe3a46f02158d5af394b783354
+ docs/Models/Components/FieldJson3.md:
+ last_write_checksum: sha1:49dc97d393b2e2a3a8afcc19c4b9211b492581b1
docs/Models/Components/FieldTypeJson.md:
last_write_checksum: sha1:1d58426ba8e42586894ad5c94f16b3548d4cd855
docs/Models/Components/FieldTypeJson2.md:
last_write_checksum: sha1:6f4a8289ed573d2aab586fbb2d22970c5e07180d
docs/Models/Components/FileInput.md:
id: c9cb46d07c3e
- last_write_checksum: sha1:353e616786ed4dcb00d40dcc700531731bd29cd0
+ last_write_checksum: sha1:44d20f293838624056586e3e544a66431ca8ff98
pristine_git_object: 89c2b69701321064f4116c6e8edde4000e9fe70b
docs/Models/Components/FileLinkJson.md:
id: 0efafa0fb579
@@ -3119,7 +3041,7 @@ trackedFiles:
pristine_git_object: 78d8c3929128b11763741cea73585299b5244128
docs/Models/Components/GuestJson.md:
id: ded8b94ddaef
- last_write_checksum: sha1:8f308ed866c1472fb5c4022ed283a9b01c8f708e
+ last_write_checksum: sha1:1902304601a5b1b4338165ba39f7e65c330255ae
pristine_git_object: a1abac56bf951bf242440c720efd47db778957e2
docs/Models/Components/GuestRoomOccupancyJson.md:
last_write_checksum: sha1:1346b3f7b84d053775a57daee2d070b4956673c6
@@ -3215,7 +3137,7 @@ trackedFiles:
pristine_git_object: 4e521afe93538492feb6403345cc08e731ddfe73
docs/Models/Components/HousingEventHotel.md:
id: c121802fdc1a
- last_write_checksum: sha1:44b6a7942f9a3ecfeb3ca9adbededddd2bb7eae4
+ last_write_checksum: sha1:5d23305540f8d19f7f459495a3e04f493aadc752
pristine_git_object: ad2c9ad81532cbb40e505ccc50ef9589ed3572fe
docs/Models/Components/HousingEventHotelsList.md:
id: 1d6991c52bc8
@@ -3237,45 +3159,27 @@ trackedFiles:
id: ffba20cda426
last_write_checksum: sha1:81d6b2c0c3206db0a1773247600fe372a6c3cae4
pristine_git_object: 9a64dd1dd40e12076aa8be2a5d0862f1d62b2a52
- docs/Models/Components/HubBackgroundJson.md:
- id: 68f45a0863da
- last_write_checksum: sha1:e2f7a6aba1cfe43b253c2bb50fa51a63252e3eb1
- pristine_git_object: 0fa3ec4e4202486421f16a83d3c9ce63cc721023
- docs/Models/Components/HubCalendarJson.md:
- id: 9ca830e6bc7b
- last_write_checksum: sha1:c05d4cc2f9213abfed92078a930a4e522a32d0b9
- pristine_git_object: 5c2494bdb4d7353f3dc3a2b3d85f3d23545fe8e7
- docs/Models/Components/HubColorsJson.md:
- id: cc117514c1e9
- last_write_checksum: sha1:f3904d92b0a2971841d508748a58d00257d1eed6
- pristine_git_object: 82a9a96362fde0e24670f1bb1c2d161788041fbf
- docs/Models/Components/HubFontsJson.md:
- id: 4368c6fbb4d4
- last_write_checksum: sha1:b2d7f23caf39b8b58291522938675e0d46323e2a
- pristine_git_object: 3aa89d1b521a0aa6af29ec2a546a63763459a2a3
- docs/Models/Components/HubLoginJson.md:
- id: fc3a769e5c16
- last_write_checksum: sha1:50068c2faf63eb353d7560fe69f9d5d573b88cbb
- pristine_git_object: 1a7fda7ea3b2b93d279be63a282664cc932fb061
- docs/Models/Components/HubLoginJsonType.md:
- id: c3535e70cf21
- last_write_checksum: sha1:72a4a79ef07fb2fde7696cca886702e28a5f205d
- pristine_git_object: 6c11674c52908d066f3629c85f3a9cdeb7efc3a7
- docs/Models/Components/HubLogoJson.md:
- id: 3ac012219b2c
- last_write_checksum: sha1:062e2b3fedf0ffce734ea0b5547e9cd7dd91b050
- pristine_git_object: c18510180e3fc45b1565af443548fafc09a555d5
- docs/Models/Components/HubOwnerJson.md:
- id: c0d28793f51b
- last_write_checksum: sha1:4ad8f0830497e8ae5409e16f6cc2f28d85941c75
- pristine_git_object: afc1cebe6755fb9f79f8fcc92cd4c8784ece7470
- docs/Models/Components/HubStatusPropertyJson.md:
- id: c36e62ab8f35
- last_write_checksum: sha1:4844c11cae102a4196d48a27c9037c4f3bcab287
- pristine_git_object: f4363c132626372f137e94e1dd2be3e6c1ced75c
+ docs/Models/Components/HubBackground.md:
+ last_write_checksum: sha1:96edb4e9a06e47b7288a61ae5c71fb28e5880dab
+ docs/Models/Components/HubCalendar.md:
+ last_write_checksum: sha1:1a3bf6950ca73137610d0d98064b4a899513b1f9
+ docs/Models/Components/HubColors.md:
+ last_write_checksum: sha1:a0477926b25c95f0ae056d668eb28021e16fe64e
+ docs/Models/Components/HubFonts.md:
+ last_write_checksum: sha1:510bb29d501514f35634f1fb8992a41a4af19d23
+ docs/Models/Components/HubLogin.md:
+ last_write_checksum: sha1:e052e6e43d008589b387ca6a0e2f4328b0facfa9
+ docs/Models/Components/HubLoginType.md:
+ last_write_checksum: sha1:ec56f751c83368083a50c533eec5d50880c753e8
+ docs/Models/Components/HubLogo.md:
+ last_write_checksum: sha1:b7eaee45ebd9b1455e11ee43ed5f1118094d9918
+ docs/Models/Components/HubOwner.md:
+ last_write_checksum: sha1:0a32e2d4217e01166b4b90ab2ba309b1415007ce
+ docs/Models/Components/HubStatusProperty.md:
+ last_write_checksum: sha1:267bcac51665dd53b1da2d497eddf8ee67cfef30
docs/Models/Components/HubsPaginatedResponse.md:
id: 3cdd23488882
- last_write_checksum: sha1:e79bb74c9256b185f9c5ba2029ed410a2efda41d
+ last_write_checksum: sha1:a8a67db01fef290924e47c3ff13b18e1a3a3ffd7
pristine_git_object: 8b94627064e717ce9155138bcdfcb9e9839e5208
docs/Models/Components/IdJson.md:
id: 8cd564c56b0a
@@ -3309,7 +3213,7 @@ trackedFiles:
pristine_git_object: b5e568600e0386f3856994504f27bd7c39025eca
docs/Models/Components/InvitationListPaginatedResponse.md:
id: 5e2dbe9c58a7
- last_write_checksum: sha1:b24018860336b3691f6c6c17497d879c77c9a2d3
+ last_write_checksum: sha1:0cdf750042444d83a5541da902940e5663015c04
pristine_git_object: 46c09bb96faaab969b986df0e984e8570752de27
docs/Models/Components/InvoiceFile.md:
id: 072f13b34454
@@ -3357,57 +3261,31 @@ trackedFiles:
id: 6aa920f5d19c
last_write_checksum: sha1:d84c237a209a35a0069766df0169d6f386fdb428
pristine_git_object: 0b4ea329478383b66b3fe32dc975187ab3d3779e
- docs/Models/Components/LeadAddressJson.md:
- id: 069b9961a8c4
- last_write_checksum: sha1:34b7b2e5953c48f0a9ef12cfe669a9b807434b0d
- pristine_git_object: d038bbebce88669e27131065ec7fecbb99dab42d
- docs/Models/Components/LeadAppointmentJson.md:
- id: 2c784d420ba7
- last_write_checksum: sha1:2890ad750166f3a1bf73ac6c36bea199d1de5ee4
- pristine_git_object: 627248529839b898cedbd13f6823502ea4593079
- docs/Models/Components/LeadAttendeeJson.md:
- id: 7c670e6ba3b4
- last_write_checksum: sha1:2776ea00c38977ffd35512b8032bcf9a8d2d243b
- pristine_git_object: 395c51a1e50b6e29becebac9b21b0ac32e2e8cea
- docs/Models/Components/LeadBoothStaffJson.md:
- id: f3a994f31fbe
- last_write_checksum: sha1:c9dd561e5b998183c67bd54d756c2cdaccc431d7
- pristine_git_object: f60a383f166fa40b9624866cef7b8516691fdd59
- docs/Models/Components/LeadDeviceJson.md:
- id: c52d0bf03dd2
- last_write_checksum: sha1:d5299b54a5d2eec64dbfd20d2ce9d3cb7c075d28
- pristine_git_object: 497a9e6082b9b669e893898cee714d3ea4b4e28d
+ docs/Models/Components/Lead.md:
+ last_write_checksum: sha1:37b2787987a1e5d93b831955a6bca8bdb6795c93
+ docs/Models/Components/Lead2.md:
+ last_write_checksum: sha1:7e6e9da579275a0531131cc6ba3c8a7049a5b75a
docs/Models/Components/LeadInboundCreated.md:
id: 886b965c2894
last_write_checksum: sha1:83f5e6db315179f3f85c3e84de06db705c1332f9
pristine_git_object: 5159cab5e0002d214c10e486e434811d134d2cfa
- docs/Models/Components/LeadJson.md:
- id: ea3c90ca671b
- last_write_checksum: sha1:cff18bea3939cfd4c95011e1c8c68ac193510e64
- pristine_git_object: b478b5cb2a0d51ee97642a9aa68953df99d211b1
docs/Models/Components/LeadObjectJson.md:
id: 6bfe8614dec3
last_write_checksum: sha1:dba12fa517a1c3d7d8f07f7659abe2c3c79c52c4
pristine_git_object: 7585072c57a7e779d34132ebe2be65f333eba454
- docs/Models/Components/LeadQualificationAnswersJson.md:
- id: 18add743d239
- last_write_checksum: sha1:4322cf32ad4dad210a06f63f79709c61aed38b15
- pristine_git_object: 3fd4a4a83d248026207fafe51fee0525bfcb17b3
+ docs/Models/Components/LeadQualificationAnswers.md:
+ last_write_checksum: sha1:3bb36dfe773960b83b5f44c184498cd0d8af37f4
docs/Models/Components/LeadQualificationAnswersListResponse.md:
id: 0e85fd40562c
- last_write_checksum: sha1:3fc5da05dde0047d2ccf03b0b1ca124540e0bf8e
+ last_write_checksum: sha1:04efe0b2441f5bacbf3616c85ff28386691b1599
pristine_git_object: a61488ebe50777f1f7be2fd38e001187e9f5d647
- docs/Models/Components/LeadQualificationQuestionJson.md:
- id: c3a1ffd487a0
- last_write_checksum: sha1:c755e1c8701ca23df666ab74dddb3e9ffb130d47
- pristine_git_object: e48cd69acc1bb2e0cf5de9dfafdce1e3cef8cec9
- docs/Models/Components/LeadQualificationQuestionJsonType.md:
- id: e1490ac5f107
- last_write_checksum: sha1:43a116aeb84929f9acd036b2710d124f8ee1f5a4
- pristine_git_object: a94d2374852023bddca66822060f780fdc3a7d12
+ docs/Models/Components/LeadQualificationQuestion.md:
+ last_write_checksum: sha1:67a6c1979d51da5e0e09ddce8ba9de5d11b6a257
+ docs/Models/Components/LeadQualificationQuestionType.md:
+ last_write_checksum: sha1:470810eacafcee5fd67ebd636cb71d87bf2cf2e9
docs/Models/Components/LeadQualificationQuestionsListResponse.md:
id: e609693fe152
- last_write_checksum: sha1:f1b85a7b6b373b3ec2248a5b1b85832c3b9db820
+ last_write_checksum: sha1:2966ddf5329905247da04eabc2d5cb0d8a82030d
pristine_git_object: 3856014528aa2df32224c96127ccc11659dc3a3c
docs/Models/Components/LeadQualified.md:
id: eac798c68875
@@ -3426,21 +3304,25 @@ trackedFiles:
last_write_checksum: sha1:858894f6d4409b39e6d00cbafae9e1ed79996e56
pristine_git_object: b40c2664cc2919ccc8714e1aed884a47c9b1ebec
docs/Models/Components/LeadSource.md:
- last_write_checksum: sha1:2bbc0fb72d9041c29f68cf5672759545ada3ef87
+ last_write_checksum: sha1:4b89ae365bb52e897e9e4fe00f045b5aef098133
docs/Models/Components/LeadSourceExpand.md:
last_write_checksum: sha1:6231032e11e255b23817b5532420d3a2078e44c2
docs/Models/Components/LeadSourceJson.md:
- last_write_checksum: sha1:389552eafbe5895220a694a0e842566bf875536a
+ last_write_checksum: sha1:e666f6f3239e9972b337c8c90697f3aa7b0c8fe2
docs/Models/Components/LeadSourceSectionJson.md:
- last_write_checksum: sha1:989eb1c4356e3d188e139673f63bfd31a500e3cd
+ last_write_checksum: sha1:48e99b7b605781280e659407347e27508ca1fe30
+ docs/Models/Components/LeadType.md:
+ last_write_checksum: sha1:e11354fc690ef515db1d4c4b998e4e38260755e2
docs/Models/Components/LeadsPaginatedResponse.md:
id: 2abb94a0e328
- last_write_checksum: sha1:3f8aba853eb55b4675ecc20eaca2f9804710d43f
+ last_write_checksum: sha1:5a770e9ed777cf611be419d4212891e41c002a7c
pristine_git_object: 65b6e69a20bc9b415fdeb8227b48a57500610105
docs/Models/Components/LegDetailJson.md:
id: ba28f8ee8eae
last_write_checksum: sha1:2410c64905db6db5a2ca79b7f8724f8221363551
pristine_git_object: 3dbf69cb86354d17e2e4746ede0309c2dc0c8f86
+ docs/Models/Components/Link.md:
+ last_write_checksum: sha1:26ca77217ff7f4f74dad8b1e9d0178a81bfdea67
docs/Models/Components/LinkJson.md:
id: 4ce97def1a31
last_write_checksum: sha1:1dcfb92add049a5c8247930d7a9415129dc9e10f
@@ -3519,7 +3401,7 @@ trackedFiles:
pristine_git_object: 70e1a3e3a559295d3f29ebcf5ae87596649a94e0
docs/Models/Components/MeetingRequestCustomFieldJson.md:
id: a7562ea14dc1
- last_write_checksum: sha1:aa0b4adaddb2f828964e4777833ff2810e1ec986
+ last_write_checksum: sha1:d5ca61e65b51f34940a16006dd7f957059ea0e8b
pristine_git_object: b74ab8a4a66d4fd62506912907434dd73358482c
docs/Models/Components/MeetingRequestCustomFieldJsonCustomFieldType.md:
id: 0992a4b10910
@@ -3543,7 +3425,7 @@ trackedFiles:
pristine_git_object: 95197e79f7c6cef252866a6e319379d216279be6
docs/Models/Components/MeetingRequestEvent.md:
id: 1dd4bbc3e30e
- last_write_checksum: sha1:4c3906ff17e067e13372a6b0e49bcb0c492949ae
+ last_write_checksum: sha1:63968aacd743c384b67f5d846f564eab28d33724
pristine_git_object: 622c988af9fd8ad3e8bc165a66e1381565be31ce
docs/Models/Components/MeetingRequestForm.md:
id: c21051ae85c7
@@ -3563,7 +3445,7 @@ trackedFiles:
pristine_git_object: 66fd19e52e1c1736316c58844bac6299935052ca
docs/Models/Components/MeetingRequestQuestionJson.md:
id: 5cc6e242e6d3
- last_write_checksum: sha1:08ebee0a3b9207001034c3552847f38dc21cbe30
+ last_write_checksum: sha1:42b688292bae77f5b236ce13831f4bdf292c30d3
pristine_git_object: b3943c14834b32bc05dd9eb8926766d2981e3350
docs/Models/Components/MeetingRequestUpdateJson.md:
id: dfff04e34571
@@ -3745,7 +3627,7 @@ trackedFiles:
pristine_git_object: e8d7362e3bb0bf47cbc1585d8d9f91eee909e7cf
docs/Models/Components/PaginatedExistingMember.md:
id: b04f333f6ebc
- last_write_checksum: sha1:88c30827a7f70001ff9e9fbcbc8377bd983d749c
+ last_write_checksum: sha1:48b30d7ccff1f281c984ab2bdc2e80acb7c67d5e
pristine_git_object: cf462033c791f94adda5acefa4c92742e209cc86
docs/Models/Components/PaginatedInternalDocuments.md:
last_write_checksum: sha1:068ad6e4094855d15c193dd3f21e4779c5e54359
@@ -3763,18 +3645,20 @@ trackedFiles:
last_write_checksum: sha1:8ef81aa18ddeb67407d77aa3a4ceb7c2eca6ed1d
docs/Models/Components/PaginatedRfpSuppliers.md:
last_write_checksum: sha1:fdeaa9367ef996232c1ff826128ee49f083a4898
+ docs/Models/Components/PaginationLinks.md:
+ last_write_checksum: sha1:6ef55eb75078aefb3ee0efbcf292616a509aa49a
docs/Models/Components/PaginationLinksJson.md:
id: f752311df8b2
last_write_checksum: sha1:aaa4eca509b1035a490c2079aebe0a26c1d74954
pristine_git_object: f83d8c023dd6462709c3b150bbe33474ed85cf87
+ docs/Models/Components/Paging.md:
+ last_write_checksum: sha1:13c959023de67230c13de1ce638f211b6cf29dc8
docs/Models/Components/PagingJson.md:
id: 9c3eaa8ef595
last_write_checksum: sha1:1bdb8b9f09b31b82a3f00bb98a0a9ba79d1cea96
pristine_git_object: 184e341682615d9a5f10b31b3ec16a2a490b62a4
- docs/Models/Components/PagingJson25.md:
- id: c9dc337db686
- last_write_checksum: sha1:80aa669cf7d94d6afb8c92b51ce4f5923bf4c41a
- pristine_git_object: e50bc2899f3cb62bd549c6dad79a12360b49124f
+ docs/Models/Components/PagingJson23.md:
+ last_write_checksum: sha1:ba3678cb15579bb416759700c5c62398b334bcf5
docs/Models/Components/PagingNoTotalCountJson2.md:
last_write_checksum: sha1:93f7e4470b03f4df5a0ea8373f264b747115f1d8
docs/Models/Components/ParticipantResponseJson.md:
@@ -3811,7 +3695,7 @@ trackedFiles:
pristine_git_object: feea2110a78f7e3c61ae7aed49086a71c1c0cec5
docs/Models/Components/PaymentInfoJson.md:
id: e01046e39555
- last_write_checksum: sha1:bb7ec6db0de3c2da200b85f5a1e54f9b4d39bcf6
+ last_write_checksum: sha1:218556b61e1a86dd61eb4feff2202812c0159da7
pristine_git_object: f14f95bc0fea709cd12a2f314989a2e0238d5ecf
docs/Models/Components/PaymentMethodJson.md:
id: c5ad16a9ca64
@@ -3967,7 +3851,7 @@ trackedFiles:
pristine_git_object: e9323827c15e6bb9d1e107110d6329febe74f695
docs/Models/Components/ProcessFormSubmissionJson.md:
id: 772118d5a503
- last_write_checksum: sha1:806266bcf8be4625d1990a071b5907f1a5efbbe9
+ last_write_checksum: sha1:4bb1e0cfd52ebd9a322d1b6ea5d1b34587ba4ddb
pristine_git_object: 4d618f9022470f04ef55daf135a6f633c7d6fac1
docs/Models/Components/ProcessFormSubmissionJsonEvent.md:
id: c55241d195ae
@@ -4045,7 +3929,7 @@ trackedFiles:
last_write_checksum: sha1:aa9aa52ec31d3c61aba114f33ddcffc21dd29778
docs/Models/Components/Property.md:
id: e8101e26ed97
- last_write_checksum: sha1:2912bad160dec6d8ed6e55fb824f63cbbe8d73c0
+ last_write_checksum: sha1:2bc8fdb272dbbc7ec817a6dbda86e1407f98d3c8
pristine_git_object: 96ca4470ba564ba9e8b381d581e592726ad8a2a4
docs/Models/Components/PropertyBrand.md:
id: b4d48041a09a
@@ -4109,7 +3993,7 @@ trackedFiles:
pristine_git_object: 751d856be3a8dad5db8f9af2b052c3047be039e7
docs/Models/Components/PublicUsagePlan.md:
id: f665b0cfefdf
- last_write_checksum: sha1:aabc312ea0dbc3433aa8185f79fb618f95892f22
+ last_write_checksum: sha1:f5d9b86662089f1e1baa192a68d755ff1f49b31d
pristine_git_object: fe50a4c400f83f544df7eec5b88b1b68d5574716
docs/Models/Components/QuantityItem.md:
id: becc7120dca6
@@ -4151,7 +4035,7 @@ trackedFiles:
pristine_git_object: 7e436fd511c924fd0f6634988536341c00a508ff
docs/Models/Components/QuestionJson2.md:
id: bd5c97e35d21
- last_write_checksum: sha1:dc03ef7dc13568c871eaaf027a74345aece307e1
+ last_write_checksum: sha1:04f56f49c4822f1bcb5e2b6007785e00a57f7ee3
pristine_git_object: 48cbe14482da5002f85245ff77a30bf0b6f4311c
docs/Models/Components/QuestionJson3.md:
id: 0f7fa7355dc7
@@ -4171,7 +4055,7 @@ trackedFiles:
pristine_git_object: 4a6365a5544f64b14fdde52c4d2aa2f3f19bb85f
docs/Models/Components/QuestionResponseJson.md:
id: 8287d219f9f4
- last_write_checksum: sha1:d91bbbf5f4ecd7cfe67abd6d469b14f01ea2eb61
+ last_write_checksum: sha1:8263861e11be070afdb0e2548d73c6b3583229c3
pristine_git_object: 01fba7610613f3908208a5a62d5bfba59edc87ca
docs/Models/Components/QuestionResponseTypeJson.md:
id: 1bb9c0b9aa43
@@ -4283,11 +4167,11 @@ trackedFiles:
pristine_git_object: 5b5076d39b40de7086aa1e2996777b1e4c2e0df5
docs/Models/Components/RegistrationPackRequest.md:
id: 61162104d22c
- last_write_checksum: sha1:5c5ba570134ace6a229a44c428742d837150aacc
+ last_write_checksum: sha1:cafb3e2b5f2203cc54845e9f84f5cbd2a6d1fc0a
pristine_git_object: 7d8f2260e5106670cf01994f07594faf6db0d080
docs/Models/Components/RegistrationPackResponse.md:
id: 1f9cfb026e2e
- last_write_checksum: sha1:7ef832207cbf09052239c94a5f80628f3d3bf22e
+ last_write_checksum: sha1:156a6ecb571495c16550a60d0b9626aa0d564e03
pristine_git_object: 766f1a3a9c48d7544f0aa5ecdc83c48b3f670fbc
docs/Models/Components/RegistrationPath.md:
id: c2768dd85ec4
@@ -4307,7 +4191,7 @@ trackedFiles:
pristine_git_object: 12fa6504aa9dbdcb065747c4528940807c22a845
docs/Models/Components/RegistrationTypeUpdate.md:
id: de0a916d0d15
- last_write_checksum: sha1:6963006d05032b91605a38e947124b8747c75827
+ last_write_checksum: sha1:ab585fb1890878eedb80c574fbcc47d4fc511556
pristine_git_object: d987daebd00fcdf3a3c55ded85ad30d1a5aab75b
docs/Models/Components/RegistrationTypeUpdateEvent.md:
id: a02c9544f760
@@ -4315,7 +4199,7 @@ trackedFiles:
pristine_git_object: 9e1b2ecd4cff75f9af3c3f3b4619a43992f5a1b4
docs/Models/Components/RegistrationTypeUpdateInput.md:
id: d682d689cc66
- last_write_checksum: sha1:f063c6e6bd5020e4a85acf6f4be32e33cd31a995
+ last_write_checksum: sha1:3009204bf16d4a1cc59859692844155b1454bae6
pristine_git_object: d6e319a5d8dd7415a6cf78eb3035f26302cb163e
docs/Models/Components/ReportingFieldJson.md:
id: 0a78aac63578
@@ -4327,7 +4211,7 @@ trackedFiles:
pristine_git_object: 0ba1ac4c5ff1a858bf490f2114b1dc7c7f84d801
docs/Models/Components/RequestedMeetingRequestQuestionJson.md:
id: 8372f3aa5be9
- last_write_checksum: sha1:e59666934113dab773016a50af851dfed4746bb5
+ last_write_checksum: sha1:e2ce894b220fb45abf935e30bfbb10d1fc1f1aaa
pristine_git_object: 73db5b8efd11c5ba7f229731feee9f2a399ff20e
docs/Models/Components/RequesterSuffix.md:
id: 5f98407aef16
@@ -4339,11 +4223,11 @@ trackedFiles:
pristine_git_object: 8e50d8c85c4c09fa240d8092f3331a1832c1feac
docs/Models/Components/ReservationGuestJsonInput.md:
id: 8d8d96a93f41
- last_write_checksum: sha1:41178916d4a36f13a1bbb9f48ec202b1b30d57ad
+ last_write_checksum: sha1:7159f708884442d9c8b91269aa6180fdd54f08d4
pristine_git_object: 94b9a3ea3bf5efffa443ee865a36dd80f13075e9
docs/Models/Components/ReservationGuestJsonOutput.md:
id: 3c4bd09d553e
- last_write_checksum: sha1:80c9a7b1e76ff2fcf29a84c0235485a8b0471192
+ last_write_checksum: sha1:afb206240aa8e38b35bc49869f5fb714e99e1b4c
pristine_git_object: 21e64391abe3a3259d6d3b3a673b7a745a0f8dc1
docs/Models/Components/ReservationNightJson.md:
id: 4226739ed83d
@@ -4359,11 +4243,11 @@ trackedFiles:
pristine_git_object: ecf1530aa62b40dc1622cf140a05cd5fb9230961
docs/Models/Components/ReservationPaymentInfoJsonInput.md:
id: a99e1cabb766
- last_write_checksum: sha1:340fc1deba9e7baabe8241168c57a3dc94a0a29b
+ last_write_checksum: sha1:50e1d649a5b409463828c977e08c7a6cb1483bc9
pristine_git_object: f6d5642c2b5537f14e5f77743df4d01a0b1b56ba
docs/Models/Components/ReservationPaymentInfoJsonOutput.md:
id: e301624b67cd
- last_write_checksum: sha1:cceef7fc7874a71fe079a77dffcc0aa63dca13e1
+ last_write_checksum: sha1:c3543f4ec1c41a156cfd36c093062504b5dc73d7
pristine_git_object: d3b58f48d19c448ffc2fc2ff20f7a793382492d5
docs/Models/Components/ReservationRequestBlock.md:
id: bce0d5720624
@@ -4451,7 +4335,7 @@ trackedFiles:
pristine_git_object: e392f4ee4c4e47f0a1f14ec100f4ae98b89bd2f1
docs/Models/Components/RespondentJson.md:
id: e6a92e72262a
- last_write_checksum: sha1:3bb930563a0209567215b35e72528013c6b25a35
+ last_write_checksum: sha1:fe310cbd902cea8e5b387d37f630a964b60a3674
pristine_git_object: 1fbb2e1bf8085c4e8dd5e389b00a21817f895279
docs/Models/Components/RespondentJsonLinks.md:
id: a84a443bdfeb
@@ -4467,7 +4351,7 @@ trackedFiles:
pristine_git_object: 3f0ed05e80e23ab1d9c44eb18fed02ccc99d1962
docs/Models/Components/ResponseJson.md:
id: 50d110ce63ed
- last_write_checksum: sha1:31c0e4d3806cc825a935036f67b8b033aab2e7d3
+ last_write_checksum: sha1:e628b9e565d6a6acc05692ed308a8df221433622
pristine_git_object: 110425ce5017f228498486dff70011cd89421396
docs/Models/Components/ResponseJsonUUID.md:
id: cc726cb39687
@@ -4601,7 +4485,7 @@ trackedFiles:
pristine_git_object: 9fd7e60d8002973e61dfa952f49b57a622dddfcc
docs/Models/Components/ScoresJson.md:
id: 473d86e2e327
- last_write_checksum: sha1:24bb1ac1179ee7b8050dd2664e6c30af601e78c9
+ last_write_checksum: sha1:35911192a67d64cb7a451a887118ddabb7c591f3
pristine_git_object: 61265bad15f585b17affca4988839321d6fdf307
docs/Models/Components/ScoresJsonAttendee.md:
id: 19e053efe7a2
@@ -4651,11 +4535,11 @@ trackedFiles:
pristine_git_object: 9dfd1c68dbef2b76651f33ed86aed62a9a73cbdd
docs/Models/Components/SendEmailEventRequest.md:
id: bee58ea2789c
- last_write_checksum: sha1:857a14dc2b9b539d41045c3e7e783e02c8750fe2
+ last_write_checksum: sha1:1aeb5b58a30e3adabbf9947d382366b8d967d694
pristine_git_object: 2fefb1bf364e222adf184ff52981bb3bbd81a0ed
docs/Models/Components/SendEmailEventResponse.md:
id: 582f806b2914
- last_write_checksum: sha1:080b4ff033a7bbdb2892d7b427e9614f63ea54b3
+ last_write_checksum: sha1:88af4183482c1d6b95e9b1c2339de6465e164326
pristine_git_object: 57b01320e4ecc08b38709d06875497030c06e634
docs/Models/Components/SendEmailRequest.md:
id: 0662e7e1547d
@@ -4917,10 +4801,8 @@ trackedFiles:
id: 85126f7f3ec4
last_write_checksum: sha1:57925943001201271758e9ed77949a5e1f469153
pristine_git_object: eb7fc3dff8d6856dd2a1bde78a332eee3490daf2
- docs/Models/Components/SocialMediaLinksJson.md:
- id: e101b1f126fb
- last_write_checksum: sha1:af24c5536164d53f6d6b49c3498fc0cb360ed602
- pristine_git_object: 15852bf70db5eb76ed1c01d41e1c2d1b7443e322
+ docs/Models/Components/SocialMediaLinks.md:
+ last_write_checksum: sha1:3e8fb5d9f1a00e4ed4f028f8d1fbfafef6812638
docs/Models/Components/SolutionJson.md:
id: dbf514528e17
last_write_checksum: sha1:3f0b9e7d560a94758c6c2d51c505d735b2d56585
@@ -5015,10 +4897,8 @@ trackedFiles:
id: 3e981096fb67
last_write_checksum: sha1:7d88d51c3c9b2acf4c3697a5f4e6bdeb5d7bbb6b
pristine_git_object: c331ce1e4304d7c03d76d4d322bb5cffc01da3b5
- docs/Models/Components/SponsorshipLevelJson.md:
- id: e78d2264fffb
- last_write_checksum: sha1:b43afc1806f2a49d099a1a83fafcc991611ff7d0
- pristine_git_object: ac9b3e0506b89c641d19e90bcd19e45e649b4d07
+ docs/Models/Components/SponsorshipLevel.md:
+ last_write_checksum: sha1:db796893002dc82e1f2e2e57b61fc4d9f8d82a82
docs/Models/Components/SponsorshipLevelListResponse.md:
id: 7ed046dbb862
last_write_checksum: sha1:143d310a5e95eb73d1fcc1adb264bc642b28466f
@@ -5079,7 +4959,7 @@ trackedFiles:
pristine_git_object: 06cb63c9bf40c9ef7a978084e93880bb9bc2a606
docs/Models/Components/StandardSurveyQuestionJson.md:
id: 5b14f983c090
- last_write_checksum: sha1:734ce9ed7d8e911594b34f486dab3dc521273040
+ last_write_checksum: sha1:6561c5a583f9192b0c33de51514da6daf5a831df
pristine_git_object: dcb66e926cbdcab8d9a7bd04f1af60370883fc28
docs/Models/Components/StandardSurveyQuestionsPaginatedResponse.md:
id: ec0d58b2a1a0
@@ -5107,11 +4987,11 @@ trackedFiles:
pristine_git_object: 1bede49d49c61821bca19df22c3e5313a65ec337
docs/Models/Components/StandardSurveyResponse.md:
id: 28785e91389d
- last_write_checksum: sha1:2ac31ee3071a4af8cb8b971b5ee02cf5ce82c384
+ last_write_checksum: sha1:07b2d29520890342e807caeada27c931c793cfe8
pristine_git_object: 19e2edc2173dbf69ecbe625afc3ba1a856ef4084
docs/Models/Components/StandardSurveyResponseInput.md:
id: bbaa3bc13332
- last_write_checksum: sha1:ea548e2b8848a65506a0194e7b39f950361dd417
+ last_write_checksum: sha1:6aa5fbe93671ec6fffcc2f07f0f7189f87f55d52
pristine_git_object: 3319cceda3d922c466277d9a7abe450fd08648df
docs/Models/Components/StandardSurveyResponseUUID.md:
id: c4960d0e06ec
@@ -5177,7 +5057,7 @@ trackedFiles:
pristine_git_object: 9e7821ffa663dd0883f54ecf9f122df80ac8a257
docs/Models/Components/SurveyJson.md:
id: f6539e70d313
- last_write_checksum: sha1:1e8c15a2d96f1ec893a0a509a799dde5ef8e8863
+ last_write_checksum: sha1:02abadc5c1de24eb7ad7676388222a9a3a46d408
pristine_git_object: 2b0ce1593fb6b24c036152f4274b122cd4497e58
docs/Models/Components/SurveyResponseJson.md:
id: a47df21ec58d
@@ -5199,10 +5079,8 @@ trackedFiles:
id: 2995c8669551
last_write_checksum: sha1:621a2e45c81ab677f72e4218fef066138eddf802
pristine_git_object: 8d74a80ffaaae74fbde80e3b19ec8f214b75a34f
- docs/Models/Components/SwitchBackTargetUsagePlanJson.md:
- id: 206cf667406b
- last_write_checksum: sha1:a04f5f248af0bf8ec2258c8a372261cdbf47aeb1
- pristine_git_object: ddab3685e8f1026bf2200e9f92ea712e10446619
+ docs/Models/Components/SwitchBackTargetUsagePlan.md:
+ last_write_checksum: sha1:cf45d2b6c0c1017186965670651541ef201acffc
docs/Models/Components/TableAssignmentJson.md:
id: e642d85fff78
last_write_checksum: sha1:2872c2faa674f77cac7e3fc9428a4c658c018e0f
@@ -5247,11 +5125,11 @@ trackedFiles:
pristine_git_object: 3ef01a43f6e275780f6ae20a06303dd0bf7f783e
docs/Models/Components/Three.md:
id: 3f27362616f5
- last_write_checksum: sha1:16b1e99d2f0a8603e5b56ab589e1905566f3cd0d
+ last_write_checksum: sha1:4974e77773ad1c4d449be1ed542f6fa2a1bd6ead
pristine_git_object: ec3670db365c77d1d08759db049fcac31e0978b3
docs/Models/Components/ThreeInput.md:
id: 672ba03ab19b
- last_write_checksum: sha1:2f1e48b376fab8a3c5a64de569eacd753de19d0f
+ last_write_checksum: sha1:1a966154cfb2cee52a6f9ec06d93df74c1b8978e
pristine_git_object: 7541815fd5fbe0970fcc06120b962bb3ba234441
docs/Models/Components/ThumbnailStatusJson.md:
id: b08883ed69c2
@@ -5343,7 +5221,7 @@ trackedFiles:
pristine_git_object: 9d38ded99a78958962e50ec4824c1ac7638bcf2b
docs/Models/Components/TravelAccount.md:
id: 0341369b31d5
- last_write_checksum: sha1:5bef7ddca73e2df6ddae67c0df02b41ae246190a
+ last_write_checksum: sha1:76cc0e0641c3083c2861f218680db9c1e32a4b0d
pristine_git_object: f2c3369de6bcff31b2db0fd5486ecf6053b0f805
docs/Models/Components/TravelAccountPaginatedResponse.md:
id: e9b8492e3bd4
@@ -5561,6 +5439,8 @@ trackedFiles:
id: 27a9ef72bd28
last_write_checksum: sha1:0505a2887c55f90cdeb9433da5cdb8e4947d9400
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/UpdateAppointmentRequest.md:
@@ -5571,17 +5451,15 @@ trackedFiles:
id: a512b530cae5
last_write_checksum: sha1:ee214684dca04b0ed84c615006c5618997cf6a9a
pristine_git_object: 091d4921d1587a78fdbf2cbe12f02373c99b1080
- docs/Models/Components/UsageJson.md:
- id: cec061b7412c
- last_write_checksum: sha1:a3e180c233af86128a10cfa63b6a751c1a2406bf
- pristine_git_object: 8c58e0c333069b9a9e593fc81d43635fca8f2cc5
+ docs/Models/Components/Usage.md:
+ last_write_checksum: sha1:f9afed79a75052ce5cd755339c90eeb334155807
docs/Models/Components/UsagePaginatedResponse.md:
id: 8697b698c947
- last_write_checksum: sha1:0adac5dacb77fbd08fdbb8d5aa6863117e260112
+ last_write_checksum: sha1:f92bf08d69334c6b62e55955b2d90f844febbf92
pristine_git_object: 963523d60c2e1add552a9e82457662a2c31f5c21
docs/Models/Components/User.md:
id: d91a5ce53244
- last_write_checksum: sha1:982f856921866a77fc712aeb5bdb487886ba9cc7
+ last_write_checksum: sha1:ca1d3b074fa7ae268bb4df714667109131fb29cb
pristine_git_object: 91ca9f23ae3392dff4d98eed98276611fb95d633
docs/Models/Components/UserEnterpriseExtensionJson.md:
id: ed6d4eb19044
@@ -5613,11 +5491,11 @@ trackedFiles:
pristine_git_object: 638e9fe0d02dfdfbaf844b5ac45d4094e440ada2
docs/Models/Components/UserInput.md:
id: b0f6fe1fde88
- last_write_checksum: sha1:23f76d050c53c56fef19589fe86238dd55a10ab9
+ last_write_checksum: sha1:d5b5fc71cd86010185b3ca1f01e061b3ad43cdf2
pristine_git_object: a0435adc3e85200593fc6b1949ad68dc683939d1
docs/Models/Components/UserJson.md:
id: cb4b4b0b2bc7
- last_write_checksum: sha1:4b862bf002096380ced9af403ededeb4620b22d9
+ last_write_checksum: sha1:3bdd707ae9dee4e757c05a460041c91dedb752aa
pristine_git_object: 72fc4e26ba943aa6299538dbf92a1324b2138ba0
docs/Models/Components/UserTypeJson.md:
id: 5e2470b7dbfb
@@ -5635,10 +5513,8 @@ trackedFiles:
id: db61d8bb2bdc
last_write_checksum: sha1:47e59b2662f0ec8aeaa7e03af592df2eaf819dd5
pristine_git_object: 579e32b253baa446acac39b4c3a58801ebc87a6f
- docs/Models/Components/UtmOverrideJson.md:
- id: 033e2404f695
- last_write_checksum: sha1:38b015d53c63dbe7c4a72921c4f9b56a09c352d5
- pristine_git_object: d00c13446d5eb4ce7a40ec3736d168161e720aa0
+ docs/Models/Components/Uuid1.md:
+ last_write_checksum: sha1:af5f4cb6458ec218c5ff1b9cc659636e1ad83bb1
docs/Models/Components/UuidJson.md:
id: 26302542738e
last_write_checksum: sha1:7debc867173035ed25e4fd578ea3a7ffbf6d138e
@@ -5699,8 +5575,8 @@ trackedFiles:
id: f8a0f2542915
last_write_checksum: sha1:19f733f06360357234a605dccbfa890c2696c6af
pristine_git_object: bb3ec2d1ae13ff47ccda14e65c8f6fc5a40fe9cf
- docs/Models/Components/VideoJson1.md:
- last_write_checksum: sha1:4426e0c7f867ef05ac9f2ea00e8221e348e1af93
+ docs/Models/Components/VideoJson.md:
+ last_write_checksum: sha1:82f8cf9f1ad353db0f9a8d6c9720dc8056675c8a
docs/Models/Components/VideoRenditionJson.md:
id: 81d757f830fd
last_write_checksum: sha1:6bdd08aa5ecfe5cde5b30870de4f19ce41d8c10b
@@ -5755,7 +5631,7 @@ trackedFiles:
pristine_git_object: f73dae4744d89a0e31aa0e763483f0d5efa09fa6
docs/Models/Components/VideoViewJson.md:
id: f70172ad482e
- last_write_checksum: sha1:aadfeab39c3dcc03487c6f90a0ab479515436280
+ last_write_checksum: sha1:81874c1c26832d658bf2013d4563cea07e589ab0
pristine_git_object: 8c84c420063307977ea381c6b0fecfb858fe909b
docs/Models/Components/VideoViewsPaginatedResponse.md:
id: 7ef4ab47de05
@@ -5815,7 +5691,7 @@ trackedFiles:
pristine_git_object: 8513c0df9505f0a43916b52ab527b28a8fe12a52
docs/Models/Components/Weblink.md:
id: 437981a9bca0
- last_write_checksum: sha1:8d0102de1353496cfd52cd131a5f959cb0740d8c
+ last_write_checksum: sha1:a9e59a214a28437e67bfaaf0d4b379b0927cff68
pristine_git_object: b617a20aafef7baf2e7ae8eb9ca52b8a566e4c2e
docs/Models/Components/WeblinkListResponse.md:
id: afffb5656797
@@ -5825,14 +5701,12 @@ trackedFiles:
last_write_checksum: sha1:8a4b8eeb877b46fcd6d6988867200db0fbb59a30
docs/Models/Components/WeddingPartnerJson.md:
last_write_checksum: sha1:1a07818797e915ed9718db4de177f62b009cc942
+ docs/Models/Components/WorkAddress.md:
+ last_write_checksum: sha1:465b421682ec6d7772e079e1e150aee66176298b
docs/Models/Components/WorkAddressAddressInput.md:
id: b4354de4a473
last_write_checksum: sha1:3bb7cc71f9cc578d2c06a8462b1323aa3d9454dc
pristine_git_object: f48ad1c64900036a70e862a14c0f5e2ec7fb1a23
- docs/Models/Components/WorkAddressJson.md:
- id: 4518bdaa2a01
- last_write_checksum: sha1:b1a23511eab982056b4d83c590ae8e6fc9534c82
- pristine_git_object: ee29b5efa71a2b6a1a051b948d58690aa03cefb5
docs/Models/Components/ZeroAllOf1.md:
id: ba0e61189677
last_write_checksum: sha1:726c019f6945a383edf0fe8c25da0b9b1e7f9f1e
@@ -6765,7 +6639,7 @@ trackedFiles:
pristine_git_object: 7f5220aea75854ee581ed7adfc4c7da35dc0a450
docs/Models/Requests/GetAttendeeByIdResponse.md:
id: 6fc63ec7db28
- last_write_checksum: sha1:ee90563bc4166b2d310a66cea0804311c605a7b2
+ last_write_checksum: sha1:2b54906a2bae2d0a7602548eedbbfa5b08d12a6a
pristine_git_object: 5ff1653fa519797fff42baaaf8803be8f57bef34
docs/Models/Requests/GetAttendeeCreditsRequest.md:
id: 14a2e6ccf156
@@ -7919,6 +7793,10 @@ trackedFiles:
id: 982a7d6b4fb6
last_write_checksum: sha1:2d35dd91db8c4352dd99a004fbf46a88ee4110c9
pristine_git_object: 187301fb04f3048f5968cfc01b7cd3b36ed65d5c
+ docs/Models/Requests/ListAssociatedAudienceSegmentsRequest.md:
+ last_write_checksum: sha1:d333e1f9922b86ecb9602189c8e990d242aea7f7
+ docs/Models/Requests/ListAssociatedAudienceSegmentsResponse.md:
+ last_write_checksum: sha1:9381f17d9e66fd803679f8784bf95fafc784d906
docs/Models/Requests/ListAttendeeActivitiesRequest.md:
id: 8d1cbb4dbf2f
last_write_checksum: sha1:5c026d9a13bce2c0796a238341ea3663657c6bad
@@ -7927,6 +7805,10 @@ trackedFiles:
id: c45b887d227a
last_write_checksum: sha1:967e2f4a52aae4e526af89a8412bc650b97de38f
pristine_git_object: e3fd3d663c57c17cc142e97a54f50f3eaf4ac061
+ docs/Models/Requests/ListAttendeeAudienceSegmentsRequest.md:
+ last_write_checksum: sha1:b6c7699b9b26fbef067ca13c964fb0afc4a83d46
+ docs/Models/Requests/ListAttendeeAudienceSegmentsResponse.md:
+ last_write_checksum: sha1:b4150c097b7cbf9d44c0900a9f72ac1dd479ecb7
docs/Models/Requests/ListAttendeeInsightsRequest.md:
id: f5cec2b25e8f
last_write_checksum: sha1:6fd93f230790bd936efbbf9a6c73c3477a64c413
@@ -8065,7 +7947,7 @@ trackedFiles:
pristine_git_object: ae54ad7218e7c8d09446a61f53567dde2fae6c94
docs/Models/Requests/ListDiscountedAgendaItemsRequest.md:
id: a0bd5d34d5f6
- last_write_checksum: sha1:2cfa2f5001e30bea3eef3aa4f1816b99dd816a53
+ last_write_checksum: sha1:5afc1fa286ef476f8569e8cb0c8ee94e9ebdc26a
pristine_git_object: cc8df544e4049bf664212d7b5a019c0d3e93a567
docs/Models/Requests/ListDiscountedAgendaItemsResponse.md:
id: 6ac047d44136
@@ -8081,7 +7963,7 @@ trackedFiles:
pristine_git_object: d08a010c38b8109d24929b87db68565d8e443e11
docs/Models/Requests/ListDonationItemsRequest.md:
id: c74342a80fb9
- last_write_checksum: sha1:4b9896f844c93e2b59fcc405e799640c170a3619
+ last_write_checksum: sha1:e68e6e80bed82366763d7517305b416f76611b8a
pristine_git_object: 9c6c868fa87946ef5eae0a90fd5e88bd295247ce
docs/Models/Requests/ListDonationItemsResponse.md:
id: 0fa53ac8e807
@@ -8097,7 +7979,7 @@ trackedFiles:
pristine_git_object: 4d99bce406a463e7101161c747bcc4b15c2cfdea
docs/Models/Requests/ListEventDiscountsRequest.md:
id: 2bfa9ad3788c
- last_write_checksum: sha1:4e1ece68c6acf84d0020ce03c26dfa876ba9c869
+ last_write_checksum: sha1:77c574e53b16897f83b47391d7ffdab50d977f9f
pristine_git_object: c58b910b1c9631252d010bfbbde21cad44cb73c9
docs/Models/Requests/ListEventDiscountsResponse.md:
id: e1e052370764
@@ -8113,7 +7995,7 @@ trackedFiles:
pristine_git_object: c48d7d1f15f6c01759b4558ab753127f4f39a821
docs/Models/Requests/ListEventRoleAssignmentRequest.md:
id: b2464bce1114
- last_write_checksum: sha1:5b61c89995d15baee820baf3cefd80161be783e3
+ last_write_checksum: sha1:207f8c03a56719762cc7c2ff59866f42fca96bfb
pristine_git_object: 6dee4c781ba26852916aac60bf1f182d3cb24178
docs/Models/Requests/ListEventRoleAssignmentResponse.md:
id: d36d16d2cd5a
@@ -8185,7 +8067,7 @@ trackedFiles:
pristine_git_object: f493edbc67d3cb4ea02a1f8364772ae21bd28882
docs/Models/Requests/ListFeeItemsRequest.md:
id: d945221bae4d
- last_write_checksum: sha1:1fdfc2e278f99b0836d23ff5c01789bab7a76dd4
+ last_write_checksum: sha1:5f574344588dce80835e00630612260111078289
pristine_git_object: bf4322fb2ede3807a9b1601f1faaefa844f53228
docs/Models/Requests/ListFeeItemsResponse.md:
id: 5ca386c8fd76
@@ -8239,8 +8121,12 @@ trackedFiles:
id: f2ca14155935
last_write_checksum: sha1:ee4c611722e8c00f7fb5ccbcba346d01b6936ba7
pristine_git_object: 505c2b80057b9143ae5ac8ad062ec990442269ea
+ docs/Models/Requests/ListMembershipItemsPostFilterRequest.md:
+ last_write_checksum: sha1:473588c332e72ace57765d312dca7edfc990ffe8
+ docs/Models/Requests/ListMembershipItemsPostFilterResponse.md:
+ last_write_checksum: sha1:0ecaba664174572502730dd405452cb0642ab56b
docs/Models/Requests/ListMembershipItemsRequest.md:
- last_write_checksum: sha1:922432492062cc41a0be07191104c31f836d159c
+ last_write_checksum: sha1:62e7884e1a7cce0b82f0b1bd82acaeb55e9ed140
docs/Models/Requests/ListMembershipItemsResponse.md:
last_write_checksum: sha1:e1fe0d450ca567c7191bf890c778d00d869bf700
docs/Models/Requests/ListPlayersRequest.md:
@@ -8285,7 +8171,7 @@ trackedFiles:
pristine_git_object: 31762c987436a1cd2cff8b88691c3b528952f7f8
docs/Models/Requests/ListQuantityItemsRequest.md:
id: 46fac450fb37
- last_write_checksum: sha1:b270b3cea1775bc49e1d920a3d77f8aaa48e9a2e
+ last_write_checksum: sha1:6003776d6a8487762977f5860c2bd0919d47a784
pristine_git_object: 1341f7ee33011930a52bfc556bd476802f0003ae
docs/Models/Requests/ListQuantityItemsResponse.md:
id: 4dd7ab2abe6b
@@ -8841,7 +8727,7 @@ trackedFiles:
pristine_git_object: 3d2a5d831d0a7d898023fc4c4c0d62ceac3d72ae
docs/Models/Requests/UpdateAttendeeResponse.md:
id: c1ada44c9426
- last_write_checksum: sha1:817000db4b62c6cb904eb52cff4502bab836267e
+ last_write_checksum: sha1:c230944eafbc2fad159a35aaf5e7d71756300d6e
pristine_git_object: 8cf7313e9555975ae6cdc38c72be59c9bba1089a
docs/Models/Requests/UpdateAttendeeSubscriptionStatusRequest.md:
last_write_checksum: sha1:4f51cf9e3eea9872296eff04f5846fdfdbb68e0a
@@ -9257,11 +9143,11 @@ trackedFiles:
pristine_git_object: c05b58f290ecf7fb80ec0b61ac47843d61aa0118
docs/sdks/attendees/README.md:
id: 99bffbf21091
- last_write_checksum: sha1:87da5fa0679c738ef33d822486817eb39184f639
+ last_write_checksum: sha1:3951e4d3775bf2e65bb42e99950df098791f81a5
pristine_git_object: 309b429b5efc21e6dac3eda810410a5db0155fbb
docs/sdks/audiencesegments/README.md:
id: a2ccf2d6ee02
- last_write_checksum: sha1:b46fb7f3db82ca3d80393c9dee01f80a43b91903
+ last_write_checksum: sha1:9c41a15d34a826aa7790c9da4adac59efbed4690
pristine_git_object: ca970b43ca92e0cb8eddf9d0f04a072fcdee273b
docs/sdks/authentication/README.md:
id: 45be241adfc3
@@ -9301,7 +9187,7 @@ trackedFiles:
pristine_git_object: e14675ab6c00a66834afb5eac3323003eb2cf9c7
docs/sdks/customfields/README.md:
id: a205cef73249
- last_write_checksum: sha1:2cfbac7f6f92e1eaedf165859f1b90e504632102
+ last_write_checksum: sha1:6177a559b1aa636ce5b8ab529fd45b3a4b32b0a2
pristine_git_object: 3eff273d1ad993bed5df5562e4ebb3b9ba361e0f
docs/sdks/discounts/README.md:
id: "000723261694"
@@ -9321,11 +9207,11 @@ trackedFiles:
pristine_git_object: 608c053136f9612e6d3fa86e8ff492bf9a6b40d9
docs/sdks/eventrole/README.md:
id: b10e2c12d0e8
- last_write_checksum: sha1:e6e066e65438ec1e1035d18b755e6194636323c9
+ last_write_checksum: sha1:6aaac1fcedfea7f7b1e65e30637f2765d148bb24
pristine_git_object: d240e20e73d3bca557fd79bfd19dd14b79beeffc
docs/sdks/events/README.md:
id: cf45a4390b9b
- last_write_checksum: sha1:d53ce628e21c87344e573a826fdb9bc390f55fed
+ last_write_checksum: sha1:9fa85fc6d9fb09d077b9bbaa98c5748ea78fd871
pristine_git_object: 850a5f07f1d8f2b7538ae8fa2084170534d7489a
docs/sdks/eventsplushub/README.md:
id: 5f184d5bdfcc
@@ -9337,15 +9223,15 @@ trackedFiles:
pristine_git_object: 2c574599b73113a5907f3b8930afa57eff55b6a1
docs/sdks/exhibitor/README.md:
id: cb0578099210
- last_write_checksum: sha1:86b04be179332ab91a4cd5c6d8075b0d1968c0d4
+ last_write_checksum: sha1:f4a66482adf1c5f0dbfb4d0aea88e1d907158215
pristine_git_object: 1074fee30b94d8183c83575f07b3da433ff94a28
docs/sdks/exhibitorcontent/README.md:
id: 7cecd37f6b66
- last_write_checksum: sha1:c04eacb21f1d0e8b667e1a93c0febdf6065425bc
+ last_write_checksum: sha1:c9c2d96321eaf5ee5b91d057a2c89a60bb5150b9
pristine_git_object: 4dae9b04bb1569fa2a7606b625358fa1530e884b
docs/sdks/exhibitorteam/README.md:
id: f5b7c80d738e
- last_write_checksum: sha1:a420110516213e4f97c01963a1b23b0e5a2b7eb1
+ last_write_checksum: sha1:443b876fb4debfcbf65f8b16ee67019e47f9ab79
pristine_git_object: 370489e7b9590497cefcf4fd8ca3639fd60ffcf9
docs/sdks/file/README.md:
id: 2e0e7ec90c9f
@@ -9357,7 +9243,7 @@ trackedFiles:
pristine_git_object: 226634479fc1c80c5445e0abd3906614f5ca218a
docs/sdks/housing/README.md:
id: 23d65d817ab8
- last_write_checksum: sha1:f4a7c34061293053f38a76996255ce8a41873901
+ last_write_checksum: sha1:2d9772c15569397e525ecc6faac1502566dd55e6
pristine_git_object: 4455010cbde3a3837c5ca2b707afac4aae2ac717
docs/sdks/housinghotels/README.md:
id: d04ff5412c59
@@ -9369,7 +9255,7 @@ trackedFiles:
pristine_git_object: e22b3188b967a497c5095aff8f03cab0310aaf43
docs/sdks/meetingrequest/README.md:
id: 4d8d5f5fd977
- last_write_checksum: sha1:1f9ffe5e0e1ca00fd923075f5332581d80c6f1ca
+ last_write_checksum: sha1:dc55fbc664d1dc1ee365447d2235d13f0eda75af
pristine_git_object: 2b7a21d84cc4510d71685da566e69b4eb2d138b3
docs/sdks/processform/README.md:
id: 0d23c161e66c
@@ -9405,7 +9291,7 @@ trackedFiles:
pristine_git_object: 819fb5889b271959f7900ff5435a3be8f8154843
docs/sdks/surveys/README.md:
id: b7f48111aedf
- last_write_checksum: sha1:201e97bba127c10bd7d7399cdfc086c74abefd3d
+ last_write_checksum: sha1:fb21ff36d1133df78c16d6ef371523e0e188db10
pristine_git_object: ae2684f2a33f099beb12b907b03cb4954792ba45
docs/sdks/travelaccounts/README.md:
id: 361add025274
@@ -9429,7 +9315,7 @@ trackedFiles:
pristine_git_object: ae4345de8bbb2321bc1f484c5b5b9f21568a81f3
docs/sdks/userscim/README.md:
id: 50529a579425
- last_write_checksum: sha1:2a271887478818ebf1e4bbdd7d16149cd22e7129
+ last_write_checksum: sha1:ed67fcf7f3fd4b7ca4265fafe25719fda60be12e
pristine_git_object: 841ab56e8b0a3f4dc1b0143c61e0bf9a005a690c
docs/sdks/video/README.md:
id: 0b01dca84f9e
@@ -9461,11 +9347,11 @@ trackedFiles:
pristine_git_object: bad6c37a004676ea369dedb8042432f0aeee6a00
src/Cvent/SDK/Attendees.cs:
id: 32949bd964be
- last_write_checksum: sha1:18d568a5a4c4a00d4a0ca90f7f1bc80a8d8d6b20
+ last_write_checksum: sha1:3c038ce6691fc0f6cc317d3031f21dad031627c8
pristine_git_object: a3cd526a9a86ef8600b77fe5700ec9462a16157c
src/Cvent/SDK/AudienceSegments.cs:
id: 8ea605bfa719
- last_write_checksum: sha1:b134bbbf890389bface41c792b57e227f38723b9
+ last_write_checksum: sha1:de84edc22ded8b1ce511e20d27dac9c7ccb824a6
pristine_git_object: cd663f188cf769273acee47bf7512632946b0a54
src/Cvent/SDK/Authentication.cs:
id: f90a858273bd
@@ -9509,7 +9395,7 @@ trackedFiles:
pristine_git_object: 977cd7381c7598682830d6e4a64a85cb14130b98
src/Cvent/SDK/Cvent.SDK.csproj:
id: 7a55759bc2f0
- last_write_checksum: sha1:b6eda01ab91f0a4ae625e778b9cb8001efb674fb
+ last_write_checksum: sha1:964ca821c84c3dc2b97031aaad4bb19798368540
pristine_git_object: 711013944bc0505858b0b7cf177f166071b47593
src/Cvent/SDK/CventSDK.cs:
id: f7e1ad22cd8f
@@ -9533,7 +9419,7 @@ trackedFiles:
pristine_git_object: 42ed1825b36d2872fa45c6d12f396c79f720c725
src/Cvent/SDK/EventRole.cs:
id: 2517b38f0a52
- last_write_checksum: sha1:8c762bcb9af0ed4106e48493b16dc6201a6fbee6
+ last_write_checksum: sha1:5b1c4628f794241c09dc109d45ab478e9f88ca6d
pristine_git_object: edfd34d648de349f3958e7fbea9e14f7b99aa8b3
src/Cvent/SDK/EventTravel.cs:
id: d5493432a866
@@ -9541,7 +9427,7 @@ trackedFiles:
pristine_git_object: a8b681cf4ef2300fc3896005e04884f778619289
src/Cvent/SDK/Events.cs:
id: b96dbb23cc9b
- last_write_checksum: sha1:2ec3b8caf7b623cd4cb2f71bf8530210c95d7507
+ last_write_checksum: sha1:0870b75d44eba0fd046b55c135782cc1708ca5e8
pristine_git_object: ff16db101200573206038eda60add74607295adb
src/Cvent/SDK/EventsPlusHub.cs:
id: cc332d7b024a
@@ -9597,7 +9483,7 @@ trackedFiles:
pristine_git_object: dfcfb0f9b1c88569e9f6110dbee82dc25ff538ee
src/Cvent/SDK/MeetingRequest.cs:
id: 5f343c314bf6
- last_write_checksum: sha1:9a287ca7304a4a2935eb37f4abc27e24ffb72ca4
+ last_write_checksum: sha1:f81aa51d27fbce7d19791f1f7311d34d9707f828
pristine_git_object: ab4d871c869ae435b0148438a074c626d5bf7495
src/Cvent/SDK/Models/Callbacks/CreateContactHookContactTransactionCallbackResponse.cs:
id: bfa3f73d3233
@@ -9613,16 +9499,12 @@ trackedFiles:
pristine_git_object: 5fdb3303ef128d161371aa79f731b5ad7d620b6e
src/Cvent/SDK/Models/Components/AccountBudgetItemListResponseJson.cs:
id: ac5cd2b61e49
- last_write_checksum: sha1:91fd470b3a683baf4b1f30fd58fb06cdb097a78a
+ last_write_checksum: sha1:a5af961016bfaa1f3594632758b19cb9f8788031
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:
- id: 08393a766413
- last_write_checksum: sha1:44d416d06cedf8d675d1c93a9562c2fd9f29f137
- pristine_git_object: 228075b9194825d591a142c81546ca8af395f259
src/Cvent/SDK/Models/Components/ActivityAdJson.cs:
id: 0d0b31605549
last_write_checksum: sha1:a38b7baa576304234d33517acc79ded6a33ffade
@@ -9763,40 +9645,44 @@ trackedFiles:
id: 89b3e07c193e
last_write_checksum: sha1:930a740839338e3ff6223a7022e95fadad4edb95
pristine_git_object: b60d73f82512f146eb5aa8e3e70fadb5ccd6c696
- src/Cvent/SDK/Models/Components/AdditionalChoiceJson11.cs:
- last_write_checksum: sha1:21ccf99e01b34075e748e6e56e3e73e07e10f0b1
+ 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
src/Cvent/SDK/Models/Components/AdditionalGuestFeesJson.cs:
id: abb97fa92f1d
last_write_checksum: sha1:87148f476531182d03d50fbc21bd65a10c460c68
pristine_git_object: c9dd1f4d8d1f92fbee632e7073dd8ed55d5fef3e
+ src/Cvent/SDK/Models/Components/Address11.cs:
+ last_write_checksum: sha1:272307c2ab6280d5a2ea6f658dad7f13720fab1a
+ src/Cvent/SDK/Models/Components/Address12.cs:
+ last_write_checksum: sha1:47679629af5e6bd91d972233f04077ff253abd1b
src/Cvent/SDK/Models/Components/AddressJson.cs:
id: 880605eb68e0
last_write_checksum: sha1:212fa5252086a7c088df0b1870e50772b661e5b6
pristine_git_object: 1b1a269babf9eaa566f92586f436628005b920be
src/Cvent/SDK/Models/Components/AddressJson0.cs:
last_write_checksum: sha1:b10df0890723c220f63037adbbddfe8528fc9818
+ 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:c44261cc72b4f9a417b7e28c03a212c420cc61cf
+ last_write_checksum: sha1:740efc174c7cd45f4ea93507b29587eba1c31b39
pristine_git_object: 6a51b135b815417a1000f129954a2a8a58517efb
src/Cvent/SDK/Models/Components/AddressJson4.cs:
id: 2bdc69183d48
- last_write_checksum: sha1:ae47df924e9d02540f6be695addbf9dd7ad397bb
+ last_write_checksum: sha1:e263c30229f3b77cbbdf07c05cea1f9676e58df7
pristine_git_object: 2b7c0435842a75fdf2bb7b5fee0e34ffe285c784
src/Cvent/SDK/Models/Components/AddressJson5.cs:
id: f2f9793ea05b
- last_write_checksum: sha1:e7c367f8785c50dd7daaf70b2cb8d17b1e7092c5
+ last_write_checksum: sha1:b30f5470d7ffc89113ce802bb18067ac3d5c3550
pristine_git_object: f0766774e8dc9d171a378e7fdc3cd10caa7e7af1
src/Cvent/SDK/Models/Components/AddressJson6.cs:
id: da75f8130d0c
- last_write_checksum: sha1:cb143e57c27192cb5721d642b5e3edf86d574ac8
+ last_write_checksum: sha1:798e7901b9768502c01e9f9fc8c73fd30f64001a
pristine_git_object: 05734df40375bddd274902d42c478cfcf1c8e5ec
- src/Cvent/SDK/Models/Components/AddressJson7.cs:
- id: bcbe46ce9e18
- last_write_checksum: sha1:9a6069e03462d45c761cc53140a3226d2d8e373f
- pristine_git_object: 6701e17c5e9dc24a73705d5577a428551a9aa4ec
src/Cvent/SDK/Models/Components/AddressJsonInput.cs:
id: 6a04c1d4edbe
last_write_checksum: sha1:c2d229ceb423612782de2bccf488843cd9b415e1
@@ -9919,40 +9805,38 @@ trackedFiles:
last_write_checksum: sha1:6dc909a025e7e7c36ac737671eb72977640fefbc
src/Cvent/SDK/Models/Components/AnniversaryMembershipItemJsonContactType.cs:
last_write_checksum: sha1:de907f885f01a28046bf10a570e8ae9acd443bf9
+ src/Cvent/SDK/Models/Components/Answer1.cs:
+ last_write_checksum: sha1:ba2e0689ae4cf04bb212746a2b4a0f3e432f2098
+ src/Cvent/SDK/Models/Components/Answer2.cs:
+ last_write_checksum: sha1:e35c9a96700784ad12f7d8835ff10a64690b5c91
+ src/Cvent/SDK/Models/Components/Answer2Choice.cs:
+ last_write_checksum: sha1:b86cff087b859756261f54f9b037e903628b79ed
src/Cvent/SDK/Models/Components/AnswerJson.cs:
id: ad8cbb3dc646
- last_write_checksum: sha1:05904eabf2cb23ea0b0f0f8962acd5e48394b169
+ last_write_checksum: sha1:70a8c320cd439ffaebe5661f38f856dd40e3f845
pristine_git_object: fa3eb20f09d75ab2c9cdd79322e735b9ffa02aa2
- src/Cvent/SDK/Models/Components/AnswerJson0.cs:
- id: 39f8c912f66d
- last_write_checksum: sha1:e6e7debe40a13e21a32cb4131271815a37037f5b
- pristine_git_object: ff6c453ea5ee9391516373141a13acad80367773
src/Cvent/SDK/Models/Components/AnswerJson1.cs:
id: 97942f924cf3
- last_write_checksum: sha1:2f507573d311477a84cef886d49a7298524bb029
+ last_write_checksum: sha1:aae4287c77d6eab134f2ede3babc6a32199641a8
pristine_git_object: ff6a3e1dec37565b119dd94d11b5b0054abed460
- src/Cvent/SDK/Models/Components/AnswerJson2.cs:
- id: c9bef52a5916
- last_write_checksum: sha1:94626a1462b807986286bd6d354b9c0eb731abe0
- pristine_git_object: 58d58fde218507302c7e18817910ed5df9624225
+ src/Cvent/SDK/Models/Components/AnswerType.cs:
+ last_write_checksum: sha1:7981f31ef04efeb3189dc8965a7f3a6fe4b7770a
+ src/Cvent/SDK/Models/Components/AnswerType1.cs:
+ last_write_checksum: sha1:ffa849f8e677c9a5df1064e2ebe9bfaaa0a68827
src/Cvent/SDK/Models/Components/AnswerTypeJson.cs:
id: 8e81112f94dd
- last_write_checksum: sha1:8e8c079e30da978f5930c5953b754fb9e159731f
+ last_write_checksum: sha1:7da16310ec47e58d15dd499b64ada16b31405f6d
pristine_git_object: 0f8bcc267e2674a6b27e8daeb37941251962af5d
- src/Cvent/SDK/Models/Components/AnswerTypeJson0.cs:
- id: 7a5f64ed619f
- last_write_checksum: sha1:8b3137ccdabe7cc4c3b6fc19c90d3081bd260344
- pristine_git_object: a243c0255ed032fd5870925d6ae59c7d7436edc8
src/Cvent/SDK/Models/Components/AnswerTypeJson1.cs:
id: 53d49d09bfc7
- last_write_checksum: sha1:381dd23031210ce44def66faf803ed2effd814e0
+ last_write_checksum: sha1:64ec73878d89e23c2854e39f5114e7d054259b11
pristine_git_object: 79a3c6efca85dc25614ee87c19b15e8189769a24
- src/Cvent/SDK/Models/Components/AnswerTypeJson2.cs:
- last_write_checksum: sha1:4cc1d5b40bc8784dbe4d799d58077e1cb8c17c50
src/Cvent/SDK/Models/Components/Application.cs:
id: 9cd37b1b4c59
last_write_checksum: sha1:d0b745fb6cbf528d185573ff74c00303f1779b01
pristine_git_object: 3d271babdd3a4ea690591f81a002ed035084773a
+ src/Cvent/SDK/Models/Components/Appointment.cs:
+ last_write_checksum: sha1:f3a1d29e0134fbfb68386218a095c27668e06e93
src/Cvent/SDK/Models/Components/AppointmentAccepted.cs:
id: 4baa27fe4fbb
last_write_checksum: sha1:0c902b236ed1b6826db5f4dab5ab7888c6ae6bd8
@@ -10089,10 +9973,12 @@ trackedFiles:
pristine_git_object: c6b4e1ded15d13ab9bb26da03fecc91df773198e
src/Cvent/SDK/Models/Components/AttachmentSourceJson.cs:
last_write_checksum: sha1:cdf239507921c0616c09f8d7f77bc2c27e60696b
- src/Cvent/SDK/Models/Components/Attendee.cs:
- id: 3074f90b58d9
- last_write_checksum: sha1:0a18f206444777b46bf9118acec682714323ef47
- pristine_git_object: 0e089382c3fc389d21208ae23d98f5b5de533c87
+ src/Cvent/SDK/Models/Components/Attendee1.cs:
+ last_write_checksum: sha1:4a49825d08b3a91262076be80e770c44591b9c98
+ src/Cvent/SDK/Models/Components/Attendee12.cs:
+ last_write_checksum: sha1:88ec5ea157b015860c5aa8777878c7f1fef45bc5
+ src/Cvent/SDK/Models/Components/Attendee2.cs:
+ last_write_checksum: sha1:2565fe07905a84e7cef27b9ea6e4ea10cea0593a
src/Cvent/SDK/Models/Components/AttendeeActivitiesPaginatedResponse.cs:
id: 6b0c3a3dd1ae
last_write_checksum: sha1:ba6b2316015091ba6db51d3436e5cae9700d647d
@@ -10189,9 +10075,13 @@ trackedFiles:
id: 4cc195c80ada
last_write_checksum: sha1:b72674583c6f8730875ff15378089ef4f8880358
pristine_git_object: 6cd3a1a4d9753259510504713d86da014aafb624
+ src/Cvent/SDK/Models/Components/AttendeeAudienceSegmentAssociationJson.cs:
+ last_write_checksum: sha1:5ca0383e8d758fa7c10c0399766eb1a19242370b
+ src/Cvent/SDK/Models/Components/AttendeeAudienceSegmentAssociationsPaginatedResponse.cs:
+ last_write_checksum: sha1:33682762521dbe718f4ccc76379d02702d7c9d95
src/Cvent/SDK/Models/Components/AttendeeContactInfoJson.cs:
id: aef142c1f88c
- last_write_checksum: sha1:d32a1bea40701fd9bed9e818b13c5431225a8630
+ last_write_checksum: sha1:b56566e4f62d0c7c5d2c4fdaf16f132c454a7ff4
pristine_git_object: 226a08e3d9dacf95154d7f8113ea6a7bb44382b6
src/Cvent/SDK/Models/Components/AttendeeContactMembershipJson.cs:
id: 3720efe43570
@@ -10239,7 +10129,7 @@ trackedFiles:
pristine_git_object: c42350af65f1830f6edf63f8b9cacf3da847f200
src/Cvent/SDK/Models/Components/AttendeeInsights.cs:
id: a2602a2ffb19
- last_write_checksum: sha1:650ecf1356e2332957816cac3605af813286ffea
+ last_write_checksum: sha1:e1dfb170299da36d77b67957a8c63ebff822b766
pristine_git_object: 060905701df32d138cdbb95e982a9bf2f6c8c069
src/Cvent/SDK/Models/Components/AttendeeInsightsPaginatedResponse.cs:
id: 2c121c7b10cc
@@ -10273,10 +10163,6 @@ trackedFiles:
id: 37547b0c720d
last_write_checksum: sha1:131ad60f6997e179b6de7872e1cf88585eba9ca3
pristine_git_object: cecfc6c8818dbc5154c6780fe2322c43c1674a18
- src/Cvent/SDK/Models/Components/AttendeeJson3.cs:
- id: d6e4875e8edb
- last_write_checksum: sha1:4f0da63257b459c4538d1a67c4021f363165995f
- pristine_git_object: b859c9c1471768c4442375ae995c2e706587370f
src/Cvent/SDK/Models/Components/AttendeeJson4.cs:
id: e8d130921dee
last_write_checksum: sha1:6e870364a55f26e7414566bb13251edd5b48280b
@@ -10299,7 +10185,7 @@ trackedFiles:
pristine_git_object: 832815709e2f8a971a043b2221165ecccb4b2683
src/Cvent/SDK/Models/Components/AttendeePaginatedResponse.cs:
id: c31116796384
- last_write_checksum: sha1:3663614c56d5f179fd2154286bcd065185dd1f8c
+ last_write_checksum: sha1:b7ccc44b5052dff303363ed718a9ec3825df66e3
pristine_git_object: 6948d395ccdbd6a70af958cdb67ee54dc22ddead
src/Cvent/SDK/Models/Components/AttendeeResponseJson.cs:
id: 3afc5eaf3b56
@@ -10417,11 +10303,11 @@ trackedFiles:
pristine_git_object: 300efc69536a579d698b894f4b243dae54e38283
src/Cvent/SDK/Models/Components/AudienceSegment.cs:
id: 983fe326d11b
- last_write_checksum: sha1:3186a3871e010e4241828a6390c41fc5c1da5d94
+ last_write_checksum: sha1:e3ae0c5c37f5a0861f23ebf179fccf4e5a8a990b
pristine_git_object: dcbeab42e042102bc8a0edffe2d7cdecb3d79312
src/Cvent/SDK/Models/Components/AudienceSegmentCreate.cs:
id: c7e25178e93a
- last_write_checksum: sha1:c87e5fcfe9fe1617be67c1e023e551070155c568
+ last_write_checksum: sha1:7ef522501285c2a82e0059a6700e48d727e95316
pristine_git_object: e3edaf277a106bb9756fd589d1e76adf232c3f40
src/Cvent/SDK/Models/Components/AudienceSegmentCreationTypeJson.cs:
id: dd415bf46ffb
@@ -10429,7 +10315,7 @@ trackedFiles:
pristine_git_object: e95e7dd15ba689428cb4ff8773e6b68c3162f421
src/Cvent/SDK/Models/Components/AudienceSegmentResponse.cs:
id: 49a7f587a8f4
- last_write_checksum: sha1:1c4cfa970547b4a488458e3dd57bcca6833464c5
+ last_write_checksum: sha1:7375a5ed6edb6fa6d356c772d5824f6f0a3703a0
pristine_git_object: 95ee0e7126e40b35005463afa25ee2d0650effe4
src/Cvent/SDK/Models/Components/AudienceSegmentsPaginatedResponse.cs:
id: b2a389bdc9eb
@@ -10481,15 +10367,15 @@ trackedFiles:
pristine_git_object: e3fda04599448619e1ee8140d691c2d996bc3837
src/Cvent/SDK/Models/Components/Badge.cs:
id: ae8d432f30fb
- last_write_checksum: sha1:e20160c5ba1d5a4769746f0f074b21998794fee9
+ last_write_checksum: sha1:a2129eb89b660b6937f65e8a9181a83bd9779ec4
pristine_git_object: d660189461d866bbc57137d29700e269a42ed1bc
src/Cvent/SDK/Models/Components/BadgeInput.cs:
id: edc024116c6b
- last_write_checksum: sha1:4df888292a507c1b48c49176750f7fc27fe4b47f
+ last_write_checksum: sha1:bc4d6d0066a4a83695116c0dad53098d050f8bd4
pristine_git_object: aee2b1fa5dd766d4896777de384562224858126c
src/Cvent/SDK/Models/Components/BadgePaginatedResponse.cs:
id: d25e91026fb4
- last_write_checksum: sha1:9aaebe61a3bc4f2d5cc6ceddfa45f9dec045a47d
+ last_write_checksum: sha1:a6ec3c2ddda700968cfec233a7033beb05825599
pristine_git_object: 7b7154dd042d025f07cd3f5110a66186c89d6673
src/Cvent/SDK/Models/Components/BadgePrintJobCreated.cs:
id: cfed458bc7c3
@@ -10527,14 +10413,10 @@ trackedFiles:
id: 51491f4b4ffb
last_write_checksum: sha1:d3e57d013643aad2683ecd89f4ece3958de19344
pristine_git_object: 1714c0b62580adaf00e7fafc4038abeaa0abb958
- src/Cvent/SDK/Models/Components/BadgeStatusJson.cs:
- id: 341554a4574f
- last_write_checksum: sha1:b1c02b37075498c3b7023cab5a67f1ddfdccce55
- pristine_git_object: 286643457da9b78a505df5db35faa7cf26929d1f
- src/Cvent/SDK/Models/Components/BadgeTypeJson.cs:
- id: ccda63887d90
- last_write_checksum: sha1:fd33414eed9dbe013fd54b8a9264759dda6cfae6
- pristine_git_object: 93e4dae992b729a19348ec9c989692af1786df90
+ src/Cvent/SDK/Models/Components/BadgeStatus.cs:
+ last_write_checksum: sha1:61fa914339bc2e00a4a65a4d4167ead625486279
+ src/Cvent/SDK/Models/Components/BadgeType.cs:
+ last_write_checksum: sha1:d866fde46148e528116db69a375cf91cf932d299
src/Cvent/SDK/Models/Components/Banner.cs:
id: 30dcffb91c11
last_write_checksum: sha1:d3bb1066c0ce2435b408f9fae43ff8cf612599c5
@@ -10553,10 +10435,8 @@ trackedFiles:
id: ed7bf500fe41
last_write_checksum: sha1:99e0556e382edafc83099525a3fb1856e981a8f6
pristine_git_object: 7fb61a2b0d7077651a8e819172a97c34d53e2bcc
- src/Cvent/SDK/Models/Components/BaseChoiceJson.cs:
- id: 86456cedc5ef
- last_write_checksum: sha1:1ebd5deac7b5d1a3ce60f5c10250e1ffd0a68a4d
- pristine_git_object: 60588b6f2819a96234b31d7c93e6ac6d02573c82
+ src/Cvent/SDK/Models/Components/BaseChoice.cs:
+ last_write_checksum: sha1:5dd0e24fa6f4724d3b6d9d00dc4d44f106d59e18
src/Cvent/SDK/Models/Components/BaseQuestionResponseJson.cs:
id: 87f6213c2631
last_write_checksum: sha1:362802c7a38e336806b59176514a9a4a90531d0c
@@ -10595,17 +10475,19 @@ trackedFiles:
id: 0b24d434c9c4
last_write_checksum: sha1:ba6860be0cf86a53140e491ce770a52935aa5410
pristine_git_object: 5bbe71ff7cb80d5fbb2045afd2019223a26df92e
+ src/Cvent/SDK/Models/Components/BoothStaff.cs:
+ last_write_checksum: sha1:f852b4287792b245443ddfdd4d3f7b2021d50a22
src/Cvent/SDK/Models/Components/BoothStaffListResponse.cs:
id: 7e72199fff78
- last_write_checksum: sha1:c193d7a0e9e964ba610e2c70f4b382c6f4565292
+ last_write_checksum: sha1:b0c73be97bdef7ffc7647212b8dcb81fe6f1c165
pristine_git_object: 7cf0add42c435576c317fcf4dd8ca10ff5c44044
src/Cvent/SDK/Models/Components/BoothStaffRequest.cs:
id: b41bd3443292
- last_write_checksum: sha1:ed868a9a91f4ea2b04a491a70cfcebbdb797f1be
+ last_write_checksum: sha1:4f0813420df173223c9c63ca4f0e9772f10363f1
pristine_git_object: e8c1ebf50ecd0fde7a24071c8e198463b4da85c4
src/Cvent/SDK/Models/Components/BoothStaffResponse.cs:
id: 2580e0684876
- last_write_checksum: sha1:ff23977fe2e31b9d6e348cca157a45591afdd48b
+ last_write_checksum: sha1:0acfc64730d0cc31f91b5633ca4cb3d0f3782616
pristine_git_object: 055885654c94d5858f94de5ed6e3d8de424b558e
src/Cvent/SDK/Models/Components/BounceDetailsJson.cs:
id: f50d12fcd1bf
@@ -10617,7 +10499,7 @@ trackedFiles:
pristine_git_object: 4631250f885cfb793bbe350efd57e0eee7fd199f
src/Cvent/SDK/Models/Components/Brand.cs:
id: 28e246c8c762
- last_write_checksum: sha1:543fc24908b73fd14fc4f633f0b9cc451bd19a2e
+ last_write_checksum: sha1:023312973a789989cb3d54b5c3da9e59f108741d
pristine_git_object: 8f4e49ff1179723c17781792ca8eafa756f9c16d
src/Cvent/SDK/Models/Components/BrandPaginatedResponse.cs:
id: 1a0250405f9e
@@ -10873,22 +10755,16 @@ trackedFiles:
pristine_git_object: f36f80267b9fbd67674bf348ecff7a63bae3e256
src/Cvent/SDK/Models/Components/CancelledReasonJson0.cs:
last_write_checksum: sha1:e4ecec35b8b1093c55acbfd545cc097c1c1ec448
+ src/Cvent/SDK/Models/Components/Capacity.cs:
+ last_write_checksum: sha1:df7efb3847103559873cc8192c6f983d41c874d8
src/Cvent/SDK/Models/Components/CapacityJson.cs:
id: 6e2e43e30ed5
- last_write_checksum: sha1:3aaf7143ed467f1aa80276464e27e9951bf45ffa
+ last_write_checksum: sha1:274b5df7525a913b3c8a394e99c48fd0679cc8ae
pristine_git_object: 4588567852d2c426111010e2be3149f6acfb3a42
- src/Cvent/SDK/Models/Components/CapacityJson1.cs:
- id: 197f1a3569df
- last_write_checksum: sha1:52bb8ced93a2d9677e46c500395ef567861efe59
- pristine_git_object: 420b289b0fca20e9d0f5a0ceb87b364e747f8c3b
- src/Cvent/SDK/Models/Components/CapacityJson1Input.cs:
- id: 52edd638ac67
- last_write_checksum: sha1:07de8de603edf2ae0396dfde0ac66840f5acece9
- pristine_git_object: 8521d1d88553f104aa15df7aa37eaac17ca3b947
- src/Cvent/SDK/Models/Components/CapacityJsonRegistrationType.cs:
- id: 781aa91a1ac0
- last_write_checksum: sha1:2640e1fc07369ee959bc456dada7f977d6d38b50
- pristine_git_object: 5e234869b9c08e8a2486ba21dacb8f5916833371
+ src/Cvent/SDK/Models/Components/CapacityJsonInput.cs:
+ last_write_checksum: sha1:b470acead51c9cc5d977076d260bdd83b0a944b8
+ src/Cvent/SDK/Models/Components/CapacityRegistrationType.cs:
+ last_write_checksum: sha1:55304c21cbbcc48934c6765ffd028330dd2acc30
src/Cvent/SDK/Models/Components/Card.cs:
id: f3cf8465d6c8
last_write_checksum: sha1:fa0d6f51ebc86aa21e8ee1f1db017f7098dde52f
@@ -10973,7 +10849,7 @@ trackedFiles:
pristine_git_object: 85df953d584740980de2ff11235573edba998ac0
src/Cvent/SDK/Models/Components/Chain.cs:
id: defb8afe8333
- last_write_checksum: sha1:dc775f4d6c95eeea780f82953ba93d747556310e
+ last_write_checksum: sha1:d83c739ca8b63bd1dbf9dfb10b196a0a1e1fb44a
pristine_git_object: 0e579eb10a63d87d50558f5c30e577e5c7801ab6
src/Cvent/SDK/Models/Components/ChainBrand.cs:
id: 3d94fdabe1d0
@@ -11021,26 +10897,20 @@ trackedFiles:
pristine_git_object: 02a907024c41925f35f72f2c59f77794d3aadc97
src/Cvent/SDK/Models/Components/Choice.cs:
id: 344f899a3f06
- last_write_checksum: sha1:6902e952869d4c5696c9d4396e6254ce27b8ed0a
+ last_write_checksum: sha1:5734bdd56969e1c11377d637cccd194721d6ff8c
pristine_git_object: d63a02e9fb432871f94ecdfa881fa3fe3c17e233
src/Cvent/SDK/Models/Components/ChoiceJson.cs:
last_write_checksum: sha1:8c9979cecc84be0ff3810657f733c7b54ed077f0
src/Cvent/SDK/Models/Components/ChoiceJson2.cs:
id: a117bf7b1539
- last_write_checksum: sha1:0a0bdd19b4ef2fd2b5e70ac37bff23e535116233
+ last_write_checksum: sha1:8ce6bad0c955ef9e95ea86d7d92ec6899c39b577
pristine_git_object: a0d67792f158432e1f71168f4142ceaba759ddb5
src/Cvent/SDK/Models/Components/ChoiceJson3.cs:
id: bc4986afb043
- last_write_checksum: sha1:28b11a8b545bf5a97351da53ab374aad44e79a2d
+ last_write_checksum: sha1:f193752cc75f9595d734fbbad947368df090d3e6
pristine_git_object: 96adc3039b70b573af643e507090f2eb9fc9ef75
- src/Cvent/SDK/Models/Components/ChoiceJson4.cs:
- id: e6a0ec822aa3
- last_write_checksum: sha1:1789b85868627ce41767593158be02e55123d8c0
- pristine_git_object: 6e20bbfac8cfd7d227acc2bb1bf5c964f97f095d
- src/Cvent/SDK/Models/Components/ChoiceJson4Input.cs:
- id: 43cd9e49f9bb
- last_write_checksum: sha1:3d323a4bf5252ba555c574471acac78e7f2be4cc
- pristine_git_object: 05ba3e148dd0d84f62afd7edf4e0f79a114be910
+ 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/ChoiceTranslationJson.cs:
@@ -11051,7 +10921,7 @@ trackedFiles:
last_write_checksum: sha1:8e56b809897d4ce2d566c3f1cadc0287bf694b04
src/Cvent/SDK/Models/Components/Choices.cs:
id: afdf64e85049
- last_write_checksum: sha1:0c9310ded118ec172c8256776487ce5daaec8ebe
+ last_write_checksum: sha1:74530f10717915a0dc2082f6175fe4dc073a613a
pristine_git_object: 4702e9f12322c3c41ce09210821083bfc63543cb
src/Cvent/SDK/Models/Components/ChoicesDisplayTypeJson.cs:
id: 867f257ee1c6
@@ -11077,14 +10947,24 @@ trackedFiles:
id: 765f1b5fef55
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:b9b66eb57914bdcad807ee6f93428d2e8f32d8ea
+ last_write_checksum: sha1:25781cbcbdf6a10045d87f32be130611dd24bd49
pristine_git_object: 3670e9421ae0d7d354edffa37d26df4ff9161f4c
- src/Cvent/SDK/Models/Components/ComplianceScope.cs:
- id: cde36adda045
- last_write_checksum: sha1:da529d25616dac1d348045a9cf790f76a3b275e6
- pristine_git_object: aada889745ac3e2fd7239db9523c315bcab79581
+ 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
src/Cvent/SDK/Models/Components/CompositeValueJson.cs:
id: d2fdd79333a7
last_write_checksum: sha1:8da1105c5da6bc8e367719b9b0a6dfe3e3d86e2c
@@ -11201,14 +11081,12 @@ trackedFiles:
id: 44ef608704ec
last_write_checksum: sha1:38c1ec87cc9ddd1b41b52e5ed9bd20737268a6cf
pristine_git_object: d4774a9f6adbdee4d545d73f83160a189d4ba7e4
+ src/Cvent/SDK/Models/Components/ContactLinks.cs:
+ last_write_checksum: sha1:fbf36cfcaaa0d2845fd1b923c5d43a25720184c3
src/Cvent/SDK/Models/Components/ContactLinksJson.cs:
id: 07a4c61e991c
last_write_checksum: sha1:60e202e66f09afc644f9151920bc6d0af6c18365
pristine_git_object: ec35c0bdaf8752f872858acaf32ad6ccec93a7aa
- src/Cvent/SDK/Models/Components/ContactLinksJson2.cs:
- id: 83ce06cf8870
- last_write_checksum: sha1:2ce6b37a05423bb3c7912dd2766cd3521273f37b
- pristine_git_object: 7ad5caa4bcde7c47fdd2415f269da455562ec75a
src/Cvent/SDK/Models/Components/ContactLinksJsonInput.cs:
id: 60deb552952d
last_write_checksum: sha1:7465fe54ec5e1b7139dc4e13c671c9ae7893e53d
@@ -11315,10 +11193,6 @@ trackedFiles:
id: a26af38a9139
last_write_checksum: sha1:b484322952838a4579686443a296600385bc341a
pristine_git_object: 6d3180f7054b7cf603edb689a25ffdb72de07c9a
- src/Cvent/SDK/Models/Components/CreatedBy.cs:
- id: 4f1c3d6fab03
- last_write_checksum: sha1:2b417db063d4c2d10abcda43ffeac396b41ac1e4
- pristine_git_object: b32b6b2c1f7fd4efdc08c859e924dc1e036ac282
src/Cvent/SDK/Models/Components/CreditCardRequestJson.cs:
id: 8714f7d6070c
last_write_checksum: sha1:e0b80bec4e6223ea6b2f01f3d379a420e0df73cf
@@ -11455,6 +11329,8 @@ trackedFiles:
id: 6ce26081f5de
last_write_checksum: sha1:508614b3276c52bf01698eeedd247e10c6d91ab2
pristine_git_object: 7d3bfa42f5847b6ca39df07807fb8b4d2d4aad7c
+ 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
@@ -11547,21 +11423,17 @@ trackedFiles:
id: 366544203df2
last_write_checksum: sha1:fb5e5aa4053392e9dfd826c4633dffcd8039200e
pristine_git_object: 63f03d513b5d2b948191ebe6cef3c52232fe6994
+ src/Cvent/SDK/Models/Components/ELiteratureDocument.cs:
+ last_write_checksum: sha1:8015ccdc9f88f90249a19eadb64528cfdad6d988
+ src/Cvent/SDK/Models/Components/ELiteratureDocumentType.cs:
+ last_write_checksum: sha1:3ee0331ac2beb5e69c73a8df32aeb829354c1b27
src/Cvent/SDK/Models/Components/EarlyBirdPricingJson.cs:
id: 502e5b5ff4ce
last_write_checksum: sha1:851b60143665ee1b43e15e387e18b2c40bc1c58a
pristine_git_object: bff34fa593a86dd0ffbdcd1219eb1f3aaacbf852
- src/Cvent/SDK/Models/Components/EliteratureDocumentJson.cs:
- id: ffccdb0f648c
- last_write_checksum: sha1:d29cea8130dd673d9a44b02452559c6cd5e81a56
- pristine_git_object: 2262f0bbef7fd187a224bb7abe1f29111a4911ac
- src/Cvent/SDK/Models/Components/EliteratureDocumentJsonType.cs:
- id: 92e8a3e1e75a
- last_write_checksum: sha1:9b11ed1a20b6c07935074153571954f3eb33c85b
- pristine_git_object: 06c187de5726be5c8d4b0b60b0c581933c7644a7
src/Cvent/SDK/Models/Components/EliteratureRequestPaginatedResponse.cs:
id: 57608ae3a4cb
- last_write_checksum: sha1:9f09f7e90c031b37e7b7c55cfab3ac4ac9e3995a
+ last_write_checksum: sha1:88e37ba4d2b2b6d453c93a69905c86ef4c1ee926
pristine_git_object: 64e992521e9f21cf3e8680e817d6f1d958b2d61c
src/Cvent/SDK/Models/Components/EmailBounced.cs:
id: e8eb119a31b1
@@ -11671,6 +11543,8 @@ trackedFiles:
id: a7abb448b71a
last_write_checksum: sha1:529f70618699b49c7fec0482c649219e5479c3c7
pristine_git_object: f991ce4485644af4bb56ad9daf2c467ef70ee64d
+ src/Cvent/SDK/Models/Components/Event1.cs:
+ last_write_checksum: sha1:130e732fbd762355a15726efb38b6f3eb5b01e39
src/Cvent/SDK/Models/Components/EventActivityDetailsJson.cs:
id: 6b2f1b56e3c0
last_write_checksum: sha1:de430e4d1c65d115c9cafd5a0915048a1e7f9410
@@ -11721,7 +11595,7 @@ trackedFiles:
pristine_git_object: 23189545e792e1e3618b62a36b8650d08d8b73f7
src/Cvent/SDK/Models/Components/EventBannerLinkClicked.cs:
id: ecb07c317851
- last_write_checksum: sha1:4294f70edc741ab9efeb965699d62ff2e7a794a0
+ last_write_checksum: sha1:cf565a0a26644f388412a0857e0ba80599b01781
pristine_git_object: e24796e68eeef0f78284bfc3d6f522033da9a2b2
src/Cvent/SDK/Models/Components/EventBudgetCostDetailJson.cs:
id: e67d319c755e
@@ -11769,11 +11643,11 @@ trackedFiles:
pristine_git_object: d8e2d2d12d2edff5a68a653b6e9cae45ad106e8b
src/Cvent/SDK/Models/Components/EventEmailsPaginatedResponse.cs:
id: aaa70e2734ee
- last_write_checksum: sha1:0bac44ff81d72b78b17f349703c4856c2fb061c3
+ last_write_checksum: sha1:c7ef2af95cd5fd778a1b33de78362fb56b7d1cc4
pristine_git_object: f58f48ea2e6fcdcbca846c008098171f822cb3d1
src/Cvent/SDK/Models/Components/EventFeatureJson.cs:
id: 39abe96ad94a
- last_write_checksum: sha1:110b06bb2c82ed8b1fc116093a4829b863bbefc8
+ last_write_checksum: sha1:fa03d800d54b6edc7b8f6ad58c5675c7fea7027f
pristine_git_object: e105d8e41d943e9ad1de8e1aec0f035cd868a3a2
src/Cvent/SDK/Models/Components/EventFeatureJsonConfig.cs:
id: f0a579485d62
@@ -11789,7 +11663,7 @@ trackedFiles:
pristine_git_object: 0c385bad125bc90370e4519100ba0eb5b3b267dd
src/Cvent/SDK/Models/Components/EventFeaturesResponse.cs:
id: 5248c9e27358
- last_write_checksum: sha1:90505504511b6b15a8e036ddff7812d1d1549623
+ last_write_checksum: sha1:7a37905bb6d2fbaa7d3e2be67f2320eecd277e32
pristine_git_object: 828bff45e6aaab20dfb4f8434d141c9959b5f4b2
src/Cvent/SDK/Models/Components/EventFeaturesResponseConfig.cs:
id: eb7fc4d6f868
@@ -11815,22 +11689,18 @@ trackedFiles:
pristine_git_object: 214e9243d63d3a651530776f55bc931ffdd5e879
src/Cvent/SDK/Models/Components/EventJson0.cs:
last_write_checksum: sha1:06464fc20f392cee9d59b2e21018257f2928a79a
- src/Cvent/SDK/Models/Components/EventJson11.cs:
- last_write_checksum: sha1:7fbbe9da70015ce01aeb62b58b5f41595335f7db
+ src/Cvent/SDK/Models/Components/EventJson2.cs:
+ last_write_checksum: sha1:59dae6548580afe338c910198d734186f96f7ad8
src/Cvent/SDK/Models/Components/EventJson3.cs:
id: 70045b7ff64d
- last_write_checksum: sha1:47bac708f330dae22542328214f7eb84f6b000db
+ last_write_checksum: sha1:ca81c882164bd684bd10e4289bad6642b15f31f6
pristine_git_object: e9bbbf49968356c894de43eced608f7f445ed61f
- src/Cvent/SDK/Models/Components/EventJson4.cs:
- last_write_checksum: sha1:a1042851feffe77226f4f2767dafc0551d851838
- src/Cvent/SDK/Models/Components/EventJson6.cs:
- id: 4cdcb08553b0
- last_write_checksum: sha1:1d227be79a9003c3bce98fb0e2741afdd60cdefb
- pristine_git_object: cf33a35485c6481fd4a27c6acdb8269f65c73a8e
+ src/Cvent/SDK/Models/Components/EventJson5.cs:
+ last_write_checksum: sha1:f562bd8b6cd392157070c709f360fbd908e9c581
src/Cvent/SDK/Models/Components/EventJson7.cs:
- last_write_checksum: sha1:862ed1beb08c1b4918bcfe5ce63a11766b8a14a1
+ last_write_checksum: sha1:c598c00f9bcbe24acf7090cc20d90f608a72d45b
src/Cvent/SDK/Models/Components/EventJson9.cs:
- last_write_checksum: sha1:7bd0c03df0faca770e949c5f213c6262615f0042
+ last_write_checksum: sha1:215c978a56e8719551ecfe998007a2b1da73b590
src/Cvent/SDK/Models/Components/EventLinksJson.cs:
id: c257825bf07a
last_write_checksum: sha1:a75b356f65d153cea5b2abee810f9618a2abad8e
@@ -11943,7 +11813,7 @@ trackedFiles:
pristine_git_object: e6cc9528e07b9eee9ae21c5579a64611160e31ae
src/Cvent/SDK/Models/Components/EventSurveyQuestionJson.cs:
id: c403f1c579c2
- last_write_checksum: sha1:a977a2630b0e7c432b3160e73d4015b0cd7d7f40
+ last_write_checksum: sha1:7366d79419c10b41e6b3be33d8ac5df50e18a98b
pristine_git_object: 592ecf2945aee4d64b42e8b06bcae99f4a9173a4
src/Cvent/SDK/Models/Components/EventSurveyQuestionsPaginatedResponse.cs:
id: 2104f002c5de
@@ -11951,7 +11821,7 @@ trackedFiles:
pristine_git_object: 52b3bd84d543f0c6e4b042055b9b53ed2874a3a0
src/Cvent/SDK/Models/Components/EventSurveyRespondent.cs:
id: e00e675b4e0c
- last_write_checksum: sha1:ef7bf792f849f4a82f049e613acf2cc1e2a85866
+ last_write_checksum: sha1:5da3d75db43274558b3bfcca76b988466c60e2bf
pristine_git_object: ebd2c02b353d118b0d4e3da4699a4f0ce2f5ae1a
src/Cvent/SDK/Models/Components/EventSurveyRespondentAttendee.cs:
id: dafe508009f2
@@ -11975,11 +11845,11 @@ trackedFiles:
pristine_git_object: 9e17421739d9f608acb9d9e4f970bf504a2945ee
src/Cvent/SDK/Models/Components/EventSurveyResponse.cs:
id: 69b8df579c6e
- last_write_checksum: sha1:ed941963de48d1fffae67c1256d2205dff504fb3
+ last_write_checksum: sha1:f9f410abad4123df212c51cf4b1c532172c5290a
pristine_git_object: 046cf4941e33df73ab9e0a99170068320897c913
src/Cvent/SDK/Models/Components/EventSurveyResponseInput.cs:
id: f6f26d98387d
- last_write_checksum: sha1:05cc042937269cba1fc7b4e3b3a92d51f0ab0731
+ last_write_checksum: sha1:a5041e33e7e9f54d4419142c1f81ac699d4d703f
pristine_git_object: 14aae65fd5b093b6b208aa5f8aafa92422d0ae5a
src/Cvent/SDK/Models/Components/EventSurveyResponseUUID.cs:
id: "882355924e89"
@@ -12037,37 +11907,31 @@ trackedFiles:
pristine_git_object: e1aee4ed522a834516ca26b0e779a07ba883b23f
src/Cvent/SDK/Models/Components/EventWeblinksPaginatedResponsePaging.cs:
last_write_checksum: sha1:c85a7cb45cf88479d030f6d45aef7c7a882d40d8
- src/Cvent/SDK/Models/Components/ExhibitorAddressJson.cs:
- id: 65c435274a5d
- last_write_checksum: sha1:db0ad95623d91f68fc5a17e382365b07b4994b89
- pristine_git_object: bc3a28ae9acafe4861ab9c508966d4f85936bd9e
+ src/Cvent/SDK/Models/Components/Exhibitor.cs:
+ last_write_checksum: sha1:707bc65440220e71e96b62ea3ea1cab080c23554
src/Cvent/SDK/Models/Components/ExhibitorAdminRequest.cs:
id: dedfd8476d1f
- last_write_checksum: sha1:dc9585a5093e19e0d87e6ccecaa064b5f959face
+ last_write_checksum: sha1:341aee22ee35efd776aa7f98d41a3ca715c8454e
pristine_git_object: aca7ffa23fbaac0b4a3629c73b6fa83d487ff725
src/Cvent/SDK/Models/Components/ExhibitorAdminResponse.cs:
id: df6e15b728c7
- last_write_checksum: sha1:ca00bbd78729cf613d4879d067e3df99e2f21b9b
+ last_write_checksum: sha1:8b191e58f08ea897c315d0e87fdf84d70abbd64a
pristine_git_object: f71e6fe57682bef6f1243a0df6b1d8342e5a127b
src/Cvent/SDK/Models/Components/ExhibitorAdminsListResponse.cs:
id: c71145954100
- last_write_checksum: sha1:0844ac0c173fa8b1f23f54d75f5499d159d4f1f2
+ last_write_checksum: sha1:d943f50a17c8f56d0471fb021667abe40b015f43
pristine_git_object: 222fbc9f5fdaf2545ce6bcacfb29e20ed9fad6c7
- src/Cvent/SDK/Models/Components/ExhibitorAnswerFormatJson.cs:
- id: b9e4ac2dee51
- last_write_checksum: sha1:ca713e80046b35139f389194a640c75b88a9ba95
- pristine_git_object: 698a3b04caeb9b23ede23b6e42f9ad06870d602a
- src/Cvent/SDK/Models/Components/ExhibitorAnswerLimitsJson.cs:
- id: 7b6259df6486
- last_write_checksum: sha1:967432a0182b7ba01bcf0e0cea1c049fad6bc94d
- pristine_git_object: 9296a9991b97b2e3e379caa990e72831483e3907
+ src/Cvent/SDK/Models/Components/ExhibitorAnswerFormat.cs:
+ last_write_checksum: sha1:dfc304fc18521fca0c6fb1e77ab266b966e7415c
+ src/Cvent/SDK/Models/Components/ExhibitorAnswerLimits.cs:
+ last_write_checksum: sha1:a672155e69891e003fef1f1986b0d442421784cf
src/Cvent/SDK/Models/Components/ExhibitorAnswersRequest.cs:
id: 5b5e2e259e0e
- last_write_checksum: sha1:9673e0ad5ecec92c548e753e20d4c59bd03df39f
+ last_write_checksum: sha1:6039b6d0a589fd3a2e430153b9d7d4a540c69d82
pristine_git_object: 5c8716fcfad2ede49d7a1c8e089b958247991a1e
src/Cvent/SDK/Models/Components/ExhibitorAnswersResponse.cs:
id: e213e1764222
- last_write_checksum: sha1:d331dbfa44edf6a6621c9224b3dcade5c59c181f
+ last_write_checksum: sha1:b50e9749fc0d4a55eae4cfa27eb1924daa640bf6
pristine_git_object: b4cb06dd2bedb5925b00cf134a74a3320a78794a
src/Cvent/SDK/Models/Components/ExhibitorBannerLogoFile.cs:
id: e8b48cd78da8
@@ -12079,7 +11943,7 @@ trackedFiles:
pristine_git_object: ed079f06fea745961ccffecf6d83817a2c1ba30b
src/Cvent/SDK/Models/Components/ExhibitorCategoriesPaginatedResponse.cs:
id: e1fcf8271e15
- last_write_checksum: sha1:6dace2afaeb9d9f7f059c7fc445257cd575633d1
+ last_write_checksum: sha1:8bc51ad9daeb8885128bd7039e8735a78e061c28
pristine_git_object: 6dff04991f5583bf39a0814dd2b643e404ba2d07
src/Cvent/SDK/Models/Components/ExhibitorCategoryBannerFile.cs:
id: 44391351dd14
@@ -12089,17 +11953,15 @@ trackedFiles:
id: a721d6875d4c
last_write_checksum: sha1:4b79a50e5b09d7ba3d0d5decf6a9fb2589680730
pristine_git_object: 9e8fb6973ca163f09d3608ded18742dcb9ac0182
- src/Cvent/SDK/Models/Components/ExhibitorCategoryIdJson.cs:
- id: ae323ee84aa5
- last_write_checksum: sha1:b18c57529b5cb94a9c00a4bcdab211624fe6d3ba
- pristine_git_object: e313225883242b9c68062d4be477c6cd94ac1bae
+ src/Cvent/SDK/Models/Components/ExhibitorCategoryId.cs:
+ last_write_checksum: sha1:c7e0b4c8718d6c11552cc021eca36e536aa10521
src/Cvent/SDK/Models/Components/ExhibitorCategoryIdListResponse.cs:
id: ba1d266fe7b4
- last_write_checksum: sha1:7dac201f6428b2f03399335f68aaee34fdd54d53
+ last_write_checksum: sha1:b601c71c7eacb2938b86df49afc8517f72588bcd
pristine_git_object: 6b373eda308666a820f0eb513c68b64337fc5854
src/Cvent/SDK/Models/Components/ExhibitorCategoryRequest.cs:
id: a2ac410fe099
- last_write_checksum: sha1:5f6242736caab3a1a24ea613087c5c7d9aa00c1b
+ last_write_checksum: sha1:8cac09578211f88c77a413a6ed1780230a80e20b
pristine_git_object: 745440274e17593d664edf866f836644b0b160eb
src/Cvent/SDK/Models/Components/ExhibitorCategoryRequestType.cs:
id: 4ffbc1c8b7f9
@@ -12107,7 +11969,7 @@ trackedFiles:
pristine_git_object: e8f50ed7c64b53002e8b048d753b28a940cbf975
src/Cvent/SDK/Models/Components/ExhibitorCategoryResponse.cs:
id: bae5aa408e9d
- last_write_checksum: sha1:d39fa43541d4ad667dae376954369771d356d3b2
+ last_write_checksum: sha1:d5427871f95d4af4e650c3e68ef15c29b1c4b9ab
pristine_git_object: 242e55375b82c139bb2fa880779737e20e249438
src/Cvent/SDK/Models/Components/ExhibitorCategoryResponseType.cs:
id: cf846840e905
@@ -12115,59 +11977,51 @@ trackedFiles:
pristine_git_object: cb43ecf5dc42d3ab42e9e264ac2b9dc636f33741
src/Cvent/SDK/Models/Components/ExhibitorDocumentOpened.cs:
id: 1e2cdb87017d
- last_write_checksum: sha1:b4681e091b8afb186490a44c776208fe9b5430c5
+ last_write_checksum: sha1:d0f33471cdfc44fa498bfd5d616cf4e55ba1b9b7
pristine_git_object: d521e4e2f6281b735870d8ebc8a48929e0783770
- src/Cvent/SDK/Models/Components/ExhibitorIdJson.cs:
- id: 87ba46a414f2
- last_write_checksum: sha1:2dfcf9b134af02f5693da15e2e0e961c8feed566
- pristine_git_object: ae01991d8204bc98e042a253855436467e60b3d1
+ src/Cvent/SDK/Models/Components/ExhibitorId.cs:
+ last_write_checksum: sha1:ef6bf67ffad383fc5c8d00a14092098a8a7134ce
src/Cvent/SDK/Models/Components/ExhibitorIdListResponse.cs:
id: 4fbd2ae2e860
- last_write_checksum: sha1:ca109afc18437652f1fecc70c37b7fa7815bc58f
+ last_write_checksum: sha1:ea9002b81449d4d5037a8d710636193220fab8b5
pristine_git_object: 1a8b9f4768d44a6deb72995076d1e50af95b6346
src/Cvent/SDK/Models/Components/ExhibitorJson.cs:
id: bf9f320cfd18
- last_write_checksum: sha1:0629af3d0de53c27ec9ea9e641ef72851be397b2
+ last_write_checksum: sha1:e5e96ed68084e21142bf7336a08f620063168b39
pristine_git_object: bdd4d24fad4596261b7a337c1d5b465a2ef2713f
- src/Cvent/SDK/Models/Components/ExhibitorJson1.cs:
- id: 3cecbfb3427d
- last_write_checksum: sha1:5843bdd7daa7fb46d151f95af33c1cf383e5feda
- pristine_git_object: 46b3a15dceebc988df1f5461a1b1b41d0e4203b7
- src/Cvent/SDK/Models/Components/ExhibitorQuestionTypeJson.cs:
- id: fa54b86ee226
- last_write_checksum: sha1:2c654f8800738fbf5bc4dfefd0dadf94713667d1
- pristine_git_object: 6b85eaa1634e00f41cc21c58aa386fec3f53597e
+ src/Cvent/SDK/Models/Components/ExhibitorQuestionType.cs:
+ last_write_checksum: sha1:f6c3bde449d26bb5cb1f851af9dde22405389aae
src/Cvent/SDK/Models/Components/ExhibitorQuestionsResponse.cs:
id: 6ecdc5d2d0f7
last_write_checksum: sha1:5f54839818e5b8604889aeec91615a41554ac301
pristine_git_object: e0597a608ce88478ff24332c46d64a1bc6e415d2
src/Cvent/SDK/Models/Components/ExhibitorRegistrationPackListResponse.cs:
id: 127b119ffc5e
- last_write_checksum: sha1:5bbb9136dd3a2fccbb4dc3cfb256d8b9a0cd56af
+ last_write_checksum: sha1:7b00fb9ff3d3c6c8772eb7b5d570f25983a71d05
pristine_git_object: 59eebd497e809f65cae3a2f6391eb0425b14123a
src/Cvent/SDK/Models/Components/ExhibitorRequest.cs:
id: 3098250aec03
- last_write_checksum: sha1:8ab5bb7cdd28ab321e2845169d36c0fbf920b2e3
+ last_write_checksum: sha1:d2a65381215862e6a33ce5924678c5a2f26989c4
pristine_git_object: 972cbe8a3b519ddf720158216131e98801d090fe
src/Cvent/SDK/Models/Components/ExhibitorResponse.cs:
id: 534de41880d9
- last_write_checksum: sha1:a221598add265cf90dca641d277a4172cc304dd1
+ last_write_checksum: sha1:40cf6146e5445f1f272f8e7e4f2d6f9c79f848c8
pristine_git_object: f605aa98c00a95ba721969836335b16ece306e0a
src/Cvent/SDK/Models/Components/ExhibitorSocialLinkOpened.cs:
id: c37adb32bd51
- last_write_checksum: sha1:30ea06b3b5fcea23c795abc2b98ba6eacb7c7702
+ last_write_checksum: sha1:7353b04d42da858099210ef772dacf4f4ad02a22
pristine_git_object: 19421b81911e434c18be71b569dc125d2d8e8ae2
src/Cvent/SDK/Models/Components/ExhibitorViewed.cs:
id: cc7afc4e4828
- last_write_checksum: sha1:de1fb18039244205777a8875b8ade85ef690ec3f
+ last_write_checksum: sha1:e5286b68b91ddb54816c7a7dd3e9ffa61c458479
pristine_git_object: ece3632915f49193214c081b0859aa7932d76528
src/Cvent/SDK/Models/Components/ExhibitorVirtualBoothJoined.cs:
id: f14c5e9f24ad
- last_write_checksum: sha1:3f36d2a751b878317d3f0439961a8d223f57d637
+ last_write_checksum: sha1:420dd181742a2e4e9a44c795767d823d81063b55
pristine_git_object: d9e5be139363191f3c3831289afff7975d848cbb
src/Cvent/SDK/Models/Components/ExhibitorWeblinkOpened.cs:
id: ea1f26c6bdf8
- last_write_checksum: sha1:69ccc5c158c95bd11a41b2ca9fdd3ef8b4910db1
+ last_write_checksum: sha1:4f2b473fdc792df2e8644fcb56fe33c8722985e2
pristine_git_object: 7f32d889e1e27ef1f33792a3e57d4502bf20fb2d
src/Cvent/SDK/Models/Components/ExhibitorsEventCopyOverride.cs:
id: a6b78e8cb124
@@ -12175,7 +12029,7 @@ trackedFiles:
pristine_git_object: 89d4428b2315b0127cc44015ed21864665883f7d
src/Cvent/SDK/Models/Components/ExhibitorsPaginatedResponse.cs:
id: 6ab07e7a4736
- last_write_checksum: sha1:135d70cbd6cb40c90ef65cfe6b9b28a1d5574de2
+ last_write_checksum: sha1:62eab07c46e514069689848a0a911e4c40443ebf
pristine_git_object: 46ef39ffee0b7f7c8197e3ca71901b835e940fa3
src/Cvent/SDK/Models/Components/ExistingAdmissionItem.cs:
id: 877239d0ec8c
@@ -12191,7 +12045,7 @@ trackedFiles:
pristine_git_object: dab4ffe1a2f15db3e4c0b5b738e04a6da852d8c7
src/Cvent/SDK/Models/Components/ExistingAudienceSegment.cs:
id: 14998b71cf4f
- last_write_checksum: sha1:68b58ba61bfb42c5b541cb6a6161a99ad3f0f692
+ last_write_checksum: sha1:fdf986915312fcfa6ec7284bb2909b2443ae61dd
pristine_git_object: bff0b37736670ed7c97e9d5f6a8dce2a08064139
src/Cvent/SDK/Models/Components/ExistingAudienceSegmentCreationTypeJson.cs:
id: 50184f7e471e
@@ -12209,18 +12063,10 @@ trackedFiles:
id: 5d505ed454c2
last_write_checksum: sha1:18e3416c2135c8986c845b68ca7ac1e8ef3fac96
pristine_git_object: d9e449812b49dc6f44788a3c85f4f3988e83d7b6
- src/Cvent/SDK/Models/Components/ExistingBoothStaffJson.cs:
- id: 22f5b50db388
- last_write_checksum: sha1:404358443bcda4ecbf0366ef05a4fb7d09cf870f
- pristine_git_object: 9d68205059752c992b5389ebb469052df06d507c
- src/Cvent/SDK/Models/Components/ExistingCapacityJson.cs:
- id: f6186968451c
- last_write_checksum: sha1:ffb679d9f9527b6f826ae4df52128f30260f1e83
- pristine_git_object: f56989b12161d7b4b9487aef55a4ff7fabc836a4
- src/Cvent/SDK/Models/Components/ExistingCapacityJsonRegistrationType.cs:
- id: 7ceaeea65656
- last_write_checksum: sha1:ce8f41bb77dba7ede909a3e4aea081c6e4a5e07e
- pristine_git_object: 5443f9778d4da32c0ab7e982153719bebd44100a
+ src/Cvent/SDK/Models/Components/ExistingCapacity.cs:
+ last_write_checksum: sha1:3d2d9a6170a85074b648ac46e80d347f8eeb8bf2
+ src/Cvent/SDK/Models/Components/ExistingCapacityRegistrationType.cs:
+ last_write_checksum: sha1:c01857b2d9c009bedef08cafb31f72cc849cab22
src/Cvent/SDK/Models/Components/ExistingCustomField.cs:
id: 90eb23a61acd
last_write_checksum: sha1:08db44e4a6380ff3727fd95d00a4907160fd3511
@@ -12265,77 +12111,39 @@ trackedFiles:
id: 4045def7aa59
last_write_checksum: sha1:06c60925b2e21413bcb0031a506072156b3a5d9c
pristine_git_object: f15f0d5eace596bd5f1bee82d038e73501206520
- src/Cvent/SDK/Models/Components/ExistingEliteratureRequestDataJson.cs:
- id: 7131d99142f4
- last_write_checksum: sha1:427d03d8d5f8a0bd72bf09ad21c15d9ac3f11b63
- pristine_git_object: f467ce6306179a4d06b04afe7285a892d46ca4ff
- src/Cvent/SDK/Models/Components/ExistingExhibitorAdminJson.cs:
- id: accaefed3032
- last_write_checksum: sha1:a20f606f89af05fdc5d7f07af40ea63122152b61
- pristine_git_object: 418498de2b647ae25e7562ab0b3316f28da06ac3
- src/Cvent/SDK/Models/Components/ExistingExhibitorAnswerJson.cs:
- id: 9919a0e51e94
- last_write_checksum: sha1:6570855f0bb78de0b1178b6c4a1d55a1566d1195
- pristine_git_object: 5257fe5edd66348c396b3775539bca73d55100c2
- src/Cvent/SDK/Models/Components/ExistingExhibitorAnswerJsonInput.cs:
- id: b3f4b852fc71
- last_write_checksum: sha1:c75973d01d82ee94ae309b6e2410dc383f242d2a
- pristine_git_object: 7055e3864e4fcc502a18f5136ec17ace62253f90
- src/Cvent/SDK/Models/Components/ExistingExhibitorCategoryJson.cs:
- id: cc8ff07121ea
- last_write_checksum: sha1:54d25bb625a1d9cee038520def95bd8ba9892aa6
- pristine_git_object: 90f4ae6f3d8c15d8230576e3f058546f6e6e56fb
- src/Cvent/SDK/Models/Components/ExistingExhibitorCategoryJsonType.cs:
- id: 7049a2f91db6
- last_write_checksum: sha1:b34c7fb80b5450dd507d9759526c083c24a6d799
- pristine_git_object: 71f651cc89f9d2c245604a11e2a89c98b7a7edfd
- src/Cvent/SDK/Models/Components/ExistingExhibitorJson.cs:
- id: 9054575adc4e
- last_write_checksum: sha1:217dec72e25b2a2a27257bf4089a8a89764e5d01
- pristine_git_object: 511f2a835ae54d924ec4dd5e290bed9fcecda66f
+ src/Cvent/SDK/Models/Components/ExistingELiteratureRequestDataForLead.cs:
+ last_write_checksum: sha1:032abbf712373e27ec7c0f42033802f0531b6a98
+ src/Cvent/SDK/Models/Components/ExistingExhibitorAnswer.cs:
+ last_write_checksum: sha1:d8a0cd15981254a1f533fcbdbfd8e91c63044480
+ src/Cvent/SDK/Models/Components/ExistingExhibitorAnswerInput.cs:
+ last_write_checksum: sha1:729f3c957c034132fa493339294ddf950a662ebc
src/Cvent/SDK/Models/Components/ExistingExhibitorQuestion.cs:
id: 2d3fdf89b04d
- last_write_checksum: sha1:e7e30fcae0abaf1a4c985b40dde04d1d12ee1052
+ last_write_checksum: sha1:779d5d16acb6d9ce56fb54b1004fe97316ebe28b
pristine_git_object: 961eb9676acead24f86d39032db4f8733e998581
src/Cvent/SDK/Models/Components/ExistingFile.cs:
id: 4a64f440b155
- last_write_checksum: sha1:b079f540dc3822f5453ec525ccedd56aa5f48b1c
+ last_write_checksum: sha1:af0dfe44eb775dc953d9a529f8e57f37df1aff08
pristine_git_object: d2240e2220f930ff27a977e2b695971a7ad7e7db
src/Cvent/SDK/Models/Components/ExistingHub.cs:
id: 887e4731926c
- last_write_checksum: sha1:fbb7c3560634d3c8c863c7b3805bf50e60ca749c
+ last_write_checksum: sha1:e1ac4d96742dfc22f7544990f9b6f917e408da2f
pristine_git_object: 8dad8891371af62f9985920ec2ba691f284876d0
- src/Cvent/SDK/Models/Components/ExistingLeadJson.cs:
- id: b5754dfc9262
- last_write_checksum: sha1:35b103c54b89710176cfd8d38b5d7c9dad9d5ec7
- pristine_git_object: 92b9d325fc52f4aa95715f46384c6ed44c8aa95b
- src/Cvent/SDK/Models/Components/ExistingLeadJsonType.cs:
- id: eb8ef9ee666f
- last_write_checksum: sha1:df71724baec79ce35e542ce77933d8172d1f1aa7
- pristine_git_object: de7c5077e5304a2a6e257fc91bbca1f70bccde63
- src/Cvent/SDK/Models/Components/ExistingMemberJson.cs:
- id: 2863b638f372
- last_write_checksum: sha1:37286493486f2da5f5928c25f461c893f6b5eed0
- pristine_git_object: 0e2757face1d512c94ccd69eae61c6e63bb51e00
- src/Cvent/SDK/Models/Components/ExistingMemberJsonLink.cs:
- id: 6ca7e3406309
- last_write_checksum: sha1:64aac46e789cd4809db5ce4322347b490a27d96c
- pristine_git_object: 430a2ca23ca1f3c969cafb67c41cef80970b1b32
+ src/Cvent/SDK/Models/Components/ExistingMember.cs:
+ last_write_checksum: sha1:5f345d55568150a39d69f2b47a8f16568b3680a9
+ src/Cvent/SDK/Models/Components/ExistingMemberLink.cs:
+ last_write_checksum: sha1:80d8978ead67a713fe2c2aea26375aa00689d462
src/Cvent/SDK/Models/Components/ExistingPlayer.cs:
id: 1391a0f5ee10
last_write_checksum: sha1:6e17becc87ce5f562aa9e743257d0b741ecf0128
pristine_git_object: bb5de8e428ab68f4bd6f0acf27966d0fe282981d
- src/Cvent/SDK/Models/Components/ExistingRegistrationPackJson.cs:
- id: 25fcd3d3c686
- last_write_checksum: sha1:0ab22af67e88169ccf2a28e748f67aca0e6a28cb
- pristine_git_object: 592ed103f50f88f92b55b4e6c0c8742e57236381
src/Cvent/SDK/Models/Components/ExistingRegistrationPathJson.cs:
id: e0e09e0b0988
last_write_checksum: sha1:429d4e637bb0f7e36a43e623a8577b95b3cb18e2
pristine_git_object: ba024665ae9597e89c6bcf44333183ef39dc5173
src/Cvent/SDK/Models/Components/ExistingRegistrationTypeWithAssociatedRegPathJson.cs:
id: a9b0993a1164
- last_write_checksum: sha1:b3cd37ea74c8c4fd8b07438316265e0210746fdc
+ last_write_checksum: sha1:866cd732f866c25a7caa263b404ff7881edfd332
pristine_git_object: c46a07be89badf2767e4c9ba3efd9fc7c19c37e1
src/Cvent/SDK/Models/Components/ExistingRegistrationTypeWithAssociatedRegPathJsonEvent.cs:
id: eb4f0a10ea53
@@ -12391,7 +12199,7 @@ trackedFiles:
pristine_git_object: 4ae49f9bc920650bbb1e96553c365e0c1f2ad099
src/Cvent/SDK/Models/Components/ExistingSponsorshipLevel.cs:
id: ef69e47710eb
- last_write_checksum: sha1:935b4eca67020d12986736333fa038f2c2157467
+ last_write_checksum: sha1:a7ecf7478b976b623331c107774fa729aed8d61f
pristine_git_object: f7307c72852d965a236e3025548d7ea146f4df20
src/Cvent/SDK/Models/Components/ExistingTableWithSeats.cs:
id: 93aace9e468e
@@ -12435,7 +12243,7 @@ trackedFiles:
pristine_git_object: 21f8fcacd4b97b809c418f0f0d77c8311cd6f65e
src/Cvent/SDK/Models/Components/ExistingWeblink.cs:
id: 75f7cb372531
- last_write_checksum: sha1:6ebf398814e5fab3b1ce4132a44ecd2b63a005c6
+ last_write_checksum: sha1:7d5498240c2c3da70f234494aede38ba149e5dcb
pristine_git_object: 6446f6e24bf21c2db149c7cc7770e8f2dfcd584f
src/Cvent/SDK/Models/Components/Expand.cs:
id: 01ddd7cd62b3
@@ -12549,11 +12357,11 @@ trackedFiles:
pristine_git_object: a66960e45b24f458675f68201ecb3f835d3cda5e
src/Cvent/SDK/Models/Components/FeatureTypeJson.cs:
id: bdabc2b9c699
- last_write_checksum: sha1:8fd957ff1ea9254e89b6ff859bd0cb65622a068e
+ last_write_checksum: sha1:d5b2a5a0b3002d3bf62ab5de0b1e1d51c8d239aa
pristine_git_object: 47b9a66abe9171c3d437a5f3ab1df10102be5975
src/Cvent/SDK/Models/Components/FeatureUpdate.cs:
id: 3ff79bf178c9
- last_write_checksum: sha1:bfa406ba185e95db47b89b6ac13c360a53959014
+ last_write_checksum: sha1:cf393a59f996770b7c7f81f42dc30b6089ef4545
pristine_git_object: e9609feb58cf8b1d0ce801a3a2ea225c4b188fb2
src/Cvent/SDK/Models/Components/FeatureUpdateConfig.cs:
id: f10becc078b9
@@ -12573,15 +12381,15 @@ trackedFiles:
pristine_git_object: b4cacbc81af3824d608bb7328461c6d92d4e9762
src/Cvent/SDK/Models/Components/FieldJson.cs:
last_write_checksum: sha1:fd8e97868d4f3b368cb0e6863c16fd140d914e28
- src/Cvent/SDK/Models/Components/FieldJson5.cs:
- last_write_checksum: sha1:a8a54a871c8d4b0a93c537ff0627602d4246a85f
+ src/Cvent/SDK/Models/Components/FieldJson3.cs:
+ last_write_checksum: sha1:4e1e5ba1e90855dcd039015c0bc551aabee6f6cd
src/Cvent/SDK/Models/Components/FieldTypeJson.cs:
last_write_checksum: sha1:ed14ac015cb66dc78f494adca9362d1fd2c3dc3c
src/Cvent/SDK/Models/Components/FieldTypeJson2.cs:
last_write_checksum: sha1:39289760dc63074b57875443d33d112ed6031fde
src/Cvent/SDK/Models/Components/FileInput.cs:
id: a8764bcc0052
- last_write_checksum: sha1:7634332ac18e9d9d92fdb9df32fd235bd6f59c06
+ last_write_checksum: sha1:74acc3cef210ed0f2f505f0ccaaf3deefcc68488
pristine_git_object: 6655f3c69972a51305da4f319ef79d7b68a8fd4e
src/Cvent/SDK/Models/Components/FileLinkJson.cs:
id: 71c35c2ec0c1
@@ -12667,7 +12475,7 @@ trackedFiles:
pristine_git_object: 46bd5fdfe318013d95f56a47fa037b82fe82dd8e
src/Cvent/SDK/Models/Components/GuestJson.cs:
id: df372511b10b
- last_write_checksum: sha1:3a7804499aa1b71d9c2e8a449d5049342cd2b7c7
+ last_write_checksum: sha1:71e07425a27c64f6a3fec959b9cb22f5b19d9634
pristine_git_object: 3091bad4d24e2784e83cd8ce8a89c92df873e44f
src/Cvent/SDK/Models/Components/GuestRoomOccupancyJson.cs:
last_write_checksum: sha1:c11cb0495fc8833c42fa1df0cd4f01bbf6eabe76
@@ -12763,7 +12571,7 @@ trackedFiles:
pristine_git_object: 3a979eb32582484e3bb0bdfb58d954ec5fc4ccfa
src/Cvent/SDK/Models/Components/HousingEventHotel.cs:
id: b2463a95b9b2
- last_write_checksum: sha1:4bbba1b486a588944d51f7603950647a4475398f
+ last_write_checksum: sha1:30074e82da7dcc4fda2bf57cc5878bf631b97a58
pristine_git_object: 1c490dfde5ec2980fc6ded5fa695fecc85ec7c73
src/Cvent/SDK/Models/Components/HousingEventHotelsList.cs:
id: fcf56a41e3d8
@@ -12785,45 +12593,27 @@ trackedFiles:
id: ccecbf0cc408
last_write_checksum: sha1:2b216e6d978b1fbb41df0edf1f46cd685f1336fd
pristine_git_object: 0b62dfe562229f02634080af96e6c8c37b749a02
- src/Cvent/SDK/Models/Components/HubBackgroundJson.cs:
- id: 73dcfda1a075
- last_write_checksum: sha1:41e2654525d18342608f8141ea3438c2eceb3cc8
- pristine_git_object: a19a771502485ed7f2788b7c822cebb0b96cdf04
- src/Cvent/SDK/Models/Components/HubCalendarJson.cs:
- id: 3cf526bf2bfa
- last_write_checksum: sha1:8b7053088067f88b07e9f7b816a0788edfa5efcb
- pristine_git_object: 40132f0aaa0c9f663ffb97ff471a6da9cc752042
- src/Cvent/SDK/Models/Components/HubColorsJson.cs:
- id: 6365fab65d92
- last_write_checksum: sha1:8b0f6475cfe3e2b594c7c4d4b5774577a45ca9f5
- pristine_git_object: 9a5bdd7ce37831e0072cfb9ad879dde12d3835d5
- src/Cvent/SDK/Models/Components/HubFontsJson.cs:
- id: d2033cb14670
- last_write_checksum: sha1:24511aa69643bfc06c88d362a0c68332f5846042
- pristine_git_object: 8f6c723a7ce2c489b9fa100b0ccfd6e0862406c6
- src/Cvent/SDK/Models/Components/HubLoginJson.cs:
- id: 09564f9ee77b
- last_write_checksum: sha1:1f513dae9789be9607064bfcad98198f9acc3dca
- pristine_git_object: bce6b2162d7b57fca8ad855f108193a88ec6fdd4
- src/Cvent/SDK/Models/Components/HubLoginJsonType.cs:
- id: 22dd38899378
- last_write_checksum: sha1:c4a244788c4b3944f579fa0476e5e6066e0fa173
- pristine_git_object: c41281aad316adac0cc3edff740dfd8527664f81
- src/Cvent/SDK/Models/Components/HubLogoJson.cs:
- id: 0d982934bd82
- last_write_checksum: sha1:7ec70fc5032acd3fb5dd0d2daf67b53ae351accc
- pristine_git_object: 6b2410ecf86f8b6be63f231068c7c9f55ee96cf3
- src/Cvent/SDK/Models/Components/HubOwnerJson.cs:
- id: 456e8f94bff0
- last_write_checksum: sha1:e6c1241cd90f5794bc59de3658def8969c535dd8
- pristine_git_object: b3358c4aff9a01dada6c20e219df0ea8018207d8
- src/Cvent/SDK/Models/Components/HubStatusPropertyJson.cs:
- id: 55fcb080b765
- last_write_checksum: sha1:3a43de695ff55a0e99f3a988f5d1f44dc5975cff
- pristine_git_object: 3ddeeecabed9870dc99467dbb40440ab3c3dacd5
+ src/Cvent/SDK/Models/Components/HubBackground.cs:
+ last_write_checksum: sha1:d8381b5b6b966ddf720e68c405c1468980f4cfa7
+ src/Cvent/SDK/Models/Components/HubCalendar.cs:
+ last_write_checksum: sha1:e1e54e87478a1786d74ece55d61bbf6a76f21a47
+ src/Cvent/SDK/Models/Components/HubColors.cs:
+ last_write_checksum: sha1:948f6e7c2d0a91aecfaed2c5af70bb78dba34791
+ src/Cvent/SDK/Models/Components/HubFonts.cs:
+ last_write_checksum: sha1:1c42ae3452b7e2763a4f2681d53fc4dbc45014af
+ src/Cvent/SDK/Models/Components/HubLogin.cs:
+ last_write_checksum: sha1:86a4f156a693845806799fa4d6f3fb9c6dc5f700
+ src/Cvent/SDK/Models/Components/HubLoginType.cs:
+ last_write_checksum: sha1:b25449bb1ce38e8b125e77cadeaaf9bf503ce42e
+ src/Cvent/SDK/Models/Components/HubLogo.cs:
+ last_write_checksum: sha1:5969cd73a7624eff8f1fd27277630e6bcd97538d
+ src/Cvent/SDK/Models/Components/HubOwner.cs:
+ last_write_checksum: sha1:e570f64130939931fba6bc4246815fbd7a3cfccb
+ src/Cvent/SDK/Models/Components/HubStatusProperty.cs:
+ last_write_checksum: sha1:193700f5fd15069b1bd2950aa8812b1d53cbce8c
src/Cvent/SDK/Models/Components/HubsPaginatedResponse.cs:
id: 32889354e50b
- last_write_checksum: sha1:b6b3acd1d4494d2316c36efc095f57c091d4a010
+ last_write_checksum: sha1:ef49f25c7a7f2b17b155f4c5fc5fd598d3b6abeb
pristine_git_object: 239546f2d0b228b5dac10ce47f0a23f3bcc4d68b
src/Cvent/SDK/Models/Components/IdJson.cs:
id: 4fed2eb606a8
@@ -12857,7 +12647,7 @@ trackedFiles:
pristine_git_object: f58b0a390ef93b602653829a3ddc430b43fc38ba
src/Cvent/SDK/Models/Components/InvitationListPaginatedResponse.cs:
id: ab3a4f4ebc94
- last_write_checksum: sha1:1fb1361a1e01a4be10cfd753fdb4b88049d7a67b
+ last_write_checksum: sha1:321510453ed58d081b7585ca1fd9579a39d00722
pristine_git_object: 545a6e90bba086589a2857ceb73eeccfee392464
src/Cvent/SDK/Models/Components/InvoiceFile.cs:
id: 3a6aca099fb1
@@ -12905,57 +12695,31 @@ trackedFiles:
id: 0ad4abd67751
last_write_checksum: sha1:ed6739b0911576358dfebdbb8218f5367825ef56
pristine_git_object: 75eedb91b8793371c4b3b70bd5ce877b258711fd
- src/Cvent/SDK/Models/Components/LeadAddressJson.cs:
- id: 79485b0f75a3
- last_write_checksum: sha1:4756f774ff5e9a7776cbabb9ef764cc3a2f32158
- pristine_git_object: 6d688247b694fcff1e385a835db0387f9b03d0f0
- src/Cvent/SDK/Models/Components/LeadAppointmentJson.cs:
- id: 787411c3a7f7
- last_write_checksum: sha1:5198f6631fd99e2743f638fe3f9485de3616da3d
- pristine_git_object: 05437c32863ff8aa502dee894674a8f197460b36
- src/Cvent/SDK/Models/Components/LeadAttendeeJson.cs:
- id: 1d0db5235065
- last_write_checksum: sha1:effd6e5bf9f7db8eeee085cdb24e0bf70892d9a4
- pristine_git_object: dc379f5604f8f0371af01ec67f471c575781e44d
- src/Cvent/SDK/Models/Components/LeadBoothStaffJson.cs:
- id: 8f9a019bade6
- last_write_checksum: sha1:13cf6a4584680a769d8678a77c3b866c9381158d
- pristine_git_object: 42dffc91f1056279beeb68e280d1d0b49ec39f61
- src/Cvent/SDK/Models/Components/LeadDeviceJson.cs:
- id: eceb31a00958
- last_write_checksum: sha1:f3a0952ccac098987660b76e51a2c59ea734c93b
- pristine_git_object: 9b4cd2751c0397b4849739205fa63ca3e79f31ae
+ src/Cvent/SDK/Models/Components/Lead.cs:
+ last_write_checksum: sha1:ac35a7db4f039171a846561821a0f0c8ad7e8a3d
+ src/Cvent/SDK/Models/Components/Lead2.cs:
+ last_write_checksum: sha1:9069c569143bed0abf09b876cf1a32d243243cc3
src/Cvent/SDK/Models/Components/LeadInboundCreated.cs:
id: 2ba747df4b27
last_write_checksum: sha1:1ffc9ce6e42b41c4dbdabb573c73150c0afe623b
pristine_git_object: fd81b74e00af61267cdfe1b3c4d5b114cef7d55c
- src/Cvent/SDK/Models/Components/LeadJson.cs:
- id: 8e73400e0b5c
- last_write_checksum: sha1:633a418955023f618df5dc1bde72148de5f1933d
- pristine_git_object: 013b74a75253768144b4f2dbe92834b854726ef9
src/Cvent/SDK/Models/Components/LeadObjectJson.cs:
id: 881baecf4876
last_write_checksum: sha1:dbc8f836abe6e8c9d5e3a19ac17c578d015b2b81
pristine_git_object: 4553427bb5bd8cf97a9fff6ae4a94d3ed7c1c747
- src/Cvent/SDK/Models/Components/LeadQualificationAnswersJson.cs:
- id: 986ebe22bc61
- last_write_checksum: sha1:f9d32b23ba96b916ca72080a3647baa0bb5e75bc
- pristine_git_object: f752b427d543f1c0bbd492ed9e5d9b83138e5802
+ src/Cvent/SDK/Models/Components/LeadQualificationAnswers.cs:
+ last_write_checksum: sha1:6cca483513a1679f8f7cf73572c862634cc44f5c
src/Cvent/SDK/Models/Components/LeadQualificationAnswersListResponse.cs:
id: 4af96eecb922
- last_write_checksum: sha1:0c0993b202e50e4899e8cf54683dde8d90ffb5d2
+ last_write_checksum: sha1:779da8479fbf557bb51f283731f05282fbada728
pristine_git_object: 887849881903ed4f53c89add35c38fac2c2de161
- src/Cvent/SDK/Models/Components/LeadQualificationQuestionJson.cs:
- id: 98a5e272351f
- last_write_checksum: sha1:0edfc0256499613b8bea7bf2739f59f252c42de2
- pristine_git_object: 9a892970b8e7e791a8e967cb39898ff7c960c8f7
- src/Cvent/SDK/Models/Components/LeadQualificationQuestionJsonType.cs:
- id: 23a97adb3ef2
- last_write_checksum: sha1:1f6af5bb21b166f06d90e3c86768ee4c5fe9dd02
- pristine_git_object: 22d32862c93521540ad71fd6ea2841f6c6d558a8
+ src/Cvent/SDK/Models/Components/LeadQualificationQuestion.cs:
+ last_write_checksum: sha1:87b7074958c789a541074d4d481d1e352e7591dc
+ src/Cvent/SDK/Models/Components/LeadQualificationQuestionType.cs:
+ last_write_checksum: sha1:5e1db9954809c44a2763f7ddb3888bf26cd6b582
src/Cvent/SDK/Models/Components/LeadQualificationQuestionsListResponse.cs:
id: 6241e87d34e3
- last_write_checksum: sha1:e6febd5a6bb91f826105813d430acc419d51a245
+ last_write_checksum: sha1:96f62037f6b3d468350057e54765458ff1a00dd7
pristine_git_object: 1839952e5dc4e883520f7a085a68717f1e90f58b
src/Cvent/SDK/Models/Components/LeadQualified.cs:
id: d88bf1379686
@@ -12974,21 +12738,25 @@ trackedFiles:
last_write_checksum: sha1:40caeb6a0e82765d3a6e8804d1e45aab858246b8
pristine_git_object: 4221ff324bfb7116db7f6a8a6332b86abed2cce7
src/Cvent/SDK/Models/Components/LeadSource.cs:
- last_write_checksum: sha1:3090348f805fc812804722c24f996970b1b517fe
+ last_write_checksum: sha1:ca62e0c4818a03dc805dffa827b59a78d9b0fe5c
src/Cvent/SDK/Models/Components/LeadSourceExpand.cs:
last_write_checksum: sha1:f4bc3aa3fcd1bfe06d3eb17cbc2f16f3a46acb29
src/Cvent/SDK/Models/Components/LeadSourceJson.cs:
- last_write_checksum: sha1:6def34e524fa3b38a2e69d9f25eb402908da8942
+ last_write_checksum: sha1:7581f2fffeb51f6611c65f218f1b44c53b6b7960
src/Cvent/SDK/Models/Components/LeadSourceSectionJson.cs:
- last_write_checksum: sha1:6ee2a3d488d01a49744caf9da1fc8a6144235cd9
+ last_write_checksum: sha1:ba2cda23f75a76378efe351c1f1a7ee8798773a2
+ src/Cvent/SDK/Models/Components/LeadType.cs:
+ last_write_checksum: sha1:203fd7a74370acd51ac81c5f35dc427462f6ce4b
src/Cvent/SDK/Models/Components/LeadsPaginatedResponse.cs:
id: 826b1cefaeff
- last_write_checksum: sha1:f17063dc9299b4497f56ebd854d3f6a38f3c6eb8
+ last_write_checksum: sha1:04fadda0f2e68c4f8cee10c9adb43d28d375e119
pristine_git_object: 4a206033b23d30ec3cd005aa8a4cad7cf0e52bb0
src/Cvent/SDK/Models/Components/LegDetailJson.cs:
id: 1d5755d61ef1
last_write_checksum: sha1:d7c053bd8d70e8b1aaa77b6b7444bfcf55f34bd7
pristine_git_object: 3ff1424ae5440ed93df80443d7f41c14f1e46fee
+ src/Cvent/SDK/Models/Components/Link.cs:
+ last_write_checksum: sha1:f749a6e2b0ad1d802895c061d4462ed3f5371fd7
src/Cvent/SDK/Models/Components/LinkJson.cs:
id: e086c9992bd3
last_write_checksum: sha1:1c4212133d5473a4306092005189166f5c5573ff
@@ -13067,7 +12835,7 @@ trackedFiles:
pristine_git_object: 5748b06dee16f213b8b7f06042cfa770de25e8d0
src/Cvent/SDK/Models/Components/MeetingRequestCustomFieldJson.cs:
id: 1d80764c7058
- last_write_checksum: sha1:ebfeeb8ca5c5f29dee3c74c0c1fd4a56dc6f97aa
+ last_write_checksum: sha1:71a67ba3e2f0f46b5ccfe15141ea8385a7770abe
pristine_git_object: b0f682940ad5c2944729e8ae857c79ada825baf3
src/Cvent/SDK/Models/Components/MeetingRequestCustomFieldJsonCustomFieldType.cs:
id: 5dcf1632fc8e
@@ -13091,7 +12859,7 @@ trackedFiles:
pristine_git_object: 513fab375133d70a9d92be718abf0c81dc4ec541
src/Cvent/SDK/Models/Components/MeetingRequestEvent.cs:
id: e55522c80654
- last_write_checksum: sha1:0078321f7b3366196b233f8ef7ac0c3a9dd538ae
+ last_write_checksum: sha1:d3ca2a5e54d36a889cc4ab9a1263fc3ae24ee3cf
pristine_git_object: d523c0ac7e6f17a386a8e361f4f00a953f8e856b
src/Cvent/SDK/Models/Components/MeetingRequestForm.cs:
id: 1085549e1cec
@@ -13111,7 +12879,7 @@ trackedFiles:
pristine_git_object: c34afc7e78fd167cd56530859cf8de4edd9ccb7e
src/Cvent/SDK/Models/Components/MeetingRequestQuestionJson.cs:
id: 3110877c3f6b
- last_write_checksum: sha1:52bbfbca8651ad9ca0e6236bc2d408bb011508ea
+ last_write_checksum: sha1:6c895c215e37d3dc23cd1d4216a6fb99aa880ee1
pristine_git_object: 23c7f604d3066b01a6a99415f86afac6f00f1788
src/Cvent/SDK/Models/Components/MeetingRequestUpdateJson.cs:
id: 5f011e0e4779
@@ -13293,7 +13061,7 @@ trackedFiles:
pristine_git_object: 0bc8b368a37f3a6811a9b479389432e9b1053b76
src/Cvent/SDK/Models/Components/PaginatedExistingMember.cs:
id: 87a7ef51e092
- last_write_checksum: sha1:83df770e753c924f3bd37141cab77fd6a52669f1
+ last_write_checksum: sha1:47d540ab61ae9a7d229011e825be487d50f398ec
pristine_git_object: c3d81e45a66ba1cbbb09408036c84bb6fb460c77
src/Cvent/SDK/Models/Components/PaginatedInternalDocuments.cs:
last_write_checksum: sha1:d8d4e48aa23c45e0f85248576d4d144b09ccfbc9
@@ -13311,18 +13079,20 @@ trackedFiles:
last_write_checksum: sha1:42ad64aba8fb8d727e4398aab22faba0f061b5b0
src/Cvent/SDK/Models/Components/PaginatedRfpSuppliers.cs:
last_write_checksum: sha1:82f3862dd528c82c63451464df476d4ccf68d6d9
+ src/Cvent/SDK/Models/Components/PaginationLinks.cs:
+ last_write_checksum: sha1:ef7b89b81319d380b864e3544a16b48fc0e45dd7
src/Cvent/SDK/Models/Components/PaginationLinksJson.cs:
id: 6fdd20374571
last_write_checksum: sha1:62d232de94a6aae01bdba3691666693badc0f7d8
pristine_git_object: 6bb376c3b277da8852997def4409c51486f37514
+ src/Cvent/SDK/Models/Components/Paging.cs:
+ last_write_checksum: sha1:03d12b9917983314c946f08b71ae17ff4c760ba7
src/Cvent/SDK/Models/Components/PagingJson.cs:
id: e1e47986077d
last_write_checksum: sha1:63d98dc24bbfced6dba55e5520cbe9d451149288
pristine_git_object: f150723f9c93a5e49ed3b578e37c291127af7d2e
- src/Cvent/SDK/Models/Components/PagingJson25.cs:
- id: 208b22910a58
- last_write_checksum: sha1:543762415c453390507551d23ef40aff41a4ad0e
- pristine_git_object: 1e97a1245d22c2e54624bc8b564ad0895efb55ad
+ src/Cvent/SDK/Models/Components/PagingJson23.cs:
+ last_write_checksum: sha1:689de88fc63591d2c20828e957a0a72e6bf2ce6c
src/Cvent/SDK/Models/Components/PagingNoTotalCountJson2.cs:
last_write_checksum: sha1:c6d58e3a46871c418815c51a28bdc63bf4d03fa3
src/Cvent/SDK/Models/Components/ParticipantResponseJson.cs:
@@ -13359,7 +13129,7 @@ trackedFiles:
pristine_git_object: d0342a6f8ef551625ade38a03c501770a8a22ecb
src/Cvent/SDK/Models/Components/PaymentInfoJson.cs:
id: e3591b630eab
- last_write_checksum: sha1:1feca3b9c54c80a0597ad12fe6a670a911feae62
+ last_write_checksum: sha1:a2980f8196338bf64f77f7560a7cbb78993a8ce2
pristine_git_object: 2c33f3a52afc094f165ec6e2ff5cc081fa7f8b87
src/Cvent/SDK/Models/Components/PaymentMethodJson.cs:
id: 55974b2e1a63
@@ -13515,7 +13285,7 @@ trackedFiles:
pristine_git_object: fa97e1e5c0736eac02baae6983e5dafbdfa92ea1
src/Cvent/SDK/Models/Components/ProcessFormSubmissionJson.cs:
id: 8477f4ea70dd
- last_write_checksum: sha1:fda18b3351f59fa774fc6b065cb9e0df2d3e7a8f
+ last_write_checksum: sha1:b918c9200b814b8b4f31e4ae119aa3df94fe904d
pristine_git_object: 91c135090c417c91e8efdd9865f4ca8e42cc47bd
src/Cvent/SDK/Models/Components/ProcessFormSubmissionJsonEvent.cs:
id: 363bf8b59277
@@ -13593,7 +13363,7 @@ trackedFiles:
last_write_checksum: sha1:36c571edd2f6981cddd2761b0f960cecc88f98bc
src/Cvent/SDK/Models/Components/Property.cs:
id: 31407b234935
- last_write_checksum: sha1:7a0bd7722c5a1bae4d7dca0f4192e663a8e2a3cf
+ last_write_checksum: sha1:4f6e0e90773da0983ea152016974b3607f1b99eb
pristine_git_object: 440eab46faedb49718aab3d6a6286770528b2c51
src/Cvent/SDK/Models/Components/PropertyBrand.cs:
id: 999158e9ee5c
@@ -13657,7 +13427,7 @@ trackedFiles:
pristine_git_object: 1d41f30e98bf969c09a6e1e5c74718f253345439
src/Cvent/SDK/Models/Components/PublicUsagePlan.cs:
id: 4936d6777258
- last_write_checksum: sha1:cd82e622ad124f365da6ee6e586b090a9375962a
+ last_write_checksum: sha1:ceccdcdf704b11fc4c699727c9fc84ba6131f120
pristine_git_object: 137423daf3cdfd773bf839fac18aa523f2cc560b
src/Cvent/SDK/Models/Components/QuantityItem.cs:
id: 3d732f40c909
@@ -13699,7 +13469,7 @@ trackedFiles:
pristine_git_object: 99250e31668a5d45b7f20b8d30c27cad7238ed65
src/Cvent/SDK/Models/Components/QuestionJson2.cs:
id: 19e158124d27
- last_write_checksum: sha1:e508c87254db6f456f5d33cf3a6d8c51fd233f6d
+ last_write_checksum: sha1:b893cc14faa464f111440feab7b3dcd9281ee88e
pristine_git_object: e0cca70630059f54599089a684b0f0d9009d27a2
src/Cvent/SDK/Models/Components/QuestionJson3.cs:
id: d14528bdd356
@@ -13719,7 +13489,7 @@ trackedFiles:
pristine_git_object: b6836855facdb8933cbea55390c0c7a226c2d2ed
src/Cvent/SDK/Models/Components/QuestionResponseJson.cs:
id: bbb93ec8630b
- last_write_checksum: sha1:40f60ce9fd598d21198b23b63a0e20e4c29d302d
+ last_write_checksum: sha1:065300d7ef519ff099296c57d75a85fd0815b05b
pristine_git_object: 9961efb09a1f755900778e586c586008fc9646ae
src/Cvent/SDK/Models/Components/QuestionResponseTypeJson.cs:
id: b51a06bfb4c4
@@ -13831,11 +13601,11 @@ trackedFiles:
pristine_git_object: 7d4d822f267060e15222f76a6fe3470b96695706
src/Cvent/SDK/Models/Components/RegistrationPackRequest.cs:
id: d8a62ef4df74
- last_write_checksum: sha1:348f528fbc8e9c3bbc6755511c155c46e9f0cef8
+ last_write_checksum: sha1:568c9e947e7a2d19499cf9c43c391b2a5c288415
pristine_git_object: 1306287b9ff4b1528388caa7dfef660bf7ef0add
src/Cvent/SDK/Models/Components/RegistrationPackResponse.cs:
id: f1610dbeca9c
- last_write_checksum: sha1:aa90c3ffb1090abc9ff2150d4ecd4240d08148c6
+ last_write_checksum: sha1:36f631fcc929f4be431042026fa5e6e6d664058d
pristine_git_object: 7ee1d16704760667621d82a3d4b66faf584daa80
src/Cvent/SDK/Models/Components/RegistrationPath.cs:
id: 5eb628c81651
@@ -13855,7 +13625,7 @@ trackedFiles:
pristine_git_object: 999270b693182a7b34db7eef2be0759748ad2467
src/Cvent/SDK/Models/Components/RegistrationTypeUpdate.cs:
id: d21431f84b5f
- last_write_checksum: sha1:db0da51f91a2e9821454ee732732f94defed6706
+ last_write_checksum: sha1:38e1a37f8901a98e85fc8571136bf7f41369d5b2
pristine_git_object: bd42a8ccd3d843e7d5f4a06ac0f7ee0ed3e939c7
src/Cvent/SDK/Models/Components/RegistrationTypeUpdateEvent.cs:
id: 40377dfb4cb9
@@ -13863,7 +13633,7 @@ trackedFiles:
pristine_git_object: 7a8cf958d530f1074c699a9eab2f2b372eee2d94
src/Cvent/SDK/Models/Components/RegistrationTypeUpdateInput.cs:
id: aaa749c5b79b
- last_write_checksum: sha1:3670c257a59ad7fbe1ce05d7c93edd628c30239b
+ last_write_checksum: sha1:506cbc0b0484d53e3a7655eea34e3222d5ab72af
pristine_git_object: 536b5fb4f23980fdaa2dabfc201a0910d6212172
src/Cvent/SDK/Models/Components/ReportingFieldJson.cs:
id: 6f17f0af0076
@@ -13875,7 +13645,7 @@ trackedFiles:
pristine_git_object: 1311d2625c64938575268c9e2cc0fefd34621b30
src/Cvent/SDK/Models/Components/RequestedMeetingRequestQuestionJson.cs:
id: 008ff5758231
- last_write_checksum: sha1:fb81c80a9d43011e4eaa0a94ab56a74010c54ee9
+ last_write_checksum: sha1:1076b00ace581ce53cee20b847a64543617e80d8
pristine_git_object: dd76b28a2b1634eef2c6bfbf8794725e35067409
src/Cvent/SDK/Models/Components/RequesterSuffix.cs:
id: 489987417da1
@@ -13887,11 +13657,11 @@ trackedFiles:
pristine_git_object: 897d11c738c8c82b5096c77a2a9da85bae62d1e1
src/Cvent/SDK/Models/Components/ReservationGuestJsonInput.cs:
id: 12ba94291f92
- last_write_checksum: sha1:34a94d6fca9f914f2556b6f1adde72270136fb6a
+ last_write_checksum: sha1:0da9f91ec86c2f3b7f40f8cd9e0bf81015216900
pristine_git_object: 6449a37aa37d4415d86a552a8ab3dc2ff82ce914
src/Cvent/SDK/Models/Components/ReservationGuestJsonOutput.cs:
id: 58ccfabb0d94
- last_write_checksum: sha1:8a33dbd1966548c7036e235543b76839ef71de30
+ last_write_checksum: sha1:07572d02922d76f1211b07695603e9f27ce3c49d
pristine_git_object: e5e41c919175d90885b1879c390f5762dabf788f
src/Cvent/SDK/Models/Components/ReservationNightJson.cs:
id: 3e340d53eff6
@@ -13907,11 +13677,11 @@ trackedFiles:
pristine_git_object: 18694f3ba0aaaa246e8c3697ddc0f43240eef5d1
src/Cvent/SDK/Models/Components/ReservationPaymentInfoJsonInput.cs:
id: ee9385aea2e8
- last_write_checksum: sha1:c517cd40423083590161b2f21d75ae8eb0546e83
+ last_write_checksum: sha1:56f9466f06af0389a08eb59102176b29efc8da10
pristine_git_object: 6817e008079e95a4e27eac38e77abab6d31e2356
src/Cvent/SDK/Models/Components/ReservationPaymentInfoJsonOutput.cs:
id: a8399a1b9353
- last_write_checksum: sha1:2eaef635a7cbcaf6bb6f63e1555b0a15c59a68ca
+ last_write_checksum: sha1:dc504e7e8e4c0e7e14d2316ef24ad0db6c3bf006
pristine_git_object: 1fcea155f09c1a6f43c4557acba9ca62cb994051
src/Cvent/SDK/Models/Components/ReservationRequestBlock.cs:
id: "741312672891"
@@ -13999,7 +13769,7 @@ trackedFiles:
pristine_git_object: 8d5b1bb05a9b37d875451dcebaf47cb207e3010b
src/Cvent/SDK/Models/Components/RespondentJson.cs:
id: 793833df61f2
- last_write_checksum: sha1:0f76324f2603b97f3c44f92495b91339c32ff0e8
+ last_write_checksum: sha1:92c8580e38da543e368c647e72190d326107f52a
pristine_git_object: 57aad377bcecb1549f246dfe9c3dffd01bc5de0b
src/Cvent/SDK/Models/Components/RespondentJsonLinks.cs:
id: 1998098089f1
@@ -14015,7 +13785,7 @@ trackedFiles:
pristine_git_object: 8e1aad9ae437efc6a755ea578786e7c3832a56ae
src/Cvent/SDK/Models/Components/ResponseJson.cs:
id: 977d9ef12918
- last_write_checksum: sha1:d367953b779ab8b686150c557b7bc7d62dc4b08a
+ last_write_checksum: sha1:84167230e4e7f360358d20cb58ec4796808822d2
pristine_git_object: 97bcff823b0f9c96e8f27b81f244b5c4fd617f0e
src/Cvent/SDK/Models/Components/ResponseJsonUUID.cs:
id: 6ea02a9f2778
@@ -14149,7 +13919,7 @@ trackedFiles:
pristine_git_object: 21143e0a565d97dc8054293c3d452355a1c6280c
src/Cvent/SDK/Models/Components/ScoresJson.cs:
id: cfa034849620
- last_write_checksum: sha1:7fd738459c534614ba618b967286e416cc1f3b1f
+ last_write_checksum: sha1:e2d2910c8b423160f4a922c17b74425714bf981e
pristine_git_object: 720ecf93f8f3a10e7655102c6b03914386dd69ac
src/Cvent/SDK/Models/Components/ScoresJsonAttendee.cs:
id: 53d0ccf078e8
@@ -14199,11 +13969,11 @@ trackedFiles:
pristine_git_object: e1687ff624111dc142ead58cf1b773cadf19d5db
src/Cvent/SDK/Models/Components/SendEmailEventRequest.cs:
id: 8daf10636b66
- last_write_checksum: sha1:195383f1b47dfaf2e7d5e464082552f299d4350e
+ last_write_checksum: sha1:53316c356c6c93a555765bcecd05a2c09ba9c770
pristine_git_object: 853db2572182d9fd372903b1486752b009c34de1
src/Cvent/SDK/Models/Components/SendEmailEventResponse.cs:
id: "168350485296"
- last_write_checksum: sha1:d3de325e142a0b3202dad103e1cb38b859b41ecf
+ last_write_checksum: sha1:63cc9ffa587a5ff4185f15b6ee081f7f74f53947
pristine_git_object: e0f39b0034d8d94132ba57fcf356390269fe4c97
src/Cvent/SDK/Models/Components/SendEmailRequest.cs:
id: 7a49bf8d57bb
@@ -14465,10 +14235,8 @@ trackedFiles:
id: 56b479fac49c
last_write_checksum: sha1:9ab23bea3c6fb19dac327619a57073b9cfd714d4
pristine_git_object: 632f581e7927b4d9a51d87e0ea419038680b73cb
- src/Cvent/SDK/Models/Components/SocialMediaLinksJson.cs:
- id: d017b408a009
- last_write_checksum: sha1:e9e3950a93b377c80c6d99d61e3112f3e1099a37
- pristine_git_object: e59d10e0f958a359ec682479960a418fba70959c
+ 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
@@ -14563,10 +14331,8 @@ trackedFiles:
id: 2c494463a1e6
last_write_checksum: sha1:bb763e33b3ab4c24c6a24bad766f0b4643fc1ca6
pristine_git_object: c20f681c3679a2ce7b5e03496488e364cf6e4b10
- src/Cvent/SDK/Models/Components/SponsorshipLevelJson.cs:
- id: f0c04078ee00
- last_write_checksum: sha1:6325b220efc0ffc6b0fe567a8bf9030e47f8530a
- pristine_git_object: 656c119839d59553055e084abf1a1c6842408248
+ src/Cvent/SDK/Models/Components/SponsorshipLevel.cs:
+ last_write_checksum: sha1:eca39d5cdefd67de0ccea315c8a8b03f24482896
src/Cvent/SDK/Models/Components/SponsorshipLevelListResponse.cs:
id: 7d859a23e0ea
last_write_checksum: sha1:109d96e3c4ecca42952e2ae9a0f8cce4bc09f3d7
@@ -14627,7 +14393,7 @@ trackedFiles:
pristine_git_object: ebe2e80b8829e56568ed657f9e82f7db5d611734
src/Cvent/SDK/Models/Components/StandardSurveyQuestionJson.cs:
id: 2660bf0a864f
- last_write_checksum: sha1:21ecaaa3fdb4d5683e298eaada1fd528cd56434f
+ last_write_checksum: sha1:3bf87a183583ead42b90a2053fb6e6c05d36dbd4
pristine_git_object: 2dfe42af0c050c0bcee91088dc449e351c310a92
src/Cvent/SDK/Models/Components/StandardSurveyQuestionsPaginatedResponse.cs:
id: 08a9f02951a9
@@ -14655,11 +14421,11 @@ trackedFiles:
pristine_git_object: 0ef06f6d138bee6bd035fef41df7ab1a3ec4aa9e
src/Cvent/SDK/Models/Components/StandardSurveyResponse.cs:
id: 2012371a6982
- last_write_checksum: sha1:a59eff5c5f2443a17558c50fb6ff7bc489b8a0a9
+ last_write_checksum: sha1:20e516fe099718b11ff5033c82626403a9e9d7d9
pristine_git_object: ccaeeb6702166349e1461e5ac68651625b5f52fe
src/Cvent/SDK/Models/Components/StandardSurveyResponseInput.cs:
id: 3c5ae7d9cb6a
- last_write_checksum: sha1:1b53c4fd1fdda4795718ad20b0f0e1779920d86b
+ last_write_checksum: sha1:5d86b5f9d143009d3a7fa28c596a10ee0f184811
pristine_git_object: f484d9609370be0c2a6b7c9044741cfafe7ee257
src/Cvent/SDK/Models/Components/StandardSurveyResponseUUID.cs:
id: 491b9fd4fce3
@@ -14725,7 +14491,7 @@ trackedFiles:
pristine_git_object: 8664ada66439bf53326efaebe25f9fc5a3053256
src/Cvent/SDK/Models/Components/SurveyJson.cs:
id: 0453b7f475e7
- last_write_checksum: sha1:5b4f52f266a81acfa81939aeb48d73e3d5700a21
+ last_write_checksum: sha1:c3635d3ff8a3515fc978e61f7e803dc852b661a5
pristine_git_object: ff8eb76b2bf2516dfb881a1f253389ee3317b95e
src/Cvent/SDK/Models/Components/SurveyResponseJson.cs:
id: 1078e8c3ca1e
@@ -14747,10 +14513,8 @@ trackedFiles:
id: 016c84d88d94
last_write_checksum: sha1:dd75319099db8dfdee43b973198bd98184264ed2
pristine_git_object: 65f9d48c6bfd401955036ed35bb8bd36f29a0fa7
- src/Cvent/SDK/Models/Components/SwitchBackTargetUsagePlanJson.cs:
- id: 9915be63198f
- last_write_checksum: sha1:c52708e5f02063691dc66ba2665309bbe5e52d90
- pristine_git_object: 27d6f5cc6ff20a3795691fe1c603951e778d7ecc
+ src/Cvent/SDK/Models/Components/SwitchBackTargetUsagePlan.cs:
+ last_write_checksum: sha1:bef147f566089b05eb96e47f706063c50d4a1c96
src/Cvent/SDK/Models/Components/TableAssignmentJson.cs:
id: 116f4e4f12de
last_write_checksum: sha1:dd9a3ee2f462e58e327b503c69481b3d4b30ec41
@@ -14795,11 +14559,11 @@ trackedFiles:
pristine_git_object: e3303b93a0fff7108b999dc5d2fe45f5b1ccad33
src/Cvent/SDK/Models/Components/Three.cs:
id: d39398f7c8a6
- last_write_checksum: sha1:d68a7b4adff33b2bf053c254cdb6f1ac318b427a
+ last_write_checksum: sha1:4304ff851e232f59a89f324cc826a2182a3985c0
pristine_git_object: 52d7382e394c391ec9030c8077aa913a4aa97a43
src/Cvent/SDK/Models/Components/ThreeInput.cs:
id: 3077e4cbd1f6
- last_write_checksum: sha1:6ded1702a35015bb361559b239b7d3f61b7cda4f
+ last_write_checksum: sha1:2327b5c1a751236bae4fdf8377b17bae4a940af6
pristine_git_object: 373424b679f1575e8232a12260cb4ec0bd8889de
src/Cvent/SDK/Models/Components/ThumbnailStatusJson.cs:
id: 5fcbfe05b763
@@ -14891,7 +14655,7 @@ trackedFiles:
pristine_git_object: a6a68cb697816aef4b7122814a56a022bbc435a3
src/Cvent/SDK/Models/Components/TravelAccount.cs:
id: b2c6f50970e3
- last_write_checksum: sha1:f194a44b31699b7f13078bc47bb50cda80324307
+ last_write_checksum: sha1:bafaf32d28356983a35adf2eeb4b758c546e2303
pristine_git_object: 71792b1728787b875dd26b7458894cdaec3aba29
src/Cvent/SDK/Models/Components/TravelAccountPaginatedResponse.cs:
id: c99fe60e69ae
@@ -15109,6 +14873,8 @@ trackedFiles:
id: 07a74aeff37d
last_write_checksum: sha1:da78c2cf50329201840619982f7a37ad70969f55
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/UpdateAppointmentRequest.cs:
@@ -15119,17 +14885,15 @@ trackedFiles:
id: 93ba4723dc3d
last_write_checksum: sha1:447e63132e550c57713663420935f97ceaa112a5
pristine_git_object: da0986005f3ce44b992c6bc79b315f8ff4acbd9d
- src/Cvent/SDK/Models/Components/UsageJson.cs:
- id: 196287eb931c
- last_write_checksum: sha1:5522146a439afeae07b15cd5dfe46c61aaa7f96d
- pristine_git_object: b44ede5afd8324e58a4a7e0cc9029f5067d9b1e3
+ src/Cvent/SDK/Models/Components/Usage.cs:
+ last_write_checksum: sha1:42903d416b754be7959b40b6eda2be923409f8a8
src/Cvent/SDK/Models/Components/UsagePaginatedResponse.cs:
id: 0636c0955afd
- last_write_checksum: sha1:a17781ab2edd81645dd1af30430661d6c348dad1
+ last_write_checksum: sha1:c999f6cfcf786a57798928ca93116f8ec4098097
pristine_git_object: 9efbbb2495c6994f6f143ee00cfa0f113ab7afb0
src/Cvent/SDK/Models/Components/User.cs:
id: fb149dbb9d85
- last_write_checksum: sha1:407adf11a8b60728acf76792ac9ba48c9be06b6a
+ last_write_checksum: sha1:8a71e337b5af97718c91ede69a14399afe76eb4e
pristine_git_object: 015cf851009a377b2cc8b3f5321a467c99bfbeb2
src/Cvent/SDK/Models/Components/UserEnterpriseExtensionJson.cs:
id: 03a9db3848c9
@@ -15161,11 +14925,11 @@ trackedFiles:
pristine_git_object: d4efd25ae26ef7ddfa14f092a4cfff2c8f43f039
src/Cvent/SDK/Models/Components/UserInput.cs:
id: b962f663b012
- last_write_checksum: sha1:c80e3c3d59d01960da8cbebedb656deb23aaa1cc
+ last_write_checksum: sha1:492f9878abfcb3c28dc6a70df9b0977bb0225e7c
pristine_git_object: e0de743651359bba8f205117b1367bf31263e2b7
src/Cvent/SDK/Models/Components/UserJson.cs:
id: 92529acee91b
- last_write_checksum: sha1:f6243f37ed072f1cd9f377f12f722b16be53a5bb
+ last_write_checksum: sha1:f3fcb2aa4cc0dd2427ec5942fc133a8594046864
pristine_git_object: 19ecb5a5d6ec2082ecfbfd5a894acf62ceb7e390
src/Cvent/SDK/Models/Components/UserTypeJson.cs:
id: 75f942ab3514
@@ -15183,10 +14947,8 @@ trackedFiles:
id: 6e0b48e441ec
last_write_checksum: sha1:89447711c4f0c1f42f99fcb17e7e9d8d3379e422
pristine_git_object: 109fd72e7bf9b8c2cfa83a183a9a63cfae6fa213
- src/Cvent/SDK/Models/Components/UtmOverrideJson.cs:
- id: c4aaab5b9904
- last_write_checksum: sha1:9c2cc802f5da6212c5cad58056ca2ffaae2f038e
- pristine_git_object: 97bfd90e0454da00dc08dcdbe17cfe92346d13d4
+ src/Cvent/SDK/Models/Components/Uuid1.cs:
+ last_write_checksum: sha1:3f522f31622c725e0878d8d6633c543b1957a05a
src/Cvent/SDK/Models/Components/UuidJson.cs:
id: c0fad733a772
last_write_checksum: sha1:ebf851922a94235fe3c53e307c1a7e00353f0be2
@@ -15247,8 +15009,8 @@ trackedFiles:
id: ac72bfc61da9
last_write_checksum: sha1:8075dc1f19d6fcdd5b5f6e7ccb8b8c7b2a0566f5
pristine_git_object: 3c849940b450487dde872d42725b08427513e64c
- src/Cvent/SDK/Models/Components/VideoJson1.cs:
- last_write_checksum: sha1:3851c26036b4b18a5ba73269d26224988ff8fdb9
+ 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
@@ -15303,7 +15065,7 @@ trackedFiles:
pristine_git_object: 653c3bd306b10fa5d9f21d4dad57e4824c185ff3
src/Cvent/SDK/Models/Components/VideoViewJson.cs:
id: 1d82e67e6475
- last_write_checksum: sha1:0a2d240113fc207182a051d71b98f56647793942
+ last_write_checksum: sha1:f6c4f97d2c2abf7ba76f817bf5feddebc1bb1619
pristine_git_object: e3c89bf5cfa5fe82a4a21f9c36f7fbbde2dd16d1
src/Cvent/SDK/Models/Components/VideoViewsPaginatedResponse.cs:
id: 2f8bdec3910d
@@ -15363,7 +15125,7 @@ trackedFiles:
pristine_git_object: 8a41d54ed3ad570cf35ee636e389e25c170fe9a8
src/Cvent/SDK/Models/Components/Weblink.cs:
id: 34baf2e9e66c
- last_write_checksum: sha1:facfa970ecf9a91227460ca831e158ca199887e7
+ last_write_checksum: sha1:4d8930cfe9aaa2a9bfeec93e371a552f67387b7c
pristine_git_object: 03370cefb0cabb2564bf11502bcff35c6eadaa10
src/Cvent/SDK/Models/Components/WeblinkListResponse.cs:
id: c7e7e456a857
@@ -15373,14 +15135,12 @@ trackedFiles:
last_write_checksum: sha1:b49aedf56059bdb2189082f4662108398cb824d9
src/Cvent/SDK/Models/Components/WeddingPartnerJson.cs:
last_write_checksum: sha1:c06bc0a47c90a20611b129d761aa58ec0a86f30f
+ src/Cvent/SDK/Models/Components/WorkAddress.cs:
+ last_write_checksum: sha1:263ac75a13cb35654a227b8ac64a12191203144f
src/Cvent/SDK/Models/Components/WorkAddressAddressInput.cs:
id: 3ad6f69cf3e0
last_write_checksum: sha1:534476425da33ec750d6f0bd27ae483405af452a
pristine_git_object: 0dbd5c221c48227838a298f23f83391cd4ecea53
- src/Cvent/SDK/Models/Components/WorkAddressJson.cs:
- id: 4a6d63601c9c
- last_write_checksum: sha1:2bd772e33e853a5da7a6038a727dbccec1eddf6b
- pristine_git_object: 90a2fc46e81e37359bec8c0000c849d166cbbe9b
src/Cvent/SDK/Models/Components/ZeroAllOf1.cs:
id: 9a87754165f7
last_write_checksum: sha1:159c1a0743fea8fc94eb299e61afc20b53143ae8
@@ -16325,7 +16085,7 @@ trackedFiles:
pristine_git_object: 0cc20a581dfffd56c2f4094d637dc59b6e1d0628
src/Cvent/SDK/Models/Requests/GetAttendeeByIdResponse.cs:
id: 56eba94508a4
- last_write_checksum: sha1:45a64ccc7324746724b00c50973410e05f74edf4
+ last_write_checksum: sha1:9016fc45e904296ff428762cb19878bbd15b0815
pristine_git_object: 255df3a2939b5d58ca7dbe4b6aeb19315b09f89f
src/Cvent/SDK/Models/Requests/GetAttendeeCreditsRequest.cs:
id: 364b7e407425
@@ -17479,6 +17239,10 @@ trackedFiles:
id: cc68d1083809
last_write_checksum: sha1:518ab0aac028c568da5d48fe03377b2b6e06ce51
pristine_git_object: d0ac7b5912a3721bc7c6fe8156fe66baa236b9f8
+ src/Cvent/SDK/Models/Requests/ListAssociatedAudienceSegmentsRequest.cs:
+ last_write_checksum: sha1:cceefe5fedb02e690270c0d17786ef3dc13bcc69
+ src/Cvent/SDK/Models/Requests/ListAssociatedAudienceSegmentsResponse.cs:
+ last_write_checksum: sha1:64f614478b7532ecc0300d85f4e4fac4603e2d61
src/Cvent/SDK/Models/Requests/ListAttendeeActivitiesRequest.cs:
id: 47b9ac3ef486
last_write_checksum: sha1:dfabd1fd0068d128143d754258d5954240b8012d
@@ -17487,6 +17251,10 @@ trackedFiles:
id: f3edb46f9703
last_write_checksum: sha1:fcd736d1f20d31b5bea05a801945ee0464ed14a6
pristine_git_object: 94dafa9c1f1ad91df93c45d58a889207f92101b6
+ src/Cvent/SDK/Models/Requests/ListAttendeeAudienceSegmentsRequest.cs:
+ last_write_checksum: sha1:7b4cf398b6a84e19570c94a61d3e199f9c3187f4
+ src/Cvent/SDK/Models/Requests/ListAttendeeAudienceSegmentsResponse.cs:
+ last_write_checksum: sha1:c4cec1b560c0f51294c5c5f577161ead60080c68
src/Cvent/SDK/Models/Requests/ListAttendeeInsightsRequest.cs:
id: 642bd51d2fb0
last_write_checksum: sha1:898829307da9c51d3e1a534b3d993cad3618b4e5
@@ -17625,7 +17393,7 @@ trackedFiles:
pristine_git_object: 2b9a90ae5f5e98df87a1a03fd12d1df7ad3528f9
src/Cvent/SDK/Models/Requests/ListDiscountedAgendaItemsRequest.cs:
id: 2703db9843e3
- last_write_checksum: sha1:008a26529485c50210d556e8d13acbd888406071
+ last_write_checksum: sha1:2b59fe73db37333678b237b10ca38bba963c41ed
pristine_git_object: 9e23f7abeb92b6505479f61cd80efb7f452f6ce3
src/Cvent/SDK/Models/Requests/ListDiscountedAgendaItemsResponse.cs:
id: 609c56671c37
@@ -17641,7 +17409,7 @@ trackedFiles:
pristine_git_object: e43b6e51c263e5a6a15adb2479daf1e4979ebc22
src/Cvent/SDK/Models/Requests/ListDonationItemsRequest.cs:
id: 5110a39b511d
- last_write_checksum: sha1:f034177ded6ddc9757fe06aed6c42c8b32ccf122
+ last_write_checksum: sha1:1feefc1648624f06c4e089692580dfff3b54d9d1
pristine_git_object: a90991c803d8b4869eb9d974c33a9e4cede0fb8e
src/Cvent/SDK/Models/Requests/ListDonationItemsResponse.cs:
id: 7f39b8024639
@@ -17657,7 +17425,7 @@ trackedFiles:
pristine_git_object: 9bc812a9efcd03f2f4534ddb558b9975e85a5ff6
src/Cvent/SDK/Models/Requests/ListEventDiscountsRequest.cs:
id: 36edf818ce93
- last_write_checksum: sha1:be635b046617e2b0001cc063ded6eac5cbf30aae
+ last_write_checksum: sha1:81a66f88412377bf9c4ebc50644a63f0b1961155
pristine_git_object: 3743349e71276c43ba7e2db4812662e58d4da40a
src/Cvent/SDK/Models/Requests/ListEventDiscountsResponse.cs:
id: 6068a4335374
@@ -17673,7 +17441,7 @@ trackedFiles:
pristine_git_object: 5bf87e828dd42641cf98054b95a4ed587f537c90
src/Cvent/SDK/Models/Requests/ListEventRoleAssignmentRequest.cs:
id: 5c2eab219378
- last_write_checksum: sha1:2259d0db3d36dad8c864ff605470a4d4f7531576
+ last_write_checksum: sha1:4ae65ea141f9e2e5a2af88505d7bc2cb6ea98db3
pristine_git_object: 218793e66ba9791f58be97c24f3619cfcaba5c59
src/Cvent/SDK/Models/Requests/ListEventRoleAssignmentResponse.cs:
id: 40f768de9d36
@@ -17745,7 +17513,7 @@ trackedFiles:
pristine_git_object: 8fe80fb8c1eb3696636bbca8063c2f238ee5abc6
src/Cvent/SDK/Models/Requests/ListFeeItemsRequest.cs:
id: afb7126fc9f3
- last_write_checksum: sha1:3f1eeed7a53486b46c573aca0304faabfdfee141
+ last_write_checksum: sha1:3ea69c39889f00d97356c2b9aa7837e2a085ff18
pristine_git_object: 445451595ad57a91a27d3185125bd7c268d9f6ce
src/Cvent/SDK/Models/Requests/ListFeeItemsResponse.cs:
id: 5b8e37d7c632
@@ -17799,8 +17567,12 @@ trackedFiles:
id: 96338801b5c8
last_write_checksum: sha1:dc03d49775650c59a765c3fed1d95b93806071ab
pristine_git_object: 4cf99fc4392333450f63a637ffc0031b9b5fa5f6
+ src/Cvent/SDK/Models/Requests/ListMembershipItemsPostFilterRequest.cs:
+ last_write_checksum: sha1:1d74c8b95a61c9afd54b59fef41dc831689c8e68
+ src/Cvent/SDK/Models/Requests/ListMembershipItemsPostFilterResponse.cs:
+ last_write_checksum: sha1:00f3e28a2c7df0a80294e43d5cc28b84fcf9768b
src/Cvent/SDK/Models/Requests/ListMembershipItemsRequest.cs:
- last_write_checksum: sha1:59d1a88c993cf6b8ea6e614a76f61b3a77695b3b
+ last_write_checksum: sha1:733e9f3f55f2aa429198990b18fda1064d58810c
src/Cvent/SDK/Models/Requests/ListMembershipItemsResponse.cs:
last_write_checksum: sha1:3fdd04f1c3748bfed2f6ac047ba9d64b04a06b66
src/Cvent/SDK/Models/Requests/ListPlayersRequest.cs:
@@ -17845,7 +17617,7 @@ trackedFiles:
pristine_git_object: 12a3de67b4d96b096c55f21d84ff7c58f5184c3d
src/Cvent/SDK/Models/Requests/ListQuantityItemsRequest.cs:
id: 430008e259b2
- last_write_checksum: sha1:974c0e5585a66bbd728fe2d484a1086fae2904a5
+ last_write_checksum: sha1:af5542a6b2076500022e94e98f1d799e8efadaee
pristine_git_object: 175f3b0c2448c5099acb7087fc13cfbcdddfef31
src/Cvent/SDK/Models/Requests/ListQuantityItemsResponse.cs:
id: bb5b05f95451
@@ -18401,7 +18173,7 @@ trackedFiles:
pristine_git_object: dcddd4057bc3a3670b64793747ddb484366fa8c9
src/Cvent/SDK/Models/Requests/UpdateAttendeeResponse.cs:
id: c75ed94ce160
- last_write_checksum: sha1:076d54b2d9e34f3bf31d05beef32ed6064ead733
+ last_write_checksum: sha1:8e2bca6d1a4d4e64a3bc16f4490a292aeb619aea
pristine_git_object: 30bcc1c4696bcb8b0149100effdd1c0f910538c3
src/Cvent/SDK/Models/Requests/UpdateAttendeeSubscriptionStatusRequest.cs:
last_write_checksum: sha1:e85cebd2bf72887681b6c3f3f7264f466c257ae8
@@ -18817,7 +18589,7 @@ trackedFiles:
last_write_checksum: sha1:371bfd6a87da8f82c9058483e16679eb04f86cba
src/Cvent/SDK/SDKConfig.cs:
id: 7ad7086454a8
- last_write_checksum: sha1:ac084a200579a266fe28c60f56083f79bad7ce8e
+ last_write_checksum: sha1:628a135367fe0221ec44b6dbe7e8f6d0258835f1
pristine_git_object: 796c23cd551fbe87f613d89d60ed25ac5fe0c54b
src/Cvent/SDK/Seating.cs:
id: 01c249fc2746
@@ -18873,7 +18645,7 @@ trackedFiles:
pristine_git_object: a75f770b33edd25c0fa4d4a77ab523da12d269ba
src/Cvent/SDK/Utils/Constants.cs:
id: 231d94d8a5dc
- last_write_checksum: sha1:4cacc604d5ab58a870128ace9daa76eb988cb34f
+ last_write_checksum: sha1:0b9a4f1ac42647d9d9a2b9c46471b3b5c29af9bf
pristine_git_object: 0a54932893793a10e459afbc15920803cff3ed1e
src/Cvent/SDK/Utils/CventSDKHttpClient.cs:
id: 374fee4fdbaf
@@ -21390,6 +21162,8 @@ examples:
token: "0e28af57-511f-47ab-ae46-46cd1ca51a1a"
expand: ["eventRole"]
filter: "event.id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' and user.id eq '6807e044-993b-428c-aec8-7316f13c1b95'"
+ after: "2017-01-02T02:00:00Z"
+ before: "2017-01-02T02:00:00Z"
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": []}
@@ -24304,6 +24078,50 @@ 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": []}
"400":
application/json: {"code": 400, "message": "Bad Request", "target": "example target", "details": [{"code": 400, "message": "Bad Request", "target": "example target"}]}
+ listMembershipItemsPostFilter:
+ speakeasy-default-list-membership-items-post-filter:
+ parameters:
+ path:
+ id: "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3"
+ query:
+ limit: 100
+ token: "0e28af57-511f-47ab-ae46-46cd1ca51a1a"
+ 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"}]}
+ listAttendeeAudienceSegments:
+ speakeasy-default-list-attendee-audience-segments:
+ parameters:
+ path:
+ attendeeId: "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3"
+ query:
+ limit: 100
+ token: "0e28af57-511f-47ab-ae46-46cd1ca51a1a"
+ filter: "segment.id eq '313097a4-143d-11e5-9f99-d0a637ee0897'"
+ 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": [{"segment": {"id": "b13497ea-c117-4d62-a17b-e6c14d7e49d4"}}]}
+ "400":
+ application/json: {"code": 400, "message": "Bad Request", "target": "example target", "details": [{"code": 400, "message": "Bad Request", "target": "example target"}]}
+ listAssociatedAudienceSegments:
+ speakeasy-default-list-associated-audience-segments:
+ parameters:
+ path:
+ attendeeId: "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3"
+ query:
+ limit: 100
+ token: "0e28af57-511f-47ab-ae46-46cd1ca51a1a"
+ 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": [{"segment": {"id": "b13497ea-c117-4d62-a17b-e6c14d7e49d4"}}]}
+ "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"
@@ -24688,3 +24506,6 @@ generatedTests:
listRfpPastEvents: "2026-04-27T13:25:58-03:00"
listRfpRecipientsHistory: "2026-04-27T13:25:58-03:00"
getRfpSuppliers: "2026-04-27T13:25:58-03:00"
+ listMembershipItemsPostFilter: "2026-05-21T12:13:40-06:00"
+ listAttendeeAudienceSegments: "2026-05-21T12:13:40-06:00"
+ listAssociatedAudienceSegments: "2026-05-21T12:13:40-06:00"
diff --git a/packages/csharp/.speakeasy/gen.yaml b/packages/csharp/.speakeasy/gen.yaml
index 7658f034..d7f40305 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.2.3
+ version: 1.3.0
additionalDependencies: []
author: Cvent
baseErrorName: CventSDKException
diff --git a/packages/csharp/.speakeasy/tests.arazzo.yaml b/packages/csharp/.speakeasy/tests.arazzo.yaml
index 2892393d..5bd5d03e 100644
--- a/packages/csharp/.speakeasy/tests.arazzo.yaml
+++ b/packages/csharp/.speakeasy/tests.arazzo.yaml
@@ -4972,6 +4972,12 @@ workflows:
- name: filter
in: query
value: event.id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' and user.id eq '6807e044-993b-428c-aec8-7316f13c1b95'
+ - name: after
+ in: query
+ value: "2017-01-02T02:00:00Z"
+ - name: before
+ in: query
+ value: "2017-01-02T02:00:00Z"
successCriteria:
- condition: $statusCode == 200
- condition: $response.header.Content-Type == application/json
@@ -10605,3 +10611,83 @@ workflows:
type: simple
x-speakeasy-test-group: RFP Suppliers
x-speakeasy-test-rebuild: true
+ - workflowId: listMembershipItemsPostFilter
+ steps:
+ - stepId: test
+ operationId: listMembershipItemsPostFilter
+ 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
+ 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: listAttendeeAudienceSegments
+ steps:
+ - stepId: test
+ operationId: listAttendeeAudienceSegments
+ parameters:
+ - name: attendeeId
+ 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: filter
+ in: query
+ value: segment.id eq '313097a4-143d-11e5-9f99-d0a637ee0897'
+ 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":[{"segment":{"id":"b13497ea-c117-4d62-a17b-e6c14d7e49d4"}}]}
+ type: simple
+ x-speakeasy-test-group: Audience Segments
+ x-speakeasy-test-rebuild: true
+ - workflowId: listAssociatedAudienceSegments
+ steps:
+ - stepId: test
+ operationId: listAssociatedAudienceSegments
+ parameters:
+ - name: attendeeId
+ in: path
+ value: 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3
+ - name: limit
+ in: query
+ value: 100
+ - name: token
+ in: query
+ value: 0e28af57-511f-47ab-ae46-46cd1ca51a1a
+ 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":[{"segment":{"id":"b13497ea-c117-4d62-a17b-e6c14d7e49d4"}}]}
+ type: simple
+ x-speakeasy-test-group: Audience Segments
+ x-speakeasy-test-rebuild: true
diff --git a/packages/csharp/NUGET.md b/packages/csharp/NUGET.md
index 48c7740c..68f067a0 100644
--- a/packages/csharp/NUGET.md
+++ b/packages/csharp/NUGET.md
@@ -325,9 +325,9 @@ 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):
- * [`ErrorResponseJson20`](./src/Cvent/SDK/Models/Errors/ErrorResponseJson20.cs): The error response. Applicable to 11 of 441 methods.*
- * [`SegmentsErrorResponse`](./src/Cvent/SDK/Models/Errors/SegmentsErrorResponse.cs): Segments error response details. Status code `400`. Applicable to 2 of 441 methods.*
- * [`BadRequestException`](./src/Cvent/SDK/Models/Errors/BadRequestException.cs): A bad token response. Status code `400`. Applicable to 1 of 441 methods.*
+ * [`ErrorResponseJson20`](./src/Cvent/SDK/Models/Errors/ErrorResponseJson20.cs): The error response. Applicable to 11 of 444 methods.*
+ * [`SegmentsErrorResponse`](./src/Cvent/SDK/Models/Errors/SegmentsErrorResponse.cs): Segments error response details. Status code `400`. Applicable to 2 of 444 methods.*
+ * [`BadRequestException`](./src/Cvent/SDK/Models/Errors/BadRequestException.cs): A bad token response. Status code `400`. Applicable to 1 of 444 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 c60bf3a2..aac628f3 100644
--- a/packages/csharp/README.md
+++ b/packages/csharp/README.md
@@ -216,7 +216,9 @@ var res = await sdk.Authentication.Oauth2TokenAsync(
### [AudienceSegments](docs/sdks/audiencesegments/README.md)
+* [ListAttendeeAudienceSegments](docs/sdks/audiencesegments/README.md#listattendeeaudiencesegments) - List Associated Segments
* [DisassociateAttendeeFromAudienceSegments](docs/sdks/audiencesegments/README.md#disassociateattendeefromaudiencesegments) - Delete Attendee Associations
+* [ListAssociatedAudienceSegments](docs/sdks/audiencesegments/README.md#listassociatedaudiencesegments) - List Associated Segments
* [CreateAudienceSegment](docs/sdks/audiencesegments/README.md#createaudiencesegment) - Create Audience Segment
* [ListAudienceSegments](docs/sdks/audiencesegments/README.md#listaudiencesegments) - List Audience Segments
* [ListAudienceSegmentsPostFilter](docs/sdks/audiencesegments/README.md#listaudiencesegmentspostfilter) - List Audience Segments
@@ -406,6 +408,7 @@ var res = await sdk.Authentication.Oauth2TokenAsync(
* [ListFeeItems](docs/sdks/events/README.md#listfeeitems) - List Fee Items
* [GetInvitationList](docs/sdks/events/README.md#getinvitationlist) - List Invitation Lists
* [ListMembershipItems](docs/sdks/events/README.md#listmembershipitems) - List Membership Items
+* [ListMembershipItemsPostFilter](docs/sdks/events/README.md#listmembershipitemspostfilter) - List Membership Items
* [GetOrders](docs/sdks/events/README.md#getorders) - List Orders
* [GetOrderItems](docs/sdks/events/README.md#getorderitems) - List Order Items
* [AssociateDiscountCodeToOrderItem](docs/sdks/events/README.md#associatediscountcodetoorderitem) - Assign Discount to Order Item
@@ -981,9 +984,9 @@ 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):
- * [`ErrorResponseJson20`](./src/Cvent/SDK/Models/Errors/ErrorResponseJson20.cs): The error response. Applicable to 11 of 441 methods.*
- * [`SegmentsErrorResponse`](./src/Cvent/SDK/Models/Errors/SegmentsErrorResponse.cs): Segments error response details. Status code `400`. Applicable to 2 of 441 methods.*
- * [`BadRequestException`](./src/Cvent/SDK/Models/Errors/BadRequestException.cs): A bad token response. Status code `400`. Applicable to 1 of 441 methods.*
+ * [`ErrorResponseJson20`](./src/Cvent/SDK/Models/Errors/ErrorResponseJson20.cs): The error response. Applicable to 11 of 444 methods.*
+ * [`SegmentsErrorResponse`](./src/Cvent/SDK/Models/Errors/SegmentsErrorResponse.cs): Segments error response details. Status code `400`. Applicable to 2 of 444 methods.*
+ * [`BadRequestException`](./src/Cvent/SDK/Models/Errors/BadRequestException.cs): A bad token response. Status code `400`. Applicable to 1 of 444 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/RELEASES.md b/packages/csharp/RELEASES.md
index 14da780c..c4c2210a 100644
--- a/packages/csharp/RELEASES.md
+++ b/packages/csharp/RELEASES.md
@@ -1,3 +1,36 @@
+## 2026-05-21 00:00:00
+### Changes
+Based on:
+- OpenAPI Doc
+- Speakeasy CLI 1.752.0 https://github.com/speakeasy-api/speakeasy
+### SDK Changes
+#### New Models
+- `AttendeeAudienceSegmentAssociationJson` — represents a single active audience segment association for an attendee
+- `AttendeeAudienceSegmentAssociationsPaginatedResponse` — paginated response for attendee audience segment association lists
+#### Updated Models
+- `EventFeatureJson` / `EventFeaturesResponse` — new `CreditsAndCertificates` enum value added to the feature type; allows planners to create credit rules, link them to events/sessions, award credits, create certificates, and link them to credit rules. Only one of `EventCredits` or `CreditsAndCertificates` can be active at a time
+- `AudienceSegment`, `AudienceSegmentCreate`, `ExistingAudienceSegment`, `AudienceSegmentResponse` — `required` correction: `event` field is now correctly required (replaces incorrect `eventId`)
+- Multiple models were renamed/consolidated by the generator to remove redundant `Json{N}` suffixes (e.g. `AttendeeJson3` → `Attendee`, `CapacityJson1` → `Capacity`) — 63–74 old model files removed, replaced by cleaner equivalents
+### API Changes
+#### New APIs
+- Audience Segments: 'List Associated Segments' (GET /attendees/{attendeeId}/audience-segments)
+- Audience Segments: 'List Associated Segments' (POST /attendees/{attendeeId}/audience-segments/filter)
+- Events: 'List Membership Items' (POST /events/{id}/membership-items/filter)
+#### Updates to APIs
+- Event Role: 'List Event Role Assignments' (GET /event-roles/assignments) — added `after` and `before` query parameters
+- Event Features: 'Update Event Feature' (PUT /events/{id}/features/{type}) — new `CreditsAndCertificates` value added to the feature type enum
+- Meeting Request: 'Create MR (Bulk)' / 'Update MR (Bulk)' — description updated noting `event.id` may not be populated immediately on creation (event creation is async)
+- Audience Segments: 'Create/Update Audience Segment' — `required` corrected from `eventId` to `event`
+- RFP Management: 'Get RFP' — `name` removed from `required`; lead source description links updated
+- Process Form: 'List Process Form Submissions' — `required` corrected from literal string `"id, event"` to separate entries
+- Signatures: 'List Signatures' — `required` corrected from `stopCheckIn` to `stopCheckin`
+#### Miscellaneous Changes
+- Filter parameter descriptions for multiple endpoints reformatted from prose to markdown tables
+### Generated
+- [csharp v1.3.0] packages/csharp
+### Releases
+- [NuGet v1.3.0] https://www.nuget.org/packages/Cvent.SDK/1.3.0 - packages/csharp
+
## 2024-12-15 00:00:00
### Changes
Based on:
diff --git a/packages/csharp/docs/Models/Components/AccountBudgetItemListResponseJson.md b/packages/csharp/docs/Models/Components/AccountBudgetItemListResponseJson.md
index f15a36ef..03707a5c 100644
--- a/packages/csharp/docs/Models/Components/AccountBudgetItemListResponseJson.md
+++ b/packages/csharp/docs/Models/Components/AccountBudgetItemListResponseJson.md
@@ -11,7 +11,7 @@ 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` | [EventJson4](../../Models/Components/EventJson4.md) | :heavy_minus_sign: | Event ID Information. | |
+| `Event` | [EventJson3](../../Models/Components/EventJson3.md) | :heavy_minus_sign: | Event ID Information. | |
| `Rfp` | [RfpIdJson1](../../Models/Components/RfpIdJson1.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 |
diff --git a/packages/csharp/docs/Models/Components/Action.md b/packages/csharp/docs/Models/Components/Action.md
deleted file mode 100644
index e3e0db1d..00000000
--- a/packages/csharp/docs/Models/Components/Action.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# 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
new file mode 100644
index 00000000..716e2c8e
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/AdditionalChoice.md
@@ -0,0 +1,10 @@
+# AdditionalChoice
+
+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/AdditionalChoiceJson1.md b/packages/csharp/docs/Models/Components/AdditionalChoiceJson1.md
new file mode 100644
index 00000000..94b0891b
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/AdditionalChoiceJson1.md
@@ -0,0 +1,11 @@
+# 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/AdditionalChoiceJson11.md b/packages/csharp/docs/Models/Components/AdditionalChoiceJson11.md
deleted file mode 100644
index 28b7f71d..00000000
--- a/packages/csharp/docs/Models/Components/AdditionalChoiceJson11.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# AdditionalChoiceJson11
-
-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/AdditionalChoiceJson2.md b/packages/csharp/docs/Models/Components/AdditionalChoiceJson2.md
index c8c66a80..ea669596 100644
--- a/packages/csharp/docs/Models/Components/AdditionalChoiceJson2.md
+++ b/packages/csharp/docs/Models/Components/AdditionalChoiceJson2.md
@@ -1,11 +1,11 @@
# AdditionalChoiceJson2
-Contains text of additional choice i.e N/A choice or otherAnswer 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 | 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
+| 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/Address11.md b/packages/csharp/docs/Models/Components/Address11.md
new file mode 100644
index 00000000..2d288e10
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Address11.md
@@ -0,0 +1,15 @@
+# Address11
+
+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/Address12.md b/packages/csharp/docs/Models/Components/Address12.md
new file mode 100644
index 00000000..ce2c0483
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Address12.md
@@ -0,0 +1,17 @@
+# 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/AddressJson2.md b/packages/csharp/docs/Models/Components/AddressJson2.md
new file mode 100644
index 00000000..18428160
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/AddressJson2.md
@@ -0,0 +1,17 @@
+# AddressJson2
+
+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: | 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/AddressJson3.md b/packages/csharp/docs/Models/Components/AddressJson3.md
index d159c5c2..db412bdc 100644
--- a/packages/csharp/docs/Models/Components/AddressJson3.md
+++ b/packages/csharp/docs/Models/Components/AddressJson3.md
@@ -1,17 +1,20 @@
# AddressJson3
-Address details. Required to create/update a guest's reservation if the hotel/event requires an address in reservations.
+Address details
## 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 |
+| ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- |
+| `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 |
+| `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/AddressJson4.md b/packages/csharp/docs/Models/Components/AddressJson4.md
index 04f417d3..555f4c88 100644
--- a/packages/csharp/docs/Models/Components/AddressJson4.md
+++ b/packages/csharp/docs/Models/Components/AddressJson4.md
@@ -1,20 +1,17 @@
# AddressJson4
-Address details
+A physical address.
## 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 |
-| `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
+| 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/AddressJson5.md b/packages/csharp/docs/Models/Components/AddressJson5.md
index df576b36..281978bd 100644
--- a/packages/csharp/docs/Models/Components/AddressJson5.md
+++ b/packages/csharp/docs/Models/Components/AddressJson5.md
@@ -1,17 +1,16 @@
# AddressJson5
-A physical address.
+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
+| 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/AddressJson6.md b/packages/csharp/docs/Models/Components/AddressJson6.md
index 04ca534a..c54322da 100644
--- a/packages/csharp/docs/Models/Components/AddressJson6.md
+++ b/packages/csharp/docs/Models/Components/AddressJson6.md
@@ -1,16 +1,17 @@
# AddressJson6
-Address
+Address details.
## 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
+| 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/AddressJson7.md b/packages/csharp/docs/Models/Components/AddressJson7.md
deleted file mode 100644
index 3f57f9d0..00000000
--- a/packages/csharp/docs/Models/Components/AddressJson7.md
+++ /dev/null
@@ -1,17 +0,0 @@
-# AddressJson7
-
-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/Answer1.md b/packages/csharp/docs/Models/Components/Answer1.md
new file mode 100644
index 00000000..9f984c4f
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Answer1.md
@@ -0,0 +1,12 @@
+# Answer1
+
+An object representing the possible answers for lead qualification questions.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- |
+| `Type` | [AnswerType](../../Models/Components/AnswerType.md) | :heavy_check_mark: | Type of answer | File |
+| `Value` | *string* | :heavy_minus_sign: | Answered value like: Choice text, text answer input etc. | Choice A |
+| `Choice` | [Uuid1](../../Models/Components/Uuid1.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/Answer2.md b/packages/csharp/docs/Models/Components/Answer2.md
new file mode 100644
index 00000000..24545af3
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Answer2.md
@@ -0,0 +1,12 @@
+# Answer2
+
+A JSON schema representing an answer object.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- |
+| `Type` | [AnswerType1](../../Models/Components/AnswerType1.md) | :heavy_check_mark: | Type of answer | Choice |
+| `Value` | *string* | :heavy_minus_sign: | Answered value like: Choice text, text answer input etc. | Choice A |
+| `Choice` | [Answer2Choice](../../Models/Components/Answer2Choice.md) | :heavy_minus_sign: | The choice that was selected. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Answer2Choice.md b/packages/csharp/docs/Models/Components/Answer2Choice.md
new file mode 100644
index 00000000..f245835d
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Answer2Choice.md
@@ -0,0 +1,10 @@
+# Answer2Choice
+
+The choice that was selected.
+
+
+## Fields
+
+| Field | Type | Required | Description |
+| --------------------------------------- | --------------------------------------- | --------------------------------------- | --------------------------------------- |
+| `Id` | *string* | :heavy_minus_sign: | The ID of the choice that was selected. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AnswerJson.md b/packages/csharp/docs/Models/Components/AnswerJson.md
index f1cbee8b..2cf269f8 100644
--- a/packages/csharp/docs/Models/Components/AnswerJson.md
+++ b/packages/csharp/docs/Models/Components/AnswerJson.md
@@ -1,12 +1,15 @@
# AnswerJson
-An object representing the possible answers for lead qualification questions.
+A survey answer.
## Fields
-| Field | Type | Required | Description | Example |
-| -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- |
-| `Type` | [AnswerTypeJson](../../Models/Components/AnswerTypeJson.md) | :heavy_check_mark: | Type of answer | File |
-| `Value` | *string* | :heavy_minus_sign: | Answered value like: Choice text, text answer input etc. | Choice A |
-| `Choice` | [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 |
+| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Type` | [AnswerTypeJson1](../../Models/Components/AnswerTypeJson1.md) | :heavy_check_mark: | Type of answer | ChoiceText |
+| `Value` | *string* | :heavy_minus_sign: | Value property is used to send information like string, number and date in case of following types of answers only: ChoiceText, Text, Comment, Other. In case of Rank Order question, rank should be put into value. Refer to questions resource to get choice label or category label from their respective ids. | 1 |
+| `Choice` | [UuidJson](../../Models/Components/UuidJson.md) | :heavy_minus_sign: | The reference to the related entity. Contains only the ID of the related entity. | |
+| `Category` | [UuidJson](../../Models/Components/UuidJson.md) | :heavy_minus_sign: | The reference to the related entity. Contains only the ID of the related entity. | |
+| `SubCategory` | [UuidJson](../../Models/Components/UuidJson.md) | :heavy_minus_sign: | The reference to the related entity. Contains only the ID of the related entity. | |
+| `Field` | [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/AnswerJson0.md b/packages/csharp/docs/Models/Components/AnswerJson0.md
deleted file mode 100644
index 41c1e9b6..00000000
--- a/packages/csharp/docs/Models/Components/AnswerJson0.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# AnswerJson0
-
-A JSON schema representing an answer object.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- |
-| `Type` | [AnswerTypeJson0](../../Models/Components/AnswerTypeJson0.md) | :heavy_check_mark: | Type of answer | Choice |
-| `Value` | *string* | :heavy_minus_sign: | Answered value like: Choice text, text answer input etc. | Choice A |
-| `Choice` | [Choice](../../Models/Components/Choice.md) | :heavy_minus_sign: | The choice that was selected. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AnswerJson1.md b/packages/csharp/docs/Models/Components/AnswerJson1.md
index 345438e0..87423fca 100644
--- a/packages/csharp/docs/Models/Components/AnswerJson1.md
+++ b/packages/csharp/docs/Models/Components/AnswerJson1.md
@@ -1,15 +1,12 @@
# AnswerJson1
-A survey answer.
+A question answer.
## Fields
-| Field | Type | Required | Description | Example |
-| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Type` | [AnswerTypeJson2](../../Models/Components/AnswerTypeJson2.md) | :heavy_check_mark: | Type of answer | ChoiceText |
-| `Value` | *string* | :heavy_minus_sign: | Value property is used to send information like string, number and date in case of following types of answers only: ChoiceText, Text, Comment, Other. In case of Rank Order question, rank should be put into value. Refer to questions resource to get choice label or category label from their respective ids. | 1 |
-| `Choice` | [UuidJson](../../Models/Components/UuidJson.md) | :heavy_minus_sign: | The reference to the related entity. Contains only the ID of the related entity. | |
-| `Category` | [UuidJson](../../Models/Components/UuidJson.md) | :heavy_minus_sign: | The reference to the related entity. Contains only the ID of the related entity. | |
-| `SubCategory` | [UuidJson](../../Models/Components/UuidJson.md) | :heavy_minus_sign: | The reference to the related entity. Contains only the ID of the related entity. | |
-| `Field` | [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? |
+| ~~`Type`~~ | *string* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
Data type of an answer. DEPRECATED: This field is deprecated and not applicable to this activity. | simple |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AnswerJson2.md b/packages/csharp/docs/Models/Components/AnswerJson2.md
deleted file mode 100644
index ea1ebb05..00000000
--- a/packages/csharp/docs/Models/Components/AnswerJson2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# AnswerJson2
-
-A question answer.
-
-
-## 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? |
-| ~~`Type`~~ | *string* | :heavy_minus_sign: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
Data type of an answer. DEPRECATED: This field is deprecated and not applicable to this activity. | simple |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AnswerType.md b/packages/csharp/docs/Models/Components/AnswerType.md
new file mode 100644
index 00000000..53fafd23
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/AnswerType.md
@@ -0,0 +1,22 @@
+# AnswerType
+
+Type of answer
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = AnswerType.Choice;
+```
+
+
+## Values
+
+| Name | Value |
+| ------------ | ------------ |
+| `Choice` | Choice |
+| `Text` | Text |
+| `ChoiceText` | ChoiceText |
+| `Other` | Other |
+| `Na` | NA |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AnswerType1.md b/packages/csharp/docs/Models/Components/AnswerType1.md
new file mode 100644
index 00000000..81cd1707
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/AnswerType1.md
@@ -0,0 +1,21 @@
+# AnswerType1
+
+Type of answer
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = AnswerType1.Choice;
+```
+
+
+## Values
+
+| Name | Value |
+| -------- | -------- |
+| `Choice` | Choice |
+| `Text` | Text |
+| `Other` | Other |
+| `Na` | NA |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AnswerTypeJson.md b/packages/csharp/docs/Models/Components/AnswerTypeJson.md
index 5eed605e..40ee88ee 100644
--- a/packages/csharp/docs/Models/Components/AnswerTypeJson.md
+++ b/packages/csharp/docs/Models/Components/AnswerTypeJson.md
@@ -1,22 +1,25 @@
# AnswerTypeJson
-Type of answer
+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.
## Example Usage
```csharp
using Cvent.SDK.Models.Components;
-var value = AnswerTypeJson.Choice;
+var value = AnswerTypeJson.Other;
```
## Values
-| Name | Value |
-| ------------ | ------------ |
-| `Choice` | Choice |
-| `Text` | Text |
-| `ChoiceText` | ChoiceText |
-| `Other` | Other |
-| `Na` | NA |
\ No newline at end of file
+| Name | Value |
+| ------- | ------- |
+| `Other` | Other |
+| `Na` | NA |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AnswerTypeJson0.md b/packages/csharp/docs/Models/Components/AnswerTypeJson0.md
deleted file mode 100644
index 437ae293..00000000
--- a/packages/csharp/docs/Models/Components/AnswerTypeJson0.md
+++ /dev/null
@@ -1,21 +0,0 @@
-# AnswerTypeJson0
-
-Type of answer
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = AnswerTypeJson0.Choice;
-```
-
-
-## Values
-
-| Name | Value |
-| -------- | -------- |
-| `Choice` | Choice |
-| `Text` | Text |
-| `Other` | Other |
-| `Na` | NA |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AnswerTypeJson1.md b/packages/csharp/docs/Models/Components/AnswerTypeJson1.md
index 0e8446bc..e45deeb3 100644
--- a/packages/csharp/docs/Models/Components/AnswerTypeJson1.md
+++ b/packages/csharp/docs/Models/Components/AnswerTypeJson1.md
@@ -1,25 +1,24 @@
# AnswerTypeJson1
-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.
+Type of answer
## Example Usage
```csharp
using Cvent.SDK.Models.Components;
-var value = AnswerTypeJson1.Other;
+var value = AnswerTypeJson1.Choice;
```
## Values
-| Name | Value |
-| ------- | ------- |
-| `Other` | Other |
-| `Na` | NA |
\ No newline at end of file
+| Name | Value |
+| ------------ | ------------ |
+| `Choice` | Choice |
+| `Text` | Text |
+| `ChoiceText` | ChoiceText |
+| `Comment` | Comment |
+| `Other` | Other |
+| `Na` | NA |
+| `File` | File |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AnswerTypeJson2.md b/packages/csharp/docs/Models/Components/AnswerTypeJson2.md
deleted file mode 100644
index 74876b26..00000000
--- a/packages/csharp/docs/Models/Components/AnswerTypeJson2.md
+++ /dev/null
@@ -1,24 +0,0 @@
-# AnswerTypeJson2
-
-Type of answer
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = AnswerTypeJson2.Choice;
-```
-
-
-## Values
-
-| Name | Value |
-| ------------ | ------------ |
-| `Choice` | Choice |
-| `Text` | Text |
-| `ChoiceText` | ChoiceText |
-| `Comment` | Comment |
-| `Other` | Other |
-| `Na` | NA |
-| `File` | File |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Appointment.md b/packages/csharp/docs/Models/Components/Appointment.md
new file mode 100644
index 00000000..b47e1d99
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Appointment.md
@@ -0,0 +1,10 @@
+# Appointment
+
+A JSON schema representing the structure of an appointment object.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
+| `Id` | *string* | :heavy_minus_sign: | Appointment id | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Attendee.md b/packages/csharp/docs/Models/Components/Attendee.md
deleted file mode 100644
index abcf9768..00000000
--- a/packages/csharp/docs/Models/Components/Attendee.md
+++ /dev/null
@@ -1,54 +0,0 @@
-# Attendee
-
-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` | [AttendeeContactInfoJson](../../Models/Components/AttendeeContactInfoJson.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` | [LookupJson](../../Models/Components/LookupJson.md) | :heavy_minus_sign: | Lookup response object | |
-| `InvitationList` | [IdNameJson](../../Models/Components/IdNameJson.md) | :heavy_minus_sign: | A Named object | |
-| `WebLinks` | [AttendeeWebLinksJson](../../Models/Components/AttendeeWebLinksJson.md) | :heavy_minus_sign: | Web links for an attendee. | |
-| `RegistrationType` | [LookupJson](../../Models/Components/LookupJson.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<[ExternalReferenceJson](../../Models/Components/ExternalReferenceJson.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` | [AttendeeGroupJson](../../Models/Components/AttendeeGroupJson.md) | :heavy_minus_sign: | An attendee group. | |
-| `Administrator` | [UuidJson](../../Models/Components/UuidJson.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` | [AttendeeStatusJson](../../Models/Components/AttendeeStatusJson.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` | [AttendeeInvitedByJson](../../Models/Components/AttendeeInvitedByJson.md) | :heavy_minus_sign: | Method by which the attendee was invited to the event. | Planner-Invited |
-| `ResponseMethod` | [AttendeeResponseMethodJson](../../Models/Components/AttendeeResponseMethodJson.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<[CustomField](../../Models/Components/CustomField.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<[AttendeeAnswerJson](../../Models/Components/AttendeeAnswerJson.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` | [AttendeeVisibilityJson](../../Models/Components/AttendeeVisibilityJson.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<[AppointmentGroupJson](../../Models/Components/AppointmentGroupJson.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/Attendee1.md b/packages/csharp/docs/Models/Components/Attendee1.md
new file mode 100644
index 00000000..1e29480d
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Attendee1.md
@@ -0,0 +1,54 @@
+# 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` | [AttendeeContactInfoJson](../../Models/Components/AttendeeContactInfoJson.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` | [LookupJson](../../Models/Components/LookupJson.md) | :heavy_minus_sign: | Lookup response object | |
+| `InvitationList` | [IdNameJson](../../Models/Components/IdNameJson.md) | :heavy_minus_sign: | A Named object | |
+| `WebLinks` | [AttendeeWebLinksJson](../../Models/Components/AttendeeWebLinksJson.md) | :heavy_minus_sign: | Web links for an attendee. | |
+| `RegistrationType` | [LookupJson](../../Models/Components/LookupJson.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<[ExternalReferenceJson](../../Models/Components/ExternalReferenceJson.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` | [AttendeeGroupJson](../../Models/Components/AttendeeGroupJson.md) | :heavy_minus_sign: | An attendee group. | |
+| `Administrator` | [UuidJson](../../Models/Components/UuidJson.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` | [AttendeeStatusJson](../../Models/Components/AttendeeStatusJson.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` | [AttendeeInvitedByJson](../../Models/Components/AttendeeInvitedByJson.md) | :heavy_minus_sign: | Method by which the attendee was invited to the event. | Planner-Invited |
+| `ResponseMethod` | [AttendeeResponseMethodJson](../../Models/Components/AttendeeResponseMethodJson.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<[CustomField](../../Models/Components/CustomField.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<[AttendeeAnswerJson](../../Models/Components/AttendeeAnswerJson.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` | [AttendeeVisibilityJson](../../Models/Components/AttendeeVisibilityJson.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<[AppointmentGroupJson](../../Models/Components/AppointmentGroupJson.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
new file mode 100644
index 00000000..c59d9cfb
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Attendee12.md
@@ -0,0 +1,10 @@
+# Attendee12
+
+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/Attendee2.md b/packages/csharp/docs/Models/Components/Attendee2.md
new file mode 100644
index 00000000..28775b41
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Attendee2.md
@@ -0,0 +1,10 @@
+# Attendee2
+
+The associated 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
diff --git a/packages/csharp/docs/Models/Components/AttendeeAudienceSegmentAssociationJson.md b/packages/csharp/docs/Models/Components/AttendeeAudienceSegmentAssociationJson.md
new file mode 100644
index 00000000..0b066e47
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/AttendeeAudienceSegmentAssociationJson.md
@@ -0,0 +1,10 @@
+# AttendeeAudienceSegmentAssociationJson
+
+Represents an audience segment associated with an attendee.
+
+
+## Fields
+
+| Field | Type | Required | Description |
+| ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- |
+| `Segment` | [SegmentJson](../../Models/Components/SegmentJson.md) | :heavy_check_mark: | Segment details |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AttendeeAudienceSegmentAssociationsPaginatedResponse.md b/packages/csharp/docs/Models/Components/AttendeeAudienceSegmentAssociationsPaginatedResponse.md
new file mode 100644
index 00000000..22a59494
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/AttendeeAudienceSegmentAssociationsPaginatedResponse.md
@@ -0,0 +1,11 @@
+# AttendeeAudienceSegmentAssociationsPaginatedResponse
+
+The paginated response from a request to get the list of audience segments associated with an attendee.
+
+
+## Fields
+
+| Field | Type | Required | Description |
+| ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- |
+| `Paging` | [PagingJson](../../Models/Components/PagingJson.md) | :heavy_check_mark: | Represents pagination information for a collection of resources. |
+| `Data` | List<[AttendeeAudienceSegmentAssociationJson](../../Models/Components/AttendeeAudienceSegmentAssociationJson.md)> | :heavy_check_mark: | Collection of audience segment associations for the attendee. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/AttendeeContactInfoJson.md b/packages/csharp/docs/Models/Components/AttendeeContactInfoJson.md
index ffa35a8d..aab50960 100644
--- a/packages/csharp/docs/Models/Components/AttendeeContactInfoJson.md
+++ b/packages/csharp/docs/Models/Components/AttendeeContactInfoJson.md
@@ -25,10 +25,10 @@ Information about attendee contact added to an event.
| `Type` | [AttendeeContactTypeJson](../../Models/Components/AttendeeContactTypeJson.md) | :heavy_minus_sign: | Contains details related to the attendee's contact type. | |
| ~~`Membership`~~ | [AttendeeContactMembershipJson](../../Models/Components/AttendeeContactMembershipJson.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` | [AddressTypeJson](../../Models/Components/AddressTypeJson.md) | :heavy_minus_sign: | The type of address. | Home |
-| `HomeAddress` | [AddressJson4](../../Models/Components/AddressJson4.md) | :heavy_minus_sign: | Address details | |
+| `HomeAddress` | [AddressJson3](../../Models/Components/AddressJson3.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` | [AddressJson4](../../Models/Components/AddressJson4.md) | :heavy_minus_sign: | Address details | |
+| `WorkAddress` | [AddressJson3](../../Models/Components/AddressJson3.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/AttendeeInsights.md b/packages/csharp/docs/Models/Components/AttendeeInsights.md
index d7f02ddd..2f5f2ed0 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` | [EventJson9](../../Models/Components/EventJson9.md) | :heavy_check_mark: | An event reference used in attendee insights to identify the event context for engagement data | |
+| `Event` | [EventJson7](../../Models/Components/EventJson7.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/AttendeeJson3.md b/packages/csharp/docs/Models/Components/AttendeeJson3.md
deleted file mode 100644
index 529a4ee5..00000000
--- a/packages/csharp/docs/Models/Components/AttendeeJson3.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# AttendeeJson3
-
-A JSON Schema for an Attendee object
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
-| `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/AttendeePaginatedResponse.md b/packages/csharp/docs/Models/Components/AttendeePaginatedResponse.md
index 6fb36c5a..c5b6bb58 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` | [PagingJson](../../Models/Components/PagingJson.md) | :heavy_check_mark: | Represents pagination information for a collection of resources. |
-| `Data` | List<[Attendee](../../Models/Components/Attendee.md)> | :heavy_check_mark: | Collection of attendees. |
\ No newline at end of file
+| `Data` | List<[Attendee1](../../Models/Components/Attendee1.md)> | :heavy_check_mark: | Collection of attendees. |
\ 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 9002a0a3..bd2dc58d 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` | [EventJson3](../../Models/Components/EventJson3.md) | :heavy_minus_sign: | ID of the event. | |
+| `Event` | [EventJson2](../../Models/Components/EventJson2.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 2523aaed..5c292031 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` | [EventJson3](../../Models/Components/EventJson3.md) | :heavy_minus_sign: | ID of the event. | |
+| `Event` | [EventJson2](../../Models/Components/EventJson2.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 ef6b7a93..fde3723b 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` | [EventJson3](../../Models/Components/EventJson3.md) | :heavy_minus_sign: | ID of the event. | |
+| `Event` | [EventJson2](../../Models/Components/EventJson2.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/Badge.md b/packages/csharp/docs/Models/Components/Badge.md
index 2ec85d2f..2c42da9d 100644
--- a/packages/csharp/docs/Models/Components/Badge.md
+++ b/packages/csharp/docs/Models/Components/Badge.md
@@ -12,7 +12,7 @@ A JSON Schema for Badge object.
| `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_check_mark: | Id of a badge | abc123 |
-| `Status` | [BadgeStatusJson](../../Models/Components/BadgeStatusJson.md) | :heavy_check_mark: | Badge status | Active |
-| `Type` | [BadgeTypeJson](../../Models/Components/BadgeTypeJson.md) | :heavy_check_mark: | Badge type | Epc |
-| `Attendee` | [AttendeeJson3](../../Models/Components/AttendeeJson3.md) | :heavy_check_mark: | A JSON Schema for an Attendee object | |
-| `Event` | [EventJson6](../../Models/Components/EventJson6.md) | :heavy_check_mark: | The Associated Event. | |
\ No newline at end of file
+| `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` | [Attendee2](../../Models/Components/Attendee2.md) | :heavy_check_mark: | The associated Attendee. | |
+| `Event` | [Event1](../../Models/Components/Event1.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 654037e0..2d473d4c 100644
--- a/packages/csharp/docs/Models/Components/BadgeInput.md
+++ b/packages/csharp/docs/Models/Components/BadgeInput.md
@@ -5,10 +5,10 @@ A JSON Schema for Badge object.
## Fields
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- |
-| `Id` | *string* | :heavy_check_mark: | Id of a badge | abc123 |
-| `Status` | [BadgeStatusJson](../../Models/Components/BadgeStatusJson.md) | :heavy_check_mark: | Badge status | Active |
-| `Type` | [BadgeTypeJson](../../Models/Components/BadgeTypeJson.md) | :heavy_check_mark: | Badge type | Epc |
-| `Attendee` | [AttendeeJson3](../../Models/Components/AttendeeJson3.md) | :heavy_check_mark: | A JSON Schema for an Attendee object | |
-| `Event` | [EventJson6](../../Models/Components/EventJson6.md) | :heavy_check_mark: | The Associated Event. | |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- |
+| `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` | [Attendee2](../../Models/Components/Attendee2.md) | :heavy_check_mark: | The associated Attendee. | |
+| `Event` | [Event1](../../Models/Components/Event1.md) | :heavy_check_mark: | The Associated Event. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/BadgePaginatedResponse.md b/packages/csharp/docs/Models/Components/BadgePaginatedResponse.md
index df0107a0..5179138a 100644
--- a/packages/csharp/docs/Models/Components/BadgePaginatedResponse.md
+++ b/packages/csharp/docs/Models/Components/BadgePaginatedResponse.md
@@ -7,5 +7,5 @@ Badge List response including paging and badge data.
| 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<[Badge](../../Models/Components/Badge.md)> | :heavy_minus_sign: | List of badges. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/BadgeStatus.md b/packages/csharp/docs/Models/Components/BadgeStatus.md
new file mode 100644
index 00000000..9b9eb15b
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/BadgeStatus.md
@@ -0,0 +1,21 @@
+# BadgeStatus
+
+Badge status
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = BadgeStatus.Assigned;
+```
+
+
+## Values
+
+| Name | Value |
+| ------------- | ------------- |
+| `Assigned` | Assigned |
+| `Active` | Active |
+| `Deactivated` | Deactivated |
+| `Deleted` | Deleted |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/BadgeStatusJson.md b/packages/csharp/docs/Models/Components/BadgeStatusJson.md
deleted file mode 100644
index 101c403c..00000000
--- a/packages/csharp/docs/Models/Components/BadgeStatusJson.md
+++ /dev/null
@@ -1,21 +0,0 @@
-# BadgeStatusJson
-
-Badge status
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = BadgeStatusJson.Assigned;
-```
-
-
-## Values
-
-| Name | Value |
-| ------------- | ------------- |
-| `Assigned` | Assigned |
-| `Active` | Active |
-| `Deactivated` | Deactivated |
-| `Deleted` | Deleted |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/BadgeType.md b/packages/csharp/docs/Models/Components/BadgeType.md
new file mode 100644
index 00000000..c28fd6c2
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/BadgeType.md
@@ -0,0 +1,19 @@
+# BadgeType
+
+Badge type
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = BadgeType.Epc;
+```
+
+
+## Values
+
+| Name | Value |
+| ----- | ----- |
+| `Epc` | Epc |
+| `Qr` | Qr |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/BadgeTypeJson.md b/packages/csharp/docs/Models/Components/BadgeTypeJson.md
deleted file mode 100644
index aa7f129c..00000000
--- a/packages/csharp/docs/Models/Components/BadgeTypeJson.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# BadgeTypeJson
-
-Badge type
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = BadgeTypeJson.Epc;
-```
-
-
-## Values
-
-| Name | Value |
-| ----- | ----- |
-| `Epc` | Epc |
-| `Qr` | Qr |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/BaseChoice.md b/packages/csharp/docs/Models/Components/BaseChoice.md
new file mode 100644
index 00000000..88137bd8
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/BaseChoice.md
@@ -0,0 +1,11 @@
+# BaseChoice
+
+A JSON schema representing a base 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 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/BaseChoiceJson.md b/packages/csharp/docs/Models/Components/BaseChoiceJson.md
deleted file mode 100644
index e00e3567..00000000
--- a/packages/csharp/docs/Models/Components/BaseChoiceJson.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# BaseChoiceJson
-
-A JSON schema representing a base 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 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/BoothStaff.md b/packages/csharp/docs/Models/Components/BoothStaff.md
new file mode 100644
index 00000000..5754ac32
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/BoothStaff.md
@@ -0,0 +1,10 @@
+# BoothStaff
+
+A JSON schema representing Booth Staff entity
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
+| `Id` | *string* | :heavy_minus_sign: | Booth Staff id | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/BoothStaffListResponse.md b/packages/csharp/docs/Models/Components/BoothStaffListResponse.md
index 29cef323..4316abdd 100644
--- a/packages/csharp/docs/Models/Components/BoothStaffListResponse.md
+++ b/packages/csharp/docs/Models/Components/BoothStaffListResponse.md
@@ -5,7 +5,7 @@ Represents the booth staff list response, with paging information and a list of
## Fields
-| Field | Type | Required | Description |
-| --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- |
-| `Paging` | [PagingJson](../../Models/Components/PagingJson.md) | :heavy_minus_sign: | Represents pagination information for a collection of resources. |
-| `Data` | List<[ExistingBoothStaffJson](../../Models/Components/ExistingBoothStaffJson.md)> | :heavy_minus_sign: | List of booth staff. |
\ 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<[BoothStaffResponse](../../Models/Components/BoothStaffResponse.md)> | :heavy_minus_sign: | List of booth staff. |
\ 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 d0fc977c..608190bc 100644
--- a/packages/csharp/docs/Models/Components/BoothStaffRequest.md
+++ b/packages/csharp/docs/Models/Components/BoothStaffRequest.md
@@ -5,8 +5,8 @@ A JSON schema representing booth staff.
## Fields
-| Field | Type | Required | Description |
-| --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- |
-| `Attendee` | [AttendeeJson3](../../Models/Components/AttendeeJson3.md) | :heavy_check_mark: | A JSON Schema for an Attendee object |
-| `Event` | [EventJson6](../../Models/Components/EventJson6.md) | :heavy_check_mark: | The Associated Event. |
-| `Exhibitor` | [ExhibitorJson](../../Models/Components/ExhibitorJson.md) | :heavy_check_mark: | The Associated Exhibitor. |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- |
+| `Attendee` | [Attendee2](../../Models/Components/Attendee2.md) | :heavy_check_mark: | The associated Attendee. |
+| `Event` | [Event1](../../Models/Components/Event1.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 7089d928..3fc902e4 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` | [AttendeeJson3](../../Models/Components/AttendeeJson3.md) | :heavy_check_mark: | A JSON Schema for an Attendee object | |
-| `Event` | [EventJson6](../../Models/Components/EventJson6.md) | :heavy_check_mark: | The Associated Event. | |
-| `Exhibitor` | [ExhibitorJson](../../Models/Components/ExhibitorJson.md) | :heavy_check_mark: | The Associated Exhibitor. | |
+| `Attendee` | [Attendee2](../../Models/Components/Attendee2.md) | :heavy_check_mark: | The associated Attendee. | |
+| `Event` | [Event1](../../Models/Components/Event1.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/Brand.md b/packages/csharp/docs/Models/Components/Brand.md
index 47fb66f5..bfb849ea 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` | [AddressJson5](../../Models/Components/AddressJson5.md) | :heavy_minus_sign: | A physical address. | |
+| `Address` | [AddressJson4](../../Models/Components/AddressJson4.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/Capacity.md b/packages/csharp/docs/Models/Components/Capacity.md
new file mode 100644
index 00000000..137d09e7
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Capacity.md
@@ -0,0 +1,11 @@
+# Capacity
+
+Registration capacity object containing registration type and reserved capacity
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- |
+| `RegistrationType` | [CapacityRegistrationType](../../Models/Components/CapacityRegistrationType.md) | :heavy_check_mark: | Registration type information | |
+| `ReservedCapacity` | *long* | :heavy_check_mark: | Reserved capacity of the registration type for an exhibitor | 5 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/CapacityJson.md b/packages/csharp/docs/Models/Components/CapacityJson.md
index 6ffd0681..e39be242 100644
--- a/packages/csharp/docs/Models/Components/CapacityJson.md
+++ b/packages/csharp/docs/Models/Components/CapacityJson.md
@@ -1,11 +1,12 @@
# CapacityJson
-Registration capacity object containing registration type and reserved capacity
+Represents capacity statistics of the registration type.
## Fields
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- |
-| `RegistrationType` | [CapacityJsonRegistrationType](../../Models/Components/CapacityJsonRegistrationType.md) | :heavy_check_mark: | Registration type information | |
-| `ReservedCapacity` | *long* | :heavy_check_mark: | Reserved capacity of the registration type for an exhibitor | 5 |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Remaining` | *long* | :heavy_minus_sign: | The remaining capacity of an event item, such as registration type. A value of -1 denotes that remaining capacity is unlimited. A value less than 0 if total capacity is greater than 0 shows that the consumed capacity has surpassed the total capacity. | 100 |
+| `Consumed` | *long* | :heavy_minus_sign: | The consumed capacity of an event item, such as registration type. | 100 |
+| `Total` | *long* | :heavy_check_mark: | The total capacity of an event item, such as registration type. A value of -1 denotes unlimited capacity. | 100 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/CapacityJson1.md b/packages/csharp/docs/Models/Components/CapacityJson1.md
deleted file mode 100644
index 7e0aff28..00000000
--- a/packages/csharp/docs/Models/Components/CapacityJson1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# CapacityJson1
-
-Represents capacity statistics of the registration type.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Remaining` | *long* | :heavy_minus_sign: | The remaining capacity of an event item, such as registration type. A value of -1 denotes that remaining capacity is unlimited. A value less than 0 if total capacity is greater than 0 shows that the consumed capacity has surpassed the total capacity. | 100 |
-| `Consumed` | *long* | :heavy_minus_sign: | The consumed capacity of an event item, such as registration type. | 100 |
-| `Total` | *long* | :heavy_check_mark: | The total capacity of an event item, such as registration type. A value of -1 denotes unlimited capacity. | 100 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/CapacityJson1Input.md b/packages/csharp/docs/Models/Components/CapacityJson1Input.md
deleted file mode 100644
index 5c0c5aaf..00000000
--- a/packages/csharp/docs/Models/Components/CapacityJson1Input.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# CapacityJson1Input
-
-Represents capacity statistics of the registration type.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- |
-| `Total` | *long* | :heavy_check_mark: | The total capacity of an event item, such as registration type. A value of -1 denotes unlimited capacity. | 100 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/CapacityJsonInput.md b/packages/csharp/docs/Models/Components/CapacityJsonInput.md
new file mode 100644
index 00000000..c1286bcb
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/CapacityJsonInput.md
@@ -0,0 +1,10 @@
+# CapacityJsonInput
+
+Represents capacity statistics of the registration type.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- |
+| `Total` | *long* | :heavy_check_mark: | The total capacity of an event item, such as registration type. A value of -1 denotes unlimited capacity. | 100 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/CapacityJsonRegistrationType.md b/packages/csharp/docs/Models/Components/CapacityJsonRegistrationType.md
deleted file mode 100644
index bdd504a4..00000000
--- a/packages/csharp/docs/Models/Components/CapacityJsonRegistrationType.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# CapacityJsonRegistrationType
-
-Registration type information
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
-| `Id` | *string* | :heavy_check_mark: | Registration type id | 923d5629-3cac-40c2-8237-34937dd93475 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/CapacityRegistrationType.md b/packages/csharp/docs/Models/Components/CapacityRegistrationType.md
new file mode 100644
index 00000000..e942bd3a
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/CapacityRegistrationType.md
@@ -0,0 +1,10 @@
+# CapacityRegistrationType
+
+Registration type information
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
+| `Id` | *string* | :heavy_check_mark: | Registration type id | 923d5629-3cac-40c2-8237-34937dd93475 |
\ 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 55b8aae5..bd3f5c4b 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` | [AddressJson5](../../Models/Components/AddressJson5.md) | :heavy_minus_sign: | A physical address. | |
+| `Address` | [AddressJson4](../../Models/Components/AddressJson4.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 79377a63..e94ac7cc 100644
--- a/packages/csharp/docs/Models/Components/Choice.md
+++ b/packages/csharp/docs/Models/Components/Choice.md
@@ -1,10 +1,12 @@
# Choice
-The choice that was selected.
+A schema representing a choice object
## Fields
-| Field | Type | Required | Description |
-| --------------------------------------- | --------------------------------------- | --------------------------------------- | --------------------------------------- |
-| `Id` | *string* | :heavy_minus_sign: | The ID of the choice that was selected. |
\ No newline at end of file
+| 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/ChoiceJson2.md b/packages/csharp/docs/Models/Components/ChoiceJson2.md
index caaa3fea..122d169f 100644
--- a/packages/csharp/docs/Models/Components/ChoiceJson2.md
+++ b/packages/csharp/docs/Models/Components/ChoiceJson2.md
@@ -1,12 +1,13 @@
# ChoiceJson2
-A schema representing a choice object
+A survey 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 | 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/ChoiceJson3.md b/packages/csharp/docs/Models/Components/ChoiceJson3.md
index 4ae636af..bed120c1 100644
--- a/packages/csharp/docs/Models/Components/ChoiceJson3.md
+++ b/packages/csharp/docs/Models/Components/ChoiceJson3.md
@@ -1,13 +1,11 @@
# ChoiceJson3
-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/ChoiceJson3Input.md b/packages/csharp/docs/Models/Components/ChoiceJson3Input.md
new file mode 100644
index 00000000..26f9ebae
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ChoiceJson3Input.md
@@ -0,0 +1,10 @@
+# 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/ChoiceJson4.md b/packages/csharp/docs/Models/Components/ChoiceJson4.md
deleted file mode 100644
index e59e0f9c..00000000
--- a/packages/csharp/docs/Models/Components/ChoiceJson4.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# ChoiceJson4
-
-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/ChoiceJson4Input.md b/packages/csharp/docs/Models/Components/ChoiceJson4Input.md
deleted file mode 100644
index f2b82ed0..00000000
--- a/packages/csharp/docs/Models/Components/ChoiceJson4Input.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# ChoiceJson4Input
-
-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/Choices.md b/packages/csharp/docs/Models/Components/Choices.md
index ac01c8a5..88c4d7f5 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<[ChoiceJson4Input](../../Models/Components/ChoiceJson4Input.md)> | :heavy_minus_sign: | Choices of custom fields. |
+| `ChoicesValue` | List<[ChoiceJson3Input](../../Models/Components/ChoiceJson3Input.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/Compliance.md b/packages/csharp/docs/Models/Components/Compliance.md
new file mode 100644
index 00000000..d20f8102
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Compliance.md
@@ -0,0 +1,13 @@
+# Compliance
+
+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` | [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
diff --git a/packages/csharp/docs/Models/Components/ComplianceAction.md b/packages/csharp/docs/Models/Components/ComplianceAction.md
new file mode 100644
index 00000000..00db37a9
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ComplianceAction.md
@@ -0,0 +1,19 @@
+# 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
new file mode 100644
index 00000000..93da2312
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ComplianceComplianceScope.md
@@ -0,0 +1,18 @@
+# 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
new file mode 100644
index 00000000..a7e89478
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ComplianceCreatedBy.md
@@ -0,0 +1,27 @@
+# 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
index 1ffcd58b..1fa38103 100644
--- a/packages/csharp/docs/Models/Components/ComplianceJson.md
+++ b/packages/csharp/docs/Models/Components/ComplianceJson.md
@@ -5,9 +5,9 @@ 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` | [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
+| 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
new file mode 100644
index 00000000..66a21ae1
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ComplianceJsonAction.md
@@ -0,0 +1,19 @@
+# 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
new file mode 100644
index 00000000..29528258
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ComplianceJsonComplianceScope.md
@@ -0,0 +1,18 @@
+# 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
new file mode 100644
index 00000000..42998070
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ComplianceJsonCreatedBy.md
@@ -0,0 +1,27 @@
+# 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
deleted file mode 100644
index e535b90b..00000000
--- a/packages/csharp/docs/Models/Components/ComplianceScope.md
+++ /dev/null
@@ -1,18 +0,0 @@
-# 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/ContactLinks.md b/packages/csharp/docs/Models/Components/ContactLinks.md
new file mode 100644
index 00000000..51909b5b
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ContactLinks.md
@@ -0,0 +1,13 @@
+# ContactLinks
+
+A JSON schema representing contact links, including Twitter, Facebook, and LinkedIn URLs.
+
+
+## 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. |
+| `InstagramUrl` | [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/ContactLinksJson2.md b/packages/csharp/docs/Models/Components/ContactLinksJson2.md
deleted file mode 100644
index b7d327c9..00000000
--- a/packages/csharp/docs/Models/Components/ContactLinksJson2.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# ContactLinksJson2
-
-A JSON schema representing contact links, including Twitter, Facebook, and LinkedIn URLs.
-
-
-## 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. |
-| `InstagramUrl` | [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/CreatedBy.md b/packages/csharp/docs/Models/Components/CreatedBy.md
deleted file mode 100644
index b42c5174..00000000
--- a/packages/csharp/docs/Models/Components/CreatedBy.md
+++ /dev/null
@@ -1,27 +0,0 @@
-# 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/Device.md b/packages/csharp/docs/Models/Components/Device.md
new file mode 100644
index 00000000..be1089f2
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Device.md
@@ -0,0 +1,11 @@
+# Device
+
+A JSON object representing an electronic device used to capture leads.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| --------------------------------------- | --------------------------------------- | --------------------------------------- | --------------------------------------- | --------------------------------------- |
+| `Id` | *string* | :heavy_minus_sign: | The id of device used to capture lead | EKEK993IF9F |
+| `Name` | *string* | :heavy_minus_sign: | The name of device used to capture lead | North Gate |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ELiteratureDocument.md b/packages/csharp/docs/Models/Components/ELiteratureDocument.md
new file mode 100644
index 00000000..752c5105
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ELiteratureDocument.md
@@ -0,0 +1,12 @@
+# ELiteratureDocument
+
+A JSON schema representing an E-literature Document
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- |
+| `Id` | *string* | :heavy_check_mark: | Document identifier | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `DisplayName` | *string* | :heavy_check_mark: | Document display name | Marketing Material |
+| `Type` | [ELiteratureDocumentType](../../Models/Components/ELiteratureDocumentType.md) | :heavy_check_mark: | Type of eliterature document | FILE |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ELiteratureDocumentType.md b/packages/csharp/docs/Models/Components/ELiteratureDocumentType.md
new file mode 100644
index 00000000..de446ca0
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ELiteratureDocumentType.md
@@ -0,0 +1,19 @@
+# ELiteratureDocumentType
+
+Type of eliterature document
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = ELiteratureDocumentType.File;
+```
+
+
+## Values
+
+| Name | Value |
+| ------ | ------ |
+| `File` | FILE |
+| `Link` | LINK |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/EliteratureDocumentJson.md b/packages/csharp/docs/Models/Components/EliteratureDocumentJson.md
deleted file mode 100644
index 8e09b1f1..00000000
--- a/packages/csharp/docs/Models/Components/EliteratureDocumentJson.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# EliteratureDocumentJson
-
-A JSON schema representing an E-literature Document
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_check_mark: | Document identifier | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `DisplayName` | *string* | :heavy_check_mark: | Document display name | Marketing Material |
-| `Type` | [EliteratureDocumentJsonType](../../Models/Components/EliteratureDocumentJsonType.md) | :heavy_check_mark: | Type of eliterature document | FILE |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/EliteratureDocumentJsonType.md b/packages/csharp/docs/Models/Components/EliteratureDocumentJsonType.md
deleted file mode 100644
index 3f4ce3aa..00000000
--- a/packages/csharp/docs/Models/Components/EliteratureDocumentJsonType.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# EliteratureDocumentJsonType
-
-Type of eliterature document
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = EliteratureDocumentJsonType.File;
-```
-
-
-## Values
-
-| Name | Value |
-| ------ | ------ |
-| `File` | FILE |
-| `Link` | LINK |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/EliteratureRequestPaginatedResponse.md b/packages/csharp/docs/Models/Components/EliteratureRequestPaginatedResponse.md
index 061a197b..5afe19ad 100644
--- a/packages/csharp/docs/Models/Components/EliteratureRequestPaginatedResponse.md
+++ b/packages/csharp/docs/Models/Components/EliteratureRequestPaginatedResponse.md
@@ -5,7 +5,7 @@ A paginated response for E-literature requests.
## Fields
-| Field | Type | Required | Description |
-| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- |
-| `Paging` | [PagingJson](../../Models/Components/PagingJson.md) | :heavy_minus_sign: | Represents pagination information for a collection of resources. |
-| `Data` | List<[ExistingEliteratureRequestDataJson](../../Models/Components/ExistingEliteratureRequestDataJson.md)> | :heavy_minus_sign: | Collection of E-literature request data. |
\ 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<[ExistingELiteratureRequestDataForLead](../../Models/Components/ExistingELiteratureRequestDataForLead.md)> | :heavy_minus_sign: | Collection of E-literature request data. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Event1.md b/packages/csharp/docs/Models/Components/Event1.md
new file mode 100644
index 00000000..9efe8909
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Event1.md
@@ -0,0 +1,10 @@
+# Event1
+
+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/EventBannerLinkClicked.md b/packages/csharp/docs/Models/Components/EventBannerLinkClicked.md
index 0701f459..d4c3a4d0 100644
--- a/packages/csharp/docs/Models/Components/EventBannerLinkClicked.md
+++ b/packages/csharp/docs/Models/Components/EventBannerLinkClicked.md
@@ -7,7 +7,7 @@ The link on the banner clicked by an attendee.
| Field | Type | Required | Description | Example |
| ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- |
-| `Exhibitor` | [ExhibitorJson1](../../Models/Components/ExhibitorJson1.md) | :heavy_minus_sign: | An exhibitor. | |
+| `Exhibitor` | [ExhibitorJson](../../Models/Components/ExhibitorJson.md) | :heavy_minus_sign: | An exhibitor. | |
| `Platform` | *string* | :heavy_minus_sign: | The platform used by the user. | Attendee Hub |
| `Banner` | [Banner](../../Models/Components/Banner.md) | :heavy_minus_sign: | The related banner | |
| `Target` | [BannerLinkTargetJson](../../Models/Components/BannerLinkTargetJson.md) | :heavy_minus_sign: | The target of the link clicked on the banner. | |
\ 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 0a2ad76a..3ed8185e 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` | [PagingJson25](../../Models/Components/PagingJson25.md) | :heavy_check_mark: | Represents pagination information for a collection of resources. |
+| `Paging` | [PagingJson23](../../Models/Components/PagingJson23.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/EventFeatureJson.md b/packages/csharp/docs/Models/Components/EventFeatureJson.md
index a0e8de37..3e1c4eba 100644
--- a/packages/csharp/docs/Models/Components/EventFeatureJson.md
+++ b/packages/csharp/docs/Models/Components/EventFeatureJson.md
@@ -5,13 +5,13 @@ Representation of an event's feature along with its properties
## Fields
-| Field | Type | Required | Description | Example |
-| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Type` | [FeatureTypeJson](../../Models/Components/FeatureTypeJson.md) | :heavy_check_mark: | The type of feature available for a container event.
\| Value \| Description \|
\|-------\|-------------\|
\| `Website` \| Allows you to promote your event with a customizable series of pages. \|
\| `Registration` \| Allows attendees to sign up for your event ahead of time. Once done, they can modify their details or cancel altogether if you allow it. \|
\| `OnArrival` \| Adds several options designed to make supporting your live event as smooth as possible. \|
\| `AttendeeHub` \| Delivers the attendee-facing website and mobile app with agenda/content, engagement tools (live Q&A, polls, gamification), and networking—launchable independently of registration. \|
\| `Appointments` \| Enables attendees, exhibitors, and staff to schedule and manage 1:1 meetings within Attendee Hub. \|
\| `Planning` \| Adds new ways to stay organized behind the scenes throughout the entire event process. \|
\| `Agenda` \| Allows you to manage the breakouts, presentations, or activities (known in Cvent as sessions) that make up your event. \|
\| `Travel` \| Allows you to easily collect and manage invitees' hotel and flight preferences. \|
\| `Marketing` \| Allows planners to create, personalize, and automate branded event emails (invites, reminders, confirmations) and track performance to drive registrations and engagement. \|
\| `Surveys` \| Adds a customizable questionnaire you can use to gather feedback. \|
\| `Speakers` \| Allows you to showcase and manage all the headliners, keynoters, presenters, and moderators contributing to your event. \|
\| `Exhibitors` \| Centralizes exhibitor setup—profiles, tasks, content/categories—and booth staff and LeadCapture management, with exhibitor listings and engagement surfaced in Attendee Hub. \|
\| `Vendors` \| Allows planners to source and manage event services directly from the container event. \|
\| `EventAds` \| Allows planners to create, place, and track targeted ads across Attendee Hub and the event app. \|
\| `EventCredits` \| Allows planners to set rules and track credits attendees earn for sessions and the event. \| | Registration |
-| `Enabled` | *bool* | :heavy_check_mark: | If a particular feature is enabled for the event | true |
-| `Locked` | *bool* | :heavy_check_mark: | If a particular feature is locked to perform any mutation over it | true |
-| `LockedReason` | *string* | :heavy_minus_sign: | Generic message informing feature is locked due to some sub-feature/child feature in use | Your event is already using some Registration features |
-| `EnabledTier` | [TierJson](../../Models/Components/TierJson.md) | :heavy_minus_sign: | Represents the type of license that the user can choose. | PREMIER |
-| `AvailableTiers` | List<[FeatureTierJson](../../Models/Components/FeatureTierJson.md)> | :heavy_minus_sign: | Available feature tiers. | |
-| `Config` | [EventFeatureJsonConfig](../../Models/Components/EventFeatureJsonConfig.md) | :heavy_minus_sign: | Feature configuration. | |
-| `Weblink` | *string* | :heavy_minus_sign: | URL of the feature's webpage. | https://cvent.me/XX51b9 |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Type` | [FeatureTypeJson](../../Models/Components/FeatureTypeJson.md) | :heavy_check_mark: | The type of feature available for a container event.
\| Value \| Description \|
\|-------\|-------------\|
\| `Website` \| Allows you to promote your event with a customizable series of pages. \|
\| `Registration` \| Allows attendees to sign up for your event ahead of time. Once done, they can modify their details or cancel altogether if you allow it. \|
\| `OnArrival` \| Adds several options designed to make supporting your live event as smooth as possible. \|
\| `AttendeeHub` \| Delivers the attendee-facing website and mobile app with agenda/content, engagement tools (live Q&A, polls, gamification), and networking—launchable independently of registration. \|
\| `Appointments` \| Enables attendees, exhibitors, and staff to schedule and manage 1:1 meetings within Attendee Hub. \|
\| `Planning` \| Adds new ways to stay organized behind the scenes throughout the entire event process. \|
\| `Agenda` \| Allows you to manage the breakouts, presentations, or activities (known in Cvent as sessions) that make up your event. \|
\| `Travel` \| Allows you to easily collect and manage invitees' hotel and flight preferences. \|
\| `Marketing` \| Allows planners to create, personalize, and automate branded event emails (invites, reminders, confirmations) and track performance to drive registrations and engagement. \|
\| `Surveys` \| Adds a customizable questionnaire you can use to gather feedback. \|
\| `Speakers` \| Allows you to showcase and manage all the headliners, keynoters, presenters, and moderators contributing to your event. \|
\| `Exhibitors` \| Centralizes exhibitor setup—profiles, tasks, content/categories—and booth staff and LeadCapture management, with exhibitor listings and engagement surfaced in Attendee Hub. \|
\| `Vendors` \| Allows planners to source and manage event services directly from the container event. \|
\| `EventAds` \| Allows planners to create, place, and track targeted ads across Attendee Hub and the event app. \|
\| `EventCredits` \| Allows planners to set rules and track credits attendees earn for sessions and the event. Only one of `EventCredits` or `CreditsAndCertificates` can be active at a time. \|
\| `CreditsAndCertificates` \| Allows planners to create credit rules, link them to events and sessions, and award credits to attendees. Also enables creating certificates, linking them to credit rules, and awarding them to attendees. Only one of `EventCredits` or `CreditsAndCertificates` can be active at a time. \| | Registration |
+| `Enabled` | *bool* | :heavy_check_mark: | If a particular feature is enabled for the event | true |
+| `Locked` | *bool* | :heavy_check_mark: | If a particular feature is locked to perform any mutation over it | true |
+| `LockedReason` | *string* | :heavy_minus_sign: | Generic message informing feature is locked due to some sub-feature/child feature in use | Your event is already using some Registration features |
+| `EnabledTier` | [TierJson](../../Models/Components/TierJson.md) | :heavy_minus_sign: | Represents the type of license that the user can choose. | PREMIER |
+| `AvailableTiers` | List<[FeatureTierJson](../../Models/Components/FeatureTierJson.md)> | :heavy_minus_sign: | Available feature tiers. | |
+| `Config` | [EventFeatureJsonConfig](../../Models/Components/EventFeatureJsonConfig.md) | :heavy_minus_sign: | Feature configuration. | |
+| `Weblink` | *string* | :heavy_minus_sign: | URL of the feature's webpage. | https://cvent.me/XX51b9 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/EventFeaturesResponse.md b/packages/csharp/docs/Models/Components/EventFeaturesResponse.md
index 43f140aa..c65aea4f 100644
--- a/packages/csharp/docs/Models/Components/EventFeaturesResponse.md
+++ b/packages/csharp/docs/Models/Components/EventFeaturesResponse.md
@@ -5,13 +5,13 @@ Representation of an event's feature along with its properties
## Fields
-| Field | Type | Required | Description | Example |
-| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Type` | [FeatureTypeJson](../../Models/Components/FeatureTypeJson.md) | :heavy_check_mark: | The type of feature available for a container event.
\| Value \| Description \|
\|-------\|-------------\|
\| `Website` \| Allows you to promote your event with a customizable series of pages. \|
\| `Registration` \| Allows attendees to sign up for your event ahead of time. Once done, they can modify their details or cancel altogether if you allow it. \|
\| `OnArrival` \| Adds several options designed to make supporting your live event as smooth as possible. \|
\| `AttendeeHub` \| Delivers the attendee-facing website and mobile app with agenda/content, engagement tools (live Q&A, polls, gamification), and networking—launchable independently of registration. \|
\| `Appointments` \| Enables attendees, exhibitors, and staff to schedule and manage 1:1 meetings within Attendee Hub. \|
\| `Planning` \| Adds new ways to stay organized behind the scenes throughout the entire event process. \|
\| `Agenda` \| Allows you to manage the breakouts, presentations, or activities (known in Cvent as sessions) that make up your event. \|
\| `Travel` \| Allows you to easily collect and manage invitees' hotel and flight preferences. \|
\| `Marketing` \| Allows planners to create, personalize, and automate branded event emails (invites, reminders, confirmations) and track performance to drive registrations and engagement. \|
\| `Surveys` \| Adds a customizable questionnaire you can use to gather feedback. \|
\| `Speakers` \| Allows you to showcase and manage all the headliners, keynoters, presenters, and moderators contributing to your event. \|
\| `Exhibitors` \| Centralizes exhibitor setup—profiles, tasks, content/categories—and booth staff and LeadCapture management, with exhibitor listings and engagement surfaced in Attendee Hub. \|
\| `Vendors` \| Allows planners to source and manage event services directly from the container event. \|
\| `EventAds` \| Allows planners to create, place, and track targeted ads across Attendee Hub and the event app. \|
\| `EventCredits` \| Allows planners to set rules and track credits attendees earn for sessions and the event. \| | Registration |
-| `Enabled` | *bool* | :heavy_check_mark: | If a particular feature is enabled for the event | true |
-| `Locked` | *bool* | :heavy_check_mark: | If a particular feature is locked to perform any mutation over it | true |
-| `LockedReason` | *string* | :heavy_minus_sign: | Generic message informing feature is locked due to some sub-feature/child feature in use | Your event is already using some Registration features |
-| `EnabledTier` | [TierJson](../../Models/Components/TierJson.md) | :heavy_minus_sign: | Represents the type of license that the user can choose. | PREMIER |
-| `AvailableTiers` | List<[FeatureTierJson](../../Models/Components/FeatureTierJson.md)> | :heavy_minus_sign: | Available feature tiers. | |
-| `Config` | [EventFeaturesResponseConfig](../../Models/Components/EventFeaturesResponseConfig.md) | :heavy_minus_sign: | Feature configuration. | |
-| `Weblink` | *string* | :heavy_minus_sign: | URL of the feature's webpage. | https://cvent.me/XX51b9 |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Type` | [FeatureTypeJson](../../Models/Components/FeatureTypeJson.md) | :heavy_check_mark: | The type of feature available for a container event.
\| Value \| Description \|
\|-------\|-------------\|
\| `Website` \| Allows you to promote your event with a customizable series of pages. \|
\| `Registration` \| Allows attendees to sign up for your event ahead of time. Once done, they can modify their details or cancel altogether if you allow it. \|
\| `OnArrival` \| Adds several options designed to make supporting your live event as smooth as possible. \|
\| `AttendeeHub` \| Delivers the attendee-facing website and mobile app with agenda/content, engagement tools (live Q&A, polls, gamification), and networking—launchable independently of registration. \|
\| `Appointments` \| Enables attendees, exhibitors, and staff to schedule and manage 1:1 meetings within Attendee Hub. \|
\| `Planning` \| Adds new ways to stay organized behind the scenes throughout the entire event process. \|
\| `Agenda` \| Allows you to manage the breakouts, presentations, or activities (known in Cvent as sessions) that make up your event. \|
\| `Travel` \| Allows you to easily collect and manage invitees' hotel and flight preferences. \|
\| `Marketing` \| Allows planners to create, personalize, and automate branded event emails (invites, reminders, confirmations) and track performance to drive registrations and engagement. \|
\| `Surveys` \| Adds a customizable questionnaire you can use to gather feedback. \|
\| `Speakers` \| Allows you to showcase and manage all the headliners, keynoters, presenters, and moderators contributing to your event. \|
\| `Exhibitors` \| Centralizes exhibitor setup—profiles, tasks, content/categories—and booth staff and LeadCapture management, with exhibitor listings and engagement surfaced in Attendee Hub. \|
\| `Vendors` \| Allows planners to source and manage event services directly from the container event. \|
\| `EventAds` \| Allows planners to create, place, and track targeted ads across Attendee Hub and the event app. \|
\| `EventCredits` \| Allows planners to set rules and track credits attendees earn for sessions and the event. Only one of `EventCredits` or `CreditsAndCertificates` can be active at a time. \|
\| `CreditsAndCertificates` \| Allows planners to create credit rules, link them to events and sessions, and award credits to attendees. Also enables creating certificates, linking them to credit rules, and awarding them to attendees. Only one of `EventCredits` or `CreditsAndCertificates` can be active at a time. \| | Registration |
+| `Enabled` | *bool* | :heavy_check_mark: | If a particular feature is enabled for the event | true |
+| `Locked` | *bool* | :heavy_check_mark: | If a particular feature is locked to perform any mutation over it | true |
+| `LockedReason` | *string* | :heavy_minus_sign: | Generic message informing feature is locked due to some sub-feature/child feature in use | Your event is already using some Registration features |
+| `EnabledTier` | [TierJson](../../Models/Components/TierJson.md) | :heavy_minus_sign: | Represents the type of license that the user can choose. | PREMIER |
+| `AvailableTiers` | List<[FeatureTierJson](../../Models/Components/FeatureTierJson.md)> | :heavy_minus_sign: | Available feature tiers. | |
+| `Config` | [EventFeaturesResponseConfig](../../Models/Components/EventFeaturesResponseConfig.md) | :heavy_minus_sign: | Feature configuration. | |
+| `Weblink` | *string* | :heavy_minus_sign: | URL of the feature's webpage. | https://cvent.me/XX51b9 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/EventJson11.md b/packages/csharp/docs/Models/Components/EventJson11.md
deleted file mode 100644
index 11df0971..00000000
--- a/packages/csharp/docs/Models/Components/EventJson11.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# EventJson11
-
-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/EventJson2.md b/packages/csharp/docs/Models/Components/EventJson2.md
new file mode 100644
index 00000000..dab2f8b3
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/EventJson2.md
@@ -0,0 +1,10 @@
+# EventJson2
+
+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/EventJson3.md b/packages/csharp/docs/Models/Components/EventJson3.md
index 41208696..999545de 100644
--- a/packages/csharp/docs/Models/Components/EventJson3.md
+++ b/packages/csharp/docs/Models/Components/EventJson3.md
@@ -1,10 +1,10 @@
# EventJson3
-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/EventJson4.md b/packages/csharp/docs/Models/Components/EventJson4.md
deleted file mode 100644
index 6b436b72..00000000
--- a/packages/csharp/docs/Models/Components/EventJson4.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# EventJson4
-
-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/EventJson5.md b/packages/csharp/docs/Models/Components/EventJson5.md
new file mode 100644
index 00000000..2c7a778b
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/EventJson5.md
@@ -0,0 +1,10 @@
+# EventJson5
+
+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/EventJson6.md b/packages/csharp/docs/Models/Components/EventJson6.md
deleted file mode 100644
index b372136a..00000000
--- a/packages/csharp/docs/Models/Components/EventJson6.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# EventJson6
-
-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/EventJson7.md b/packages/csharp/docs/Models/Components/EventJson7.md
index e8d57cf7..b33c1e5c 100644
--- a/packages/csharp/docs/Models/Components/EventJson7.md
+++ b/packages/csharp/docs/Models/Components/EventJson7.md
@@ -1,10 +1,10 @@
# EventJson7
-Detail object of an event which is associated to a survey.
+An event reference used in attendee insights to identify the event context for engagement data
## 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
+| 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/EventJson9.md b/packages/csharp/docs/Models/Components/EventJson9.md
index 50674b27..6e9fb228 100644
--- a/packages/csharp/docs/Models/Components/EventJson9.md
+++ b/packages/csharp/docs/Models/Components/EventJson9.md
@@ -1,10 +1,10 @@
# EventJson9
-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/EventSurveyQuestionJson.md b/packages/csharp/docs/Models/Components/EventSurveyQuestionJson.md
index c2cbd58f..bb4592df 100644
--- a/packages/csharp/docs/Models/Components/EventSurveyQuestionJson.md
+++ b/packages/csharp/docs/Models/Components/EventSurveyQuestionJson.md
@@ -17,14 +17,14 @@ An event survey question.
| `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<[ChoiceJson3](../../Models/Components/ChoiceJson3.md)> | :heavy_minus_sign: | List of choices for the question. | |
+| `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` | [AdditionalChoiceJson2](../../Models/Components/AdditionalChoiceJson2.md) | :heavy_minus_sign: | Contains text of additional choice i.e N/A choice or otherAnswer choice | |
-| `OtherAnswer` | [AdditionalChoiceJson2](../../Models/Components/AdditionalChoiceJson2.md) | :heavy_minus_sign: | Contains text of additional choice i.e N/A choice or otherAnswer choice | |
+| `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<[FieldJson5](../../Models/Components/FieldJson5.md)> | :heavy_minus_sign: | List of fields for form/matrix questions | |
+| `Fields` | List<[FieldJson3](../../Models/Components/FieldJson3.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 f7c2780c..34b1e1f4 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` | [EventJson7](../../Models/Components/EventJson7.md) | :heavy_minus_sign: | Detail object of an event which is associated to a survey. | |
+| `Event` | [EventJson5](../../Models/Components/EventJson5.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 648ee548..aaa6d821 100644
--- a/packages/csharp/docs/Models/Components/EventSurveyResponse.md
+++ b/packages/csharp/docs/Models/Components/EventSurveyResponse.md
@@ -14,9 +14,9 @@ Response object for event survey respondent.
| `Id` | *string* | :heavy_minus_sign: | Response ID | |
| `Respondent` | [EventSurveyResponseUUID](../../Models/Components/EventSurveyResponseUUID.md) | :heavy_minus_sign: | N/A | |
| `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<[AnswerJson1](../../Models/Components/AnswerJson1.md)> | :heavy_check_mark: | List of responded survey answers. | |
+| `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` | [EventJson7](../../Models/Components/EventJson7.md) | :heavy_minus_sign: | Detail object of an event which is associated to a survey. | |
+| `Event` | [EventJson5](../../Models/Components/EventJson5.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/EventSurveyResponseInput.md b/packages/csharp/docs/Models/Components/EventSurveyResponseInput.md
index 74539ec0..74850340 100644
--- a/packages/csharp/docs/Models/Components/EventSurveyResponseInput.md
+++ b/packages/csharp/docs/Models/Components/EventSurveyResponseInput.md
@@ -8,7 +8,7 @@ Response object for event survey respondent.
| Field | Type | Required | Description |
| -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- |
| `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<[AnswerJson1](../../Models/Components/AnswerJson1.md)> | :heavy_check_mark: | List of responded survey answers. |
+| `Answers` | List<[AnswerJson](../../Models/Components/AnswerJson.md)> | :heavy_check_mark: | List of responded survey answers. |
| `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/Exhibitor.md b/packages/csharp/docs/Models/Components/Exhibitor.md
new file mode 100644
index 00000000..7efcd8b1
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Exhibitor.md
@@ -0,0 +1,10 @@
+# Exhibitor
+
+The Associated Exhibitor.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
+| `Id` | *string* | :heavy_check_mark: | Exhibitor id | 4888db54-db22-11eb-8d19-0242ac130003 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExhibitorAddressJson.md b/packages/csharp/docs/Models/Components/ExhibitorAddressJson.md
deleted file mode 100644
index f9ee049c..00000000
--- a/packages/csharp/docs/Models/Components/ExhibitorAddressJson.md
+++ /dev/null
@@ -1,15 +0,0 @@
-# ExhibitorAddressJson
-
-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/ExhibitorAdminRequest.md b/packages/csharp/docs/Models/Components/ExhibitorAdminRequest.md
index 30029dc0..25700bf7 100644
--- a/packages/csharp/docs/Models/Components/ExhibitorAdminRequest.md
+++ b/packages/csharp/docs/Models/Components/ExhibitorAdminRequest.md
@@ -5,9 +5,9 @@ An object representing the exhibitor admin.
## Fields
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- |
-| `Exhibitor` | [ExhibitorJson](../../Models/Components/ExhibitorJson.md) | :heavy_check_mark: | The Associated Exhibitor. | |
-| `FirstName` | *string* | :heavy_check_mark: | The first name of the exhibitor admin | John |
-| `LastName` | *string* | :heavy_check_mark: | The last name of the exhibitor admin | Eddy |
-| `Email` | *string* | :heavy_check_mark: | The email address of the exhibitor admin | john.eddy@test.com |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- |
+| `Exhibitor` | [Models.Components.Exhibitor](../../Models/Components/Exhibitor.md) | :heavy_check_mark: | The Associated Exhibitor. | |
+| `FirstName` | *string* | :heavy_check_mark: | The first name of the exhibitor admin | John |
+| `LastName` | *string* | :heavy_check_mark: | The last name of the exhibitor admin | Eddy |
+| `Email` | *string* | :heavy_check_mark: | The email address of the exhibitor admin | john.eddy@test.com |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExhibitorAdminResponse.md b/packages/csharp/docs/Models/Components/ExhibitorAdminResponse.md
index 423c2dc8..5bac4d58 100644
--- a/packages/csharp/docs/Models/Components/ExhibitorAdminResponse.md
+++ b/packages/csharp/docs/Models/Components/ExhibitorAdminResponse.md
@@ -11,7 +11,7 @@ Existing Exhibitor Admin with an id property
| `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: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
The identifier of the user that last updated this record.This filed is deprecated. | hporter |
-| `Exhibitor` | [ExhibitorJson](../../Models/Components/ExhibitorJson.md) | :heavy_check_mark: | The Associated Exhibitor. | |
+| `Exhibitor` | [Models.Components.Exhibitor](../../Models/Components/Exhibitor.md) | :heavy_check_mark: | The Associated Exhibitor. | |
| `FirstName` | *string* | :heavy_check_mark: | The first name of the exhibitor admin | John |
| `LastName` | *string* | :heavy_check_mark: | The last name of the exhibitor admin | Eddy |
| `Email` | *string* | :heavy_check_mark: | The email address of the exhibitor admin | john.eddy@test.com |
diff --git a/packages/csharp/docs/Models/Components/ExhibitorAdminsListResponse.md b/packages/csharp/docs/Models/Components/ExhibitorAdminsListResponse.md
index 20e2190b..9ac313f8 100644
--- a/packages/csharp/docs/Models/Components/ExhibitorAdminsListResponse.md
+++ b/packages/csharp/docs/Models/Components/ExhibitorAdminsListResponse.md
@@ -5,7 +5,7 @@ Exhibitor Admins List Response schema
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- |
-| `Paging` | [PagingJson](../../Models/Components/PagingJson.md) | :heavy_minus_sign: | Represents pagination information for a collection of resources. |
-| `Data` | List<[ExistingExhibitorAdminJson](../../Models/Components/ExistingExhibitorAdminJson.md)> | :heavy_minus_sign: | List of exhibitor admins. |
\ 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<[ExhibitorAdminResponse](../../Models/Components/ExhibitorAdminResponse.md)> | :heavy_minus_sign: | List of exhibitor admins. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExhibitorAnswerFormat.md b/packages/csharp/docs/Models/Components/ExhibitorAnswerFormat.md
new file mode 100644
index 00000000..0059f7c7
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ExhibitorAnswerFormat.md
@@ -0,0 +1,24 @@
+# ExhibitorAnswerFormat
+
+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'.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = ExhibitorAnswerFormat.Date;
+```
+
+
+## Values
+
+| Name | Value |
+| -------------- | -------------- |
+| `Date` | Date |
+| `DateAndTime` | DateAndTime |
+| `Dropdown` | Dropdown |
+| `EmailAddress` | EmailAddress |
+| `General` | General |
+| `PhoneNumber` | PhoneNumber |
+| `RadioButton` | RadioButton |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExhibitorAnswerFormatJson.md b/packages/csharp/docs/Models/Components/ExhibitorAnswerFormatJson.md
deleted file mode 100644
index 7b40611a..00000000
--- a/packages/csharp/docs/Models/Components/ExhibitorAnswerFormatJson.md
+++ /dev/null
@@ -1,24 +0,0 @@
-# ExhibitorAnswerFormatJson
-
-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'.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = ExhibitorAnswerFormatJson.Date;
-```
-
-
-## Values
-
-| Name | Value |
-| -------------- | -------------- |
-| `Date` | Date |
-| `DateAndTime` | DateAndTime |
-| `Dropdown` | Dropdown |
-| `EmailAddress` | EmailAddress |
-| `General` | General |
-| `PhoneNumber` | PhoneNumber |
-| `RadioButton` | RadioButton |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExhibitorAnswerLimits.md b/packages/csharp/docs/Models/Components/ExhibitorAnswerLimits.md
new file mode 100644
index 00000000..7fb7e927
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ExhibitorAnswerLimits.md
@@ -0,0 +1,13 @@
+# ExhibitorAnswerLimits
+
+Defines the limits for answers to exhibitor questions.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- |
+| `MinLength` | *long* | :heavy_minus_sign: | Minimum length of the answer for OpenEndedTextCommentBox questions. It must be less than or equal to maxLength. | 1 |
+| `MaxLength` | *long* | :heavy_minus_sign: | Maximum length of the answer for OpenEndedTextCommentBox questions. | 2000 |
+| `MinSelections` | *long* | :heavy_minus_sign: | Minimum number of choices required for MultiChoice questions. It must be less than or equal to maxSelections. | 1 |
+| `MaxSelections` | *long* | :heavy_minus_sign: | Maximum number of choices allowed for MultiChoice questions. It cannot exceed the total number of available choices. | 10 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExhibitorAnswerLimitsJson.md b/packages/csharp/docs/Models/Components/ExhibitorAnswerLimitsJson.md
deleted file mode 100644
index d96b718e..00000000
--- a/packages/csharp/docs/Models/Components/ExhibitorAnswerLimitsJson.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# ExhibitorAnswerLimitsJson
-
-Defines the limits for answers to exhibitor questions.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- |
-| `MinLength` | *long* | :heavy_minus_sign: | Minimum length of the answer for OpenEndedTextCommentBox questions. It must be less than or equal to maxLength. | 1 |
-| `MaxLength` | *long* | :heavy_minus_sign: | Maximum length of the answer for OpenEndedTextCommentBox questions. | 2000 |
-| `MinSelections` | *long* | :heavy_minus_sign: | Minimum number of choices required for MultiChoice questions. It must be less than or equal to maxSelections. | 1 |
-| `MaxSelections` | *long* | :heavy_minus_sign: | Maximum number of choices allowed for MultiChoice questions. It cannot exceed the total number of available choices. | 10 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExhibitorAnswersRequest.md b/packages/csharp/docs/Models/Components/ExhibitorAnswersRequest.md
index 59ead4a1..11493c7a 100644
--- a/packages/csharp/docs/Models/Components/ExhibitorAnswersRequest.md
+++ b/packages/csharp/docs/Models/Components/ExhibitorAnswersRequest.md
@@ -5,6 +5,6 @@ An object representing the request for exhibitor answers.
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- |
-| `Data` | List<[ExistingExhibitorAnswerJsonInput](../../Models/Components/ExistingExhibitorAnswerJsonInput.md)> | :heavy_minus_sign: | List of answers for all exhibitor questions. |
\ No newline at end of file
+| Field | Type | Required | Description |
+| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- |
+| `Data` | List<[ExistingExhibitorAnswerInput](../../Models/Components/ExistingExhibitorAnswerInput.md)> | :heavy_minus_sign: | List of answers for all exhibitor questions. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExhibitorAnswersResponse.md b/packages/csharp/docs/Models/Components/ExhibitorAnswersResponse.md
index ae3ed804..60112c97 100644
--- a/packages/csharp/docs/Models/Components/ExhibitorAnswersResponse.md
+++ b/packages/csharp/docs/Models/Components/ExhibitorAnswersResponse.md
@@ -5,6 +5,6 @@ A response object containing a list of exhibitor question answers.
## Fields
-| Field | Type | Required | Description |
-| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- |
-| `Data` | List<[ExistingExhibitorAnswerJson](../../Models/Components/ExistingExhibitorAnswerJson.md)> | :heavy_minus_sign: | List of answers for all exhibitor questions. |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- |
+| `Data` | List<[ExistingExhibitorAnswer](../../Models/Components/ExistingExhibitorAnswer.md)> | :heavy_minus_sign: | List of answers for all exhibitor questions. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExhibitorCategoriesPaginatedResponse.md b/packages/csharp/docs/Models/Components/ExhibitorCategoriesPaginatedResponse.md
index da74f5c3..ebd1d81d 100644
--- a/packages/csharp/docs/Models/Components/ExhibitorCategoriesPaginatedResponse.md
+++ b/packages/csharp/docs/Models/Components/ExhibitorCategoriesPaginatedResponse.md
@@ -5,7 +5,7 @@ The response object containing the paginated list of exhibitor categories.
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- |
-| `Paging` | [PagingJson](../../Models/Components/PagingJson.md) | :heavy_minus_sign: | Represents pagination information for a collection of resources. |
-| `Data` | List<[ExistingExhibitorCategoryJson](../../Models/Components/ExistingExhibitorCategoryJson.md)> | :heavy_minus_sign: | Paginated list of all exhibitor categories for an event. |
\ 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<[ExhibitorCategoryResponse](../../Models/Components/ExhibitorCategoryResponse.md)> | :heavy_minus_sign: | Paginated list of all exhibitor categories for an event. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExhibitorCategoryId.md b/packages/csharp/docs/Models/Components/ExhibitorCategoryId.md
new file mode 100644
index 00000000..9c23b972
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ExhibitorCategoryId.md
@@ -0,0 +1,10 @@
+# ExhibitorCategoryId
+
+Schema for Exhibitor Category ID.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
+| `Id` | *string* | :heavy_minus_sign: | ID of exhibitor category. | 534a465b-b4cb-471d-9498-4bf3917ad8bf |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExhibitorCategoryIdJson.md b/packages/csharp/docs/Models/Components/ExhibitorCategoryIdJson.md
deleted file mode 100644
index 82af013a..00000000
--- a/packages/csharp/docs/Models/Components/ExhibitorCategoryIdJson.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# ExhibitorCategoryIdJson
-
-Schema for Exhibitor Category ID.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
-| `Id` | *string* | :heavy_minus_sign: | ID of exhibitor category. | 534a465b-b4cb-471d-9498-4bf3917ad8bf |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExhibitorCategoryIdListResponse.md b/packages/csharp/docs/Models/Components/ExhibitorCategoryIdListResponse.md
index 8bb95f2a..3ca4bb4b 100644
--- a/packages/csharp/docs/Models/Components/ExhibitorCategoryIdListResponse.md
+++ b/packages/csharp/docs/Models/Components/ExhibitorCategoryIdListResponse.md
@@ -5,7 +5,7 @@ A paginated response containing a list of exhibitor category Ids.
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- |
-| `Paging` | [PagingJson](../../Models/Components/PagingJson.md) | :heavy_minus_sign: | Represents pagination information for a collection of resources. |
-| `Data` | List<[ExhibitorCategoryIdJson](../../Models/Components/ExhibitorCategoryIdJson.md)> | :heavy_minus_sign: | Paginated list of exhibitor category Ids for an exhibitor. |
\ 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<[ExhibitorCategoryId](../../Models/Components/ExhibitorCategoryId.md)> | :heavy_minus_sign: | Paginated list of exhibitor category Ids for an exhibitor. |
\ 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 8d223623..3cb848c4 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` | [EventJson6](../../Models/Components/EventJson6.md) | :heavy_check_mark: | The Associated Event. | |
+| `Event` | [Event1](../../Models/Components/Event1.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 be5b0d0e..a01e5a2b 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` | [EventJson6](../../Models/Components/EventJson6.md) | :heavy_check_mark: | The Associated Event. | |
+| `Event` | [Event1](../../Models/Components/Event1.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/ExhibitorDocumentOpened.md b/packages/csharp/docs/Models/Components/ExhibitorDocumentOpened.md
index 136c8160..e849342f 100644
--- a/packages/csharp/docs/Models/Components/ExhibitorDocumentOpened.md
+++ b/packages/csharp/docs/Models/Components/ExhibitorDocumentOpened.md
@@ -7,6 +7,6 @@ An exhibitor document-opened activity.
| Field | Type | Required | Description | Example |
| ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- |
-| `Exhibitor` | [ExhibitorJson1](../../Models/Components/ExhibitorJson1.md) | :heavy_minus_sign: | An exhibitor. | |
+| `Exhibitor` | [ExhibitorJson](../../Models/Components/ExhibitorJson.md) | :heavy_minus_sign: | An exhibitor. | |
| `Platform` | *string* | :heavy_minus_sign: | The platform used by the user. | Attendee Hub |
| `Document` | [ActivityExhibitorDocumentJson](../../Models/Components/ActivityExhibitorDocumentJson.md) | :heavy_minus_sign: | Document for an activity exhibitor. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExhibitorId.md b/packages/csharp/docs/Models/Components/ExhibitorId.md
new file mode 100644
index 00000000..0a82850f
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ExhibitorId.md
@@ -0,0 +1,10 @@
+# ExhibitorId
+
+A JSON Schema representation of an exhibitor ID.
+
+
+## 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 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExhibitorIdJson.md b/packages/csharp/docs/Models/Components/ExhibitorIdJson.md
deleted file mode 100644
index f8609666..00000000
--- a/packages/csharp/docs/Models/Components/ExhibitorIdJson.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# ExhibitorIdJson
-
-A JSON Schema representation of an exhibitor ID.
-
-
-## 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 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExhibitorIdListResponse.md b/packages/csharp/docs/Models/Components/ExhibitorIdListResponse.md
index 27170978..e0132581 100644
--- a/packages/csharp/docs/Models/Components/ExhibitorIdListResponse.md
+++ b/packages/csharp/docs/Models/Components/ExhibitorIdListResponse.md
@@ -5,7 +5,7 @@ Exhibitor Id Paginated Response schema
## Fields
-| Field | Type | Required | Description |
-| ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- |
-| `Paging` | [PagingJson](../../Models/Components/PagingJson.md) | :heavy_minus_sign: | Represents pagination information for a collection of resources. |
-| `Data` | List<[ExhibitorIdJson](../../Models/Components/ExhibitorIdJson.md)> | :heavy_minus_sign: | Paginated list of exhibitor Ids for an exhibitor category. |
\ 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<[ExhibitorId](../../Models/Components/ExhibitorId.md)> | :heavy_minus_sign: | Paginated list of exhibitor Ids for an exhibitor category. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExhibitorJson.md b/packages/csharp/docs/Models/Components/ExhibitorJson.md
index 3e68a676..6c2b4166 100644
--- a/packages/csharp/docs/Models/Components/ExhibitorJson.md
+++ b/packages/csharp/docs/Models/Components/ExhibitorJson.md
@@ -1,10 +1,13 @@
# ExhibitorJson
-The Associated Exhibitor.
+An exhibitor.
## Fields
-| Field | Type | Required | Description | Example |
-| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
-| `Id` | *string* | :heavy_check_mark: | Exhibitor id | 4888db54-db22-11eb-8d19-0242ac130003 |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| --------------------------------------- | --------------------------------------- | --------------------------------------- | --------------------------------------- | --------------------------------------- |
+| `Id` | *string* | :heavy_minus_sign: | The unique identifier of the exhibitor. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `Name` | *string* | :heavy_minus_sign: | The Name of an exhibitor. | AutoExpo |
+| `Featured` | *bool* | :heavy_minus_sign: | If the exhibitor is featured. | true |
+| `EventSponsor` | *bool* | :heavy_minus_sign: | If the exhibitor is an event sponsor. | true |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExhibitorJson1.md b/packages/csharp/docs/Models/Components/ExhibitorJson1.md
deleted file mode 100644
index 38c0f19d..00000000
--- a/packages/csharp/docs/Models/Components/ExhibitorJson1.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# ExhibitorJson1
-
-An exhibitor.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| --------------------------------------- | --------------------------------------- | --------------------------------------- | --------------------------------------- | --------------------------------------- |
-| `Id` | *string* | :heavy_minus_sign: | The unique identifier of the exhibitor. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `Name` | *string* | :heavy_minus_sign: | The Name of an exhibitor. | AutoExpo |
-| `Featured` | *bool* | :heavy_minus_sign: | If the exhibitor is featured. | true |
-| `EventSponsor` | *bool* | :heavy_minus_sign: | If the exhibitor is an event sponsor. | true |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExhibitorQuestionType.md b/packages/csharp/docs/Models/Components/ExhibitorQuestionType.md
new file mode 100644
index 00000000..d74005a6
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ExhibitorQuestionType.md
@@ -0,0 +1,22 @@
+# ExhibitorQuestionType
+
+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.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = ExhibitorQuestionType.MultiChoice;
+```
+
+
+## Values
+
+| Name | Value |
+| ------------------------- | ------------------------- |
+| `MultiChoice` | MultiChoice |
+| `SingleChoice` | SingleChoice |
+| `OpenEndedTextOneLine` | OpenEndedTextOneLine |
+| `OpenEndedTextCommentBox` | OpenEndedTextCommentBox |
+| `OpenEndedDateTime` | OpenEndedDateTime |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExhibitorQuestionTypeJson.md b/packages/csharp/docs/Models/Components/ExhibitorQuestionTypeJson.md
deleted file mode 100644
index b349f5f1..00000000
--- a/packages/csharp/docs/Models/Components/ExhibitorQuestionTypeJson.md
+++ /dev/null
@@ -1,22 +0,0 @@
-# ExhibitorQuestionTypeJson
-
-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.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = ExhibitorQuestionTypeJson.MultiChoice;
-```
-
-
-## Values
-
-| Name | Value |
-| ------------------------- | ------------------------- |
-| `MultiChoice` | MultiChoice |
-| `SingleChoice` | SingleChoice |
-| `OpenEndedTextOneLine` | OpenEndedTextOneLine |
-| `OpenEndedTextCommentBox` | OpenEndedTextCommentBox |
-| `OpenEndedDateTime` | OpenEndedDateTime |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExhibitorRegistrationPackListResponse.md b/packages/csharp/docs/Models/Components/ExhibitorRegistrationPackListResponse.md
index dd07f051..418d4113 100644
--- a/packages/csharp/docs/Models/Components/ExhibitorRegistrationPackListResponse.md
+++ b/packages/csharp/docs/Models/Components/ExhibitorRegistrationPackListResponse.md
@@ -5,6 +5,6 @@ The registration pack associated with an exhibitor. Each exhibitor has at most o
## Fields
-| Field | Type | Required | Description |
-| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- |
-| `Data` | List<[ExistingRegistrationPackJson](../../Models/Components/ExistingRegistrationPackJson.md)> | :heavy_minus_sign: | The registration pack for an exhibitor. Contains at most one item. |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
+| `Data` | List<[RegistrationPackResponse](../../Models/Components/RegistrationPackResponse.md)> | :heavy_minus_sign: | The registration pack for an exhibitor. Contains at most one item. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExhibitorRequest.md b/packages/csharp/docs/Models/Components/ExhibitorRequest.md
index 2426007a..ef8b8de0 100644
--- a/packages/csharp/docs/Models/Components/ExhibitorRequest.md
+++ b/packages/csharp/docs/Models/Components/ExhibitorRequest.md
@@ -7,21 +7,21 @@ A representation of an exhibitor including all relevant information.
| Field | Type | Required | Description | Example |
| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- |
-| `Event` | [EventJson6](../../Models/Components/EventJson6.md) | :heavy_check_mark: | The Associated Event. | |
+| `Event` | [Event1](../../Models/Components/Event1.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` | [ExhibitorAddressJson](../../Models/Components/ExhibitorAddressJson.md) | :heavy_minus_sign: | An object representing an address with various properties. | |
+| `Address` | [Address11](../../Models/Components/Address11.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 |
| `OtherPhone` | *string* | :heavy_minus_sign: | Any other phone of the exhibitor | 555-555-5555 |
| `Website` | *string* | :heavy_minus_sign: | Exhibitor's website URL | www.superhappyfuntime.com |
-| `ContactLinks` | [ContactLinksJson2](../../Models/Components/ContactLinksJson2.md) | :heavy_minus_sign: | A JSON schema representing contact links, including Twitter, Facebook, and LinkedIn URLs. | |
+| `ContactLinks` | [ContactLinks](../../Models/Components/ContactLinks.md) | :heavy_minus_sign: | A JSON schema representing contact links, including Twitter, Facebook, and LinkedIn URLs. | |
| `Deleted` | *bool* | :heavy_minus_sign: | A boolean indicating whether the exhibitor is deleted or not | |
| `Hidden` | *bool* | :heavy_minus_sign: | True indicates that the exhibitor is hidden. | |
| `EventSponsor` | *bool* | :heavy_minus_sign: | A boolean indicating whether the exhibitor is an event sponsor or not | |
| `Featured` | *bool* | :heavy_minus_sign: | A boolean indicating whether the exhibitor is designated as featured or not | |
-| `SponsorshipLevel` | [SponsorshipLevelJson](../../Models/Components/SponsorshipLevelJson.md) | :heavy_minus_sign: | Associated sponsorship level for an exhibitor | |
\ No newline at end of file
+| `SponsorshipLevel` | [SponsorshipLevel](../../Models/Components/SponsorshipLevel.md) | :heavy_minus_sign: | Associated sponsorship level for an exhibitor | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExhibitorResponse.md b/packages/csharp/docs/Models/Components/ExhibitorResponse.md
index 6d3ecaec..db16bc1c 100644
--- a/packages/csharp/docs/Models/Components/ExhibitorResponse.md
+++ b/packages/csharp/docs/Models/Components/ExhibitorResponse.md
@@ -11,24 +11,24 @@ 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` | [EventJson6](../../Models/Components/EventJson6.md) | :heavy_check_mark: | The Associated Event. | |
+| `Event` | [Event1](../../Models/Components/Event1.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` | [ExhibitorAddressJson](../../Models/Components/ExhibitorAddressJson.md) | :heavy_minus_sign: | An object representing an address with various properties. | |
+| `Address` | [Address11](../../Models/Components/Address11.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 |
| `OtherPhone` | *string* | :heavy_minus_sign: | Any other phone of the exhibitor | 555-555-5555 |
| `Website` | *string* | :heavy_minus_sign: | Exhibitor's website URL | www.superhappyfuntime.com |
-| `ContactLinks` | [ContactLinksJson2](../../Models/Components/ContactLinksJson2.md) | :heavy_minus_sign: | A JSON schema representing contact links, including Twitter, Facebook, and LinkedIn URLs. | |
+| `ContactLinks` | [ContactLinks](../../Models/Components/ContactLinks.md) | :heavy_minus_sign: | A JSON schema representing contact links, including Twitter, Facebook, and LinkedIn URLs. | |
| `Deleted` | *bool* | :heavy_minus_sign: | A boolean indicating whether the exhibitor is deleted or not | |
| `Hidden` | *bool* | :heavy_minus_sign: | True indicates that the exhibitor is hidden. | |
| `EventSponsor` | *bool* | :heavy_minus_sign: | A boolean indicating whether the exhibitor is an event sponsor or not | |
| `Featured` | *bool* | :heavy_minus_sign: | A boolean indicating whether the exhibitor is designated as featured or not | |
-| `SponsorshipLevel` | [SponsorshipLevelJson](../../Models/Components/SponsorshipLevelJson.md) | :heavy_minus_sign: | Associated sponsorship level for an exhibitor | |
+| `SponsorshipLevel` | [SponsorshipLevel](../../Models/Components/SponsorshipLevel.md) | :heavy_minus_sign: | Associated sponsorship level for an exhibitor | |
| `Id` | *string* | :heavy_minus_sign: | ID of an exhibitor. | 4888db54-db22-11eb-8d19-0242ac130003 |
| `ProfileLogoId` | *string* | :heavy_minus_sign: | File ID for exhibitor profile logo. | 31bd3ae1-0dc3-487b-953e-41d6bbade7d2 |
| `ProfileLogoUrl` | *string* | :heavy_minus_sign: | URL for exhibitor profile logo. | https://images.cvent.com/pt/fileLocation/url_123 |
diff --git a/packages/csharp/docs/Models/Components/ExhibitorSocialLinkOpened.md b/packages/csharp/docs/Models/Components/ExhibitorSocialLinkOpened.md
index fc979606..da212225 100644
--- a/packages/csharp/docs/Models/Components/ExhibitorSocialLinkOpened.md
+++ b/packages/csharp/docs/Models/Components/ExhibitorSocialLinkOpened.md
@@ -7,7 +7,7 @@ An exhibitor social-link-opened activity.
| Field | Type | Required | Description | Example |
| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- |
-| `Exhibitor` | [ExhibitorJson1](../../Models/Components/ExhibitorJson1.md) | :heavy_minus_sign: | An exhibitor. | |
+| `Exhibitor` | [ExhibitorJson](../../Models/Components/ExhibitorJson.md) | :heavy_minus_sign: | An exhibitor. | |
| `Platform` | *string* | :heavy_minus_sign: | The platform used by the user. | Attendee Hub |
| `SponsorshipLevel` | [ActivityExhibitorSponsorshipLevelJson](../../Models/Components/ActivityExhibitorSponsorshipLevelJson.md) | :heavy_minus_sign: | Sponsorship level for an activity exhibitor. | |
| `SocialNetwork` | *string* | :heavy_minus_sign: | The name of the social network. | LinkedIn |
diff --git a/packages/csharp/docs/Models/Components/ExhibitorViewed.md b/packages/csharp/docs/Models/Components/ExhibitorViewed.md
index fabe8dcb..ad8358d8 100644
--- a/packages/csharp/docs/Models/Components/ExhibitorViewed.md
+++ b/packages/csharp/docs/Models/Components/ExhibitorViewed.md
@@ -7,7 +7,7 @@ An exhibitor viewed activity.
| Field | Type | Required | Description | Example |
| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- |
-| `Exhibitor` | [ExhibitorJson1](../../Models/Components/ExhibitorJson1.md) | :heavy_minus_sign: | An exhibitor. | |
+| `Exhibitor` | [ExhibitorJson](../../Models/Components/ExhibitorJson.md) | :heavy_minus_sign: | An exhibitor. | |
| `Platform` | *string* | :heavy_minus_sign: | The platform used by the user. | Attendee Hub |
| `SponsorshipLevel` | [ActivityExhibitorSponsorshipLevelJson](../../Models/Components/ActivityExhibitorSponsorshipLevelJson.md) | :heavy_minus_sign: | Sponsorship level for an activity exhibitor. | |
| `NavigationSource` | [ActivityExhibitorNavigationSourceJson](../../Models/Components/ActivityExhibitorNavigationSourceJson.md) | :heavy_minus_sign: | Navigation source for an activity exhibitor. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExhibitorVirtualBoothJoined.md b/packages/csharp/docs/Models/Components/ExhibitorVirtualBoothJoined.md
index 06e91e22..d64714a6 100644
--- a/packages/csharp/docs/Models/Components/ExhibitorVirtualBoothJoined.md
+++ b/packages/csharp/docs/Models/Components/ExhibitorVirtualBoothJoined.md
@@ -7,7 +7,7 @@ An exhibitor virtual-booth-joined activity.
| Field | Type | Required | Description | Example |
| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- |
-| `Exhibitor` | [ExhibitorJson1](../../Models/Components/ExhibitorJson1.md) | :heavy_minus_sign: | An exhibitor. | |
+| `Exhibitor` | [ExhibitorJson](../../Models/Components/ExhibitorJson.md) | :heavy_minus_sign: | An exhibitor. | |
| `Platform` | *string* | :heavy_minus_sign: | The platform used by the user. | Attendee Hub |
| `SponsorshipLevel` | [ActivityExhibitorSponsorshipLevelJson](../../Models/Components/ActivityExhibitorSponsorshipLevelJson.md) | :heavy_minus_sign: | Sponsorship level for an activity exhibitor. | |
| `SolutionType` | *string* | :heavy_minus_sign: | The solution type used for the virtual booth. | CVC |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExhibitorWeblinkOpened.md b/packages/csharp/docs/Models/Components/ExhibitorWeblinkOpened.md
index afe1339e..3d020557 100644
--- a/packages/csharp/docs/Models/Components/ExhibitorWeblinkOpened.md
+++ b/packages/csharp/docs/Models/Components/ExhibitorWeblinkOpened.md
@@ -7,6 +7,6 @@ An exhibitor weblink-opened activity.
| Field | Type | Required | Description | Example |
| --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- |
-| `Exhibitor` | [ExhibitorJson1](../../Models/Components/ExhibitorJson1.md) | :heavy_minus_sign: | An exhibitor. | |
+| `Exhibitor` | [ExhibitorJson](../../Models/Components/ExhibitorJson.md) | :heavy_minus_sign: | An exhibitor. | |
| `Platform` | *string* | :heavy_minus_sign: | The platform used by the user. | Attendee Hub |
| `Weblink` | [ActivityExhibitorWebLinkJson](../../Models/Components/ActivityExhibitorWebLinkJson.md) | :heavy_minus_sign: | A web-link for an activity exhibitor. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExhibitorsPaginatedResponse.md b/packages/csharp/docs/Models/Components/ExhibitorsPaginatedResponse.md
index 299856f6..e1e767c6 100644
--- a/packages/csharp/docs/Models/Components/ExhibitorsPaginatedResponse.md
+++ b/packages/csharp/docs/Models/Components/ExhibitorsPaginatedResponse.md
@@ -5,7 +5,7 @@ A paginated response containing a list of exhibitors for an event.
## Fields
-| Field | Type | Required | Description |
-| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- |
-| `Paging` | [PagingJson](../../Models/Components/PagingJson.md) | :heavy_minus_sign: | Represents pagination information for a collection of resources. |
-| `Data` | List<[ExistingExhibitorJson](../../Models/Components/ExistingExhibitorJson.md)> | :heavy_minus_sign: | Paginated list of exhibitors for an event. |
\ 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<[ExhibitorResponse](../../Models/Components/ExhibitorResponse.md)> | :heavy_minus_sign: | Paginated list of exhibitors for an event. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExistingAudienceSegment.md b/packages/csharp/docs/Models/Components/ExistingAudienceSegment.md
index 53f42d93..7e49c7a0 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` | [EventJson3](../../Models/Components/EventJson3.md) | :heavy_minus_sign: | ID of the event. | |
+| `Event` | [EventJson2](../../Models/Components/EventJson2.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/ExistingBoothStaffJson.md b/packages/csharp/docs/Models/Components/ExistingBoothStaffJson.md
deleted file mode 100644
index 511ddcf7..00000000
--- a/packages/csharp/docs/Models/Components/ExistingBoothStaffJson.md
+++ /dev/null
@@ -1,17 +0,0 @@
-# ExistingBoothStaffJson
-
-Booth staff with an associated 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 |
-| `Attendee` | [AttendeeJson3](../../Models/Components/AttendeeJson3.md) | :heavy_check_mark: | A JSON Schema for an Attendee object | |
-| `Event` | [EventJson6](../../Models/Components/EventJson6.md) | :heavy_check_mark: | The Associated Event. | |
-| `Exhibitor` | [ExhibitorJson](../../Models/Components/ExhibitorJson.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/ExistingCapacity.md b/packages/csharp/docs/Models/Components/ExistingCapacity.md
new file mode 100644
index 00000000..c675694d
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ExistingCapacity.md
@@ -0,0 +1,12 @@
+# ExistingCapacity
+
+Represents the existing capacity of the registration type for an exhibitor
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- |
+| `RegistrationType` | [ExistingCapacityRegistrationType](../../Models/Components/ExistingCapacityRegistrationType.md) | :heavy_check_mark: | Registration type information | |
+| `ReservedCapacity` | *long* | :heavy_check_mark: | Reserved capacity of the registration type for an exhibitor | 5 |
+| `AvailableCapacity` | *long* | :heavy_check_mark: | Available capacity of the registration type for an exhibitor | 4 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExistingCapacityJson.md b/packages/csharp/docs/Models/Components/ExistingCapacityJson.md
deleted file mode 100644
index 5b1a49ff..00000000
--- a/packages/csharp/docs/Models/Components/ExistingCapacityJson.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# ExistingCapacityJson
-
-Represents the existing capacity of the registration type for an exhibitor
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- |
-| `RegistrationType` | [ExistingCapacityJsonRegistrationType](../../Models/Components/ExistingCapacityJsonRegistrationType.md) | :heavy_check_mark: | Registration type information | |
-| `ReservedCapacity` | *long* | :heavy_check_mark: | Reserved capacity of the registration type for an exhibitor | 5 |
-| `AvailableCapacity` | *long* | :heavy_check_mark: | Available capacity of the registration type for an exhibitor | 4 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExistingCapacityJsonRegistrationType.md b/packages/csharp/docs/Models/Components/ExistingCapacityJsonRegistrationType.md
deleted file mode 100644
index 8079bf3a..00000000
--- a/packages/csharp/docs/Models/Components/ExistingCapacityJsonRegistrationType.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# ExistingCapacityJsonRegistrationType
-
-Registration type information
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
-| `Id` | *string* | :heavy_check_mark: | Registration type id | 923d5629-3cac-40c2-8237-34937dd93475 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExistingCapacityRegistrationType.md b/packages/csharp/docs/Models/Components/ExistingCapacityRegistrationType.md
new file mode 100644
index 00000000..56c988a1
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ExistingCapacityRegistrationType.md
@@ -0,0 +1,10 @@
+# ExistingCapacityRegistrationType
+
+Registration type information
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
+| `Id` | *string* | :heavy_check_mark: | Registration type id | 923d5629-3cac-40c2-8237-34937dd93475 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExistingELiteratureRequestDataForLead.md b/packages/csharp/docs/Models/Components/ExistingELiteratureRequestDataForLead.md
new file mode 100644
index 00000000..ede69cff
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ExistingELiteratureRequestDataForLead.md
@@ -0,0 +1,18 @@
+# ExistingELiteratureRequestDataForLead
+
+A JSON Schema for an existing e-literature request data for a lead.
+
+
+## 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 |
+| `Event` | [Event1](../../Models/Components/Event1.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. | |
+| `Id` | *string* | :heavy_minus_sign: | Request identifier | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExistingEliteratureRequestDataJson.md b/packages/csharp/docs/Models/Components/ExistingEliteratureRequestDataJson.md
deleted file mode 100644
index a965c408..00000000
--- a/packages/csharp/docs/Models/Components/ExistingEliteratureRequestDataJson.md
+++ /dev/null
@@ -1,18 +0,0 @@
-# ExistingEliteratureRequestDataJson
-
-A JSON Schema for an existing e-literature request data for a lead.
-
-
-## 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 |
-| `Event` | [EventJson6](../../Models/Components/EventJson6.md) | :heavy_check_mark: | The Associated Event. | |
-| `Exhibitor` | [ExhibitorJson](../../Models/Components/ExhibitorJson.md) | :heavy_check_mark: | The Associated Exhibitor. | |
-| `Lead` | [LeadJson](../../Models/Components/LeadJson.md) | :heavy_check_mark: | JSON schema for the Lead object | |
-| `Documents` | List<[EliteratureDocumentJson](../../Models/Components/EliteratureDocumentJson.md)> | :heavy_check_mark: | Collection of E-literature documents sent to lead. | |
-| `Id` | *string* | :heavy_minus_sign: | Request identifier | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExistingExhibitorAdminJson.md b/packages/csharp/docs/Models/Components/ExistingExhibitorAdminJson.md
deleted file mode 100644
index 0152009b..00000000
--- a/packages/csharp/docs/Models/Components/ExistingExhibitorAdminJson.md
+++ /dev/null
@@ -1,18 +0,0 @@
-# ExistingExhibitorAdminJson
-
-Existing Exhibitor Admin with an id property
-
-
-## 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: | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.
The identifier of the user that last updated this record.This filed is deprecated. | hporter |
-| `Exhibitor` | [ExhibitorJson](../../Models/Components/ExhibitorJson.md) | :heavy_check_mark: | The Associated Exhibitor. | |
-| `FirstName` | *string* | :heavy_check_mark: | The first name of the exhibitor admin | John |
-| `LastName` | *string* | :heavy_check_mark: | The last name of the exhibitor admin | Eddy |
-| `Email` | *string* | :heavy_check_mark: | The email address of the exhibitor admin | john.eddy@test.com |
-| `Id` | *string* | :heavy_minus_sign: | Exhibitor Admin id | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExistingExhibitorAnswer.md b/packages/csharp/docs/Models/Components/ExistingExhibitorAnswer.md
new file mode 100644
index 00000000..59e2343d
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ExistingExhibitorAnswer.md
@@ -0,0 +1,18 @@
+# ExistingExhibitorAnswer
+
+Existing Exhibitor Answer schema
+
+
+## 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 |
+| `Question` | [Uuid1](../../Models/Components/Uuid1.md) | :heavy_check_mark: | The reference to the related entity. Contains only the ID of the related entity. | |
+| `Event` | [Event1](../../Models/Components/Event1.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
new file mode 100644
index 00000000..d7981213
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ExistingExhibitorAnswerInput.md
@@ -0,0 +1,13 @@
+# ExistingExhibitorAnswerInput
+
+Existing Exhibitor Answer schema
+
+
+## Fields
+
+| Field | Type | Required | Description |
+| -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- |
+| `Question` | [Uuid1](../../Models/Components/Uuid1.md) | :heavy_check_mark: | The reference to the related entity. Contains only the ID of the related entity. |
+| `Event` | [Event1](../../Models/Components/Event1.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/ExistingExhibitorAnswerJson.md b/packages/csharp/docs/Models/Components/ExistingExhibitorAnswerJson.md
deleted file mode 100644
index 63a462c7..00000000
--- a/packages/csharp/docs/Models/Components/ExistingExhibitorAnswerJson.md
+++ /dev/null
@@ -1,18 +0,0 @@
-# ExistingExhibitorAnswerJson
-
-Existing Exhibitor Answer schema
-
-
-## 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 |
-| `Question` | [UuidJson](../../Models/Components/UuidJson.md) | :heavy_check_mark: | The reference to the related entity. Contains only the ID of the related entity. | |
-| `Event` | [EventJson6](../../Models/Components/EventJson6.md) | :heavy_check_mark: | The Associated Event. | |
-| `Exhibitor` | [ExhibitorJson](../../Models/Components/ExhibitorJson.md) | :heavy_check_mark: | The Associated Exhibitor. | |
-| `Answers` | List<[AnswerJson0](../../Models/Components/AnswerJson0.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/ExistingExhibitorAnswerJsonInput.md b/packages/csharp/docs/Models/Components/ExistingExhibitorAnswerJsonInput.md
deleted file mode 100644
index e92a96f7..00000000
--- a/packages/csharp/docs/Models/Components/ExistingExhibitorAnswerJsonInput.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# ExistingExhibitorAnswerJsonInput
-
-Existing Exhibitor Answer schema
-
-
-## Fields
-
-| Field | Type | Required | Description |
-| -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- |
-| `Question` | [UuidJson](../../Models/Components/UuidJson.md) | :heavy_check_mark: | The reference to the related entity. Contains only the ID of the related entity. |
-| `Event` | [EventJson6](../../Models/Components/EventJson6.md) | :heavy_check_mark: | The Associated Event. |
-| `Exhibitor` | [ExhibitorJson](../../Models/Components/ExhibitorJson.md) | :heavy_check_mark: | The Associated Exhibitor. |
-| `Answers` | List<[AnswerJson0](../../Models/Components/AnswerJson0.md)> | :heavy_check_mark: | List of answers |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExistingExhibitorCategoryJson.md b/packages/csharp/docs/Models/Components/ExistingExhibitorCategoryJson.md
deleted file mode 100644
index 3841f6e0..00000000
--- a/packages/csharp/docs/Models/Components/ExistingExhibitorCategoryJson.md
+++ /dev/null
@@ -1,21 +0,0 @@
-# ExistingExhibitorCategoryJson
-
-A description of the Existing Exhibitor Category JSON schema
-
-
-## 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 |
-| `Event` | [EventJson6](../../Models/Components/EventJson6.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 |
-| `Type` | [ExistingExhibitorCategoryJsonType](../../Models/Components/ExistingExhibitorCategoryJsonType.md) | :heavy_check_mark: | Type of exhibitor category | LOGO |
-| `Id` | *string* | :heavy_minus_sign: | ID of exhibitor category. | 534a465b-b4cb-471d-9498-4bf3917ad8bf |
-| `BannerId` | *string* | :heavy_minus_sign: | File ID for exhibitor category banner. | 22ca5ab1-0dc3-487b-953e-41d6dacde3e6 |
-| `BannerUrl` | *string* | :heavy_minus_sign: | URL for exhibitor category banner. | https://images.cvent.com/pt/fileLocation/url_456 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExistingExhibitorCategoryJsonType.md b/packages/csharp/docs/Models/Components/ExistingExhibitorCategoryJsonType.md
deleted file mode 100644
index 6b2ea699..00000000
--- a/packages/csharp/docs/Models/Components/ExistingExhibitorCategoryJsonType.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# ExistingExhibitorCategoryJsonType
-
-Type of exhibitor category
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = ExistingExhibitorCategoryJsonType.Banner;
-```
-
-
-## Values
-
-| Name | Value |
-| -------- | -------- |
-| `Banner` | BANNER |
-| `Logo` | LOGO |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExistingExhibitorJson.md b/packages/csharp/docs/Models/Components/ExistingExhibitorJson.md
deleted file mode 100644
index 3ec41aae..00000000
--- a/packages/csharp/docs/Models/Components/ExistingExhibitorJson.md
+++ /dev/null
@@ -1,36 +0,0 @@
-# ExistingExhibitorJson
-
-JSON schema for the exhibitor object
-
-
-## 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 |
-| `Event` | [EventJson6](../../Models/Components/EventJson6.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` | [ExhibitorAddressJson](../../Models/Components/ExhibitorAddressJson.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 |
-| `OtherPhone` | *string* | :heavy_minus_sign: | Any other phone of the exhibitor | 555-555-5555 |
-| `Website` | *string* | :heavy_minus_sign: | Exhibitor's website URL | www.superhappyfuntime.com |
-| `ContactLinks` | [ContactLinksJson2](../../Models/Components/ContactLinksJson2.md) | :heavy_minus_sign: | A JSON schema representing contact links, including Twitter, Facebook, and LinkedIn URLs. | |
-| `Deleted` | *bool* | :heavy_minus_sign: | A boolean indicating whether the exhibitor is deleted or not | |
-| `Hidden` | *bool* | :heavy_minus_sign: | True indicates that the exhibitor is hidden. | |
-| `EventSponsor` | *bool* | :heavy_minus_sign: | A boolean indicating whether the exhibitor is an event sponsor or not | |
-| `Featured` | *bool* | :heavy_minus_sign: | A boolean indicating whether the exhibitor is designated as featured or not | |
-| `SponsorshipLevel` | [SponsorshipLevelJson](../../Models/Components/SponsorshipLevelJson.md) | :heavy_minus_sign: | Associated sponsorship level for an exhibitor | |
-| `Id` | *string* | :heavy_minus_sign: | ID of an exhibitor. | 4888db54-db22-11eb-8d19-0242ac130003 |
-| `ProfileLogoId` | *string* | :heavy_minus_sign: | File ID for exhibitor profile logo. | 31bd3ae1-0dc3-487b-953e-41d6bbade7d2 |
-| `ProfileLogoUrl` | *string* | :heavy_minus_sign: | URL for exhibitor profile logo. | https://images.cvent.com/pt/fileLocation/url_123 |
-| `BannerId` | *string* | :heavy_minus_sign: | File ID for exhibitor banner. | 12ca3ae2-0dc3-487b-953e-86d6acadf7d5 |
-| `BannerUrl` | *string* | :heavy_minus_sign: | URL for exhibitor banner. | https://images.cvent.com/pt/fileLocation/url_456 |
\ 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 6df2e966..aa6fac4c 100644
--- a/packages/csharp/docs/Models/Components/ExistingExhibitorQuestion.md
+++ b/packages/csharp/docs/Models/Components/ExistingExhibitorQuestion.md
@@ -11,16 +11,16 @@ 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` | [EventJson6](../../Models/Components/EventJson6.md) | :heavy_check_mark: | The Associated Event. | |
+| `Event` | [Event1](../../Models/Components/Event1.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` | [ExhibitorQuestionTypeJson](../../Models/Components/ExhibitorQuestionTypeJson.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 |
+| `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<[BaseChoiceJson](../../Models/Components/BaseChoiceJson.md)> | :heavy_minus_sign: | An array of choices for the exhibitor question. | |
-| `NotApplicableAnswer` | [AdditionalChoiceJson11](../../Models/Components/AdditionalChoiceJson11.md) | :heavy_minus_sign: | Contains text of additional choice | |
-| `OtherAnswer` | [AdditionalChoiceJson11](../../Models/Components/AdditionalChoiceJson11.md) | :heavy_minus_sign: | Contains text of additional choice | |
-| `AnswerFormat` | [ExhibitorAnswerFormatJson](../../Models/Components/ExhibitorAnswerFormatJson.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` | [ExhibitorAnswerLimitsJson](../../Models/Components/ExhibitorAnswerLimitsJson.md) | :heavy_minus_sign: | Defines the limits for answers to exhibitor questions. | |
+| `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 | |
+| `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 |
| `Id` | *string* | :heavy_check_mark: | Exhibitor Question id | f7c01518-1792-11ec-9621-0242ac130002 |
| `DisplayOrder` | *long* | :heavy_minus_sign: | The unique display order of the exhibitor question. | 1 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExistingFile.md b/packages/csharp/docs/Models/Components/ExistingFile.md
index e6196c78..04408ec1 100644
--- a/packages/csharp/docs/Models/Components/ExistingFile.md
+++ b/packages/csharp/docs/Models/Components/ExistingFile.md
@@ -11,8 +11,8 @@ 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` | [EventJson6](../../Models/Components/EventJson6.md) | :heavy_check_mark: | The Associated Event. | |
-| `Exhibitor` | [ExhibitorJson](../../Models/Components/ExhibitorJson.md) | :heavy_check_mark: | The Associated Exhibitor. | |
+| `Event` | [Event1](../../Models/Components/Event1.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. | |
| `Order` | *long* | :heavy_check_mark: | Display order for exhibitor file content. | 3 |
diff --git a/packages/csharp/docs/Models/Components/ExistingHub.md b/packages/csharp/docs/Models/Components/ExistingHub.md
index 68f40c6d..e299d32c 100644
--- a/packages/csharp/docs/Models/Components/ExistingHub.md
+++ b/packages/csharp/docs/Models/Components/ExistingHub.md
@@ -12,20 +12,20 @@ Represents an existing Events+ hub.
| `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 |
| `Title` | *string* | :heavy_check_mark: | A short descriptor of the Events+ hub. | Future Technologies |
-| `Owner` | [HubOwnerJson](../../Models/Components/HubOwnerJson.md) | :heavy_check_mark: | The owner of the Events+ hub and their information. | |
+| `Owner` | [HubOwner](../../Models/Components/HubOwner.md) | :heavy_check_mark: | The owner of the Events+ hub and their information. | |
| `CustomDomain` | *string* | :heavy_minus_sign: | Custom domain name of the Events+ hub. | example.com |
| `Url` | *string* | :heavy_minus_sign: | The URL that links to the Events+ hub. | https://web.cvent.com/eventsplus |
-| `Colors` | [HubColorsJson](../../Models/Components/HubColorsJson.md) | :heavy_minus_sign: | All the colors associated with the Events+ hub. | |
+| `Colors` | [HubColors](../../Models/Components/HubColors.md) | :heavy_minus_sign: | All the colors associated with the Events+ hub. | |
| `ThemeSafeMode` | *bool* | :heavy_minus_sign: | True guarantees that controls shown on the page will contrast with the background color. | true |
-| `Logo` | [HubLogoJson](../../Models/Components/HubLogoJson.md) | :heavy_minus_sign: | The logo for the Events+ hub. | |
-| `Background` | [HubBackgroundJson](../../Models/Components/HubBackgroundJson.md) | :heavy_minus_sign: | The background image of the Events+ hub. | |
+| `Logo` | [HubLogo](../../Models/Components/HubLogo.md) | :heavy_minus_sign: | The logo for the Events+ hub. | |
+| `Background` | [HubBackground](../../Models/Components/HubBackground.md) | :heavy_minus_sign: | The background image of the Events+ hub. | |
| `Locale` | *string* | :heavy_minus_sign: | An IETF BCP 47 language tag used to indicate the language of the Events+ hub. | en-GB |
-| `Calendar` | [HubCalendarJson](../../Models/Components/HubCalendarJson.md) | :heavy_minus_sign: | The event calendar associated with this Events+ hub. The event calendar allows you to share multiple events and sessions in a list or calendar format. | |
+| `Calendar` | [HubCalendar](../../Models/Components/HubCalendar.md) | :heavy_minus_sign: | The event calendar associated with this Events+ hub. The event calendar allows you to share multiple events and sessions in a list or calendar format. | |
| `HelpEmailAddress` | *string* | :heavy_minus_sign: | Help email address to reach out in case of any issues logging in or registering. | abc@example.com |
| `AutoDetectBrowserLocale` | *bool* | :heavy_minus_sign: | True indicates the Events+ hub should detect the browser locale. If translations for the detected language are enabled in the Events+ hub, the Events+ hub will switch to the detected language. | true |
| `FaviconUrl` | *string* | :heavy_minus_sign: | URL of the Events+ hub favicon. | https://cvent.com/bucket/scope/logo.png |
-| `UtmOverride` | [UtmOverrideJson](../../Models/Components/UtmOverrideJson.md) | :heavy_minus_sign: | Specifies how UTM (urchin tracking module: a key and value that is attached to URLs for the purpose of identifying and tracking traffic) settings will override passed in items. | use-custom-parameter |
-| `Fonts` | [HubFontsJson](../../Models/Components/HubFontsJson.md) | :heavy_minus_sign: | The fonts of the Events+ hub. | |
-| `Login` | [HubLoginJson](../../Models/Components/HubLoginJson.md) | :heavy_minus_sign: | Fields relating to the login process for the Events+ hub. | |
+| `UtmOverride` | [UTMOverride](../../Models/Components/UTMOverride.md) | :heavy_minus_sign: | Specifies how UTM (urchin tracking module: a key and value that is attached to URLs for the purpose of identifying and tracking traffic) settings will override passed in items. | use-custom-parameter |
+| `Fonts` | [HubFonts](../../Models/Components/HubFonts.md) | :heavy_minus_sign: | The fonts of the Events+ hub. | |
+| `Login` | [HubLogin](../../Models/Components/HubLogin.md) | :heavy_minus_sign: | Fields relating to the login process for the Events+ hub. | |
| `Id` | *string* | :heavy_minus_sign: | The unique ID of an Events+ Hub. | 1e7e0f38-d73c-4326-9f93-422086b91304 |
-| `Status` | [HubStatusPropertyJson](../../Models/Components/HubStatusPropertyJson.md) | :heavy_minus_sign: | The current Events+ Hub status. Inactive: The Events+ Hub is inactive and unavailable to members. Active: Members can access the Events+ Hub. Deleted: The Events+ Hub has been deleted and is unavailable to members or planners. | |
\ No newline at end of file
+| `Status` | [HubStatusProperty](../../Models/Components/HubStatusProperty.md) | :heavy_minus_sign: | The current Events+ Hub status. Inactive: The Events+ Hub is inactive and unavailable to members. Active: Members can access the Events+ Hub. Deleted: The Events+ Hub has been deleted and is unavailable to members or planners. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExistingLeadJson.md b/packages/csharp/docs/Models/Components/ExistingLeadJson.md
deleted file mode 100644
index c810df1c..00000000
--- a/packages/csharp/docs/Models/Components/ExistingLeadJson.md
+++ /dev/null
@@ -1,40 +0,0 @@
-# ExistingLeadJson
-
-A JSON Schema file for Lead.
-
-
-## 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 |
-| `Event` | [EventJson6](../../Models/Components/EventJson6.md) | :heavy_minus_sign: | The Associated Event. | |
-| `Exhibitor` | [ExhibitorJson](../../Models/Components/ExhibitorJson.md) | :heavy_minus_sign: | The Associated Exhibitor. | |
-| `Attendee` | [LeadAttendeeJson](../../Models/Components/LeadAttendeeJson.md) | :heavy_minus_sign: | A JSON schema representing the Attendee object | |
-| `BoothStaff` | [LeadBoothStaffJson](../../Models/Components/LeadBoothStaffJson.md) | :heavy_minus_sign: | A JSON schema representing Booth Staff entity | |
-| `Device` | [LeadDeviceJson](../../Models/Components/LeadDeviceJson.md) | :heavy_minus_sign: | A JSON object representing an electronic device used to capture leads. | |
-| `Appointment` | [LeadAppointmentJson](../../Models/Components/LeadAppointmentJson.md) | :heavy_minus_sign: | A JSON schema representing the structure of an appointment object. | |
-| `Title` | *string* | :heavy_minus_sign: | The title of the lead | Mr. |
-| `FirstName` | *string* | :heavy_minus_sign: | The first name of the lead | Henry |
-| `LastName` | *string* | :heavy_minus_sign: | The last name of the lead | Potterfield |
-| `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` | [LeadAddressJson](../../Models/Components/LeadAddressJson.md) | :heavy_minus_sign: | Schema for address information | |
-| `HomePhone` | *string* | :heavy_minus_sign: | Home phone number of the lead | 555-555-5555 |
-| `WorkAddress` | [LeadAddressJson](../../Models/Components/LeadAddressJson.md) | :heavy_minus_sign: | Schema for address information | |
-| `WorkPhone` | *string* | :heavy_minus_sign: | Work Phone number of the lead | 555-555-5555 |
-| `Type` | [ExistingLeadJsonType](../../Models/Components/ExistingLeadJsonType.md) | :heavy_minus_sign: | The type of lead. | |
-| `Application` | [Application](../../Models/Components/Application.md) | :heavy_minus_sign: | The application used to capture lead. | |
-| `Source` | [Source](../../Models/Components/Source.md) | :heavy_minus_sign: | The source of entry for the lead | |
-| `Deleted` | *bool* | :heavy_minus_sign: | A boolean indicating whether a lead is deleted or not | |
-| `Comments` | *string* | :heavy_minus_sign: | Comments about the lead | I am interested in your product. |
-| `LicenseCode` | *string* | :heavy_minus_sign: | License (access code) that was used to capture the lead | nag1248 |
-| `Matched` | *bool* | :heavy_minus_sign: | A boolean indicating whether the lead is matched or not | true |
-| `TranscriptionStatus` | [TranscriptionStatus](../../Models/Components/TranscriptionStatus.md) | :heavy_minus_sign: | Current status of business card transcription | |
-| `Qualified` | *bool* | :heavy_minus_sign: | A boolean indicating whether a lead is qualified or not | true |
-| `AdditionalBadgekitFields` | [AdditionalBadgekitFields](../../Models/Components/AdditionalBadgekitFields.md) | :heavy_minus_sign: | Map containing extra properties from badgekit provider | |
-| `Id` | *string* | :heavy_minus_sign: | ID of Lead. | cdd0d110-3a84-4bc5-a420-37c007716c73 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExistingLeadJsonType.md b/packages/csharp/docs/Models/Components/ExistingLeadJsonType.md
deleted file mode 100644
index 4176e560..00000000
--- a/packages/csharp/docs/Models/Components/ExistingLeadJsonType.md
+++ /dev/null
@@ -1,20 +0,0 @@
-# ExistingLeadJsonType
-
-The type of lead.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = ExistingLeadJsonType.Leadcapture;
-```
-
-
-## Values
-
-| Name | Value |
-| ------------- | ------------- |
-| `Leadcapture` | leadcapture |
-| `Inbound` | inbound |
-| `Appointment` | appointment |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExistingMember.md b/packages/csharp/docs/Models/Components/ExistingMember.md
new file mode 100644
index 00000000..d892a5d5
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ExistingMember.md
@@ -0,0 +1,28 @@
+# ExistingMember
+
+An existing member.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `FirstName` | *string* | :heavy_check_mark: | Member's first name. | Mateo |
+| `LastName` | *string* | :heavy_check_mark: | Member's last name | Allende |
+| `Prefix` | *string* | :heavy_minus_sign: | Used to denote title of member e.g. Mr., Mrs., Dr. etc. | Dr. |
+| `Designation` | *string* | :heavy_minus_sign: | Member's designation in the company. | White Wolf |
+| `JobTitle` | *string* | :heavy_minus_sign: | Member's job title. | Director |
+| `CompanyName` | *string* | :heavy_minus_sign: | Member's company name. | Cvent.inc |
+| `Headline` | *string* | :heavy_minus_sign: | Member's biographical writeup. | A visionary in the field of event planning. |
+| `Pronouns` | *string* | :heavy_minus_sign: | Member's pronouns. | she/her |
+| `SocialMediaLinks` | [SocialMediaLinks](../../Models/Components/SocialMediaLinks.md) | :heavy_minus_sign: | Member's social media links. | |
+| `ProfileImageUrl` | [ExistingMemberLink](../../Models/Components/ExistingMemberLink.md) | :heavy_minus_sign: | The optimized URL of the Events+ member's profile image. | |
+| `EmailAddress` | *string* | :heavy_minus_sign: | Member's email address. | abc@example.com |
+| `MobileNumber` | *string* | :heavy_minus_sign: | Member's mobile number. | 555-555-5555 |
+| `WorkAddress` | [WorkAddress](../../Models/Components/WorkAddress.md) | :heavy_minus_sign: | Member's work address details. | |
+| `Compliance` | [Models.Components.Compliance](../../Models/Components/Compliance.md) | :heavy_minus_sign: | Privacy compliance fields for a contact. | |
+| `Locale` | *string* | :heavy_minus_sign: | Member's preferred language. Used for localization of the UI and emails. The value should be in the form of an ISO-639 language code and ISO 3166-1 Alpha-2 country code separated by a hyphen. e.g. en-US, fr-FR, es-ES etc. | en-US |
+| `RegistrationDate` | [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 member registered. | 2017-01-02T02:00:00Z |
+| `LastLoginDate` | [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 member last logged in. | 2017-01-02T02:00:00Z |
+| `Visible` | *bool* | :heavy_minus_sign: | True indicates member profile is visible to other members. | |
+| `Id` | *string* | :heavy_minus_sign: | The unique ID of the member. | c764fb48-a62b-4c5f-b98f-01b5dae2c2ff |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExistingMemberJson.md b/packages/csharp/docs/Models/Components/ExistingMemberJson.md
deleted file mode 100644
index 156a2feb..00000000
--- a/packages/csharp/docs/Models/Components/ExistingMemberJson.md
+++ /dev/null
@@ -1,28 +0,0 @@
-# ExistingMemberJson
-
-An existing member.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `FirstName` | *string* | :heavy_check_mark: | Member's first name. | Mateo |
-| `LastName` | *string* | :heavy_check_mark: | Member's last name | Allende |
-| `Prefix` | *string* | :heavy_minus_sign: | Used to denote title of member e.g. Mr., Mrs., Dr. etc. | Dr. |
-| `Designation` | *string* | :heavy_minus_sign: | Member's designation in the company. | White Wolf |
-| `JobTitle` | *string* | :heavy_minus_sign: | Member's job title. | Director |
-| `CompanyName` | *string* | :heavy_minus_sign: | Member's company name. | Cvent.inc |
-| `Headline` | *string* | :heavy_minus_sign: | Member's biographical writeup. | A visionary in the field of event planning. |
-| `Pronouns` | *string* | :heavy_minus_sign: | Member's pronouns. | she/her |
-| `SocialMediaLinks` | [SocialMediaLinksJson](../../Models/Components/SocialMediaLinksJson.md) | :heavy_minus_sign: | Member's social media links. | |
-| `ProfileImageUrl` | [ExistingMemberJsonLink](../../Models/Components/ExistingMemberJsonLink.md) | :heavy_minus_sign: | The optimized URL of the Events+ member's profile image. | |
-| `EmailAddress` | *string* | :heavy_minus_sign: | Member's email address. | abc@example.com |
-| `MobileNumber` | *string* | :heavy_minus_sign: | Member's mobile number. | 555-555-5555 |
-| `WorkAddress` | [WorkAddressJson](../../Models/Components/WorkAddressJson.md) | :heavy_minus_sign: | Member's work address details. | |
-| `Compliance` | [ComplianceJson](../../Models/Components/ComplianceJson.md) | :heavy_minus_sign: | Privacy compliance fields for a contact. | |
-| `Locale` | *string* | :heavy_minus_sign: | Member's preferred language. Used for localization of the UI and emails. The value should be in the form of an ISO-639 language code and ISO 3166-1 Alpha-2 country code separated by a hyphen. e.g. en-US, fr-FR, es-ES etc. | en-US |
-| `RegistrationDate` | [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 member registered. | 2017-01-02T02:00:00Z |
-| `LastLoginDate` | [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 member last logged in. | 2017-01-02T02:00:00Z |
-| `Visible` | *bool* | :heavy_minus_sign: | True indicates member profile is visible to other members. | |
-| `Id` | *string* | :heavy_minus_sign: | The unique ID of the member. | c764fb48-a62b-4c5f-b98f-01b5dae2c2ff |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExistingMemberJsonLink.md b/packages/csharp/docs/Models/Components/ExistingMemberJsonLink.md
deleted file mode 100644
index 5ac899e0..00000000
--- a/packages/csharp/docs/Models/Components/ExistingMemberJsonLink.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# ExistingMemberJsonLink
-
-The optimized URL of the Events+ member's profile image.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| --------------------------------------------- | --------------------------------------------- | --------------------------------------------- | --------------------------------------------- | --------------------------------------------- |
-| `Href` | *string* | :heavy_check_mark: | A URL pointing to the member's profile image. | ?token=90c5f062-76ad-4ea4-aa53-00eb698d9262 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExistingMemberLink.md b/packages/csharp/docs/Models/Components/ExistingMemberLink.md
new file mode 100644
index 00000000..d464bd52
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/ExistingMemberLink.md
@@ -0,0 +1,10 @@
+# ExistingMemberLink
+
+The optimized URL of the Events+ member's profile image.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| --------------------------------------------- | --------------------------------------------- | --------------------------------------------- | --------------------------------------------- | --------------------------------------------- |
+| `Href` | *string* | :heavy_check_mark: | A URL pointing to the member's profile image. | ?token=90c5f062-76ad-4ea4-aa53-00eb698d9262 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExistingRegistrationPackJson.md b/packages/csharp/docs/Models/Components/ExistingRegistrationPackJson.md
deleted file mode 100644
index 2394666c..00000000
--- a/packages/csharp/docs/Models/Components/ExistingRegistrationPackJson.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# ExistingRegistrationPackJson
-
-Schema for existing registration pack object
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_check_mark: | Registration pack id | 50f4f0df-0c2d-4e6b-8e68-e1413b6917f5 |
-| `Event` | [EventJson6](../../Models/Components/EventJson6.md) | :heavy_check_mark: | The Associated Event. | |
-| `Exhibitor` | [ExhibitorJson](../../Models/Components/ExhibitorJson.md) | :heavy_check_mark: | The Associated Exhibitor. | |
-| `Capacities` | List<[ExistingCapacityJson](../../Models/Components/ExistingCapacityJson.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/ExistingRegistrationTypeWithAssociatedRegPathJson.md b/packages/csharp/docs/Models/Components/ExistingRegistrationTypeWithAssociatedRegPathJson.md
index e5f387c3..8f633891 100644
--- a/packages/csharp/docs/Models/Components/ExistingRegistrationTypeWithAssociatedRegPathJson.md
+++ b/packages/csharp/docs/Models/Components/ExistingRegistrationTypeWithAssociatedRegPathJson.md
@@ -16,5 +16,5 @@ Represents the details of an existing registration type and registration path as
| `AutomaticEndDate` | [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) the registration type automatically closes for registration. | 2017-01-02T02:00:00Z |
| `Event` | [ExistingRegistrationTypeWithAssociatedRegPathJsonEvent](../../Models/Components/ExistingRegistrationTypeWithAssociatedRegPathJsonEvent.md) | :heavy_minus_sign: | Event associated with the registration. | |
| `Id` | *string* | :heavy_check_mark: | A unique identifier of the registration type. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `Capacity` | [CapacityJson1](../../Models/Components/CapacityJson1.md) | :heavy_minus_sign: | Represents capacity statistics of the registration type. | |
+| `Capacity` | [CapacityJson](../../Models/Components/CapacityJson.md) | :heavy_minus_sign: | Represents capacity statistics of the registration type. | |
| `RegistrationPath` | [AssociatedRegistrationPathJson](../../Models/Components/AssociatedRegistrationPathJson.md) | :heavy_minus_sign: | Represents the details of a registration path. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/ExistingSponsorshipLevel.md b/packages/csharp/docs/Models/Components/ExistingSponsorshipLevel.md
index 894721e1..d9d7d77c 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` | [EventJson6](../../Models/Components/EventJson6.md) | :heavy_check_mark: | The Associated Event. | |
+| `Event` | [Event1](../../Models/Components/Event1.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/ExistingWeblink.md b/packages/csharp/docs/Models/Components/ExistingWeblink.md
index 11ab9494..1472fdf8 100644
--- a/packages/csharp/docs/Models/Components/ExistingWeblink.md
+++ b/packages/csharp/docs/Models/Components/ExistingWeblink.md
@@ -11,8 +11,8 @@ 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` | [EventJson6](../../Models/Components/EventJson6.md) | :heavy_check_mark: | The Associated Event. | |
-| `Exhibitor` | [ExhibitorJson](../../Models/Components/ExhibitorJson.md) | :heavy_check_mark: | The Associated Exhibitor. | |
+| `Event` | [Event1](../../Models/Components/Event1.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 |
| `Hidden` | *bool* | :heavy_minus_sign: | True indicates the weblink is hidden from attendees. | |
diff --git a/packages/csharp/docs/Models/Components/FeatureTypeJson.md b/packages/csharp/docs/Models/Components/FeatureTypeJson.md
index 203f28ec..c511a552 100644
--- a/packages/csharp/docs/Models/Components/FeatureTypeJson.md
+++ b/packages/csharp/docs/Models/Components/FeatureTypeJson.md
@@ -18,7 +18,8 @@ The type of feature available for a container event.
| `Exhibitors` | Centralizes exhibitor setup—profiles, tasks, content/categories—and booth staff and LeadCapture management, with exhibitor listings and engagement surfaced in Attendee Hub. |
| `Vendors` | Allows planners to source and manage event services directly from the container event. |
| `EventAds` | Allows planners to create, place, and track targeted ads across Attendee Hub and the event app. |
-| `EventCredits` | Allows planners to set rules and track credits attendees earn for sessions and the event. |
+| `EventCredits` | Allows planners to set rules and track credits attendees earn for sessions and the event. Only one of `EventCredits` or `CreditsAndCertificates` can be active at a time. |
+| `CreditsAndCertificates` | Allows planners to create credit rules, link them to events and sessions, and award credits to attendees. Also enables creating certificates, linking them to credit rules, and awarding them to attendees. Only one of `EventCredits` or `CreditsAndCertificates` can be active at a time. |
## Example Usage
@@ -31,20 +32,21 @@ var value = FeatureTypeJson.Website;
## Values
-| Name | Value |
-| -------------- | -------------- |
-| `Website` | Website |
-| `Registration` | Registration |
-| `OnArrival` | OnArrival |
-| `AttendeeHub` | AttendeeHub |
-| `Appointments` | Appointments |
-| `Planning` | Planning |
-| `Agenda` | Agenda |
-| `Travel` | Travel |
-| `Marketing` | Marketing |
-| `Surveys` | Surveys |
-| `Speakers` | Speakers |
-| `Exhibitors` | Exhibitors |
-| `Vendors` | Vendors |
-| `EventAds` | EventAds |
-| `EventCredits` | EventCredits |
\ No newline at end of file
+| Name | Value |
+| ------------------------ | ------------------------ |
+| `Website` | Website |
+| `Registration` | Registration |
+| `OnArrival` | OnArrival |
+| `AttendeeHub` | AttendeeHub |
+| `Appointments` | Appointments |
+| `Planning` | Planning |
+| `Agenda` | Agenda |
+| `Travel` | Travel |
+| `Marketing` | Marketing |
+| `Surveys` | Surveys |
+| `Speakers` | Speakers |
+| `Exhibitors` | Exhibitors |
+| `Vendors` | Vendors |
+| `EventAds` | EventAds |
+| `EventCredits` | EventCredits |
+| `CreditsAndCertificates` | CreditsAndCertificates |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/FeatureUpdate.md b/packages/csharp/docs/Models/Components/FeatureUpdate.md
index 5cf238c0..a811d60a 100644
--- a/packages/csharp/docs/Models/Components/FeatureUpdate.md
+++ b/packages/csharp/docs/Models/Components/FeatureUpdate.md
@@ -5,9 +5,9 @@ Representation of an event feature update request
## Fields
-| Field | Type | Required | Description | Example |
-| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Type` | [FeatureTypeJson](../../Models/Components/FeatureTypeJson.md) | :heavy_check_mark: | The type of feature available for a container event.
\| Value \| Description \|
\|-------\|-------------\|
\| `Website` \| Allows you to promote your event with a customizable series of pages. \|
\| `Registration` \| Allows attendees to sign up for your event ahead of time. Once done, they can modify their details or cancel altogether if you allow it. \|
\| `OnArrival` \| Adds several options designed to make supporting your live event as smooth as possible. \|
\| `AttendeeHub` \| Delivers the attendee-facing website and mobile app with agenda/content, engagement tools (live Q&A, polls, gamification), and networking—launchable independently of registration. \|
\| `Appointments` \| Enables attendees, exhibitors, and staff to schedule and manage 1:1 meetings within Attendee Hub. \|
\| `Planning` \| Adds new ways to stay organized behind the scenes throughout the entire event process. \|
\| `Agenda` \| Allows you to manage the breakouts, presentations, or activities (known in Cvent as sessions) that make up your event. \|
\| `Travel` \| Allows you to easily collect and manage invitees' hotel and flight preferences. \|
\| `Marketing` \| Allows planners to create, personalize, and automate branded event emails (invites, reminders, confirmations) and track performance to drive registrations and engagement. \|
\| `Surveys` \| Adds a customizable questionnaire you can use to gather feedback. \|
\| `Speakers` \| Allows you to showcase and manage all the headliners, keynoters, presenters, and moderators contributing to your event. \|
\| `Exhibitors` \| Centralizes exhibitor setup—profiles, tasks, content/categories—and booth staff and LeadCapture management, with exhibitor listings and engagement surfaced in Attendee Hub. \|
\| `Vendors` \| Allows planners to source and manage event services directly from the container event. \|
\| `EventAds` \| Allows planners to create, place, and track targeted ads across Attendee Hub and the event app. \|
\| `EventCredits` \| Allows planners to set rules and track credits attendees earn for sessions and the event. \| | Registration |
-| `Enabled` | *bool* | :heavy_check_mark: | If a particular feature is enabled for the event | true |
-| `EnabledTier` | [TierJson](../../Models/Components/TierJson.md) | :heavy_minus_sign: | Represents the type of license that the user can choose. | PREMIER |
-| `Config` | [FeatureUpdateConfig](../../Models/Components/FeatureUpdateConfig.md) | :heavy_minus_sign: | Feature configuration. | |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Type` | [FeatureTypeJson](../../Models/Components/FeatureTypeJson.md) | :heavy_check_mark: | The type of feature available for a container event.
\| Value \| Description \|
\|-------\|-------------\|
\| `Website` \| Allows you to promote your event with a customizable series of pages. \|
\| `Registration` \| Allows attendees to sign up for your event ahead of time. Once done, they can modify their details or cancel altogether if you allow it. \|
\| `OnArrival` \| Adds several options designed to make supporting your live event as smooth as possible. \|
\| `AttendeeHub` \| Delivers the attendee-facing website and mobile app with agenda/content, engagement tools (live Q&A, polls, gamification), and networking—launchable independently of registration. \|
\| `Appointments` \| Enables attendees, exhibitors, and staff to schedule and manage 1:1 meetings within Attendee Hub. \|
\| `Planning` \| Adds new ways to stay organized behind the scenes throughout the entire event process. \|
\| `Agenda` \| Allows you to manage the breakouts, presentations, or activities (known in Cvent as sessions) that make up your event. \|
\| `Travel` \| Allows you to easily collect and manage invitees' hotel and flight preferences. \|
\| `Marketing` \| Allows planners to create, personalize, and automate branded event emails (invites, reminders, confirmations) and track performance to drive registrations and engagement. \|
\| `Surveys` \| Adds a customizable questionnaire you can use to gather feedback. \|
\| `Speakers` \| Allows you to showcase and manage all the headliners, keynoters, presenters, and moderators contributing to your event. \|
\| `Exhibitors` \| Centralizes exhibitor setup—profiles, tasks, content/categories—and booth staff and LeadCapture management, with exhibitor listings and engagement surfaced in Attendee Hub. \|
\| `Vendors` \| Allows planners to source and manage event services directly from the container event. \|
\| `EventAds` \| Allows planners to create, place, and track targeted ads across Attendee Hub and the event app. \|
\| `EventCredits` \| Allows planners to set rules and track credits attendees earn for sessions and the event. Only one of `EventCredits` or `CreditsAndCertificates` can be active at a time. \|
\| `CreditsAndCertificates` \| Allows planners to create credit rules, link them to events and sessions, and award credits to attendees. Also enables creating certificates, linking them to credit rules, and awarding them to attendees. Only one of `EventCredits` or `CreditsAndCertificates` can be active at a time. \| | Registration |
+| `Enabled` | *bool* | :heavy_check_mark: | If a particular feature is enabled for the event | true |
+| `EnabledTier` | [TierJson](../../Models/Components/TierJson.md) | :heavy_minus_sign: | Represents the type of license that the user can choose. | PREMIER |
+| `Config` | [FeatureUpdateConfig](../../Models/Components/FeatureUpdateConfig.md) | :heavy_minus_sign: | Feature configuration. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/FieldJson3.md b/packages/csharp/docs/Models/Components/FieldJson3.md
new file mode 100644
index 00000000..99819be6
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/FieldJson3.md
@@ -0,0 +1,17 @@
+# FieldJson3
+
+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/FieldJson5.md b/packages/csharp/docs/Models/Components/FieldJson5.md
deleted file mode 100644
index fb9aff38..00000000
--- a/packages/csharp/docs/Models/Components/FieldJson5.md
+++ /dev/null
@@ -1,17 +0,0 @@
-# FieldJson5
-
-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<[ChoiceJson3](../../Models/Components/ChoiceJson3.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 N/A choice or otherAnswer choice | |
-| `OtherAnswer` | [AdditionalChoiceJson2](../../Models/Components/AdditionalChoiceJson2.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/FileInput.md b/packages/csharp/docs/Models/Components/FileInput.md
index 29bf0aa0..d69849ea 100644
--- a/packages/csharp/docs/Models/Components/FileInput.md
+++ b/packages/csharp/docs/Models/Components/FileInput.md
@@ -5,10 +5,10 @@ Content of exhibitor file.
## Fields
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- |
-| `Event` | [EventJson6](../../Models/Components/EventJson6.md) | :heavy_check_mark: | The Associated Event. | |
-| `Exhibitor` | [ExhibitorJson](../../Models/Components/ExhibitorJson.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. | |
-| `Order` | *long* | :heavy_check_mark: | Display order for exhibitor file content. | 3 |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- |
+| `Event` | [Event1](../../Models/Components/Event1.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. | |
+| `Order` | *long* | :heavy_check_mark: | Display order for exhibitor file content. | 3 |
\ 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 a1abac56..d4172721 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` | [AddressJson3](../../Models/Components/AddressJson3.md) | :heavy_minus_sign: | Address details. Required to create/update a guest's reservation if the hotel/event requires an address in reservations. | |
+| `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. | |
| `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/HousingEventHotel.md b/packages/csharp/docs/Models/Components/HousingEventHotel.md
index ad2c9ad8..4e71d979 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` | [AddressJson3](../../Models/Components/AddressJson3.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` | [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
diff --git a/packages/csharp/docs/Models/Components/HubBackground.md b/packages/csharp/docs/Models/Components/HubBackground.md
new file mode 100644
index 00000000..a51770c9
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/HubBackground.md
@@ -0,0 +1,12 @@
+# HubBackground
+
+The background image of the Events+ hub.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
+| `Url` | *string* | :heavy_minus_sign: | The optimized URL of the Events+ hub's background image. The background image appears on the Events+ hub registration page. | https://images.cvent.com/ab5d5f790f6b4a90b29a3711d4ec381f/video-center/4833fde2-eedf-4751-92a5-f788cfa70674/43c5b520abf9635f4168a2ce37a89d89!_!6fbef1a131b81d4bed2b16c175ef57cd.jpeg |
+| `OriginalUrl` | *string* | :heavy_minus_sign: | The original URL of the Events+ hub background image. The background appears on the Events+ hub Registration page. | https://custom.cvent.com/ab5d5f790f6b4a90b29a3711d4ec381f/video-center/4833fde2-eedf-4751-92a5-f788cfa70674/43c5b520abf9635f4168a2ce37a89d89.jpeg |
+| `AltText` | *string* | :heavy_minus_sign: | Alternate text for the background image. | A mostly empty conference room. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/HubBackgroundJson.md b/packages/csharp/docs/Models/Components/HubBackgroundJson.md
deleted file mode 100644
index 0fa3ec4e..00000000
--- a/packages/csharp/docs/Models/Components/HubBackgroundJson.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# HubBackgroundJson
-
-The background image of the Events+ hub.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
-| `Url` | *string* | :heavy_minus_sign: | The optimized URL of the Events+ hub's background image. The background image appears on the Events+ hub registration page. | https://images.cvent.com/ab5d5f790f6b4a90b29a3711d4ec381f/video-center/4833fde2-eedf-4751-92a5-f788cfa70674/43c5b520abf9635f4168a2ce37a89d89!_!6fbef1a131b81d4bed2b16c175ef57cd.jpeg |
-| `OriginalUrl` | *string* | :heavy_minus_sign: | The original URL of the Events+ hub background image. The background appears on the Events+ hub Registration page. | https://custom.cvent.com/ab5d5f790f6b4a90b29a3711d4ec381f/video-center/4833fde2-eedf-4751-92a5-f788cfa70674/43c5b520abf9635f4168a2ce37a89d89.jpeg |
-| `AltText` | *string* | :heavy_minus_sign: | Alternate text for the background image. | A mostly empty conference room. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/HubCalendar.md b/packages/csharp/docs/Models/Components/HubCalendar.md
new file mode 100644
index 00000000..dc260bf5
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/HubCalendar.md
@@ -0,0 +1,11 @@
+# HubCalendar
+
+The event calendar associated with this Events+ hub. The event calendar allows you to share multiple events and sessions in a list or calendar format.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ |
+| `Id` | *string* | :heavy_minus_sign: | The ID of the calendar associated to an Events+ hub. | 1e7e0f38-d73c-4326-9f93-422086b91304 |
+| `Layout` | [Layout](../../Models/Components/Layout.md) | :heavy_minus_sign: | The initial layout style used by front-ends to render the associated calendar. | List |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/HubCalendarJson.md b/packages/csharp/docs/Models/Components/HubCalendarJson.md
deleted file mode 100644
index 5c2494bd..00000000
--- a/packages/csharp/docs/Models/Components/HubCalendarJson.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# HubCalendarJson
-
-The event calendar associated with this Events+ hub. The event calendar allows you to share multiple events and sessions in a list or calendar format.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ |
-| `Id` | *string* | :heavy_minus_sign: | The ID of the calendar associated to an Events+ hub. | 1e7e0f38-d73c-4326-9f93-422086b91304 |
-| `Layout` | [Layout](../../Models/Components/Layout.md) | :heavy_minus_sign: | The initial layout style used by front-ends to render the associated calendar. | List |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/HubColors.md b/packages/csharp/docs/Models/Components/HubColors.md
new file mode 100644
index 00000000..953e001f
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/HubColors.md
@@ -0,0 +1,13 @@
+# HubColors
+
+All the colors associated with the Events+ hub.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- |
+| `Action` | *string* | :heavy_minus_sign: | The secondary color of an Events+ hub. | #0F0F0F |
+| `Background` | *string* | :heavy_minus_sign: | The background color of an Events+ hub. | #0F0F0F |
+| `Main` | *string* | :heavy_minus_sign: | The primary color of an Events+ hub. | #0F0F0F |
+| `Mood` | *string* | :heavy_minus_sign: | An Events+ hub color configuration that can be set to light, dark, or a similar shade to the main color. | #0F0F0F |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/HubColorsJson.md b/packages/csharp/docs/Models/Components/HubColorsJson.md
deleted file mode 100644
index 82a9a963..00000000
--- a/packages/csharp/docs/Models/Components/HubColorsJson.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# HubColorsJson
-
-All the colors associated with the Events+ hub.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- |
-| `Action` | *string* | :heavy_minus_sign: | The secondary color of an Events+ hub. | #0F0F0F |
-| `Background` | *string* | :heavy_minus_sign: | The background color of an Events+ hub. | #0F0F0F |
-| `Main` | *string* | :heavy_minus_sign: | The primary color of an Events+ hub. | #0F0F0F |
-| `Mood` | *string* | :heavy_minus_sign: | An Events+ hub color configuration that can be set to light, dark, or a similar shade to the main color. | #0F0F0F |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/HubFonts.md b/packages/csharp/docs/Models/Components/HubFonts.md
new file mode 100644
index 00000000..1844fed8
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/HubFonts.md
@@ -0,0 +1,11 @@
+# HubFonts
+
+The fonts of the Events+ hub.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- |
+| `HeadingId` | *string* | :heavy_minus_sign: | The id of the font used in this Events+ hub's heading. Custom fonts are previously uploaded in the account. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `BodyId` | *string* | :heavy_minus_sign: | The id of the font used in this Events+ hub's body text. Custom fonts are previously uploaded in account. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/HubFontsJson.md b/packages/csharp/docs/Models/Components/HubFontsJson.md
deleted file mode 100644
index 3aa89d1b..00000000
--- a/packages/csharp/docs/Models/Components/HubFontsJson.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# HubFontsJson
-
-The fonts of the Events+ hub.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- |
-| `HeadingId` | *string* | :heavy_minus_sign: | The id of the font used in this Events+ hub's heading. Custom fonts are previously uploaded in the account. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `BodyId` | *string* | :heavy_minus_sign: | The id of the font used in this Events+ hub's body text. Custom fonts are previously uploaded in account. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/HubLogin.md b/packages/csharp/docs/Models/Components/HubLogin.md
new file mode 100644
index 00000000..ed2cc70f
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/HubLogin.md
@@ -0,0 +1,12 @@
+# HubLogin
+
+Fields relating to the login process for the Events+ hub.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Type` | [HubLoginType](../../Models/Components/HubLoginType.md) | :heavy_minus_sign: | Login method for the members of the Events+ hub. MAGIC_LINK: The members can log in via a 'magic link' provided via email. Magic links are unique for each member, allowing the member to log in without requiring credentials. SSO: The members log in via a single-sign-on (SSO) method previously configured in the Events+ hub. BOTH: Members can log in via the magic link method or the single-sign-on (SSO) method. | |
+| `OrganizationId` | *string* | :heavy_minus_sign: | Organization identifier of a Cvent identity provider when SSO login type is selected. This value is provided by Cvent when an account is first configured to support SSO. To read more about Cvent SSO support, see https://developers.cvent.com/docs/sso/overview. | OneloginforFlexGuestside |
+| `IdpUrl` | *string* | :heavy_minus_sign: | The service provider-initiated URL, used by Events+ hub members for single sign-on (SSO). Used when the `type` property is SSO or BOTH. | https://login.cvent.com/redirect?redirectUrl=https://cvent-login.com/oauth2/oauth-redirect&productId=0oaztigu7sVcS4PHM0h7&identityProviderName=OneloginforFlexGuestside |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/HubLoginJson.md b/packages/csharp/docs/Models/Components/HubLoginJson.md
deleted file mode 100644
index 1a7fda7e..00000000
--- a/packages/csharp/docs/Models/Components/HubLoginJson.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# HubLoginJson
-
-Fields relating to the login process for the Events+ hub.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Type` | [HubLoginJsonType](../../Models/Components/HubLoginJsonType.md) | :heavy_minus_sign: | Login method for the members of the Events+ hub. MAGIC_LINK: The members can log in via a 'magic link' provided via email. Magic links are unique for each member, allowing the member to log in without requiring credentials. SSO: The members log in via a single-sign-on (SSO) method previously configured in the Events+ hub. BOTH: Members can log in via the magic link method or the single-sign-on (SSO) method. | |
-| `OrganizationId` | *string* | :heavy_minus_sign: | Organization identifier of a Cvent identity provider when SSO login type is selected. This value is provided by Cvent when an account is first configured to support SSO. To read more about Cvent SSO support, see https://developers.cvent.com/docs/sso/overview. | OneloginforFlexGuestside |
-| `IdpUrl` | *string* | :heavy_minus_sign: | The service provider-initiated URL, used by Events+ hub members for single sign-on (SSO). Used when the `type` property is SSO or BOTH. | https://login.cvent.com/redirect?redirectUrl=https://cvent-login.com/oauth2/oauth-redirect&productId=0oaztigu7sVcS4PHM0h7&identityProviderName=OneloginforFlexGuestside |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/HubLoginJsonType.md b/packages/csharp/docs/Models/Components/HubLoginJsonType.md
deleted file mode 100644
index cccf40be..00000000
--- a/packages/csharp/docs/Models/Components/HubLoginJsonType.md
+++ /dev/null
@@ -1,20 +0,0 @@
-# HubLoginJsonType
-
-Login method for the members of the Events+ hub. MAGIC_LINK: The members can log in via a 'magic link' provided via email. Magic links are unique for each member, allowing the member to log in without requiring credentials. SSO: The members log in via a single-sign-on (SSO) method previously configured in the Events+ hub. BOTH: Members can log in via the magic link method or the single-sign-on (SSO) method.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = HubLoginJsonType.MagicLink;
-```
-
-
-## Values
-
-| Name | Value |
-| ----------- | ----------- |
-| `MagicLink` | MAGIC_LINK |
-| `Sso` | SSO |
-| `Both` | BOTH |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/HubLoginType.md b/packages/csharp/docs/Models/Components/HubLoginType.md
new file mode 100644
index 00000000..77c67b36
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/HubLoginType.md
@@ -0,0 +1,20 @@
+# HubLoginType
+
+Login method for the members of the Events+ hub. MAGIC_LINK: The members can log in via a 'magic link' provided via email. Magic links are unique for each member, allowing the member to log in without requiring credentials. SSO: The members log in via a single-sign-on (SSO) method previously configured in the Events+ hub. BOTH: Members can log in via the magic link method or the single-sign-on (SSO) method.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = HubLoginType.MagicLink;
+```
+
+
+## Values
+
+| Name | Value |
+| ----------- | ----------- |
+| `MagicLink` | MAGIC_LINK |
+| `Sso` | SSO |
+| `Both` | BOTH |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/HubLogo.md b/packages/csharp/docs/Models/Components/HubLogo.md
new file mode 100644
index 00000000..eb4b33b4
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/HubLogo.md
@@ -0,0 +1,12 @@
+# HubLogo
+
+The logo for the Events+ hub.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
+| `Url` | *string* | :heavy_minus_sign: | The optimized Events+ hub logo image URL. | https://images.cvent.com/ab5d5f790f6b4a90b29a3711d4ec381f/video-center/4833fde2-eedf-4751-92a5-f788cfa70674/43c5b520abf9635f4168a2ce37a89d89!_!6fbef1a131b81d4bed2b16c175ef57cd.jpeg |
+| `OriginalUrl` | *string* | :heavy_minus_sign: | The original URL of the logo image that was uploaded to the Events+ hub. Supported file types are JPEG, JPG, PNG, GIF. Recommended logo size is 170 x 90 pixels and 72 PPI. | https://custom.cvent.com/ab5d5f790f6b4a90b29a3711d4ec381f/video-center/4833fde2-eedf-4751-92a5-f788cfa70674/43c5b520abf9635f4168a2ce37a89d89.jpeg |
+| `AltText` | *string* | :heavy_minus_sign: | Alternate text for the logo image. | A mostly empty conference room. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/HubLogoJson.md b/packages/csharp/docs/Models/Components/HubLogoJson.md
deleted file mode 100644
index c1851018..00000000
--- a/packages/csharp/docs/Models/Components/HubLogoJson.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# HubLogoJson
-
-The logo for the Events+ hub.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
-| `Url` | *string* | :heavy_minus_sign: | The optimized Events+ hub logo image URL. | https://images.cvent.com/ab5d5f790f6b4a90b29a3711d4ec381f/video-center/4833fde2-eedf-4751-92a5-f788cfa70674/43c5b520abf9635f4168a2ce37a89d89!_!6fbef1a131b81d4bed2b16c175ef57cd.jpeg |
-| `OriginalUrl` | *string* | :heavy_minus_sign: | The original URL of the logo image that was uploaded to the Events+ hub. Supported file types are JPEG, JPG, PNG, GIF. Recommended logo size is 170 x 90 pixels and 72 PPI. | https://custom.cvent.com/ab5d5f790f6b4a90b29a3711d4ec381f/video-center/4833fde2-eedf-4751-92a5-f788cfa70674/43c5b520abf9635f4168a2ce37a89d89.jpeg |
-| `AltText` | *string* | :heavy_minus_sign: | Alternate text for the logo image. | A mostly empty conference room. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/HubOwner.md b/packages/csharp/docs/Models/Components/HubOwner.md
new file mode 100644
index 00000000..c97307fc
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/HubOwner.md
@@ -0,0 +1,12 @@
+# HubOwner
+
+The owner of the Events+ hub and their information.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| --------------------------------------- | --------------------------------------- | --------------------------------------- | --------------------------------------- | --------------------------------------- |
+| `FirstName` | *string* | :heavy_minus_sign: | First name of the Events+ hub owner. | Achuthanandan |
+| `LastName` | *string* | :heavy_minus_sign: | Last name of the Events+ hub owner. | Velikkakathu Sankaran |
+| `Email` | *string* | :heavy_minus_sign: | Email address of the Events+ hub owner. | owner@example.com |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/HubOwnerJson.md b/packages/csharp/docs/Models/Components/HubOwnerJson.md
deleted file mode 100644
index afc1cebe..00000000
--- a/packages/csharp/docs/Models/Components/HubOwnerJson.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# HubOwnerJson
-
-The owner of the Events+ hub and their information.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| --------------------------------------- | --------------------------------------- | --------------------------------------- | --------------------------------------- | --------------------------------------- |
-| `FirstName` | *string* | :heavy_minus_sign: | First name of the Events+ hub owner. | Achuthanandan |
-| `LastName` | *string* | :heavy_minus_sign: | Last name of the Events+ hub owner. | Velikkakathu Sankaran |
-| `Email` | *string* | :heavy_minus_sign: | Email address of the Events+ hub owner. | owner@example.com |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/HubStatusProperty.md b/packages/csharp/docs/Models/Components/HubStatusProperty.md
new file mode 100644
index 00000000..6d425b2a
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/HubStatusProperty.md
@@ -0,0 +1,20 @@
+# HubStatusProperty
+
+The current Events+ Hub status. Inactive: The Events+ Hub is inactive and unavailable to members. Active: Members can access the Events+ Hub. Deleted: The Events+ Hub has been deleted and is unavailable to members or planners.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = HubStatusProperty.Inactive;
+```
+
+
+## Values
+
+| Name | Value |
+| ---------- | ---------- |
+| `Inactive` | Inactive |
+| `Active` | Active |
+| `Deleted` | Deleted |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/HubStatusPropertyJson.md b/packages/csharp/docs/Models/Components/HubStatusPropertyJson.md
deleted file mode 100644
index e5ea607a..00000000
--- a/packages/csharp/docs/Models/Components/HubStatusPropertyJson.md
+++ /dev/null
@@ -1,20 +0,0 @@
-# HubStatusPropertyJson
-
-The current Events+ Hub status. Inactive: The Events+ Hub is inactive and unavailable to members. Active: Members can access the Events+ Hub. Deleted: The Events+ Hub has been deleted and is unavailable to members or planners.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = HubStatusPropertyJson.Inactive;
-```
-
-
-## Values
-
-| Name | Value |
-| ---------- | ---------- |
-| `Inactive` | Inactive |
-| `Active` | Active |
-| `Deleted` | Deleted |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/HubsPaginatedResponse.md b/packages/csharp/docs/Models/Components/HubsPaginatedResponse.md
index 8b946270..1119b65f 100644
--- a/packages/csharp/docs/Models/Components/HubsPaginatedResponse.md
+++ b/packages/csharp/docs/Models/Components/HubsPaginatedResponse.md
@@ -7,5 +7,5 @@ The response from a request to get the list of Events+ hubs. This includes the p
| 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<[ExistingHub](../../Models/Components/ExistingHub.md)> | :heavy_check_mark: | List of Events+ hubs. |
\ 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 46c09bb9..885ab394 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` | [PagingJson25](../../Models/Components/PagingJson25.md) | :heavy_check_mark: | Represents pagination information for a collection of resources. |
+| `Paging` | [PagingJson23](../../Models/Components/PagingJson23.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
new file mode 100644
index 00000000..714e9fa0
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Lead.md
@@ -0,0 +1,40 @@
+# Lead
+
+A JSON Schema file for Lead.
+
+
+## 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 |
+| `Event` | [Event1](../../Models/Components/Event1.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 | |
+| `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` | [Appointment](../../Models/Components/Appointment.md) | :heavy_minus_sign: | A JSON schema representing the structure of an appointment object. | |
+| `Title` | *string* | :heavy_minus_sign: | The title of the lead | Mr. |
+| `FirstName` | *string* | :heavy_minus_sign: | The first name of the lead | Henry |
+| `LastName` | *string* | :heavy_minus_sign: | The last name of the lead | Potterfield |
+| `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 | |
+| `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 | |
+| `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. | |
+| `Source` | [Source](../../Models/Components/Source.md) | :heavy_minus_sign: | The source of entry for the lead | |
+| `Deleted` | *bool* | :heavy_minus_sign: | A boolean indicating whether a lead is deleted or not | |
+| `Comments` | *string* | :heavy_minus_sign: | Comments about the lead | I am interested in your product. |
+| `LicenseCode` | *string* | :heavy_minus_sign: | License (access code) that was used to capture the lead | nag1248 |
+| `Matched` | *bool* | :heavy_minus_sign: | A boolean indicating whether the lead is matched or not | true |
+| `TranscriptionStatus` | [TranscriptionStatus](../../Models/Components/TranscriptionStatus.md) | :heavy_minus_sign: | Current status of business card transcription | |
+| `Qualified` | *bool* | :heavy_minus_sign: | A boolean indicating whether a lead is qualified or not | true |
+| `AdditionalBadgekitFields` | [AdditionalBadgekitFields](../../Models/Components/AdditionalBadgekitFields.md) | :heavy_minus_sign: | Map containing extra properties from badgekit provider | |
+| `Id` | *string* | :heavy_minus_sign: | ID of Lead. | cdd0d110-3a84-4bc5-a420-37c007716c73 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Lead2.md b/packages/csharp/docs/Models/Components/Lead2.md
new file mode 100644
index 00000000..055feab5
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Lead2.md
@@ -0,0 +1,10 @@
+# Lead2
+
+JSON schema for the Lead object
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
+| `Id` | *string* | :heavy_check_mark: | Lead id | 4e74f930-db22-11eb-8d19-0242ac130003 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/LeadAddressJson.md b/packages/csharp/docs/Models/Components/LeadAddressJson.md
deleted file mode 100644
index d038bbeb..00000000
--- a/packages/csharp/docs/Models/Components/LeadAddressJson.md
+++ /dev/null
@@ -1,17 +0,0 @@
-# LeadAddressJson
-
-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/LeadAppointmentJson.md b/packages/csharp/docs/Models/Components/LeadAppointmentJson.md
deleted file mode 100644
index 62724852..00000000
--- a/packages/csharp/docs/Models/Components/LeadAppointmentJson.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# LeadAppointmentJson
-
-A JSON schema representing the structure of an appointment object.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
-| `Id` | *string* | :heavy_minus_sign: | Appointment id | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/LeadAttendeeJson.md b/packages/csharp/docs/Models/Components/LeadAttendeeJson.md
deleted file mode 100644
index 395c51a1..00000000
--- a/packages/csharp/docs/Models/Components/LeadAttendeeJson.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# LeadAttendeeJson
-
-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/LeadBoothStaffJson.md b/packages/csharp/docs/Models/Components/LeadBoothStaffJson.md
deleted file mode 100644
index f60a383f..00000000
--- a/packages/csharp/docs/Models/Components/LeadBoothStaffJson.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# LeadBoothStaffJson
-
-A JSON schema representing Booth Staff entity
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
-| `Id` | *string* | :heavy_minus_sign: | Booth Staff id | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/LeadDeviceJson.md b/packages/csharp/docs/Models/Components/LeadDeviceJson.md
deleted file mode 100644
index 497a9e60..00000000
--- a/packages/csharp/docs/Models/Components/LeadDeviceJson.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# LeadDeviceJson
-
-A JSON object representing an electronic device used to capture leads.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| --------------------------------------- | --------------------------------------- | --------------------------------------- | --------------------------------------- | --------------------------------------- |
-| `Id` | *string* | :heavy_minus_sign: | The id of device used to capture lead | EKEK993IF9F |
-| `Name` | *string* | :heavy_minus_sign: | The name of device used to capture lead | North Gate |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/LeadJson.md b/packages/csharp/docs/Models/Components/LeadJson.md
deleted file mode 100644
index b478b5cb..00000000
--- a/packages/csharp/docs/Models/Components/LeadJson.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# LeadJson
-
-JSON schema for the Lead object
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
-| `Id` | *string* | :heavy_check_mark: | Lead id | 4e74f930-db22-11eb-8d19-0242ac130003 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/LeadQualificationAnswers.md b/packages/csharp/docs/Models/Components/LeadQualificationAnswers.md
new file mode 100644
index 00000000..e7edcfe2
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/LeadQualificationAnswers.md
@@ -0,0 +1,19 @@
+# LeadQualificationAnswers
+
+This JSON schema file represents lead qualification answers
+
+
+## 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: | Lead Qualification Answer id | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `Question` | [Uuid1](../../Models/Components/Uuid1.md) | :heavy_minus_sign: | The reference to the related entity. Contains only the ID of the related entity. | |
+| `Event` | [Event1](../../Models/Components/Event1.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/LeadQualificationAnswersJson.md b/packages/csharp/docs/Models/Components/LeadQualificationAnswersJson.md
deleted file mode 100644
index f0905695..00000000
--- a/packages/csharp/docs/Models/Components/LeadQualificationAnswersJson.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# LeadQualificationAnswersJson
-
-This JSON schema file represents lead qualification answers
-
-
-## 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: | Lead Qualification Answer id | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `Question` | [UuidJson](../../Models/Components/UuidJson.md) | :heavy_minus_sign: | The reference to the related entity. Contains only the ID of the related entity. | |
-| `Event` | [EventJson6](../../Models/Components/EventJson6.md) | :heavy_minus_sign: | The Associated Event. | |
-| `Exhibitor` | [ExhibitorJson](../../Models/Components/ExhibitorJson.md) | :heavy_minus_sign: | The Associated Exhibitor. | |
-| `Lead` | [LeadJson](../../Models/Components/LeadJson.md) | :heavy_minus_sign: | JSON schema for the Lead object | |
-| `Answers` | List<[AnswerJson](../../Models/Components/AnswerJson.md)> | :heavy_minus_sign: | List of answers | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/LeadQualificationAnswersListResponse.md b/packages/csharp/docs/Models/Components/LeadQualificationAnswersListResponse.md
index a61488eb..1987424f 100644
--- a/packages/csharp/docs/Models/Components/LeadQualificationAnswersListResponse.md
+++ b/packages/csharp/docs/Models/Components/LeadQualificationAnswersListResponse.md
@@ -5,6 +5,6 @@ A JSON schema representing the response for a list of lead qualification answers
## Fields
-| Field | Type | Required | Description |
-| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- |
-| `Data` | List<[LeadQualificationAnswersJson](../../Models/Components/LeadQualificationAnswersJson.md)> | :heavy_minus_sign: | Collection of Lead Qualification Answers. |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
+| `Data` | List<[LeadQualificationAnswers](../../Models/Components/LeadQualificationAnswers.md)> | :heavy_minus_sign: | Collection of Lead Qualification 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
new file mode 100644
index 00000000..bcc13a50
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/LeadQualificationQuestion.md
@@ -0,0 +1,23 @@
+# LeadQualificationQuestion
+
+A JSON schema representing a Lead Qualification Question model
+
+
+## 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: | Lead Qualification Question id | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `Event` | [Event1](../../Models/Components/Event1.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 | |
+| `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/LeadQualificationQuestionJson.md b/packages/csharp/docs/Models/Components/LeadQualificationQuestionJson.md
deleted file mode 100644
index 3d285a71..00000000
--- a/packages/csharp/docs/Models/Components/LeadQualificationQuestionJson.md
+++ /dev/null
@@ -1,23 +0,0 @@
-# LeadQualificationQuestionJson
-
-A JSON schema representing a Lead Qualification Question model
-
-
-## 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: | Lead Qualification Question id | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `Event` | [EventJson6](../../Models/Components/EventJson6.md) | :heavy_minus_sign: | The Associated Event. | |
-| `Exhibitor` | [ExhibitorJson](../../Models/Components/ExhibitorJson.md) | :heavy_minus_sign: | The Associated Exhibitor. | |
-| `Type` | [LeadQualificationQuestionJsonType](../../Models/Components/LeadQualificationQuestionJsonType.md) | :heavy_minus_sign: | Type of question | |
-| `Code` | *string* | :heavy_minus_sign: | question code | cult |
-| `Choices` | List<[ChoiceJson2](../../Models/Components/ChoiceJson2.md)> | :heavy_minus_sign: | List of available choices for the question | |
-| `NotApplicableAnswer` | [AdditionalChoiceJson11](../../Models/Components/AdditionalChoiceJson11.md) | :heavy_minus_sign: | Contains text of additional choice | |
-| `OtherAnswers` | [AdditionalChoiceJson11](../../Models/Components/AdditionalChoiceJson11.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/LeadQualificationQuestionJsonType.md b/packages/csharp/docs/Models/Components/LeadQualificationQuestionJsonType.md
deleted file mode 100644
index c3ad5d46..00000000
--- a/packages/csharp/docs/Models/Components/LeadQualificationQuestionJsonType.md
+++ /dev/null
@@ -1,23 +0,0 @@
-# LeadQualificationQuestionJsonType
-
-Type of question
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = LeadQualificationQuestionJsonType.MultiChoice;
-```
-
-
-## Values
-
-| Name | Value |
-| ------------------------- | ------------------------- |
-| `MultiChoice` | MultiChoice |
-| `SingleChoice` | SingleChoice |
-| `Rating` | Rating |
-| `OpenEndedTextOneLine` | OpenEndedTextOneLine |
-| `OpenEndedTextCommentBox` | OpenEndedTextCommentBox |
-| `OpenEndedDateTime` | OpenEndedDateTime |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/LeadQualificationQuestionType.md b/packages/csharp/docs/Models/Components/LeadQualificationQuestionType.md
new file mode 100644
index 00000000..1fd6e320
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/LeadQualificationQuestionType.md
@@ -0,0 +1,23 @@
+# LeadQualificationQuestionType
+
+Type of question
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = LeadQualificationQuestionType.MultiChoice;
+```
+
+
+## Values
+
+| Name | Value |
+| ------------------------- | ------------------------- |
+| `MultiChoice` | MultiChoice |
+| `SingleChoice` | SingleChoice |
+| `Rating` | Rating |
+| `OpenEndedTextOneLine` | OpenEndedTextOneLine |
+| `OpenEndedTextCommentBox` | OpenEndedTextCommentBox |
+| `OpenEndedDateTime` | OpenEndedDateTime |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/LeadQualificationQuestionsListResponse.md b/packages/csharp/docs/Models/Components/LeadQualificationQuestionsListResponse.md
index 38560145..6a99909d 100644
--- a/packages/csharp/docs/Models/Components/LeadQualificationQuestionsListResponse.md
+++ b/packages/csharp/docs/Models/Components/LeadQualificationQuestionsListResponse.md
@@ -5,6 +5,6 @@ A response containing a list of lead qualification questions.
## Fields
-| Field | Type | Required | Description |
-| ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- |
-| `Data` | List<[LeadQualificationQuestionJson](../../Models/Components/LeadQualificationQuestionJson.md)> | :heavy_minus_sign: | Collection of lead qualification questions. |
\ No newline at end of file
+| Field | Type | Required | Description |
+| --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- |
+| `Data` | List<[LeadQualificationQuestion](../../Models/Components/LeadQualificationQuestion.md)> | :heavy_minus_sign: | Collection of lead qualification questions. |
\ 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 6b47b633..9a9a4d82 100644
--- a/packages/csharp/docs/Models/Components/LeadSource.md
+++ b/packages/csharp/docs/Models/Components/LeadSource.md
@@ -5,7 +5,7 @@ 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 section can be fetched using lead source API. (under development currently) | 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
+| 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/LeadSourceJson.md b/packages/csharp/docs/Models/Components/LeadSourceJson.md
index d2ea77e1..e7ba1779 100644
--- a/packages/csharp/docs/Models/Components/LeadSourceJson.md
+++ b/packages/csharp/docs/Models/Components/LeadSourceJson.md
@@ -5,7 +5,7 @@ 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 section can be fetched using lead source API. (under development currently) | 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
+| 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/LeadSourceSectionJson.md b/packages/csharp/docs/Models/Components/LeadSourceSectionJson.md
index baaef38a..372be664 100644
--- a/packages/csharp/docs/Models/Components/LeadSourceSectionJson.md
+++ b/packages/csharp/docs/Models/Components/LeadSourceSectionJson.md
@@ -5,6 +5,6 @@ Represents lead source section details, which is a sub area of source generating
## 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 (under development currently). | 40dc08af-24a9-4d01-84be-3d43133dc945 |
\ No newline at end of file
+| 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/LeadType.md b/packages/csharp/docs/Models/Components/LeadType.md
new file mode 100644
index 00000000..f043ffd6
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/LeadType.md
@@ -0,0 +1,20 @@
+# LeadType
+
+The type of lead.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = LeadType.Leadcapture;
+```
+
+
+## Values
+
+| Name | Value |
+| ------------- | ------------- |
+| `Leadcapture` | leadcapture |
+| `Inbound` | inbound |
+| `Appointment` | appointment |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/LeadsPaginatedResponse.md b/packages/csharp/docs/Models/Components/LeadsPaginatedResponse.md
index 65b6e69a..873e86c5 100644
--- a/packages/csharp/docs/Models/Components/LeadsPaginatedResponse.md
+++ b/packages/csharp/docs/Models/Components/LeadsPaginatedResponse.md
@@ -5,7 +5,7 @@ A paginated response of leads.
## Fields
-| Field | Type | Required | Description |
-| --------------------------------------------------------------------- | --------------------------------------------------------------------- | --------------------------------------------------------------------- | --------------------------------------------------------------------- |
-| `Paging` | [PagingJson](../../Models/Components/PagingJson.md) | :heavy_minus_sign: | Represents pagination information for a collection of resources. |
-| `Data` | List<[ExistingLeadJson](../../Models/Components/ExistingLeadJson.md)> | :heavy_minus_sign: | Collection of leads. |
\ 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<[Lead](../../Models/Components/Lead.md)> | :heavy_minus_sign: | Collection of leads. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Link.md b/packages/csharp/docs/Models/Components/Link.md
new file mode 100644
index 00000000..60553d9a
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Link.md
@@ -0,0 +1,10 @@
+# Link
+
+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/MeetingRequestCustomFieldJson.md b/packages/csharp/docs/Models/Components/MeetingRequestCustomFieldJson.md
index 10f29da6..e470dce9 100644
--- a/packages/csharp/docs/Models/Components/MeetingRequestCustomFieldJson.md
+++ b/packages/csharp/docs/Models/Components/MeetingRequestCustomFieldJson.md
@@ -21,4 +21,4 @@ Custom field for a meeting request.
| `MaxChoice` | *double* | :heavy_minus_sign: | The maximum number of choices allowed for a multi-choice field. | 10 |
| `MinDate` | *string* | :heavy_minus_sign: | The ISO 8601 minimum date value for a date field. | 1970-12-23 |
| `MaxDate` | *string* | :heavy_minus_sign: | The ISO 8601 maximum date value for a date field. | 2100-12-31 |
-| `AnswerTypes` | List<[AnswerTypeJson1](../../Models/Components/AnswerTypeJson1.md)> | :heavy_minus_sign: | List of non-null answer types applicable to the question, such as `Other` or `NA`. This field is omitted when no non-default answer type is defined for the question. | |
\ No newline at end of file
+| `AnswerTypes` | List<[AnswerTypeJson](../../Models/Components/AnswerTypeJson.md)> | :heavy_minus_sign: | List of non-null answer types applicable to the question, such as `Other` or `NA`. This field is omitted when no non-default answer type is defined for the question. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/MeetingRequestEvent.md b/packages/csharp/docs/Models/Components/MeetingRequestEvent.md
index 622c988a..0014b71c 100644
--- a/packages/csharp/docs/Models/Components/MeetingRequestEvent.md
+++ b/packages/csharp/docs/Models/Components/MeetingRequestEvent.md
@@ -5,6 +5,6 @@ The event the request is associated with.
## Fields
-| Field | Type | Required | Description |
-| ------------------ | ------------------ | ------------------ | ------------------ |
-| `Id` | *string* | :heavy_minus_sign: | Event ID. |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Id` | *string* | :heavy_minus_sign: | Event ID. This field may be absent immediately after creation when the meeting request form is configured to auto-create an event on submission, as event creation is processed asynchronously. |
\ 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 1380e697..1b48a1b6 100644
--- a/packages/csharp/docs/Models/Components/MeetingRequestQuestionJson.md
+++ b/packages/csharp/docs/Models/Components/MeetingRequestQuestionJson.md
@@ -11,6 +11,6 @@ A question and its answer for a meeting request. Some questions have fixed, well
| `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 |
| `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` | [AnswerTypeJson1](../../Models/Components/AnswerTypeJson1.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 |
+| `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. |
| `CompositeValue` | [CompositeValueJson](../../Models/Components/CompositeValueJson.md) | :heavy_minus_sign: | The structured representation of a complex question answer. Contains the same data as `value`, parsed into typed objects instead of JSON-serialized strings. This field is **read-only** — to write complex question answers, use `value` instead.
The structure of the array depends on the question `type`. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/PaginatedExistingMember.md b/packages/csharp/docs/Models/Components/PaginatedExistingMember.md
index cf462033..0ca6121c 100644
--- a/packages/csharp/docs/Models/Components/PaginatedExistingMember.md
+++ b/packages/csharp/docs/Models/Components/PaginatedExistingMember.md
@@ -5,7 +5,7 @@ A paginated list of Events+ 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<[ExistingMemberJson](../../Models/Components/ExistingMemberJson.md)> | :heavy_check_mark: | Collection of Events+ 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<[ExistingMember](../../Models/Components/ExistingMember.md)> | :heavy_check_mark: | Collection of Events+ members. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/PaginationLinks.md b/packages/csharp/docs/Models/Components/PaginationLinks.md
new file mode 100644
index 00000000..45c3c75f
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/PaginationLinks.md
@@ -0,0 +1,12 @@
+# PaginationLinks
+
+Represents pagination links for navigating between pages of data.
+
+
+## Fields
+
+| Field | Type | Required | Description |
+| ---------------------------------------- | ---------------------------------------- | ---------------------------------------- | ---------------------------------------- |
+| `Next` | [Link](../../Models/Components/Link.md) | :heavy_minus_sign: | Represents a link to a related resource. |
+| `Self` | [Link](../../Models/Components/Link.md) | :heavy_minus_sign: | Represents a link to a related resource. |
+| `Prev` | [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/Paging.md b/packages/csharp/docs/Models/Components/Paging.md
new file mode 100644
index 00000000..64f854f8
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Paging.md
@@ -0,0 +1,15 @@
+# Paging
+
+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 |
+| `TotalCount` | *long* | :heavy_minus_sign: | The total number of records available. This field may return blank, even if there are more records. To confirm if there are more records, check the `nextToken` field. | 2 |
+| `Links` | [PaginationLinks](../../Models/Components/PaginationLinks.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/PagingJson23.md b/packages/csharp/docs/Models/Components/PagingJson23.md
new file mode 100644
index 00000000..6adde977
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/PagingJson23.md
@@ -0,0 +1,14 @@
+# PagingJson23
+
+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/PagingJson25.md b/packages/csharp/docs/Models/Components/PagingJson25.md
deleted file mode 100644
index e50bc289..00000000
--- a/packages/csharp/docs/Models/Components/PagingJson25.md
+++ /dev/null
@@ -1,14 +0,0 @@
-# PagingJson25
-
-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/PaymentInfoJson.md b/packages/csharp/docs/Models/Components/PaymentInfoJson.md
index f14f95bc..7e9c2c4c 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` | [AddressJson3](../../Models/Components/AddressJson3.md) | :heavy_minus_sign: | Address details. Required to create/update a guest's reservation if the hotel/event requires an address in reservations. | |
+| `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. | |
| `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/ProcessFormSubmissionJson.md b/packages/csharp/docs/Models/Components/ProcessFormSubmissionJson.md
index 4d618f90..e7108f9f 100644
--- a/packages/csharp/docs/Models/Components/ProcessFormSubmissionJson.md
+++ b/packages/csharp/docs/Models/Components/ProcessFormSubmissionJson.md
@@ -11,8 +11,8 @@ Represents a process form submission in the context of a specific event.
| `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 unique ID representing the process form submission. | f66a6cb0-4531-0f3a-cb1a-64f3017f1149 |
-| `Event` | [ProcessFormSubmissionJsonEvent](../../Models/Components/ProcessFormSubmissionJsonEvent.md) | :heavy_minus_sign: | The event which the process form submission is associated with. | |
+| `Id` | *string* | :heavy_check_mark: | The unique ID representing the process form submission. | f66a6cb0-4531-0f3a-cb1a-64f3017f1149 |
+| `Event` | [ProcessFormSubmissionJsonEvent](../../Models/Components/ProcessFormSubmissionJsonEvent.md) | :heavy_check_mark: | The event which the process form submission is associated with. | |
| `ProcessForm` | [ProcessFormJson](../../Models/Components/ProcessFormJson.md) | :heavy_minus_sign: | An object that contains the process form ID.
This is an **expandable** object and if requested will contain the name of a process form object. | |
| `Status` | *string* | :heavy_minus_sign: | The status of the process form submission. The status is planner defined and can be any string. | initialized |
| `Questions` | List<[ProcessFormSubmissionQuestionJson](../../Models/Components/ProcessFormSubmissionQuestionJson.md)> | :heavy_minus_sign: | The list of possible answers to a question. | |
\ 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 96ca4470..64db1393 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` | [AddressJson5](../../Models/Components/AddressJson5.md) | :heavy_minus_sign: | A physical address. | |
+| `Address` | [AddressJson4](../../Models/Components/AddressJson4.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/PublicUsagePlan.md b/packages/csharp/docs/Models/Components/PublicUsagePlan.md
index fe50a4c4..9adbbb43 100644
--- a/packages/csharp/docs/Models/Components/PublicUsagePlan.md
+++ b/packages/csharp/docs/Models/Components/PublicUsagePlan.md
@@ -11,4 +11,4 @@ Object representing an API Platform Usage Tier, including information when the u
| `Quota` | *double* | :heavy_check_mark: | The daily quota of the usage tier. If this value is null, this means the usage tier is unlimited. | 1000 |
| `BurstLimit` | *double* | :heavy_check_mark: | The burst limit capacity of the usage tier | 1 |
| `RateLimit` | *double* | :heavy_check_mark: | The per-second steady rate-limit of the usage tier | 2 |
-| `SwitchBackPlan` | [SwitchBackTargetUsagePlanJson](../../Models/Components/SwitchBackTargetUsagePlanJson.md) | :heavy_minus_sign: | Object representing the target usage plan and the date when the current plan is scheduled to revert to it. This object is only present when a switch-back is scheduled. | |
\ No newline at end of file
+| `SwitchBackPlan` | [SwitchBackTargetUsagePlan](../../Models/Components/SwitchBackTargetUsagePlan.md) | :heavy_minus_sign: | Object representing the target usage plan and the date when the current plan is scheduled to revert to it. This object is only present when a switch-back is scheduled. | |
\ 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 a1c73a5d..a0a3363a 100644
--- a/packages/csharp/docs/Models/Components/QuestionJson2.md
+++ b/packages/csharp/docs/Models/Components/QuestionJson2.md
@@ -17,14 +17,14 @@ A survey question.
| `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<[ChoiceJson3](../../Models/Components/ChoiceJson3.md)> | :heavy_minus_sign: | List of choices for the question. | |
+| `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` | [AdditionalChoiceJson2](../../Models/Components/AdditionalChoiceJson2.md) | :heavy_minus_sign: | Contains text of additional choice i.e N/A choice or otherAnswer choice | |
-| `OtherAnswer` | [AdditionalChoiceJson2](../../Models/Components/AdditionalChoiceJson2.md) | :heavy_minus_sign: | Contains text of additional choice i.e N/A choice or otherAnswer choice | |
+| `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<[FieldJson5](../../Models/Components/FieldJson5.md)> | :heavy_minus_sign: | List of fields for form/matrix questions | |
+| `Fields` | List<[FieldJson3](../../Models/Components/FieldJson3.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/QuestionResponseJson.md b/packages/csharp/docs/Models/Components/QuestionResponseJson.md
index 01fba761..3fa91458 100644
--- a/packages/csharp/docs/Models/Components/QuestionResponseJson.md
+++ b/packages/csharp/docs/Models/Components/QuestionResponseJson.md
@@ -8,4 +8,4 @@ A Question response.
| Field | Type | Required | Description |
| ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- |
| `Question` | [QuestionJson3](../../Models/Components/QuestionJson3.md) | :heavy_minus_sign: | The question that was answered. |
-| `Answers` | List<[AnswerJson2](../../Models/Components/AnswerJson2.md)> | :heavy_minus_sign: | List of answers. |
\ No newline at end of file
+| `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/RegistrationPackRequest.md b/packages/csharp/docs/Models/Components/RegistrationPackRequest.md
index fe207a42..c706d7c9 100644
--- a/packages/csharp/docs/Models/Components/RegistrationPackRequest.md
+++ b/packages/csharp/docs/Models/Components/RegistrationPackRequest.md
@@ -5,8 +5,8 @@ A registration pack defining the registration type capacity allocations for an e
## Fields
-| Field | Type | Required | Description |
-| ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- |
-| `Event` | [EventJson6](../../Models/Components/EventJson6.md) | :heavy_check_mark: | The Associated Event. |
-| `Exhibitor` | [ExhibitorJson](../../Models/Components/ExhibitorJson.md) | :heavy_check_mark: | The Associated Exhibitor. |
-| `Capacities` | List<[CapacityJson](../../Models/Components/CapacityJson.md)> | :heavy_check_mark: | An array of capacities for the registration pack. |
\ No newline at end of file
+| Field | Type | Required | Description |
+| ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- |
+| `Event` | [Event1](../../Models/Components/Event1.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 b82cc640..c5ea3f4c 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` | [EventJson6](../../Models/Components/EventJson6.md) | :heavy_check_mark: | The Associated Event. | |
-| `Exhibitor` | [ExhibitorJson](../../Models/Components/ExhibitorJson.md) | :heavy_check_mark: | The Associated Exhibitor. | |
-| `Capacities` | List<[ExistingCapacityJson](../../Models/Components/ExistingCapacityJson.md)> | :heavy_check_mark: | Capacities allocated per registration type for this exhibitor's registration pack. | |
\ No newline at end of file
+| `Event` | [Event1](../../Models/Components/Event1.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/RegistrationTypeUpdate.md b/packages/csharp/docs/Models/Components/RegistrationTypeUpdate.md
index d987daeb..111ac9a9 100644
--- a/packages/csharp/docs/Models/Components/RegistrationTypeUpdate.md
+++ b/packages/csharp/docs/Models/Components/RegistrationTypeUpdate.md
@@ -16,4 +16,4 @@ Represents the details of an existing registration type.
| `AutomaticEndDate` | [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) the registration type automatically closes for registration. | 2017-01-02T02:00:00Z |
| `Event` | [RegistrationTypeUpdateEvent](../../Models/Components/RegistrationTypeUpdateEvent.md) | :heavy_minus_sign: | Event associated with the registration. | |
| `Id` | *string* | :heavy_check_mark: | A unique identifier of the registration type. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `Capacity` | [CapacityJson1](../../Models/Components/CapacityJson1.md) | :heavy_minus_sign: | Represents capacity statistics of the registration type. | |
\ No newline at end of file
+| `Capacity` | [CapacityJson](../../Models/Components/CapacityJson.md) | :heavy_minus_sign: | Represents capacity statistics of the registration type. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RegistrationTypeUpdateInput.md b/packages/csharp/docs/Models/Components/RegistrationTypeUpdateInput.md
index d6e319a5..b4a153da 100644
--- a/packages/csharp/docs/Models/Components/RegistrationTypeUpdateInput.md
+++ b/packages/csharp/docs/Models/Components/RegistrationTypeUpdateInput.md
@@ -10,4 +10,4 @@ Represents the details of an existing registration type.
| `OpenForRegistration` | *bool* | :heavy_check_mark: | True indicates the registration type can be chosen for registration. | true |
| `AutomaticOpenDate` | [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) the registration type automatically opens for registration. | 2017-01-02T02:00:00Z |
| `AutomaticEndDate` | [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) the registration type automatically closes for registration. | 2017-01-02T02:00:00Z |
-| `Capacity` | [CapacityJson1Input](../../Models/Components/CapacityJson1Input.md) | :heavy_minus_sign: | Represents capacity statistics of the registration type. | |
\ No newline at end of file
+| `Capacity` | [CapacityJsonInput](../../Models/Components/CapacityJsonInput.md) | :heavy_minus_sign: | Represents capacity statistics of the registration type. | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/RequestedMeetingRequestQuestionJson.md b/packages/csharp/docs/Models/Components/RequestedMeetingRequestQuestionJson.md
index 2e7d6d99..7a1c6d83 100644
--- a/packages/csharp/docs/Models/Components/RequestedMeetingRequestQuestionJson.md
+++ b/packages/csharp/docs/Models/Components/RequestedMeetingRequestQuestionJson.md
@@ -9,5 +9,5 @@ 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 |
| `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"` or `"2099-12-31"`).
**Country/Region questions (`type: Country`):** Provide either the country name (for example, `"Canada"`) or the country code (for example, `"CA"`), but not both. See [Country Codes](https://developers.cvent.com/docs/rest-api/reference/api-standards#country-codes).
**Complex questions (`type: MeetingRoomRequirements`, `SleepingRoomRequirements`, or `BudgetEstimates`):** Each item must be a **JSON-serialized string** representing one object.
*Meeting Room Requirement example (one item in value array):*
`"{\"date\":\"2099-12-11\",\"startTime\":\"09:00:00\",\"endTime\":\"17:00:00\",\"numberOfPeople\":50}"`
*Sleeping Room Requirement example:*
`"{\"date\":\"2099-12-11\",\"single\":5,\"double\":3}"`
*Budget Estimate example:*
`"{\"currency\":\"USD\",\"costType\":\"VARIABLE\",\"costDetail\":[{\"category\":{\"id\":1},\"units\":100,\"cost\":25.50}]}"` | |
-| `AnswerType` | [AnswerTypeJson1](../../Models/Components/AnswerTypeJson1.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 |
+| `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. |
\ 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 94b9a3ea..b0397cbc 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` | [AddressJson3](../../Models/Components/AddressJson3.md) | :heavy_minus_sign: | Address details. Required to create/update a guest's reservation if the hotel/event requires an address in reservations. | |
+| `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. | |
| `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 21e64391..0e36a0d7 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` | [AddressJson3](../../Models/Components/AddressJson3.md) | :heavy_minus_sign: | Address details. Required to create/update a guest's reservation if the hotel/event requires an address in reservations. | |
+| `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. | |
| `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 f6d5642c..9a44b17e 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` | [AddressJson3](../../Models/Components/AddressJson3.md) | :heavy_minus_sign: | Address details. Required to create/update a guest's reservation if the hotel/event requires an address in reservations. | |
+| `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. | |
| `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 d3b58f48..f11d5fa5 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` | [AddressJson3](../../Models/Components/AddressJson3.md) | :heavy_minus_sign: | Address details. Required to create/update a guest's reservation if the hotel/event requires an address in reservations. | |
+| `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. | |
| `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 1e485456..79f8442f 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` | [EventJson7](../../Models/Components/EventJson7.md) | :heavy_minus_sign: | Detail object of an event which is associated to a survey. | |
+| `Event` | [EventJson5](../../Models/Components/EventJson5.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/ResponseJson.md b/packages/csharp/docs/Models/Components/ResponseJson.md
index 110425ce..b6f4134f 100644
--- a/packages/csharp/docs/Models/Components/ResponseJson.md
+++ b/packages/csharp/docs/Models/Components/ResponseJson.md
@@ -14,7 +14,7 @@ Response object for survey responses.
| `Id` | *string* | :heavy_minus_sign: | Response ID | |
| `Respondent` | [ResponseJsonUUID](../../Models/Components/ResponseJsonUUID.md) | :heavy_minus_sign: | N/A | |
| `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<[AnswerJson1](../../Models/Components/AnswerJson1.md)> | :heavy_check_mark: | List of responded survey answers. | |
+| `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` | [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. | |
diff --git a/packages/csharp/docs/Models/Components/ScoresJson.md b/packages/csharp/docs/Models/Components/ScoresJson.md
index 64039d21..d20ac4e2 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` | [EventJson9](../../Models/Components/EventJson9.md) | :heavy_check_mark: | An event reference used in attendee insights to identify the event context for engagement data | |
+| `Event` | [EventJson7](../../Models/Components/EventJson7.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 29e301fc..f4022bf5 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` | [EventJson11](../../Models/Components/EventJson11.md) | :heavy_check_mark: | Details of the event. | |
+| `Event` | [EventJson9](../../Models/Components/EventJson9.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 ada6ad36..0780387d 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` | [EventJson11](../../Models/Components/EventJson11.md) | :heavy_check_mark: | Details of the event. | |
+| `Event` | [EventJson9](../../Models/Components/EventJson9.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/SocialMediaLinks.md b/packages/csharp/docs/Models/Components/SocialMediaLinks.md
new file mode 100644
index 00000000..691eff4e
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/SocialMediaLinks.md
@@ -0,0 +1,13 @@
+# SocialMediaLinks
+
+Member's social media links.
+
+
+## Fields
+
+| Field | Type | Required | Description |
+| ---------------------------------------- | ---------------------------------------- | ---------------------------------------- | ---------------------------------------- |
+| `FacebookUrl` | [Link](../../Models/Components/Link.md) | :heavy_minus_sign: | Represents a link to a related resource. |
+| `TwitterUrl` | [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. |
+| `WebsiteUrl` | [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/SocialMediaLinksJson.md b/packages/csharp/docs/Models/Components/SocialMediaLinksJson.md
deleted file mode 100644
index 15852bf7..00000000
--- a/packages/csharp/docs/Models/Components/SocialMediaLinksJson.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# SocialMediaLinksJson
-
-Member's social media links.
-
-
-## Fields
-
-| Field | Type | Required | Description |
-| ----------------------------------------------- | ----------------------------------------------- | ----------------------------------------------- | ----------------------------------------------- |
-| `FacebookUrl` | [LinkJson](../../Models/Components/LinkJson.md) | :heavy_minus_sign: | Represents a link to a related resource. |
-| `TwitterUrl` | [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. |
-| `WebsiteUrl` | [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/SponsorshipLevel.md b/packages/csharp/docs/Models/Components/SponsorshipLevel.md
new file mode 100644
index 00000000..3ef94bc2
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/SponsorshipLevel.md
@@ -0,0 +1,10 @@
+# SponsorshipLevel
+
+Associated sponsorship level for an exhibitor
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
+| `Id` | *string* | :heavy_check_mark: | Sponsorship Level Id | 3db28cfc-db22-11eb-8d19-0242ac130003 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/SponsorshipLevelJson.md b/packages/csharp/docs/Models/Components/SponsorshipLevelJson.md
deleted file mode 100644
index ac9b3e05..00000000
--- a/packages/csharp/docs/Models/Components/SponsorshipLevelJson.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# SponsorshipLevelJson
-
-Associated sponsorship level for an exhibitor
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
-| `Id` | *string* | :heavy_check_mark: | Sponsorship Level Id | 3db28cfc-db22-11eb-8d19-0242ac130003 |
\ 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 9de51a9f..708dba35 100644
--- a/packages/csharp/docs/Models/Components/StandardSurveyQuestionJson.md
+++ b/packages/csharp/docs/Models/Components/StandardSurveyQuestionJson.md
@@ -17,14 +17,14 @@ A standard survey question.
| `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<[ChoiceJson3](../../Models/Components/ChoiceJson3.md)> | :heavy_minus_sign: | List of choices for the question. | |
+| `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` | [AdditionalChoiceJson2](../../Models/Components/AdditionalChoiceJson2.md) | :heavy_minus_sign: | Contains text of additional choice i.e N/A choice or otherAnswer choice | |
-| `OtherAnswer` | [AdditionalChoiceJson2](../../Models/Components/AdditionalChoiceJson2.md) | :heavy_minus_sign: | Contains text of additional choice i.e N/A choice or otherAnswer choice | |
+| `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<[FieldJson5](../../Models/Components/FieldJson5.md)> | :heavy_minus_sign: | List of fields for form/matrix questions | |
+| `Fields` | List<[FieldJson3](../../Models/Components/FieldJson3.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/StandardSurveyResponse.md b/packages/csharp/docs/Models/Components/StandardSurveyResponse.md
index 19e2edc2..b45d7eec 100644
--- a/packages/csharp/docs/Models/Components/StandardSurveyResponse.md
+++ b/packages/csharp/docs/Models/Components/StandardSurveyResponse.md
@@ -14,7 +14,7 @@ A standard survey response.
| `Id` | *string* | :heavy_minus_sign: | Response ID | |
| `Respondent` | [StandardSurveyResponseUUID](../../Models/Components/StandardSurveyResponseUUID.md) | :heavy_minus_sign: | N/A | |
| `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<[AnswerJson1](../../Models/Components/AnswerJson1.md)> | :heavy_check_mark: | List of responded survey answers. | |
+| `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 |
| `Survey` | [UuidJson](../../Models/Components/UuidJson.md) | :heavy_minus_sign: | The reference to the related entity. Contains only the ID of the related entity. | |
| `LoopingChoice` | [LoopingChoiceJson](../../Models/Components/LoopingChoiceJson.md) | :heavy_minus_sign: | Loop Choice is the choice for which the chapter is looped. Questions in the looping chapter get repeated once for each choice selected in the parent question | |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/StandardSurveyResponseInput.md b/packages/csharp/docs/Models/Components/StandardSurveyResponseInput.md
index 3319cced..30ebafb2 100644
--- a/packages/csharp/docs/Models/Components/StandardSurveyResponseInput.md
+++ b/packages/csharp/docs/Models/Components/StandardSurveyResponseInput.md
@@ -8,6 +8,6 @@ A standard survey response.
| Field | Type | Required | Description |
| ------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `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<[AnswerJson1](../../Models/Components/AnswerJson1.md)> | :heavy_check_mark: | List of responded survey answers. |
+| `Answers` | List<[AnswerJson](../../Models/Components/AnswerJson.md)> | :heavy_check_mark: | List of responded survey answers. |
| `Survey` | [UuidJson](../../Models/Components/UuidJson.md) | :heavy_minus_sign: | The reference to the related entity. Contains only the ID of the related entity. |
| `LoopingChoice` | [LoopingChoiceJson](../../Models/Components/LoopingChoiceJson.md) | :heavy_minus_sign: | Loop Choice is the choice for which the chapter is looped. Questions in the looping chapter get repeated once for each choice selected in the parent question |
\ 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 6b41a8ce..2861233a 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<[EventJson7](../../Models/Components/EventJson7.md)> | :heavy_minus_sign: | List of events with which this survey is linked. | |
\ No newline at end of file
+| `Events` | List<[EventJson5](../../Models/Components/EventJson5.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/SwitchBackTargetUsagePlan.md b/packages/csharp/docs/Models/Components/SwitchBackTargetUsagePlan.md
new file mode 100644
index 00000000..2e12170d
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/SwitchBackTargetUsagePlan.md
@@ -0,0 +1,11 @@
+# SwitchBackTargetUsagePlan
+
+Object representing the target usage plan and the date when the current plan is scheduled to revert to it. This object is only present when a switch-back is scheduled.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Name` | *string* | :heavy_check_mark: | Name of the target usage plan to switch back to. This field is only present when the usage plan is scheduled to revert to a previous plan. | API_Platform_Standard_Tier |
+| `Time` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_check_mark: | 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. | 2023-10-01T12:00:00Z |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/SwitchBackTargetUsagePlanJson.md b/packages/csharp/docs/Models/Components/SwitchBackTargetUsagePlanJson.md
deleted file mode 100644
index ddab3685..00000000
--- a/packages/csharp/docs/Models/Components/SwitchBackTargetUsagePlanJson.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# SwitchBackTargetUsagePlanJson
-
-Object representing the target usage plan and the date when the current plan is scheduled to revert to it. This object is only present when a switch-back is scheduled.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Name` | *string* | :heavy_check_mark: | Name of the target usage plan to switch back to. This field is only present when the usage plan is scheduled to revert to a previous plan. | API_Platform_Standard_Tier |
-| `Time` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_check_mark: | 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. | 2023-10-01T12:00:00Z |
\ 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 ec3670db..0d48692c 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<[ChoiceJson4](../../Models/Components/ChoiceJson4.md)> | :heavy_minus_sign: | Choices of custom fields. |
+| `Choices` | List<[ChoiceJson3](../../Models/Components/ChoiceJson3.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 7541815f..34d09653 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<[ChoiceJson4Input](../../Models/Components/ChoiceJson4Input.md)> | :heavy_minus_sign: | Choices of custom fields. |
+| `Choices` | List<[ChoiceJson3Input](../../Models/Components/ChoiceJson3Input.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/TravelAccount.md b/packages/csharp/docs/Models/Components/TravelAccount.md
index f2c3369d..47fcceb6 100644
--- a/packages/csharp/docs/Models/Components/TravelAccount.md
+++ b/packages/csharp/docs/Models/Components/TravelAccount.md
@@ -15,4 +15,4 @@ Travel account details.
| `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 |
| `Certified` | *bool* | :heavy_minus_sign: | Is this a certified travel account? | true |
-| `Addresses` | List<[AddressJson7](../../Models/Components/AddressJson7.md)> | :heavy_minus_sign: | List of addresses associated with the travel account. | |
\ No newline at end of file
+| `Addresses` | List<[AddressJson6](../../Models/Components/AddressJson6.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/UTMOverride.md b/packages/csharp/docs/Models/Components/UTMOverride.md
new file mode 100644
index 00000000..d3adfff9
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/UTMOverride.md
@@ -0,0 +1,19 @@
+# UTMOverride
+
+Specifies how UTM (urchin tracking module: a key and value that is attached to URLs for the purpose of identifying and tracking traffic) settings will override passed in items.
+
+## Example Usage
+
+```csharp
+using Cvent.SDK.Models.Components;
+
+var value = UTMOverride.UseExistingParameter;
+```
+
+
+## Values
+
+| Name | Value |
+| ---------------------- | ---------------------- |
+| `UseExistingParameter` | use-existing-parameter |
+| `UseCustomParameter` | use-custom-parameter |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Usage.md b/packages/csharp/docs/Models/Components/Usage.md
new file mode 100644
index 00000000..ac47b724
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Usage.md
@@ -0,0 +1,13 @@
+# Usage
+
+A usage object represents the usage of a resource on a given day
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- |
+| `Used` | *long* | :heavy_check_mark: | The number of API requests that have been made in the current usage period. Usage periods reset daily at midnight UTC. | 40000 |
+| `Remaining` | *long* | :heavy_check_mark: | The number of API requests remaining in the current usage period. Usage periods reset daily at midnight UTC. | 260000 |
+| `Total` | *long* | :heavy_check_mark: | The total number of API requests allowed in the current usage period. Usage periods reset daily at midnight UTC. | 300000 |
+| `Date` | *string* | :heavy_check_mark: | The date the usage occurred, as an ISO8601 date | 2020-01-01 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/UsageJson.md b/packages/csharp/docs/Models/Components/UsageJson.md
deleted file mode 100644
index 8c58e0c3..00000000
--- a/packages/csharp/docs/Models/Components/UsageJson.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# UsageJson
-
-A usage object represents the usage of a resource on a given day
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- |
-| `Used` | *long* | :heavy_check_mark: | The number of API requests that have been made in the current usage period. Usage periods reset daily at midnight UTC. | 40000 |
-| `Remaining` | *long* | :heavy_check_mark: | The number of API requests remaining in the current usage period. Usage periods reset daily at midnight UTC. | 260000 |
-| `Total` | *long* | :heavy_check_mark: | The total number of API requests allowed in the current usage period. Usage periods reset daily at midnight UTC. | 300000 |
-| `Date` | *string* | :heavy_check_mark: | The date the usage occurred, as an ISO8601 date | 2020-01-01 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/UsagePaginatedResponse.md b/packages/csharp/docs/Models/Components/UsagePaginatedResponse.md
index 963523d6..00c40d39 100644
--- a/packages/csharp/docs/Models/Components/UsagePaginatedResponse.md
+++ b/packages/csharp/docs/Models/Components/UsagePaginatedResponse.md
@@ -5,7 +5,7 @@ The list of usage for the caller's account in the date range specified.
## Fields
-| Field | Type | Required | Description |
-| ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------- |
-| `Paging` | [PagingJson](../../Models/Components/PagingJson.md) | :heavy_minus_sign: | Represents pagination information for a collection of resources. |
-| `Data` | List<[UsageJson](../../Models/Components/UsageJson.md)> | :heavy_check_mark: | Collection of usage objects. |
\ 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<[Models.Components.Usage](../../Models/Components/Usage.md)> | :heavy_check_mark: | Collection of usage objects. |
\ 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 91ca9f23..1c1774bc 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<[AddressJson6](../../Models/Components/AddressJson6.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<[AddressJson5](../../Models/Components/AddressJson5.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 a0435adc..476d0c6d 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<[AddressJson6](../../Models/Components/AddressJson6.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<[AddressJson5](../../Models/Components/AddressJson5.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 72fc4e26..830eb464 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<[AddressJson6](../../Models/Components/AddressJson6.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<[AddressJson5](../../Models/Components/AddressJson5.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/UtmOverrideJson.md b/packages/csharp/docs/Models/Components/UtmOverrideJson.md
deleted file mode 100644
index c9c1a8dd..00000000
--- a/packages/csharp/docs/Models/Components/UtmOverrideJson.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# UtmOverrideJson
-
-Specifies how UTM (urchin tracking module: a key and value that is attached to URLs for the purpose of identifying and tracking traffic) settings will override passed in items.
-
-## Example Usage
-
-```csharp
-using Cvent.SDK.Models.Components;
-
-var value = UtmOverrideJson.UseExistingParameter;
-```
-
-
-## Values
-
-| Name | Value |
-| ---------------------- | ---------------------- |
-| `UseExistingParameter` | use-existing-parameter |
-| `UseCustomParameter` | use-custom-parameter |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/Uuid1.md b/packages/csharp/docs/Models/Components/Uuid1.md
new file mode 100644
index 00000000..b3b8c095
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/Uuid1.md
@@ -0,0 +1,10 @@
+# Uuid1
+
+The reference to the related entity. Contains only the ID of the related entity.
+
+
+## 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 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/VideoJson.md b/packages/csharp/docs/Models/Components/VideoJson.md
new file mode 100644
index 00000000..eb1838bd
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/VideoJson.md
@@ -0,0 +1,10 @@
+# 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/VideoJson1.md b/packages/csharp/docs/Models/Components/VideoJson1.md
deleted file mode 100644
index 9b9bb92a..00000000
--- a/packages/csharp/docs/Models/Components/VideoJson1.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# VideoJson1
-
-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/VideoViewJson.md b/packages/csharp/docs/Models/Components/VideoViewJson.md
index 54a13bde..8c84c420 100644
--- a/packages/csharp/docs/Models/Components/VideoViewJson.md
+++ b/packages/csharp/docs/Models/Components/VideoViewJson.md
@@ -10,7 +10,7 @@ Details of a single video view
| `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` | [VideoJson1](../../Models/Components/VideoJson1.md) | :heavy_minus_sign: | The details of a video | |
+| `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 |
diff --git a/packages/csharp/docs/Models/Components/Weblink.md b/packages/csharp/docs/Models/Components/Weblink.md
index f0f9d167..d25447b9 100644
--- a/packages/csharp/docs/Models/Components/Weblink.md
+++ b/packages/csharp/docs/Models/Components/Weblink.md
@@ -5,11 +5,11 @@ Content of exhibitor weblink.
## Fields
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- |
-| `Event` | [EventJson6](../../Models/Components/EventJson6.md) | :heavy_check_mark: | The Associated Event. | |
-| `Exhibitor` | [ExhibitorJson](../../Models/Components/ExhibitorJson.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 |
-| `Hidden` | *bool* | :heavy_minus_sign: | True indicates the weblink is hidden from attendees. | |
-| `Order` | *long* | :heavy_check_mark: | Display order for exhibitor weblink content. | 3 |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- |
+| `Event` | [Event1](../../Models/Components/Event1.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 |
+| `Hidden` | *bool* | :heavy_minus_sign: | True indicates the weblink is hidden from attendees. | |
+| `Order` | *long* | :heavy_check_mark: | Display order for exhibitor weblink content. | 3 |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/WorkAddress.md b/packages/csharp/docs/Models/Components/WorkAddress.md
new file mode 100644
index 00000000..18b76cdf
--- /dev/null
+++ b/packages/csharp/docs/Models/Components/WorkAddress.md
@@ -0,0 +1,12 @@
+# WorkAddress
+
+Member's work address details.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ |
+| `City` | *string* | :heavy_minus_sign: | Member's work address city. | New York |
+| `State` | *string* | :heavy_minus_sign: | Member's Work address state. | New York |
+| `Country` | *string* | :heavy_minus_sign: | Member's work address country. | USA |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Components/WorkAddressJson.md b/packages/csharp/docs/Models/Components/WorkAddressJson.md
deleted file mode 100644
index ee29b5ef..00000000
--- a/packages/csharp/docs/Models/Components/WorkAddressJson.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# WorkAddressJson
-
-Member's work address details.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ |
-| `City` | *string* | :heavy_minus_sign: | Member's work address city. | New York |
-| `State` | *string* | :heavy_minus_sign: | Member's Work address state. | New York |
-| `Country` | *string* | :heavy_minus_sign: | Member's work address country. | USA |
\ 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 5ff1653f..ae609e1e 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` | [Attendee](../../Models/Components/Attendee.md) | :heavy_minus_sign: | Successfully retrieved an attendee object. |
\ No newline at end of file
+| `Attendee` | [Attendee1](../../Models/Components/Attendee1.md) | :heavy_minus_sign: | Successfully retrieved an attendee object. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListAssociatedAudienceSegmentsRequest.md b/packages/csharp/docs/Models/Requests/ListAssociatedAudienceSegmentsRequest.md
new file mode 100644
index 00000000..e50dd169
--- /dev/null
+++ b/packages/csharp/docs/Models/Requests/ListAssociatedAudienceSegmentsRequest.md
@@ -0,0 +1,11 @@
+# ListAssociatedAudienceSegmentsRequest
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `AttendeeId` | *string* | :heavy_check_mark: | ID of an attendee. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | [Filter](../../Models/Components/Filter.md) | :heavy_check_mark: | Use the filter property in the request body to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|------------------\|-------------------------------------\|
\| segment.id \| `eq`, `in` \|
No logical operators are supported.
| |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListAssociatedAudienceSegmentsResponse.md b/packages/csharp/docs/Models/Requests/ListAssociatedAudienceSegmentsResponse.md
new file mode 100644
index 00000000..520a2baa
--- /dev/null
+++ b/packages/csharp/docs/Models/Requests/ListAssociatedAudienceSegmentsResponse.md
@@ -0,0 +1,9 @@
+# ListAssociatedAudienceSegmentsResponse
+
+
+## Fields
+
+| Field | Type | Required | Description |
+| --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- |
+| `HttpMeta` | [HTTPMetadata](../../Models/Components/HTTPMetadata.md) | :heavy_check_mark: | N/A |
+| `AttendeeAudienceSegmentAssociationsPaginatedResponse` | [AttendeeAudienceSegmentAssociationsPaginatedResponse](../../Models/Components/AttendeeAudienceSegmentAssociationsPaginatedResponse.md) | :heavy_minus_sign: | Successfully retrieved list of audience segments associated with the attendee. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListAttendeeAudienceSegmentsRequest.md b/packages/csharp/docs/Models/Requests/ListAttendeeAudienceSegmentsRequest.md
new file mode 100644
index 00000000..5af96ca4
--- /dev/null
+++ b/packages/csharp/docs/Models/Requests/ListAttendeeAudienceSegmentsRequest.md
@@ -0,0 +1,11 @@
+# ListAttendeeAudienceSegmentsRequest
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `AttendeeId` | *string* | :heavy_check_mark: | ID of an attendee. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|------------------\|-------------------------------------\|
\| segment.id \| `eq`, `in` \|
No logical operators are supported.
| segment.id eq '313097a4-143d-11e5-9f99-d0a637ee0897' |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListAttendeeAudienceSegmentsResponse.md b/packages/csharp/docs/Models/Requests/ListAttendeeAudienceSegmentsResponse.md
new file mode 100644
index 00000000..bece2dbd
--- /dev/null
+++ b/packages/csharp/docs/Models/Requests/ListAttendeeAudienceSegmentsResponse.md
@@ -0,0 +1,9 @@
+# ListAttendeeAudienceSegmentsResponse
+
+
+## Fields
+
+| Field | Type | Required | Description |
+| --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- |
+| `HttpMeta` | [HTTPMetadata](../../Models/Components/HTTPMetadata.md) | :heavy_check_mark: | N/A |
+| `AttendeeAudienceSegmentAssociationsPaginatedResponse` | [AttendeeAudienceSegmentAssociationsPaginatedResponse](../../Models/Components/AttendeeAudienceSegmentAssociationsPaginatedResponse.md) | :heavy_minus_sign: | Successfully retrieved list of audience segments associated with the attendee. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListDiscountedAgendaItemsRequest.md b/packages/csharp/docs/Models/Requests/ListDiscountedAgendaItemsRequest.md
index cc8df544..edc3f5cd 100644
--- a/packages/csharp/docs/Models/Requests/ListDiscountedAgendaItemsRequest.md
+++ b/packages/csharp/docs/Models/Requests/ListDiscountedAgendaItemsRequest.md
@@ -3,9 +3,9 @@
## Fields
-| Field | Type | Required | Description | Example |
-| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | 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 two comparison types that can be used in filter expressions:
* equal: eq
* includes value(s): in
The following fields are filterable:
* discount.id (eq\|in)
* type (eq\|in)
The following operators are available:
* and
* or
| type eq 'AdmissionItem' and discount.id in ('1b01ae34-6970-41f2-a4e8-b4f39185dc15', '1b01ae34-6970-41f2-a4e8-b4f39185dc16') |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Id` | *string* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|------------------\|-------------------------------------\|
\| discount.id \| `eq`, `in` \|
\| type \| `eq`, `in` \|
The following logical operators are supported for combining filters:
* and
* or
| type eq 'AdmissionItem' and discount.id in ('1b01ae34-6970-41f2-a4e8-b4f39185dc15', '1b01ae34-6970-41f2-a4e8-b4f39185dc16') |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListDonationItemsRequest.md b/packages/csharp/docs/Models/Requests/ListDonationItemsRequest.md
index 9c6c868f..9136ac19 100644
--- a/packages/csharp/docs/Models/Requests/ListDonationItemsRequest.md
+++ b/packages/csharp/docs/Models/Requests/ListDonationItemsRequest.md
@@ -3,9 +3,9 @@
## Fields
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | 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'.
Only 'includes value(s): in' comparison type can be used in filter expression.
The following fields are filterable:
* id (in)
* registrationTypes (in)
The following operator is available:
* and
| id in ('1b01ae34-6970-41f2-a4e8-b4f39185dc15', '1b01ae34-6970-41f2-a4e8-b4f39185dc16') and registrationTypes in ('1b01ae34-6970-41f2-a4e8-b4f39185dc28') |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Id` | *string* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|-------------------\|-----------\|
\| id \| `in` \|
\| registrationTypes \| `in` \|
The following logical operators are supported for combining filters:
* and
| id in ('1b01ae34-6970-41f2-a4e8-b4f39185dc15', '1b01ae34-6970-41f2-a4e8-b4f39185dc16') and registrationTypes in ('1b01ae34-6970-41f2-a4e8-b4f39185dc28') |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListEventDiscountsRequest.md b/packages/csharp/docs/Models/Requests/ListEventDiscountsRequest.md
index c58b910b..91a1205c 100644
--- a/packages/csharp/docs/Models/Requests/ListEventDiscountsRequest.md
+++ b/packages/csharp/docs/Models/Requests/ListEventDiscountsRequest.md
@@ -3,12 +3,12 @@
## Fields
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Sort` | *string* | :heavy_minus_sign: | The sort order passed as a parameter, used to control the order of the
search results as a priority ordered list of sorts.
There are two orders:
* ascending: ASC
* descending: DESC
The following fields are sortable:
* name
* code
* method.type
* effectiveTo
* effectiveFrom
* type
* level
| name:DESC,code:ASC |
-| `Filter` | *string* | :heavy_minus_sign: | 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 two comparison types that can be used in filter expressions:
* equal: eq
* includes value(s): in
The following fields are filterable:
* id (in)
* method.type (eq)
* type (eq)
* level (eq)
The following operators are available:
* and
* or
| id in ('1b01ae34-6970-41f2-a4e8-b4f39185dc15', '1b01ae34-6970-41f2-a4e8-b4f39185dc16') and method.type eq 'PERCENTAGE' |
-| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
-| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Id` | *string* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Sort` | *string* | :heavy_minus_sign: | The sort order passed as a parameter, used to control the order of the
search results as a priority ordered list of sorts.
There are two orders:
* ascending: ASC
* descending: DESC
The following fields are sortable:
* name
* code
* method.type
* effectiveTo
* effectiveFrom
* type
* level
| name:DESC,code:ASC |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|------------------\|-------------------------------------\|
\| id \| `in` \|
\| method.type \| `eq` \|
\| type \| `eq` \|
\| level \| `eq` \|
The following logical operators are supported for combining filters:
* and
* or
| id in ('1b01ae34-6970-41f2-a4e8-b4f39185dc15', '1b01ae34-6970-41f2-a4e8-b4f39185dc16') and method.type eq 'PERCENTAGE' |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListEventRoleAssignmentRequest.md b/packages/csharp/docs/Models/Requests/ListEventRoleAssignmentRequest.md
index 6dee4c78..a585b2eb 100644
--- a/packages/csharp/docs/Models/Requests/ListEventRoleAssignmentRequest.md
+++ b/packages/csharp/docs/Models/Requests/ListEventRoleAssignmentRequest.md
@@ -7,5 +7,7 @@
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `Limit` | *long* | :heavy_minus_sign: | The maximum number of event role assignments that can be fetched at once. | |
| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `After` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
+| `Before` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
| `Expand` | List<[EventRoleExpand](../../Models/Components/EventRoleExpand.md)> | :heavy_minus_sign: | Use the `expand` query parameter to request additional details for each field specified.
Each event role assignment includes the ID of its associated event role. By using the expand parameter, you can also retrieve the name of the event role.
The following fields are expandable:
* eventRole
| [
"eventRole"
] |
| `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'.
This is the comparison type that can be used in filter expressions:
* equal: eq
The following fields are filterable:
* event.id (eq)
* eventRole.id (eq)
* user.id (eq)
| event.id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' and user.id eq '6807e044-993b-428c-aec8-7316f13c1b95' |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListFeeItemsRequest.md b/packages/csharp/docs/Models/Requests/ListFeeItemsRequest.md
index bf4322fb..69c604af 100644
--- a/packages/csharp/docs/Models/Requests/ListFeeItemsRequest.md
+++ b/packages/csharp/docs/Models/Requests/ListFeeItemsRequest.md
@@ -3,9 +3,9 @@
## Fields
-| Field | Type | Required | Description | Example |
-| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | 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)
* product.id (eq\|ne)
* generalLedgerCodes.id (eq\|ne)
* product.type (eq\|ne)
* created (eq\|ne\|lt\|le\|gt\|ge)
* lastModified (eq\|ne\|lt\|le\|gt\|ge)
The following operators are available:
* and
* or
| id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' or product.id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d6' |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Id` | *string* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|-----------------------\|------------------------------------\|
\| id \| `eq`, `ne` \|
\| product.id \| `eq`, `ne` \|
\| generalLedgerCodes.id \| `eq`, `ne` \|
\| product.type \| `eq`, `ne` \|
\| created \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
\| lastModified \| `eq`, `ne`, `lt`, `le`, `gt`, `ge` \|
The following logical operators are supported for combining filters:
* and
* or
| id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' or product.id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d6' |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListMembershipItemsPostFilterRequest.md b/packages/csharp/docs/Models/Requests/ListMembershipItemsPostFilterRequest.md
new file mode 100644
index 00000000..3cfa56c5
--- /dev/null
+++ b/packages/csharp/docs/Models/Requests/ListMembershipItemsPostFilterRequest.md
@@ -0,0 +1,11 @@
+# ListMembershipItemsPostFilterRequest
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ |
+| `Id` | *string* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | [Filter](../../Models/Components/Filter.md) | :heavy_minus_sign: | See the parameter description of filter in GET List Membership Items for full filtering information.
| |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListMembershipItemsPostFilterResponse.md b/packages/csharp/docs/Models/Requests/ListMembershipItemsPostFilterResponse.md
new file mode 100644
index 00000000..fdb632a8
--- /dev/null
+++ b/packages/csharp/docs/Models/Requests/ListMembershipItemsPostFilterResponse.md
@@ -0,0 +1,9 @@
+# ListMembershipItemsPostFilterResponse
+
+
+## Fields
+
+| Field | Type | Required | Description |
+| ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- |
+| `HttpMeta` | [HTTPMetadata](../../Models/Components/HTTPMetadata.md) | :heavy_check_mark: | N/A |
+| `MembershipItemsPaginatedResponse` | [MembershipItemsPaginatedResponse](../../Models/Components/MembershipItemsPaginatedResponse.md) | :heavy_minus_sign: | Successfully retrieved a paginated list of membership items. |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListMembershipItemsRequest.md b/packages/csharp/docs/Models/Requests/ListMembershipItemsRequest.md
index ff48a3ca..3f3be208 100644
--- a/packages/csharp/docs/Models/Requests/ListMembershipItemsRequest.md
+++ b/packages/csharp/docs/Models/Requests/ListMembershipItemsRequest.md
@@ -3,9 +3,9 @@
## Fields
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | 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'.
Only 'includes value(s): in' comparison type can be used in filter expression.
The following fields are filterable:
* id (in)
* registrationTypes (in)
The following operator is available:
* and
| id in ('1b01ae34-6970-41f2-a4e8-b4f39185dc15', '1b01ae34-6970-41f2-a4e8-b4f39185dc16') and registrationTypes in ('1b01ae34-6970-41f2-a4e8-b4f39185dc28') |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Id` | *string* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|-------------------\|-----------\|
\| id \| `in` \|
\| registrationTypes \| `in` \|
The following logical operators are supported for combining filters:
* and
| id in ('1b01ae34-6970-41f2-a4e8-b4f39185dc15', '1b01ae34-6970-41f2-a4e8-b4f39185dc16') and registrationTypes in ('1b01ae34-6970-41f2-a4e8-b4f39185dc28') |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/ListQuantityItemsRequest.md b/packages/csharp/docs/Models/Requests/ListQuantityItemsRequest.md
index 1341f7ee..e437d153 100644
--- a/packages/csharp/docs/Models/Requests/ListQuantityItemsRequest.md
+++ b/packages/csharp/docs/Models/Requests/ListQuantityItemsRequest.md
@@ -3,9 +3,9 @@
## Fields
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `Id` | *string* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
-| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
-| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
-| `Filter` | *string* | :heavy_minus_sign: | 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'.
Only 'includes value(s): in' comparison type can be used in filter expression.
The following fields are filterable:
* id (in)
* registrationTypes (in)
The following operator is available:
* and
| id in ('1b01ae34-6970-41f2-a4e8-b4f39185dc15', '1b01ae34-6970-41f2-a4e8-b4f39185dc16') and registrationTypes in ('1b01ae34-6970-41f2-a4e8-b4f39185dc28') |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `Id` | *string* | :heavy_check_mark: | Unique ID of an event. | 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3 |
+| `Limit` | *long* | :heavy_minus_sign: | The maximum number of records to return per page. | 100 |
+| `Token` | *string* | :heavy_minus_sign: | The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
| 0e28af57-511f-47ab-ae46-46cd1ca51a1a |
+| `Filter` | *string* | :heavy_minus_sign: | Use filter query parameters to limit results
to data that matches your criteria. See
[Filters](/docs/rest-api/reference/filters) for details.
Supported fields and operators are listed below:
\| Field \| Operators \|
\|-------------------\|-----------\|
\| id \| `in` \|
\| registrationTypes \| `in` \|
The following logical operators are supported for combining filters:
* and
| id in ('1b01ae34-6970-41f2-a4e8-b4f39185dc15', '1b01ae34-6970-41f2-a4e8-b4f39185dc16') and registrationTypes in ('1b01ae34-6970-41f2-a4e8-b4f39185dc28') |
\ No newline at end of file
diff --git a/packages/csharp/docs/Models/Requests/UpdateAttendeeResponse.md b/packages/csharp/docs/Models/Requests/UpdateAttendeeResponse.md
index 8cf7313e..c813f74b 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` | [Attendee](../../Models/Components/Attendee.md) | :heavy_minus_sign: | Successfully updated the attendee. |
\ No newline at end of file
+| `Attendee` | [Attendee1](../../Models/Components/Attendee1.md) | :heavy_minus_sign: | Successfully updated the attendee. |
\ No newline at end of file
diff --git a/packages/csharp/docs/sdks/attendees/README.md b/packages/csharp/docs/sdks/attendees/README.md
index f950b9da..0f313935 100644
--- a/packages/csharp/docs/sdks/attendees/README.md
+++ b/packages/csharp/docs/sdks/attendees/README.md
@@ -575,12 +575,12 @@ PostBadgeRequest req = new PostBadgeRequest() {
Id = "3db28cfc-db22-11eb-8d19-0242ac130003",
Badge = new BadgeInput() {
Id = "abc123",
- Status = BadgeStatusJson.Active,
- Type = BadgeTypeJson.Epc,
- Attendee = new AttendeeJson3() {
+ Status = BadgeStatus.Active,
+ Type = BadgeType.Epc,
+ Attendee = new Attendee2() {
Id = "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3",
},
- Event = new EventJson6() {
+ Event = new Event1() {
Id = "3db28cfc-db22-11eb-8d19-0242ac130003",
},
},
@@ -753,12 +753,12 @@ UpdateBadgeRequest req = new UpdateBadgeRequest() {
BadgeId = "abc123",
Badge = new BadgeInput() {
Id = "abc123",
- Status = BadgeStatusJson.Active,
- Type = BadgeTypeJson.Epc,
- Attendee = new AttendeeJson3() {
+ Status = BadgeStatus.Active,
+ Type = BadgeType.Epc,
+ Attendee = new Attendee2() {
Id = "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3",
},
- Event = new EventJson6() {
+ Event = new Event1() {
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 40640055..840def50 100644
--- a/packages/csharp/docs/sdks/audiencesegments/README.md
+++ b/packages/csharp/docs/sdks/audiencesegments/README.md
@@ -11,7 +11,9 @@ audience segment.
### Available Operations
+* [ListAttendeeAudienceSegments](#listattendeeaudiencesegments) - List Associated Segments
* [DisassociateAttendeeFromAudienceSegments](#disassociateattendeefromaudiencesegments) - Delete Attendee Associations
+* [ListAssociatedAudienceSegments](#listassociatedaudiencesegments) - List Associated Segments
* [CreateAudienceSegment](#createaudiencesegment) - Create Audience Segment
* [ListAudienceSegments](#listaudiencesegments) - List Audience Segments
* [ListAudienceSegmentsPostFilter](#listaudiencesegmentspostfilter) - List Audience Segments
@@ -22,6 +24,63 @@ audience segment.
* [AssociateAttendeeToSegment](#associateattendeetosegment) - Associate Attendee to Segment
* [DisassociateAttendeeFromAudienceSegment](#disassociateattendeefromaudiencesegment) - Disassociate Attendee
+## ListAttendeeAudienceSegments
+
+Gets a paginated list of ACTIVE audience segment associations for the attendee. Use the filter query parameter to filter by segment ID.
+
+More about OAuth2 authorization code support for administrators
+<#oauth2-auth-code-planner-admin>
+
+### 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 = "",
+ },
+});
+
+ListAttendeeAudienceSegmentsRequest req = new ListAttendeeAudienceSegmentsRequest() {
+ AttendeeId = "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3",
+ Token = "0e28af57-511f-47ab-ae46-46cd1ca51a1a",
+ Filter = "segment.id eq '313097a4-143d-11e5-9f99-d0a637ee0897'",
+};
+
+ListAttendeeAudienceSegmentsResponse? res = await sdk.AudienceSegments.ListAttendeeAudienceSegmentsAsync(req);
+
+while(res != null)
+{
+ // handle items
+
+ res = await res.Next!();
+}
+```
+
+### Parameters
+
+| Parameter | Type | Required | Description |
+| --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- |
+| `request` | [ListAttendeeAudienceSegmentsRequest](../../Models/Requests/ListAttendeeAudienceSegmentsRequest.md) | :heavy_check_mark: | The request object to use for the request. |
+
+### Response
+
+**[ListAttendeeAudienceSegmentsResponse](../../Models/Requests/ListAttendeeAudienceSegmentsResponse.md)**
+
+### Errors
+
+| Error Type | Status Code | Content Type |
+| ------------------------------------- | ------------------------------------- | ------------------------------------- |
+| Cvent.SDK.Models.Errors.ErrorResponse | 400, 401, 403, 404, 429 | application/json |
+| Cvent.SDK.Models.Errors.APIException | 4XX, 5XX | \*/\* |
+
## DisassociateAttendeeFromAudienceSegments
disassociate an attendee from all audience segments
@@ -72,6 +131,66 @@ var res = await sdk.AudienceSegments.DisassociateAttendeeFromAudienceSegmentsAsy
| Cvent.SDK.Models.Errors.ErrorResponse | 401, 403, 404 | application/json |
| Cvent.SDK.Models.Errors.APIException | 4XX, 5XX | \*/\* |
+## ListAssociatedAudienceSegments
+
+Gets a paginated list of ACTIVE audience segment associations for the attendee by sending filter in the body of the request. This method returns the same data as [GET List Associated Segments](#operation/listAttendeeAudienceSegments) but allows for longer filters.
+
+
+More about OAuth2 authorization code support for administrators
+<#oauth2-auth-code-planner-admin>
+
+### 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 = "",
+ },
+});
+
+ListAssociatedAudienceSegmentsRequest req = new ListAssociatedAudienceSegmentsRequest() {
+ AttendeeId = "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3",
+ Token = "0e28af57-511f-47ab-ae46-46cd1ca51a1a",
+ Filter = new Filter() {
+ FilterValue = "segment.id in ('313097a4-143d-11e5-9f99-d0a637ee0897', '423097a4-143d-11e5-9f99-d0a637ee0897')",
+ },
+};
+
+ListAssociatedAudienceSegmentsResponse? res = await sdk.AudienceSegments.ListAssociatedAudienceSegmentsAsync(req);
+
+while(res != null)
+{
+ // handle items
+
+ res = await res.Next!();
+}
+```
+
+### Parameters
+
+| Parameter | Type | Required | Description |
+| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- |
+| `request` | [ListAssociatedAudienceSegmentsRequest](../../Models/Requests/ListAssociatedAudienceSegmentsRequest.md) | :heavy_check_mark: | The request object to use for the request. |
+
+### Response
+
+**[ListAssociatedAudienceSegmentsResponse](../../Models/Requests/ListAssociatedAudienceSegmentsResponse.md)**
+
+### Errors
+
+| Error Type | Status Code | Content Type |
+| ------------------------------------- | ------------------------------------- | ------------------------------------- |
+| Cvent.SDK.Models.Errors.ErrorResponse | 400, 401, 403, 404, 429 | application/json |
+| Cvent.SDK.Models.Errors.APIException | 4XX, 5XX | \*/\* |
+
## CreateAudienceSegment
Creates an audience segment in the given event based on the details supplied in the request body.
@@ -96,7 +215,7 @@ var sdk = new CventSDK(security: new Security() {
});
AudienceSegmentCreate req = new AudienceSegmentCreate() {
- Event = new EventJson3() {
+ Event = new EventJson2() {
Id = "103097a4-143d-11e5-9f99-d0a637ee0032",
},
Name = "VIP Attendees",
@@ -334,7 +453,7 @@ var sdk = new CventSDK(security: new Security() {
UpdateAudienceSegmentRequest req = new UpdateAudienceSegmentRequest() {
AudienceSegmentId = "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3",
AudienceSegment = new AudienceSegment() {
- Event = new EventJson3() {
+ Event = new EventJson2() {
Id = "103097a4-143d-11e5-9f99-d0a637ee0032",
},
Name = "VIP Attendees",
diff --git a/packages/csharp/docs/sdks/customfields/README.md b/packages/csharp/docs/sdks/customfields/README.md
index da01755a..58900627 100644
--- a/packages/csharp/docs/sdks/customfields/README.md
+++ b/packages/csharp/docs/sdks/customfields/README.md
@@ -168,8 +168,8 @@ UpdateCustomFieldRequest req = new UpdateCustomFieldRequest() {
Type = CustomFieldTypeJson1.OpenEndedTextOneLine,
Details = ExistingCustomFieldDetailsInput.CreateThreeInput(
new ThreeInput() {
- Choices = new List() {
- new ChoiceJson4Input() {
+ Choices = new List() {
+ new ChoiceJson3Input() {
Text = "What is your current designation?",
},
},
diff --git a/packages/csharp/docs/sdks/eventrole/README.md b/packages/csharp/docs/sdks/eventrole/README.md
index d240e20e..dcc1bd09 100644
--- a/packages/csharp/docs/sdks/eventrole/README.md
+++ b/packages/csharp/docs/sdks/eventrole/README.md
@@ -22,6 +22,7 @@ More about OAuth2 authorization code support for administrators
using Cvent.SDK;
using Cvent.SDK.Models.Components;
using Cvent.SDK.Models.Requests;
+using System;
using System.Collections.Generic;
var sdk = new CventSDK(security: new Security() {
@@ -35,6 +36,8 @@ var sdk = new CventSDK(security: new Security() {
ListEventRoleAssignmentRequest req = new ListEventRoleAssignmentRequest() {
Token = "0e28af57-511f-47ab-ae46-46cd1ca51a1a",
+ After = System.DateTime.Parse("2017-01-02T02:00:00Z").ToUniversalTime(),
+ Before = System.DateTime.Parse("2017-01-02T02:00:00Z").ToUniversalTime(),
Expand = new List() {
EventRoleExpand.EventRole,
},
diff --git a/packages/csharp/docs/sdks/events/README.md b/packages/csharp/docs/sdks/events/README.md
index f16745e2..2d491273 100644
--- a/packages/csharp/docs/sdks/events/README.md
+++ b/packages/csharp/docs/sdks/events/README.md
@@ -29,6 +29,7 @@ Events are used to collect registrations and allow attendees to select their sch
* [ListFeeItems](#listfeeitems) - List Fee Items
* [GetInvitationList](#getinvitationlist) - List Invitation Lists
* [ListMembershipItems](#listmembershipitems) - List Membership Items
+* [ListMembershipItemsPostFilter](#listmembershipitemspostfilter) - List Membership Items
* [GetOrders](#getorders) - List Orders
* [GetOrderItems](#getorderitems) - List Order Items
* [AssociateDiscountCodeToOrderItem](#associatediscountcodetoorderitem) - Assign Discount to Order Item
@@ -565,7 +566,7 @@ var sdk = new CventSDK(security: new Security() {
});
SendEmailEventRequest req = new SendEmailEventRequest() {
- Event = new EventJson11() {
+ Event = new EventJson9() {
Id = "a150f1ee-6c54-4b01-90e6-d701748f0851",
},
Email = new EmailJson2() {
@@ -1416,6 +1417,63 @@ while(res != null)
| Cvent.SDK.Models.Errors.ErrorResponse | 400, 401, 403, 404, 429 | application/json |
| Cvent.SDK.Models.Errors.APIException | 4XX, 5XX | \*/\* |
+## ListMembershipItemsPostFilter
+
+Gets a paginated list of membership items. [Membership items](https://support.cvent.com/s/communityarticle/Setting-Up-Memberships) are a type of [optional item](https://support.cvent.com/s/communityarticle/Understanding-Agenda-Items) that can be purchased during registration.
+
+
+### 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 = "",
+ },
+});
+
+ListMembershipItemsPostFilterRequest req = new ListMembershipItemsPostFilterRequest() {
+ Id = "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3",
+ Token = "0e28af57-511f-47ab-ae46-46cd1ca51a1a",
+ Filter = new Filter() {
+ FilterValue = "id in ('1b01ae34-6970-41f2-a4e8-b4f39185dc15', '1b01ae34-6970-41f2-a4e8-b4f39185dc16')",
+ },
+};
+
+ListMembershipItemsPostFilterResponse? res = await sdk.Events.ListMembershipItemsPostFilterAsync(req);
+
+while(res != null)
+{
+ // handle items
+
+ res = await res.Next!();
+}
+```
+
+### Parameters
+
+| Parameter | Type | Required | Description |
+| ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- |
+| `request` | [ListMembershipItemsPostFilterRequest](../../Models/Requests/ListMembershipItemsPostFilterRequest.md) | :heavy_check_mark: | The request object to use for the request. |
+
+### Response
+
+**[ListMembershipItemsPostFilterResponse](../../Models/Requests/ListMembershipItemsPostFilterResponse.md)**
+
+### Errors
+
+| Error Type | Status Code | Content Type |
+| ------------------------------------- | ------------------------------------- | ------------------------------------- |
+| Cvent.SDK.Models.Errors.ErrorResponse | 400, 401, 403, 404, 429 | application/json |
+| Cvent.SDK.Models.Errors.APIException | 4XX, 5XX | \*/\* |
+
## GetOrders
Gets a paginated list of Orders in event
@@ -1916,7 +1974,7 @@ UpdateRegistrationTypeRequest req = new UpdateRegistrationTypeRequest() {
OpenForRegistration = true,
AutomaticOpenDate = System.DateTime.Parse("2017-01-02T02:00:00Z").ToUniversalTime(),
AutomaticEndDate = System.DateTime.Parse("2017-01-02T02:00:00Z").ToUniversalTime(),
- Capacity = new CapacityJson1Input() {
+ Capacity = new CapacityJsonInput() {
Total = 100,
},
},
diff --git a/packages/csharp/docs/sdks/exhibitor/README.md b/packages/csharp/docs/sdks/exhibitor/README.md
index fc97c66e..b8f3055e 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 EventJson6() {
+ Event = new Event1() {
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 EventJson6() {
+ Event = new Event1() {
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 EventJson6() {
+ Event = new Event1() {
Id = "3db28cfc-db22-11eb-8d19-0242ac130003",
},
Name = "Potterfield Harry",
@@ -687,7 +687,7 @@ CreateExhibitorRequest req = new CreateExhibitorRequest() {
Code = "abc123",
SourceId = "software",
Location = "Taj Mahal",
- Address = new ExhibitorAddressJson() {
+ Address = new Address11() {
Address1 = "Cvent Inc.",
Address2 = "4001 West Parmer Lane",
City = "Austin",
@@ -700,21 +700,21 @@ CreateExhibitorRequest req = new CreateExhibitorRequest() {
WorkPhone = "555-555-5555",
OtherPhone = "555-555-5555",
Website = "www.superhappyfuntime.com",
- ContactLinks = new ContactLinksJson2() {
- TwitterUrl = new LinkJson() {
+ ContactLinks = new ContactLinks() {
+ 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",
},
- InstagramUrl = new LinkJson() {
+ InstagramUrl = new Link() {
Href = "?token=90c5f062-76ad-4ea4-aa53-00eb698d9262",
},
},
- SponsorshipLevel = new SponsorshipLevelJson() {
+ SponsorshipLevel = new SponsorshipLevel() {
Id = "3db28cfc-db22-11eb-8d19-0242ac130003",
},
},
@@ -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 EventJson6() {
+ Event = new Event1() {
Id = "3db28cfc-db22-11eb-8d19-0242ac130003",
},
Name = "Potterfield Harry",
@@ -829,7 +829,7 @@ UpdateExhibitorRequest req = new UpdateExhibitorRequest() {
Code = "abc123",
SourceId = "software",
Location = "Taj Mahal",
- Address = new ExhibitorAddressJson() {
+ Address = new Address11() {
Address1 = "Cvent Inc.",
Address2 = "4001 West Parmer Lane",
City = "Austin",
@@ -842,21 +842,21 @@ UpdateExhibitorRequest req = new UpdateExhibitorRequest() {
WorkPhone = "555-555-5555",
OtherPhone = "555-555-5555",
Website = "www.superhappyfuntime.com",
- ContactLinks = new ContactLinksJson2() {
- TwitterUrl = new LinkJson() {
+ ContactLinks = new ContactLinks() {
+ 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",
},
- InstagramUrl = new LinkJson() {
+ InstagramUrl = new Link() {
Href = "?token=90c5f062-76ad-4ea4-aa53-00eb698d9262",
},
},
- SponsorshipLevel = new SponsorshipLevelJson() {
+ SponsorshipLevel = new SponsorshipLevel() {
Id = "3db28cfc-db22-11eb-8d19-0242ac130003",
},
},
@@ -1122,20 +1122,20 @@ UpdateExhibitorAnswersRequest req = new UpdateExhibitorAnswersRequest() {
Id = "3db28cfc-db22-11eb-8d19-0242ac130003",
ExhibitorId = "4888db54-db22-11eb-8d19-0242ac130003",
ExhibitorAnswersRequest = new ExhibitorAnswersRequest() {
- Data = new List() {
- new ExistingExhibitorAnswerJsonInput() {
- Question = new UuidJson() {
+ Data = new List() {
+ new ExistingExhibitorAnswerInput() {
+ Question = new Uuid1() {
Id = "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3",
},
- Event = new EventJson6() {
+ Event = new Event1() {
Id = "3db28cfc-db22-11eb-8d19-0242ac130003",
},
- Exhibitor = new ExhibitorJson() {
+ Exhibitor = new Cvent.SDK.Models.Components.Exhibitor() {
Id = "4888db54-db22-11eb-8d19-0242ac130003",
},
- Answers = new List() {
- new AnswerJson0() {
- Type = AnswerTypeJson0.Choice,
+ Answers = new List() {
+ new Answer2() {
+ Type = AnswerType1.Choice,
Value = "Choice A",
},
},
@@ -1410,15 +1410,15 @@ PostRegistrationPackRequest req = new PostRegistrationPackRequest() {
Id = "3db28cfc-db22-11eb-8d19-0242ac130003",
ExhibitorId = "4888db54-db22-11eb-8d19-0242ac130003",
RegistrationPackRequest = new RegistrationPackRequest() {
- Event = new EventJson6() {
+ Event = new Event1() {
Id = "3db28cfc-db22-11eb-8d19-0242ac130003",
},
- Exhibitor = new ExhibitorJson() {
+ Exhibitor = new Cvent.SDK.Models.Components.Exhibitor() {
Id = "4888db54-db22-11eb-8d19-0242ac130003",
},
- Capacities = new List() {
- new CapacityJson() {
- RegistrationType = new CapacityJsonRegistrationType() {
+ Capacities = new List() {
+ new Capacity() {
+ RegistrationType = new CapacityRegistrationType() {
Id = "923d5629-3cac-40c2-8237-34937dd93475",
},
ReservedCapacity = 5,
@@ -1584,15 +1584,15 @@ UpdateRegistrationPackRequest req = new UpdateRegistrationPackRequest() {
ExhibitorId = "4888db54-db22-11eb-8d19-0242ac130003",
RegistrationPackId = "50f4f0df-0c2d-4e6b-8e68-e1413b6917f5",
RegistrationPackRequest = new RegistrationPackRequest() {
- Event = new EventJson6() {
+ Event = new Event1() {
Id = "3db28cfc-db22-11eb-8d19-0242ac130003",
},
- Exhibitor = new ExhibitorJson() {
+ Exhibitor = new Cvent.SDK.Models.Components.Exhibitor() {
Id = "4888db54-db22-11eb-8d19-0242ac130003",
},
- Capacities = new List() {
- new CapacityJson() {
- RegistrationType = new CapacityJsonRegistrationType() {
+ Capacities = new List() {
+ new Capacity() {
+ RegistrationType = new CapacityRegistrationType() {
Id = "923d5629-3cac-40c2-8237-34937dd93475",
},
ReservedCapacity = 5,
diff --git a/packages/csharp/docs/sdks/exhibitorcontent/README.md b/packages/csharp/docs/sdks/exhibitorcontent/README.md
index 022cba02..9b3f6a46 100644
--- a/packages/csharp/docs/sdks/exhibitorcontent/README.md
+++ b/packages/csharp/docs/sdks/exhibitorcontent/README.md
@@ -150,10 +150,10 @@ UpdateExhibitorFileRequest req = new UpdateExhibitorFileRequest() {
ExhibitorId = "4888db54-db22-11eb-8d19-0242ac130003",
FileId = "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3",
File = new FileInput() {
- Event = new EventJson6() {
+ Event = new Event1() {
Id = "3db28cfc-db22-11eb-8d19-0242ac130003",
},
- Exhibitor = new ExhibitorJson() {
+ Exhibitor = new Cvent.SDK.Models.Components.Exhibitor() {
Id = "4888db54-db22-11eb-8d19-0242ac130003",
},
DisplayName = "Marketing Page",
@@ -314,10 +314,10 @@ CreateExhibitorWeblinkRequest req = new CreateExhibitorWeblinkRequest() {
Id = "3db28cfc-db22-11eb-8d19-0242ac130003",
ExhibitorId = "4888db54-db22-11eb-8d19-0242ac130003",
Weblink = new Weblink() {
- Event = new EventJson6() {
+ Event = new Event1() {
Id = "3db28cfc-db22-11eb-8d19-0242ac130003",
},
- Exhibitor = new ExhibitorJson() {
+ Exhibitor = new Cvent.SDK.Models.Components.Exhibitor() {
Id = "4888db54-db22-11eb-8d19-0242ac130003",
},
Name = "Marketing Page",
@@ -429,10 +429,10 @@ UpdateExhibitorWeblinkRequest req = new UpdateExhibitorWeblinkRequest() {
ExhibitorId = "4888db54-db22-11eb-8d19-0242ac130003",
WeblinkId = "4d44b9e4-8c1a-403d-a20a-0b981f539935",
Weblink = new Weblink() {
- Event = new EventJson6() {
+ Event = new Event1() {
Id = "3db28cfc-db22-11eb-8d19-0242ac130003",
},
- Exhibitor = new ExhibitorJson() {
+ Exhibitor = new Cvent.SDK.Models.Components.Exhibitor() {
Id = "4888db54-db22-11eb-8d19-0242ac130003",
},
Name = "Marketing Page",
diff --git a/packages/csharp/docs/sdks/exhibitorteam/README.md b/packages/csharp/docs/sdks/exhibitorteam/README.md
index 6d88040c..b7e5ea98 100644
--- a/packages/csharp/docs/sdks/exhibitorteam/README.md
+++ b/packages/csharp/docs/sdks/exhibitorteam/README.md
@@ -103,7 +103,7 @@ PostExhibitorAdminRequest req = new PostExhibitorAdminRequest() {
Id = "3db28cfc-db22-11eb-8d19-0242ac130003",
ExhibitorId = "4888db54-db22-11eb-8d19-0242ac130003",
ExhibitorAdminRequest = new ExhibitorAdminRequest() {
- Exhibitor = new ExhibitorJson() {
+ Exhibitor = new Cvent.SDK.Models.Components.Exhibitor() {
Id = "4888db54-db22-11eb-8d19-0242ac130003",
},
FirstName = "John",
@@ -215,7 +215,7 @@ UpdateExhibitorAdminRequest req = new UpdateExhibitorAdminRequest() {
ExhibitorId = "4888db54-db22-11eb-8d19-0242ac130003",
AdminId = "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3",
ExhibitorAdminRequest = new ExhibitorAdminRequest() {
- Exhibitor = new ExhibitorJson() {
+ Exhibitor = new Cvent.SDK.Models.Components.Exhibitor() {
Id = "4888db54-db22-11eb-8d19-0242ac130003",
},
FirstName = "John",
@@ -331,13 +331,13 @@ AssociateBoothStaffRequest req = new AssociateBoothStaffRequest() {
Id = "3db28cfc-db22-11eb-8d19-0242ac130003",
ExhibitorId = "4888db54-db22-11eb-8d19-0242ac130003",
BoothStaffRequest = new BoothStaffRequest() {
- Attendee = new AttendeeJson3() {
+ Attendee = new Attendee2() {
Id = "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3",
},
- Event = new EventJson6() {
+ Event = new Event1() {
Id = "3db28cfc-db22-11eb-8d19-0242ac130003",
},
- Exhibitor = new ExhibitorJson() {
+ Exhibitor = new Cvent.SDK.Models.Components.Exhibitor() {
Id = "4888db54-db22-11eb-8d19-0242ac130003",
},
},
diff --git a/packages/csharp/docs/sdks/housing/README.md b/packages/csharp/docs/sdks/housing/README.md
index 643782dc..c314647d 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 AddressJson3() {
+ HomeAddress = new AddressJson2() {
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 AddressJson3() {
+ Address = new AddressJson2() {
Address1 = "West St. 1",
Address2 = "Apt. 16",
City = "Austin",
diff --git a/packages/csharp/docs/sdks/meetingrequest/README.md b/packages/csharp/docs/sdks/meetingrequest/README.md
index d05b972e..c4e71f19 100644
--- a/packages/csharp/docs/sdks/meetingrequest/README.md
+++ b/packages/csharp/docs/sdks/meetingrequest/README.md
@@ -175,6 +175,8 @@ var res = await sdk.MeetingRequest.GetMRFByIdAsync(req);
Creates a collection of meeting requests for a given active form. For complex questions such as Meeting Room Requirements, Sleeping Room Requirements, or Budget Estimates, send the answer as a JSON-serialized string. See the question schema and the [Complex Questions Guide](/docs/rest-api/guides/meeting-request-complex-questions) for details.
+**Note:** If the meeting request form is configured to auto-create an event upon submission, the `event.id` field may not be populated in the response at the time of initial creation. Event creation is processed asynchronously after the meeting request is saved. To retrieve the associated event ID once it is available, poll the [Get MR](/documentation#tag/Meeting-Request/operation/getMeetingRequestById) endpoint.
+
More about OAuth2 authorization code support for administrators
<#oauth2-auth-code-planner-admin>
@@ -240,6 +242,8 @@ var res = await sdk.MeetingRequest.CreateMeetingRequestAsync(req);
Updates a collection of meeting requests for a given form, adding information to the existing meeting requests. For complex questions such as Meeting Room Requirements, Sleeping Room Requirements, or Budget Estimates, send the answer as a JSON-serialized string. See the question schema and the [Complex Questions Guide](/docs/rest-api/guides/meeting-request-complex-questions) for details.
+**Note:** If the meeting request form is configured to auto-create an event upon submission, the `event.id` field may not be populated in the response at the time of the update. Event creation is processed asynchronously after the meeting request is saved. To retrieve the associated event ID once it is available, poll the [Get MR](/documentation#tag/Meeting-Request/operation/getMeetingRequestById) endpoint.
+
More about OAuth2 authorization code support for administrators
<#oauth2-auth-code-planner-admin>
diff --git a/packages/csharp/docs/sdks/surveys/README.md b/packages/csharp/docs/sdks/surveys/README.md
index b54f246b..d1de53ce 100644
--- a/packages/csharp/docs/sdks/surveys/README.md
+++ b/packages/csharp/docs/sdks/surveys/README.md
@@ -403,9 +403,9 @@ CreateEventSurveyResponsesRequest req = new CreateEventSurveyResponsesRequest()
Question = new UuidJson() {
Id = "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3",
},
- Answers = new List() {
- new AnswerJson1() {
- Type = AnswerTypeJson2.ChoiceText,
+ Answers = new List() {
+ new AnswerJson() {
+ Type = AnswerTypeJson1.ChoiceText,
Value = "1",
Choice = new UuidJson() {
Id = "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3",
@@ -1213,7 +1213,7 @@ CreateStandardSurveyResponsesRequest req = new CreateStandardSurveyResponsesRequ
Question = new UuidJson() {
Id = "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3",
},
- Answers = new List() {},
+ Answers = new List() {},
Survey = new UuidJson() {
Id = "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3",
},
@@ -1275,9 +1275,9 @@ UpdateStandardSurveyResponsesRequest req = new UpdateStandardSurveyResponsesRequ
Question = new UuidJson() {
Id = "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3",
},
- Answers = new List() {
- new AnswerJson1() {
- Type = AnswerTypeJson2.ChoiceText,
+ Answers = new List() {
+ new AnswerJson() {
+ Type = AnswerTypeJson1.ChoiceText,
Value = "1",
Choice = new UuidJson() {
Id = "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3",
diff --git a/packages/csharp/docs/sdks/userscim/README.md b/packages/csharp/docs/sdks/userscim/README.md
index 841ab56e..a37ac328 100644
--- a/packages/csharp/docs/sdks/userscim/README.md
+++ b/packages/csharp/docs/sdks/userscim/README.md
@@ -323,8 +323,8 @@ UserInput req = new UserInput() {
Value = "+911234567890",
},
},
- Addresses = new List() {
- new AddressJson6() {
+ Addresses = new List() {
+ new AddressJson5() {
Type = AddressTypeJson1.Work,
StreetAddress = "100 Universal City Plaza",
Locality = "Hollywood",
@@ -511,8 +511,8 @@ UpdateUserRequest req = new UpdateUserRequest() {
Value = "+911234567890",
},
},
- Addresses = new List() {
- new AddressJson6() {
+ Addresses = new List() {
+ new AddressJson5() {
Type = AddressTypeJson1.Work,
StreetAddress = "100 Universal City Plaza",
Locality = "Hollywood",
diff --git a/packages/csharp/src/Cvent/SDK/Attendees.cs b/packages/csharp/src/Cvent/SDK/Attendees.cs
index 23f27330..10c27950 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();
- Attendee obj;
+ Attendee1 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 Attendee.", httpRequest, httpResponse, httpResponseBody, ex);
+ throw new ResponseValidationException("Failed to deserialize response body into Attendee1.", httpRequest, httpResponse, httpResponseBody, ex);
}
var response = new GetAttendeeByIdResponse() {
@@ -1371,14 +1371,14 @@ public async Task UpdateAttendeeAsync(
if (Utilities.IsContentTypeMatch("application/json", contentType))
{
var httpResponseBody = await httpResponse.Content.ReadAsStringAsync();
- Attendee obj;
+ Attendee1 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 Attendee.", httpRequest, httpResponse, httpResponseBody, ex);
+ throw new ResponseValidationException("Failed to deserialize response body into Attendee1.", httpRequest, httpResponse, httpResponseBody, ex);
}
var response = new UpdateAttendeeResponse() {
diff --git a/packages/csharp/src/Cvent/SDK/AudienceSegments.cs b/packages/csharp/src/Cvent/SDK/AudienceSegments.cs
index d8eb004f..10306043 100644
--- a/packages/csharp/src/Cvent/SDK/AudienceSegments.cs
+++ b/packages/csharp/src/Cvent/SDK/AudienceSegments.cs
@@ -33,6 +33,26 @@ namespace Cvent.SDK
///
public interface IAudienceSegments
{
+ ///
+ /// List Associated Segments
+ /// More about OAuth2 authorization code support for administrators
+ ///
+ ///
+ /// Gets a paginated list of ACTIVE audience segment associations for the attendee. Use the filter query parameter to filter by segment ID.
+ ///
+ /// 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 ListAttendeeAudienceSegmentsAsync(
+ ListAttendeeAudienceSegmentsRequest request,
+ RetryConfig? retryConfig = null
+ );
+
///
/// Delete Attendee Associations
/// More about OAuth2 authorization code support for administrators
@@ -53,6 +73,26 @@ public Task DisassociateAttend
RetryConfig? retryConfig = null
);
+ ///
+ /// List Associated Segments
+ /// More about OAuth2 authorization code support for administrators
+ ///
+ ///
+ /// Gets a paginated list of ACTIVE audience segment associations for the attendee by sending filter in the body of the request. This method returns the same data as GET List Associated Segments but allows for longer filters.
+ ///
+ /// 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 ListAssociatedAudienceSegmentsAsync(
+ ListAssociatedAudienceSegmentsRequest request,
+ RetryConfig? retryConfig = null
+ );
+
///
/// Create Audience Segment
/// More about OAuth2 authorization code support for administrators
@@ -263,6 +303,203 @@ public AudienceSegments(SDKConfig config)
SDKConfiguration = config;
}
+ ///
+ /// List Associated Segments
+ /// More about OAuth2 authorization code support for administrators
+ ///
+ ///
+ /// Gets a paginated list of ACTIVE audience segment associations for the attendee. Use the filter query parameter to filter by segment ID.
+ ///
+ /// 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 ListAttendeeAudienceSegmentsAsync(
+ ListAttendeeAudienceSegmentsRequest request,
+ RetryConfig? retryConfig = null
+ )
+ {
+ if (request == null) throw new ArgumentNullException(nameof(request));
+
+ string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
+ var urlString = URLBuilder.Build(baseUrl, "/attendees/{attendeeId}/audience-segments", 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, "listAttendeeAudienceSegments", new List { "event/audience-segments: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 ListAttendeeAudienceSegmentsRequest {
+ AttendeeId = request.AttendeeId,
+ Limit = request.Limit,
+ Token = nextCursor,
+ Filter = request.Filter
+ };
+
+ return await ListAttendeeAudienceSegmentsAsync(
+ 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();
+ AttendeeAudienceSegmentAssociationsPaginatedResponse obj;
+ try
+ {
+ obj = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
+ }
+ catch (Exception ex)
+ {
+ throw new ResponseValidationException("Failed to deserialize response body into AttendeeAudienceSegmentAssociationsPaginatedResponse.", httpRequest, httpResponse, httpResponseBody, ex);
+ }
+
+ var response = new ListAttendeeAudienceSegmentsResponse() {
+ HttpMeta = new Models.Components.HTTPMetadata() {
+ Response = httpResponse,
+ Request = httpRequest
+ },
+ Next = nextFunc
+ };
+ response.AttendeeAudienceSegmentAssociationsPaginatedResponse = 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.ErrorResponsePayload payload;
+ try
+ {
+ payload = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
+ }
+ catch (Exception ex)
+ {
+ throw new ResponseValidationException("Failed to deserialize response body into Models.Errors.ErrorResponsePayload.", httpRequest, httpResponse, httpResponseBody, ex);
+ }
+
+ throw new Models.Errors.ErrorResponse(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());
+ }
+
///
/// Delete Attendee Associations
/// More about OAuth2 authorization code support for administrators
@@ -412,6 +649,211 @@ public async Task Disassociate
throw new Models.Errors.APIException("Unknown status code received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
}
+ ///
+ /// List Associated Segments
+ /// More about OAuth2 authorization code support for administrators
+ ///
+ ///
+ /// Gets a paginated list of ACTIVE audience segment associations for the attendee by sending filter in the body of the request. This method returns the same data as GET List Associated Segments but allows for longer filters.
+ ///
+ /// 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 ListAssociatedAudienceSegmentsAsync(
+ ListAssociatedAudienceSegmentsRequest request,
+ RetryConfig? retryConfig = null
+ )
+ {
+ if (request == null) throw new ArgumentNullException(nameof(request));
+
+ string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
+ var urlString = URLBuilder.Build(baseUrl, "/attendees/{attendeeId}/audience-segments/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, false);
+ if (serializedBody != null)
+ {
+ httpRequest.Content = serializedBody;
+ }
+
+ if (SDKConfiguration.SecuritySource != null)
+ {
+ httpRequest = new SecurityMetadata(SDKConfiguration.SecuritySource).Apply(httpRequest);
+ }
+
+ var hookCtx = new HookContext(SDKConfiguration, baseUrl, "listAssociatedAudienceSegments", new List { "event/audience-segments: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 ListAssociatedAudienceSegmentsRequest {
+ AttendeeId = request.AttendeeId,
+ Limit = request.Limit,
+ Token = nextCursor,
+ Filter = new Filter {
+ FilterValue = request.Filter.FilterValue
+ }
+ };
+
+ return await ListAssociatedAudienceSegmentsAsync(
+ 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();
+ AttendeeAudienceSegmentAssociationsPaginatedResponse obj;
+ try
+ {
+ obj = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
+ }
+ catch (Exception ex)
+ {
+ throw new ResponseValidationException("Failed to deserialize response body into AttendeeAudienceSegmentAssociationsPaginatedResponse.", httpRequest, httpResponse, httpResponseBody, ex);
+ }
+
+ var response = new ListAssociatedAudienceSegmentsResponse() {
+ HttpMeta = new Models.Components.HTTPMetadata() {
+ Response = httpResponse,
+ Request = httpRequest
+ },
+ Next = nextFunc
+ };
+ response.AttendeeAudienceSegmentAssociationsPaginatedResponse = 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.ErrorResponsePayload payload;
+ try
+ {
+ payload = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
+ }
+ catch (Exception ex)
+ {
+ throw new ResponseValidationException("Failed to deserialize response body into Models.Errors.ErrorResponsePayload.", httpRequest, httpResponse, httpResponseBody, ex);
+ }
+
+ throw new Models.Errors.ErrorResponse(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());
+ }
+
///
/// Create Audience Segment
/// More about OAuth2 authorization code support for administrators
diff --git a/packages/csharp/src/Cvent/SDK/Cvent.SDK.csproj b/packages/csharp/src/Cvent/SDK/Cvent.SDK.csproj
index 1ded9a9a..765f014d 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.2.3
+ 1.3.0
net8.0
Cvent
Copyright (c) Cvent 2026
diff --git a/packages/csharp/src/Cvent/SDK/EventRole.cs b/packages/csharp/src/Cvent/SDK/EventRole.cs
index e1c0e800..e69208e4 100644
--- a/packages/csharp/src/Cvent/SDK/EventRole.cs
+++ b/packages/csharp/src/Cvent/SDK/EventRole.cs
@@ -187,6 +187,8 @@ public async Task ListEventRoleAssignmentAsync(
var newRequest = new ListEventRoleAssignmentRequest {
Limit = request?.Limit,
Token = nextCursor,
+ After = request?.After,
+ Before = request?.Before,
Expand = request?.Expand,
Filter = request?.Filter
};
diff --git a/packages/csharp/src/Cvent/SDK/Events.cs b/packages/csharp/src/Cvent/SDK/Events.cs
index 5df45a57..001841e7 100644
--- a/packages/csharp/src/Cvent/SDK/Events.cs
+++ b/packages/csharp/src/Cvent/SDK/Events.cs
@@ -471,6 +471,25 @@ public Task ListMembershipItemsAsync(
RetryConfig? retryConfig = null
);
+ ///
+ /// List Membership Items.
+ ///
+ ///
+ /// Gets a paginated list of membership items. Membership items are a type of optional item that can be purchased during registration.
+ ///
+ /// 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 ListMembershipItemsPostFilterAsync(
+ ListMembershipItemsPostFilterRequest request,
+ RetryConfig? retryConfig = null
+ );
+
///
/// List Orders
/// More about OAuth2 authorization code support for administrators
@@ -5204,6 +5223,210 @@ public async Task ListMembershipItemsAsync(
throw new Models.Errors.APIException("Unknown status code received", httpRequest, httpResponse, await httpResponse.Content.ReadAsStringAsync());
}
+ ///
+ /// List Membership Items.
+ ///
+ ///
+ /// Gets a paginated list of membership items. Membership items are a type of optional item that can be purchased during registration.
+ ///
+ /// 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 ListMembershipItemsPostFilterAsync(
+ ListMembershipItemsPostFilterRequest request,
+ RetryConfig? retryConfig = null
+ )
+ {
+ if (request == null) throw new ArgumentNullException(nameof(request));
+
+ string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
+ var urlString = URLBuilder.Build(baseUrl, "/events/{id}/membership-items/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, "listMembershipItemsPostFilter", new List { "event/membership-items: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 ListMembershipItemsPostFilterRequest {
+ Id = request.Id,
+ Limit = request.Limit,
+ Token = nextCursor,
+ Filter = new Filter {
+ FilterValue = request.Filter?.FilterValue
+ }
+ };
+
+ return await ListMembershipItemsPostFilterAsync(
+ 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();
+ MembershipItemsPaginatedResponse obj;
+ try
+ {
+ obj = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
+ }
+ catch (Exception ex)
+ {
+ throw new ResponseValidationException("Failed to deserialize response body into MembershipItemsPaginatedResponse.", httpRequest, httpResponse, httpResponseBody, ex);
+ }
+
+ var response = new ListMembershipItemsPostFilterResponse() {
+ HttpMeta = new Models.Components.HTTPMetadata() {
+ Response = httpResponse,
+ Request = httpRequest
+ },
+ Next = nextFunc
+ };
+ response.MembershipItemsPaginatedResponse = 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.ErrorResponsePayload payload;
+ try
+ {
+ payload = ResponseBodyDeserializer.DeserializeNotNull(httpResponseBody, NullValueHandling.Ignore);
+ }
+ catch (Exception ex)
+ {
+ throw new ResponseValidationException("Failed to deserialize response body into Models.Errors.ErrorResponsePayload.", httpRequest, httpResponse, httpResponseBody, ex);
+ }
+
+ throw new Models.Errors.ErrorResponse(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 Orders
/// More about OAuth2 authorization code support for administrators
diff --git a/packages/csharp/src/Cvent/SDK/MeetingRequest.cs b/packages/csharp/src/Cvent/SDK/MeetingRequest.cs
index cb9aa2d6..3dbfbc48 100644
--- a/packages/csharp/src/Cvent/SDK/MeetingRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/MeetingRequest.cs
@@ -87,7 +87,9 @@ public Task GetMeetingRequestByEventIdAsync(
/// More about OAuth2 authorization code support for administrators
///
///
- /// Creates a collection of meeting requests for a given active form. For complex questions such as Meeting Room Requirements, Sleeping Room Requirements, or Budget Estimates, send the answer as a JSON-serialized string. See the question schema and the Complex Questions Guide for details.
+ /// Creates a collection of meeting requests for a given active form. For complex questions such as Meeting Room Requirements, Sleeping Room Requirements, or Budget Estimates, send the answer as a JSON-serialized string. See the question schema and the Complex Questions Guide for details.
+ ///
+ /// **Note:** If the meeting request form is configured to auto-create an event upon submission, the `event.id` field may not be populated in the response at the time of initial creation. Event creation is processed asynchronously after the meeting request is saved. To retrieve the associated event ID once it is available, poll the Get MR endpoint.
///
/// A parameter.
/// The retry configuration to use for this operation.
@@ -107,7 +109,9 @@ public Task CreateMeetingRequestAsync(
/// More about OAuth2 authorization code support for administrators
///
///
- /// Updates a collection of meeting requests for a given form, adding information to the existing meeting requests. For complex questions such as Meeting Room Requirements, Sleeping Room Requirements, or Budget Estimates, send the answer as a JSON-serialized string. See the question schema and the Complex Questions Guide for details.
+ /// Updates a collection of meeting requests for a given form, adding information to the existing meeting requests. For complex questions such as Meeting Room Requirements, Sleeping Room Requirements, or Budget Estimates, send the answer as a JSON-serialized string. See the question schema and the Complex Questions Guide for details.
+ ///
+ /// **Note:** If the meeting request form is configured to auto-create an event upon submission, the `event.id` field may not be populated in the response at the time of the update. Event creation is processed asynchronously after the meeting request is saved. To retrieve the associated event ID once it is available, poll the Get MR endpoint.
///
/// A parameter.
/// The retry configuration to use for this operation.
@@ -727,7 +731,9 @@ public async Task GetMRFByIdAsync(
/// More about OAuth2 authorization code support for administrators
///
///
- /// Creates a collection of meeting requests for a given active form. For complex questions such as Meeting Room Requirements, Sleeping Room Requirements, or Budget Estimates, send the answer as a JSON-serialized string. See the question schema and the Complex Questions Guide for details.
+ /// Creates a collection of meeting requests for a given active form. For complex questions such as Meeting Room Requirements, Sleeping Room Requirements, or Budget Estimates, send the answer as a JSON-serialized string. See the question schema and the Complex Questions Guide for details.
+ ///
+ /// **Note:** If the meeting request form is configured to auto-create an event upon submission, the `event.id` field may not be populated in the response at the time of initial creation. Event creation is processed asynchronously after the meeting request is saved. To retrieve the associated event ID once it is available, poll the Get MR endpoint.
///
/// A parameter.
/// The retry configuration to use for this operation.
@@ -900,7 +906,9 @@ public async Task CreateMeetingRequestAsync(
/// More about OAuth2 authorization code support for administrators
///
///
- /// Updates a collection of meeting requests for a given form, adding information to the existing meeting requests. For complex questions such as Meeting Room Requirements, Sleeping Room Requirements, or Budget Estimates, send the answer as a JSON-serialized string. See the question schema and the Complex Questions Guide for details.
+ /// Updates a collection of meeting requests for a given form, adding information to the existing meeting requests. For complex questions such as Meeting Room Requirements, Sleeping Room Requirements, or Budget Estimates, send the answer as a JSON-serialized string. See the question schema and the Complex Questions Guide for details.
+ ///
+ /// **Note:** If the meeting request form is configured to auto-create an event upon submission, the `event.id` field may not be populated in the response at the time of the update. Event creation is processed asynchronously after the meeting request is saved. To retrieve the associated event ID once it is available, poll the Get MR endpoint.
///
/// A parameter.
/// The retry configuration to use for this operation.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AccountBudgetItemListResponseJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AccountBudgetItemListResponseJson.cs
index feafe230..7623a437 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/AccountBudgetItemListResponseJson.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/AccountBudgetItemListResponseJson.cs
@@ -47,7 +47,7 @@ public class AccountBudgetItemListResponseJson
/// Event ID Information.
///
[JsonProperty("event")]
- public EventJson4? Event { get; set; }
+ public EventJson3? Event { get; set; }
///
/// RFP ID Information.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/Action.cs b/packages/csharp/src/Cvent/SDK/Models/Components/Action.cs
deleted file mode 100644
index 21487e76..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/Action.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;
-
- ///
- /// 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
new file mode 100644
index 00000000..7643881f
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/AdditionalChoice.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 AdditionalChoice
+ {
+ ///
+ /// 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/AdditionalChoiceJson1.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AdditionalChoiceJson1.cs
new file mode 100644
index 00000000..2c2d1420
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/AdditionalChoiceJson1.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 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/AdditionalChoiceJson11.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AdditionalChoiceJson11.cs
deleted file mode 100644
index d1c1b4ef..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/AdditionalChoiceJson11.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;
-
- ///
- /// Contains text of additional choice.
- ///
- public class AdditionalChoiceJson11
- {
- ///
- /// 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/Address11.cs b/packages/csharp/src/Cvent/SDK/Models/Components/Address11.cs
new file mode 100644
index 00000000..ef074a10
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/Address11.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 Address11
+ {
+ ///
+ /// 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/Address12.cs b/packages/csharp/src/Cvent/SDK/Models/Components/Address12.cs
new file mode 100644
index 00000000..a1dbddc1
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/Address12.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;
+
+ ///
+ /// 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/AddressJson2.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AddressJson2.cs
new file mode 100644
index 00000000..84f50920
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/AddressJson2.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. Required to create/update a guest's reservation if the hotel/event requires an address in reservations.
+ ///
+ public class AddressJson2
+ {
+ ///
+ /// 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/AddressJson3.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AddressJson3.cs
index 10ea2b5b..c97c9f4f 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/AddressJson3.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/AddressJson3.cs
@@ -13,56 +13,74 @@ namespace Cvent.SDK.Models.Components
using Newtonsoft.Json;
///
- /// Address details. Required to create/update a guest's reservation if the hotel/event requires an address in reservations.
+ /// Address details.
///
public class AddressJson3
{
///
- /// Address line 1.
+ /// The first line of an address.
///
[JsonProperty("address1")]
public string? Address1 { get; set; }
///
- /// Address line 2.
+ /// The second line of an address.
///
[JsonProperty("address2")]
public string? Address2 { get; set; }
///
- /// City name.
+ /// 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; }
///
- /// Region name.
+ /// 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; }
///
- /// Region code.
+ /// The abbreviation of the state/province/region of the address.
///
[JsonProperty("regionCode")]
public string? RegionCode { get; set; }
///
- /// Postal code.
+ /// Name of the country of the address.
///
- [JsonProperty("postalCode")]
- public string? PostalCode { get; set; }
+ [JsonProperty("country")]
+ public string? Country { get; set; }
///
- /// Country name.
+ /// The geo latitude of the address.
///
- [JsonProperty("country")]
- public string? Country { get; set; }
+ [JsonProperty("latitude")]
+ public long? Latitude { get; set; }
///
- /// ISO 3166 alpha-2 country code.
+ /// The geo longitude of the address.
///
- [JsonProperty("countryCode")]
- public string? CountryCode { get; set; }
+ [JsonProperty("longitude")]
+ public long? Longitude { 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
index 8785c53e..d26c88d5 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/AddressJson4.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/AddressJson4.cs
@@ -13,74 +13,56 @@ namespace Cvent.SDK.Models.Components
using Newtonsoft.Json;
///
- /// Address details.
+ /// A physical address.
///
public class AddressJson4
{
///
- /// 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("country")]
- public string? Country { get; set; }
+ [JsonProperty("postalCode")]
+ public string? PostalCode { get; set; }
///
- /// The geo latitude of the address.
+ /// Country name.
///
- [JsonProperty("latitude")]
- public long? Latitude { get; set; }
+ [JsonProperty("country")]
+ public string? Country { get; set; }
///
- /// The geo longitude of the address.
+ /// ISO 3166 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/AddressJson5.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AddressJson5.cs
index d9c0744d..0edfa616 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/AddressJson5.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/AddressJson5.cs
@@ -9,60 +9,55 @@
#nullable enable
namespace Cvent.SDK.Models.Components
{
+ using Cvent.SDK.Models.Components;
using Cvent.SDK.Utils;
using Newtonsoft.Json;
///
- /// A physical address.
+ /// Address.
///
public class AddressJson5
{
///
- /// Address line 1.
+ /// The type of the address.
///
- [JsonProperty("address1")]
- public string? Address1 { get; set; }
+ [JsonProperty("type")]
+ public AddressTypeJson1 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/AddressJson6.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AddressJson6.cs
index a3e83c66..a5c5e992 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/AddressJson6.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/AddressJson6.cs
@@ -9,55 +9,60 @@
#nullable enable
namespace Cvent.SDK.Models.Components
{
- using Cvent.SDK.Models.Components;
using Cvent.SDK.Utils;
using Newtonsoft.Json;
///
- /// Address.
+ /// Address details.
///
public class AddressJson6
{
///
- /// The type of the address.
+ /// Address line 1.
///
- [JsonProperty("type")]
- public AddressTypeJson1 Type { get; set; } = default!;
+ [JsonProperty("address1")]
+ public string? Address1 { get; set; }
///
- /// The street address of the user.
+ /// Address line 2.
///
- [JsonProperty("streetAddress")]
- public string? StreetAddress { get; set; }
+ [JsonProperty("address2")]
+ public string? Address2 { get; set; }
///
- /// The locality/city of the user.
+ /// City name.
///
- [JsonProperty("locality")]
- public string? Locality { get; set; }
+ [JsonProperty("city")]
+ public string? City { get; set; }
///
- /// The region/state/province of the user.
+ /// Region name.
///
[JsonProperty("region")]
public string? Region { get; set; }
///
- /// Postal code (also known as zipcode) of the user.
+ /// Region code.
+ ///
+ [JsonProperty("regionCode")]
+ public string? RegionCode { get; set; }
+
+ ///
+ /// Postal code.
///
[JsonProperty("postalCode")]
public string? PostalCode { get; set; }
///
- /// The country of the user.
+ /// Country name.
///
[JsonProperty("country")]
public string? Country { get; set; }
///
- /// True indicates the address is primary.
+ /// ISO 3166 alpha-2 country code.
///
- [JsonProperty("primary")]
- public bool? Primary { get; set; } = false;
+ [JsonProperty("countryCode")]
+ public string? CountryCode { get; set; }
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AddressJson7.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AddressJson7.cs
deleted file mode 100644
index 927565ab..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/AddressJson7.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 AddressJson7
- {
- ///
- /// 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/Answer1.cs b/packages/csharp/src/Cvent/SDK/Models/Components/Answer1.cs
new file mode 100644
index 00000000..89658efc
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/Answer1.cs
@@ -0,0 +1,39 @@
+//------------------------------------------------------------------------------
+//
+// 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;
+
+ ///
+ /// An object representing the possible answers for lead qualification questions.
+ ///
+ public class Answer1
+ {
+ ///
+ /// Type of answer.
+ ///
+ [JsonProperty("type")]
+ public AnswerType Type { get; set; } = default!;
+
+ ///
+ /// Answered value like: Choice text, text answer input etc.
+ ///
+ [JsonProperty("value")]
+ public string? Value { get; set; }
+
+ ///
+ /// The reference to the related entity. Contains only the ID of the related entity.
+ ///
+ [JsonProperty("choice")]
+ public Uuid1? Choice { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/Answer2.cs b/packages/csharp/src/Cvent/SDK/Models/Components/Answer2.cs
new file mode 100644
index 00000000..c424bbaf
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/Answer2.cs
@@ -0,0 +1,39 @@
+//------------------------------------------------------------------------------
+//
+// 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;
+
+ ///
+ /// A JSON schema representing an answer object.
+ ///
+ public class Answer2
+ {
+ ///
+ /// Type of answer.
+ ///
+ [JsonProperty("type")]
+ public AnswerType1 Type { get; set; } = default!;
+
+ ///
+ /// Answered value like: Choice text, text answer input etc.
+ ///
+ [JsonProperty("value")]
+ public string? Value { get; set; }
+
+ ///
+ /// The choice that was selected.
+ ///
+ [JsonProperty("choice")]
+ public Answer2Choice? Choice { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/Answer2Choice.cs b/packages/csharp/src/Cvent/SDK/Models/Components/Answer2Choice.cs
new file mode 100644
index 00000000..becdbdbf
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/Answer2Choice.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 choice that was selected.
+ ///
+ public class Answer2Choice
+ {
+ ///
+ /// The ID of the choice that was selected.
+ ///
+ [JsonProperty("id")]
+ public string? Id { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AnswerJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AnswerJson.cs
index fd820f8d..41f1c632 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/AnswerJson.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/AnswerJson.cs
@@ -14,7 +14,7 @@ namespace Cvent.SDK.Models.Components
using Newtonsoft.Json;
///
- /// An object representing the possible answers for lead qualification questions.
+ /// A survey answer.
///
public class AnswerJson
{
@@ -22,10 +22,10 @@ public class AnswerJson
/// Type of answer.
///
[JsonProperty("type")]
- public AnswerTypeJson Type { get; set; } = default!;
+ public AnswerTypeJson1 Type { get; set; } = default!;
///
- /// Answered value like: Choice text, text answer input etc.
+ /// Value property is used to send information like string, number and date in case of following types of answers only: ChoiceText, Text, Comment, Other. In case of Rank Order question, rank should be put into value. Refer to questions resource to get choice label or category label from their respective ids.
///
[JsonProperty("value")]
public string? Value { get; set; }
@@ -35,5 +35,23 @@ public class AnswerJson
///
[JsonProperty("choice")]
public UuidJson? Choice { get; set; }
+
+ ///
+ /// The reference to the related entity. Contains only the ID of the related entity.
+ ///
+ [JsonProperty("category")]
+ public UuidJson? Category { get; set; }
+
+ ///
+ /// The reference to the related entity. Contains only the ID of the related entity.
+ ///
+ [JsonProperty("subCategory")]
+ public UuidJson? SubCategory { get; set; }
+
+ ///
+ /// The reference to the related entity. Contains only the ID of the related entity.
+ ///
+ [JsonProperty("field")]
+ public UuidJson? Field { get; set; }
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AnswerJson0.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AnswerJson0.cs
deleted file mode 100644
index 0361016f..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/AnswerJson0.cs
+++ /dev/null
@@ -1,39 +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;
-
- ///
- /// A JSON schema representing an answer object.
- ///
- public class AnswerJson0
- {
- ///
- /// Type of answer.
- ///
- [JsonProperty("type")]
- public AnswerTypeJson0 Type { get; set; } = default!;
-
- ///
- /// Answered value like: Choice text, text answer input etc.
- ///
- [JsonProperty("value")]
- public string? Value { get; set; }
-
- ///
- /// The choice that was selected.
- ///
- [JsonProperty("choice")]
- public Choice? Choice { get; set; }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AnswerJson1.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AnswerJson1.cs
index 0b42b154..b66f584a 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/AnswerJson1.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/AnswerJson1.cs
@@ -9,49 +9,32 @@
#nullable enable
namespace Cvent.SDK.Models.Components
{
- using Cvent.SDK.Models.Components;
using Cvent.SDK.Utils;
using Newtonsoft.Json;
+ using System;
///
- /// A survey answer.
+ /// A question answer.
///
public class AnswerJson1
{
///
- /// Type of answer.
+ /// The unique identifier of the question.
///
- [JsonProperty("type")]
- public AnswerTypeJson2 Type { get; set; } = default!;
-
- ///
- /// Value property is used to send information like string, number and date in case of following types of answers only: ChoiceText, Text, Comment, Other. In case of Rank Order question, rank should be put into value. Refer to questions resource to get choice label or category label from their respective ids.
- ///
- [JsonProperty("value")]
- public string? Value { get; set; }
+ [JsonProperty("id")]
+ public string? Id { get; set; }
///
- /// The reference to the related entity. Contains only the ID of the related entity.
+ /// Question text.
///
- [JsonProperty("choice")]
- public UuidJson? Choice { get; set; }
+ [JsonProperty("text")]
+ public string? Text { get; set; }
///
- /// The reference to the related entity. Contains only the ID of the related entity.
+ /// Data type of an answer. DEPRECATED: This field is deprecated and not applicable to this activity.
///
- [JsonProperty("category")]
- public UuidJson? Category { get; set; }
-
- ///
- /// The reference to the related entity. Contains only the ID of the related entity.
- ///
- [JsonProperty("subCategory")]
- public UuidJson? SubCategory { get; set; }
-
- ///
- /// The reference to the related entity. Contains only the ID of the related entity.
- ///
- [JsonProperty("field")]
- public UuidJson? Field { get; set; }
+ [Obsolete("This field will be removed in a future release, please migrate away from it as soon as possible")]
+ [JsonProperty("type")]
+ public string? Type { get; set; }
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AnswerJson2.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AnswerJson2.cs
deleted file mode 100644
index c8df77ee..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/AnswerJson2.cs
+++ /dev/null
@@ -1,40 +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;
-
- ///
- /// A question answer.
- ///
- public class AnswerJson2
- {
- ///
- /// The unique identifier of the question.
- ///
- [JsonProperty("id")]
- public string? Id { get; set; }
-
- ///
- /// Question text.
- ///
- [JsonProperty("text")]
- public string? Text { get; set; }
-
- ///
- /// Data type of an answer. DEPRECATED: This field is deprecated and not applicable to this activity.
- ///
- [Obsolete("This field will be removed in a future release, please migrate away from it as soon as possible")]
- [JsonProperty("type")]
- public string? Type { get; set; }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AnswerType.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AnswerType.cs
new file mode 100644
index 00000000..fe6d1d77
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/AnswerType.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;
+
+ ///
+ /// Type of answer.
+ ///
+ public enum AnswerType
+ {
+ [JsonProperty("Choice")] Choice,
+ [JsonProperty("Text")] Text,
+ [JsonProperty("ChoiceText")] ChoiceText,
+ [JsonProperty("Other")] Other,
+ [JsonProperty("NA")] Na,
+ }
+
+ public static class AnswerTypeExtension
+ {
+ public static string Value(this AnswerType value)
+ {
+ return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString()) [0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
+ }
+
+ public static AnswerType ToEnum(this string value)
+ {
+ foreach (var field in typeof(AnswerType).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 AnswerType)
+ {
+ return (AnswerType)enumVal;
+ }
+ }
+ }
+
+ throw new Exception($"Unknown value {value} for enum AnswerType");
+ }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AnswerType1.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AnswerType1.cs
new file mode 100644
index 00000000..2953e612
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/AnswerType1.cs
@@ -0,0 +1,59 @@
+//------------------------------------------------------------------------------
+//
+// 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 answer.
+ ///
+ public enum AnswerType1
+ {
+ [JsonProperty("Choice")] Choice,
+ [JsonProperty("Text")] Text,
+ [JsonProperty("Other")] Other,
+ [JsonProperty("NA")] Na,
+ }
+
+ public static class AnswerType1Extension
+ {
+ public static string Value(this AnswerType1 value)
+ {
+ return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString()) [0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
+ }
+
+ public static AnswerType1 ToEnum(this string value)
+ {
+ foreach (var field in typeof(AnswerType1).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 AnswerType1)
+ {
+ return (AnswerType1)enumVal;
+ }
+ }
+ }
+
+ throw new Exception($"Unknown value {value} for enum AnswerType1");
+ }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AnswerTypeJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AnswerTypeJson.cs
index 5630d02e..3989525a 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/AnswerTypeJson.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/AnswerTypeJson.cs
@@ -14,13 +14,16 @@ namespace Cvent.SDK.Models.Components
using System;
///
- /// Type of answer.
+ /// 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.
///
public enum AnswerTypeJson
{
- [JsonProperty("Choice")] Choice,
- [JsonProperty("Text")] Text,
- [JsonProperty("ChoiceText")] ChoiceText,
[JsonProperty("Other")] Other,
[JsonProperty("NA")] Na,
}
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AnswerTypeJson0.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AnswerTypeJson0.cs
deleted file mode 100644
index 56f98ed4..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/AnswerTypeJson0.cs
+++ /dev/null
@@ -1,59 +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 answer.
- ///
- public enum AnswerTypeJson0
- {
- [JsonProperty("Choice")] Choice,
- [JsonProperty("Text")] Text,
- [JsonProperty("Other")] Other,
- [JsonProperty("NA")] Na,
- }
-
- public static class AnswerTypeJson0Extension
- {
- public static string Value(this AnswerTypeJson0 value)
- {
- return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString()) [0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
- }
-
- public static AnswerTypeJson0 ToEnum(this string value)
- {
- foreach (var field in typeof(AnswerTypeJson0).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 AnswerTypeJson0)
- {
- return (AnswerTypeJson0)enumVal;
- }
- }
- }
-
- throw new Exception($"Unknown value {value} for enum AnswerTypeJson0");
- }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AnswerTypeJson1.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AnswerTypeJson1.cs
index 1c081695..b77f9c20 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/AnswerTypeJson1.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/AnswerTypeJson1.cs
@@ -14,18 +14,17 @@ namespace Cvent.SDK.Models.Components
using System;
///
- /// 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.
+ /// Type of answer.
///
public enum AnswerTypeJson1
{
+ [JsonProperty("Choice")] Choice,
+ [JsonProperty("Text")] Text,
+ [JsonProperty("ChoiceText")] ChoiceText,
+ [JsonProperty("Comment")] Comment,
[JsonProperty("Other")] Other,
[JsonProperty("NA")] Na,
+ [JsonProperty("File")] File,
}
public static class AnswerTypeJson1Extension
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AnswerTypeJson2.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AnswerTypeJson2.cs
deleted file mode 100644
index 80ea8a8a..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/AnswerTypeJson2.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;
- using System;
-
- ///
- /// Type of answer.
- ///
- public enum AnswerTypeJson2
- {
- [JsonProperty("Choice")] Choice,
- [JsonProperty("Text")] Text,
- [JsonProperty("ChoiceText")] ChoiceText,
- [JsonProperty("Comment")] Comment,
- [JsonProperty("Other")] Other,
- [JsonProperty("NA")] Na,
- [JsonProperty("File")] File,
- }
-
- public static class AnswerTypeJson2Extension
- {
- public static string Value(this AnswerTypeJson2 value)
- {
- return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString()) [0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
- }
-
- public static AnswerTypeJson2 ToEnum(this string value)
- {
- foreach (var field in typeof(AnswerTypeJson2).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 AnswerTypeJson2)
- {
- return (AnswerTypeJson2)enumVal;
- }
- }
- }
-
- throw new Exception($"Unknown value {value} for enum AnswerTypeJson2");
- }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/Appointment.cs b/packages/csharp/src/Cvent/SDK/Models/Components/Appointment.cs
new file mode 100644
index 00000000..783c7aaa
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/Appointment.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 JSON schema representing the structure of an appointment object.
+ ///
+ public class Appointment
+ {
+ ///
+ /// Appointment id.
+ ///
+ [JsonProperty("id")]
+ public string? Id { get; set; }
+ }
+}
\ 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
deleted file mode 100644
index 5c9446d5..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/Attendee.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 Attendee
- {
- ///
- /// 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 AttendeeContactInfoJson? 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 LookupJson? RegistrationPath { get; set; }
-
- ///
- /// A Named object.
- ///
- [JsonProperty("invitationList")]
- public IdNameJson? InvitationList { get; set; }
-
- ///
- /// Web links for an attendee.
- ///
- [JsonProperty("webLinks")]
- public AttendeeWebLinksJson? WebLinks { get; set; }
-
- ///
- /// Lookup response object.
- ///
- [JsonProperty("registrationType")]
- public LookupJson? 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; }
-
- ///
- /// A planner created note for an attendee, used to track details about the attendee.
- ///
- [JsonProperty("note")]
- public string? Note { get; set; }
-
- ///
- /// True indicates the attendee is a guest of another attendee.
- ///
- [JsonProperty("guest")]
- public bool? Guest { get; set; }
-
- ///
- /// True indicates this attendee is a deleted guest.
- ///
- [JsonProperty("deletedGuest")]
- public bool? DeletedGuest { get; set; }
-
- ///
- /// The ID of the primary attendee to whom this guest attendee is associated. Only applicable if this attendee is a guest.
- ///
- [JsonProperty("primaryId")]
- public string? PrimaryId { get; set; }
-
- ///
- /// An attendee group.
- ///
- [JsonProperty("group")]
- public AttendeeGroupJson? Group { get; set; }
-
- ///
- /// The reference to the related entity. Contains only the ID of the related entity.
- ///
- [JsonProperty("administrator")]
- public UuidJson? Administrator { get; set; }
-
- ///
- /// 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.
- ///
- [Obsolete("This field will be removed in a future release, please migrate away from it as soon as possible")]
- [JsonProperty("unsubscribed")]
- public bool? Unsubscribed { get; set; }
-
- ///
- /// This is used to denote the status of an attendee.
- ///
- [JsonProperty("status")]
- public AttendeeStatusJson? Status { get; set; }
-
- ///
- /// The ISO 8601 zoned date time when attendee was registered.
- ///
- [JsonProperty("registeredAt")]
- public DateTime? RegisteredAt { get; set; }
-
- ///
- /// 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.
- ///
- [JsonProperty("registrationLastModified")]
- public DateTime? RegistrationLastModified { get; set; }
-
- ///
- /// The ISO 8601 zoned date time when attendee registration was cancelled.
- ///
- [JsonProperty("registrationCancelledAt")]
- public DateTime? RegistrationCancelledAt { get; set; }
-
- ///
- /// Method by which the attendee was invited to the event.
- ///
- [JsonProperty("invitedBy")]
- public AttendeeInvitedByJson? InvitedBy { get; set; }
-
- ///
- /// 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.
- ///
- [JsonProperty("responseMethod")]
- public AttendeeResponseMethodJson? ResponseMethod { get; set; }
-
- ///
- /// 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.
- ///
- [Obsolete("This field will be removed in a future release, please migrate away from it as soon as possible")]
- [JsonProperty("questions")]
- public List? Questions { get; set; }
-
- ///
- /// The list of answers to the registration questions.
- ///
- [JsonProperty("answers")]
- public List? Answers { get; set; }
-
- ///
- /// Contains details related to the attendee's admission item.
- ///
- [JsonProperty("admissionItem")]
- public AttendeeLookup? AdmissionItem { get; set; }
-
- ///
- /// Denotes the visibility of the attendee profile to other attendees. Private: Their profile is not visible. Public: Their profile is visible.
- ///
- [JsonProperty("visibility")]
- public AttendeeVisibilityJson? Visibility { get; set; }
-
- ///
- /// The attendee's biographical writeup.
- ///
- [JsonProperty("bio")]
- public string? Bio { get; set; }
-
- ///
- /// Notification setting in the Attendee Hub app or website. Note: This field is deprecated. Use `allowPushNotification` field instead.
- ///
- [Obsolete("This field will be removed in a future release, please migrate away from it as soon as possible")]
- [JsonProperty("showPopupNotification")]
- public bool? ShowPopupNotification { get; set; }
-
- ///
- /// An attendee's website URL, appears on their profile.
- ///
- [JsonProperty("websiteUrl")]
- public string? WebsiteUrl { get; set; }
-
- ///
- /// True indicates attendee will recieve push notifications for session-schedule changes, promotions and other event activities in the Attendee Hub app.
- ///
- [JsonProperty("allowPushNotifications")]
- public bool? AllowPushNotifications { get; set; }
-
- ///
- /// True indicaites attendee will recieve push notifications for appointments related activities in the Attendee Hub app.
- ///
- [JsonProperty("allowAppointmentPushNotifications")]
- public bool? AllowAppointmentPushNotifications { get; set; }
-
- ///
- /// True indicates this attendee record was created as part of a test scenario.
- ///
- [JsonProperty("testRecord")]
- public bool? TestRecord { get; set; }
-
- ///
- /// 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.
- ///
- [JsonProperty("attendeeLastModified")]
- public DateTime? AttendeeLastModified { get; set; }
-
- ///
- /// List of appointment groups associated with attendee. These control permissions and visibility in appointments associated with the event.
- ///
- [JsonProperty("appointmentGroups")]
- public List? AppointmentGroups { get; set; }
-
- ///
- /// The amount of credit associated with the attendee.
- ///
- [JsonProperty("credit")]
- public double? Credit { get; set; }
- }
-}
\ 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
new file mode 100644
index 00000000..62018961
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/Attendee1.cs
@@ -0,0 +1,314 @@
+//------------------------------------------------------------------------------
+//
+// 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 AttendeeContactInfoJson? 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 LookupJson? RegistrationPath { get; set; }
+
+ ///
+ /// A Named object.
+ ///
+ [JsonProperty("invitationList")]
+ public IdNameJson? InvitationList { get; set; }
+
+ ///
+ /// Web links for an attendee.
+ ///
+ [JsonProperty("webLinks")]
+ public AttendeeWebLinksJson? WebLinks { get; set; }
+
+ ///
+ /// Lookup response object.
+ ///
+ [JsonProperty("registrationType")]
+ public LookupJson? 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; }
+
+ ///
+ /// A planner created note for an attendee, used to track details about the attendee.
+ ///
+ [JsonProperty("note")]
+ public string? Note { get; set; }
+
+ ///
+ /// True indicates the attendee is a guest of another attendee.
+ ///
+ [JsonProperty("guest")]
+ public bool? Guest { get; set; }
+
+ ///
+ /// True indicates this attendee is a deleted guest.
+ ///
+ [JsonProperty("deletedGuest")]
+ public bool? DeletedGuest { get; set; }
+
+ ///
+ /// The ID of the primary attendee to whom this guest attendee is associated. Only applicable if this attendee is a guest.
+ ///
+ [JsonProperty("primaryId")]
+ public string? PrimaryId { get; set; }
+
+ ///
+ /// An attendee group.
+ ///
+ [JsonProperty("group")]
+ public AttendeeGroupJson? Group { get; set; }
+
+ ///
+ /// The reference to the related entity. Contains only the ID of the related entity.
+ ///
+ [JsonProperty("administrator")]
+ public UuidJson? Administrator { get; set; }
+
+ ///
+ /// 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.
+ ///
+ [Obsolete("This field will be removed in a future release, please migrate away from it as soon as possible")]
+ [JsonProperty("unsubscribed")]
+ public bool? Unsubscribed { get; set; }
+
+ ///
+ /// This is used to denote the status of an attendee.
+ ///
+ [JsonProperty("status")]
+ public AttendeeStatusJson? Status { get; set; }
+
+ ///
+ /// The ISO 8601 zoned date time when attendee was registered.
+ ///
+ [JsonProperty("registeredAt")]
+ public DateTime? RegisteredAt { get; set; }
+
+ ///
+ /// 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.
+ ///
+ [JsonProperty("registrationLastModified")]
+ public DateTime? RegistrationLastModified { get; set; }
+
+ ///
+ /// The ISO 8601 zoned date time when attendee registration was cancelled.
+ ///
+ [JsonProperty("registrationCancelledAt")]
+ public DateTime? RegistrationCancelledAt { get; set; }
+
+ ///
+ /// Method by which the attendee was invited to the event.
+ ///
+ [JsonProperty("invitedBy")]
+ public AttendeeInvitedByJson? InvitedBy { get; set; }
+
+ ///
+ /// 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.
+ ///
+ [JsonProperty("responseMethod")]
+ public AttendeeResponseMethodJson? ResponseMethod { get; set; }
+
+ ///
+ /// 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.
+ ///
+ [Obsolete("This field will be removed in a future release, please migrate away from it as soon as possible")]
+ [JsonProperty("questions")]
+ public List? Questions { get; set; }
+
+ ///
+ /// The list of answers to the registration questions.
+ ///
+ [JsonProperty("answers")]
+ public List? Answers { get; set; }
+
+ ///
+ /// Contains details related to the attendee's admission item.
+ ///
+ [JsonProperty("admissionItem")]
+ public AttendeeLookup? AdmissionItem { get; set; }
+
+ ///
+ /// Denotes the visibility of the attendee profile to other attendees. Private: Their profile is not visible. Public: Their profile is visible.
+ ///
+ [JsonProperty("visibility")]
+ public AttendeeVisibilityJson? Visibility { get; set; }
+
+ ///
+ /// The attendee's biographical writeup.
+ ///
+ [JsonProperty("bio")]
+ public string? Bio { get; set; }
+
+ ///
+ /// Notification setting in the Attendee Hub app or website. Note: This field is deprecated. Use `allowPushNotification` field instead.
+ ///
+ [Obsolete("This field will be removed in a future release, please migrate away from it as soon as possible")]
+ [JsonProperty("showPopupNotification")]
+ public bool? ShowPopupNotification { get; set; }
+
+ ///
+ /// An attendee's website URL, appears on their profile.
+ ///
+ [JsonProperty("websiteUrl")]
+ public string? WebsiteUrl { get; set; }
+
+ ///
+ /// True indicates attendee will recieve push notifications for session-schedule changes, promotions and other event activities in the Attendee Hub app.
+ ///
+ [JsonProperty("allowPushNotifications")]
+ public bool? AllowPushNotifications { get; set; }
+
+ ///
+ /// True indicaites attendee will recieve push notifications for appointments related activities in the Attendee Hub app.
+ ///
+ [JsonProperty("allowAppointmentPushNotifications")]
+ public bool? AllowAppointmentPushNotifications { get; set; }
+
+ ///
+ /// True indicates this attendee record was created as part of a test scenario.
+ ///
+ [JsonProperty("testRecord")]
+ public bool? TestRecord { get; set; }
+
+ ///
+ /// 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.
+ ///
+ [JsonProperty("attendeeLastModified")]
+ public DateTime? AttendeeLastModified { get; set; }
+
+ ///
+ /// List of appointment groups associated with attendee. These control permissions and visibility in appointments associated with the event.
+ ///
+ [JsonProperty("appointmentGroups")]
+ public List? AppointmentGroups { get; set; }
+
+ ///
+ /// The amount of credit associated with the attendee.
+ ///
+ [JsonProperty("credit")]
+ public double? Credit { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/Attendee12.cs b/packages/csharp/src/Cvent/SDK/Models/Components/Attendee12.cs
new file mode 100644
index 00000000..45daa4d9
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/Attendee12.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 JSON schema representing the Attendee object.
+ ///
+ public class Attendee12
+ {
+ ///
+ /// Attendee id.
+ ///
+ [JsonProperty("id")]
+ public string? Id { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/Attendee2.cs b/packages/csharp/src/Cvent/SDK/Models/Components/Attendee2.cs
new file mode 100644
index 00000000..a8121c93
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/Attendee2.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 associated Attendee.
+ ///
+ public class Attendee2
+ {
+ ///
+ /// Attendee id.
+ ///
+ [JsonProperty("id")]
+ public string Id { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AttendeeAudienceSegmentAssociationJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AttendeeAudienceSegmentAssociationJson.cs
new file mode 100644
index 00000000..750a1817
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/AttendeeAudienceSegmentAssociationJson.cs
@@ -0,0 +1,27 @@
+//------------------------------------------------------------------------------
+//
+// 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;
+
+ ///
+ /// Represents an audience segment associated with an attendee.
+ ///
+ public class AttendeeAudienceSegmentAssociationJson
+ {
+ ///
+ /// Segment details.
+ ///
+ [JsonProperty("segment")]
+ public SegmentJson Segment { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AttendeeAudienceSegmentAssociationsPaginatedResponse.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AttendeeAudienceSegmentAssociationsPaginatedResponse.cs
new file mode 100644
index 00000000..a1e73d2e
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/AttendeeAudienceSegmentAssociationsPaginatedResponse.cs
@@ -0,0 +1,34 @@
+//------------------------------------------------------------------------------
+//
+// 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.Collections.Generic;
+
+ ///
+ /// The paginated response from a request to get the list of audience segments associated with an attendee.
+ ///
+ public class AttendeeAudienceSegmentAssociationsPaginatedResponse
+ {
+ ///
+ /// Represents pagination information for a collection of resources.
+ ///
+ [JsonProperty("paging")]
+ public PagingJson Paging { get; set; } = default!;
+
+ ///
+ /// Collection of audience segment associations for the attendee.
+ ///
+ [JsonProperty("data")]
+ public List Data { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AttendeeContactInfoJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AttendeeContactInfoJson.cs
index 1e01f626..20cd0a88 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/AttendeeContactInfoJson.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/AttendeeContactInfoJson.cs
@@ -137,7 +137,7 @@ public class AttendeeContactInfoJson
/// Address details.
///
[JsonProperty("homeAddress")]
- public AddressJson4? HomeAddress { get; set; }
+ public AddressJson3? HomeAddress { get; set; }
///
/// Home phone number.
@@ -155,7 +155,7 @@ public class AttendeeContactInfoJson
/// Address details.
///
[JsonProperty("workAddress")]
- public AddressJson4? WorkAddress { get; set; }
+ public AddressJson3? WorkAddress { get; set; }
///
/// Work phone number.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AttendeeInsights.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AttendeeInsights.cs
index b179b899..1ba6354b 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/AttendeeInsights.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/AttendeeInsights.cs
@@ -65,7 +65,7 @@ public class AttendeeInsights
/// An event reference used in attendee insights to identify the event context for engagement data.
///
[JsonProperty("event")]
- public EventJson9 Event { get; set; } = default!;
+ public EventJson7 Event { get; set; } = default!;
///
/// True indicates this is the default engagement score in the event.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AttendeeJson3.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AttendeeJson3.cs
deleted file mode 100644
index 79614b49..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/AttendeeJson3.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 JSON Schema for an Attendee object.
- ///
- public class AttendeeJson3
- {
- ///
- /// Attendee id.
- ///
- [JsonProperty("id")]
- public string Id { get; set; } = default!;
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AttendeePaginatedResponse.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AttendeePaginatedResponse.cs
index e8470ce6..68057b80 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/AttendeePaginatedResponse.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/AttendeePaginatedResponse.cs
@@ -29,6 +29,6 @@ public class AttendeePaginatedResponse
/// Collection of attendees.
///
[JsonProperty("data")]
- public List Data { get; set; } = default!;
+ public List Data { get; set; } = default!;
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AudienceSegment.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AudienceSegment.cs
index 3bbfb342..ec60060c 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/AudienceSegment.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/AudienceSegment.cs
@@ -22,7 +22,7 @@ public class AudienceSegment
/// ID of the event.
///
[JsonProperty("event")]
- public EventJson3? Event { get; set; }
+ public EventJson2 Event { get; set; } = default!;
///
/// Name of the audience segment. Must be unique in the event where the segment exists.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AudienceSegmentCreate.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AudienceSegmentCreate.cs
index 1054c3de..2a4370b9 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/AudienceSegmentCreate.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/AudienceSegmentCreate.cs
@@ -22,7 +22,7 @@ public class AudienceSegmentCreate
/// ID of the event.
///
[JsonProperty("event")]
- public EventJson3? Event { get; set; }
+ public EventJson2 Event { get; set; } = default!;
///
/// Name of the audience segment. Must be unique in the event where the segment exists.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/AudienceSegmentResponse.cs b/packages/csharp/src/Cvent/SDK/Models/Components/AudienceSegmentResponse.cs
index f7a600be..1b45dc06 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/AudienceSegmentResponse.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/AudienceSegmentResponse.cs
@@ -47,7 +47,7 @@ public class AudienceSegmentResponse
/// ID of the event.
///
[JsonProperty("event")]
- public EventJson3? Event { get; set; }
+ public EventJson2 Event { get; set; } = default!;
///
/// Name of the audience segment. Must be unique in the event where the segment exists.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/Badge.cs b/packages/csharp/src/Cvent/SDK/Models/Components/Badge.cs
index a27962c4..b51a6c02 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/Badge.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/Badge.cs
@@ -53,24 +53,24 @@ public class Badge
/// Badge status.
///
[JsonProperty("status")]
- public BadgeStatusJson Status { get; set; } = default!;
+ public BadgeStatus Status { get; set; } = default!;
///
/// Badge type.
///
[JsonProperty("type")]
- public BadgeTypeJson Type { get; set; } = default!;
+ public BadgeType Type { get; set; } = default!;
///
- /// A JSON Schema for an Attendee object.
+ /// The associated Attendee.
///
[JsonProperty("attendee")]
- public AttendeeJson3 Attendee { get; set; } = default!;
+ public Attendee2 Attendee { get; set; } = default!;
///
/// The Associated Event.
///
[JsonProperty("event")]
- public EventJson6 Event { get; set; } = default!;
+ public Event1 Event { get; set; } = default!;
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/BadgeInput.cs b/packages/csharp/src/Cvent/SDK/Models/Components/BadgeInput.cs
index b16cd4fb..5ac81c58 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/BadgeInput.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/BadgeInput.cs
@@ -28,24 +28,24 @@ public class BadgeInput
/// Badge status.
///
[JsonProperty("status")]
- public BadgeStatusJson Status { get; set; } = default!;
+ public BadgeStatus Status { get; set; } = default!;
///
/// Badge type.
///
[JsonProperty("type")]
- public BadgeTypeJson Type { get; set; } = default!;
+ public BadgeType Type { get; set; } = default!;
///
- /// A JSON Schema for an Attendee object.
+ /// The associated Attendee.
///
[JsonProperty("attendee")]
- public AttendeeJson3 Attendee { get; set; } = default!;
+ public Attendee2 Attendee { get; set; } = default!;
///
/// The Associated Event.
///
[JsonProperty("event")]
- public EventJson6 Event { get; set; } = default!;
+ public Event1 Event { get; set; } = default!;
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/BadgePaginatedResponse.cs b/packages/csharp/src/Cvent/SDK/Models/Components/BadgePaginatedResponse.cs
index a90e0b91..26130436 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/BadgePaginatedResponse.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/BadgePaginatedResponse.cs
@@ -23,7 +23,7 @@ public class BadgePaginatedResponse
/// Represents pagination information for a collection of resources.
///
[JsonProperty("paging")]
- public PagingJson? Paging { get; set; }
+ public Paging? Paging { get; set; }
///
/// List of badges.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/BadgeStatus.cs b/packages/csharp/src/Cvent/SDK/Models/Components/BadgeStatus.cs
new file mode 100644
index 00000000..47e484c7
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/BadgeStatus.cs
@@ -0,0 +1,59 @@
+//------------------------------------------------------------------------------
+//
+// 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;
+
+ ///
+ /// Badge status.
+ ///
+ public enum BadgeStatus
+ {
+ [JsonProperty("Assigned")] Assigned,
+ [JsonProperty("Active")] Active,
+ [JsonProperty("Deactivated")] Deactivated,
+ [JsonProperty("Deleted")] Deleted,
+ }
+
+ public static class BadgeStatusExtension
+ {
+ public static string Value(this BadgeStatus value)
+ {
+ return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString()) [0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
+ }
+
+ public static BadgeStatus ToEnum(this string value)
+ {
+ foreach (var field in typeof(BadgeStatus).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 BadgeStatus)
+ {
+ return (BadgeStatus)enumVal;
+ }
+ }
+ }
+
+ throw new Exception($"Unknown value {value} for enum BadgeStatus");
+ }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/BadgeStatusJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/BadgeStatusJson.cs
deleted file mode 100644
index 1349bbfb..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/BadgeStatusJson.cs
+++ /dev/null
@@ -1,59 +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;
-
- ///
- /// Badge status.
- ///
- public enum BadgeStatusJson
- {
- [JsonProperty("Assigned")] Assigned,
- [JsonProperty("Active")] Active,
- [JsonProperty("Deactivated")] Deactivated,
- [JsonProperty("Deleted")] Deleted,
- }
-
- public static class BadgeStatusJsonExtension
- {
- public static string Value(this BadgeStatusJson value)
- {
- return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString()) [0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
- }
-
- public static BadgeStatusJson ToEnum(this string value)
- {
- foreach (var field in typeof(BadgeStatusJson).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 BadgeStatusJson)
- {
- return (BadgeStatusJson)enumVal;
- }
- }
- }
-
- throw new Exception($"Unknown value {value} for enum BadgeStatusJson");
- }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/BadgeType.cs b/packages/csharp/src/Cvent/SDK/Models/Components/BadgeType.cs
new file mode 100644
index 00000000..2dea37f0
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/BadgeType.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;
+
+ ///
+ /// Badge type.
+ ///
+ public enum BadgeType
+ {
+ [JsonProperty("Epc")] Epc,
+ [JsonProperty("Qr")] Qr,
+ }
+
+ public static class BadgeTypeExtension
+ {
+ public static string Value(this BadgeType value)
+ {
+ return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString()) [0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
+ }
+
+ public static BadgeType ToEnum(this string value)
+ {
+ foreach (var field in typeof(BadgeType).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 BadgeType)
+ {
+ return (BadgeType)enumVal;
+ }
+ }
+ }
+
+ throw new Exception($"Unknown value {value} for enum BadgeType");
+ }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/BadgeTypeJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/BadgeTypeJson.cs
deleted file mode 100644
index 114c366f..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/BadgeTypeJson.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;
-
- ///
- /// Badge type.
- ///
- public enum BadgeTypeJson
- {
- [JsonProperty("Epc")] Epc,
- [JsonProperty("Qr")] Qr,
- }
-
- public static class BadgeTypeJsonExtension
- {
- public static string Value(this BadgeTypeJson value)
- {
- return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString()) [0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
- }
-
- public static BadgeTypeJson ToEnum(this string value)
- {
- foreach (var field in typeof(BadgeTypeJson).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 BadgeTypeJson)
- {
- return (BadgeTypeJson)enumVal;
- }
- }
- }
-
- throw new Exception($"Unknown value {value} for enum BadgeTypeJson");
- }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/BaseChoice.cs b/packages/csharp/src/Cvent/SDK/Models/Components/BaseChoice.cs
new file mode 100644
index 00000000..ea5db4e3
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/BaseChoice.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;
+
+ ///
+ /// A JSON schema representing a base choice object.
+ ///
+ public class BaseChoice
+ {
+ ///
+ /// Unique identifier for the choice.
+ ///
+ [JsonProperty("id")]
+ public string? Id { get; set; }
+
+ ///
+ /// Text value of the field.
+ ///
+ [JsonProperty("text")]
+ public string? Text { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/BaseChoiceJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/BaseChoiceJson.cs
deleted file mode 100644
index 7e2ab086..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/BaseChoiceJson.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;
-
- ///
- /// A JSON schema representing a base choice object.
- ///
- public class BaseChoiceJson
- {
- ///
- /// Unique identifier for the choice.
- ///
- [JsonProperty("id")]
- public string? Id { get; set; }
-
- ///
- /// Text value of the field.
- ///
- [JsonProperty("text")]
- public string? Text { get; set; }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/BoothStaff.cs b/packages/csharp/src/Cvent/SDK/Models/Components/BoothStaff.cs
new file mode 100644
index 00000000..47d0413f
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/BoothStaff.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 JSON schema representing Booth Staff entity.
+ ///
+ public class BoothStaff
+ {
+ ///
+ /// Booth Staff id.
+ ///
+ [JsonProperty("id")]
+ public string? Id { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/BoothStaffListResponse.cs b/packages/csharp/src/Cvent/SDK/Models/Components/BoothStaffListResponse.cs
index 715f42e1..c3f28ffe 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/BoothStaffListResponse.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/BoothStaffListResponse.cs
@@ -23,12 +23,12 @@ public class BoothStaffListResponse
/// Represents pagination information for a collection of resources.
///
[JsonProperty("paging")]
- public PagingJson? Paging { get; set; }
+ public Paging? Paging { get; set; }
///
/// List of booth staff.
///
[JsonProperty("data")]
- public List? Data { get; set; }
+ public List? Data { get; set; }
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/BoothStaffRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Components/BoothStaffRequest.cs
index 540138ec..103ae514 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/BoothStaffRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/BoothStaffRequest.cs
@@ -19,21 +19,21 @@ namespace Cvent.SDK.Models.Components
public class BoothStaffRequest
{
///
- /// A JSON Schema for an Attendee object.
+ /// The associated Attendee.
///
[JsonProperty("attendee")]
- public AttendeeJson3 Attendee { get; set; } = default!;
+ public Attendee2 Attendee { get; set; } = default!;
///
/// The Associated Event.
///
[JsonProperty("event")]
- public EventJson6 Event { get; set; } = default!;
+ public Event1 Event { get; set; } = default!;
///
/// The Associated Exhibitor.
///
[JsonProperty("exhibitor")]
- public ExhibitorJson Exhibitor { get; set; } = default!;
+ public Models.Components.Exhibitor Exhibitor { get; set; } = default!;
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/BoothStaffResponse.cs b/packages/csharp/src/Cvent/SDK/Models/Components/BoothStaffResponse.cs
index 8851ecd8..050da79c 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/BoothStaffResponse.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/BoothStaffResponse.cs
@@ -44,22 +44,22 @@ public class BoothStaffResponse
public string? LastModifiedBy { get; set; }
///
- /// A JSON Schema for an Attendee object.
+ /// The associated Attendee.
///
[JsonProperty("attendee")]
- public AttendeeJson3 Attendee { get; set; } = default!;
+ public Attendee2 Attendee { get; set; } = default!;
///
/// The Associated Event.
///
[JsonProperty("event")]
- public EventJson6 Event { get; set; } = default!;
+ public Event1 Event { get; set; } = default!;
///
/// The Associated Exhibitor.
///
[JsonProperty("exhibitor")]
- public ExhibitorJson Exhibitor { get; set; } = default!;
+ public Models.Components.Exhibitor Exhibitor { get; set; } = default!;
///
/// ID of an exhibitor booth staff member.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/Brand.cs b/packages/csharp/src/Cvent/SDK/Models/Components/Brand.cs
index 9ca18d8b..d4286089 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/Brand.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/Brand.cs
@@ -59,7 +59,7 @@ public class Brand
/// A physical address.
///
[JsonProperty("address")]
- public AddressJson5? Address { get; set; }
+ public AddressJson4? Address { get; set; }
///
/// True indicates the brand is deleted.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/Capacity.cs b/packages/csharp/src/Cvent/SDK/Models/Components/Capacity.cs
new file mode 100644
index 00000000..19602d6a
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/Capacity.cs
@@ -0,0 +1,33 @@
+//------------------------------------------------------------------------------
+//
+// 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;
+
+ ///
+ /// Registration capacity object containing registration type and reserved capacity.
+ ///
+ public class Capacity
+ {
+ ///
+ /// Registration type information.
+ ///
+ [JsonProperty("registrationType")]
+ public CapacityRegistrationType RegistrationType { get; set; } = default!;
+
+ ///
+ /// Reserved capacity of the registration type for an exhibitor.
+ ///
+ [JsonProperty("reservedCapacity")]
+ public long ReservedCapacity { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/CapacityJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/CapacityJson.cs
index 7e2f5a1f..c1ca83c8 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/CapacityJson.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/CapacityJson.cs
@@ -9,25 +9,30 @@
#nullable enable
namespace Cvent.SDK.Models.Components
{
- using Cvent.SDK.Models.Components;
using Cvent.SDK.Utils;
using Newtonsoft.Json;
///
- /// Registration capacity object containing registration type and reserved capacity.
+ /// Represents capacity statistics of the registration type.
///
public class CapacityJson
{
///
- /// Registration type information.
+ /// The remaining capacity of an event item, such as registration type. A value of -1 denotes that remaining capacity is unlimited. A value less than 0 if total capacity is greater than 0 shows that the consumed capacity has surpassed the total capacity.
///
- [JsonProperty("registrationType")]
- public CapacityJsonRegistrationType RegistrationType { get; set; } = default!;
+ [JsonProperty("remaining")]
+ public long? Remaining { get; set; }
///
- /// Reserved capacity of the registration type for an exhibitor.
+ /// The consumed capacity of an event item, such as registration type.
///
- [JsonProperty("reservedCapacity")]
- public long ReservedCapacity { get; set; } = default!;
+ [JsonProperty("consumed")]
+ public long? Consumed { get; set; }
+
+ ///
+ /// The total capacity of an event item, such as registration type. A value of -1 denotes unlimited capacity.
+ ///
+ [JsonProperty("total")]
+ public long Total { get; set; } = default!;
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/CapacityJson1.cs b/packages/csharp/src/Cvent/SDK/Models/Components/CapacityJson1.cs
deleted file mode 100644
index f5b9eeec..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/CapacityJson1.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;
-
- ///
- /// Represents capacity statistics of the registration type.
- ///
- public class CapacityJson1
- {
- ///
- /// The remaining capacity of an event item, such as registration type. A value of -1 denotes that remaining capacity is unlimited. A value less than 0 if total capacity is greater than 0 shows that the consumed capacity has surpassed the total capacity.
- ///
- [JsonProperty("remaining")]
- public long? Remaining { get; set; }
-
- ///
- /// The consumed capacity of an event item, such as registration type.
- ///
- [JsonProperty("consumed")]
- public long? Consumed { get; set; }
-
- ///
- /// The total capacity of an event item, such as registration type. A value of -1 denotes unlimited capacity.
- ///
- [JsonProperty("total")]
- public long Total { get; set; } = default!;
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/CapacityJson1Input.cs b/packages/csharp/src/Cvent/SDK/Models/Components/CapacityJson1Input.cs
deleted file mode 100644
index c1cb2898..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/CapacityJson1Input.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;
-
- ///
- /// Represents capacity statistics of the registration type.
- ///
- public class CapacityJson1Input
- {
- ///
- /// The total capacity of an event item, such as registration type. A value of -1 denotes unlimited capacity.
- ///
- [JsonProperty("total")]
- public long Total { get; set; } = default!;
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/CapacityJsonInput.cs b/packages/csharp/src/Cvent/SDK/Models/Components/CapacityJsonInput.cs
new file mode 100644
index 00000000..7e44e64a
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/CapacityJsonInput.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;
+
+ ///
+ /// Represents capacity statistics of the registration type.
+ ///
+ public class CapacityJsonInput
+ {
+ ///
+ /// The total capacity of an event item, such as registration type. A value of -1 denotes unlimited capacity.
+ ///
+ [JsonProperty("total")]
+ public long Total { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/CapacityJsonRegistrationType.cs b/packages/csharp/src/Cvent/SDK/Models/Components/CapacityJsonRegistrationType.cs
deleted file mode 100644
index c073bea5..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/CapacityJsonRegistrationType.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;
-
- ///
- /// Registration type information.
- ///
- public class CapacityJsonRegistrationType
- {
- ///
- /// Registration type id.
- ///
- [JsonProperty("id")]
- public string Id { get; set; } = default!;
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/CapacityRegistrationType.cs b/packages/csharp/src/Cvent/SDK/Models/Components/CapacityRegistrationType.cs
new file mode 100644
index 00000000..1669fd0c
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/CapacityRegistrationType.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;
+
+ ///
+ /// Registration type information.
+ ///
+ public class CapacityRegistrationType
+ {
+ ///
+ /// Registration type id.
+ ///
+ [JsonProperty("id")]
+ public string Id { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/Chain.cs b/packages/csharp/src/Cvent/SDK/Models/Components/Chain.cs
index 32a95ecd..84fb06d3 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/Chain.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/Chain.cs
@@ -71,7 +71,7 @@ public class Chain
/// A physical address.
///
[JsonProperty("address")]
- public AddressJson5? Address { get; set; }
+ public AddressJson4? Address { get; set; }
///
/// True indicates the chain is deleted.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/Choice.cs b/packages/csharp/src/Cvent/SDK/Models/Components/Choice.cs
index 101fdc38..e683169f 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/Choice.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/Choice.cs
@@ -13,14 +13,26 @@ namespace Cvent.SDK.Models.Components
using Newtonsoft.Json;
///
- /// The choice that was selected.
+ /// A schema representing a choice object.
///
public class Choice
{
///
- /// The ID of the choice that was selected.
+ /// Unique identifier for the choice.
///
[JsonProperty("id")]
public string? Id { get; set; }
+
+ ///
+ /// Text value of the field.
+ ///
+ [JsonProperty("text")]
+ public string? Text { get; set; }
+
+ ///
+ /// Label of choice.
+ ///
+ [JsonProperty("label")]
+ public string? Label { get; set; }
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ChoiceJson2.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ChoiceJson2.cs
index b64cfa66..9946a953 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ChoiceJson2.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ChoiceJson2.cs
@@ -13,22 +13,28 @@ namespace Cvent.SDK.Models.Components
using Newtonsoft.Json;
///
- /// A schema representing a choice object.
+ /// A survey choice.
///
public class ChoiceJson2
{
///
- /// Unique identifier for the choice.
+ /// Text field ID.
///
[JsonProperty("id")]
public string? Id { get; set; }
///
- /// Text value of the field.
+ /// text Value of the Field.
///
[JsonProperty("text")]
public string? Text { get; set; }
+ ///
+ /// Reporting value of the Category, Its like a custom abbreviation.
+ ///
+ [JsonProperty("shortText")]
+ public string? ShortText { get; set; }
+
///
/// Label of choice.
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ChoiceJson3.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ChoiceJson3.cs
index 8e253627..5912a8d7 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ChoiceJson3.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ChoiceJson3.cs
@@ -13,32 +13,20 @@ namespace Cvent.SDK.Models.Components
using Newtonsoft.Json;
///
- /// A survey choice.
+ /// This is used to denote the choice of custom field.
///
public class ChoiceJson3
{
///
- /// Text field ID.
+ /// 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.
///
[JsonProperty("id")]
public string? Id { get; set; }
///
- /// text Value of the Field.
+ /// The text for the custom field choice.
///
[JsonProperty("text")]
- public string? Text { get; set; }
-
- ///
- /// Reporting value of the Category, Its like a custom abbreviation.
- ///
- [JsonProperty("shortText")]
- public string? ShortText { get; set; }
-
- ///
- /// Label of choice.
- ///
- [JsonProperty("label")]
- public string? Label { get; set; }
+ public string Text { get; set; } = default!;
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ChoiceJson3Input.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ChoiceJson3Input.cs
new file mode 100644
index 00000000..dc5edb06
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ChoiceJson3Input.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;
+
+ ///
+ /// This is used to denote the choice of custom field.
+ ///
+ public class ChoiceJson3Input
+ {
+ ///
+ /// The text for the custom field choice.
+ ///
+ [JsonProperty("text")]
+ public string Text { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ChoiceJson4.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ChoiceJson4.cs
deleted file mode 100644
index 70f933a6..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ChoiceJson4.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;
-
- ///
- /// This is used to denote the choice of custom field.
- ///
- public class ChoiceJson4
- {
- ///
- /// 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.
- ///
- [JsonProperty("id")]
- public string? Id { get; set; }
-
- ///
- /// The text for the custom field choice.
- ///
- [JsonProperty("text")]
- public string Text { get; set; } = default!;
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ChoiceJson4Input.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ChoiceJson4Input.cs
deleted file mode 100644
index 8202e481..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ChoiceJson4Input.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;
-
- ///
- /// This is used to denote the choice of custom field.
- ///
- public class ChoiceJson4Input
- {
- ///
- /// The text for the custom field choice.
- ///
- [JsonProperty("text")]
- public string Text { get; set; } = default!;
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/Choices.cs b/packages/csharp/src/Cvent/SDK/Models/Components/Choices.cs
index cdf47932..cc2791f4 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/Choices.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/Choices.cs
@@ -23,7 +23,7 @@ public class Choices
/// Choices of custom fields.
///
[JsonProperty("choices")]
- public List? ChoicesValue { get; set; }
+ public List? ChoicesValue { get; set; }
///
/// 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.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/Compliance.cs b/packages/csharp/src/Cvent/SDK/Models/Components/Compliance.cs
new file mode 100644
index 00000000..07a331ff
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/Compliance.cs
@@ -0,0 +1,46 @@
+//------------------------------------------------------------------------------
+//
+// 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;
+
+ ///
+ /// Privacy compliance fields for a contact.
+ ///
+ public class Compliance
+ {
+ ///
+ /// Date-time (in GMT) when privacy compliance details were created for the contact.
+ ///
+ [JsonProperty("creationTime")]
+ public DateTime? CreationTime { get; set; }
+
+ ///
+ /// Scope of privacy compliance.
+ ///
+ [JsonProperty("complianceScope")]
+ public ComplianceComplianceScope? ComplianceScope { get; set; }
+
+ ///
+ /// Action to take for a compliance request.
+ ///
+ [JsonProperty("action")]
+ public ComplianceAction? Action { get; set; }
+
+ ///
+ /// Denotes how the compliance request was created.
+ ///
+ [JsonProperty("createdBy")]
+ public ComplianceCreatedBy? CreatedBy { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ComplianceAction.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ComplianceAction.cs
new file mode 100644
index 00000000..33a1246b
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ComplianceAction.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 ComplianceAction
+ {
+ [JsonProperty("DO_NOT_SELL")] DoNotSell,
+ [JsonProperty("OK_TO_SELL")] OkToSell,
+ }
+
+ public static class ComplianceActionExtension
+ {
+ public static string Value(this ComplianceAction value)
+ {
+ return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString()) [0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
+ }
+
+ public static ComplianceAction ToEnum(this string value)
+ {
+ foreach (var field in typeof(ComplianceAction).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 ComplianceAction)
+ {
+ return (ComplianceAction)enumVal;
+ }
+ }
+ }
+
+ throw new Exception($"Unknown value {value} for enum ComplianceAction");
+ }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ComplianceComplianceScope.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ComplianceComplianceScope.cs
new file mode 100644
index 00000000..bffc9063
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ComplianceComplianceScope.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;
+ using System;
+
+ ///
+ /// Scope of privacy compliance.
+ ///
+ public enum ComplianceComplianceScope
+ {
+ [JsonProperty("CCPA")] Ccpa,
+ }
+
+ public static class ComplianceComplianceScopeExtension
+ {
+ public static string Value(this ComplianceComplianceScope value)
+ {
+ return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString()) [0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
+ }
+
+ public static ComplianceComplianceScope ToEnum(this string value)
+ {
+ foreach (var field in typeof(ComplianceComplianceScope).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 ComplianceComplianceScope)
+ {
+ return (ComplianceComplianceScope)enumVal;
+ }
+ }
+ }
+
+ throw new Exception($"Unknown value {value} for enum ComplianceComplianceScope");
+ }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ComplianceCreatedBy.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ComplianceCreatedBy.cs
new file mode 100644
index 00000000..1695784e
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ComplianceCreatedBy.cs
@@ -0,0 +1,65 @@
+//------------------------------------------------------------------------------
+//
+// 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;
+
+ ///
+ /// Denotes how the compliance request was created.
+ ///
+ public enum ComplianceCreatedBy
+ {
+ [JsonProperty("ATTENDEE")] Attendee,
+ [JsonProperty("PLANNER")] Planner,
+ [JsonProperty("IMPORT")] Import,
+ [JsonProperty("SOAP_API")] SoapApi,
+ [JsonProperty("REST_API")] RestApi,
+ [JsonProperty("MARKETO")] Marketo,
+ [JsonProperty("SALEFORCE")] Saleforce,
+ [JsonProperty("VIDEO_CENTER_MEMBER")] VideoCenterMember,
+ [JsonProperty("RESPONDENT")] Respondent,
+ [JsonProperty("NOT_SET")] NotSet,
+ }
+
+ public static class ComplianceCreatedByExtension
+ {
+ public static string Value(this ComplianceCreatedBy value)
+ {
+ return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString()) [0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
+ }
+
+ public static ComplianceCreatedBy ToEnum(this string value)
+ {
+ foreach (var field in typeof(ComplianceCreatedBy).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 ComplianceCreatedBy)
+ {
+ return (ComplianceCreatedBy)enumVal;
+ }
+ }
+ }
+
+ throw new Exception($"Unknown value {value} for enum ComplianceCreatedBy");
+ }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ComplianceJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ComplianceJson.cs
index 2a876390..0ce1ebab 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ComplianceJson.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ComplianceJson.cs
@@ -29,18 +29,18 @@ public class ComplianceJson
/// Scope of privacy compliance.
///
[JsonProperty("complianceScope")]
- public ComplianceScope? ComplianceScope { get; set; }
+ public ComplianceJsonComplianceScope? ComplianceScope { get; set; }
///
/// Action to take for a compliance request.
///
[JsonProperty("action")]
- public Action? Action { get; set; }
+ public ComplianceJsonAction? Action { get; set; }
///
/// Denotes how the compliance request was created.
///
[JsonProperty("createdBy")]
- public CreatedBy? CreatedBy { get; set; }
+ public ComplianceJsonCreatedBy? CreatedBy { get; set; }
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ComplianceJsonAction.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ComplianceJsonAction.cs
new file mode 100644
index 00000000..e319d82b
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ComplianceJsonAction.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 ComplianceJsonAction
+ {
+ [JsonProperty("DO_NOT_SELL")] DoNotSell,
+ [JsonProperty("OK_TO_SELL")] OkToSell,
+ }
+
+ public static class ComplianceJsonActionExtension
+ {
+ public static string Value(this ComplianceJsonAction value)
+ {
+ return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString()) [0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
+ }
+
+ public static ComplianceJsonAction ToEnum(this string value)
+ {
+ foreach (var field in typeof(ComplianceJsonAction).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 ComplianceJsonAction)
+ {
+ return (ComplianceJsonAction)enumVal;
+ }
+ }
+ }
+
+ throw new Exception($"Unknown value {value} for enum ComplianceJsonAction");
+ }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ComplianceJsonComplianceScope.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ComplianceJsonComplianceScope.cs
new file mode 100644
index 00000000..557972f7
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ComplianceJsonComplianceScope.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;
+ using System;
+
+ ///
+ /// Scope of privacy compliance.
+ ///
+ public enum ComplianceJsonComplianceScope
+ {
+ [JsonProperty("CCPA")] Ccpa,
+ }
+
+ public static class ComplianceJsonComplianceScopeExtension
+ {
+ public static string Value(this ComplianceJsonComplianceScope value)
+ {
+ return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString()) [0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
+ }
+
+ public static ComplianceJsonComplianceScope ToEnum(this string value)
+ {
+ foreach (var field in typeof(ComplianceJsonComplianceScope).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 ComplianceJsonComplianceScope)
+ {
+ return (ComplianceJsonComplianceScope)enumVal;
+ }
+ }
+ }
+
+ throw new Exception($"Unknown value {value} for enum ComplianceJsonComplianceScope");
+ }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ComplianceJsonCreatedBy.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ComplianceJsonCreatedBy.cs
new file mode 100644
index 00000000..890f2d71
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ComplianceJsonCreatedBy.cs
@@ -0,0 +1,65 @@
+//------------------------------------------------------------------------------
+//
+// 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;
+
+ ///
+ /// Denotes how the compliance request was created.
+ ///
+ public enum ComplianceJsonCreatedBy
+ {
+ [JsonProperty("ATTENDEE")] Attendee,
+ [JsonProperty("PLANNER")] Planner,
+ [JsonProperty("IMPORT")] Import,
+ [JsonProperty("SOAP_API")] SoapApi,
+ [JsonProperty("REST_API")] RestApi,
+ [JsonProperty("MARKETO")] Marketo,
+ [JsonProperty("SALEFORCE")] Saleforce,
+ [JsonProperty("VIDEO_CENTER_MEMBER")] VideoCenterMember,
+ [JsonProperty("RESPONDENT")] Respondent,
+ [JsonProperty("NOT_SET")] NotSet,
+ }
+
+ public static class ComplianceJsonCreatedByExtension
+ {
+ public static string Value(this ComplianceJsonCreatedBy value)
+ {
+ return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString()) [0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
+ }
+
+ public static ComplianceJsonCreatedBy ToEnum(this string value)
+ {
+ foreach (var field in typeof(ComplianceJsonCreatedBy).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 ComplianceJsonCreatedBy)
+ {
+ return (ComplianceJsonCreatedBy)enumVal;
+ }
+ }
+ }
+
+ throw new Exception($"Unknown value {value} for enum ComplianceJsonCreatedBy");
+ }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ComplianceScope.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ComplianceScope.cs
deleted file mode 100644
index 73f3bd44..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ComplianceScope.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;
- using System;
-
- ///
- /// Scope of privacy compliance.
- ///
- public enum ComplianceScope
- {
- [JsonProperty("CCPA")] Ccpa,
- }
-
- public static class ComplianceScopeExtension
- {
- public static string Value(this ComplianceScope value)
- {
- return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString()) [0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
- }
-
- public static ComplianceScope ToEnum(this string value)
- {
- foreach (var field in typeof(ComplianceScope).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 ComplianceScope)
- {
- return (ComplianceScope)enumVal;
- }
- }
- }
-
- throw new Exception($"Unknown value {value} for enum ComplianceScope");
- }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ContactLinks.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ContactLinks.cs
new file mode 100644
index 00000000..112e084e
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ContactLinks.cs
@@ -0,0 +1,45 @@
+//------------------------------------------------------------------------------
+//
+// 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;
+
+ ///
+ /// A JSON schema representing contact links, including Twitter, Facebook, and LinkedIn URLs.
+ ///
+ public class ContactLinks
+ {
+ ///
+ /// Represents a link to a related resource.
+ ///
+ [JsonProperty("twitterUrl")]
+ public Link? TwitterUrl { get; set; }
+
+ ///
+ /// Represents a link to a related resource.
+ ///
+ [JsonProperty("facebookUrl")]
+ public Link? FacebookUrl { get; set; }
+
+ ///
+ /// Represents a link to a related resource.
+ ///
+ [JsonProperty("linkedInUrl")]
+ public Link? LinkedInUrl { get; set; }
+
+ ///
+ /// Represents a link to a related resource.
+ ///
+ [JsonProperty("instagramUrl")]
+ public Link? InstagramUrl { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ContactLinksJson2.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ContactLinksJson2.cs
deleted file mode 100644
index b281ecc2..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ContactLinksJson2.cs
+++ /dev/null
@@ -1,45 +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;
-
- ///
- /// A JSON schema representing contact links, including Twitter, Facebook, and LinkedIn URLs.
- ///
- public class ContactLinksJson2
- {
- ///
- /// Represents a link to a related resource.
- ///
- [JsonProperty("twitterUrl")]
- public LinkJson? TwitterUrl { get; set; }
-
- ///
- /// Represents a link to a related resource.
- ///
- [JsonProperty("facebookUrl")]
- public LinkJson? FacebookUrl { get; set; }
-
- ///
- /// Represents a link to a related resource.
- ///
- [JsonProperty("linkedInUrl")]
- public LinkJson? LinkedInUrl { get; set; }
-
- ///
- /// Represents a link to a related resource.
- ///
- [JsonProperty("instagramUrl")]
- public LinkJson? InstagramUrl { get; set; }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/CreatedBy.cs b/packages/csharp/src/Cvent/SDK/Models/Components/CreatedBy.cs
deleted file mode 100644
index 6954d516..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/CreatedBy.cs
+++ /dev/null
@@ -1,65 +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;
-
- ///
- /// Denotes how the compliance request was created.
- ///
- public enum CreatedBy
- {
- [JsonProperty("ATTENDEE")] Attendee,
- [JsonProperty("PLANNER")] Planner,
- [JsonProperty("IMPORT")] Import,
- [JsonProperty("SOAP_API")] SoapApi,
- [JsonProperty("REST_API")] RestApi,
- [JsonProperty("MARKETO")] Marketo,
- [JsonProperty("SALEFORCE")] Saleforce,
- [JsonProperty("VIDEO_CENTER_MEMBER")] VideoCenterMember,
- [JsonProperty("RESPONDENT")] Respondent,
- [JsonProperty("NOT_SET")] NotSet,
- }
-
- public static class CreatedByExtension
- {
- public static string Value(this CreatedBy value)
- {
- return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString()) [0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
- }
-
- public static CreatedBy ToEnum(this string value)
- {
- foreach (var field in typeof(CreatedBy).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 CreatedBy)
- {
- return (CreatedBy)enumVal;
- }
- }
- }
-
- throw new Exception($"Unknown value {value} for enum CreatedBy");
- }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/Device.cs b/packages/csharp/src/Cvent/SDK/Models/Components/Device.cs
new file mode 100644
index 00000000..46a8d6b0
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/Device.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;
+
+ ///
+ /// A JSON object representing an electronic device used to capture leads.
+ ///
+ public class Device
+ {
+ ///
+ /// The id of device used to capture lead.
+ ///
+ [JsonProperty("id")]
+ public string? Id { get; set; }
+
+ ///
+ /// The name of device used to capture lead.
+ ///
+ [JsonProperty("name")]
+ public string? Name { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ELiteratureDocument.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ELiteratureDocument.cs
new file mode 100644
index 00000000..5a1fe00b
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ELiteratureDocument.cs
@@ -0,0 +1,39 @@
+//------------------------------------------------------------------------------
+//
+// 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;
+
+ ///
+ /// A JSON schema representing an E-literature Document.
+ ///
+ public class ELiteratureDocument
+ {
+ ///
+ /// Document identifier.
+ ///
+ [JsonProperty("id")]
+ public string Id { get; set; } = default!;
+
+ ///
+ /// Document display name.
+ ///
+ [JsonProperty("displayName")]
+ public string DisplayName { get; set; } = default!;
+
+ ///
+ /// Type of eliterature document.
+ ///
+ [JsonProperty("type")]
+ public ELiteratureDocumentType Type { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ELiteratureDocumentType.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ELiteratureDocumentType.cs
new file mode 100644
index 00000000..732c6571
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ELiteratureDocumentType.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;
+
+ ///
+ /// Type of eliterature document.
+ ///
+ public enum ELiteratureDocumentType
+ {
+ [JsonProperty("FILE")] File,
+ [JsonProperty("LINK")] Link,
+ }
+
+ public static class ELiteratureDocumentTypeExtension
+ {
+ public static string Value(this ELiteratureDocumentType value)
+ {
+ return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString()) [0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
+ }
+
+ public static ELiteratureDocumentType ToEnum(this string value)
+ {
+ foreach (var field in typeof(ELiteratureDocumentType).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 ELiteratureDocumentType)
+ {
+ return (ELiteratureDocumentType)enumVal;
+ }
+ }
+ }
+
+ throw new Exception($"Unknown value {value} for enum ELiteratureDocumentType");
+ }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/EliteratureDocumentJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/EliteratureDocumentJson.cs
deleted file mode 100644
index 6b7385a5..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/EliteratureDocumentJson.cs
+++ /dev/null
@@ -1,39 +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;
-
- ///
- /// A JSON schema representing an E-literature Document.
- ///
- public class EliteratureDocumentJson
- {
- ///
- /// Document identifier.
- ///
- [JsonProperty("id")]
- public string Id { get; set; } = default!;
-
- ///
- /// Document display name.
- ///
- [JsonProperty("displayName")]
- public string DisplayName { get; set; } = default!;
-
- ///
- /// Type of eliterature document.
- ///
- [JsonProperty("type")]
- public EliteratureDocumentJsonType Type { get; set; } = default!;
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/EliteratureDocumentJsonType.cs b/packages/csharp/src/Cvent/SDK/Models/Components/EliteratureDocumentJsonType.cs
deleted file mode 100644
index a004d9dd..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/EliteratureDocumentJsonType.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;
-
- ///
- /// Type of eliterature document.
- ///
- public enum EliteratureDocumentJsonType
- {
- [JsonProperty("FILE")] File,
- [JsonProperty("LINK")] Link,
- }
-
- public static class EliteratureDocumentJsonTypeExtension
- {
- public static string Value(this EliteratureDocumentJsonType value)
- {
- return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString()) [0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
- }
-
- public static EliteratureDocumentJsonType ToEnum(this string value)
- {
- foreach (var field in typeof(EliteratureDocumentJsonType).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 EliteratureDocumentJsonType)
- {
- return (EliteratureDocumentJsonType)enumVal;
- }
- }
- }
-
- throw new Exception($"Unknown value {value} for enum EliteratureDocumentJsonType");
- }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/EliteratureRequestPaginatedResponse.cs b/packages/csharp/src/Cvent/SDK/Models/Components/EliteratureRequestPaginatedResponse.cs
index 0b369f69..52f975e1 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/EliteratureRequestPaginatedResponse.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/EliteratureRequestPaginatedResponse.cs
@@ -23,12 +23,12 @@ public class EliteratureRequestPaginatedResponse
/// Represents pagination information for a collection of resources.
///
[JsonProperty("paging")]
- public PagingJson? Paging { get; set; }
+ public Paging? Paging { get; set; }
///
/// Collection of E-literature request data.
///
[JsonProperty("data")]
- public List? Data { get; set; }
+ public List? Data { get; set; }
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/Event1.cs b/packages/csharp/src/Cvent/SDK/Models/Components/Event1.cs
new file mode 100644
index 00000000..56fba98d
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/Event1.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 Associated Event.
+ ///
+ public class Event1
+ {
+ ///
+ /// Event id.
+ ///
+ [JsonProperty("id")]
+ public string Id { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/EventBannerLinkClicked.cs b/packages/csharp/src/Cvent/SDK/Models/Components/EventBannerLinkClicked.cs
index b8976e10..a95c46d2 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/EventBannerLinkClicked.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/EventBannerLinkClicked.cs
@@ -22,7 +22,7 @@ public class EventBannerLinkClicked
/// An exhibitor.
///
[JsonProperty("exhibitor")]
- public ExhibitorJson1? Exhibitor { get; set; }
+ public ExhibitorJson? Exhibitor { get; set; }
///
/// The platform used by the user.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/EventEmailsPaginatedResponse.cs b/packages/csharp/src/Cvent/SDK/Models/Components/EventEmailsPaginatedResponse.cs
index 36234654..ec57a079 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/EventEmailsPaginatedResponse.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/EventEmailsPaginatedResponse.cs
@@ -23,7 +23,7 @@ public class EventEmailsPaginatedResponse
/// Represents pagination information for a collection of resources.
///
[JsonProperty("paging")]
- public PagingJson25 Paging { get; set; } = default!;
+ public PagingJson23 Paging { get; set; } = default!;
///
/// Collection of emails for a specific event.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/EventFeatureJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/EventFeatureJson.cs
index e52e2458..f8bb0d4a 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/EventFeatureJson.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/EventFeatureJson.cs
@@ -38,7 +38,8 @@ public class EventFeatureJson
/// | `Exhibitors` | Centralizes exhibitor setup—profiles, tasks, content/categories—and booth staff and LeadCapture management, with exhibitor listings and engagement surfaced in Attendee Hub. |
/// | `Vendors` | Allows planners to source and manage event services directly from the container event. |
/// | `EventAds` | Allows planners to create, place, and track targeted ads across Attendee Hub and the event app. |
- /// | `EventCredits` | Allows planners to set rules and track credits attendees earn for sessions and the event. |
+ /// | `EventCredits` | Allows planners to set rules and track credits attendees earn for sessions and the event. Only one of `EventCredits` or `CreditsAndCertificates` can be active at a time. |
+ /// | `CreditsAndCertificates` | Allows planners to create credit rules, link them to events and sessions, and award credits to attendees. Also enables creating certificates, linking them to credit rules, and awarding them to attendees. Only one of `EventCredits` or `CreditsAndCertificates` can be active at a time. |
///
[JsonProperty("type")]
public FeatureTypeJson Type { get; set; } = default!;
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/EventFeaturesResponse.cs b/packages/csharp/src/Cvent/SDK/Models/Components/EventFeaturesResponse.cs
index c5e78202..d7e5f326 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/EventFeaturesResponse.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/EventFeaturesResponse.cs
@@ -38,7 +38,8 @@ public class EventFeaturesResponse
/// | `Exhibitors` | Centralizes exhibitor setup—profiles, tasks, content/categories—and booth staff and LeadCapture management, with exhibitor listings and engagement surfaced in Attendee Hub. |
/// | `Vendors` | Allows planners to source and manage event services directly from the container event. |
/// | `EventAds` | Allows planners to create, place, and track targeted ads across Attendee Hub and the event app. |
- /// | `EventCredits` | Allows planners to set rules and track credits attendees earn for sessions and the event. |
+ /// | `EventCredits` | Allows planners to set rules and track credits attendees earn for sessions and the event. Only one of `EventCredits` or `CreditsAndCertificates` can be active at a time. |
+ /// | `CreditsAndCertificates` | Allows planners to create credit rules, link them to events and sessions, and award credits to attendees. Also enables creating certificates, linking them to credit rules, and awarding them to attendees. Only one of `EventCredits` or `CreditsAndCertificates` can be active at a time. |
///
[JsonProperty("type")]
public FeatureTypeJson Type { get; set; } = default!;
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/EventJson11.cs b/packages/csharp/src/Cvent/SDK/Models/Components/EventJson11.cs
deleted file mode 100644
index 3f5b04cd..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/EventJson11.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;
-
- ///
- /// Details of the event.
- ///
- public class EventJson11
- {
- ///
- /// The unique ID of the event.
- ///
- [JsonProperty("id")]
- public string Id { get; set; } = default!;
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/EventJson2.cs b/packages/csharp/src/Cvent/SDK/Models/Components/EventJson2.cs
new file mode 100644
index 00000000..5a2866a6
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/EventJson2.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;
+
+ ///
+ /// ID of the event.
+ ///
+ public class EventJson2
+ {
+ ///
+ /// UUID of the event.
+ ///
+ [JsonProperty("id")]
+ public string Id { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/EventJson3.cs b/packages/csharp/src/Cvent/SDK/Models/Components/EventJson3.cs
index f3609bf2..af5ea5a0 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/EventJson3.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/EventJson3.cs
@@ -13,14 +13,14 @@ namespace Cvent.SDK.Models.Components
using Newtonsoft.Json;
///
- /// ID of the event.
+ /// Event ID Information.
///
public class EventJson3
{
///
- /// UUID of the event.
+ /// Identifier of a particular Event.
///
[JsonProperty("id")]
- public string Id { get; set; } = default!;
+ public string? Id { get; set; }
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/EventJson4.cs b/packages/csharp/src/Cvent/SDK/Models/Components/EventJson4.cs
deleted file mode 100644
index 36b89638..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/EventJson4.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;
-
- ///
- /// Event ID Information.
- ///
- public class EventJson4
- {
- ///
- /// Identifier of a particular Event.
- ///
- [JsonProperty("id")]
- public string? Id { get; set; }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/EventJson5.cs b/packages/csharp/src/Cvent/SDK/Models/Components/EventJson5.cs
new file mode 100644
index 00000000..c11d2ded
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/EventJson5.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;
+
+ ///
+ /// Detail object of an event which is associated to a survey.
+ ///
+ public class EventJson5
+ {
+ ///
+ /// Id of the associated event.
+ ///
+ [JsonProperty("id")]
+ public string? Id { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/EventJson6.cs b/packages/csharp/src/Cvent/SDK/Models/Components/EventJson6.cs
deleted file mode 100644
index e97e9795..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/EventJson6.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;
-
- ///
- /// The Associated Event.
- ///
- public class EventJson6
- {
- ///
- /// Event id.
- ///
- [JsonProperty("id")]
- public string Id { get; set; } = default!;
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/EventJson7.cs b/packages/csharp/src/Cvent/SDK/Models/Components/EventJson7.cs
index 6e1ab726..fbe0e669 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/EventJson7.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/EventJson7.cs
@@ -13,14 +13,14 @@ namespace Cvent.SDK.Models.Components
using Newtonsoft.Json;
///
- /// Detail object of an event which is associated to a survey.
+ /// An event reference used in attendee insights to identify the event context for engagement data.
///
public class EventJson7
{
///
- /// Id of the associated event.
+ /// A unique identifier (UUID) for the event where the engagement score applies.
///
[JsonProperty("id")]
- public string? Id { get; set; }
+ public string Id { get; set; } = default!;
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/EventJson9.cs b/packages/csharp/src/Cvent/SDK/Models/Components/EventJson9.cs
index cfbc527d..00f2658a 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/EventJson9.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/EventJson9.cs
@@ -13,12 +13,12 @@ namespace Cvent.SDK.Models.Components
using Newtonsoft.Json;
///
- /// An event reference used in attendee insights to identify the event context for engagement data.
+ /// Details of the event.
///
public class EventJson9
{
///
- /// A unique identifier (UUID) for the event where the engagement score applies.
+ /// The unique ID of the event.
///
[JsonProperty("id")]
public string Id { get; set; } = default!;
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/EventSurveyQuestionJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/EventSurveyQuestionJson.cs
index 339f26c0..af65693a 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/EventSurveyQuestionJson.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/EventSurveyQuestionJson.cs
@@ -84,7 +84,7 @@ public class EventSurveyQuestionJson
/// List of choices for the question.
///
[JsonProperty("choices")]
- public List? Choices { get; set; }
+ public List? Choices { get; set; }
///
/// List of categories for the question.
@@ -102,13 +102,13 @@ public class EventSurveyQuestionJson
/// Contains text of additional choice i.e N/A choice or otherAnswer choice.
///
[JsonProperty("notApplicableAnswer")]
- public AdditionalChoiceJson2? NotApplicableAnswer { get; set; }
+ public AdditionalChoiceJson1? NotApplicableAnswer { get; set; }
///
/// Contains text of additional choice i.e N/A choice or otherAnswer choice.
///
[JsonProperty("otherAnswer")]
- public AdditionalChoiceJson2? OtherAnswer { get; set; }
+ public AdditionalChoiceJson1? OtherAnswer { get; set; }
///
/// Text Value of Comments Input box placeholder.
@@ -126,7 +126,7 @@ public class EventSurveyQuestionJson
/// List of fields for form/matrix questions.
///
[JsonProperty("fields")]
- public List? Fields { get; set; }
+ public List? Fields { get; set; }
///
/// Max possible score.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/EventSurveyRespondent.cs b/packages/csharp/src/Cvent/SDK/Models/Components/EventSurveyRespondent.cs
index edf87ef6..e28c5d5a 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/EventSurveyRespondent.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/EventSurveyRespondent.cs
@@ -124,7 +124,7 @@ public class EventSurveyRespondent
/// Detail object of an event which is associated to a survey.
///
[JsonProperty("event")]
- public EventJson7? Event { get; set; }
+ public EventJson5? Event { get; set; }
///
/// Associated attendee.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/EventSurveyResponse.cs b/packages/csharp/src/Cvent/SDK/Models/Components/EventSurveyResponse.cs
index 18853902..a01b7a4b 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/EventSurveyResponse.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/EventSurveyResponse.cs
@@ -63,7 +63,7 @@ public class EventSurveyResponse
/// List of responded survey answers.
///
[JsonProperty("answers")]
- public List Answers { get; set; } = default!;
+ public List Answers { get; set; } = default!;
///
/// Answer score (This property is not supported).
@@ -76,7 +76,7 @@ public class EventSurveyResponse
/// Detail object of an event which is associated to a survey.
///
[JsonProperty("event")]
- public EventJson7? Event { get; set; }
+ public EventJson5? Event { get; set; }
///
/// The reference to the related entity. Contains only the ID of the related entity.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/EventSurveyResponseInput.cs b/packages/csharp/src/Cvent/SDK/Models/Components/EventSurveyResponseInput.cs
index 72ecfc7a..5f393b82 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/EventSurveyResponseInput.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/EventSurveyResponseInput.cs
@@ -29,7 +29,7 @@ public class EventSurveyResponseInput
/// List of responded survey answers.
///
[JsonProperty("answers")]
- public List Answers { get; set; } = default!;
+ public List Answers { get; set; } = default!;
///
/// The reference to the related entity. Contains only the ID of the related entity.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/Exhibitor.cs b/packages/csharp/src/Cvent/SDK/Models/Components/Exhibitor.cs
new file mode 100644
index 00000000..4ceb1639
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/Exhibitor.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 Associated Exhibitor.
+ ///
+ public class Exhibitor
+ {
+ ///
+ /// Exhibitor id.
+ ///
+ [JsonProperty("id")]
+ public string Id { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorAddressJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorAddressJson.cs
deleted file mode 100644
index 33302a4a..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorAddressJson.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 ExhibitorAddressJson
- {
- ///
- /// 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/ExhibitorAdminRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorAdminRequest.cs
index 3fda3385..63afd530 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorAdminRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorAdminRequest.cs
@@ -22,7 +22,7 @@ public class ExhibitorAdminRequest
/// The Associated Exhibitor.
///
[JsonProperty("exhibitor")]
- public ExhibitorJson Exhibitor { get; set; } = default!;
+ public Models.Components.Exhibitor Exhibitor { get; set; } = default!;
///
/// The first name of the exhibitor admin.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorAdminResponse.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorAdminResponse.cs
index 8568127c..5b8e696a 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorAdminResponse.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorAdminResponse.cs
@@ -48,7 +48,7 @@ public class ExhibitorAdminResponse
/// The Associated Exhibitor.
///
[JsonProperty("exhibitor")]
- public ExhibitorJson Exhibitor { get; set; } = default!;
+ public Models.Components.Exhibitor Exhibitor { get; set; } = default!;
///
/// The first name of the exhibitor admin.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorAdminsListResponse.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorAdminsListResponse.cs
index 292e0a9f..ac787b27 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorAdminsListResponse.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorAdminsListResponse.cs
@@ -23,12 +23,12 @@ public class ExhibitorAdminsListResponse
/// Represents pagination information for a collection of resources.
///
[JsonProperty("paging")]
- public PagingJson? Paging { get; set; }
+ public Paging? Paging { get; set; }
///
/// List of exhibitor admins.
///
[JsonProperty("data")]
- public List? Data { get; set; }
+ public List? Data { get; set; }
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorAnswerFormat.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorAnswerFormat.cs
new file mode 100644
index 00000000..9a0d16f2
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorAnswerFormat.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;
+ using System;
+
+ ///
+ /// 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'.
+ ///
+ public enum ExhibitorAnswerFormat
+ {
+ [JsonProperty("Date")] Date,
+ [JsonProperty("DateAndTime")] DateAndTime,
+ [JsonProperty("Dropdown")] Dropdown,
+ [JsonProperty("EmailAddress")] EmailAddress,
+ [JsonProperty("General")] General,
+ [JsonProperty("PhoneNumber")] PhoneNumber,
+ [JsonProperty("RadioButton")] RadioButton,
+ }
+
+ public static class ExhibitorAnswerFormatExtension
+ {
+ public static string Value(this ExhibitorAnswerFormat value)
+ {
+ return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString()) [0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
+ }
+
+ public static ExhibitorAnswerFormat ToEnum(this string value)
+ {
+ foreach (var field in typeof(ExhibitorAnswerFormat).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 ExhibitorAnswerFormat)
+ {
+ return (ExhibitorAnswerFormat)enumVal;
+ }
+ }
+ }
+
+ throw new Exception($"Unknown value {value} for enum ExhibitorAnswerFormat");
+ }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorAnswerFormatJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorAnswerFormatJson.cs
deleted file mode 100644
index bd3b8412..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorAnswerFormatJson.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;
- using System;
-
- ///
- /// 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'.
- ///
- public enum ExhibitorAnswerFormatJson
- {
- [JsonProperty("Date")] Date,
- [JsonProperty("DateAndTime")] DateAndTime,
- [JsonProperty("Dropdown")] Dropdown,
- [JsonProperty("EmailAddress")] EmailAddress,
- [JsonProperty("General")] General,
- [JsonProperty("PhoneNumber")] PhoneNumber,
- [JsonProperty("RadioButton")] RadioButton,
- }
-
- public static class ExhibitorAnswerFormatJsonExtension
- {
- public static string Value(this ExhibitorAnswerFormatJson value)
- {
- return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString()) [0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
- }
-
- public static ExhibitorAnswerFormatJson ToEnum(this string value)
- {
- foreach (var field in typeof(ExhibitorAnswerFormatJson).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 ExhibitorAnswerFormatJson)
- {
- return (ExhibitorAnswerFormatJson)enumVal;
- }
- }
- }
-
- throw new Exception($"Unknown value {value} for enum ExhibitorAnswerFormatJson");
- }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorAnswerLimits.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorAnswerLimits.cs
new file mode 100644
index 00000000..fbf8b9e8
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorAnswerLimits.cs
@@ -0,0 +1,44 @@
+//------------------------------------------------------------------------------
+//
+// 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;
+
+ ///
+ /// Defines the limits for answers to exhibitor questions.
+ ///
+ public class ExhibitorAnswerLimits
+ {
+ ///
+ /// Minimum length of the answer for OpenEndedTextCommentBox questions. It must be less than or equal to maxLength.
+ ///
+ [JsonProperty("minLength")]
+ public long? MinLength { get; set; } = 1;
+
+ ///
+ /// Maximum length of the answer for OpenEndedTextCommentBox questions.
+ ///
+ [JsonProperty("maxLength")]
+ public long? MaxLength { get; set; } = 2000;
+
+ ///
+ /// Minimum number of choices required for MultiChoice questions. It must be less than or equal to maxSelections.
+ ///
+ [JsonProperty("minSelections")]
+ public long? MinSelections { get; set; }
+
+ ///
+ /// Maximum number of choices allowed for MultiChoice questions. It cannot exceed the total number of available choices.
+ ///
+ [JsonProperty("maxSelections")]
+ public long? MaxSelections { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorAnswerLimitsJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorAnswerLimitsJson.cs
deleted file mode 100644
index 8ff3d6f7..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorAnswerLimitsJson.cs
+++ /dev/null
@@ -1,44 +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;
-
- ///
- /// Defines the limits for answers to exhibitor questions.
- ///
- public class ExhibitorAnswerLimitsJson
- {
- ///
- /// Minimum length of the answer for OpenEndedTextCommentBox questions. It must be less than or equal to maxLength.
- ///
- [JsonProperty("minLength")]
- public long? MinLength { get; set; } = 1;
-
- ///
- /// Maximum length of the answer for OpenEndedTextCommentBox questions.
- ///
- [JsonProperty("maxLength")]
- public long? MaxLength { get; set; } = 2000;
-
- ///
- /// Minimum number of choices required for MultiChoice questions. It must be less than or equal to maxSelections.
- ///
- [JsonProperty("minSelections")]
- public long? MinSelections { get; set; }
-
- ///
- /// Maximum number of choices allowed for MultiChoice questions. It cannot exceed the total number of available choices.
- ///
- [JsonProperty("maxSelections")]
- public long? MaxSelections { get; set; }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorAnswersRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorAnswersRequest.cs
index 47fa3710..c539a154 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorAnswersRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorAnswersRequest.cs
@@ -23,6 +23,6 @@ public class ExhibitorAnswersRequest
/// List of answers for all exhibitor questions.
///
[JsonProperty("data")]
- public List? Data { get; set; }
+ public List? Data { get; set; }
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorAnswersResponse.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorAnswersResponse.cs
index 235dada7..3020a534 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorAnswersResponse.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorAnswersResponse.cs
@@ -23,6 +23,6 @@ public class ExhibitorAnswersResponse
/// List of answers for all exhibitor questions.
///
[JsonProperty("data")]
- public List? Data { get; set; }
+ public List? Data { get; set; }
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorCategoriesPaginatedResponse.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorCategoriesPaginatedResponse.cs
index 09d7a0f3..09331c4c 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorCategoriesPaginatedResponse.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorCategoriesPaginatedResponse.cs
@@ -23,12 +23,12 @@ public class ExhibitorCategoriesPaginatedResponse
/// Represents pagination information for a collection of resources.
///
[JsonProperty("paging")]
- public PagingJson? Paging { get; set; }
+ public Paging? Paging { get; set; }
///
/// Paginated list of all exhibitor categories for an event.
///
[JsonProperty("data")]
- public List? Data { get; set; }
+ public List? Data { get; set; }
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorCategoryId.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorCategoryId.cs
new file mode 100644
index 00000000..c033ed9b
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorCategoryId.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;
+
+ ///
+ /// Schema for Exhibitor Category ID.
+ ///
+ public class ExhibitorCategoryId
+ {
+ ///
+ /// ID of exhibitor category.
+ ///
+ [JsonProperty("id")]
+ public string? Id { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorCategoryIdJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorCategoryIdJson.cs
deleted file mode 100644
index a18803ae..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorCategoryIdJson.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;
-
- ///
- /// Schema for Exhibitor Category ID.
- ///
- public class ExhibitorCategoryIdJson
- {
- ///
- /// ID of exhibitor category.
- ///
- [JsonProperty("id")]
- public string? Id { get; set; }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorCategoryIdListResponse.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorCategoryIdListResponse.cs
index f45c10e9..99770472 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorCategoryIdListResponse.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorCategoryIdListResponse.cs
@@ -23,12 +23,12 @@ public class ExhibitorCategoryIdListResponse
/// Represents pagination information for a collection of resources.
///
[JsonProperty("paging")]
- public PagingJson? Paging { get; set; }
+ public Paging? Paging { get; set; }
///
/// Paginated list of exhibitor category Ids for an exhibitor.
///
[JsonProperty("data")]
- public List? Data { get; set; }
+ public List? Data { get; set; }
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorCategoryRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorCategoryRequest.cs
index 2bbf068b..e424b5fc 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorCategoryRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorCategoryRequest.cs
@@ -22,7 +22,7 @@ public class ExhibitorCategoryRequest
/// The Associated Event.
///
[JsonProperty("event")]
- public EventJson6 Event { get; set; } = default!;
+ public Event1 Event { get; set; } = default!;
///
/// Name of the exhibitor category.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorCategoryResponse.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorCategoryResponse.cs
index 37e2bf81..a4b8d726 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorCategoryResponse.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorCategoryResponse.cs
@@ -47,7 +47,7 @@ public class ExhibitorCategoryResponse
/// The Associated Event.
///
[JsonProperty("event")]
- public EventJson6 Event { get; set; } = default!;
+ public Event1 Event { get; set; } = default!;
///
/// Name of the exhibitor category.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorDocumentOpened.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorDocumentOpened.cs
index 47a8e50d..f7755eb9 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorDocumentOpened.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorDocumentOpened.cs
@@ -22,7 +22,7 @@ public class ExhibitorDocumentOpened
/// An exhibitor.
///
[JsonProperty("exhibitor")]
- public ExhibitorJson1? Exhibitor { get; set; }
+ public ExhibitorJson? Exhibitor { get; set; }
///
/// The platform used by the user.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorId.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorId.cs
new file mode 100644
index 00000000..91f08000
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorId.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 JSON Schema representation of an exhibitor ID.
+ ///
+ public class ExhibitorId
+ {
+ ///
+ /// A string that has to be a format matching the industry standard uuid.
+ ///
+ [JsonProperty("id")]
+ public string? Id { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorIdJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorIdJson.cs
deleted file mode 100644
index f138ab43..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorIdJson.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 JSON Schema representation of an exhibitor ID.
- ///
- public class ExhibitorIdJson
- {
- ///
- /// A string that has to be a format matching the industry standard uuid.
- ///
- [JsonProperty("id")]
- public string? Id { get; set; }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorIdListResponse.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorIdListResponse.cs
index f5b61666..238a4b24 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorIdListResponse.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorIdListResponse.cs
@@ -23,12 +23,12 @@ public class ExhibitorIdListResponse
/// Represents pagination information for a collection of resources.
///
[JsonProperty("paging")]
- public PagingJson? Paging { get; set; }
+ public Paging? Paging { get; set; }
///
/// Paginated list of exhibitor Ids for an exhibitor category.
///
[JsonProperty("data")]
- public List? Data { get; set; }
+ public List? Data { get; set; }
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorJson.cs
index 6f2ed49a..e1075339 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorJson.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorJson.cs
@@ -13,14 +13,32 @@ namespace Cvent.SDK.Models.Components
using Newtonsoft.Json;
///
- /// The Associated Exhibitor.
+ /// An exhibitor.
///
public class ExhibitorJson
{
///
- /// Exhibitor id.
+ /// The unique identifier of the exhibitor.
///
[JsonProperty("id")]
- public string Id { get; set; } = default!;
+ public string? Id { get; set; }
+
+ ///
+ /// The Name of an exhibitor.
+ ///
+ [JsonProperty("name")]
+ public string? Name { get; set; }
+
+ ///
+ /// If the exhibitor is featured.
+ ///
+ [JsonProperty("featured")]
+ public bool? Featured { get; set; }
+
+ ///
+ /// If the exhibitor is an event sponsor.
+ ///
+ [JsonProperty("eventSponsor")]
+ public bool? EventSponsor { get; set; }
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorJson1.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorJson1.cs
deleted file mode 100644
index 17b3684e..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorJson1.cs
+++ /dev/null
@@ -1,44 +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 exhibitor.
- ///
- public class ExhibitorJson1
- {
- ///
- /// The unique identifier of the exhibitor.
- ///
- [JsonProperty("id")]
- public string? Id { get; set; }
-
- ///
- /// The Name of an exhibitor.
- ///
- [JsonProperty("name")]
- public string? Name { get; set; }
-
- ///
- /// If the exhibitor is featured.
- ///
- [JsonProperty("featured")]
- public bool? Featured { get; set; }
-
- ///
- /// If the exhibitor is an event sponsor.
- ///
- [JsonProperty("eventSponsor")]
- public bool? EventSponsor { get; set; }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorQuestionType.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorQuestionType.cs
new file mode 100644
index 00000000..8d396960
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorQuestionType.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;
+
+ ///
+ /// 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.
+ ///
+ public enum ExhibitorQuestionType
+ {
+ [JsonProperty("MultiChoice")] MultiChoice,
+ [JsonProperty("SingleChoice")] SingleChoice,
+ [JsonProperty("OpenEndedTextOneLine")] OpenEndedTextOneLine,
+ [JsonProperty("OpenEndedTextCommentBox")] OpenEndedTextCommentBox,
+ [JsonProperty("OpenEndedDateTime")] OpenEndedDateTime,
+ }
+
+ public static class ExhibitorQuestionTypeExtension
+ {
+ public static string Value(this ExhibitorQuestionType value)
+ {
+ return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString()) [0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
+ }
+
+ public static ExhibitorQuestionType ToEnum(this string value)
+ {
+ foreach (var field in typeof(ExhibitorQuestionType).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 ExhibitorQuestionType)
+ {
+ return (ExhibitorQuestionType)enumVal;
+ }
+ }
+ }
+
+ throw new Exception($"Unknown value {value} for enum ExhibitorQuestionType");
+ }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorQuestionTypeJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorQuestionTypeJson.cs
deleted file mode 100644
index 8ac5ded4..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorQuestionTypeJson.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;
-
- ///
- /// 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.
- ///
- public enum ExhibitorQuestionTypeJson
- {
- [JsonProperty("MultiChoice")] MultiChoice,
- [JsonProperty("SingleChoice")] SingleChoice,
- [JsonProperty("OpenEndedTextOneLine")] OpenEndedTextOneLine,
- [JsonProperty("OpenEndedTextCommentBox")] OpenEndedTextCommentBox,
- [JsonProperty("OpenEndedDateTime")] OpenEndedDateTime,
- }
-
- public static class ExhibitorQuestionTypeJsonExtension
- {
- public static string Value(this ExhibitorQuestionTypeJson value)
- {
- return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString()) [0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
- }
-
- public static ExhibitorQuestionTypeJson ToEnum(this string value)
- {
- foreach (var field in typeof(ExhibitorQuestionTypeJson).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 ExhibitorQuestionTypeJson)
- {
- return (ExhibitorQuestionTypeJson)enumVal;
- }
- }
- }
-
- throw new Exception($"Unknown value {value} for enum ExhibitorQuestionTypeJson");
- }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorRegistrationPackListResponse.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorRegistrationPackListResponse.cs
index 310e14ed..1ad37274 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorRegistrationPackListResponse.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorRegistrationPackListResponse.cs
@@ -23,6 +23,6 @@ public class ExhibitorRegistrationPackListResponse
/// The registration pack for an exhibitor. Contains at most one item.
///
[JsonProperty("data")]
- public List? Data { get; set; }
+ public List? Data { get; set; }
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorRequest.cs
index dfc50c07..69d6d32e 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorRequest.cs
@@ -22,7 +22,7 @@ public class ExhibitorRequest
/// The Associated Event.
///
[JsonProperty("event")]
- public EventJson6 Event { get; set; } = default!;
+ public Event1 Event { get; set; } = default!;
///
/// Name of the exhibitor. Cvent suggests limiting this to a maximum of 200 characters for optimal results.
@@ -58,7 +58,7 @@ public class ExhibitorRequest
/// An object representing an address with various properties.
///
[JsonProperty("address")]
- public ExhibitorAddressJson? Address { get; set; }
+ public Address11? Address { get; set; }
///
/// Email address of the exhibitor.
@@ -94,7 +94,7 @@ public class ExhibitorRequest
/// A JSON schema representing contact links, including Twitter, Facebook, and LinkedIn URLs.
///
[JsonProperty("contactLinks")]
- public ContactLinksJson2? ContactLinks { get; set; }
+ public ContactLinks? ContactLinks { get; set; }
///
/// A boolean indicating whether the exhibitor is deleted or not.
@@ -124,6 +124,6 @@ public class ExhibitorRequest
/// Associated sponsorship level for an exhibitor.
///
[JsonProperty("sponsorshipLevel")]
- public SponsorshipLevelJson? SponsorshipLevel { get; set; }
+ public SponsorshipLevel? SponsorshipLevel { get; set; }
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorResponse.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorResponse.cs
index fe4c1b48..67c43edf 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorResponse.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorResponse.cs
@@ -47,7 +47,7 @@ public class ExhibitorResponse
/// The Associated Event.
///
[JsonProperty("event")]
- public EventJson6 Event { get; set; } = default!;
+ public Event1 Event { get; set; } = default!;
///
/// Name of the exhibitor. Cvent suggests limiting this to a maximum of 200 characters for optimal results.
@@ -83,7 +83,7 @@ public class ExhibitorResponse
/// An object representing an address with various properties.
///
[JsonProperty("address")]
- public ExhibitorAddressJson? Address { get; set; }
+ public Address11? Address { get; set; }
///
/// Email address of the exhibitor.
@@ -119,7 +119,7 @@ public class ExhibitorResponse
/// A JSON schema representing contact links, including Twitter, Facebook, and LinkedIn URLs.
///
[JsonProperty("contactLinks")]
- public ContactLinksJson2? ContactLinks { get; set; }
+ public ContactLinks? ContactLinks { get; set; }
///
/// A boolean indicating whether the exhibitor is deleted or not.
@@ -149,7 +149,7 @@ public class ExhibitorResponse
/// Associated sponsorship level for an exhibitor.
///
[JsonProperty("sponsorshipLevel")]
- public SponsorshipLevelJson? SponsorshipLevel { get; set; }
+ public SponsorshipLevel? SponsorshipLevel { get; set; }
///
/// ID of an exhibitor.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorSocialLinkOpened.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorSocialLinkOpened.cs
index 29bf5595..d788d627 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorSocialLinkOpened.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorSocialLinkOpened.cs
@@ -22,7 +22,7 @@ public class ExhibitorSocialLinkOpened
/// An exhibitor.
///
[JsonProperty("exhibitor")]
- public ExhibitorJson1? Exhibitor { get; set; }
+ public ExhibitorJson? Exhibitor { get; set; }
///
/// The platform used by the user.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorViewed.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorViewed.cs
index ac02a94e..07193363 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorViewed.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorViewed.cs
@@ -22,7 +22,7 @@ public class ExhibitorViewed
/// An exhibitor.
///
[JsonProperty("exhibitor")]
- public ExhibitorJson1? Exhibitor { get; set; }
+ public ExhibitorJson? Exhibitor { get; set; }
///
/// The platform used by the user.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorVirtualBoothJoined.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorVirtualBoothJoined.cs
index 35b700e4..3f79a2e6 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorVirtualBoothJoined.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorVirtualBoothJoined.cs
@@ -22,7 +22,7 @@ public class ExhibitorVirtualBoothJoined
/// An exhibitor.
///
[JsonProperty("exhibitor")]
- public ExhibitorJson1? Exhibitor { get; set; }
+ public ExhibitorJson? Exhibitor { get; set; }
///
/// The platform used by the user.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorWeblinkOpened.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorWeblinkOpened.cs
index 8734918a..d195be30 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorWeblinkOpened.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorWeblinkOpened.cs
@@ -22,7 +22,7 @@ public class ExhibitorWeblinkOpened
/// An exhibitor.
///
[JsonProperty("exhibitor")]
- public ExhibitorJson1? Exhibitor { get; set; }
+ public ExhibitorJson? Exhibitor { get; set; }
///
/// The platform used by the user.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorsPaginatedResponse.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorsPaginatedResponse.cs
index 47350102..7e8b427b 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorsPaginatedResponse.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ExhibitorsPaginatedResponse.cs
@@ -23,12 +23,12 @@ public class ExhibitorsPaginatedResponse
/// Represents pagination information for a collection of resources.
///
[JsonProperty("paging")]
- public PagingJson? Paging { get; set; }
+ public Paging? Paging { get; set; }
///
/// Paginated list of exhibitors for an event.
///
[JsonProperty("data")]
- public List? Data { get; set; }
+ public List? Data { get; set; }
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingAudienceSegment.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExistingAudienceSegment.cs
index d419f465..841147a6 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingAudienceSegment.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ExistingAudienceSegment.cs
@@ -47,7 +47,7 @@ public class ExistingAudienceSegment
/// ID of the event.
///
[JsonProperty("event")]
- public EventJson3? Event { get; set; }
+ public EventJson2 Event { get; set; } = default!;
///
/// Name of the audience segment. Must be unique in the event where the segment exists.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingBoothStaffJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExistingBoothStaffJson.cs
deleted file mode 100644
index 80a25011..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingBoothStaffJson.cs
+++ /dev/null
@@ -1,70 +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;
-
- ///
- /// Booth staff with an associated ID.
- ///
- public class ExistingBoothStaffJson
- {
- ///
- /// 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; }
-
- ///
- /// A JSON Schema for an Attendee object.
- ///
- [JsonProperty("attendee")]
- public AttendeeJson3 Attendee { get; set; } = default!;
-
- ///
- /// The Associated Event.
- ///
- [JsonProperty("event")]
- public EventJson6 Event { get; set; } = default!;
-
- ///
- /// The Associated Exhibitor.
- ///
- [JsonProperty("exhibitor")]
- public ExhibitorJson Exhibitor { get; set; } = default!;
-
- ///
- /// ID of an exhibitor booth staff member.
- ///
- [JsonProperty("id")]
- public string? Id { get; set; }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingCapacity.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExistingCapacity.cs
new file mode 100644
index 00000000..ad3f0979
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ExistingCapacity.cs
@@ -0,0 +1,39 @@
+//------------------------------------------------------------------------------
+//
+// 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;
+
+ ///
+ /// Represents the existing capacity of the registration type for an exhibitor.
+ ///
+ public class ExistingCapacity
+ {
+ ///
+ /// Registration type information.
+ ///
+ [JsonProperty("registrationType")]
+ public ExistingCapacityRegistrationType RegistrationType { get; set; } = default!;
+
+ ///
+ /// Reserved capacity of the registration type for an exhibitor.
+ ///
+ [JsonProperty("reservedCapacity")]
+ public long ReservedCapacity { get; set; } = default!;
+
+ ///
+ /// Available capacity of the registration type for an exhibitor.
+ ///
+ [JsonProperty("availableCapacity")]
+ public long AvailableCapacity { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingCapacityJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExistingCapacityJson.cs
deleted file mode 100644
index f52f28bd..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingCapacityJson.cs
+++ /dev/null
@@ -1,39 +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;
-
- ///
- /// Represents the existing capacity of the registration type for an exhibitor.
- ///
- public class ExistingCapacityJson
- {
- ///
- /// Registration type information.
- ///
- [JsonProperty("registrationType")]
- public ExistingCapacityJsonRegistrationType RegistrationType { get; set; } = default!;
-
- ///
- /// Reserved capacity of the registration type for an exhibitor.
- ///
- [JsonProperty("reservedCapacity")]
- public long ReservedCapacity { get; set; } = default!;
-
- ///
- /// Available capacity of the registration type for an exhibitor.
- ///
- [JsonProperty("availableCapacity")]
- public long AvailableCapacity { get; set; } = default!;
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingCapacityJsonRegistrationType.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExistingCapacityJsonRegistrationType.cs
deleted file mode 100644
index 2c854d67..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingCapacityJsonRegistrationType.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;
-
- ///
- /// Registration type information.
- ///
- public class ExistingCapacityJsonRegistrationType
- {
- ///
- /// Registration type id.
- ///
- [JsonProperty("id")]
- public string Id { get; set; } = default!;
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingCapacityRegistrationType.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExistingCapacityRegistrationType.cs
new file mode 100644
index 00000000..f7cde14a
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ExistingCapacityRegistrationType.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;
+
+ ///
+ /// Registration type information.
+ ///
+ public class ExistingCapacityRegistrationType
+ {
+ ///
+ /// Registration type id.
+ ///
+ [JsonProperty("id")]
+ public string Id { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingELiteratureRequestDataForLead.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExistingELiteratureRequestDataForLead.cs
new file mode 100644
index 00000000..a15f899f
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ExistingELiteratureRequestDataForLead.cs
@@ -0,0 +1,77 @@
+//------------------------------------------------------------------------------
+//
+// 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;
+
+ ///
+ /// A JSON Schema for an existing e-literature request data for a lead.
+ ///
+ public class ExistingELiteratureRequestDataForLead
+ {
+ ///
+ /// 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 Associated Event.
+ ///
+ [JsonProperty("event")]
+ public Event1 Event { get; set; } = default!;
+
+ ///
+ /// The Associated Exhibitor.
+ ///
+ [JsonProperty("exhibitor")]
+ public Models.Components.Exhibitor Exhibitor { get; set; } = default!;
+
+ ///
+ /// JSON schema for the Lead object.
+ ///
+ [JsonProperty("lead")]
+ public Lead2 Lead { get; set; } = default!;
+
+ ///
+ /// Collection of E-literature documents sent to lead.
+ ///
+ [JsonProperty("documents")]
+ public List Documents { get; set; } = default!;
+
+ ///
+ /// Request identifier.
+ ///
+ [JsonProperty("id")]
+ public string? Id { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingEliteratureRequestDataJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExistingEliteratureRequestDataJson.cs
deleted file mode 100644
index 14504a0b..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingEliteratureRequestDataJson.cs
+++ /dev/null
@@ -1,77 +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;
-
- ///
- /// A JSON Schema for an existing e-literature request data for a lead.
- ///
- public class ExistingEliteratureRequestDataJson
- {
- ///
- /// 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 Associated Event.
- ///
- [JsonProperty("event")]
- public EventJson6 Event { get; set; } = default!;
-
- ///
- /// The Associated Exhibitor.
- ///
- [JsonProperty("exhibitor")]
- public ExhibitorJson Exhibitor { get; set; } = default!;
-
- ///
- /// JSON schema for the Lead object.
- ///
- [JsonProperty("lead")]
- public LeadJson Lead { get; set; } = default!;
-
- ///
- /// Collection of E-literature documents sent to lead.
- ///
- [JsonProperty("documents")]
- public List Documents { get; set; } = default!;
-
- ///
- /// Request identifier.
- ///
- [JsonProperty("id")]
- public string? Id { get; set; }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingExhibitorAdminJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExistingExhibitorAdminJson.cs
deleted file mode 100644
index 1d369e91..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingExhibitorAdminJson.cs
+++ /dev/null
@@ -1,77 +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;
-
- ///
- /// Existing Exhibitor Admin with an id property.
- ///
- public class ExistingExhibitorAdminJson
- {
- ///
- /// 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.This filed is deprecated.
- ///
- [Obsolete("This field will be removed in a future release, please migrate away from it as soon as possible")]
- [JsonProperty("lastModifiedBy")]
- public string? LastModifiedBy { get; set; }
-
- ///
- /// The Associated Exhibitor.
- ///
- [JsonProperty("exhibitor")]
- public ExhibitorJson Exhibitor { get; set; } = default!;
-
- ///
- /// The first name of the exhibitor admin.
- ///
- [JsonProperty("firstName")]
- public string FirstName { get; set; } = default!;
-
- ///
- /// The last name of the exhibitor admin.
- ///
- [JsonProperty("lastName")]
- public string LastName { get; set; } = default!;
-
- ///
- /// The email address of the exhibitor admin.
- ///
- [JsonProperty("email")]
- public string Email { get; set; } = default!;
-
- ///
- /// Exhibitor Admin id.
- ///
- [JsonProperty("id")]
- public string? Id { get; set; }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingExhibitorAnswer.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExistingExhibitorAnswer.cs
new file mode 100644
index 00000000..62d8f19e
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ExistingExhibitorAnswer.cs
@@ -0,0 +1,77 @@
+//------------------------------------------------------------------------------
+//
+// 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;
+
+ ///
+ /// Existing Exhibitor Answer schema.
+ ///
+ public class ExistingExhibitorAnswer
+ {
+ ///
+ /// 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 reference to the related entity. Contains only the ID of the related entity.
+ ///
+ [JsonProperty("question")]
+ public Uuid1 Question { get; set; } = default!;
+
+ ///
+ /// The Associated Event.
+ ///
+ [JsonProperty("event")]
+ public Event1 Event { get; set; } = default!;
+
+ ///
+ /// The Associated Exhibitor.
+ ///
+ [JsonProperty("exhibitor")]
+ public Models.Components.Exhibitor Exhibitor { get; set; } = default!;
+
+ ///
+ /// List of answers.
+ ///
+ [JsonProperty("answers")]
+ public List Answers { get; set; } = default!;
+
+ ///
+ /// Exhibitor Answer id.
+ ///
+ [JsonProperty("id")]
+ public string Id { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingExhibitorAnswerInput.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExistingExhibitorAnswerInput.cs
new file mode 100644
index 00000000..fbec7742
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ExistingExhibitorAnswerInput.cs
@@ -0,0 +1,46 @@
+//------------------------------------------------------------------------------
+//
+// 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.Collections.Generic;
+
+ ///
+ /// Existing Exhibitor Answer schema.
+ ///
+ public class ExistingExhibitorAnswerInput
+ {
+ ///
+ /// The reference to the related entity. Contains only the ID of the related entity.
+ ///
+ [JsonProperty("question")]
+ public Uuid1 Question { get; set; } = default!;
+
+ ///
+ /// The Associated Event.
+ ///
+ [JsonProperty("event")]
+ public Event1 Event { get; set; } = default!;
+
+ ///
+ /// The Associated Exhibitor.
+ ///
+ [JsonProperty("exhibitor")]
+ public Models.Components.Exhibitor Exhibitor { get; set; } = default!;
+
+ ///
+ /// List of answers.
+ ///
+ [JsonProperty("answers")]
+ public List Answers { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingExhibitorAnswerJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExistingExhibitorAnswerJson.cs
deleted file mode 100644
index f5717cd1..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingExhibitorAnswerJson.cs
+++ /dev/null
@@ -1,77 +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;
-
- ///
- /// Existing Exhibitor Answer schema.
- ///
- public class ExistingExhibitorAnswerJson
- {
- ///
- /// 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 reference to the related entity. Contains only the ID of the related entity.
- ///
- [JsonProperty("question")]
- public UuidJson Question { get; set; } = default!;
-
- ///
- /// The Associated Event.
- ///
- [JsonProperty("event")]
- public EventJson6 Event { get; set; } = default!;
-
- ///
- /// The Associated Exhibitor.
- ///
- [JsonProperty("exhibitor")]
- public ExhibitorJson Exhibitor { get; set; } = default!;
-
- ///
- /// List of answers.
- ///
- [JsonProperty("answers")]
- public List Answers { get; set; } = default!;
-
- ///
- /// Exhibitor Answer id.
- ///
- [JsonProperty("id")]
- public string Id { get; set; } = default!;
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingExhibitorAnswerJsonInput.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExistingExhibitorAnswerJsonInput.cs
deleted file mode 100644
index 1b06a9b2..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingExhibitorAnswerJsonInput.cs
+++ /dev/null
@@ -1,46 +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.Collections.Generic;
-
- ///
- /// Existing Exhibitor Answer schema.
- ///
- public class ExistingExhibitorAnswerJsonInput
- {
- ///
- /// The reference to the related entity. Contains only the ID of the related entity.
- ///
- [JsonProperty("question")]
- public UuidJson Question { get; set; } = default!;
-
- ///
- /// The Associated Event.
- ///
- [JsonProperty("event")]
- public EventJson6 Event { get; set; } = default!;
-
- ///
- /// The Associated Exhibitor.
- ///
- [JsonProperty("exhibitor")]
- public ExhibitorJson Exhibitor { get; set; } = default!;
-
- ///
- /// List of answers.
- ///
- [JsonProperty("answers")]
- public List Answers { get; set; } = default!;
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingExhibitorCategoryJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExistingExhibitorCategoryJson.cs
deleted file mode 100644
index 390336a4..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingExhibitorCategoryJson.cs
+++ /dev/null
@@ -1,94 +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;
-
- ///
- /// A description of the Existing Exhibitor Category JSON schema.
- ///
- public class ExistingExhibitorCategoryJson
- {
- ///
- /// 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 Associated Event.
- ///
- [JsonProperty("event")]
- public EventJson6 Event { get; set; } = default!;
-
- ///
- /// Name of the exhibitor category.
- ///
- [JsonProperty("name")]
- public string Name { get; set; } = default!;
-
- ///
- /// Exhibitor Category description.
- ///
- [JsonProperty("description")]
- public string? Description { get; set; }
-
- ///
- /// order for exhibitor category.
- ///
- [JsonProperty("order")]
- public long Order { get; set; } = default!;
-
- ///
- /// Type of exhibitor category.
- ///
- [JsonProperty("type")]
- public ExistingExhibitorCategoryJsonType Type { get; set; } = default!;
-
- ///
- /// ID of exhibitor category.
- ///
- [JsonProperty("id")]
- public string? Id { get; set; }
-
- ///
- /// File ID for exhibitor category banner.
- ///
- [JsonProperty("bannerId")]
- public string? BannerId { get; set; }
-
- ///
- /// URL for exhibitor category banner.
- ///
- [JsonProperty("bannerUrl")]
- public string? BannerUrl { get; set; }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingExhibitorCategoryJsonType.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExistingExhibitorCategoryJsonType.cs
deleted file mode 100644
index 342d24a5..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingExhibitorCategoryJsonType.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;
-
- ///
- /// Type of exhibitor category.
- ///
- public enum ExistingExhibitorCategoryJsonType
- {
- [JsonProperty("BANNER")] Banner,
- [JsonProperty("LOGO")] Logo,
- }
-
- public static class ExistingExhibitorCategoryJsonTypeExtension
- {
- public static string Value(this ExistingExhibitorCategoryJsonType value)
- {
- return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString()) [0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
- }
-
- public static ExistingExhibitorCategoryJsonType ToEnum(this string value)
- {
- foreach (var field in typeof(ExistingExhibitorCategoryJsonType).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 ExistingExhibitorCategoryJsonType)
- {
- return (ExistingExhibitorCategoryJsonType)enumVal;
- }
- }
- }
-
- throw new Exception($"Unknown value {value} for enum ExistingExhibitorCategoryJsonType");
- }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingExhibitorJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExistingExhibitorJson.cs
deleted file mode 100644
index 6261b327..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingExhibitorJson.cs
+++ /dev/null
@@ -1,184 +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;
-
- ///
- /// JSON schema for the exhibitor object.
- ///
- public class ExistingExhibitorJson
- {
- ///
- /// 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 Associated Event.
- ///
- [JsonProperty("event")]
- public EventJson6 Event { get; set; } = default!;
-
- ///
- /// Name of the exhibitor. Cvent suggests limiting this to a maximum of 200 characters for optimal results.
- ///
- [JsonProperty("name")]
- public string Name { get; set; } = default!;
-
- ///
- /// Exhibitor description.
- ///
- [JsonProperty("description")]
- public string? Description { get; set; }
-
- ///
- /// Code used to identify the exhibitor.
- ///
- [JsonProperty("code")]
- public string? Code { get; set; }
-
- ///
- /// Code used for marketing groupings.
- ///
- [JsonProperty("sourceId")]
- public string? SourceId { get; set; }
-
- ///
- /// Exhibitor location.
- ///
- [JsonProperty("location")]
- public string? Location { get; set; }
-
- ///
- /// An object representing an address with various properties.
- ///
- [JsonProperty("address")]
- public ExhibitorAddressJson? Address { get; set; }
-
- ///
- /// Email address of the exhibitor.
- ///
- [JsonProperty("email")]
- public string? Email { get; set; }
-
- ///
- /// Mobile Phone of the exhibitor.
- ///
- [JsonProperty("mobilePhone")]
- public string? MobilePhone { get; set; }
-
- ///
- /// Work Phone of the exhibitor.
- ///
- [JsonProperty("workPhone")]
- public string? WorkPhone { get; set; }
-
- ///
- /// Any other phone of the exhibitor.
- ///
- [JsonProperty("otherPhone")]
- public string? OtherPhone { get; set; }
-
- ///
- /// Exhibitor's website URL.
- ///
- [JsonProperty("website")]
- public string? Website { get; set; }
-
- ///
- /// A JSON schema representing contact links, including Twitter, Facebook, and LinkedIn URLs.
- ///
- [JsonProperty("contactLinks")]
- public ContactLinksJson2? ContactLinks { get; set; }
-
- ///
- /// A boolean indicating whether the exhibitor is deleted or not.
- ///
- [JsonProperty("deleted")]
- public bool? Deleted { get; set; } = false;
-
- ///
- /// True indicates that the exhibitor is hidden.
- ///
- [JsonProperty("hidden")]
- public bool? Hidden { get; set; } = false;
-
- ///
- /// A boolean indicating whether the exhibitor is an event sponsor or not.
- ///
- [JsonProperty("eventSponsor")]
- public bool? EventSponsor { get; set; } = false;
-
- ///
- /// A boolean indicating whether the exhibitor is designated as featured or not.
- ///
- [JsonProperty("featured")]
- public bool? Featured { get; set; } = false;
-
- ///
- /// Associated sponsorship level for an exhibitor.
- ///
- [JsonProperty("sponsorshipLevel")]
- public SponsorshipLevelJson? SponsorshipLevel { get; set; }
-
- ///
- /// ID of an exhibitor.
- ///
- [JsonProperty("id")]
- public string? Id { get; set; }
-
- ///
- /// File ID for exhibitor profile logo.
- ///
- [JsonProperty("profileLogoId")]
- public string? ProfileLogoId { get; set; }
-
- ///
- /// URL for exhibitor profile logo.
- ///
- [JsonProperty("profileLogoUrl")]
- public string? ProfileLogoUrl { get; set; }
-
- ///
- /// File ID for exhibitor banner.
- ///
- [JsonProperty("bannerId")]
- public string? BannerId { get; set; }
-
- ///
- /// URL for exhibitor banner.
- ///
- [JsonProperty("bannerUrl")]
- public string? BannerUrl { get; set; }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingExhibitorQuestion.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExistingExhibitorQuestion.cs
index a31e5e93..4e131936 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingExhibitorQuestion.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ExistingExhibitorQuestion.cs
@@ -48,7 +48,7 @@ public class ExistingExhibitorQuestion
/// The Associated Event.
///
[JsonProperty("event")]
- public EventJson6 Event { get; set; } = default!;
+ public Event1 Event { get; set; } = default!;
///
/// The actual text of the exhibitor question.
@@ -66,7 +66,7 @@ public class ExistingExhibitorQuestion
/// 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.
///
[JsonProperty("type")]
- public ExhibitorQuestionTypeJson Type { get; set; } = default!;
+ public ExhibitorQuestionType Type { get; set; } = default!;
///
/// A boolean indicating whether the question is mandatory or not.
@@ -78,31 +78,31 @@ public class ExistingExhibitorQuestion
/// An array of choices for the exhibitor question.
///
[JsonProperty("choices")]
- public List? Choices { get; set; }
+ public List? Choices { get; set; }
///
/// Contains text of additional choice.
///
[JsonProperty("notApplicableAnswer")]
- public AdditionalChoiceJson11? NotApplicableAnswer { get; set; }
+ public AdditionalChoice? NotApplicableAnswer { get; set; }
///
/// Contains text of additional choice.
///
[JsonProperty("otherAnswer")]
- public AdditionalChoiceJson11? OtherAnswer { get; set; }
+ public AdditionalChoice? OtherAnswer { get; set; }
///
/// 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'.
///
[JsonProperty("answerFormat")]
- public ExhibitorAnswerFormatJson? AnswerFormat { get; set; }
+ public ExhibitorAnswerFormat? AnswerFormat { get; set; }
///
/// Defines the limits for answers to exhibitor questions.
///
[JsonProperty("answerLimits")]
- public ExhibitorAnswerLimitsJson? AnswerLimits { get; set; }
+ public ExhibitorAnswerLimits? AnswerLimits { get; set; }
///
/// True indicates the current date and time is automatically set as the default value for OpenEndedDateTime questions.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingFile.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExistingFile.cs
index 560f4752..f5b9a45e 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingFile.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ExistingFile.cs
@@ -47,13 +47,13 @@ public class ExistingFile
/// The Associated Event.
///
[JsonProperty("event")]
- public EventJson6 Event { get; set; } = default!;
+ public Event1 Event { get; set; } = default!;
///
/// The Associated Exhibitor.
///
[JsonProperty("exhibitor")]
- public ExhibitorJson Exhibitor { get; set; } = default!;
+ public Models.Components.Exhibitor Exhibitor { get; set; } = default!;
///
/// Display name of the file.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingHub.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExistingHub.cs
index 62136fc1..63d082ec 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingHub.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ExistingHub.cs
@@ -53,7 +53,7 @@ public class ExistingHub
/// The owner of the Events+ hub and their information.
///
[JsonProperty("owner")]
- public HubOwnerJson Owner { get; set; } = default!;
+ public HubOwner Owner { get; set; } = default!;
///
/// Custom domain name of the Events+ hub.
@@ -71,7 +71,7 @@ public class ExistingHub
/// All the colors associated with the Events+ hub.
///
[JsonProperty("colors")]
- public HubColorsJson? Colors { get; set; }
+ public HubColors? Colors { get; set; }
///
/// True guarantees that controls shown on the page will contrast with the background color.
@@ -83,13 +83,13 @@ public class ExistingHub
/// The logo for the Events+ hub.
///
[JsonProperty("logo")]
- public HubLogoJson? Logo { get; set; }
+ public HubLogo? Logo { get; set; }
///
/// The background image of the Events+ hub.
///
[JsonProperty("background")]
- public HubBackgroundJson? Background { get; set; }
+ public HubBackground? Background { get; set; }
///
/// An IETF BCP 47 language tag used to indicate the language of the Events+ hub.
@@ -101,7 +101,7 @@ public class ExistingHub
/// The event calendar associated with this Events+ hub. The event calendar allows you to share multiple events and sessions in a list or calendar format.
///
[JsonProperty("calendar")]
- public HubCalendarJson? Calendar { get; set; }
+ public HubCalendar? Calendar { get; set; }
///
/// Help email address to reach out in case of any issues logging in or registering.
@@ -125,19 +125,19 @@ public class ExistingHub
/// Specifies how UTM (urchin tracking module: a key and value that is attached to URLs for the purpose of identifying and tracking traffic) settings will override passed in items.
///
[JsonProperty("utmOverride")]
- public UtmOverrideJson? UtmOverride { get; set; } = Cvent.SDK.Models.Components.UtmOverrideJson.UseExistingParameter;
+ public UTMOverride? UtmOverride { get; set; } = Cvent.SDK.Models.Components.UTMOverride.UseExistingParameter;
///
/// The fonts of the Events+ hub.
///
[JsonProperty("fonts")]
- public HubFontsJson? Fonts { get; set; }
+ public HubFonts? Fonts { get; set; }
///
/// Fields relating to the login process for the Events+ hub.
///
[JsonProperty("login")]
- public HubLoginJson? Login { get; set; }
+ public HubLogin? Login { get; set; }
///
/// The unique ID of an Events+ Hub.
@@ -149,6 +149,6 @@ public class ExistingHub
/// The current Events+ Hub status. Inactive: The Events+ Hub is inactive and unavailable to members. Active: Members can access the Events+ Hub. Deleted: The Events+ Hub has been deleted and is unavailable to members or planners.
///
[JsonProperty("status")]
- public HubStatusPropertyJson? Status { get; set; }
+ public HubStatusProperty? Status { get; set; }
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingLeadJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExistingLeadJson.cs
deleted file mode 100644
index b0a40b92..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingLeadJson.cs
+++ /dev/null
@@ -1,208 +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;
-
- ///
- /// A JSON Schema file for Lead.
- ///
- public class ExistingLeadJson
- {
- ///
- /// 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 Associated Event.
- ///
- [JsonProperty("event")]
- public EventJson6? Event { get; set; }
-
- ///
- /// The Associated Exhibitor.
- ///
- [JsonProperty("exhibitor")]
- public ExhibitorJson? Exhibitor { get; set; }
-
- ///
- /// A JSON schema representing the Attendee object.
- ///
- [JsonProperty("attendee")]
- public LeadAttendeeJson? Attendee { get; set; }
-
- ///
- /// A JSON schema representing Booth Staff entity.
- ///
- [JsonProperty("boothStaff")]
- public LeadBoothStaffJson? BoothStaff { get; set; }
-
- ///
- /// A JSON object representing an electronic device used to capture leads.
- ///
- [JsonProperty("device")]
- public LeadDeviceJson? Device { get; set; }
-
- ///
- /// A JSON schema representing the structure of an appointment object.
- ///
- [JsonProperty("appointment")]
- public LeadAppointmentJson? Appointment { get; set; }
-
- ///
- /// The title of the lead.
- ///
- [JsonProperty("title")]
- public string? Title { get; set; }
-
- ///
- /// The first name of the lead.
- ///
- [JsonProperty("firstName")]
- public string? FirstName { get; set; }
-
- ///
- /// The last name of the lead.
- ///
- [JsonProperty("lastName")]
- public string? LastName { get; set; }
-
- ///
- /// The email address of the lead.
- ///
- [JsonProperty("email")]
- public string? Email { get; set; }
-
- ///
- /// The company/organization the lead belongs to.
- ///
- [JsonProperty("company")]
- public string? Company { get; set; }
-
- ///
- /// Mobile phone number of the lead.
- ///
- [JsonProperty("mobilePhone")]
- public string? MobilePhone { get; set; }
-
- ///
- /// Schema for address information.
- ///
- [JsonProperty("homeAddress")]
- public LeadAddressJson? HomeAddress { get; set; }
-
- ///
- /// Home phone number of the lead.
- ///
- [JsonProperty("homePhone")]
- public string? HomePhone { get; set; }
-
- ///
- /// Schema for address information.
- ///
- [JsonProperty("workAddress")]
- public LeadAddressJson? WorkAddress { get; set; }
-
- ///
- /// Work Phone number of the lead.
- ///
- [JsonProperty("workPhone")]
- public string? WorkPhone { get; set; }
-
- ///
- /// The type of lead.
- ///
- [JsonProperty("type")]
- public ExistingLeadJsonType? Type { get; set; } = Cvent.SDK.Models.Components.ExistingLeadJsonType.Leadcapture;
-
- ///
- /// The application used to capture lead.
- ///
- [JsonProperty("application")]
- public Application? Application { get; set; } = Cvent.SDK.Models.Components.Application.Leadcapture;
-
- ///
- /// The source of entry for the lead.
- ///
- [JsonProperty("source")]
- public Source? Source { get; set; }
-
- ///
- /// A boolean indicating whether a lead is deleted or not.
- ///
- [JsonProperty("deleted")]
- public bool? Deleted { get; set; } = false;
-
- ///
- /// Comments about the lead.
- ///
- [JsonProperty("comments")]
- public string? Comments { get; set; }
-
- ///
- /// License (access code) that was used to capture the lead.
- ///
- [JsonProperty("licenseCode")]
- public string? LicenseCode { get; set; }
-
- ///
- /// A boolean indicating whether the lead is matched or not.
- ///
- [JsonProperty("matched")]
- public bool? Matched { get; set; }
-
- ///
- /// Current status of business card transcription.
- ///
- [JsonProperty("transcriptionStatus")]
- public TranscriptionStatus? TranscriptionStatus { get; set; }
-
- ///
- /// A boolean indicating whether a lead is qualified or not.
- ///
- [JsonProperty("qualified")]
- public bool? Qualified { get; set; }
-
- ///
- /// Map containing extra properties from badgekit provider.
- ///
- [JsonProperty("additionalBadgekitFields")]
- public AdditionalBadgekitFields? AdditionalBadgekitFields { get; set; }
-
- ///
- /// ID of Lead.
- ///
- [JsonProperty("id")]
- public string? Id { get; set; }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingLeadJsonType.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExistingLeadJsonType.cs
deleted file mode 100644
index 477aa51b..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingLeadJsonType.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;
-
- ///
- /// The type of lead.
- ///
- public enum ExistingLeadJsonType
- {
- [JsonProperty("leadcapture")] Leadcapture,
- [JsonProperty("inbound")] Inbound,
- [JsonProperty("appointment")] Appointment,
- }
-
- public static class ExistingLeadJsonTypeExtension
- {
- public static string Value(this ExistingLeadJsonType value)
- {
- return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString()) [0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
- }
-
- public static ExistingLeadJsonType ToEnum(this string value)
- {
- foreach (var field in typeof(ExistingLeadJsonType).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 ExistingLeadJsonType)
- {
- return (ExistingLeadJsonType)enumVal;
- }
- }
- }
-
- throw new Exception($"Unknown value {value} for enum ExistingLeadJsonType");
- }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingMember.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExistingMember.cs
new file mode 100644
index 00000000..06aea0a2
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ExistingMember.cs
@@ -0,0 +1,136 @@
+//------------------------------------------------------------------------------
+//
+// 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;
+
+ ///
+ /// An existing member.
+ ///
+ public class ExistingMember
+ {
+ ///
+ /// Member's first name.
+ ///
+ [JsonProperty("firstName")]
+ public string FirstName { get; set; } = default!;
+
+ ///
+ /// Member's last name.
+ ///
+ [JsonProperty("lastName")]
+ public string LastName { get; set; } = default!;
+
+ ///
+ /// Used to denote title of member e.g. Mr., Mrs., Dr. etc.
+ ///
+ [JsonProperty("prefix")]
+ public string? Prefix { get; set; }
+
+ ///
+ /// Member's designation in the company.
+ ///
+ [JsonProperty("designation")]
+ public string? Designation { get; set; }
+
+ ///
+ /// Member's job title.
+ ///
+ [JsonProperty("jobTitle")]
+ public string? JobTitle { get; set; }
+
+ ///
+ /// Member's company name.
+ ///
+ [JsonProperty("companyName")]
+ public string? CompanyName { get; set; }
+
+ ///
+ /// Member's biographical writeup.
+ ///
+ [JsonProperty("headline")]
+ public string? Headline { get; set; }
+
+ ///
+ /// Member's pronouns.
+ ///
+ [JsonProperty("pronouns")]
+ public string? Pronouns { get; set; }
+
+ ///
+ /// Member's social media links.
+ ///
+ [JsonProperty("socialMediaLinks")]
+ public SocialMediaLinks? SocialMediaLinks { get; set; }
+
+ ///
+ /// The optimized URL of the Events+ member's profile image.
+ ///
+ [JsonProperty("profileImageUrl")]
+ public ExistingMemberLink? ProfileImageUrl { get; set; }
+
+ ///
+ /// Member's email address.
+ ///
+ [JsonProperty("emailAddress")]
+ public string? EmailAddress { get; set; }
+
+ ///
+ /// Member's mobile number.
+ ///
+ [JsonProperty("mobileNumber")]
+ public string? MobileNumber { get; set; }
+
+ ///
+ /// Member's work address details.
+ ///
+ [JsonProperty("workAddress")]
+ public WorkAddress? WorkAddress { get; set; }
+
+ ///
+ /// Privacy compliance fields for a contact.
+ ///
+ [JsonProperty("compliance")]
+ public Models.Components.Compliance? Compliance { get; set; }
+
+ ///
+ /// Member's preferred language. Used for localization of the UI and emails. The value should be in the form of an ISO-639 language code and ISO 3166-1 Alpha-2 country code separated by a hyphen. e.g. en-US, fr-FR, es-ES etc.
+ ///
+ [JsonProperty("locale")]
+ public string? Locale { get; set; }
+
+ ///
+ /// The ISO 8601 zoned date time when the member registered.
+ ///
+ [JsonProperty("registrationDate")]
+ public DateTime? RegistrationDate { get; set; }
+
+ ///
+ /// The ISO 8601 zoned date time when the member last logged in.
+ ///
+ [JsonProperty("lastLoginDate")]
+ public DateTime? LastLoginDate { get; set; }
+
+ ///
+ /// True indicates member profile is visible to other members.
+ ///
+ [JsonProperty("visible")]
+ public bool? Visible { get; set; } = false;
+
+ ///
+ /// The unique ID of the member.
+ ///
+ [JsonProperty("id")]
+ public string? Id { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingMemberJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExistingMemberJson.cs
deleted file mode 100644
index c29412c5..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingMemberJson.cs
+++ /dev/null
@@ -1,136 +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;
-
- ///
- /// An existing member.
- ///
- public class ExistingMemberJson
- {
- ///
- /// Member's first name.
- ///
- [JsonProperty("firstName")]
- public string FirstName { get; set; } = default!;
-
- ///
- /// Member's last name.
- ///
- [JsonProperty("lastName")]
- public string LastName { get; set; } = default!;
-
- ///
- /// Used to denote title of member e.g. Mr., Mrs., Dr. etc.
- ///
- [JsonProperty("prefix")]
- public string? Prefix { get; set; }
-
- ///
- /// Member's designation in the company.
- ///
- [JsonProperty("designation")]
- public string? Designation { get; set; }
-
- ///
- /// Member's job title.
- ///
- [JsonProperty("jobTitle")]
- public string? JobTitle { get; set; }
-
- ///
- /// Member's company name.
- ///
- [JsonProperty("companyName")]
- public string? CompanyName { get; set; }
-
- ///
- /// Member's biographical writeup.
- ///
- [JsonProperty("headline")]
- public string? Headline { get; set; }
-
- ///
- /// Member's pronouns.
- ///
- [JsonProperty("pronouns")]
- public string? Pronouns { get; set; }
-
- ///
- /// Member's social media links.
- ///
- [JsonProperty("socialMediaLinks")]
- public SocialMediaLinksJson? SocialMediaLinks { get; set; }
-
- ///
- /// The optimized URL of the Events+ member's profile image.
- ///
- [JsonProperty("profileImageUrl")]
- public ExistingMemberJsonLink? ProfileImageUrl { get; set; }
-
- ///
- /// Member's email address.
- ///
- [JsonProperty("emailAddress")]
- public string? EmailAddress { get; set; }
-
- ///
- /// Member's mobile number.
- ///
- [JsonProperty("mobileNumber")]
- public string? MobileNumber { get; set; }
-
- ///
- /// Member's work address details.
- ///
- [JsonProperty("workAddress")]
- public WorkAddressJson? WorkAddress { get; set; }
-
- ///
- /// Privacy compliance fields for a contact.
- ///
- [JsonProperty("compliance")]
- public ComplianceJson? Compliance { get; set; }
-
- ///
- /// Member's preferred language. Used for localization of the UI and emails. The value should be in the form of an ISO-639 language code and ISO 3166-1 Alpha-2 country code separated by a hyphen. e.g. en-US, fr-FR, es-ES etc.
- ///
- [JsonProperty("locale")]
- public string? Locale { get; set; }
-
- ///
- /// The ISO 8601 zoned date time when the member registered.
- ///
- [JsonProperty("registrationDate")]
- public DateTime? RegistrationDate { get; set; }
-
- ///
- /// The ISO 8601 zoned date time when the member last logged in.
- ///
- [JsonProperty("lastLoginDate")]
- public DateTime? LastLoginDate { get; set; }
-
- ///
- /// True indicates member profile is visible to other members.
- ///
- [JsonProperty("visible")]
- public bool? Visible { get; set; } = false;
-
- ///
- /// The unique ID of the member.
- ///
- [JsonProperty("id")]
- public string? Id { get; set; }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingMemberJsonLink.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExistingMemberJsonLink.cs
deleted file mode 100644
index 0f25d9af..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingMemberJsonLink.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;
-
- ///
- /// The optimized URL of the Events+ member's profile image.
- ///
- public class ExistingMemberJsonLink
- {
- ///
- /// A URL pointing to the member's profile image.
- ///
- [JsonProperty("href")]
- public string Href { get; set; } = default!;
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingMemberLink.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExistingMemberLink.cs
new file mode 100644
index 00000000..36686660
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ExistingMemberLink.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 optimized URL of the Events+ member's profile image.
+ ///
+ public class ExistingMemberLink
+ {
+ ///
+ /// A URL pointing to the member's profile image.
+ ///
+ [JsonProperty("href")]
+ public string Href { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingRegistrationPackJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExistingRegistrationPackJson.cs
deleted file mode 100644
index 2ef779eb..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingRegistrationPackJson.cs
+++ /dev/null
@@ -1,46 +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.Collections.Generic;
-
- ///
- /// Schema for existing registration pack object.
- ///
- public class ExistingRegistrationPackJson
- {
- ///
- /// Registration pack id.
- ///
- [JsonProperty("id")]
- public string Id { get; set; } = default!;
-
- ///
- /// The Associated Event.
- ///
- [JsonProperty("event")]
- public EventJson6 Event { get; set; } = default!;
-
- ///
- /// The Associated Exhibitor.
- ///
- [JsonProperty("exhibitor")]
- public ExhibitorJson Exhibitor { get; set; } = default!;
-
- ///
- /// Capacities allocated per registration type for this exhibitor's registration pack.
- ///
- [JsonProperty("capacities")]
- public List Capacities { get; set; } = default!;
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingRegistrationTypeWithAssociatedRegPathJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExistingRegistrationTypeWithAssociatedRegPathJson.cs
index 9e5e30a3..61cf2a04 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingRegistrationTypeWithAssociatedRegPathJson.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ExistingRegistrationTypeWithAssociatedRegPathJson.cs
@@ -77,7 +77,7 @@ public class ExistingRegistrationTypeWithAssociatedRegPathJson
/// Represents capacity statistics of the registration type.
///
[JsonProperty("capacity")]
- public CapacityJson1? Capacity { get; set; }
+ public CapacityJson? Capacity { get; set; }
///
/// Represents the details of a registration path.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingSponsorshipLevel.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExistingSponsorshipLevel.cs
index 34babfaa..dd5d9051 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingSponsorshipLevel.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ExistingSponsorshipLevel.cs
@@ -47,7 +47,7 @@ public class ExistingSponsorshipLevel
/// The Associated Event.
///
[JsonProperty("event")]
- public EventJson6 Event { get; set; } = default!;
+ public Event1 Event { get; set; } = default!;
///
/// Name of the sponsorship level.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingWeblink.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ExistingWeblink.cs
index 2b4fc660..76c63397 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ExistingWeblink.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ExistingWeblink.cs
@@ -47,13 +47,13 @@ public class ExistingWeblink
/// The Associated Event.
///
[JsonProperty("event")]
- public EventJson6 Event { get; set; } = default!;
+ public Event1 Event { get; set; } = default!;
///
/// The Associated Exhibitor.
///
[JsonProperty("exhibitor")]
- public ExhibitorJson Exhibitor { get; set; } = default!;
+ public Models.Components.Exhibitor Exhibitor { get; set; } = default!;
///
/// Display name of the weblink.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/FeatureTypeJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/FeatureTypeJson.cs
index 498c8d59..c96d9021 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/FeatureTypeJson.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/FeatureTypeJson.cs
@@ -32,7 +32,8 @@ namespace Cvent.SDK.Models.Components
/// | `Exhibitors` | Centralizes exhibitor setup—profiles, tasks, content/categories—and booth staff and LeadCapture management, with exhibitor listings and engagement surfaced in Attendee Hub. |
/// | `Vendors` | Allows planners to source and manage event services directly from the container event. |
/// | `EventAds` | Allows planners to create, place, and track targeted ads across Attendee Hub and the event app. |
- /// | `EventCredits` | Allows planners to set rules and track credits attendees earn for sessions and the event. |
+ /// | `EventCredits` | Allows planners to set rules and track credits attendees earn for sessions and the event. Only one of `EventCredits` or `CreditsAndCertificates` can be active at a time. |
+ /// | `CreditsAndCertificates` | Allows planners to create credit rules, link them to events and sessions, and award credits to attendees. Also enables creating certificates, linking them to credit rules, and awarding them to attendees. Only one of `EventCredits` or `CreditsAndCertificates` can be active at a time. |
///
public enum FeatureTypeJson
{
@@ -51,6 +52,7 @@ public enum FeatureTypeJson
[JsonProperty("Vendors")] Vendors,
[JsonProperty("EventAds")] EventAds,
[JsonProperty("EventCredits")] EventCredits,
+ [JsonProperty("CreditsAndCertificates")] CreditsAndCertificates,
}
public static class FeatureTypeJsonExtension
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/FeatureUpdate.cs b/packages/csharp/src/Cvent/SDK/Models/Components/FeatureUpdate.cs
index 48ac207b..6f586f14 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/FeatureUpdate.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/FeatureUpdate.cs
@@ -37,7 +37,8 @@ public class FeatureUpdate
/// | `Exhibitors` | Centralizes exhibitor setup—profiles, tasks, content/categories—and booth staff and LeadCapture management, with exhibitor listings and engagement surfaced in Attendee Hub. |
/// | `Vendors` | Allows planners to source and manage event services directly from the container event. |
/// | `EventAds` | Allows planners to create, place, and track targeted ads across Attendee Hub and the event app. |
- /// | `EventCredits` | Allows planners to set rules and track credits attendees earn for sessions and the event. |
+ /// | `EventCredits` | Allows planners to set rules and track credits attendees earn for sessions and the event. Only one of `EventCredits` or `CreditsAndCertificates` can be active at a time. |
+ /// | `CreditsAndCertificates` | Allows planners to create credit rules, link them to events and sessions, and award credits to attendees. Also enables creating certificates, linking them to credit rules, and awarding them to attendees. Only one of `EventCredits` or `CreditsAndCertificates` can be active at a time. |
///
[JsonProperty("type")]
public FeatureTypeJson Type { get; set; } = default!;
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/FieldJson3.cs b/packages/csharp/src/Cvent/SDK/Models/Components/FieldJson3.cs
new file mode 100644
index 00000000..97ca7546
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/FieldJson3.cs
@@ -0,0 +1,70 @@
+//------------------------------------------------------------------------------
+//
+// 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.Collections.Generic;
+
+ ///
+ /// A survey field.
+ ///
+ public class FieldJson3
+ {
+ ///
+ /// Text field ID.
+ ///
+ [JsonProperty("id")]
+ public string? Id { get; set; }
+
+ ///
+ /// text Value of the Field.
+ ///
+ [JsonProperty("text")]
+ public string? Text { get; set; }
+
+ ///
+ /// Reporting value of the Category, Its like a custom abbreviation.
+ ///
+ [JsonProperty("shortText")]
+ public string? ShortText { get; set; }
+
+ ///
+ /// Field Type.
+ ///
+ [JsonProperty("type")]
+ public FieldTypeJson2? Type { get; set; }
+
+ ///
+ /// List of choices for this field.
+ ///
+ [JsonProperty("choices")]
+ public List? Choices { get; set; }
+
+ ///
+ /// Contains text of additional choice i.e N/A choice or otherAnswer choice.
+ ///
+ [JsonProperty("notApplicableAnswer")]
+ public AdditionalChoiceJson1? NotApplicableAnswer { get; set; }
+
+ ///
+ /// Contains text of additional choice i.e N/A choice or otherAnswer choice.
+ ///
+ [JsonProperty("otherAnswer")]
+ public AdditionalChoiceJson1? OtherAnswer { get; set; }
+
+ ///
+ /// Is this a mandatory field.
+ ///
+ [JsonProperty("required")]
+ public bool? Required { get; set; } = false;
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/FieldJson5.cs b/packages/csharp/src/Cvent/SDK/Models/Components/FieldJson5.cs
deleted file mode 100644
index c050e4ab..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/FieldJson5.cs
+++ /dev/null
@@ -1,70 +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.Collections.Generic;
-
- ///
- /// A survey field.
- ///
- public class FieldJson5
- {
- ///
- /// Text field ID.
- ///
- [JsonProperty("id")]
- public string? Id { get; set; }
-
- ///
- /// text Value of the Field.
- ///
- [JsonProperty("text")]
- public string? Text { get; set; }
-
- ///
- /// Reporting value of the Category, Its like a custom abbreviation.
- ///
- [JsonProperty("shortText")]
- public string? ShortText { get; set; }
-
- ///
- /// Field Type.
- ///
- [JsonProperty("type")]
- public FieldTypeJson2? Type { get; set; }
-
- ///
- /// List of choices for this field.
- ///
- [JsonProperty("choices")]
- public List? Choices { get; set; }
-
- ///
- /// Contains text of additional choice i.e N/A choice or otherAnswer choice.
- ///
- [JsonProperty("notApplicableAnswer")]
- public AdditionalChoiceJson2? NotApplicableAnswer { get; set; }
-
- ///
- /// Contains text of additional choice i.e N/A choice or otherAnswer choice.
- ///
- [JsonProperty("otherAnswer")]
- public AdditionalChoiceJson2? OtherAnswer { get; set; }
-
- ///
- /// Is this a mandatory field.
- ///
- [JsonProperty("required")]
- public bool? Required { get; set; } = false;
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/FileInput.cs b/packages/csharp/src/Cvent/SDK/Models/Components/FileInput.cs
index e446a241..14f0a6bf 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/FileInput.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/FileInput.cs
@@ -22,13 +22,13 @@ public class FileInput
/// The Associated Event.
///
[JsonProperty("event")]
- public EventJson6 Event { get; set; } = default!;
+ public Event1 Event { get; set; } = default!;
///
/// The Associated Exhibitor.
///
[JsonProperty("exhibitor")]
- public ExhibitorJson Exhibitor { get; set; } = default!;
+ public Models.Components.Exhibitor Exhibitor { get; set; } = default!;
///
/// Display name of the file.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/GuestJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/GuestJson.cs
index 9b121732..f0baf68f 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/GuestJson.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/GuestJson.cs
@@ -95,7 +95,7 @@ public class GuestJson
/// Address details. Required to create/update a guest's reservation if the hotel/event requires an address in reservations.
///
[JsonProperty("homeAddress")]
- public AddressJson3? HomeAddress { get; set; }
+ public AddressJson2? HomeAddress { get; set; }
///
/// Payment information.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/HousingEventHotel.cs b/packages/csharp/src/Cvent/SDK/Models/Components/HousingEventHotel.cs
index fc117a8e..f0d9a893 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/HousingEventHotel.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/HousingEventHotel.cs
@@ -77,6 +77,6 @@ public class HousingEventHotel
/// Address details. Required to create/update a guest's reservation if the hotel/event requires an address in reservations.
///
[JsonProperty("address")]
- public AddressJson3? Address { get; set; }
+ public AddressJson2? Address { get; set; }
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/HubBackground.cs b/packages/csharp/src/Cvent/SDK/Models/Components/HubBackground.cs
new file mode 100644
index 00000000..c0bd6a60
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/HubBackground.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;
+
+ ///
+ /// The background image of the Events+ hub.
+ ///
+ public class HubBackground
+ {
+ ///
+ /// The optimized URL of the Events+ hub's background image. The background image appears on the Events+ hub registration page.
+ ///
+ [JsonProperty("url")]
+ public string? Url { get; set; }
+
+ ///
+ /// The original URL of the Events+ hub background image. The background appears on the Events+ hub Registration page.
+ ///
+ [JsonProperty("originalUrl")]
+ public string? OriginalUrl { get; set; }
+
+ ///
+ /// Alternate text for the background image.
+ ///
+ [JsonProperty("altText")]
+ public string? AltText { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/HubBackgroundJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/HubBackgroundJson.cs
deleted file mode 100644
index 922a58a5..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/HubBackgroundJson.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;
-
- ///
- /// The background image of the Events+ hub.
- ///
- public class HubBackgroundJson
- {
- ///
- /// The optimized URL of the Events+ hub's background image. The background image appears on the Events+ hub registration page.
- ///
- [JsonProperty("url")]
- public string? Url { get; set; }
-
- ///
- /// The original URL of the Events+ hub background image. The background appears on the Events+ hub Registration page.
- ///
- [JsonProperty("originalUrl")]
- public string? OriginalUrl { get; set; }
-
- ///
- /// Alternate text for the background image.
- ///
- [JsonProperty("altText")]
- public string? AltText { get; set; }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/HubCalendar.cs b/packages/csharp/src/Cvent/SDK/Models/Components/HubCalendar.cs
new file mode 100644
index 00000000..2ce93428
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/HubCalendar.cs
@@ -0,0 +1,33 @@
+//------------------------------------------------------------------------------
+//
+// 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;
+
+ ///
+ /// The event calendar associated with this Events+ hub. The event calendar allows you to share multiple events and sessions in a list or calendar format.
+ ///
+ public class HubCalendar
+ {
+ ///
+ /// The ID of the calendar associated to an Events+ hub.
+ ///
+ [JsonProperty("id")]
+ public string? Id { get; set; }
+
+ ///
+ /// The initial layout style used by front-ends to render the associated calendar.
+ ///
+ [JsonProperty("layout")]
+ public Layout? Layout { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/HubCalendarJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/HubCalendarJson.cs
deleted file mode 100644
index 15520aca..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/HubCalendarJson.cs
+++ /dev/null
@@ -1,33 +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;
-
- ///
- /// The event calendar associated with this Events+ hub. The event calendar allows you to share multiple events and sessions in a list or calendar format.
- ///
- public class HubCalendarJson
- {
- ///
- /// The ID of the calendar associated to an Events+ hub.
- ///
- [JsonProperty("id")]
- public string? Id { get; set; }
-
- ///
- /// The initial layout style used by front-ends to render the associated calendar.
- ///
- [JsonProperty("layout")]
- public Layout? Layout { get; set; }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/HubColors.cs b/packages/csharp/src/Cvent/SDK/Models/Components/HubColors.cs
new file mode 100644
index 00000000..d3eb32de
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/HubColors.cs
@@ -0,0 +1,44 @@
+//------------------------------------------------------------------------------
+//
+// 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;
+
+ ///
+ /// All the colors associated with the Events+ hub.
+ ///
+ public class HubColors
+ {
+ ///
+ /// The secondary color of an Events+ hub.
+ ///
+ [JsonProperty("action")]
+ public string? Action { get; set; }
+
+ ///
+ /// The background color of an Events+ hub.
+ ///
+ [JsonProperty("background")]
+ public string? Background { get; set; }
+
+ ///
+ /// The primary color of an Events+ hub.
+ ///
+ [JsonProperty("main")]
+ public string? Main { get; set; }
+
+ ///
+ /// An Events+ hub color configuration that can be set to light, dark, or a similar shade to the main color.
+ ///
+ [JsonProperty("mood")]
+ public string? Mood { get; set; } = "#FFFFFF";
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/HubColorsJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/HubColorsJson.cs
deleted file mode 100644
index 8fee05fc..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/HubColorsJson.cs
+++ /dev/null
@@ -1,44 +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;
-
- ///
- /// All the colors associated with the Events+ hub.
- ///
- public class HubColorsJson
- {
- ///
- /// The secondary color of an Events+ hub.
- ///
- [JsonProperty("action")]
- public string? Action { get; set; }
-
- ///
- /// The background color of an Events+ hub.
- ///
- [JsonProperty("background")]
- public string? Background { get; set; }
-
- ///
- /// The primary color of an Events+ hub.
- ///
- [JsonProperty("main")]
- public string? Main { get; set; }
-
- ///
- /// An Events+ hub color configuration that can be set to light, dark, or a similar shade to the main color.
- ///
- [JsonProperty("mood")]
- public string? Mood { get; set; } = "#FFFFFF";
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/HubFonts.cs b/packages/csharp/src/Cvent/SDK/Models/Components/HubFonts.cs
new file mode 100644
index 00000000..3ecd3e8d
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/HubFonts.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;
+
+ ///
+ /// The fonts of the Events+ hub.
+ ///
+ public class HubFonts
+ {
+ ///
+ /// The id of the font used in this Events+ hub's heading. Custom fonts are previously uploaded in the account.
+ ///
+ [JsonProperty("headingId")]
+ public string? HeadingId { get; set; }
+
+ ///
+ /// The id of the font used in this Events+ hub's body text. Custom fonts are previously uploaded in account.
+ ///
+ [JsonProperty("bodyId")]
+ public string? BodyId { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/HubFontsJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/HubFontsJson.cs
deleted file mode 100644
index 58181a5a..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/HubFontsJson.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;
-
- ///
- /// The fonts of the Events+ hub.
- ///
- public class HubFontsJson
- {
- ///
- /// The id of the font used in this Events+ hub's heading. Custom fonts are previously uploaded in the account.
- ///
- [JsonProperty("headingId")]
- public string? HeadingId { get; set; }
-
- ///
- /// The id of the font used in this Events+ hub's body text. Custom fonts are previously uploaded in account.
- ///
- [JsonProperty("bodyId")]
- public string? BodyId { get; set; }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/HubLogin.cs b/packages/csharp/src/Cvent/SDK/Models/Components/HubLogin.cs
new file mode 100644
index 00000000..90a63c83
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/HubLogin.cs
@@ -0,0 +1,39 @@
+//------------------------------------------------------------------------------
+//
+// 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;
+
+ ///
+ /// Fields relating to the login process for the Events+ hub.
+ ///
+ public class HubLogin
+ {
+ ///
+ /// Login method for the members of the Events+ hub. MAGIC_LINK: The members can log in via a 'magic link' provided via email. Magic links are unique for each member, allowing the member to log in without requiring credentials. SSO: The members log in via a single-sign-on (SSO) method previously configured in the Events+ hub. BOTH: Members can log in via the magic link method or the single-sign-on (SSO) method.
+ ///
+ [JsonProperty("type")]
+ public HubLoginType? Type { get; set; } = Cvent.SDK.Models.Components.HubLoginType.MagicLink;
+
+ ///
+ /// Organization identifier of a Cvent identity provider when SSO login type is selected. This value is provided by Cvent when an account is first configured to support SSO. To read more about Cvent SSO support, see https://developers.cvent.com/docs/sso/overview.
+ ///
+ [JsonProperty("organizationId")]
+ public string? OrganizationId { get; set; }
+
+ ///
+ /// The service provider-initiated URL, used by Events+ hub members for single sign-on (SSO). Used when the `type` property is SSO or BOTH.
+ ///
+ [JsonProperty("idpUrl")]
+ public string? IdpUrl { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/HubLoginJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/HubLoginJson.cs
deleted file mode 100644
index 8f2d81fd..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/HubLoginJson.cs
+++ /dev/null
@@ -1,39 +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;
-
- ///
- /// Fields relating to the login process for the Events+ hub.
- ///
- public class HubLoginJson
- {
- ///
- /// Login method for the members of the Events+ hub. MAGIC_LINK: The members can log in via a 'magic link' provided via email. Magic links are unique for each member, allowing the member to log in without requiring credentials. SSO: The members log in via a single-sign-on (SSO) method previously configured in the Events+ hub. BOTH: Members can log in via the magic link method or the single-sign-on (SSO) method.
- ///
- [JsonProperty("type")]
- public HubLoginJsonType? Type { get; set; } = Cvent.SDK.Models.Components.HubLoginJsonType.MagicLink;
-
- ///
- /// Organization identifier of a Cvent identity provider when SSO login type is selected. This value is provided by Cvent when an account is first configured to support SSO. To read more about Cvent SSO support, see https://developers.cvent.com/docs/sso/overview.
- ///
- [JsonProperty("organizationId")]
- public string? OrganizationId { get; set; }
-
- ///
- /// The service provider-initiated URL, used by Events+ hub members for single sign-on (SSO). Used when the `type` property is SSO or BOTH.
- ///
- [JsonProperty("idpUrl")]
- public string? IdpUrl { get; set; }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/HubLoginJsonType.cs b/packages/csharp/src/Cvent/SDK/Models/Components/HubLoginJsonType.cs
deleted file mode 100644
index d7004a7e..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/HubLoginJsonType.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;
-
- ///
- /// Login method for the members of the Events+ hub. MAGIC_LINK: The members can log in via a 'magic link' provided via email. Magic links are unique for each member, allowing the member to log in without requiring credentials. SSO: The members log in via a single-sign-on (SSO) method previously configured in the Events+ hub. BOTH: Members can log in via the magic link method or the single-sign-on (SSO) method.
- ///
- public enum HubLoginJsonType
- {
- [JsonProperty("MAGIC_LINK")] MagicLink,
- [JsonProperty("SSO")] Sso,
- [JsonProperty("BOTH")] Both,
- }
-
- public static class HubLoginJsonTypeExtension
- {
- public static string Value(this HubLoginJsonType value)
- {
- return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString()) [0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
- }
-
- public static HubLoginJsonType ToEnum(this string value)
- {
- foreach (var field in typeof(HubLoginJsonType).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 HubLoginJsonType)
- {
- return (HubLoginJsonType)enumVal;
- }
- }
- }
-
- throw new Exception($"Unknown value {value} for enum HubLoginJsonType");
- }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/HubLoginType.cs b/packages/csharp/src/Cvent/SDK/Models/Components/HubLoginType.cs
new file mode 100644
index 00000000..f545d9b3
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/HubLoginType.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;
+
+ ///
+ /// Login method for the members of the Events+ hub. MAGIC_LINK: The members can log in via a 'magic link' provided via email. Magic links are unique for each member, allowing the member to log in without requiring credentials. SSO: The members log in via a single-sign-on (SSO) method previously configured in the Events+ hub. BOTH: Members can log in via the magic link method or the single-sign-on (SSO) method.
+ ///
+ public enum HubLoginType
+ {
+ [JsonProperty("MAGIC_LINK")] MagicLink,
+ [JsonProperty("SSO")] Sso,
+ [JsonProperty("BOTH")] Both,
+ }
+
+ public static class HubLoginTypeExtension
+ {
+ public static string Value(this HubLoginType value)
+ {
+ return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString()) [0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
+ }
+
+ public static HubLoginType ToEnum(this string value)
+ {
+ foreach (var field in typeof(HubLoginType).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 HubLoginType)
+ {
+ return (HubLoginType)enumVal;
+ }
+ }
+ }
+
+ throw new Exception($"Unknown value {value} for enum HubLoginType");
+ }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/HubLogo.cs b/packages/csharp/src/Cvent/SDK/Models/Components/HubLogo.cs
new file mode 100644
index 00000000..27c3823f
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/HubLogo.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;
+
+ ///
+ /// The logo for the Events+ hub.
+ ///
+ public class HubLogo
+ {
+ ///
+ /// The optimized Events+ hub logo image URL.
+ ///
+ [JsonProperty("url")]
+ public string? Url { get; set; }
+
+ ///
+ /// The original URL of the logo image that was uploaded to the Events+ hub. Supported file types are JPEG, JPG, PNG, GIF. Recommended logo size is 170 x 90 pixels and 72 PPI.
+ ///
+ [JsonProperty("originalUrl")]
+ public string? OriginalUrl { get; set; }
+
+ ///
+ /// Alternate text for the logo image.
+ ///
+ [JsonProperty("altText")]
+ public string? AltText { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/HubLogoJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/HubLogoJson.cs
deleted file mode 100644
index 837786e3..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/HubLogoJson.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;
-
- ///
- /// The logo for the Events+ hub.
- ///
- public class HubLogoJson
- {
- ///
- /// The optimized Events+ hub logo image URL.
- ///
- [JsonProperty("url")]
- public string? Url { get; set; }
-
- ///
- /// The original URL of the logo image that was uploaded to the Events+ hub. Supported file types are JPEG, JPG, PNG, GIF. Recommended logo size is 170 x 90 pixels and 72 PPI.
- ///
- [JsonProperty("originalUrl")]
- public string? OriginalUrl { get; set; }
-
- ///
- /// Alternate text for the logo image.
- ///
- [JsonProperty("altText")]
- public string? AltText { get; set; }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/HubOwner.cs b/packages/csharp/src/Cvent/SDK/Models/Components/HubOwner.cs
new file mode 100644
index 00000000..9a5807e2
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/HubOwner.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;
+
+ ///
+ /// The owner of the Events+ hub and their information.
+ ///
+ public class HubOwner
+ {
+ ///
+ /// First name of the Events+ hub owner.
+ ///
+ [JsonProperty("firstName")]
+ public string? FirstName { get; set; }
+
+ ///
+ /// Last name of the Events+ hub owner.
+ ///
+ [JsonProperty("lastName")]
+ public string? LastName { get; set; }
+
+ ///
+ /// Email address of the Events+ hub owner.
+ ///
+ [JsonProperty("email")]
+ public string? Email { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/HubOwnerJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/HubOwnerJson.cs
deleted file mode 100644
index b3b64255..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/HubOwnerJson.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;
-
- ///
- /// The owner of the Events+ hub and their information.
- ///
- public class HubOwnerJson
- {
- ///
- /// First name of the Events+ hub owner.
- ///
- [JsonProperty("firstName")]
- public string? FirstName { get; set; }
-
- ///
- /// Last name of the Events+ hub owner.
- ///
- [JsonProperty("lastName")]
- public string? LastName { get; set; }
-
- ///
- /// Email address of the Events+ hub owner.
- ///
- [JsonProperty("email")]
- public string? Email { get; set; }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/HubStatusProperty.cs b/packages/csharp/src/Cvent/SDK/Models/Components/HubStatusProperty.cs
new file mode 100644
index 00000000..ecf39485
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/HubStatusProperty.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;
+
+ ///
+ /// The current Events+ Hub status. Inactive: The Events+ Hub is inactive and unavailable to members. Active: Members can access the Events+ Hub. Deleted: The Events+ Hub has been deleted and is unavailable to members or planners.
+ ///
+ public enum HubStatusProperty
+ {
+ [JsonProperty("Inactive")] Inactive,
+ [JsonProperty("Active")] Active,
+ [JsonProperty("Deleted")] Deleted,
+ }
+
+ public static class HubStatusPropertyExtension
+ {
+ public static string Value(this HubStatusProperty value)
+ {
+ return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString()) [0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
+ }
+
+ public static HubStatusProperty ToEnum(this string value)
+ {
+ foreach (var field in typeof(HubStatusProperty).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 HubStatusProperty)
+ {
+ return (HubStatusProperty)enumVal;
+ }
+ }
+ }
+
+ throw new Exception($"Unknown value {value} for enum HubStatusProperty");
+ }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/HubStatusPropertyJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/HubStatusPropertyJson.cs
deleted file mode 100644
index 75e9b09e..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/HubStatusPropertyJson.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;
-
- ///
- /// The current Events+ Hub status. Inactive: The Events+ Hub is inactive and unavailable to members. Active: Members can access the Events+ Hub. Deleted: The Events+ Hub has been deleted and is unavailable to members or planners.
- ///
- public enum HubStatusPropertyJson
- {
- [JsonProperty("Inactive")] Inactive,
- [JsonProperty("Active")] Active,
- [JsonProperty("Deleted")] Deleted,
- }
-
- public static class HubStatusPropertyJsonExtension
- {
- public static string Value(this HubStatusPropertyJson value)
- {
- return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString()) [0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
- }
-
- public static HubStatusPropertyJson ToEnum(this string value)
- {
- foreach (var field in typeof(HubStatusPropertyJson).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 HubStatusPropertyJson)
- {
- return (HubStatusPropertyJson)enumVal;
- }
- }
- }
-
- throw new Exception($"Unknown value {value} for enum HubStatusPropertyJson");
- }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/HubsPaginatedResponse.cs b/packages/csharp/src/Cvent/SDK/Models/Components/HubsPaginatedResponse.cs
index 067cd777..5fc17da6 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/HubsPaginatedResponse.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/HubsPaginatedResponse.cs
@@ -23,7 +23,7 @@ public class HubsPaginatedResponse
/// Represents pagination information for a collection of resources.
///
[JsonProperty("paging")]
- public PagingJson Paging { get; set; } = default!;
+ public Paging Paging { get; set; } = default!;
///
/// List of Events+ hubs.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/InvitationListPaginatedResponse.cs b/packages/csharp/src/Cvent/SDK/Models/Components/InvitationListPaginatedResponse.cs
index 4e5aebab..0291f3fe 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/InvitationListPaginatedResponse.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/InvitationListPaginatedResponse.cs
@@ -23,7 +23,7 @@ public class InvitationListPaginatedResponse
/// Represents pagination information for a collection of resources.
///
[JsonProperty("paging")]
- public PagingJson25 Paging { get; set; } = default!;
+ public PagingJson23 Paging { get; set; } = default!;
///
/// Collection of invitation list objects.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/Lead.cs b/packages/csharp/src/Cvent/SDK/Models/Components/Lead.cs
new file mode 100644
index 00000000..5c5a1ff5
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/Lead.cs
@@ -0,0 +1,208 @@
+//------------------------------------------------------------------------------
+//
+// 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;
+
+ ///
+ /// A JSON Schema file for Lead.
+ ///
+ public class Lead
+ {
+ ///
+ /// 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 Associated Event.
+ ///
+ [JsonProperty("event")]
+ public Event1? Event { get; set; }
+
+ ///
+ /// The Associated Exhibitor.
+ ///
+ [JsonProperty("exhibitor")]
+ public Models.Components.Exhibitor? Exhibitor { get; set; }
+
+ ///
+ /// A JSON schema representing the Attendee object.
+ ///
+ [JsonProperty("attendee")]
+ public Attendee12? Attendee { get; set; }
+
+ ///
+ /// A JSON schema representing Booth Staff entity.
+ ///
+ [JsonProperty("boothStaff")]
+ public BoothStaff? BoothStaff { get; set; }
+
+ ///
+ /// A JSON object representing an electronic device used to capture leads.
+ ///
+ [JsonProperty("device")]
+ public Device? Device { get; set; }
+
+ ///
+ /// A JSON schema representing the structure of an appointment object.
+ ///
+ [JsonProperty("appointment")]
+ public Appointment? Appointment { get; set; }
+
+ ///
+ /// The title of the lead.
+ ///
+ [JsonProperty("title")]
+ public string? Title { get; set; }
+
+ ///
+ /// The first name of the lead.
+ ///
+ [JsonProperty("firstName")]
+ public string? FirstName { get; set; }
+
+ ///
+ /// The last name of the lead.
+ ///
+ [JsonProperty("lastName")]
+ public string? LastName { get; set; }
+
+ ///
+ /// The email address of the lead.
+ ///
+ [JsonProperty("email")]
+ public string? Email { get; set; }
+
+ ///
+ /// The company/organization the lead belongs to.
+ ///
+ [JsonProperty("company")]
+ public string? Company { get; set; }
+
+ ///
+ /// Mobile phone number of the lead.
+ ///
+ [JsonProperty("mobilePhone")]
+ public string? MobilePhone { get; set; }
+
+ ///
+ /// Schema for address information.
+ ///
+ [JsonProperty("homeAddress")]
+ public Address12? HomeAddress { get; set; }
+
+ ///
+ /// Home phone number of the lead.
+ ///
+ [JsonProperty("homePhone")]
+ public string? HomePhone { get; set; }
+
+ ///
+ /// Schema for address information.
+ ///
+ [JsonProperty("workAddress")]
+ public Address12? WorkAddress { get; set; }
+
+ ///
+ /// Work Phone number of the lead.
+ ///
+ [JsonProperty("workPhone")]
+ public string? WorkPhone { get; set; }
+
+ ///
+ /// The type of lead.
+ ///
+ [JsonProperty("type")]
+ public LeadType? Type { get; set; } = Cvent.SDK.Models.Components.LeadType.Leadcapture;
+
+ ///
+ /// The application used to capture lead.
+ ///
+ [JsonProperty("application")]
+ public Application? Application { get; set; } = Cvent.SDK.Models.Components.Application.Leadcapture;
+
+ ///
+ /// The source of entry for the lead.
+ ///
+ [JsonProperty("source")]
+ public Source? Source { get; set; }
+
+ ///
+ /// A boolean indicating whether a lead is deleted or not.
+ ///
+ [JsonProperty("deleted")]
+ public bool? Deleted { get; set; } = false;
+
+ ///
+ /// Comments about the lead.
+ ///
+ [JsonProperty("comments")]
+ public string? Comments { get; set; }
+
+ ///
+ /// License (access code) that was used to capture the lead.
+ ///
+ [JsonProperty("licenseCode")]
+ public string? LicenseCode { get; set; }
+
+ ///
+ /// A boolean indicating whether the lead is matched or not.
+ ///
+ [JsonProperty("matched")]
+ public bool? Matched { get; set; }
+
+ ///
+ /// Current status of business card transcription.
+ ///
+ [JsonProperty("transcriptionStatus")]
+ public TranscriptionStatus? TranscriptionStatus { get; set; }
+
+ ///
+ /// A boolean indicating whether a lead is qualified or not.
+ ///
+ [JsonProperty("qualified")]
+ public bool? Qualified { get; set; }
+
+ ///
+ /// Map containing extra properties from badgekit provider.
+ ///
+ [JsonProperty("additionalBadgekitFields")]
+ public AdditionalBadgekitFields? AdditionalBadgekitFields { get; set; }
+
+ ///
+ /// ID of Lead.
+ ///
+ [JsonProperty("id")]
+ public string? Id { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/Lead2.cs b/packages/csharp/src/Cvent/SDK/Models/Components/Lead2.cs
new file mode 100644
index 00000000..e5ad74b6
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/Lead2.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;
+
+ ///
+ /// JSON schema for the Lead object.
+ ///
+ public class Lead2
+ {
+ ///
+ /// Lead id.
+ ///
+ [JsonProperty("id")]
+ public string Id { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/LeadAddressJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/LeadAddressJson.cs
deleted file mode 100644
index 329dc255..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/LeadAddressJson.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 LeadAddressJson
- {
- ///
- /// 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/LeadAppointmentJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/LeadAppointmentJson.cs
deleted file mode 100644
index 6dc359bf..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/LeadAppointmentJson.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 JSON schema representing the structure of an appointment object.
- ///
- public class LeadAppointmentJson
- {
- ///
- /// Appointment id.
- ///
- [JsonProperty("id")]
- public string? Id { get; set; }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/LeadAttendeeJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/LeadAttendeeJson.cs
deleted file mode 100644
index 98928525..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/LeadAttendeeJson.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 JSON schema representing the Attendee object.
- ///
- public class LeadAttendeeJson
- {
- ///
- /// Attendee id.
- ///
- [JsonProperty("id")]
- public string? Id { get; set; }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/LeadBoothStaffJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/LeadBoothStaffJson.cs
deleted file mode 100644
index 1344bcd7..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/LeadBoothStaffJson.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 JSON schema representing Booth Staff entity.
- ///
- public class LeadBoothStaffJson
- {
- ///
- /// Booth Staff id.
- ///
- [JsonProperty("id")]
- public string? Id { get; set; }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/LeadDeviceJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/LeadDeviceJson.cs
deleted file mode 100644
index d5e2a111..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/LeadDeviceJson.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;
-
- ///
- /// A JSON object representing an electronic device used to capture leads.
- ///
- public class LeadDeviceJson
- {
- ///
- /// The id of device used to capture lead.
- ///
- [JsonProperty("id")]
- public string? Id { get; set; }
-
- ///
- /// The name of device used to capture lead.
- ///
- [JsonProperty("name")]
- public string? Name { get; set; }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/LeadJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/LeadJson.cs
deleted file mode 100644
index 3c8fa204..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/LeadJson.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;
-
- ///
- /// JSON schema for the Lead object.
- ///
- public class LeadJson
- {
- ///
- /// Lead id.
- ///
- [JsonProperty("id")]
- public string Id { get; set; } = default!;
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/LeadQualificationAnswers.cs b/packages/csharp/src/Cvent/SDK/Models/Components/LeadQualificationAnswers.cs
new file mode 100644
index 00000000..ba307f48
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/LeadQualificationAnswers.cs
@@ -0,0 +1,83 @@
+//------------------------------------------------------------------------------
+//
+// 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;
+
+ ///
+ /// This JSON schema file represents lead qualification answers.
+ ///
+ public class LeadQualificationAnswers
+ {
+ ///
+ /// 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; }
+
+ ///
+ /// Lead Qualification Answer id.
+ ///
+ [JsonProperty("id")]
+ public string? Id { get; set; }
+
+ ///
+ /// The reference to the related entity. Contains only the ID of the related entity.
+ ///
+ [JsonProperty("question")]
+ public Uuid1? Question { get; set; }
+
+ ///
+ /// The Associated Event.
+ ///
+ [JsonProperty("event")]
+ public Event1? Event { get; set; }
+
+ ///
+ /// The Associated Exhibitor.
+ ///
+ [JsonProperty("exhibitor")]
+ public Models.Components.Exhibitor? Exhibitor { get; set; }
+
+ ///
+ /// JSON schema for the Lead object.
+ ///
+ [JsonProperty("lead")]
+ public Lead2? Lead { get; set; }
+
+ ///
+ /// List of answers.
+ ///
+ [JsonProperty("answers")]
+ public List? Answers { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/LeadQualificationAnswersJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/LeadQualificationAnswersJson.cs
deleted file mode 100644
index c55b6dfb..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/LeadQualificationAnswersJson.cs
+++ /dev/null
@@ -1,83 +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;
-
- ///
- /// This JSON schema file represents lead qualification answers.
- ///
- public class LeadQualificationAnswersJson
- {
- ///
- /// 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; }
-
- ///
- /// Lead Qualification Answer id.
- ///
- [JsonProperty("id")]
- public string? Id { get; set; }
-
- ///
- /// The reference to the related entity. Contains only the ID of the related entity.
- ///
- [JsonProperty("question")]
- public UuidJson? Question { get; set; }
-
- ///
- /// The Associated Event.
- ///
- [JsonProperty("event")]
- public EventJson6? Event { get; set; }
-
- ///
- /// The Associated Exhibitor.
- ///
- [JsonProperty("exhibitor")]
- public ExhibitorJson? Exhibitor { get; set; }
-
- ///
- /// JSON schema for the Lead object.
- ///
- [JsonProperty("lead")]
- public LeadJson? Lead { get; set; }
-
- ///
- /// List of answers.
- ///
- [JsonProperty("answers")]
- public List? Answers { get; set; }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/LeadQualificationAnswersListResponse.cs b/packages/csharp/src/Cvent/SDK/Models/Components/LeadQualificationAnswersListResponse.cs
index 0008a436..048a66f9 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/LeadQualificationAnswersListResponse.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/LeadQualificationAnswersListResponse.cs
@@ -23,6 +23,6 @@ public class LeadQualificationAnswersListResponse
/// Collection of Lead Qualification Answers.
///
[JsonProperty("data")]
- public List? Data { get; set; }
+ public List? Data { get; set; }
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/LeadQualificationQuestion.cs b/packages/csharp/src/Cvent/SDK/Models/Components/LeadQualificationQuestion.cs
new file mode 100644
index 00000000..adc18a7f
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/LeadQualificationQuestion.cs
@@ -0,0 +1,107 @@
+//------------------------------------------------------------------------------
+//
+// 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;
+
+ ///
+ /// A JSON schema representing a Lead Qualification Question model.
+ ///
+ public class LeadQualificationQuestion
+ {
+ ///
+ /// 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; }
+
+ ///
+ /// Lead Qualification Question id.
+ ///
+ [JsonProperty("id")]
+ public string? Id { get; set; }
+
+ ///
+ /// The Associated Event.
+ ///
+ [JsonProperty("event")]
+ public Event1? Event { get; set; }
+
+ ///
+ /// The Associated Exhibitor.
+ ///
+ [JsonProperty("exhibitor")]
+ public Models.Components.Exhibitor? Exhibitor { get; set; }
+
+ ///
+ /// Type of question.
+ ///
+ [JsonProperty("type")]
+ public LeadQualificationQuestionType? Type { get; set; }
+
+ ///
+ /// question code.
+ ///
+ [JsonProperty("code")]
+ public string? Code { get; set; }
+
+ ///
+ /// List of available choices for the question.
+ ///
+ [JsonProperty("choices")]
+ public List? Choices { get; set; }
+
+ ///
+ /// Contains text of additional choice.
+ ///
+ [JsonProperty("notApplicableAnswer")]
+ public AdditionalChoice? NotApplicableAnswer { get; set; }
+
+ ///
+ /// Contains text of additional choice.
+ ///
+ [JsonProperty("otherAnswers")]
+ public AdditionalChoice? OtherAnswers { get; set; }
+
+ ///
+ /// A boolean indicating whether the question is mandatory or not.
+ ///
+ [JsonProperty("required")]
+ public bool? Required { get; set; }
+
+ ///
+ /// text of the question.
+ ///
+ [JsonProperty("text")]
+ public string? Text { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/LeadQualificationQuestionJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/LeadQualificationQuestionJson.cs
deleted file mode 100644
index 16d60d9a..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/LeadQualificationQuestionJson.cs
+++ /dev/null
@@ -1,107 +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;
-
- ///
- /// A JSON schema representing a Lead Qualification Question model.
- ///
- public class LeadQualificationQuestionJson
- {
- ///
- /// 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; }
-
- ///
- /// Lead Qualification Question id.
- ///
- [JsonProperty("id")]
- public string? Id { get; set; }
-
- ///
- /// The Associated Event.
- ///
- [JsonProperty("event")]
- public EventJson6? Event { get; set; }
-
- ///
- /// The Associated Exhibitor.
- ///
- [JsonProperty("exhibitor")]
- public ExhibitorJson? Exhibitor { get; set; }
-
- ///
- /// Type of question.
- ///
- [JsonProperty("type")]
- public LeadQualificationQuestionJsonType? Type { get; set; }
-
- ///
- /// question code.
- ///
- [JsonProperty("code")]
- public string? Code { get; set; }
-
- ///
- /// List of available choices for the question.
- ///
- [JsonProperty("choices")]
- public List? Choices { get; set; }
-
- ///
- /// Contains text of additional choice.
- ///
- [JsonProperty("notApplicableAnswer")]
- public AdditionalChoiceJson11? NotApplicableAnswer { get; set; }
-
- ///
- /// Contains text of additional choice.
- ///
- [JsonProperty("otherAnswers")]
- public AdditionalChoiceJson11? OtherAnswers { get; set; }
-
- ///
- /// A boolean indicating whether the question is mandatory or not.
- ///
- [JsonProperty("required")]
- public bool? Required { get; set; }
-
- ///
- /// text of the question.
- ///
- [JsonProperty("text")]
- public string? Text { get; set; }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/LeadQualificationQuestionJsonType.cs b/packages/csharp/src/Cvent/SDK/Models/Components/LeadQualificationQuestionJsonType.cs
deleted file mode 100644
index 43ac786f..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/LeadQualificationQuestionJsonType.cs
+++ /dev/null
@@ -1,61 +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 question.
- ///
- public enum LeadQualificationQuestionJsonType
- {
- [JsonProperty("MultiChoice")] MultiChoice,
- [JsonProperty("SingleChoice")] SingleChoice,
- [JsonProperty("Rating")] Rating,
- [JsonProperty("OpenEndedTextOneLine")] OpenEndedTextOneLine,
- [JsonProperty("OpenEndedTextCommentBox")] OpenEndedTextCommentBox,
- [JsonProperty("OpenEndedDateTime")] OpenEndedDateTime,
- }
-
- public static class LeadQualificationQuestionJsonTypeExtension
- {
- public static string Value(this LeadQualificationQuestionJsonType value)
- {
- return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString()) [0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
- }
-
- public static LeadQualificationQuestionJsonType ToEnum(this string value)
- {
- foreach (var field in typeof(LeadQualificationQuestionJsonType).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 LeadQualificationQuestionJsonType)
- {
- return (LeadQualificationQuestionJsonType)enumVal;
- }
- }
- }
-
- throw new Exception($"Unknown value {value} for enum LeadQualificationQuestionJsonType");
- }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/LeadQualificationQuestionType.cs b/packages/csharp/src/Cvent/SDK/Models/Components/LeadQualificationQuestionType.cs
new file mode 100644
index 00000000..f7a480a2
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/LeadQualificationQuestionType.cs
@@ -0,0 +1,61 @@
+//------------------------------------------------------------------------------
+//
+// 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 question.
+ ///
+ public enum LeadQualificationQuestionType
+ {
+ [JsonProperty("MultiChoice")] MultiChoice,
+ [JsonProperty("SingleChoice")] SingleChoice,
+ [JsonProperty("Rating")] Rating,
+ [JsonProperty("OpenEndedTextOneLine")] OpenEndedTextOneLine,
+ [JsonProperty("OpenEndedTextCommentBox")] OpenEndedTextCommentBox,
+ [JsonProperty("OpenEndedDateTime")] OpenEndedDateTime,
+ }
+
+ public static class LeadQualificationQuestionTypeExtension
+ {
+ public static string Value(this LeadQualificationQuestionType value)
+ {
+ return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString()) [0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
+ }
+
+ public static LeadQualificationQuestionType ToEnum(this string value)
+ {
+ foreach (var field in typeof(LeadQualificationQuestionType).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 LeadQualificationQuestionType)
+ {
+ return (LeadQualificationQuestionType)enumVal;
+ }
+ }
+ }
+
+ throw new Exception($"Unknown value {value} for enum LeadQualificationQuestionType");
+ }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/LeadQualificationQuestionsListResponse.cs b/packages/csharp/src/Cvent/SDK/Models/Components/LeadQualificationQuestionsListResponse.cs
index 24dd575c..72aeeeb3 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/LeadQualificationQuestionsListResponse.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/LeadQualificationQuestionsListResponse.cs
@@ -23,6 +23,6 @@ public class LeadQualificationQuestionsListResponse
/// Collection of lead qualification questions.
///
[JsonProperty("data")]
- public List? Data { get; set; }
+ public List? Data { get; set; }
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/LeadSource.cs b/packages/csharp/src/Cvent/SDK/Models/Components/LeadSource.cs
index 2c5dbe59..be54d992 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/LeadSource.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/LeadSource.cs
@@ -19,7 +19,7 @@ namespace Cvent.SDK.Models.Components
public class LeadSource
{
///
- /// Unique identifier for source generating the RFP. Details about this lead source section can be fetched using lead source API. (under development currently)
+ /// Unique identifier for source generating the RFP. Details about this lead source can be fetched using lead source API.
///
[JsonProperty("id")]
public string? Id { get; set; }
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/LeadSourceJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/LeadSourceJson.cs
index 4f5d66f5..ff3ec34e 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/LeadSourceJson.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/LeadSourceJson.cs
@@ -19,7 +19,7 @@ namespace Cvent.SDK.Models.Components
public class LeadSourceJson
{
///
- /// Unique identifier for source generating the RFP. Details about this lead source section can be fetched using lead source API. (under development currently)
+ /// Unique identifier for source generating the RFP. Details about this lead source can be fetched using lead source API.
///
[JsonProperty("id")]
public string? Id { get; set; }
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/LeadSourceSectionJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/LeadSourceSectionJson.cs
index 3d5654d7..f67a05a1 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/LeadSourceSectionJson.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/LeadSourceSectionJson.cs
@@ -18,7 +18,7 @@ namespace Cvent.SDK.Models.Components
public class LeadSourceSectionJson
{
///
- /// Unique identifier for sub area of source generating the RFP. Details about this lead source section can be fetched using lead source section API (under development currently).
+ /// Unique identifier for sub area of source generating the RFP. Details about this lead source section can be fetched using lead source section API.
///
[JsonProperty("id")]
public string? Id { get; set; }
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/LeadType.cs b/packages/csharp/src/Cvent/SDK/Models/Components/LeadType.cs
new file mode 100644
index 00000000..945dd5d6
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/LeadType.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;
+
+ ///
+ /// The type of lead.
+ ///
+ public enum LeadType
+ {
+ [JsonProperty("leadcapture")] Leadcapture,
+ [JsonProperty("inbound")] Inbound,
+ [JsonProperty("appointment")] Appointment,
+ }
+
+ public static class LeadTypeExtension
+ {
+ public static string Value(this LeadType value)
+ {
+ return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString()) [0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
+ }
+
+ public static LeadType ToEnum(this string value)
+ {
+ foreach (var field in typeof(LeadType).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 LeadType)
+ {
+ return (LeadType)enumVal;
+ }
+ }
+ }
+
+ throw new Exception($"Unknown value {value} for enum LeadType");
+ }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/LeadsPaginatedResponse.cs b/packages/csharp/src/Cvent/SDK/Models/Components/LeadsPaginatedResponse.cs
index 777f9282..39c73808 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/LeadsPaginatedResponse.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/LeadsPaginatedResponse.cs
@@ -23,12 +23,12 @@ public class LeadsPaginatedResponse
/// Represents pagination information for a collection of resources.
///
[JsonProperty("paging")]
- public PagingJson? Paging { get; set; }
+ public Paging? Paging { get; set; }
///
/// Collection of leads.
///
[JsonProperty("data")]
- public List? Data { get; set; }
+ public List? Data { get; set; }
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/Link.cs b/packages/csharp/src/Cvent/SDK/Models/Components/Link.cs
new file mode 100644
index 00000000..77923583
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/Link.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;
+
+ ///
+ /// Represents a link to a related resource.
+ ///
+ public class Link
+ {
+ ///
+ /// A url provided that can be followed for linking.
+ ///
+ [JsonProperty("href")]
+ public string Href { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/MeetingRequestCustomFieldJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/MeetingRequestCustomFieldJson.cs
index f557cf43..03cc116f 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/MeetingRequestCustomFieldJson.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/MeetingRequestCustomFieldJson.cs
@@ -107,6 +107,6 @@ public class MeetingRequestCustomFieldJson
/// List of non-null answer types applicable to the question, such as `Other` or `NA`. This field is omitted when no non-default answer type is defined for the question.
///
[JsonProperty("answerTypes")]
- public List? AnswerTypes { get; set; }
+ public List? AnswerTypes { get; set; }
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/MeetingRequestEvent.cs b/packages/csharp/src/Cvent/SDK/Models/Components/MeetingRequestEvent.cs
index fbde9781..655ae10d 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/MeetingRequestEvent.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/MeetingRequestEvent.cs
@@ -18,7 +18,7 @@ namespace Cvent.SDK.Models.Components
public class MeetingRequestEvent
{
///
- /// Event ID.
+ /// Event ID. This field may be absent immediately after creation when the meeting request form is configured to auto-create an event on submission, as event creation is processed asynchronously.
///
[JsonProperty("id")]
public string? Id { get; set; }
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/MeetingRequestQuestionJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/MeetingRequestQuestionJson.cs
index 277d4071..2e1387f1 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/MeetingRequestQuestionJson.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/MeetingRequestQuestionJson.cs
@@ -65,7 +65,7 @@ public class MeetingRequestQuestionJson
/// In all other cases, `answerType` is not expected to be set.
///
[JsonProperty("answerType")]
- public AnswerTypeJson1? AnswerType { get; set; }
+ public AnswerTypeJson? AnswerType { get; set; }
///
/// The secondary value of the question. This can be the other answer of choice questions which have `Other` as an answer type.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/PaginatedExistingMember.cs b/packages/csharp/src/Cvent/SDK/Models/Components/PaginatedExistingMember.cs
index 21c1bb8b..c5fc69c9 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/PaginatedExistingMember.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/PaginatedExistingMember.cs
@@ -23,12 +23,12 @@ public class PaginatedExistingMember
/// Represents pagination information for a collection of resources.
///
[JsonProperty("paging")]
- public PagingJson Paging { get; set; } = default!;
+ public Paging Paging { get; set; } = default!;
///
/// Collection of Events+ members.
///
[JsonProperty("data")]
- public List Data { get; set; } = default!;
+ public List Data { get; set; } = default!;
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/PaginationLinks.cs b/packages/csharp/src/Cvent/SDK/Models/Components/PaginationLinks.cs
new file mode 100644
index 00000000..b24790fe
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/PaginationLinks.cs
@@ -0,0 +1,39 @@
+//------------------------------------------------------------------------------
+//
+// 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;
+
+ ///
+ /// Represents pagination links for navigating between pages of data.
+ ///
+ public class PaginationLinks
+ {
+ ///
+ /// Represents a link to a related resource.
+ ///
+ [JsonProperty("next")]
+ public Link? Next { get; set; }
+
+ ///
+ /// Represents a link to a related resource.
+ ///
+ [JsonProperty("self")]
+ public Link? Self { get; set; }
+
+ ///
+ /// Represents a link to a related resource.
+ ///
+ [JsonProperty("prev")]
+ public Link? Prev { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/Paging.cs b/packages/csharp/src/Cvent/SDK/Models/Components/Paging.cs
new file mode 100644
index 00000000..1007492c
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/Paging.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.Models.Components;
+ using Cvent.SDK.Utils;
+ using Newtonsoft.Json;
+
+ ///
+ /// Represents pagination information for a collection of resources.
+ ///
+ public class Paging
+ {
+ ///
+ /// The pagination token for the previous page, if one exists. You can use this token to navigate to the previous page of data.
+ ///
+ [JsonProperty("previousToken")]
+ public string? PreviousToken { get; set; }
+
+ ///
+ /// The pagination token for the next page. If this value is present in the response, there is another page of data you can fetch.
+ ///
+ [JsonProperty("nextToken")]
+ public string? NextToken { get; set; }
+
+ ///
+ /// The pagination token for the current page.
+ ///
+ [JsonProperty("currentToken")]
+ public string? CurrentToken { get; set; }
+
+ ///
+ /// The number of records to return on the page. Not to exceed 200.
+ ///
+ [JsonProperty("limit")]
+ public long? Limit { get; set; }
+
+ ///
+ /// The total number of records available. This field may return blank, even if there are more records. To confirm if there are more records, check the `nextToken` field.
+ ///
+ [JsonProperty("totalCount")]
+ public long? TotalCount { get; set; }
+
+ ///
+ /// Represents pagination links for navigating between pages of data.
+ ///
+ [JsonProperty("_links")]
+ public PaginationLinks Links { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/PagingJson23.cs b/packages/csharp/src/Cvent/SDK/Models/Components/PagingJson23.cs
new file mode 100644
index 00000000..fb058c72
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/PagingJson23.cs
@@ -0,0 +1,51 @@
+//------------------------------------------------------------------------------
+//
+// 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;
+
+ ///
+ /// Represents pagination information for a collection of resources.
+ ///
+ public class PagingJson23
+ {
+ ///
+ /// The pagination token for the next page; if available. You can use this to determine if there is additional data to fetch.
+ ///
+ [JsonProperty("nextToken")]
+ public string? NextToken { get; set; }
+
+ ///
+ /// The pagination token for the current page.
+ ///
+ [JsonProperty("currentToken")]
+ public string? CurrentToken { get; set; }
+
+ ///
+ /// The number of records to return on the page not to exceed 200.
+ ///
+ [JsonProperty("limit")]
+ public long? Limit { get; set; }
+
+ ///
+ /// The total number of records available.
+ ///
+ [JsonProperty("totalCount")]
+ public long? TotalCount { get; set; }
+
+ ///
+ /// Represents pagination links for navigating between pages of data.
+ ///
+ [JsonProperty("_links")]
+ public PaginationLinksJson Links { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/PagingJson25.cs b/packages/csharp/src/Cvent/SDK/Models/Components/PagingJson25.cs
deleted file mode 100644
index 36d66c7a..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/PagingJson25.cs
+++ /dev/null
@@ -1,51 +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;
-
- ///
- /// Represents pagination information for a collection of resources.
- ///
- public class PagingJson25
- {
- ///
- /// The pagination token for the next page; if available. You can use this to determine if there is additional data to fetch.
- ///
- [JsonProperty("nextToken")]
- public string? NextToken { get; set; }
-
- ///
- /// The pagination token for the current page.
- ///
- [JsonProperty("currentToken")]
- public string? CurrentToken { get; set; }
-
- ///
- /// The number of records to return on the page not to exceed 200.
- ///
- [JsonProperty("limit")]
- public long? Limit { get; set; }
-
- ///
- /// The total number of records available.
- ///
- [JsonProperty("totalCount")]
- public long? TotalCount { get; set; }
-
- ///
- /// Represents pagination links for navigating between pages of data.
- ///
- [JsonProperty("_links")]
- public PaginationLinksJson Links { get; set; } = default!;
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/PaymentInfoJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/PaymentInfoJson.cs
index 18de09ec..09919dc8 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/PaymentInfoJson.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/PaymentInfoJson.cs
@@ -34,7 +34,7 @@ public class PaymentInfoJson
/// Address details. Required to create/update a guest's reservation if the hotel/event requires an address in reservations.
///
[JsonProperty("address")]
- public AddressJson3? Address { get; set; }
+ public AddressJson2? Address { get; set; }
///
/// Phone number.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ProcessFormSubmissionJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ProcessFormSubmissionJson.cs
index ae62d9db..f117f3ad 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ProcessFormSubmissionJson.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ProcessFormSubmissionJson.cs
@@ -48,13 +48,13 @@ public class ProcessFormSubmissionJson
/// The unique ID representing the process form submission.
///
[JsonProperty("id")]
- public string? Id { get; set; }
+ public string Id { get; set; } = default!;
///
/// The event which the process form submission is associated with.
///
[JsonProperty("event")]
- public ProcessFormSubmissionJsonEvent? Event { get; set; }
+ public ProcessFormSubmissionJsonEvent Event { get; set; } = default!;
///
/// An object that contains the process form ID.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/Property.cs b/packages/csharp/src/Cvent/SDK/Models/Components/Property.cs
index bcc7117d..c4a07953 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/Property.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/Property.cs
@@ -90,7 +90,7 @@ public class Property
/// A physical address.
///
[JsonProperty("address")]
- public AddressJson5? Address { get; set; }
+ public AddressJson4? Address { get; set; }
///
/// Collection of external codes for a property. This includes GDS nd other codes used to identify a property in external systems.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/PublicUsagePlan.cs b/packages/csharp/src/Cvent/SDK/Models/Components/PublicUsagePlan.cs
index 4241a934..89be88ed 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/PublicUsagePlan.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/PublicUsagePlan.cs
@@ -46,6 +46,6 @@ public class PublicUsagePlan
/// Object representing the target usage plan and the date when the current plan is scheduled to revert to it. This object is only present when a switch-back is scheduled.
///
[JsonProperty("switchBackPlan")]
- public SwitchBackTargetUsagePlanJson? SwitchBackPlan { get; set; }
+ public SwitchBackTargetUsagePlan? SwitchBackPlan { get; set; }
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/QuestionJson2.cs b/packages/csharp/src/Cvent/SDK/Models/Components/QuestionJson2.cs
index fdd682c6..0aa2d920 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/QuestionJson2.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/QuestionJson2.cs
@@ -84,7 +84,7 @@ public class QuestionJson2
/// List of choices for the question.
///
[JsonProperty("choices")]
- public List? Choices { get; set; }
+ public List? Choices { get; set; }
///
/// List of categories for the question.
@@ -102,13 +102,13 @@ public class QuestionJson2
/// Contains text of additional choice i.e N/A choice or otherAnswer choice.
///
[JsonProperty("notApplicableAnswer")]
- public AdditionalChoiceJson2? NotApplicableAnswer { get; set; }
+ public AdditionalChoiceJson1? NotApplicableAnswer { get; set; }
///
/// Contains text of additional choice i.e N/A choice or otherAnswer choice.
///
[JsonProperty("otherAnswer")]
- public AdditionalChoiceJson2? OtherAnswer { get; set; }
+ public AdditionalChoiceJson1? OtherAnswer { get; set; }
///
/// Text Value of Comments Input box placeholder.
@@ -126,7 +126,7 @@ public class QuestionJson2
/// List of fields for form/matrix questions.
///
[JsonProperty("fields")]
- public List? Fields { get; set; }
+ public List? Fields { get; set; }
///
/// Max possible score.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/QuestionResponseJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/QuestionResponseJson.cs
index 28ce1ad3..ab0a3456 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/QuestionResponseJson.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/QuestionResponseJson.cs
@@ -29,6 +29,6 @@ public class QuestionResponseJson
/// List of answers.
///
[JsonProperty("answers")]
- public List? Answers { get; set; }
+ public List? Answers { get; set; }
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/RegistrationPackRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Components/RegistrationPackRequest.cs
index e9aa49bb..fa3e7df7 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/RegistrationPackRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/RegistrationPackRequest.cs
@@ -23,18 +23,18 @@ public class RegistrationPackRequest
/// The Associated Event.
///
[JsonProperty("event")]
- public EventJson6 Event { get; set; } = default!;
+ public Event1 Event { get; set; } = default!;
///
/// The Associated Exhibitor.
///
[JsonProperty("exhibitor")]
- public ExhibitorJson Exhibitor { get; set; } = default!;
+ public Models.Components.Exhibitor Exhibitor { get; set; } = default!;
///
/// An array of capacities for the registration pack.
///
[JsonProperty("capacities")]
- public List Capacities { get; set; } = default!;
+ public List Capacities { get; set; } = default!;
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/RegistrationPackResponse.cs b/packages/csharp/src/Cvent/SDK/Models/Components/RegistrationPackResponse.cs
index 19724d7c..05ccf723 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/RegistrationPackResponse.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/RegistrationPackResponse.cs
@@ -29,18 +29,18 @@ public class RegistrationPackResponse
/// The Associated Event.
///
[JsonProperty("event")]
- public EventJson6 Event { get; set; } = default!;
+ public Event1 Event { get; set; } = default!;
///
/// The Associated Exhibitor.
///
[JsonProperty("exhibitor")]
- public ExhibitorJson Exhibitor { get; set; } = default!;
+ public Models.Components.Exhibitor Exhibitor { get; set; } = default!;
///
/// Capacities allocated per registration type for this exhibitor's registration pack.
///
[JsonProperty("capacities")]
- public List Capacities { get; set; } = default!;
+ public List Capacities { get; set; } = default!;
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/RegistrationTypeUpdate.cs b/packages/csharp/src/Cvent/SDK/Models/Components/RegistrationTypeUpdate.cs
index e8400865..2496798f 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/RegistrationTypeUpdate.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/RegistrationTypeUpdate.cs
@@ -77,6 +77,6 @@ public class RegistrationTypeUpdate
/// Represents capacity statistics of the registration type.
///
[JsonProperty("capacity")]
- public CapacityJson1? Capacity { get; set; }
+ public CapacityJson? Capacity { get; set; }
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/RegistrationTypeUpdateInput.cs b/packages/csharp/src/Cvent/SDK/Models/Components/RegistrationTypeUpdateInput.cs
index 5a0a0b67..2657c4c0 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/RegistrationTypeUpdateInput.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/RegistrationTypeUpdateInput.cs
@@ -41,6 +41,6 @@ public class RegistrationTypeUpdateInput
/// Represents capacity statistics of the registration type.
///
[JsonProperty("capacity")]
- public CapacityJson1Input? Capacity { get; set; }
+ public CapacityJsonInput? Capacity { get; set; }
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/RequestedMeetingRequestQuestionJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/RequestedMeetingRequestQuestionJson.cs
index 4de77864..88c3c60b 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/RequestedMeetingRequestQuestionJson.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/RequestedMeetingRequestQuestionJson.cs
@@ -62,7 +62,7 @@ public class RequestedMeetingRequestQuestionJson
/// In all other cases, `answerType` is not expected to be set.
///
[JsonProperty("answerType")]
- public AnswerTypeJson1? AnswerType { get; set; }
+ public AnswerTypeJson? AnswerType { get; set; }
///
/// The secondary value of the question. This can be the other answer of choice questions which have `Other` as an answer type.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ReservationGuestJsonInput.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ReservationGuestJsonInput.cs
index 1227f38b..1db5e23a 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ReservationGuestJsonInput.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ReservationGuestJsonInput.cs
@@ -95,7 +95,7 @@ public class ReservationGuestJsonInput
/// Address details. Required to create/update a guest's reservation if the hotel/event requires an address in reservations.
///
[JsonProperty("homeAddress")]
- public AddressJson3? HomeAddress { get; set; }
+ public AddressJson2? HomeAddress { get; set; }
///
/// Payment information.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ReservationGuestJsonOutput.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ReservationGuestJsonOutput.cs
index 100d6552..136c3424 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ReservationGuestJsonOutput.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ReservationGuestJsonOutput.cs
@@ -95,7 +95,7 @@ public class ReservationGuestJsonOutput
/// Address details. Required to create/update a guest's reservation if the hotel/event requires an address in reservations.
///
[JsonProperty("homeAddress")]
- public AddressJson3? HomeAddress { get; set; }
+ public AddressJson2? HomeAddress { get; set; }
///
/// Payment information.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ReservationPaymentInfoJsonInput.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ReservationPaymentInfoJsonInput.cs
index 5d27615c..2dba461a 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ReservationPaymentInfoJsonInput.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ReservationPaymentInfoJsonInput.cs
@@ -34,7 +34,7 @@ public class ReservationPaymentInfoJsonInput
/// Address details. Required to create/update a guest's reservation if the hotel/event requires an address in reservations.
///
[JsonProperty("address")]
- public AddressJson3? Address { get; set; }
+ public AddressJson2? Address { get; set; }
///
/// Phone number.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ReservationPaymentInfoJsonOutput.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ReservationPaymentInfoJsonOutput.cs
index 18c187b0..e181bc88 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ReservationPaymentInfoJsonOutput.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ReservationPaymentInfoJsonOutput.cs
@@ -34,7 +34,7 @@ public class ReservationPaymentInfoJsonOutput
/// Address details. Required to create/update a guest's reservation if the hotel/event requires an address in reservations.
///
[JsonProperty("address")]
- public AddressJson3? Address { get; set; }
+ public AddressJson2? Address { get; set; }
///
/// Phone number.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/RespondentJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/RespondentJson.cs
index 6e03decc..721a56e7 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/RespondentJson.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/RespondentJson.cs
@@ -124,7 +124,7 @@ public class RespondentJson
/// Detail object of an event which is associated to a survey.
///
[JsonProperty("event")]
- public EventJson7? Event { get; set; }
+ public EventJson5? Event { get; set; }
///
/// The reference to the related entity. Contains only the ID of the related entity.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ResponseJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ResponseJson.cs
index a8b0f9f3..283bef56 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ResponseJson.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ResponseJson.cs
@@ -63,7 +63,7 @@ public class ResponseJson
/// List of responded survey answers.
///
[JsonProperty("answers")]
- public List Answers { get; set; } = default!;
+ public List Answers { get; set; } = default!;
///
/// Answer score (This property is not supported).
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ScoresJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ScoresJson.cs
index 8f3e3554..3bdbd267 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ScoresJson.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ScoresJson.cs
@@ -53,7 +53,7 @@ public class ScoresJson
/// An event reference used in attendee insights to identify the event context for engagement data.
///
[JsonProperty("event")]
- public EventJson9 Event { get; set; } = default!;
+ public EventJson7 Event { get; set; } = default!;
///
/// The number of points earned by an attendee in this engagement score.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/SendEmailEventRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Components/SendEmailEventRequest.cs
index 4c89e440..da5c6e0c 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/SendEmailEventRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/SendEmailEventRequest.cs
@@ -23,7 +23,7 @@ public class SendEmailEventRequest
/// Details of the event.
///
[JsonProperty("event")]
- public EventJson11 Event { get; set; } = default!;
+ public EventJson9 Event { get; set; } = default!;
///
/// Details of an email to be send.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/SendEmailEventResponse.cs b/packages/csharp/src/Cvent/SDK/Models/Components/SendEmailEventResponse.cs
index b5a9b185..2aa03a9d 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/SendEmailEventResponse.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/SendEmailEventResponse.cs
@@ -66,7 +66,7 @@ public class SendEmailEventResponse
/// Details of the event.
///
[JsonProperty("event")]
- public EventJson11 Event { get; set; } = default!;
+ public EventJson9 Event { get; set; } = default!;
///
/// Details of an email to be send.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/SocialMediaLinks.cs b/packages/csharp/src/Cvent/SDK/Models/Components/SocialMediaLinks.cs
new file mode 100644
index 00000000..cc5effd2
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/SocialMediaLinks.cs
@@ -0,0 +1,45 @@
+//------------------------------------------------------------------------------
+//
+// 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;
+
+ ///
+ /// Member's social media links.
+ ///
+ public class SocialMediaLinks
+ {
+ ///
+ /// Represents a link to a related resource.
+ ///
+ [JsonProperty("facebookUrl")]
+ public Link? FacebookUrl { get; set; }
+
+ ///
+ /// Represents a link to a related resource.
+ ///
+ [JsonProperty("twitterUrl")]
+ public Link? TwitterUrl { get; set; }
+
+ ///
+ /// Represents a link to a related resource.
+ ///
+ [JsonProperty("linkedinUrl")]
+ public Link? LinkedinUrl { get; set; }
+
+ ///
+ /// Represents a link to a related resource.
+ ///
+ [JsonProperty("websiteUrl")]
+ public Link? WebsiteUrl { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/SocialMediaLinksJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/SocialMediaLinksJson.cs
deleted file mode 100644
index df2cdb3c..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/SocialMediaLinksJson.cs
+++ /dev/null
@@ -1,45 +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;
-
- ///
- /// Member's social media links.
- ///
- public class SocialMediaLinksJson
- {
- ///
- /// Represents a link to a related resource.
- ///
- [JsonProperty("facebookUrl")]
- public LinkJson? FacebookUrl { get; set; }
-
- ///
- /// Represents a link to a related resource.
- ///
- [JsonProperty("twitterUrl")]
- public LinkJson? TwitterUrl { get; set; }
-
- ///
- /// Represents a link to a related resource.
- ///
- [JsonProperty("linkedinUrl")]
- public LinkJson? LinkedinUrl { get; set; }
-
- ///
- /// Represents a link to a related resource.
- ///
- [JsonProperty("websiteUrl")]
- public LinkJson? WebsiteUrl { get; set; }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/SponsorshipLevel.cs b/packages/csharp/src/Cvent/SDK/Models/Components/SponsorshipLevel.cs
new file mode 100644
index 00000000..d0bd4193
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/SponsorshipLevel.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;
+
+ ///
+ /// Associated sponsorship level for an exhibitor.
+ ///
+ public class SponsorshipLevel
+ {
+ ///
+ /// Sponsorship Level Id.
+ ///
+ [JsonProperty("id")]
+ public string Id { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/SponsorshipLevelJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/SponsorshipLevelJson.cs
deleted file mode 100644
index 6d83f8df..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/SponsorshipLevelJson.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;
-
- ///
- /// Associated sponsorship level for an exhibitor.
- ///
- public class SponsorshipLevelJson
- {
- ///
- /// Sponsorship Level Id.
- ///
- [JsonProperty("id")]
- public string Id { get; set; } = default!;
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/StandardSurveyQuestionJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/StandardSurveyQuestionJson.cs
index 3d5ef7ca..fc3a07b3 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/StandardSurveyQuestionJson.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/StandardSurveyQuestionJson.cs
@@ -84,7 +84,7 @@ public class StandardSurveyQuestionJson
/// List of choices for the question.
///
[JsonProperty("choices")]
- public List? Choices { get; set; }
+ public List? Choices { get; set; }
///
/// List of categories for the question.
@@ -102,13 +102,13 @@ public class StandardSurveyQuestionJson
/// Contains text of additional choice i.e N/A choice or otherAnswer choice.
///
[JsonProperty("notApplicableAnswer")]
- public AdditionalChoiceJson2? NotApplicableAnswer { get; set; }
+ public AdditionalChoiceJson1? NotApplicableAnswer { get; set; }
///
/// Contains text of additional choice i.e N/A choice or otherAnswer choice.
///
[JsonProperty("otherAnswer")]
- public AdditionalChoiceJson2? OtherAnswer { get; set; }
+ public AdditionalChoiceJson1? OtherAnswer { get; set; }
///
/// Text Value of Comments Input box placeholder.
@@ -126,7 +126,7 @@ public class StandardSurveyQuestionJson
/// List of fields for form/matrix questions.
///
[JsonProperty("fields")]
- public List? Fields { get; set; }
+ public List? Fields { get; set; }
///
/// Max possible score.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/StandardSurveyResponse.cs b/packages/csharp/src/Cvent/SDK/Models/Components/StandardSurveyResponse.cs
index 3f82c3ce..51af7f7d 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/StandardSurveyResponse.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/StandardSurveyResponse.cs
@@ -63,7 +63,7 @@ public class StandardSurveyResponse
/// List of responded survey answers.
///
[JsonProperty("answers")]
- public List Answers { get; set; } = default!;
+ public List Answers { get; set; } = default!;
///
/// Answer score (This property is not supported).
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/StandardSurveyResponseInput.cs b/packages/csharp/src/Cvent/SDK/Models/Components/StandardSurveyResponseInput.cs
index 1a3629aa..a3744078 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/StandardSurveyResponseInput.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/StandardSurveyResponseInput.cs
@@ -29,7 +29,7 @@ public class StandardSurveyResponseInput
/// List of responded survey answers.
///
[JsonProperty("answers")]
- public List Answers { get; set; } = default!;
+ public List Answers { get; set; } = default!;
///
/// The reference to the related entity. Contains only the ID of the related entity.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/SurveyJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/SurveyJson.cs
index 6c54d636..44ebec0b 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/SurveyJson.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/SurveyJson.cs
@@ -114,6 +114,6 @@ public class SurveyJson
/// List of events with which this survey is linked.
///
[JsonProperty("events")]
- public List? Events { get; set; }
+ public List? Events { get; set; }
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/SwitchBackTargetUsagePlan.cs b/packages/csharp/src/Cvent/SDK/Models/Components/SwitchBackTargetUsagePlan.cs
new file mode 100644
index 00000000..bb3aa220
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/SwitchBackTargetUsagePlan.cs
@@ -0,0 +1,33 @@
+//------------------------------------------------------------------------------
+//
+// 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;
+
+ ///
+ /// Object representing the target usage plan and the date when the current plan is scheduled to revert to it. This object is only present when a switch-back is scheduled.
+ ///
+ public class SwitchBackTargetUsagePlan
+ {
+ ///
+ /// Name of the target usage plan to switch back to. This field is only present when the usage plan is scheduled to revert to a previous plan.
+ ///
+ [JsonProperty("name")]
+ public string Name { get; set; } = default!;
+
+ ///
+ /// 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.
+ ///
+ [JsonProperty("time")]
+ public DateTime Time { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/SwitchBackTargetUsagePlanJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/SwitchBackTargetUsagePlanJson.cs
deleted file mode 100644
index 7d818c79..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/SwitchBackTargetUsagePlanJson.cs
+++ /dev/null
@@ -1,33 +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;
-
- ///
- /// Object representing the target usage plan and the date when the current plan is scheduled to revert to it. This object is only present when a switch-back is scheduled.
- ///
- public class SwitchBackTargetUsagePlanJson
- {
- ///
- /// Name of the target usage plan to switch back to. This field is only present when the usage plan is scheduled to revert to a previous plan.
- ///
- [JsonProperty("name")]
- public string Name { get; set; } = default!;
-
- ///
- /// 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.
- ///
- [JsonProperty("time")]
- public DateTime Time { get; set; } = default!;
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/Three.cs b/packages/csharp/src/Cvent/SDK/Models/Components/Three.cs
index 4a2131da..0bdb52d8 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/Three.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/Three.cs
@@ -23,7 +23,7 @@ public class Three
/// Choices of custom fields.
///
[JsonProperty("choices")]
- public List? Choices { get; set; }
+ public List? Choices { get; set; }
///
/// 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.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/ThreeInput.cs b/packages/csharp/src/Cvent/SDK/Models/Components/ThreeInput.cs
index 00b3b594..3114a45a 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/ThreeInput.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/ThreeInput.cs
@@ -23,7 +23,7 @@ public class ThreeInput
/// Choices of custom fields.
///
[JsonProperty("choices")]
- public List? Choices { get; set; }
+ public List? Choices { get; set; }
///
/// 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.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/TravelAccount.cs b/packages/csharp/src/Cvent/SDK/Models/Components/TravelAccount.cs
index e7fe064e..5bd6a6cb 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/TravelAccount.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/TravelAccount.cs
@@ -72,6 +72,6 @@ public class TravelAccount
/// List of addresses associated with the travel account.
///
[JsonProperty("addresses")]
- public List? Addresses { get; set; }
+ public List? Addresses { get; set; }
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/UTMOverride.cs b/packages/csharp/src/Cvent/SDK/Models/Components/UTMOverride.cs
new file mode 100644
index 00000000..71db4369
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/UTMOverride.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;
+
+ ///
+ /// Specifies how UTM (urchin tracking module: a key and value that is attached to URLs for the purpose of identifying and tracking traffic) settings will override passed in items.
+ ///
+ public enum UTMOverride
+ {
+ [JsonProperty("use-existing-parameter")] UseExistingParameter,
+ [JsonProperty("use-custom-parameter")] UseCustomParameter,
+ }
+
+ public static class UTMOverrideExtension
+ {
+ public static string Value(this UTMOverride value)
+ {
+ return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString()) [0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
+ }
+
+ public static UTMOverride ToEnum(this string value)
+ {
+ foreach (var field in typeof(UTMOverride).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 UTMOverride)
+ {
+ return (UTMOverride)enumVal;
+ }
+ }
+ }
+
+ throw new Exception($"Unknown value {value} for enum UTMOverride");
+ }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/Usage.cs b/packages/csharp/src/Cvent/SDK/Models/Components/Usage.cs
new file mode 100644
index 00000000..9855cfa4
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/Usage.cs
@@ -0,0 +1,44 @@
+//------------------------------------------------------------------------------
+//
+// 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 usage object represents the usage of a resource on a given day.
+ ///
+ public class Usage
+ {
+ ///
+ /// The number of API requests that have been made in the current usage period. Usage periods reset daily at midnight UTC.
+ ///
+ [JsonProperty("used")]
+ public long Used { get; set; } = default!;
+
+ ///
+ /// The number of API requests remaining in the current usage period. Usage periods reset daily at midnight UTC.
+ ///
+ [JsonProperty("remaining")]
+ public long Remaining { get; set; } = default!;
+
+ ///
+ /// The total number of API requests allowed in the current usage period. Usage periods reset daily at midnight UTC.
+ ///
+ [JsonProperty("total")]
+ public long Total { get; set; } = default!;
+
+ ///
+ /// The date the usage occurred, as an ISO8601 date.
+ ///
+ [JsonProperty("date")]
+ public string Date { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/UsageJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/UsageJson.cs
deleted file mode 100644
index 37020b03..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/UsageJson.cs
+++ /dev/null
@@ -1,44 +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 usage object represents the usage of a resource on a given day.
- ///
- public class UsageJson
- {
- ///
- /// The number of API requests that have been made in the current usage period. Usage periods reset daily at midnight UTC.
- ///
- [JsonProperty("used")]
- public long Used { get; set; } = default!;
-
- ///
- /// The number of API requests remaining in the current usage period. Usage periods reset daily at midnight UTC.
- ///
- [JsonProperty("remaining")]
- public long Remaining { get; set; } = default!;
-
- ///
- /// The total number of API requests allowed in the current usage period. Usage periods reset daily at midnight UTC.
- ///
- [JsonProperty("total")]
- public long Total { get; set; } = default!;
-
- ///
- /// The date the usage occurred, as an ISO8601 date.
- ///
- [JsonProperty("date")]
- public string Date { get; set; } = default!;
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/UsagePaginatedResponse.cs b/packages/csharp/src/Cvent/SDK/Models/Components/UsagePaginatedResponse.cs
index 06505527..1c87d522 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/UsagePaginatedResponse.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/UsagePaginatedResponse.cs
@@ -23,12 +23,12 @@ public class UsagePaginatedResponse
/// Represents pagination information for a collection of resources.
///
[JsonProperty("paging")]
- public PagingJson? Paging { get; set; }
+ public Paging? Paging { get; set; }
///
/// Collection of usage objects.
///
[JsonProperty("data")]
- public List Data { get; set; } = default!;
+ public List Data { get; set; } = default!;
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/User.cs b/packages/csharp/src/Cvent/SDK/Models/Components/User.cs
index c8d4a647..9a238c9a 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/User.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/User.cs
@@ -71,7 +71,7 @@ public class User
/// The address of the user. The user can have only one address. <br> 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.
///
[JsonProperty("addresses")]
- public List? Addresses { get; set; }
+ public List? Addresses { get; set; }
///
/// The type of the user.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/UserInput.cs b/packages/csharp/src/Cvent/SDK/Models/Components/UserInput.cs
index c3a4d250..e42c2f8d 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/UserInput.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/UserInput.cs
@@ -59,7 +59,7 @@ public class UserInput
/// The address of the user. The user can have only one address. <br> 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.
///
[JsonProperty("addresses")]
- public List? Addresses { get; set; }
+ public List? Addresses { get; set; }
///
/// The type of the user.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/UserJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/UserJson.cs
index ea82ef9f..8eb27796 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/UserJson.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/UserJson.cs
@@ -71,7 +71,7 @@ public class UserJson
/// The address of the user. The user can have only one address. <br> 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.
///
[JsonProperty("addresses")]
- public List? Addresses { get; set; }
+ public List? Addresses { get; set; }
///
/// The type of the user.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/UtmOverrideJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/UtmOverrideJson.cs
deleted file mode 100644
index 62872234..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/UtmOverrideJson.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;
-
- ///
- /// Specifies how UTM (urchin tracking module: a key and value that is attached to URLs for the purpose of identifying and tracking traffic) settings will override passed in items.
- ///
- public enum UtmOverrideJson
- {
- [JsonProperty("use-existing-parameter")] UseExistingParameter,
- [JsonProperty("use-custom-parameter")] UseCustomParameter,
- }
-
- public static class UtmOverrideJsonExtension
- {
- public static string Value(this UtmOverrideJson value)
- {
- return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString()) [0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
- }
-
- public static UtmOverrideJson ToEnum(this string value)
- {
- foreach (var field in typeof(UtmOverrideJson).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 UtmOverrideJson)
- {
- return (UtmOverrideJson)enumVal;
- }
- }
- }
-
- throw new Exception($"Unknown value {value} for enum UtmOverrideJson");
- }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/Uuid1.cs b/packages/csharp/src/Cvent/SDK/Models/Components/Uuid1.cs
new file mode 100644
index 00000000..aeffb6ff
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/Uuid1.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 related entity. Contains only the ID of the related entity.
+ ///
+ public class Uuid1
+ {
+ ///
+ /// A string that has to be a format matching the industry standard uuid.
+ ///
+ [JsonProperty("id")]
+ public string Id { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/VideoJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/VideoJson.cs
new file mode 100644
index 00000000..97a918d4
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/VideoJson.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 details of a video.
+ ///
+ public class VideoJson
+ {
+ ///
+ /// The unique ID of the video.
+ ///
+ [JsonProperty("id")]
+ public string? Id { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/VideoJson1.cs b/packages/csharp/src/Cvent/SDK/Models/Components/VideoJson1.cs
deleted file mode 100644
index 896d290c..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/VideoJson1.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;
-
- ///
- /// The details of a video.
- ///
- public class VideoJson1
- {
- ///
- /// The unique ID of the video.
- ///
- [JsonProperty("id")]
- public string? Id { get; set; }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/VideoViewJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/VideoViewJson.cs
index 6ea9116b..85446113 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/VideoViewJson.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/VideoViewJson.cs
@@ -42,7 +42,7 @@ public class VideoViewJson
/// The details of a video.
///
[JsonProperty("video")]
- public VideoJson1? Video { get; set; }
+ public VideoJson? Video { get; set; }
///
/// The view type of the video. Videos can be viewed live or as a recording.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/Weblink.cs b/packages/csharp/src/Cvent/SDK/Models/Components/Weblink.cs
index 77547b2d..aacfc5b4 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Components/Weblink.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/Weblink.cs
@@ -22,13 +22,13 @@ public class Weblink
/// The Associated Event.
///
[JsonProperty("event")]
- public EventJson6 Event { get; set; } = default!;
+ public Event1 Event { get; set; } = default!;
///
/// The Associated Exhibitor.
///
[JsonProperty("exhibitor")]
- public ExhibitorJson Exhibitor { get; set; } = default!;
+ public Models.Components.Exhibitor Exhibitor { get; set; } = default!;
///
/// Display name of the weblink.
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/WorkAddress.cs b/packages/csharp/src/Cvent/SDK/Models/Components/WorkAddress.cs
new file mode 100644
index 00000000..70e2d9bf
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Components/WorkAddress.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;
+
+ ///
+ /// Member's work address details.
+ ///
+ public class WorkAddress
+ {
+ ///
+ /// Member's work address city.
+ ///
+ [JsonProperty("city")]
+ public string? City { get; set; }
+
+ ///
+ /// Member's Work address state.
+ ///
+ [JsonProperty("state")]
+ public string? State { get; set; }
+
+ ///
+ /// Member's work address country.
+ ///
+ [JsonProperty("country")]
+ public string? Country { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Components/WorkAddressJson.cs b/packages/csharp/src/Cvent/SDK/Models/Components/WorkAddressJson.cs
deleted file mode 100644
index 1ef743df..00000000
--- a/packages/csharp/src/Cvent/SDK/Models/Components/WorkAddressJson.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;
-
- ///
- /// Member's work address details.
- ///
- public class WorkAddressJson
- {
- ///
- /// Member's work address city.
- ///
- [JsonProperty("city")]
- public string? City { get; set; }
-
- ///
- /// Member's Work address state.
- ///
- [JsonProperty("state")]
- public string? State { get; set; }
-
- ///
- /// Member's work address country.
- ///
- [JsonProperty("country")]
- public string? Country { get; set; }
- }
-}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/GetAttendeeByIdResponse.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/GetAttendeeByIdResponse.cs
index 51a2e669..3d471691 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/GetAttendeeByIdResponse.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/GetAttendeeByIdResponse.cs
@@ -21,6 +21,6 @@ public class GetAttendeeByIdResponse
///
/// Successfully retrieved an attendee object.
///
- public Attendee? Attendee { get; set; }
+ public Attendee1? Attendee { get; set; }
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/ListAssociatedAudienceSegmentsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/ListAssociatedAudienceSegmentsRequest.cs
new file mode 100644
index 00000000..b71fbf90
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/ListAssociatedAudienceSegmentsRequest.cs
@@ -0,0 +1,52 @@
+//------------------------------------------------------------------------------
+//
+// 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.Requests
+{
+ using Cvent.SDK.Models.Components;
+ using Cvent.SDK.Utils;
+
+ public class ListAssociatedAudienceSegmentsRequest
+ {
+ ///
+ /// ID of an attendee.
+ ///
+ [SpeakeasyMetadata("pathParam:style=simple,explode=false,name=attendeeId")]
+ public string AttendeeId { get; set; } = default!;
+
+ ///
+ /// The maximum number of records to return per page.
+ ///
+ [SpeakeasyMetadata("queryParam:style=form,explode=true,name=limit")]
+ public long? Limit { get; set; } = 100;
+
+ ///
+ /// 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.
+ ///
+ [SpeakeasyMetadata("queryParam:style=form,explode=true,name=token")]
+ public string? Token { get; set; }
+
+ ///
+ /// Use the filter property in the request body to limit results
+ /// to data that matches your criteria. See
+ /// Filters for details.
+ ///
+ /// Supported fields and operators are listed below:
+ ///
+ /// | Field | Operators |
+ /// |------------------|-------------------------------------|
+ /// | segment.id | `eq`, `in` |
+ ///
+ /// No logical operators are supported.
+ ///
+ [SpeakeasyMetadata("request:mediaType=application/json")]
+ public Filter Filter { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/ListAssociatedAudienceSegmentsResponse.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/ListAssociatedAudienceSegmentsResponse.cs
new file mode 100644
index 00000000..9c9d63ce
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/ListAssociatedAudienceSegmentsResponse.cs
@@ -0,0 +1,29 @@
+//------------------------------------------------------------------------------
+//
+// 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.Requests
+{
+ using Cvent.SDK.Models.Components;
+ using Cvent.SDK.Utils;
+ using Newtonsoft.Json;
+ using System;
+ using System.Threading.Tasks;
+
+ public class ListAssociatedAudienceSegmentsResponse
+ {
+ public Func>? Next { get; set; }
+ [JsonProperty("-")]
+ public HTTPMetadata HttpMeta { get; set; } = default!;
+
+ ///
+ /// Successfully retrieved list of audience segments associated with the attendee.
+ ///
+ public AttendeeAudienceSegmentAssociationsPaginatedResponse? AttendeeAudienceSegmentAssociationsPaginatedResponse { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/ListAttendeeAudienceSegmentsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/ListAttendeeAudienceSegmentsRequest.cs
new file mode 100644
index 00000000..e5bd7524
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/ListAttendeeAudienceSegmentsRequest.cs
@@ -0,0 +1,51 @@
+//------------------------------------------------------------------------------
+//
+// 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.Requests
+{
+ using Cvent.SDK.Utils;
+
+ public class ListAttendeeAudienceSegmentsRequest
+ {
+ ///
+ /// ID of an attendee.
+ ///
+ [SpeakeasyMetadata("pathParam:style=simple,explode=false,name=attendeeId")]
+ public string AttendeeId { get; set; } = default!;
+
+ ///
+ /// The maximum number of records to return per page.
+ ///
+ [SpeakeasyMetadata("queryParam:style=form,explode=true,name=limit")]
+ public long? Limit { get; set; } = 100;
+
+ ///
+ /// 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.
+ ///
+ [SpeakeasyMetadata("queryParam:style=form,explode=true,name=token")]
+ public string? Token { get; set; }
+
+ ///
+ /// Use filter query parameters to limit results
+ /// to data that matches your criteria. See
+ /// Filters for details.
+ ///
+ /// Supported fields and operators are listed below:
+ ///
+ /// | Field | Operators |
+ /// |------------------|-------------------------------------|
+ /// | segment.id | `eq`, `in` |
+ ///
+ /// No logical operators are supported.
+ ///
+ [SpeakeasyMetadata("queryParam:style=form,explode=true,name=filter")]
+ public string? Filter { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/ListAttendeeAudienceSegmentsResponse.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/ListAttendeeAudienceSegmentsResponse.cs
new file mode 100644
index 00000000..b26b3c76
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/ListAttendeeAudienceSegmentsResponse.cs
@@ -0,0 +1,29 @@
+//------------------------------------------------------------------------------
+//
+// 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.Requests
+{
+ using Cvent.SDK.Models.Components;
+ using Cvent.SDK.Utils;
+ using Newtonsoft.Json;
+ using System;
+ using System.Threading.Tasks;
+
+ public class ListAttendeeAudienceSegmentsResponse
+ {
+ public Func>? Next { get; set; }
+ [JsonProperty("-")]
+ public HTTPMetadata HttpMeta { get; set; } = default!;
+
+ ///
+ /// Successfully retrieved list of audience segments associated with the attendee.
+ ///
+ public AttendeeAudienceSegmentAssociationsPaginatedResponse? AttendeeAudienceSegmentAssociationsPaginatedResponse { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/ListDiscountedAgendaItemsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/ListDiscountedAgendaItemsRequest.cs
index 8cd553ea..16e29761 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/ListDiscountedAgendaItemsRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/ListDiscountedAgendaItemsRequest.cs
@@ -33,20 +33,20 @@ public class ListDiscountedAgendaItemsRequest
public string? Token { get; set; }
///
- /// 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 for details.
///
- /// There are two comparison types that can be used in filter expressions:
- /// * equal: eq
- /// * includes value(s): in
+ /// Supported fields and operators are listed below:
///
- /// The following fields are filterable:
- /// * discount.id (eq|in)
- /// * type (eq|in)
+ /// | Field | Operators |
+ /// |------------------|-------------------------------------|
+ /// | discount.id | `eq`, `in` |
+ /// | type | `eq`, `in` |
///
- /// The following operators are available:
- /// * and
- /// * or.
+ /// The following logical operators are supported for combining filters:
+ /// * and
+ /// * or.
///
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=filter")]
public string? Filter { get; set; }
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/ListDonationItemsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/ListDonationItemsRequest.cs
index 711f4784..88eab1df 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/ListDonationItemsRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/ListDonationItemsRequest.cs
@@ -33,17 +33,19 @@ public class ListDonationItemsRequest
public string? Token { get; set; }
///
- /// 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 for details.
///
- /// Only 'includes value(s): in' comparison type can be used in filter expression.
+ /// Supported fields and operators are listed below:
///
- /// The following fields are filterable:
- /// * id (in)
- /// * registrationTypes (in)
+ /// | Field | Operators |
+ /// |-------------------|-----------|
+ /// | id | `in` |
+ /// | registrationTypes | `in` |
///
- /// The following operator is available:
- /// * and.
+ /// The following logical operators are supported for combining filters:
+ /// * and.
///
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=filter")]
public string? Filter { get; set; }
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/ListEventDiscountsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/ListEventDiscountsRequest.cs
index 0af75b6e..f02e4e9f 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/ListEventDiscountsRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/ListEventDiscountsRequest.cs
@@ -54,22 +54,22 @@ public class ListEventDiscountsRequest
public string? Sort { get; set; }
///
- /// 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 for details.
///
- /// There are two comparison types that can be used in filter expressions:
- /// * equal: eq
- /// * includes value(s): in
+ /// Supported fields and operators are listed below:
///
- /// The following fields are filterable:
- /// * id (in)
- /// * method.type (eq)
- /// * type (eq)
- /// * level (eq)
+ /// | Field | Operators |
+ /// |------------------|-------------------------------------|
+ /// | id | `in` |
+ /// | method.type | `eq` |
+ /// | type | `eq` |
+ /// | level | `eq` |
///
- /// The following operators are available:
- /// * and
- /// * or.
+ /// The following logical operators are supported for combining filters:
+ /// * and
+ /// * or.
///
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=filter")]
public string? Filter { get; set; }
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/ListEventRoleAssignmentRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/ListEventRoleAssignmentRequest.cs
index 44f24824..37da1f96 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/ListEventRoleAssignmentRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/ListEventRoleAssignmentRequest.cs
@@ -11,6 +11,7 @@ namespace Cvent.SDK.Models.Requests
{
using Cvent.SDK.Models.Components;
using Cvent.SDK.Utils;
+ using System;
using System.Collections.Generic;
public class ListEventRoleAssignmentRequest
@@ -28,6 +29,18 @@ public class ListEventRoleAssignmentRequest
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=token")]
public string? Token { get; set; }
+ ///
+ /// Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store.
+ ///
+ [SpeakeasyMetadata("queryParam:style=form,explode=true,name=after")]
+ public DateTime? After { get; set; }
+
+ ///
+ /// Used to query records that have been added or updated before this time point.
+ ///
+ [SpeakeasyMetadata("queryParam:style=form,explode=true,name=before")]
+ public DateTime? Before { get; set; }
+
///
/// Use the `expand` query parameter to request additional details for each field specified.
///
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/ListFeeItemsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/ListFeeItemsRequest.cs
index 3725c1ad..146d2f1f 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/ListFeeItemsRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/ListFeeItemsRequest.cs
@@ -33,28 +33,24 @@ public class ListFeeItemsRequest
public string? Token { get; set; }
///
- /// 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 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)
- /// * product.id (eq|ne)
- /// * generalLedgerCodes.id (eq|ne)
- /// * product.type (eq|ne)
- /// * created (eq|ne|lt|le|gt|ge)
- /// * lastModified (eq|ne|lt|le|gt|ge)
+ /// | Field | Operators |
+ /// |-----------------------|------------------------------------|
+ /// | id | `eq`, `ne` |
+ /// | product.id | `eq`, `ne` |
+ /// | generalLedgerCodes.id | `eq`, `ne` |
+ /// | product.type | `eq`, `ne` |
+ /// | created | `eq`, `ne`, `lt`, `le`, `gt`, `ge` |
+ /// | lastModified | `eq`, `ne`, `lt`, `le`, `gt`, `ge` |
///
- /// The following operators are available:
- /// * and
- /// * or.
+ /// The following logical operators are supported for combining filters:
+ /// * and
+ /// * or.
///
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=filter")]
public string? Filter { get; set; }
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/ListMembershipItemsPostFilterRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/ListMembershipItemsPostFilterRequest.cs
new file mode 100644
index 00000000..6dca2063
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/ListMembershipItemsPostFilterRequest.cs
@@ -0,0 +1,42 @@
+//------------------------------------------------------------------------------
+//
+// 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.Requests
+{
+ using Cvent.SDK.Models.Components;
+ using Cvent.SDK.Utils;
+
+ public class ListMembershipItemsPostFilterRequest
+ {
+ ///
+ /// Unique ID of an event.
+ ///
+ [SpeakeasyMetadata("pathParam:style=simple,explode=false,name=id")]
+ public string Id { get; set; } = default!;
+
+ ///
+ /// The maximum number of records to return per page.
+ ///
+ [SpeakeasyMetadata("queryParam:style=form,explode=true,name=limit")]
+ public long? Limit { get; set; } = 100;
+
+ ///
+ /// 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.
+ ///
+ [SpeakeasyMetadata("queryParam:style=form,explode=true,name=token")]
+ public string? Token { get; set; }
+
+ ///
+ /// See the parameter description of filter in GET List Membership Items for full filtering information.
+ ///
+ [SpeakeasyMetadata("request:mediaType=application/json")]
+ public Filter? Filter { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/ListMembershipItemsPostFilterResponse.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/ListMembershipItemsPostFilterResponse.cs
new file mode 100644
index 00000000..21f3f2b1
--- /dev/null
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/ListMembershipItemsPostFilterResponse.cs
@@ -0,0 +1,29 @@
+//------------------------------------------------------------------------------
+//
+// 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.Requests
+{
+ using Cvent.SDK.Models.Components;
+ using Cvent.SDK.Utils;
+ using Newtonsoft.Json;
+ using System;
+ using System.Threading.Tasks;
+
+ public class ListMembershipItemsPostFilterResponse
+ {
+ public Func>? Next { get; set; }
+ [JsonProperty("-")]
+ public HTTPMetadata HttpMeta { get; set; } = default!;
+
+ ///
+ /// Successfully retrieved a paginated list of membership items.
+ ///
+ public MembershipItemsPaginatedResponse? MembershipItemsPaginatedResponse { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/ListMembershipItemsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/ListMembershipItemsRequest.cs
index 0adf2985..57ae47c3 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/ListMembershipItemsRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/ListMembershipItemsRequest.cs
@@ -33,17 +33,19 @@ public class ListMembershipItemsRequest
public string? Token { get; set; }
///
- /// 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 for details.
///
- /// Only 'includes value(s): in' comparison type can be used in filter expression.
+ /// Supported fields and operators are listed below:
///
- /// The following fields are filterable:
- /// * id (in)
- /// * registrationTypes (in)
+ /// | Field | Operators |
+ /// |-------------------|-----------|
+ /// | id | `in` |
+ /// | registrationTypes | `in` |
///
- /// The following operator is available:
- /// * and.
+ /// The following logical operators are supported for combining filters:
+ /// * and.
///
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=filter")]
public string? Filter { get; set; }
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/ListQuantityItemsRequest.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/ListQuantityItemsRequest.cs
index ed5f4b98..2319b2fa 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/ListQuantityItemsRequest.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/ListQuantityItemsRequest.cs
@@ -33,17 +33,19 @@ public class ListQuantityItemsRequest
public string? Token { get; set; }
///
- /// 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 for details.
///
- /// Only 'includes value(s): in' comparison type can be used in filter expression.
+ /// Supported fields and operators are listed below:
///
- /// The following fields are filterable:
- /// * id (in)
- /// * registrationTypes (in)
+ /// | Field | Operators |
+ /// |-------------------|-----------|
+ /// | id | `in` |
+ /// | registrationTypes | `in` |
///
- /// The following operator is available:
- /// * and.
+ /// The following logical operators are supported for combining filters:
+ /// * and.
///
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=filter")]
public string? Filter { get; set; }
diff --git a/packages/csharp/src/Cvent/SDK/Models/Requests/UpdateAttendeeResponse.cs b/packages/csharp/src/Cvent/SDK/Models/Requests/UpdateAttendeeResponse.cs
index fc8ebb29..7f54ad11 100644
--- a/packages/csharp/src/Cvent/SDK/Models/Requests/UpdateAttendeeResponse.cs
+++ b/packages/csharp/src/Cvent/SDK/Models/Requests/UpdateAttendeeResponse.cs
@@ -21,6 +21,6 @@ public class UpdateAttendeeResponse
///
/// Successfully updated the attendee.
///
- public Attendee? Attendee { get; set; }
+ public Attendee1? Attendee { get; set; }
}
}
\ No newline at end of file
diff --git a/packages/csharp/src/Cvent/SDK/SDKConfig.cs b/packages/csharp/src/Cvent/SDK/SDKConfig.cs
index f6d7adef..e72b2fa9 100644
--- a/packages/csharp/src/Cvent/SDK/SDKConfig.cs
+++ b/packages/csharp/src/Cvent/SDK/SDKConfig.cs
@@ -46,7 +46,7 @@ public SDKConfig(ICventSDKHttpClient? client = null)
Client = client ?? new CventSDKHttpClient();
ServerUrl = "";
ServerIndex = 0;
- UserAgent = "speakeasy-sdk/csharp 1.2.3 2.859.2 ea Cvent.SDK";
+ UserAgent = "speakeasy-sdk/csharp 1.3.0 2.859.2 ea Cvent.SDK";
SecuritySource = null;
Hooks = new SDKHooks();
RetryConfig = null;
diff --git a/packages/csharp/src/Cvent/SDK/Utils/Constants.cs b/packages/csharp/src/Cvent/SDK/Utils/Constants.cs
index d8d9a829..3febd1c0 100644
--- a/packages/csharp/src/Cvent/SDK/Utils/Constants.cs
+++ b/packages/csharp/src/Cvent/SDK/Utils/Constants.cs
@@ -22,7 +22,7 @@ public static class Constants
///
/// The version of the SDK.
///
- public const string SdkVersion = "1.2.3";
+ public const string SdkVersion = "1.3.0";
///
/// The version of the SDK generator used to create this SDK.
diff --git a/packages/java/.speakeasy/gen.lock b/packages/java/.speakeasy/gen.lock
index 1d6db726..cfa60760 100644
--- a/packages/java/.speakeasy/gen.lock
+++ b/packages/java/.speakeasy/gen.lock
@@ -1,12 +1,12 @@
lockVersion: 2.0.0
id: 795b0bc6-b124-44d6-a714-d4fdbc56212b
management:
- docChecksum: d102ff2d61db687e73460aa2c29e6458
+ docChecksum: b7ce829725c97f1ad93af5d1f28e9c93
docVersion: ea
speakeasyVersion: 1.752.0
generationVersion: 2.859.2
- releaseVersion: 1.2.4
- configChecksum: b9eef70e96be6947d4d46bd6db9e7bb8
+ releaseVersion: 1.3.0
+ configChecksum: ae498d61695b5d92220abb1c6954c41e
published: true
persistentEdits:
generation_id: 6ad3309a-d2a1-4e74-a3ae-065e16d1999e
@@ -59,16 +59,12 @@ trackedFiles:
pristine_git_object: f398b6a49b6741af377c1f2c8a1ef0c4aea18377
docs/models/components/AccountBudgetItemListResponseJson.md:
id: febabba0b74f
- last_write_checksum: sha1:7277b99d3513c0936e40e7972889bc18caf1d4b8
+ last_write_checksum: sha1:6275768757f5ac93716d0df50707f8e4e3474f82
pristine_git_object: 5811df0d97c76214dea6069d5cfbda3182a47d9d
docs/models/components/AccountBudgetItemsPaginatedResponse.md:
id: f19e5a08ad28
last_write_checksum: sha1:4831814ad0cd86f6a5c6fb0cabb78c95f22239f7
pristine_git_object: a6cca402644bca708edf6956fa7106cc7011ecfd
- docs/models/components/Action.md:
- id: 45f4a6205564
- last_write_checksum: sha1:1b1804bda4c60796ade7f5fcd656da3262b7ef50
- pristine_git_object: 66c129e5b86eb284664f0ed0e99c89ae4d786acb
docs/models/components/ActivityAdJson.md:
id: e2fd13edae87
last_write_checksum: sha1:e00b1c421434b123747a18bd35c42105d3e5745c
@@ -209,40 +205,44 @@ trackedFiles:
id: 07cacd034907
last_write_checksum: sha1:fbbf20cabfafa6319088c317a8d3dad9fa834ab5
pristine_git_object: c232eba3e3ae418311f8feadc50fefd9faa360c1
- docs/models/components/AdditionalChoiceJson11.md:
- last_write_checksum: sha1:bc0201911c379c9e120670783af0f031ce0f1c11
+ docs/models/components/AdditionalChoice.md:
+ last_write_checksum: sha1:fad23da1aefa73f28896d6583d2563cf41c37f43
+ docs/models/components/AdditionalChoiceJson1.md:
+ last_write_checksum: sha1:7991b07603234a914d5cad4ecaf97269859c6078
docs/models/components/AdditionalChoiceJson2.md:
- last_write_checksum: sha1:9f317a427c749d14a2c3b13d71a24eac3e6b6fb9
+ last_write_checksum: sha1:5388212edad01111e0b6449b7c8ab5883eb78314
docs/models/components/AdditionalGuestFeesJson.md:
id: b06986916918
last_write_checksum: sha1:c6bec98de43766efe8c7bc46f6353f0cf0cd2b58
pristine_git_object: 2f336a0d211e22039d5db2b941a9b965b89b8bf4
+ docs/models/components/Address11.md:
+ last_write_checksum: sha1:ddce1e45d8b5bfc93920d784a1bb1f8df312ed63
+ docs/models/components/Address12.md:
+ last_write_checksum: sha1:ce5ea131e577350a47de0d356b579e521ec2bb55
docs/models/components/AddressJson.md:
id: 852b3cfbf97e
last_write_checksum: sha1:5028a27bc58a24bcbeebc513a838dd2440c16fda
pristine_git_object: 39721498ca4a7658142cbc308a2072d0bbbf42be
docs/models/components/AddressJson0.md:
last_write_checksum: sha1:34a3ab7e63cba1fe400707b9fbbb23d3881ac53d
+ docs/models/components/AddressJson2.md:
+ last_write_checksum: sha1:4846731472a6a0d9d2394070e4da1e739c136d48
docs/models/components/AddressJson3.md:
id: 0ac01a60fec1
- last_write_checksum: sha1:82196ccfbad41dabe8968aee2098759c7e9605e6
+ last_write_checksum: sha1:ac25670f03c24e42e15d7dec3a82c183dc89a4c7
pristine_git_object: d7fe274ee62affd3862bced58bf9afcbf2695142
docs/models/components/AddressJson4.md:
id: 8e5d342fb420
- last_write_checksum: sha1:f2dafc82a565900fac32c18d97784fc1f0f8a141
+ last_write_checksum: sha1:a63e09d23c8afb031c208288f834e5df249fc3a4
pristine_git_object: 7cf5207f0164f0848ebab45e44fe8aad7e100af7
docs/models/components/AddressJson5.md:
id: e6f33b74405f
- last_write_checksum: sha1:308cb931ebcd2127ab867cef05f1b17074372655
+ last_write_checksum: sha1:2aa9722637a90f3f84228d33e951fb2d1a73c091
pristine_git_object: fa16a56c380fc2eb00c947c74d907b1251c5d323
docs/models/components/AddressJson6.md:
id: 7eebdbdeebdc
- last_write_checksum: sha1:6b3a37b8f33754a5d00ab0173660cae05066d98c
+ last_write_checksum: sha1:74c5edaa53148416daa51c0a93987ba6cba29a6b
pristine_git_object: 43effe46d8bc90a1211ea55af044e8c1cc7c3484
- docs/models/components/AddressJson7.md:
- id: bfbaacf69cd5
- last_write_checksum: sha1:697eab58fd1aa252ad862691be9f5724d8b6e1a4
- pristine_git_object: f130bbd9f2c7103cd9d41a94b51a55bd470343da
docs/models/components/AddressJsonInput.md:
id: f5ba5f1662f0
last_write_checksum: sha1:3a7d72509d46231027f53e1217466e1b44bb0922
@@ -365,40 +365,38 @@ trackedFiles:
last_write_checksum: sha1:4d15b4dc0d3735e8fb36ed72095f852d7b296617
docs/models/components/AnniversaryMembershipItemJsonContactType.md:
last_write_checksum: sha1:ce5c82110e557004d80bd1aff7bb2028869f3f7b
+ docs/models/components/Answer1.md:
+ last_write_checksum: sha1:39c598afc0aaf91fdca6ddff659a2c436d92c5ec
+ docs/models/components/Answer2.md:
+ last_write_checksum: sha1:81f2559acbcfdbb35eb69165e5011c6bca14a385
+ docs/models/components/Answer2Choice.md:
+ last_write_checksum: sha1:4998eef2e4deedcd9389e662f9528ffab8b0739d
docs/models/components/AnswerJson.md:
id: 28f92b810304
- last_write_checksum: sha1:45c4e6d12319ecf1fc1012d27dc575f2d4755366
+ last_write_checksum: sha1:ef5371a5f526beb10af7274b417b504c3e97f5c9
pristine_git_object: d4adb523449665cfd7b7ea5dc9ea4ac1b781b48d
- docs/models/components/AnswerJson0.md:
- id: c627bb9ee5c3
- last_write_checksum: sha1:80ed2f3355b79411d01da484141448f92073e67f
- pristine_git_object: ccfe183b45324e362937284a5493ce8c51164fe9
docs/models/components/AnswerJson1.md:
id: c97719e2cfca
- last_write_checksum: sha1:54ccb9fd1f7807a30f62863bcd30ad64db0b9f69
+ last_write_checksum: sha1:9521e6a95865177e7ef6abc3d8e0da3a6aa7dfcf
pristine_git_object: 4f8a6a1f4f7de7fc3bfd4976829cd35d7067f974
- docs/models/components/AnswerJson2.md:
- id: 2a0ad8a7ecfa
- last_write_checksum: sha1:4b97106966ab9f807499b20199f234ab33a48f7a
- pristine_git_object: 2a0b96f77994a496cca3ac18c9d85a3ae7aa6695
+ docs/models/components/AnswerType.md:
+ last_write_checksum: sha1:95e771a24cb6cac3a62652019602eac47ca1cd3e
+ docs/models/components/AnswerType1.md:
+ last_write_checksum: sha1:e7bd7bf0854300118bf32e7280f71b984eba69f3
docs/models/components/AnswerTypeJson.md:
id: 3c375aabad8f
- last_write_checksum: sha1:6b0ec3e9c1581a4ecad341e95b1703f852559c93
+ last_write_checksum: sha1:cd4b4ec01640f3e2cf7297ea1d6ed288a240f357
pristine_git_object: 4dd3d2acbf9562e6c29dc523aaa559ccdc972601
- docs/models/components/AnswerTypeJson0.md:
- id: b2b9b4d9eb7f
- last_write_checksum: sha1:9669b5974d7d9e9ba627c4d86fa339a934933b14
- pristine_git_object: a0d8d2aa6b260556b8fa5422f56d7ad11b42b119
docs/models/components/AnswerTypeJson1.md:
id: 425fa4e45f4c
- last_write_checksum: sha1:a03b1db99ae3d923042578444fa3e9fc347a163c
+ last_write_checksum: sha1:7d61e76d365b3d5a5eacabdcaa8810425e46ec32
pristine_git_object: 6acf351dca37b1e3bf717b681f18bc984b4ac4c9
- docs/models/components/AnswerTypeJson2.md:
- last_write_checksum: sha1:d345f3a2d74365bbfe47f9e0adc6636dbecd9fec
docs/models/components/Application.md:
id: 1cceb27adbd4
last_write_checksum: sha1:38501208c11888f8c4aa6df584ceed6807a3981a
pristine_git_object: 0715ea55235bc7d2fbfbba0473822db5ffef3963
+ docs/models/components/Appointment.md:
+ last_write_checksum: sha1:66729540576098453df3573da93a1619e51c1779
docs/models/components/AppointmentAccepted.md:
id: 8fbad1e76e53
last_write_checksum: sha1:5951c396358b92038eb69bd126a8679639fcd8c9
@@ -535,10 +533,12 @@ trackedFiles:
pristine_git_object: bd15a9f312caf01fed253922c6ef7ccdbda4620f
docs/models/components/AttachmentSourceJson.md:
last_write_checksum: sha1:3a972b87928b78a456bff775a5258fe14d19003c
- docs/models/components/Attendee.md:
- id: 9ed3d9f25c6d
- last_write_checksum: sha1:df0d809aee5aa9205a86f3fc91b84d809ae20411
- pristine_git_object: 61b0051fa646e02bb4301bec19d3b1e0fe8102d1
+ docs/models/components/Attendee1.md:
+ last_write_checksum: sha1:3983d47b6a72df62dd70cff921b03041b1b83e4f
+ docs/models/components/Attendee12.md:
+ last_write_checksum: sha1:7dc3bb0dff2ddde5c32f8a462014f062d4e1254b
+ docs/models/components/Attendee2.md:
+ last_write_checksum: sha1:a0993a6d1b1e6a53f8c4733e1e84d46a48d0f58a
docs/models/components/AttendeeActivitiesPaginatedResponse.md:
id: ceea5b023b77
last_write_checksum: sha1:d85aedb132d3d9c185d6c72a24a7407e25ad9f98
@@ -635,9 +635,13 @@ trackedFiles:
id: 5735c0f7c3aa
last_write_checksum: sha1:5a666c27e0a356ec6bc912cb5509e1ea08076869
pristine_git_object: 853d350ab051199223f77b392e219f46f1e287e2
+ docs/models/components/AttendeeAudienceSegmentAssociationJson.md:
+ last_write_checksum: sha1:3d10b38e66564aad814bee27e67f03b0e08fdb2c
+ docs/models/components/AttendeeAudienceSegmentAssociationsPaginatedResponse.md:
+ last_write_checksum: sha1:27c604d76a8e4cb41b675bbb4cecb6fcd08fa5c7
docs/models/components/AttendeeContactInfoJson.md:
id: b2695d44b280
- last_write_checksum: sha1:a12b4bbfd5fb89cc66bd371fc997f682a27c95a4
+ last_write_checksum: sha1:1c9dd3efe9a5bd19a6e56c70db5988dd53d52b0a
pristine_git_object: 74588f27017792b9960835ef758c4db663278386
docs/models/components/AttendeeContactMembershipJson.md:
id: 7871bc02d1c0
@@ -685,7 +689,7 @@ trackedFiles:
pristine_git_object: b7e8487b51b1204402ec9ecffa71e15c5fb91170
docs/models/components/AttendeeInsights.md:
id: 18b1352d9d5b
- last_write_checksum: sha1:0ddd3f3ed1a2ae59b165c048424cb70688165ca8
+ last_write_checksum: sha1:ec7ad1512ab22e958f9b9803cb72c6813f60d270
pristine_git_object: 8b25540cdf3541df896dd6795a5d97134d288670
docs/models/components/AttendeeInsightsPaginatedResponse.md:
id: 56aaa76c4df1
@@ -719,10 +723,6 @@ trackedFiles:
id: ccffe0b6be84
last_write_checksum: sha1:7bde76361064b326576dcd75554f3a5996e4e917
pristine_git_object: 9728fd0996d99d9b4608698fa36c245b126252de
- docs/models/components/AttendeeJson3.md:
- id: f465c0548b7b
- last_write_checksum: sha1:e5082c88e510fa5ee13bdc9768691a47a030176b
- pristine_git_object: 760490f63e09037aff1dadfaaadd75a6f71b274b
docs/models/components/AttendeeJson4.md:
id: 4df764d820d2
last_write_checksum: sha1:d8afc7e86f478311310e0cabdc2f246a56aed25d
@@ -745,7 +745,7 @@ trackedFiles:
pristine_git_object: 0b10f8af609af36f0c79a40db220e986e66b95e2
docs/models/components/AttendeePaginatedResponse.md:
id: 51a784531f73
- last_write_checksum: sha1:493cb49e058b389531756c8bb75052ba5c15edab
+ last_write_checksum: sha1:c0587131364cfbb6ad05ddf33aa663af0f35be8f
pristine_git_object: 41d46c8ff066843bef720de4a6724a9d4ee82995
docs/models/components/AttendeeResponseJson.md:
id: 3df4b86fc255
@@ -863,11 +863,11 @@ trackedFiles:
pristine_git_object: 2d5c00a2cc66d4173b4a27fb4df2fda52187c6d1
docs/models/components/AudienceSegment.md:
id: 44916c93a8b4
- last_write_checksum: sha1:5f00884131d627166f8b1708b19b40d2bbfc3593
+ last_write_checksum: sha1:70b690469dda631acddbc927c4b7ecccb4ca53d3
pristine_git_object: 280b331832d04e949beed1847f157fbe1b5bd78f
docs/models/components/AudienceSegmentCreate.md:
id: fed446b4b747
- last_write_checksum: sha1:067d6da4743367d689b2d496c20b227f10e1051c
+ last_write_checksum: sha1:3d5d51523581380ec265e2c56db1fd0ade27bd91
pristine_git_object: c68cbda24af12d85b3cc58377db5a0159f5badff
docs/models/components/AudienceSegmentCreationTypeJson.md:
id: f664614ae9b5
@@ -875,7 +875,7 @@ trackedFiles:
pristine_git_object: 71844c86b7d8d377dda61e7241d2572831a9b5f2
docs/models/components/AudienceSegmentResponse.md:
id: 620b289d9546
- last_write_checksum: sha1:e2262b08317a845b49c32a757fbe4eebc8fc67d2
+ last_write_checksum: sha1:9a3d6c93005dbd704a795f7c23db2af54cd69f88
pristine_git_object: 1c39710faf29fe4badb87a1232eba7f3b709d685
docs/models/components/AudienceSegmentsPaginatedResponse.md:
id: df4b360f63bc
@@ -927,15 +927,15 @@ trackedFiles:
pristine_git_object: 310d69f01fea84e9d56f55c144a79065952c188d
docs/models/components/Badge.md:
id: 7b6f54e578a6
- last_write_checksum: sha1:3708ecdf2d33543d4e64aecca8d0af91a313ab94
+ last_write_checksum: sha1:f0536af0712e782b1e69c05980918f60e9657173
pristine_git_object: 3a01b3f979782925482fb5a39fca33e876092dd4
docs/models/components/BadgeInput.md:
id: 8c0929e7fb73
- last_write_checksum: sha1:db80b2651f5862990dc4b7f10fab453dc72ca361
+ last_write_checksum: sha1:d8c0c564366094111ddc9281384e823174b8969c
pristine_git_object: ccecc17cf982724970f65571f4c9e60e8c56d584
docs/models/components/BadgePaginatedResponse.md:
id: 1c33b0cf226d
- last_write_checksum: sha1:c7fce28d9d59a151628bb602340c61259355ea84
+ last_write_checksum: sha1:95083252a8e6a0a2e048cc541c3bbdbd61c4a4f5
pristine_git_object: 445d2c33c378fefac964d575e9561562f26020ab
docs/models/components/BadgePrintJobCreated.md:
id: b0ebd6808c49
@@ -973,14 +973,10 @@ trackedFiles:
id: 74e53282bacf
last_write_checksum: sha1:c0c4acc06f0d724b098cd570340b0f7353892ac9
pristine_git_object: 270a58ce24792f4429dbce0f474614d1aeddbe16
- docs/models/components/BadgeStatusJson.md:
- id: 4f2814e4ef62
- last_write_checksum: sha1:adc679c541842351cc07a65a3f13cef726d02479
- pristine_git_object: 2f74e3a624ddaf7ee5b03e0c47f695d3e484f69f
- docs/models/components/BadgeTypeJson.md:
- id: f94605db15df
- last_write_checksum: sha1:4a3901c1de672fdbed029d67ab1e2d47ced43c4b
- pristine_git_object: 4de045841d5832cdc62446fb056483079b6d0a93
+ docs/models/components/BadgeStatus.md:
+ last_write_checksum: sha1:73c438278198475bd2f63ab37faab2ffe0db8875
+ docs/models/components/BadgeType.md:
+ last_write_checksum: sha1:f26fe86f1902ecfb418ea9afd8dab8d0b273289d
docs/models/components/Banner.md:
id: 59efb68fb0a6
last_write_checksum: sha1:93f5de7be8fd8147d7448e89991ff88d1203d6ff
@@ -999,10 +995,8 @@ trackedFiles:
id: f5417f3accc1
last_write_checksum: sha1:d7ae1d0ecf0794b916fbf0204d6d8e44338d677b
pristine_git_object: 9465029aa2d42d0d81b312b67217f3d56e8e34a8
- docs/models/components/BaseChoiceJson.md:
- id: 8533c5e3b005
- last_write_checksum: sha1:71807cb2bb4cc6f495cf526d581a2d3683636190
- pristine_git_object: 19d86ed943d5adac5133499fb3261df8abad02ac
+ docs/models/components/BaseChoice.md:
+ last_write_checksum: sha1:32aa7be46ed4758ffa3d1a4d2eb55e9bb5a6ee9e
docs/models/components/BaseQuestionResponseJson.md:
id: 9e008c8b0411
last_write_checksum: sha1:3086a77833aa4b55fdd2f251ef237e2527bec0a4
@@ -1041,17 +1035,19 @@ trackedFiles:
id: 4f035bde02d4
last_write_checksum: sha1:4b47fad1d889b1eb8666dc832a69606f993ec18d
pristine_git_object: c1cea1ad60dc0a6bc3067cfadeb67678a1f59848
+ docs/models/components/BoothStaff.md:
+ last_write_checksum: sha1:9729680fae825449f8b8ec9e587e9480b4ea5719
docs/models/components/BoothStaffListResponse.md:
id: 73fdfe36e9e7
- last_write_checksum: sha1:4b265ea7e4e7cf9633d548cdffe25d1e45494077
+ last_write_checksum: sha1:611893eec268843c3c7214ac67b0c60914931e3c
pristine_git_object: 7ee8df164814f5d40ce0c35b87febf39459959d2
docs/models/components/BoothStaffRequest.md:
id: 7b4eabe3d126
- last_write_checksum: sha1:ed02e89a632d2d7a96a116ee0841b96fdeff0df0
+ last_write_checksum: sha1:589db1cf00705d32a0bfa3fb3f03ff8b0b46a336
pristine_git_object: ebd4609baf85d157940042d385d30ba9a1439696
docs/models/components/BoothStaffResponse.md:
id: 13bd93c80a55
- last_write_checksum: sha1:b12f563444b65f8ffcf25bff49dd0b5b89ab4c78
+ last_write_checksum: sha1:b9ddb8509d6ead9a1a718d4ee7162f0793f0183d
pristine_git_object: ddd92462283c8accfa8aa7546d5bcd2ad3ffd840
docs/models/components/BounceDetailsJson.md:
id: dc3803508bfc
@@ -1063,7 +1059,7 @@ trackedFiles:
pristine_git_object: c84359ab683166df5e9b695749da15bec0cfcf1e
docs/models/components/Brand.md:
id: f664169dc5c0
- last_write_checksum: sha1:c92b0d0b8104511fe427e92fa42e48cfb7cb2679
+ last_write_checksum: sha1:83263a041ef4492a15f8753e383a6f98404e045d
pristine_git_object: 4e994c806599126cc0ad3d8e2b66ce1597705726
docs/models/components/BrandPaginatedResponse.md:
id: 58789b2f2ec0
@@ -1319,22 +1315,16 @@ trackedFiles:
pristine_git_object: eb196b06066a3c192cb2194600772eadfdb18be8
docs/models/components/CancelledReasonJson0.md:
last_write_checksum: sha1:84a20789026975fe319aded19e47c43ebb6b02fd
+ docs/models/components/Capacity.md:
+ last_write_checksum: sha1:470565466ee5b434215e969d9f9c7d21db3a6c1e
docs/models/components/CapacityJson.md:
id: 926d6a3357b4
- last_write_checksum: sha1:411ca166388228fa1338920b7b28c542afc56173
+ last_write_checksum: sha1:3db94c69c4dfe492cf71392cedaf478c03005c14
pristine_git_object: a62da8e998f3c8a9b30192d75351ffe2ffacfe8e
- docs/models/components/CapacityJson1.md:
- id: 29cb6751a601
- last_write_checksum: sha1:f4c7823002c021aee889b6a4abd5fa23c0efd84c
- pristine_git_object: ad2b07ed4782a500b5813e44933b759a986a49ad
- docs/models/components/CapacityJson1Input.md:
- id: f837613e4079
- last_write_checksum: sha1:dbb8aea5b0557e837c66adfa2676aae05846e669
- pristine_git_object: 06087b263cb7ca178b57c056e1563c8f91e6bd06
- docs/models/components/CapacityJsonRegistrationType.md:
- id: bf3c87d63470
- last_write_checksum: sha1:4a44c407a9f3698b37f0aee7983623bd08cba5fb
- pristine_git_object: f96f978540c4c74a977aaa6e5c46031fec61a5b0
+ docs/models/components/CapacityJsonInput.md:
+ last_write_checksum: sha1:7d60556a6a98ac70c77e7a5e535b33b46be62303
+ docs/models/components/CapacityRegistrationType.md:
+ last_write_checksum: sha1:47a313b2d8b7b68fb3eb6ec293cd24c280f54144
docs/models/components/Card.md:
id: f61eed6bb128
last_write_checksum: sha1:0fa66afe4c583b19d909b4717410575c14f78cb1
@@ -1419,7 +1409,7 @@ trackedFiles:
pristine_git_object: cf7724b08076946431eb89d5e568c7deecdd19ce
docs/models/components/Chain.md:
id: 9367b86aedb6
- last_write_checksum: sha1:d8e7ff778317b47e6f08e7d910e77e5151277699
+ last_write_checksum: sha1:62915a6d1ce7672e99c364e9fc5303d65869b07f
pristine_git_object: 8ecbac0229ab6ca03b40dde65909454b423678e1
docs/models/components/ChainBrand.md:
id: 3e5bc3b260b4
@@ -1467,26 +1457,20 @@ trackedFiles:
pristine_git_object: 80f1eeddd4f3560cfc8454b2ae709eeb553c6357
docs/models/components/Choice.md:
id: c760787de971
- last_write_checksum: sha1:85b3bfe28036777060f26c6a81168469d3eb278c
+ last_write_checksum: sha1:62bf2db1a2d7878ad2a010a4d6ac7ba2dd5a7f0d
pristine_git_object: 0072eeed27fe6c853f841837414c657328eb74dc
docs/models/components/ChoiceJson.md:
last_write_checksum: sha1:7e881452f1965f31f6f72d43852712edb83e7f57
docs/models/components/ChoiceJson2.md:
id: af3540818879
- last_write_checksum: sha1:60cebe80a98bc910728459406de5950c95d00942
+ last_write_checksum: sha1:e6f75337fc0e00562409fba1cfd612ffb63c4208
pristine_git_object: a3f24a02f8f77a261f5da5bc0af4307f6f164c92
docs/models/components/ChoiceJson3.md:
id: 8815d1fabc07
- last_write_checksum: sha1:e533702ca70593a2074dcb6f5ca2b24578ad1e1b
+ last_write_checksum: sha1:237351306c0afa52f10b52a72bd8a40d5ff50a36
pristine_git_object: 2df28a8828e6c99771b7ca602f6ebde2de572a40
- docs/models/components/ChoiceJson4.md:
- id: 721d441f84dd
- last_write_checksum: sha1:689246fb9c125f212c5d10bcc94c787f3b74dd47
- pristine_git_object: 5bde9595814352092de5e2e978ca9d8bf7ee5963
- docs/models/components/ChoiceJson4Input.md:
- id: 3853e963ffd0
- last_write_checksum: sha1:2211fc062a3c9e1ee21f9e9f6eaf5a2bb392f63d
- pristine_git_object: 161d06a5a147a35009648619ee5a75b8064a38db
+ docs/models/components/ChoiceJson3Input.md:
+ last_write_checksum: sha1:976b5d548c7323b851f333fc34c5aaab0b329caa
docs/models/components/ChoiceSortOrderJson.md:
last_write_checksum: sha1:bc135cf502e1fd923c04f3db985958a733688930
docs/models/components/ChoiceTranslationJson.md:
@@ -1497,7 +1481,7 @@ trackedFiles:
last_write_checksum: sha1:bde9639f027fac38c7ca32650042f993d7d5b79c
docs/models/components/Choices.md:
id: a66972cc6f50
- last_write_checksum: sha1:23bd4ab166728ea04d754e1f1937becb6a0e5628
+ last_write_checksum: sha1:c442adf9c22e0511c22c351229a62db1648468f4
pristine_git_object: d8215f495b75103397903c5358b68c52ea534ca9
docs/models/components/ChoicesDisplayTypeJson.md:
id: b82041ae7cc0
@@ -1523,14 +1507,24 @@ trackedFiles:
id: f2215f7894d0
last_write_checksum: sha1:6f55256cc5cfb3506be0d01db4c00991c4139499
pristine_git_object: e4ebfd0134e35f2413278a6a602a33a32dca3adf
+ docs/models/components/Compliance.md:
+ last_write_checksum: sha1:dd0d8fa23676dac6fec48fa72116950ad470411c
+ docs/models/components/ComplianceAction.md:
+ last_write_checksum: sha1:c1b5eb3f76df7dea1fe7f7a795424a44aa6240d8
+ docs/models/components/ComplianceComplianceScope.md:
+ last_write_checksum: sha1:6551106bda53f4832ce943a34e9377026b8c58eb
+ docs/models/components/ComplianceCreatedBy.md:
+ last_write_checksum: sha1:7b9ca02e39e07314afe2bfb69cc5566632c2612f
docs/models/components/ComplianceJson.md:
id: 9eed37954f07
- last_write_checksum: sha1:9730682d6ce1f7b698b4849ea58d8100c9629546
+ last_write_checksum: sha1:aa512a3d3fdd0580bc373a9c92ea313e2cdb7917
pristine_git_object: 83a49f67cc10d5bd6ddea86ab8d4b130f3d7503b
- docs/models/components/ComplianceScope.md:
- id: a2212f61ab6c
- last_write_checksum: sha1:7b82eb791d71d6b0722768b149cddb11d22e0eb0
- pristine_git_object: 5786229f62c40e9d75ba9b73a2a570bc97d9ceca
+ docs/models/components/ComplianceJsonAction.md:
+ last_write_checksum: sha1:10c4762b9fdffdadcf3a5aae587a08b7980ac9c4
+ docs/models/components/ComplianceJsonComplianceScope.md:
+ last_write_checksum: sha1:24e2e672be0610923b8a75c6f745d352e02ca7d0
+ docs/models/components/ComplianceJsonCreatedBy.md:
+ last_write_checksum: sha1:a42208680b945371d0a33187d711d6d5d736775a
docs/models/components/CompositeValueJson.md:
id: f2612df478f8
last_write_checksum: sha1:c69c9efa6c6fb8a7e8877098aa709bdbe7efb05d
@@ -1647,14 +1641,12 @@ trackedFiles:
id: ae33f140d5cb
last_write_checksum: sha1:c6815b043b8091261a3be966ba6a04c012f0d58a
pristine_git_object: 40dd41e514dc202a4bff160799a5568853741c82
+ docs/models/components/ContactLinks.md:
+ last_write_checksum: sha1:baf136e09cf3c59fbee098d67fb2c70f58eb5e26
docs/models/components/ContactLinksJson.md:
id: f62676e6abbe
last_write_checksum: sha1:8594f1c4974f3629777620a8cb05dd7ec37c07ba
pristine_git_object: 359c488866bee277f1370800b8485b2556c75931
- docs/models/components/ContactLinksJson2.md:
- id: 1b8844bfb767
- last_write_checksum: sha1:f336881d3b243521a7fd98374090290979eb9a7a
- pristine_git_object: c92a013d347a7640434d7b4ec5f20a253a89d49f
docs/models/components/ContactLinksJsonInput.md:
id: 0a637d553a2a
last_write_checksum: sha1:9b7cc160d32d2c72bac626f7e0d1790356cfd869
@@ -1761,10 +1753,6 @@ trackedFiles:
id: 9a117b555903
last_write_checksum: sha1:7d498358b0032965d21bf1e8e0fe9aad6e7de412
pristine_git_object: 3a5544d5b8bbf8ed4537bed1cfb8cfd62b0b1a52
- docs/models/components/CreatedBy.md:
- id: 7e85e7690f2d
- last_write_checksum: sha1:e58bd5c388828f25a742e638a13eda7b6bacf45c
- pristine_git_object: b9152ccaa1660307669c50c5cf77c7998f86ad1b
docs/models/components/CreditCardRequestJson.md:
id: 791ee9e849c4
last_write_checksum: sha1:00058f4ace9454756f831f6f0ab915163dff2d2b
@@ -1901,6 +1889,8 @@ trackedFiles:
id: a49e7ed5c898
last_write_checksum: sha1:b8072f229f597a72116b58c9edd7d957b5879211
pristine_git_object: 47b6338a19736f3f11af4b236c20e984d2c6130a
+ docs/models/components/Device.md:
+ last_write_checksum: sha1:da8a4bcbf9ed766f93cf38a059ec8065d913b857
docs/models/components/DeviceJson.md:
id: ad18366e3565
last_write_checksum: sha1:2229f2845141be48f6dda0592e1b5f41b2a0aa86
@@ -1993,21 +1983,17 @@ trackedFiles:
id: a87d046c6124
last_write_checksum: sha1:b2b626a9dafebcf55885492afa0706f92c19e991
pristine_git_object: 01eb57f256253e336b5d6985343e90212d015617
+ docs/models/components/ELiteratureDocument.md:
+ last_write_checksum: sha1:17398654ad6514c2898e27df84d2828712db6900
+ docs/models/components/ELiteratureDocumentType.md:
+ last_write_checksum: sha1:b1f168f29e41d8f7d72211c9b5ec8c58d49e2cab
docs/models/components/EarlyBirdPricingJson.md:
id: 244f2f08ee92
last_write_checksum: sha1:d928e77df618a50e23bea49e3b9938ebbc9e0818
pristine_git_object: 4c93ec36820fb7088cb606dd56f53a1f4eef2319
- docs/models/components/EliteratureDocumentJson.md:
- id: 4984531aeefc
- last_write_checksum: sha1:65384f3fd09eeca10d7f40720ca924fc09876f1d
- pristine_git_object: 366cb5620b3b7806bd2baf5459422807eb1b5387
- docs/models/components/EliteratureDocumentJsonType.md:
- id: fa5ebbd6255b
- last_write_checksum: sha1:516b21283c90743d0be15d8f4c073bd79a227d2c
- pristine_git_object: dc90a6ae53f5179561f94d974b3b88fe7abfa853
docs/models/components/EliteratureRequestPaginatedResponse.md:
id: bd54424ff2aa
- last_write_checksum: sha1:27984ed47faf35722322cd2f6a16a4d02e908d61
+ last_write_checksum: sha1:bb165e578e3c42511923c44e9d8c19b96e6dd113
pristine_git_object: 51bdd1f50d915a127939c49c7bf9e4b2bc91a377
docs/models/components/EmailBounced.md:
id: 0ea581f8279b
@@ -2117,6 +2103,8 @@ trackedFiles:
id: 30ea2ea346e2
last_write_checksum: sha1:2e8da00251d7350263008566a98e2339db45a130
pristine_git_object: 73c27d065bc3d33e6040ec32007ddd5a80f4a063
+ docs/models/components/Event1.md:
+ last_write_checksum: sha1:5d02cdc22b5717d6f152c2c7edecf541eb9d4d5a
docs/models/components/EventActivityDetailsJson.md:
id: afd07bd677a3
last_write_checksum: sha1:b6821334ac3af39f5baf0618f1120fdabdefe313
@@ -2167,7 +2155,7 @@ trackedFiles:
pristine_git_object: 94ed095885194a2a66e283e2f82f14e2a31248a4
docs/models/components/EventBannerLinkClicked.md:
id: 90a778b6b032
- last_write_checksum: sha1:730d14bda8f4d8f5e1b13400c8f04af8c344ffa8
+ last_write_checksum: sha1:fe56b1de28b4b30f97b1feeab48101a07f4df790
pristine_git_object: dd7546560babaeb96ce752cabe834ea73505af2c
docs/models/components/EventBudgetCostDetailJson.md:
id: a71fcfa749f5
@@ -2215,11 +2203,11 @@ trackedFiles:
pristine_git_object: fe0170edd5c8555c881993f71097e70e3c705e7f
docs/models/components/EventEmailsPaginatedResponse.md:
id: ff6698cbd018
- last_write_checksum: sha1:80776b2e7996438196212d1bc70ff309db6ebf8f
+ last_write_checksum: sha1:e3eaeffa31e1f25bcb1f85675e1463926316c546
pristine_git_object: f6f0a4a3428550f22385cc7728c3ed6de4535711
docs/models/components/EventFeatureJson.md:
id: acd6db0098f2
- last_write_checksum: sha1:1f6037521941eeef91acf8ea7a53d06491dbd2ff
+ last_write_checksum: sha1:7f016262267fa4feb0e3b38995ca9df5406169e1
pristine_git_object: 56200be3b92e7715351577c228e7b0a75b2b03d4
docs/models/components/EventFeatureJsonConfig.md:
id: 7ca897d9a037
@@ -2235,7 +2223,7 @@ trackedFiles:
pristine_git_object: 63fe63fb15b355a79ceb984977e658a22b2d3a84
docs/models/components/EventFeaturesResponse.md:
id: 33a86785f860
- last_write_checksum: sha1:21060470b6ea3a1c56774a1089ce903da88f5550
+ last_write_checksum: sha1:323ff6f48f54075db76147e242ae34bfcfd133fe
pristine_git_object: 6555afb80943dc56d8ad55f21fbc058526d7cf3b
docs/models/components/EventFeaturesResponseConfig.md:
id: 967507b579d8
@@ -2261,22 +2249,18 @@ trackedFiles:
pristine_git_object: f9404bb3581d8b88564de789d29963be9c16dcd5
docs/models/components/EventJson0.md:
last_write_checksum: sha1:eec6ba8b5594994baaa63d32bedf562dd2379637
- docs/models/components/EventJson11.md:
- last_write_checksum: sha1:cc168d44d52a0390aeb3d1ab5bacafd88d7d5ec6
+ docs/models/components/EventJson2.md:
+ last_write_checksum: sha1:e7aca474c4225249d67e8370d8d3a22953431d2e
docs/models/components/EventJson3.md:
id: fd5d26b87a7e
- last_write_checksum: sha1:a550ce0b575254d7e8c50a0c36320290586bf16c
+ last_write_checksum: sha1:76651916ef5d8a087e78f3983b4b0ebb99d925a9
pristine_git_object: 24f234d8e3a05919a2a1cfb1e8d9a1bf0e003d00
- docs/models/components/EventJson4.md:
- last_write_checksum: sha1:f94597f3a74c7fd3a0af4787b6b60422fd191dbd
- docs/models/components/EventJson6.md:
- id: b710ce7006fb
- last_write_checksum: sha1:516566cbd24ad0686a364c03dfe1414fd2fcc249
- pristine_git_object: d0707969f75444319fd9bf42f3133fd9ab2b1a96
+ docs/models/components/EventJson5.md:
+ last_write_checksum: sha1:9059df34a12662db8156884649634e1adb319968
docs/models/components/EventJson7.md:
- last_write_checksum: sha1:5e77038c95d0b5092b5d89ba6cf9320088c54bc1
+ last_write_checksum: sha1:5c65f2ddaf14ee3ffd132b3ca1a1682d8d9444a6
docs/models/components/EventJson9.md:
- last_write_checksum: sha1:b10989b749a6f1d08a15f4cdead613cb2631d2d8
+ last_write_checksum: sha1:e9424a9e5b68b6a4fbd68058e9c25bdc8c2b9f53
docs/models/components/EventLinksJson.md:
id: 6e52c908109a
last_write_checksum: sha1:af8cb19b13a57ecb5b33ee3c7edee986f31e7ae4
@@ -2389,7 +2373,7 @@ trackedFiles:
pristine_git_object: f18fe8ddc33236d763b4c5db12b706f88398b60d
docs/models/components/EventSurveyQuestionJson.md:
id: 533cfc903571
- last_write_checksum: sha1:5817d38ebb37b70596c0fdb0f0f834c83cb31d5c
+ last_write_checksum: sha1:75b4d3112ba8ecd47ab27e428d77cd1acfcc8cee
pristine_git_object: 2e3dd74c979006b84487aec1749652e180fee491
docs/models/components/EventSurveyQuestionsPaginatedResponse.md:
id: 6f4572c68e0b
@@ -2397,7 +2381,7 @@ trackedFiles:
pristine_git_object: fc72b1493d2b53a7b2a57415b58e08bfd95c9ea1
docs/models/components/EventSurveyRespondent.md:
id: c27efa567e53
- last_write_checksum: sha1:3469c451fc7f1f48c6cdafd5ba700f3847476c16
+ last_write_checksum: sha1:1857e70132dc9b76d359f6a8c6833a6ab51dedbc
pristine_git_object: b250050aeee1d59666968fe261a090ce76a2145d
docs/models/components/EventSurveyRespondentAttendee.md:
id: 533fb3a2bf4d
@@ -2421,11 +2405,11 @@ trackedFiles:
pristine_git_object: 645cb30ae4bdfcd53e5f0ecfd1b43ad82bf73441
docs/models/components/EventSurveyResponse.md:
id: 3f3bcee10b76
- last_write_checksum: sha1:61d0ef141ed15d50b709962ed8da1a82fa955192
+ last_write_checksum: sha1:36da377785d04a5c35fd44f0587c1b8bb8f1c20e
pristine_git_object: cc9a113b840ff54dc4cf9ac18fa9e1479ac5a92b
docs/models/components/EventSurveyResponseInput.md:
id: e6d991825c46
- last_write_checksum: sha1:0b40a8bdc11b1dc3705c1132aa2e3a8c9a93b3c0
+ last_write_checksum: sha1:b067613c14413e0c5ac247df4f5927ceba8ff9f5
pristine_git_object: a119bfcb0fe13b36372411d494db0ec1adc355d6
docs/models/components/EventSurveyResponseUUID.md:
id: ba75499fffde
@@ -2483,37 +2467,31 @@ trackedFiles:
pristine_git_object: 0a0c8a45781802f37b7bc9abc3bcdcd9a64de8e6
docs/models/components/EventWeblinksPaginatedResponsePaging.md:
last_write_checksum: sha1:dcbde1dcf59416b9c0fd491ad55d371449ae621a
- docs/models/components/ExhibitorAddressJson.md:
- id: 5cab597aa85f
- last_write_checksum: sha1:7ccf35f652e9578d8d9bb457dfae210efaca5702
- pristine_git_object: 23f2685c7979b99fdd9449f066b0349ca89e1676
+ docs/models/components/Exhibitor.md:
+ last_write_checksum: sha1:a4dd4dbb56b448b6e86e00ccc5af30cb4b70fa77
docs/models/components/ExhibitorAdminRequest.md:
id: fd4bd400da0f
- last_write_checksum: sha1:6c50dc13dfd1d161ff102add21ce0c27bd75d8ed
+ last_write_checksum: sha1:f03db47de158530d9d467630546467c4220034e1
pristine_git_object: 034cb7811a8cfdcc7bac9914387f3530af858d37
docs/models/components/ExhibitorAdminResponse.md:
id: 2b6e24a853ed
- last_write_checksum: sha1:b1d4c12a3dfa680680be20cb7a49a03ef228e68f
+ last_write_checksum: sha1:9e959e965e72d465cd1e6fe889dd0c82502dc68a
pristine_git_object: a73e45b04a2f201456823eae6b3a8b15bfcac972
docs/models/components/ExhibitorAdminsListResponse.md:
id: 648d2763bfb1
- last_write_checksum: sha1:d902f2efb505aa5c507fdd10e14b0a0ceec1f308
+ last_write_checksum: sha1:b7883f0f5986d549ecb6b1a25efcab432b209254
pristine_git_object: 2c67ba253d2a6beb94f4c97df5515ed4a28be4e3
- docs/models/components/ExhibitorAnswerFormatJson.md:
- id: 257c42190776
- last_write_checksum: sha1:76ad25ed022d410fd627e444a02aef280193f851
- pristine_git_object: 6754fbdc55ea684785c1b06be31c727c00a28db4
- docs/models/components/ExhibitorAnswerLimitsJson.md:
- id: b2b1ceed2671
- last_write_checksum: sha1:34e9bcbb871a55e6d69fa6db76cb28d1c947f5ab
- pristine_git_object: 394a0b693d67f542ecc756f973a06ed403cf022f
+ docs/models/components/ExhibitorAnswerFormat.md:
+ last_write_checksum: sha1:919e6b6a5293eff4f9b7375ff030b47222b84b83
+ docs/models/components/ExhibitorAnswerLimits.md:
+ last_write_checksum: sha1:30215c4bf7a5ff28810684bac21e7987a1cc0a51
docs/models/components/ExhibitorAnswersRequest.md:
id: 5a92f5aa2880
- last_write_checksum: sha1:416341e44fbf30d1d2f38332841e545f44842485
+ last_write_checksum: sha1:153c6c02c76afe02b5057626e20f76146184813b
pristine_git_object: ee1e4eca4c052d2266123ecec94b303900e0f88f
docs/models/components/ExhibitorAnswersResponse.md:
id: 0d592c5f3bf1
- last_write_checksum: sha1:73e45117004bc4cb066d40f8a06e24e195c0c14c
+ last_write_checksum: sha1:0e6ca02e7ac0bdda06e6a5067f33139e22569cc5
pristine_git_object: 9f8c0a38c84e0875ea3185d769833fb7c134041b
docs/models/components/ExhibitorBannerLogoFile.md:
id: b6a5de99d1b0
@@ -2525,7 +2503,7 @@ trackedFiles:
pristine_git_object: 3efe30a6abfa6676f3bd351d4ab5b64fd049bb30
docs/models/components/ExhibitorCategoriesPaginatedResponse.md:
id: 3f1fdf8b93ee
- last_write_checksum: sha1:5c46ed2e7482f24d5b1c79dbddff736f4e5d9cba
+ last_write_checksum: sha1:da31dbe9e61ae9ac5070a557c57399a9f8ace9de
pristine_git_object: 1eee37171e0b9ee4953a01f3f1eb99258a2674c1
docs/models/components/ExhibitorCategoryBannerFile.md:
id: 3ce350d6edc6
@@ -2535,17 +2513,15 @@ trackedFiles:
id: 24dee3710214
last_write_checksum: sha1:63d5b6c34fee6b269d386d9440e2ee349f2df61b
pristine_git_object: 53f7386aec1be60ec0751fd8b23525638fd2de0a
- docs/models/components/ExhibitorCategoryIdJson.md:
- id: 54682db168c3
- last_write_checksum: sha1:ae44ab69efcd877cff08162dbd6a05f2a1f0c81b
- pristine_git_object: 9e679286516d9b8804900b94134ef77c95fc936f
+ docs/models/components/ExhibitorCategoryId.md:
+ last_write_checksum: sha1:39ff255d60dd9ff03c804cf65e94ab9beec39e2a
docs/models/components/ExhibitorCategoryIdListResponse.md:
id: a137640794c3
- last_write_checksum: sha1:3f9b6fac7f99ffce740941ec87c636365eeab53d
+ last_write_checksum: sha1:b10ae198133d9494ddad37ed11c909aac5390612
pristine_git_object: c64aaebc29dfba1abe405e6b389d2ec423b3bcd7
docs/models/components/ExhibitorCategoryRequest.md:
id: a50885bfff1c
- last_write_checksum: sha1:973f8f7c9e6fb7c1895065d66886ebb4537a8473
+ last_write_checksum: sha1:4778a844b1159b0d77339ab384ca19fb10593376
pristine_git_object: e987c276bafdb76391052c0b95b7986ba10bf7ad
docs/models/components/ExhibitorCategoryRequestType.md:
id: 6423e7d864eb
@@ -2553,7 +2529,7 @@ trackedFiles:
pristine_git_object: 839ac9742d3fab473a0e4d6f6c2f3f277d9c1b92
docs/models/components/ExhibitorCategoryResponse.md:
id: 8f5c005d66bc
- last_write_checksum: sha1:76b33dc7a66361efe95f42a1f82c3277641460f0
+ last_write_checksum: sha1:f7a0b70b6524e56a425e0b5f1e1b3a876b7023e4
pristine_git_object: ffc0e6bdd5704de4a3143d8cf6af56a0e44698f5
docs/models/components/ExhibitorCategoryResponseType.md:
id: 5392d8b4198b
@@ -2561,59 +2537,51 @@ trackedFiles:
pristine_git_object: 3eb4917d275b0da735a7582ce4040706cf7f8ef7
docs/models/components/ExhibitorDocumentOpened.md:
id: 9e3bc9386d03
- last_write_checksum: sha1:b0557559042165239898f6b767c1410d6e6bee23
+ last_write_checksum: sha1:0922117d0bd8b49dd2698d2bd154d2e90c46feda
pristine_git_object: 80a6106fc11a0a8f1b095d1bcee885247afe953e
- docs/models/components/ExhibitorIdJson.md:
- id: 12e389d2630a
- last_write_checksum: sha1:a9ee7a387b0f341f80812eb601751b02f324f57e
- pristine_git_object: af89e060a057eb00310f4c4d22f51732e31659ec
+ docs/models/components/ExhibitorId.md:
+ last_write_checksum: sha1:377c408be65e57dcf2aa0378d639e2df73766ddc
docs/models/components/ExhibitorIdListResponse.md:
id: 3a18594f365d
- last_write_checksum: sha1:f64d6ae1f230c3614a5c1ce550b7e7d0663a8c65
+ last_write_checksum: sha1:06d0ea624367e9ef64e2efc45c0bd20083305b7d
pristine_git_object: 8cd9f3d19422cfbcaca30dbae67f1f9553da68c6
docs/models/components/ExhibitorJson.md:
id: 05f41659f4fa
- last_write_checksum: sha1:6f149746655c1c679a3f2d8d36bbbc860dca0203
+ last_write_checksum: sha1:ff8c419deb422355afdc70c5dd8e81d1c24d3c75
pristine_git_object: 1fb374caac5538bf7aeca805df6e58b610797b31
- docs/models/components/ExhibitorJson1.md:
- id: 74319307dc73
- last_write_checksum: sha1:5206968da3d71c3cdcdf7b76db237e547e7e180a
- pristine_git_object: 149277ef93fb41efdcf42ac28fba38d0e8aa135c
- docs/models/components/ExhibitorQuestionTypeJson.md:
- id: 57389f8aa17d
- last_write_checksum: sha1:227cc0b09adb29a1bd0e0f57370be2485d6a3511
- pristine_git_object: 75dbf8ae9d80247bf8daad8e98bc63cc715e1669
+ docs/models/components/ExhibitorQuestionType.md:
+ last_write_checksum: sha1:184e0bf759340bb501c69a6509b955696ab14c1b
docs/models/components/ExhibitorQuestionsResponse.md:
id: 5195fb977786
last_write_checksum: sha1:7f02583b9366bb67a50b2d93798ffb35e4804957
pristine_git_object: ff0e9eba5097e87db913ac61601975c366c71a80
docs/models/components/ExhibitorRegistrationPackListResponse.md:
id: 2ca537d4965e
- last_write_checksum: sha1:b8266c57d4a0f44c8eaf51cbd1b0d56285844fb0
+ last_write_checksum: sha1:e51f435991036b0c75b4ca991225d01f765e9ed1
pristine_git_object: 2d24a72c84f75944a5e14e1a4b57e73313f36ff6
docs/models/components/ExhibitorRequest.md:
id: b2968d7c4d8e
- last_write_checksum: sha1:828101a8b808b29b6bb56977b01dfe6f0fa8f5c4
+ last_write_checksum: sha1:0843b03844652d9d16b02cbd4af7688078de402e
pristine_git_object: 9e029619cc509ddcf5c82dcb341496924e900186
docs/models/components/ExhibitorResponse.md:
id: 057c82490dce
- last_write_checksum: sha1:0f4241b518e16dfe3c3a0ff9f75034bcd296e600
+ last_write_checksum: sha1:d5294a27fda65e0754f8b845ab1440faa969405e
pristine_git_object: 758dc1a665157513ccbe26d4dcfc6a71379ea76e
docs/models/components/ExhibitorSocialLinkOpened.md:
id: b18993967fd4
- last_write_checksum: sha1:365e97967e31815f6eabe8bfe8c82e6b4626993e
+ last_write_checksum: sha1:b6483c801b5f99d1b647f1b3f8ee4bc3eb7200a1
pristine_git_object: 2b863e179b7968fc1be1bb3666b40aa540ef813c
docs/models/components/ExhibitorViewed.md:
id: a1044144a1a6
- last_write_checksum: sha1:f8a160371f76885df151ee8093d0eb7f708ca861
+ last_write_checksum: sha1:a4e2a581e59eb6f6cba2660040ec0d0225c7482f
pristine_git_object: 7752fe648f097fde85a8d7fc203e596f9ea319b0
docs/models/components/ExhibitorVirtualBoothJoined.md:
id: 90778f8632e6
- last_write_checksum: sha1:1f19a80676b91e41669e04edfe2ee68e518efee0
+ last_write_checksum: sha1:7f98cdb8041ba24e3bfee3ee4ea70e64e509d1ac
pristine_git_object: 4741d013af630bbf45507933d52ad1b3b2184ea0
docs/models/components/ExhibitorWeblinkOpened.md:
id: 1c28bacaf357
- last_write_checksum: sha1:e535e03ff87f0572ca01cd4ee27e765e8e171b69
+ last_write_checksum: sha1:118ab9bb235c4bd744c69fbb3a8a86a0765e6864
pristine_git_object: adab280afedeb080af6412c4beecb596368125ba
docs/models/components/ExhibitorsEventCopyOverride.md:
id: 27b7b982f6df
@@ -2621,7 +2589,7 @@ trackedFiles:
pristine_git_object: e7b0f14b920450653fad1f8e7b6a74341a95c358
docs/models/components/ExhibitorsPaginatedResponse.md:
id: 37de6a8cfef1
- last_write_checksum: sha1:9ba4857e1aa4e83494027a70dcd864dcfcc806e1
+ last_write_checksum: sha1:9693b92529d839233ce914b45fb4c24febf25a5f
pristine_git_object: 725d01413f473ab192d8cc7a64e5090b19542b84
docs/models/components/ExistingAdmissionItem.md:
id: d72a6b68cf32
@@ -2637,7 +2605,7 @@ trackedFiles:
pristine_git_object: 47c2544f7c055d4bab49b9e0e80bf87a641be98f
docs/models/components/ExistingAudienceSegment.md:
id: add989d43d0b
- last_write_checksum: sha1:6d1c8fdb73733d3acb5d0d0a69bdb66e3fb8493d
+ last_write_checksum: sha1:18ff1feae0defcd9a8ef4c70a93d158132338317
pristine_git_object: aa7c7e5c7027c0e7a58a05a906574df00c853db8
docs/models/components/ExistingAudienceSegmentCreationTypeJson.md:
id: de4e15767610
@@ -2655,18 +2623,10 @@ trackedFiles:
id: 752d99853f9e
last_write_checksum: sha1:55a079d4248e162a2483bf1ff484ca5e9d736237
pristine_git_object: 3c5e4da3ff8fff1a139c55934ecac763dfb23b08
- docs/models/components/ExistingBoothStaffJson.md:
- id: 2962b3ca18ae
- last_write_checksum: sha1:c3a54e30204533f93a1bf5397530d9ee705f71bb
- pristine_git_object: 12852b6766b4e39ca97179ac935b1e9d7ad10eee
- docs/models/components/ExistingCapacityJson.md:
- id: 64ecbc75f625
- last_write_checksum: sha1:ae76bc3806794273c6cfdcf4b4c4344f34ad3ee4
- pristine_git_object: d3e833c436e109ced2843b2bf7e66f9f02aa3def
- docs/models/components/ExistingCapacityJsonRegistrationType.md:
- id: f6168828959b
- last_write_checksum: sha1:4cdbf5184279632d47d4591b9969296daaf4a072
- pristine_git_object: de42c896c98e221e59e156403ce8df2e6f82a2a0
+ docs/models/components/ExistingCapacity.md:
+ last_write_checksum: sha1:2003a6e5983ae7bc4eda3872bb947ec2564ddd2e
+ docs/models/components/ExistingCapacityRegistrationType.md:
+ last_write_checksum: sha1:e621f3b5e9464e8191a188fa78bde32bdf831262
docs/models/components/ExistingCustomField.md:
id: 11ddedaca25a
last_write_checksum: sha1:05aa40744292b710cdbbc0e75e8588fcb26e69a7
@@ -2711,77 +2671,39 @@ trackedFiles:
id: eb0f847109e6
last_write_checksum: sha1:4d9ea2a911a8a094b61345bc761fef27fd85a940
pristine_git_object: d97bc86da54bb3813412776ce4a4d08c2008b26b
- docs/models/components/ExistingEliteratureRequestDataJson.md:
- id: 283a08022b65
- last_write_checksum: sha1:1126082daa5b543fc52f451f66438caf815f1b7d
- pristine_git_object: d78a08b80998f1875f934867a9ae6240da62bc0a
- docs/models/components/ExistingExhibitorAdminJson.md:
- id: cc02bab5c538
- last_write_checksum: sha1:27dc379b5325ade7dc7858cdd7b6e33dd0098af8
- pristine_git_object: 3638992f60bf17a2ae90fd22a5b85841e4e31f8a
- docs/models/components/ExistingExhibitorAnswerJson.md:
- id: 571c8de258f4
- last_write_checksum: sha1:ed94d3560bb464a0d25c221df99a34527f95e3b2
- pristine_git_object: c84e030f722aab19b7d584e309d9235a6c6f663a
- docs/models/components/ExistingExhibitorAnswerJsonInput.md:
- id: bf09703e1ed2
- last_write_checksum: sha1:914cba70f9ffcd81636fa3ce219e6fa396408526
- pristine_git_object: 62f3edb51984fb01efe071e4ca591eb62c7a64ac
- docs/models/components/ExistingExhibitorCategoryJson.md:
- id: a6359ae124ca
- last_write_checksum: sha1:d6cd0f45b37b2f2cb2a01fad5c2c8322973bdad1
- pristine_git_object: 04c58b1dec049333977a8e9209a20e838884a297
- docs/models/components/ExistingExhibitorCategoryJsonType.md:
- id: 291d6257a303
- last_write_checksum: sha1:77c385ef2bb8082bb34647dcad81f3cf03cced3e
- pristine_git_object: 9d75e0e8daf573047c2aff5b2b77d02e6f4d9416
- docs/models/components/ExistingExhibitorJson.md:
- id: 76a40f0a60f9
- last_write_checksum: sha1:da4a0bd45c631f512578baf8b822135c7eee97c7
- pristine_git_object: ce8a8b18102d97a668954aa1bd02da268d7d01bb
+ docs/models/components/ExistingELiteratureRequestDataForLead.md:
+ last_write_checksum: sha1:52bc534fb4a6c73e4f34c56896b99334c8ec78a5
+ docs/models/components/ExistingExhibitorAnswer.md:
+ last_write_checksum: sha1:51569e292c0ead1e21ca6b361b5d0c8d8cb387e0
+ docs/models/components/ExistingExhibitorAnswerInput.md:
+ last_write_checksum: sha1:769a26630b87be096b32e09c2401b05e3e4c9b09
docs/models/components/ExistingExhibitorQuestion.md:
id: e20537d22cbe
- last_write_checksum: sha1:0bd64d9375c38a2a91605a1cf277548600b36d8a
+ last_write_checksum: sha1:fda142f39e92238dcb47670a73357ade18bfa179
pristine_git_object: 7a67aeb4f9c35189951598a564816835bc93873b
docs/models/components/ExistingFile.md:
id: 9a1d8f9782d9
- last_write_checksum: sha1:8d40d864f316d0db72bea3c6b7a0436df93823f7
+ last_write_checksum: sha1:ee11f06a7fbe4e35aa7b4b5af226e0f36e89f2f9
pristine_git_object: d2e29383c0ca8986cc8ba2bf33c1bb6ef86a6734
docs/models/components/ExistingHub.md:
id: 048645617f7b
- last_write_checksum: sha1:731424fe1b59ba97052c1f03a2a7b3bb7fc139ad
+ last_write_checksum: sha1:5b3589ed0c03fbc80e8a2ee6389139d0858237e9
pristine_git_object: 6f8eb6fecec29c8d93930af6ce145a21e2af1fbc
- docs/models/components/ExistingLeadJson.md:
- id: 0574f547b6b6
- last_write_checksum: sha1:8996931ffd241d68c53618ab5fcdfc9231f6420c
- pristine_git_object: e0cde1042239c9bace5cdf89bf492bdcf025471e
- docs/models/components/ExistingLeadJsonType.md:
- id: 1a47298ede52
- last_write_checksum: sha1:dbc6825e6256e0dd5c45d46aa0f3dc3b842407af
- pristine_git_object: 986c80513b8363418a561ca92300f916dca88b53
- docs/models/components/ExistingMemberJson.md:
- id: 11185c5630ac
- last_write_checksum: sha1:4bb511c71492110687e6a1770359c4b1a798db4b
- pristine_git_object: 480dbea26a62c871f7822b5cf039850e98f4f5da
- docs/models/components/ExistingMemberJsonLink.md:
- id: 425d6293b5e5
- last_write_checksum: sha1:37624dfcec537f9a261ccc783ab5afd091a806c0
- pristine_git_object: 3a93e8e0ac9cf00942af83bbc6f69d17ec0edc6e
+ docs/models/components/ExistingMember.md:
+ last_write_checksum: sha1:c9054dfe8dc180c6d3fd9a5759aa94b1c25e93af
+ docs/models/components/ExistingMemberLink.md:
+ last_write_checksum: sha1:d9696f1263bb6849f2cec0a93d88e8e4892091ae
docs/models/components/ExistingPlayer.md:
id: 0fa15ff70781
last_write_checksum: sha1:244f6ef4fe21cc279d1330f4cd820bf84c0fde31
pristine_git_object: 7e27947dd5dfc211e56ddfc5f3ce465d821fcbc1
- docs/models/components/ExistingRegistrationPackJson.md:
- id: ef7ea620d293
- last_write_checksum: sha1:8ad699fdbf5540d28f278a160a097f7bc6833fb2
- pristine_git_object: 050566798d920dd611e672c150e6b3bdb9ba4e36
docs/models/components/ExistingRegistrationPathJson.md:
id: 0d3342d0a131
last_write_checksum: sha1:c471e76c8205a02d058b020a0d6504a1ecaa84bc
pristine_git_object: f9667c133aa74fbeccfdb8b9f5b3a2747a0804f0
docs/models/components/ExistingRegistrationTypeWithAssociatedRegPathJson.md:
id: 31f5f921f842
- last_write_checksum: sha1:3a5e3c095eaaaa1977707a465682d70d66f4c10a
+ last_write_checksum: sha1:c462c108d6178cbecd2200165ad4bab067f9660d
pristine_git_object: f56372493eb64386037f688e84f3123f9babff28
docs/models/components/ExistingRegistrationTypeWithAssociatedRegPathJsonEvent.md:
id: c1b82c87fabc
@@ -2837,7 +2759,7 @@ trackedFiles:
pristine_git_object: a686ae3e117d4a7118f6ac027c00c39ae2cd0390
docs/models/components/ExistingSponsorshipLevel.md:
id: d1778c7dd6be
- last_write_checksum: sha1:9a79e3dcf5ad1dfc2b1c35ce72c9de5a62ed37dc
+ last_write_checksum: sha1:601f9560d1cea107dd5a76d679d1f47e28a82685
pristine_git_object: 9343c86111de58b8f96ef8262b4915b1bdc6c916
docs/models/components/ExistingTableWithSeats.md:
id: 4c227c7b4073
@@ -2881,7 +2803,7 @@ trackedFiles:
pristine_git_object: 892ef3192f1b7d3534a6eb97325adc9d3b62cd22
docs/models/components/ExistingWeblink.md:
id: 771e8a68bcf9
- last_write_checksum: sha1:ecf17fd8bac4b121886f3b4d4ac3ce421f5d626c
+ last_write_checksum: sha1:ef3b0e00001055bbedce7285c37d43aeb1689f32
pristine_git_object: a68541f4ab5136aa0da269a40ad27ccc1546d938
docs/models/components/Expand.md:
id: 10ee44fdfe91
@@ -2995,11 +2917,11 @@ trackedFiles:
pristine_git_object: 3529372d68e389f525c980b1b13588aefceabc30
docs/models/components/FeatureTypeJson.md:
id: 1e01b67da07b
- last_write_checksum: sha1:af5b1fd4d966ff11f2081d737ed494931852f566
+ last_write_checksum: sha1:2952ecd7398b3d4be43d17df53068e03ddb9834a
pristine_git_object: 931bca4f388789b3a01c2301cc3f5ca13f63ea8d
docs/models/components/FeatureUpdate.md:
id: 95d4a3111b4a
- last_write_checksum: sha1:6fb86d1406c638bf91008d3b5acce959e3c253a1
+ last_write_checksum: sha1:fe5a6900f1ed393633fc8e1163bfe5045d282854
pristine_git_object: 5faf853b402de50d82a6c42b2306c8f18389b7b3
docs/models/components/FeatureUpdateConfig.md:
id: 0686ee65ae3f
@@ -3019,15 +2941,15 @@ trackedFiles:
pristine_git_object: 4e89b27a35ceb9680b1955f7c5a1151a6e4f648f
docs/models/components/FieldJson.md:
last_write_checksum: sha1:79503a39592605ad2dff3a2de6f6d9959c0ea57b
- docs/models/components/FieldJson5.md:
- last_write_checksum: sha1:33583751e5bac3cef45d32b10cb78c3446db3b26
+ docs/models/components/FieldJson3.md:
+ last_write_checksum: sha1:1788c384d87409a2a9713e22b709c7aec4467cbe
docs/models/components/FieldTypeJson.md:
last_write_checksum: sha1:7a7e38396a82b5554d2ddcce66c7df519be8598e
docs/models/components/FieldTypeJson2.md:
last_write_checksum: sha1:24e43a373bc916a0aa4f8c225da3feec7843e5e7
docs/models/components/FileInput.md:
id: be770e3d5cdc
- last_write_checksum: sha1:babcb9fb847faf9d7e19f89e7d5050ff9357e346
+ last_write_checksum: sha1:8e3c2947e824431ef9a50406231fc36ce4d09e3e
pristine_git_object: c403f64bc3c6ec83d21d832ec995aefdc132e748
docs/models/components/FileLinkJson.md:
id: 7f975aebabbd
@@ -3113,7 +3035,7 @@ trackedFiles:
pristine_git_object: a892d7ed483f2d34450ca65bebefa4b1415f6f32
docs/models/components/GuestJson.md:
id: e4c248e3ab53
- last_write_checksum: sha1:fb3927651a9a41d29ab42982545aba169ef72c02
+ last_write_checksum: sha1:335e7ac0f1d027222e614e65e3e4407d5898ca7f
pristine_git_object: ab4876fd65ac697a9249369243b6a26b9fc69a42
docs/models/components/GuestRoomOccupancyJson.md:
last_write_checksum: sha1:0e71822c30935e99bc3a47a0114324617f471701
@@ -3205,7 +3127,7 @@ trackedFiles:
pristine_git_object: 82f2a3b99b8b8d58be9530d71dc7e4544c6b907d
docs/models/components/HousingEventHotel.md:
id: fab3f7012020
- last_write_checksum: sha1:d802309c8afe68509002ffd2370a2f3e80a67f40
+ last_write_checksum: sha1:637e98f3bc00585cbf2be80206a711ee78f7a78c
pristine_git_object: 4321043e068c9acf7496b03beda928a7dde8f75b
docs/models/components/HousingEventHotelsList.md:
id: cb725fefc57e
@@ -3227,45 +3149,27 @@ trackedFiles:
id: b2729948bf79
last_write_checksum: sha1:808df6a854d6090785b7f69ba087b8235ca35f15
pristine_git_object: 06018842875089a62442e3bcc072f5c67cee9c67
- docs/models/components/HubBackgroundJson.md:
- id: 37d73946e451
- last_write_checksum: sha1:b07a339d8e88fd87d0b442915a5e2e93a8dc2c67
- pristine_git_object: 9f0ae91aae424c5bc9fe6d280af8434ee9146d40
- docs/models/components/HubCalendarJson.md:
- id: 9cd0bb19db68
- last_write_checksum: sha1:2c9a7639e72e1ebff79c25038b44ac2d7259ec41
- pristine_git_object: 92af108985466a28bc53efd50f65aad1675e57a3
- docs/models/components/HubColorsJson.md:
- id: 3099c52dccab
- last_write_checksum: sha1:fe51f4ceca24fb50c72761607a13a963391196f8
- pristine_git_object: 85016d94f43201cf6164e93b6256a411d44e105c
- docs/models/components/HubFontsJson.md:
- id: 48e6751fd7b7
- last_write_checksum: sha1:1f7880360643f828cf41cb51f2a77b4154405ef8
- pristine_git_object: 296becba3a4b7b028b05d3dc35cd938fa39f1096
- docs/models/components/HubLoginJson.md:
- id: 67dd52053098
- last_write_checksum: sha1:ef4ec0c0cbdffd4b7e9499486eb77f853cbaabc5
- pristine_git_object: daa60cc96ef9099d72923967b7cab87cc1d53b96
- docs/models/components/HubLoginJsonType.md:
- id: d4c414dcbbce
- last_write_checksum: sha1:bff4c38336fd9fe001b5f0463f7520a4405759f2
- pristine_git_object: dc3c4993817a79f93ba7ebefeb0c7d1b8fee3818
- docs/models/components/HubLogoJson.md:
- id: 418b4ded4ccf
- last_write_checksum: sha1:dc5acf90ca5316af775bce2822cf96404c6fe08c
- pristine_git_object: 51931bfaa6f401702f49508755a28168ea18c04b
- docs/models/components/HubOwnerJson.md:
- id: eb3e76aa03ac
- last_write_checksum: sha1:aad76cfe1e53f4b06171cb6d85cec6199cc180da
- pristine_git_object: 6a550b1168bcf3641018d4dda536d10056f376fa
- docs/models/components/HubStatusPropertyJson.md:
- id: 00026932ec99
- last_write_checksum: sha1:94954305417eab29f78caebc50ad45dbeb477681
- pristine_git_object: 873ae76092937ed505bff0844b3122b115a61e1b
+ docs/models/components/HubBackground.md:
+ last_write_checksum: sha1:165e64845a80c62a59d3c0e0d3222efde8714e9a
+ docs/models/components/HubCalendar.md:
+ last_write_checksum: sha1:535032e0c93e67953e06057150b62be72376acea
+ docs/models/components/HubColors.md:
+ last_write_checksum: sha1:3bc9772172f31060719500ab20850e862aaf341a
+ docs/models/components/HubFonts.md:
+ last_write_checksum: sha1:f77788553fc341212a9c845b5a91f7c8f032a224
+ docs/models/components/HubLogin.md:
+ last_write_checksum: sha1:3d85e9a9aec7da04f79eed1993e3532bb241f03d
+ docs/models/components/HubLoginType.md:
+ last_write_checksum: sha1:d7e6de58a0c039e5590a849f32a76d8298d1e90f
+ docs/models/components/HubLogo.md:
+ last_write_checksum: sha1:b4ee3c5b46a95c9c2b7b32aca9c7d1a92524b045
+ docs/models/components/HubOwner.md:
+ last_write_checksum: sha1:088b65c9dadbb9400fc76fedddf390cc8e5da7b3
+ docs/models/components/HubStatusProperty.md:
+ last_write_checksum: sha1:00cc35a990b1f40a9061a1e16d6c636c7192f1d1
docs/models/components/HubsPaginatedResponse.md:
id: 8a1a8280be3d
- last_write_checksum: sha1:3fa1d0b9f4c3c249a7b8fd4f58e0db8742705d3e
+ last_write_checksum: sha1:2c049b6657a2755f9537d9bb6ed2a2ec740ddd31
pristine_git_object: bac244c6b3db426b89a284eb308637d98f0bdb43
docs/models/components/IdJson.md:
id: 928f55e0dcce
@@ -3299,7 +3203,7 @@ trackedFiles:
pristine_git_object: b9a72c3497fe417176914681a27a6e344d5943a6
docs/models/components/InvitationListPaginatedResponse.md:
id: dae29e4204bc
- last_write_checksum: sha1:e273dc40014d126f69b88bb2c14ed2a33766cec8
+ last_write_checksum: sha1:a8d7e79f8facecbc9e4883472c37a169c29899d5
pristine_git_object: d17cbc0c48782aca5fc668b799bacdacb229eed8
docs/models/components/InvoiceFile.md:
id: 977dfb191f25
@@ -3347,57 +3251,31 @@ trackedFiles:
id: 688361b73986
last_write_checksum: sha1:6615bc50f0968a7a50d1294a2c686929e3f7bf9f
pristine_git_object: abb03a87a53123c2848263da96c3b14bfb4a48c1
- docs/models/components/LeadAddressJson.md:
- id: 2526e22cd128
- last_write_checksum: sha1:02d9403e0182ccb264425aa5d9eda296090fa8cf
- pristine_git_object: 6a69c894162f6722464245edb1757e1c9e162dca
- docs/models/components/LeadAppointmentJson.md:
- id: fcb375e72346
- last_write_checksum: sha1:c1f684cf4adf4ef17be8b313d8a255e0e420ae90
- pristine_git_object: 8624822bdfd1d981ec1a115e5467f8bbb7450f9e
- docs/models/components/LeadAttendeeJson.md:
- id: e742229ed5ca
- last_write_checksum: sha1:6beb6f547934dfc1449b4e3ab0e5def78aaf8fd7
- pristine_git_object: cf7795fd6029edc4e7fb209b1aedae38d3b0d8ed
- docs/models/components/LeadBoothStaffJson.md:
- id: 73675a4da22b
- last_write_checksum: sha1:a073921655ac09f86b01bd6d987cca39752cc4b3
- pristine_git_object: 7ff52e2a1384dabf1a91ad39eb2fafeb3c9bc3e5
- docs/models/components/LeadDeviceJson.md:
- id: 819094b67f59
- last_write_checksum: sha1:56dd7e250db46bfb9871e1033addf1aecd514c5c
- pristine_git_object: 781a8b4f0c615eee354a7e972472fb772ab9c9b0
+ docs/models/components/Lead.md:
+ last_write_checksum: sha1:6cc43ee3b81695759ee6edbac2814c5a24b6dca1
+ docs/models/components/Lead2.md:
+ last_write_checksum: sha1:2f0955a9a0e98e97c5ddc550514dfeab7ef6a5de
docs/models/components/LeadInboundCreated.md:
id: 175878a88e9f
last_write_checksum: sha1:79e4cf2a548a0926326b1e33b6be2f623aebfe36
pristine_git_object: db901d023aed52833a3215150201dec65ed2e1e9
- docs/models/components/LeadJson.md:
- id: 7a9f8aa4d996
- last_write_checksum: sha1:136d6be01c2dc2f954eb1763f6f9ebf711c1f82c
- pristine_git_object: 038bba54f9cf30026250e280f615d549a62ad19d
docs/models/components/LeadObjectJson.md:
id: 12b6ca050d54
last_write_checksum: sha1:3aba30c859ef004b558ff9721e39b8a96796ce17
pristine_git_object: 74b78ec55335b82e4e6ab899748e25cb8ba70fd4
- docs/models/components/LeadQualificationAnswersJson.md:
- id: a122a8765e6d
- last_write_checksum: sha1:a8673cfc35f81751251a784bee8371746b3f837e
- pristine_git_object: de3c45b4bf15f2a96f8bdeeea600cb9d80231b0e
+ docs/models/components/LeadQualificationAnswers.md:
+ last_write_checksum: sha1:2e3454ff1ec1321e30fcedd8d4c6d40d953495e0
docs/models/components/LeadQualificationAnswersListResponse.md:
id: 77467f69dce4
- last_write_checksum: sha1:3a04ff851c45ea5abf08f8d17156fbee1eccb6b2
+ last_write_checksum: sha1:c78f48f7e9aeb3839361f16f0b5914631897555b
pristine_git_object: 6911694c9d01c3f310f63f3156a9cd52865607d0
- docs/models/components/LeadQualificationQuestionJson.md:
- id: 9ebe380a5df9
- last_write_checksum: sha1:d90634e13b4c46e030959f5da50119217da10b7f
- pristine_git_object: 2d0e0f91f4f10d6f143f32c1b730965876a775f7
- docs/models/components/LeadQualificationQuestionJsonType.md:
- id: 8befe531fcb4
- last_write_checksum: sha1:42343500814c7fd85ebbbe078dec16905ab92528
- pristine_git_object: 85e40a942feb2a9e7410a39b9cd94c2897b3bc7a
+ docs/models/components/LeadQualificationQuestion.md:
+ last_write_checksum: sha1:c505dff5c9d807af34d8033a20f3e21d181f2a4a
+ docs/models/components/LeadQualificationQuestionType.md:
+ last_write_checksum: sha1:d19bb94b77c55c527ae1b79ee6e7896fb326b0e6
docs/models/components/LeadQualificationQuestionsListResponse.md:
id: 9777cc008adc
- last_write_checksum: sha1:947939b2ec7267585be52d7c2e595e7a84b3bf4c
+ last_write_checksum: sha1:d554bb37022af1f5f3f291c2b83e5210be98010a
pristine_git_object: 85ddce20477508328d23b29379d83ecfbcbf5e05
docs/models/components/LeadQualified.md:
id: cafa7fc6aaf1
@@ -3416,21 +3294,25 @@ trackedFiles:
last_write_checksum: sha1:604489646dd4587238c6f51f7ee6c419b69c78c9
pristine_git_object: 7230ebaa0b73dbe28e855d2942f9efd9a6632663
docs/models/components/LeadSource.md:
- last_write_checksum: sha1:e3f46399cf9728bcfaedc5e40931e49f7462b720
+ last_write_checksum: sha1:39c75dac94af69393d3079fa0fb152d9f8ca2833
docs/models/components/LeadSourceExpand.md:
last_write_checksum: sha1:0285461858c447e0e40039f65c703280e76bfa7c
docs/models/components/LeadSourceJson.md:
- last_write_checksum: sha1:6a65c9083907625d998609ad01412da6018c3190
+ last_write_checksum: sha1:6ff5f1e58a5f041b0b7170de6bf4ae91d8d5e332
docs/models/components/LeadSourceSectionJson.md:
- last_write_checksum: sha1:e1a82d55243c8dd4d6d0e4e4d6616e4e6bddaa29
+ last_write_checksum: sha1:f930b4e860802a08fa36c86f591dbe81ae18d35b
+ docs/models/components/LeadType.md:
+ last_write_checksum: sha1:06d0b05756e89037f721c86439d6618b31b1c1fe
docs/models/components/LeadsPaginatedResponse.md:
id: 427a7350ef33
- last_write_checksum: sha1:115e22624abc659214e8001beef7782a5fc41aff
+ last_write_checksum: sha1:74778c1e650a2a1dc72f65c9db0f419b182d22dc
pristine_git_object: 1f52c5bb11dc697be42e97408d28797c8149e4e7
docs/models/components/LegDetailJson.md:
id: ecbdc5a3ab5e
last_write_checksum: sha1:2ba05d646df82c3fde67965c68fc69a35aeaaeaf
pristine_git_object: d61f426ae8760e30cf3a2e5b85afdf32f3974a62
+ docs/models/components/Link.md:
+ last_write_checksum: sha1:02f61303b4d47b5377d0566a80ef479daf83b85f
docs/models/components/LinkJson.md:
id: cfede2515aa2
last_write_checksum: sha1:714a6776c55a75cd91ba94803817993d1eedee7f
@@ -3509,7 +3391,7 @@ trackedFiles:
pristine_git_object: eca84717491366ef0505c3669cf3de888bbd7357
docs/models/components/MeetingRequestCustomFieldJson.md:
id: 6b938598ba0f
- last_write_checksum: sha1:663425164365f637bdfbc6840448d1739170995a
+ last_write_checksum: sha1:23c95a25d6d60224c108ce8a221cf2a8f2ad1538
pristine_git_object: a65c92a6f08ccf41ddd11df1caed2bd09db47d8d
docs/models/components/MeetingRequestCustomFieldJsonCustomFieldType.md:
id: 6ae9ce160fef
@@ -3533,7 +3415,7 @@ trackedFiles:
pristine_git_object: 04f38fbb6877fe16312981991b353e7493885ef8
docs/models/components/MeetingRequestEvent.md:
id: e059e61d9c4a
- last_write_checksum: sha1:74eb7087648f2fed074c26c471a6c946f318a382
+ last_write_checksum: sha1:2a82a887cce36e1fdcf118f2bdfbbcf2c85b15fb
pristine_git_object: 2f29b4313fbb51b6e9757735aed9b7eb86c04a16
docs/models/components/MeetingRequestForm.md:
id: daa4f88a7438
@@ -3553,7 +3435,7 @@ trackedFiles:
pristine_git_object: 25cc0f7b96a78bf357ec137aeec8eeeec42dc46e
docs/models/components/MeetingRequestQuestionJson.md:
id: 22d9f579996c
- last_write_checksum: sha1:8c9256dd997c5255b5c1a95d2be12a29759ae0f6
+ last_write_checksum: sha1:373be56f08c9edba0317ec5ee8a5b545baaf91f2
pristine_git_object: 55cc84cac319b249997a613e4ec7bd1357533346
docs/models/components/MeetingRequestUpdateJson.md:
id: b0dfb099a5ab
@@ -3735,7 +3617,7 @@ trackedFiles:
pristine_git_object: 370ad399086b363606750d135bfe7a8178159b3f
docs/models/components/PaginatedExistingMember.md:
id: 2718e53339bb
- last_write_checksum: sha1:befb72cd17af681b32ce9160c45fc6cf8cffa48b
+ last_write_checksum: sha1:02adcd494d13f675f16f402aa8c8120b2e4ad2ab
pristine_git_object: 7d1e6b8a083023758756e1c062096e9875836114
docs/models/components/PaginatedInternalDocuments.md:
last_write_checksum: sha1:44bbb8258ef78599018b839c68c9f3fd40cf05a3
@@ -3753,18 +3635,20 @@ trackedFiles:
last_write_checksum: sha1:f973c0f3c25962049a19ed5bd89975f08b59e178
docs/models/components/PaginatedRfpSuppliers.md:
last_write_checksum: sha1:c4a038135889c57b06556d8eb464fa7af27e0789
+ docs/models/components/PaginationLinks.md:
+ last_write_checksum: sha1:b5eea6d7c408cdf861a054f4c196b233efcd1658
docs/models/components/PaginationLinksJson.md:
id: 57cdbf0bebe6
last_write_checksum: sha1:41277c0f252a5a03b1e66a39bbee5a536a580404
pristine_git_object: cda9b5f1ccb4cf09a54dcda089e35e0e338720b6
+ docs/models/components/Paging.md:
+ last_write_checksum: sha1:b9f6b8c08752bdc78bfbc2eca9851f2bccac12d1
docs/models/components/PagingJson.md:
id: 4ad5f98d5e3c
last_write_checksum: sha1:4213ec682006814dc4ced0229b1cfa7360818429
pristine_git_object: 540b214437be5fe8f6d83dfaf4163559836b80ec
- docs/models/components/PagingJson25.md:
- id: f6cdda2dca21
- last_write_checksum: sha1:cc53ae5998d79473c011c8b1f75a1ee74ef23c8b
- pristine_git_object: d9b25b1bc97167a7db311dde01402b1bb3ff79d1
+ docs/models/components/PagingJson23.md:
+ last_write_checksum: sha1:e344e179efaef8eab69a5fe39a04a2aea365d41f
docs/models/components/PagingNoTotalCountJson2.md:
last_write_checksum: sha1:bb4c6bfd140301d88642701bbb7762bab5252408
docs/models/components/ParticipantResponseJson.md:
@@ -3801,7 +3685,7 @@ trackedFiles:
pristine_git_object: bf591ad8cc44f7858ab6584aa98cd14f24f31f02
docs/models/components/PaymentInfoJson.md:
id: af1e66b5ac9b
- last_write_checksum: sha1:e15e9056da9348b797d2b8a7ba34786656a98f77
+ last_write_checksum: sha1:af5cace50389d4e9e1d3b2ded8f985eda7f1f9c6
pristine_git_object: 65bffcdf204cbe4010ed222377700eef0bd2cdce
docs/models/components/PaymentMethodJson.md:
id: e270c571c2c8
@@ -3957,7 +3841,7 @@ trackedFiles:
pristine_git_object: 9a78509bb0ac087a0f38f827cb46cc01b1555dd9
docs/models/components/ProcessFormSubmissionJson.md:
id: 56d467ca7587
- last_write_checksum: sha1:207d0eaec6129bd947ebe198cbe6408af5f6828a
+ last_write_checksum: sha1:30475352d7e1e52f9f51ba871522399543dcd7d7
pristine_git_object: ef3cf571c278d3a9e849f31fc8fdd5ba31933c62
docs/models/components/ProcessFormSubmissionJsonEvent.md:
id: eed351147f2e
@@ -4035,7 +3919,7 @@ trackedFiles:
last_write_checksum: sha1:f5187591b485d93c81bcdd1ab39898c9c9c1881a
docs/models/components/Property.md:
id: f4843070cdbc
- last_write_checksum: sha1:f3459c80739b5b44577460e664a42a760aea5a7e
+ last_write_checksum: sha1:f9f0adcec62f519d619365a822de1e6495afbc4d
pristine_git_object: 7a32a647092ef68846a7adbfd3eea71fbe74da2f
docs/models/components/PropertyBrand.md:
id: 7de25dd35cec
@@ -4099,7 +3983,7 @@ trackedFiles:
pristine_git_object: d88ebc75eaa83a564dc86f58b1fab0bbdd5ba61f
docs/models/components/PublicUsagePlan.md:
id: fa0628898379
- last_write_checksum: sha1:cc5a198a820025fbe5ab07d216ab8bfc5a17984c
+ last_write_checksum: sha1:e48438f4260e6a959aebcdcab688842e7f5df119
pristine_git_object: 5b68c8426975c0a7f1ef80214e969dbd47c237bf
docs/models/components/QuantityItem.md:
id: bb61d9db815c
@@ -4141,7 +4025,7 @@ trackedFiles:
pristine_git_object: 39ff818b5894cc3c5e8ea55495eaf19ee162b5c1
docs/models/components/QuestionJson2.md:
id: d566007c1a48
- last_write_checksum: sha1:b7457525ecdd8085f84bdc36730eb9c444f1f05c
+ last_write_checksum: sha1:429e9cf999fd1b093d6cdf6c74d0c409865dfe34
pristine_git_object: 5b40fed3acd8d7f6c585a5bb75392fcf628be387
docs/models/components/QuestionJson3.md:
id: 68dbcddddcc9
@@ -4161,7 +4045,7 @@ trackedFiles:
pristine_git_object: 92690fd7331de076a300771279cf8f49592ec8e5
docs/models/components/QuestionResponseJson.md:
id: e23ea446cd9c
- last_write_checksum: sha1:d58ce220ddca1e7d4685f43ba2a327cfb0ef4b72
+ last_write_checksum: sha1:0b5efc952a531df58f218006eac5bd22467b4b29
pristine_git_object: 68ada6bc706f882e5650567af8fc327d83a86e15
docs/models/components/QuestionResponseTypeJson.md:
id: 6bdf61aeb679
@@ -4273,11 +4157,11 @@ trackedFiles:
pristine_git_object: a01eb3cec67e48abec69dd7bff04ea043e6641ee
docs/models/components/RegistrationPackRequest.md:
id: 0f3086c91ace
- last_write_checksum: sha1:7f89c58de3a594377d3f0cb88539e0c0caf8f31c
+ last_write_checksum: sha1:7c6cb3ec847a548f8d8deb88faf9d1f89fd729d2
pristine_git_object: 2066e94cb7f630f8ace54082bfee803321d8987d
docs/models/components/RegistrationPackResponse.md:
id: e87976c8fb63
- last_write_checksum: sha1:53126bc8e71ca2c6b22f3d97d78114315481c0b5
+ last_write_checksum: sha1:20cdc897facf67b41de2cf6c468a45f1de97d442
pristine_git_object: d515c2600289a2674c98e8cb192a1eb061486222
docs/models/components/RegistrationPath.md:
id: 0f9f624489f9
@@ -4297,7 +4181,7 @@ trackedFiles:
pristine_git_object: 7ed92b95e8a92d3f07296ecde23fe200884b3a23
docs/models/components/RegistrationTypeUpdate.md:
id: f0d7afe6297e
- last_write_checksum: sha1:5e706aeeca0c7a0d6f4a89b20aaf6fd67f422c1a
+ last_write_checksum: sha1:7f67a023442cf7ad7417a217c90120ab868b3da1
pristine_git_object: 469fdeec1e93796c0f38b73dc672ede9578926f0
docs/models/components/RegistrationTypeUpdateEvent.md:
id: 38a74b7b1910
@@ -4305,7 +4189,7 @@ trackedFiles:
pristine_git_object: 4090c1f243cacd6968c14b2f53c0ce94ef2725ad
docs/models/components/RegistrationTypeUpdateInput.md:
id: 65f532d4cdf0
- last_write_checksum: sha1:4c1437895897f3a7561b160ec1c1382462cad903
+ last_write_checksum: sha1:70a6bdce2c3e6bbb32c13e35db79a42132b8598d
pristine_git_object: 1fdc84029a5a8e15c4916299e7b2609ee53c716e
docs/models/components/ReportingFieldJson.md:
id: e79329ce4fb1
@@ -4317,7 +4201,7 @@ trackedFiles:
pristine_git_object: d438e523d9b7b0559ae819f009b3ff9f7bcea479
docs/models/components/RequestedMeetingRequestQuestionJson.md:
id: 61a0dab1e1b8
- last_write_checksum: sha1:0cc3d2e2a027595e9d99d0a0b2075ea644ba9a40
+ last_write_checksum: sha1:7b3aad871f6c928a27d15bbfaed791407d8fc699
pristine_git_object: 78e39d313f52a0f2b7ef448bbdcbaa4e4f480ea7
docs/models/components/RequesterSuffix.md:
id: 51a2722afb3b
@@ -4329,11 +4213,11 @@ trackedFiles:
pristine_git_object: 25933e9be30ab388c9021240157218b32421a2e3
docs/models/components/ReservationGuestJsonInput.md:
id: 9466869d76bc
- last_write_checksum: sha1:1e6f3c49e48c0ca449adda635f689fd2bab1f60b
+ last_write_checksum: sha1:b625df99fba3bff7020551ae7c6c9914c976ca9d
pristine_git_object: 7bd6d4e00aacf0c54d8e379e45aea5a31382abb1
docs/models/components/ReservationGuestJsonOutput.md:
id: b9f9807754b9
- last_write_checksum: sha1:a0a673c2ef6a0dc229d3a49d93e5db68d42d0a1c
+ last_write_checksum: sha1:09725f31bded3e2fa4e4bea6ac2a4ed7f5fffa1d
pristine_git_object: fbdfc9b5a914a56f66dfbcbc6408cc29b3115847
docs/models/components/ReservationNightJson.md:
id: 556dab066df0
@@ -4349,11 +4233,11 @@ trackedFiles:
pristine_git_object: c69e38ae98684e1dafab25158740afac285c8de0
docs/models/components/ReservationPaymentInfoJsonInput.md:
id: 082d538c133c
- last_write_checksum: sha1:17edf3cd2506cf423f12cff206dcb46e0d632cbe
+ last_write_checksum: sha1:88938cdf8b99d9e92c8fe71eacd56d152876c953
pristine_git_object: 5f627f9f0d79fd7b3965e7bd8dbee0bdcb3f7095
docs/models/components/ReservationPaymentInfoJsonOutput.md:
id: 7b02f116ea0a
- last_write_checksum: sha1:b59e2d1d3882554728319708c00706ae593e3ce7
+ last_write_checksum: sha1:63e8af5017dec247abcdf614cd95701205448da0
pristine_git_object: 40a8f8dcda37ba426a123a295893a2d6badfa5e0
docs/models/components/ReservationRequestBlock.md:
id: 4514aa7b39f7
@@ -4441,7 +4325,7 @@ trackedFiles:
pristine_git_object: b66bc5a4cd47b4a057371d44516cd37167c2c703
docs/models/components/RespondentJson.md:
id: a080e2d3b828
- last_write_checksum: sha1:1d646323849277adad2cc13afd8b28c704a6d69b
+ last_write_checksum: sha1:8588913bb8ac9dc1a2f130de7b9a9b5a4f1f07d6
pristine_git_object: 2e18e3ca4a0e4ffdc8f8d6afb356d8631a5a5e42
docs/models/components/RespondentJsonLinks.md:
id: 83c19ea7dda1
@@ -4457,7 +4341,7 @@ trackedFiles:
pristine_git_object: b0e7fbbc51822c427478a68237637607dcc75f85
docs/models/components/ResponseJson.md:
id: 0531d4b51a27
- last_write_checksum: sha1:397ca57fd4493901ae549f9d06b117e2a2b26989
+ last_write_checksum: sha1:86987ff9dd18d8442087815227679afd513bc846
pristine_git_object: 2ce66e643243aba0c75dab3c40abd27c3440a939
docs/models/components/ResponseJsonUUID.md:
id: 8093e6a98f07
@@ -4591,7 +4475,7 @@ trackedFiles:
pristine_git_object: da9026d8409fae09455780c680a1922e63d94bf6
docs/models/components/ScoresJson.md:
id: 58bebad45bf9
- last_write_checksum: sha1:9e13ae4363ead915a3546dd97187dd3a6242a593
+ last_write_checksum: sha1:28717de15d29a083482746868fc68bb1f7c5b477
pristine_git_object: c2122d0915eb555f2bb722de994ea353342560de
docs/models/components/ScoresJsonAttendee.md:
id: ad06e9730b44
@@ -4641,11 +4525,11 @@ trackedFiles:
pristine_git_object: a8f57bb561275e6e9f34a7b8f7a816664b3d3a14
docs/models/components/SendEmailEventRequest.md:
id: 02d4503238ea
- last_write_checksum: sha1:d709871bb8d34bad6b32cbcb5cee1ae73cf73465
+ last_write_checksum: sha1:de3bea17cb71813b0eb8b6be4d61267afe2a73cd
pristine_git_object: 088f50b109eb9a4202786a2a6d7a4a6d26629a2e
docs/models/components/SendEmailEventResponse.md:
id: 5592a72e132d
- last_write_checksum: sha1:166a00f8b80d2d526b9e114ca3e398ddbda4eab6
+ last_write_checksum: sha1:a3dd74437c1bcc901ee565ed95e6784051737cc2
pristine_git_object: 3c43bfd9e007de7f13a7f6705212f80d73d8c98d
docs/models/components/SendEmailRequest.md:
id: c4e591ad94b9
@@ -4907,10 +4791,8 @@ trackedFiles:
id: 56df61fbf6fc
last_write_checksum: sha1:855ec31777ce5af56c5cdb55f9563372051e3634
pristine_git_object: e4fa5ce9646bb90eacdbdb4ca76839ae9886b337
- docs/models/components/SocialMediaLinksJson.md:
- id: b73f952b6838
- last_write_checksum: sha1:886745cdba51969817137fbcfa09d60a2fe4d0f8
- pristine_git_object: ee16cab1d867d32c2c08f56db958379aa1441b39
+ docs/models/components/SocialMediaLinks.md:
+ last_write_checksum: sha1:6cf02d67385b0fb508f1a8fa3bb0d80ea9a4cc98
docs/models/components/SolutionJson.md:
id: 67ab9684a83d
last_write_checksum: sha1:875abb74da123f9346ee50e821999cf7f9293a10
@@ -5005,10 +4887,8 @@ trackedFiles:
id: e08e3a0f6612
last_write_checksum: sha1:4591af8ae818de666e7dd0dd5e236c97e93f1661
pristine_git_object: f9562b9f8b111835e96326948f757b4943eb7e37
- docs/models/components/SponsorshipLevelJson.md:
- id: 89ff38021843
- last_write_checksum: sha1:6ca85781f91d4951c71a19b425a16c4c8bfbe7df
- pristine_git_object: 67c0fe61e202a8f6eeeeacaaf4ce648b364fa2b6
+ docs/models/components/SponsorshipLevel.md:
+ last_write_checksum: sha1:2d946037721679aed6cb2b90fe6b5f9461b11aed
docs/models/components/SponsorshipLevelListResponse.md:
id: 3c9850e2198f
last_write_checksum: sha1:f2e6692f87a8f72b08bee1623b979c9aecda6034
@@ -5069,7 +4949,7 @@ trackedFiles:
pristine_git_object: fb868e5a5f4d61e4404da9af191987bfa0f4d3ec
docs/models/components/StandardSurveyQuestionJson.md:
id: 5bcbaa73a0bd
- last_write_checksum: sha1:017f6f64648105e1b39d032102b5c87d86bbf691
+ last_write_checksum: sha1:aec3cacb0f8afedfcca57085037c12c5ed705a82
pristine_git_object: 5db341cc8882df2a90e560021f5585824cd1364f
docs/models/components/StandardSurveyQuestionsPaginatedResponse.md:
id: 6f098f7ce6c5
@@ -5097,11 +4977,11 @@ trackedFiles:
pristine_git_object: 08ff2e763e6377ae945552f066857c7769d0ccd4
docs/models/components/StandardSurveyResponse.md:
id: 5a9dda09f9c2
- last_write_checksum: sha1:a391d1575b77a34be9d7f8fdb72b4c78acdbbffa
+ last_write_checksum: sha1:6b76b49311db7337737a3c8f9e836c9dcf925639
pristine_git_object: 0d4ee8d7157d5988ccc59944c0e17c40cf0185c6
docs/models/components/StandardSurveyResponseInput.md:
id: e5fc5167d1b6
- last_write_checksum: sha1:ca0a73ef4f04d857699a38dd6472eddc902b0a3e
+ last_write_checksum: sha1:ec6182d9a8bd7bb47ff91c5804fa2d3814e13c20
pristine_git_object: 059c9e16996e0ae446b0456a091e0746073de1f3
docs/models/components/StandardSurveyResponseUUID.md:
id: ba0e6e968e04
@@ -5167,7 +5047,7 @@ trackedFiles:
pristine_git_object: 2dbcd1d58679a6fe3f7f7211d3d89720752f4ce4
docs/models/components/SurveyJson.md:
id: 8514d82f79c8
- last_write_checksum: sha1:c09606329e9458e74eea06c16be852f85d692568
+ last_write_checksum: sha1:a0d1367bc083c1aa20a15ad3977a4d4e0c6e544a
pristine_git_object: e36ad155e32a3f1505239de4c38dadf1d2aa14ea
docs/models/components/SurveyResponseJson.md:
id: 9f598df6e9dc
@@ -5189,10 +5069,8 @@ trackedFiles:
id: 958df61d499c
last_write_checksum: sha1:be6f2f8d8ddb8a09c42b595b5738c44c319542ae
pristine_git_object: 4cf8f1b70aab2908f58fc89e728afbad9f31b83e
- docs/models/components/SwitchBackTargetUsagePlanJson.md:
- id: ed06547d4131
- last_write_checksum: sha1:48ea1dcf86f7fa3cf7816683a63bb5023747e8ba
- pristine_git_object: b305e8b6d33ac6f1c01e55b8a49416ed027017ff
+ docs/models/components/SwitchBackTargetUsagePlan.md:
+ last_write_checksum: sha1:32b9663db9b3b7cf0a6ddd6f56587f2e882e4a56
docs/models/components/TableAssignmentJson.md:
id: cdcb0532a8d7
last_write_checksum: sha1:278bbf5608f1791889df9e9e35a2c7c7ecf1cb4e
@@ -5237,11 +5115,11 @@ trackedFiles:
pristine_git_object: 3aa256cd5ae8b881ec0a4723bf6ebc6b13e6733f
docs/models/components/Three.md:
id: 69b86f2bf1f1
- last_write_checksum: sha1:7372460f54489c8174dd59411c23f7146ad32662
+ last_write_checksum: sha1:8fbdf6ea246e2b95b5bb10076d922e6227df3da8
pristine_git_object: fbad90936582d775431dfaa0386a92989db0a622
docs/models/components/ThreeInput.md:
id: ef2daa70fe08
- last_write_checksum: sha1:5d83eee111c1352d3332a9a95a9b03132b6f117f
+ last_write_checksum: sha1:391230f108c6e096d684fe0337c669fbe99085bf
pristine_git_object: 14c992e6f72442143e5279d3d45d32588b7826ea
docs/models/components/ThumbnailStatusJson.md:
id: d02e606ccbb9
@@ -5333,7 +5211,7 @@ trackedFiles:
pristine_git_object: 77d07fa838701f6b2986587f7e2ae6f3f5c5f04f
docs/models/components/TravelAccount.md:
id: c3bcc88b61fa
- last_write_checksum: sha1:6349eb2a0700b4aaf6b69f5348cf870f0a23e916
+ last_write_checksum: sha1:76fcac1a4ad6f86795c7c5e078f10d42b55abcc6
pristine_git_object: 01f294aa2ca264b9ea29e6beee42d9c07b3c6ef2
docs/models/components/TravelAccountPaginatedResponse.md:
id: 797823dea873
@@ -5551,6 +5429,8 @@ trackedFiles:
id: 3eef10961376
last_write_checksum: sha1:75c459f872210b5f1cd485ad3545d9346b0e3d69
pristine_git_object: 224fcb2ad9fab74260a9733847a8f8230179c635
+ docs/models/components/UTMOverride.md:
+ last_write_checksum: sha1:4f2a054dad5cec7857144332e412df190a322576
docs/models/components/UnitPositionJson.md:
last_write_checksum: sha1:685fd063d9ef847caf64fa3737e4ce971424780e
docs/models/components/UpdateAppointmentRequest.md:
@@ -5561,17 +5441,15 @@ trackedFiles:
id: fe97b706e759
last_write_checksum: sha1:acca60878187107a0bbf710257a6183fb450707e
pristine_git_object: 36195278eccf3c2f1c3ea6b6fa64816e6ba1a669
- docs/models/components/UsageJson.md:
- id: 887203dcf38e
- last_write_checksum: sha1:cd4f5858116b2c26db93b9a1229112362100073f
- pristine_git_object: 8293999bcefa1fce26bdfa03e630f412c5aeefa7
+ docs/models/components/Usage.md:
+ last_write_checksum: sha1:9d8aeb8910e96dd5fb91c3fd81d82c0c144ebcaa
docs/models/components/UsagePaginatedResponse.md:
id: 62f21b73fe23
- last_write_checksum: sha1:6313172dc34aada0e0e8f656df34c6fe50e486ab
+ last_write_checksum: sha1:83058005734645d772b8e168aaa6db2c88fab9b0
pristine_git_object: cbe9b5f523cc4307f496063cee8c68db296a8b2d
docs/models/components/User.md:
id: 8f2722ab45f3
- last_write_checksum: sha1:b37633cae0eb9b0f4d5dd47aba9b38d8e828069a
+ last_write_checksum: sha1:78d789f856d7ec243ccab337f7ae1e2d916d22ed
pristine_git_object: 2c91f67ec477c705b74da29a56645df2a9c74a41
docs/models/components/UserEnterpriseExtensionJson.md:
id: 7f099406044f
@@ -5603,11 +5481,11 @@ trackedFiles:
pristine_git_object: ed0f8191c460c33221d84d8fe128fec991d92b4a
docs/models/components/UserInput.md:
id: a5f250c42286
- last_write_checksum: sha1:9e21266a50fa044ed616df3bb24472d7b88dfbf1
+ last_write_checksum: sha1:525bdc4076bdca777978ba69423a0c3ee74f7a64
pristine_git_object: 06691f4c969cbc3c96a8f6b6c34cbb93f3ccaa6e
docs/models/components/UserJson.md:
id: ac4b9c051137
- last_write_checksum: sha1:a1187b510347d44821c09b03358f684fa5252a14
+ last_write_checksum: sha1:06fbf8bccf61ed9cbd41e36a31cb6a3040e818f6
pristine_git_object: b8c511700481958f07d4ba0354971bcf534cb418
docs/models/components/UserTypeJson.md:
id: 8e3288d25103
@@ -5625,10 +5503,8 @@ trackedFiles:
id: a2bbdfedffc7
last_write_checksum: sha1:c1390f75d627f96a5367227830ce5a81f405a7eb
pristine_git_object: 80f52a602ed2f576c3cf0f547d38da676987e7d8
- docs/models/components/UtmOverrideJson.md:
- id: 566f0d50eb08
- last_write_checksum: sha1:2804d00f4979871768547830fbc892f8bd981e41
- pristine_git_object: 59206567b7a4773996ff3b659e0934ba35bafe4c
+ docs/models/components/Uuid1.md:
+ last_write_checksum: sha1:6f1f0eb42efe26e8669b6296b17aa25478fb3728
docs/models/components/UuidJson.md:
id: cb996965dcbf
last_write_checksum: sha1:ca0b8d5ade7e37fe8c17e8f592ea366cb7be05d1
@@ -5689,8 +5565,8 @@ trackedFiles:
id: 605e63a5786e
last_write_checksum: sha1:73057ad337b104ba902e6dccc68f309330aa8a71
pristine_git_object: 5d7e2639977f3bda3a296c01049ba3c639d3ee04
- docs/models/components/VideoJson1.md:
- last_write_checksum: sha1:e19a7106c2b7128efd62ce3b57ffe33c4489be0d
+ docs/models/components/VideoJson.md:
+ last_write_checksum: sha1:8ac3d9e34fa2c5a140cddf1216b162a9dbd12d4b
docs/models/components/VideoRenditionJson.md:
id: 57d150ddf555
last_write_checksum: sha1:0282b61b809f5319e135a9c013a03fbbe885eb03
@@ -5745,7 +5621,7 @@ trackedFiles:
pristine_git_object: dd577fe44a307baa7df7d09ed3929cd64c552ebd
docs/models/components/VideoViewJson.md:
id: 36129afb4b6e
- last_write_checksum: sha1:3c81d6631e183953b6c95b8a5e079635a25e2d9b
+ last_write_checksum: sha1:07d2ac0358c7c87ecfbc764b6cdccb56efe6f350
pristine_git_object: e08424b4bd30bead4dce7ea823ff918f3e080068
docs/models/components/VideoViewsPaginatedResponse.md:
id: 7e98e46c3602
@@ -5805,7 +5681,7 @@ trackedFiles:
pristine_git_object: 2bad152e563256c84faf5f3d038d627249221543
docs/models/components/Weblink.md:
id: 185c565023f2
- last_write_checksum: sha1:0b0635c37ee9f2d443be1d5b29a104d9c8f16728
+ last_write_checksum: sha1:0e9663ea8f07384703ed232d713957e5e4721740
pristine_git_object: 6a804dfa5f19a82b7cf9075a99edf38572909f2c
docs/models/components/WeblinkListResponse.md:
id: bbf7ab710399
@@ -5815,14 +5691,12 @@ trackedFiles:
last_write_checksum: sha1:a83e9f2e802c6bd0983e5e6d39c5886c3f1fc919
docs/models/components/WeddingPartnerJson.md:
last_write_checksum: sha1:ff7a42172896dcd95b8cfe83e3c1a8f3b7db5a18
+ docs/models/components/WorkAddress.md:
+ last_write_checksum: sha1:2dcff803e8e2577342b9d748939d0478d2b2f958
docs/models/components/WorkAddressAddressInput.md:
id: 4c30f8301f8e
last_write_checksum: sha1:00948363c532196f9c6735b5528d13e5bbdda59e
pristine_git_object: 4d958c5a3cd8b026571416d949a671ba211463c3
- docs/models/components/WorkAddressJson.md:
- id: b45d558bc092
- last_write_checksum: sha1:a87cb020bff952924564ca32d5907e17f42418c3
- pristine_git_object: 2d0413edb7fbdab0949597a9ea42d38b24cf93fa
docs/models/components/ZeroAllOf1.md:
id: 40040b4d7bd0
last_write_checksum: sha1:262bc8bfd64ab99ea4e5466893767ef1d7b1cfb5
@@ -6755,7 +6629,7 @@ trackedFiles:
pristine_git_object: 6eb426c731b3a7b0583d7be3903fb505c2781163
docs/models/operations/GetAttendeeByIdResponse.md:
id: 8f3beb670c6b
- last_write_checksum: sha1:e8278f979cc94a34e47d2c7d6be9dbca954785d6
+ last_write_checksum: sha1:4e04d6f5d5a2374ef7a11cfb76be20ca3aa3161f
pristine_git_object: 69648ae005b43f3b69ceb5f3513f6c944db26496
docs/models/operations/GetAttendeeCreditsRequest.md:
id: 911eed30e077
@@ -7909,6 +7783,10 @@ trackedFiles:
id: 1ac12baf9ce0
last_write_checksum: sha1:0ff8619a0b903efa7301236ba96234cfe68bbf3d
pristine_git_object: 74422aaa20e12827660799e6f0ac1a5c7be609dd
+ docs/models/operations/ListAssociatedAudienceSegmentsRequest.md:
+ last_write_checksum: sha1:049356665a99d1d995519828d38ba26278908b50
+ docs/models/operations/ListAssociatedAudienceSegmentsResponse.md:
+ last_write_checksum: sha1:7711b7daad40bab4ec730da5983a9a60da699702
docs/models/operations/ListAttendeeActivitiesRequest.md:
id: 0d290e839f49
last_write_checksum: sha1:0c8cb476235a089c8d7ab1ff4ce54f2f31439a34
@@ -7917,6 +7795,10 @@ trackedFiles:
id: 126581ed8100
last_write_checksum: sha1:8ebdf5d40a5dc974925fce56617463c367ba41cb
pristine_git_object: 3098f8282a279bc718afe29d35c70d170c36afaf
+ docs/models/operations/ListAttendeeAudienceSegmentsRequest.md:
+ last_write_checksum: sha1:ac544bfac1b4742692e379dce89dc8c5c7fae72c
+ docs/models/operations/ListAttendeeAudienceSegmentsResponse.md:
+ last_write_checksum: sha1:ad2a06cfaf426e9782c999475fb5b47444f3d90e
docs/models/operations/ListAttendeeInsightsRequest.md:
id: d74285cc6478
last_write_checksum: sha1:e4f5185fdbf7333b54e557b93c752970ee2f9041
@@ -8055,7 +7937,7 @@ trackedFiles:
pristine_git_object: 9b3ad8445f6b2461e41ee4228a924d335c39d010
docs/models/operations/ListDiscountedAgendaItemsRequest.md:
id: d36bce39f354
- last_write_checksum: sha1:8b2bbdf431646ba206f4a339a2f99afc887a7eab
+ last_write_checksum: sha1:59fe846092d1799285b887bc46e6c90ff51542f9
pristine_git_object: 39f0c5eeacc69b8aa33cd9849b8ecae1141e1edb
docs/models/operations/ListDiscountedAgendaItemsResponse.md:
id: 58da87b94587
@@ -8071,7 +7953,7 @@ trackedFiles:
pristine_git_object: a7145ba6fd8a65fb8036fceeebbbe90cbba6b007
docs/models/operations/ListDonationItemsRequest.md:
id: 0ab03e22605c
- last_write_checksum: sha1:b1192daffc33508fda5bf4cc30ac4975acad37b3
+ last_write_checksum: sha1:6ec2ad1a9cb8a38515d443df4f75eab528f3cd6a
pristine_git_object: 928a67da2cea4bb4ac50b6c32de29a7461d799a4
docs/models/operations/ListDonationItemsResponse.md:
id: 1c356f08c86d
@@ -8087,7 +7969,7 @@ trackedFiles:
pristine_git_object: c136e695a629fecd53af61f5c5b852390369efb9
docs/models/operations/ListEventDiscountsRequest.md:
id: 6b26d8d663c9
- last_write_checksum: sha1:3314705901fb53fa5567fe0d3c447e5d2cfa8a96
+ last_write_checksum: sha1:3dd549d8e862deaf36cc9623f671a621dcbd0ef3
pristine_git_object: 3c9ae12cf88ce3ddba2536a847612ed6635f6f59
docs/models/operations/ListEventDiscountsResponse.md:
id: 321cb4a5b6c5
@@ -8103,7 +7985,7 @@ trackedFiles:
pristine_git_object: 2debf9949ba31138010e7d1737e7a7e98ca04afc
docs/models/operations/ListEventRoleAssignmentRequest.md:
id: 188c11629d01
- last_write_checksum: sha1:a6eb058effea0e4368f6358cd99b07261d4bb3dd
+ last_write_checksum: sha1:7a7a8ebfd1bff185367eb59c93d87d9d81165c6e
pristine_git_object: 9e9606704bf74c666f3fffab38985a6b2871b68f
docs/models/operations/ListEventRoleAssignmentResponse.md:
id: f2c2f518c88a
@@ -8175,7 +8057,7 @@ trackedFiles:
pristine_git_object: a71c0257fc27abfa80e310bcf7c33da92683017d
docs/models/operations/ListFeeItemsRequest.md:
id: 96463b27a30d
- last_write_checksum: sha1:c3f6e5b19ae1a090d402fc9664cbdce6dfd87e5c
+ last_write_checksum: sha1:bcd04299511e1bab6787205c238b8a95372b3dc6
pristine_git_object: 5644c68f6804b1efba4f8f6d56d59f18b7b653ad
docs/models/operations/ListFeeItemsResponse.md:
id: f9960eae6969
@@ -8229,8 +8111,12 @@ trackedFiles:
id: b2dda0732222
last_write_checksum: sha1:7a39ec0af3b1fb05290f14965ca96d5e2bab71da
pristine_git_object: d0d9150e71215c6694723fb4d94d839e2e42b9db
+ docs/models/operations/ListMembershipItemsPostFilterRequest.md:
+ last_write_checksum: sha1:b4187321eef617dbd71f91f806a7ef031d26fbea
+ docs/models/operations/ListMembershipItemsPostFilterResponse.md:
+ last_write_checksum: sha1:163be866b0cff2dace5517977b83c7928deed4d3
docs/models/operations/ListMembershipItemsRequest.md:
- last_write_checksum: sha1:2823fed9e56b6937685b99ee32057e14223ce8e3
+ last_write_checksum: sha1:cda19bc81ac30233630e8b45d5eb3c65e1d022a1
docs/models/operations/ListMembershipItemsResponse.md:
last_write_checksum: sha1:0412b953f879d6be1e37642a4a7eb00466b1d8fe
docs/models/operations/ListPlayersRequest.md:
@@ -8275,7 +8161,7 @@ trackedFiles:
pristine_git_object: bae235d155f7c5bf25484faab41d3c8fcc4846e2
docs/models/operations/ListQuantityItemsRequest.md:
id: bb31eceac315
- last_write_checksum: sha1:0224a63ed0ec06daf4273309e36e96f0ad86b065
+ last_write_checksum: sha1:597586c9014ec3f412dcafddb5972b1062423f7a
pristine_git_object: 75988de3e507b827ae364ab710373734c2b45f3c
docs/models/operations/ListQuantityItemsResponse.md:
id: 9164b87bec74
@@ -8831,7 +8717,7 @@ trackedFiles:
pristine_git_object: be1705a3b7664057e317c00209e5b08470bdc067
docs/models/operations/UpdateAttendeeResponse.md:
id: 159f5fdf1b3a
- last_write_checksum: sha1:1845002c3c03fa831c53428b4e8b8c0d416d00bf
+ last_write_checksum: sha1:1dc81bd70ca9c2955387ef9414e9cf99001daaa4
pristine_git_object: f9f208fb27dd15b3e9f6530784b552de6e7552e8
docs/models/operations/UpdateAttendeeSubscriptionStatusRequest.md:
last_write_checksum: sha1:798a0b27b461918f97f3ecbce08d9e1eb50aeb7d
@@ -9247,11 +9133,11 @@ trackedFiles:
pristine_git_object: 704005d199d199defd2dbf54d34ee99a49527bce
docs/sdks/attendees/README.md:
id: 99bffbf21091
- last_write_checksum: sha1:61bc811a0a83b698817f63fe7b5d5a41c5e42810
+ last_write_checksum: sha1:c479f760d839db6ae8e9e38c074c1a3ebf553587
pristine_git_object: 51133187a510f849cafd047132648b314d92466c
docs/sdks/audiencesegments/README.md:
id: a2ccf2d6ee02
- last_write_checksum: sha1:5db7a1a082630eac975942e1fe24bb75d47c69fc
+ last_write_checksum: sha1:39a8bba900976618d8055d1a574fc7268aeb2951
pristine_git_object: fe570960f8125e64c67cb596c370b7ef40138496
docs/sdks/authentication/README.md:
id: 45be241adfc3
@@ -9291,7 +9177,7 @@ trackedFiles:
pristine_git_object: eeda9f92822eda06457447bb5c632a14f1b03f39
docs/sdks/customfields/README.md:
id: a205cef73249
- last_write_checksum: sha1:91e5855bb50622b7008f65be970592ee538430b4
+ last_write_checksum: sha1:51196c605c9b4453ef30c1ad86f2ce077f6efde5
pristine_git_object: d476788bc8db400f6e69e31315ce1c89ac4b3212
docs/sdks/discounts/README.md:
id: "000723261694"
@@ -9311,11 +9197,11 @@ trackedFiles:
pristine_git_object: 0840417246d8282eed34a318ec6a2203a0010a16
docs/sdks/eventrole/README.md:
id: b10e2c12d0e8
- last_write_checksum: sha1:6d9731b408b9d6b3b5d0c2b0c716c6774820660d
+ last_write_checksum: sha1:dee7f469d06f26f9efd476681a297c7a2d56c9f5
pristine_git_object: 9b702106766b9fcad1fd2dde1cb5b2b424719715
docs/sdks/events/README.md:
id: cf45a4390b9b
- last_write_checksum: sha1:87d9bc65b1bcc6daf0a6f01bdab6a3cc6e6c3fb1
+ last_write_checksum: sha1:63b85d880baa36de5592b483df51cef88fc6a14a
pristine_git_object: a155c9c995555e8cf43829631cc8a236fd354da4
docs/sdks/eventsplushub/README.md:
id: 5f184d5bdfcc
@@ -9327,15 +9213,15 @@ trackedFiles:
pristine_git_object: eede402a85e1da20c1034fe85358d6075234a769
docs/sdks/exhibitor/README.md:
id: cb0578099210
- last_write_checksum: sha1:ec0308f39fc518e5d698dc0bd81304a1bd0e549f
+ last_write_checksum: sha1:c4fb24d8b2f5fd765099fbc31fc30fe860558eaa
pristine_git_object: 0602007e1d41c51681c190985c6cff8d835cc46e
docs/sdks/exhibitorcontent/README.md:
id: 7cecd37f6b66
- last_write_checksum: sha1:6d050a144653a0f0a3fd3898174e44ff3566697c
+ last_write_checksum: sha1:6f02c89847ef94b1a0a649803f4137584ba8ce29
pristine_git_object: e6d9116287aa63517ede1aed81dbf053cc7cbb46
docs/sdks/exhibitorteam/README.md:
id: f5b7c80d738e
- last_write_checksum: sha1:a92492237328aa9c3cd49bc08159d43f16fc0121
+ last_write_checksum: sha1:0660ae882f4695de16b3d1957d4c3c7cde574c6c
pristine_git_object: 1d1f063cae353ff50936d7fa265eda6a25650e28
docs/sdks/file/README.md:
id: 2e0e7ec90c9f
@@ -9347,7 +9233,7 @@ trackedFiles:
pristine_git_object: 64614977cacbd8d9340bd37af4b21d6e245bfc14
docs/sdks/housing/README.md:
id: 23d65d817ab8
- last_write_checksum: sha1:17dfd46bc01a86554487b0f6a981c79a85cd0fde
+ last_write_checksum: sha1:a0724977a4e284508ad8af9c69f2c1714be8b813
pristine_git_object: 4211bb0d355200b83a1e58a261371acf7a12452d
docs/sdks/housinghotels/README.md:
id: d04ff5412c59
@@ -9359,7 +9245,7 @@ trackedFiles:
pristine_git_object: cef4027abf852decdaba1e2f5620e2af00029ca9
docs/sdks/meetingrequest/README.md:
id: 4d8d5f5fd977
- last_write_checksum: sha1:275e7fe75a624a721e175dad1a4583c3278dcede
+ last_write_checksum: sha1:3680545eed15de60814acc39f30ca7053556c114
pristine_git_object: 0179b4309efed6c06dc31e70ac235bf1de619337
docs/sdks/processform/README.md:
id: 0d23c161e66c
@@ -9395,7 +9281,7 @@ trackedFiles:
pristine_git_object: 118e111b964ba99c3bae0466bc3362af503548ff
docs/sdks/surveys/README.md:
id: b7f48111aedf
- last_write_checksum: sha1:25d852fcbb77ed5e1dcaabfd54ae405e26fccfbc
+ last_write_checksum: sha1:ff0bcc8a5dd6f5db828a8d6a7202877f17e099d9
pristine_git_object: f2ec0d237695846e602252d7349f640c49854768
docs/sdks/travelaccounts/README.md:
id: 361add025274
@@ -9419,7 +9305,7 @@ trackedFiles:
pristine_git_object: e340e49b38b5531e795df74195ccaed5136eb492
docs/sdks/userscim/README.md:
id: 50529a579425
- last_write_checksum: sha1:3063a98ce2537e8a2940214378018eed42c4ba8d
+ last_write_checksum: sha1:6534d1f9b2cbfe1cd6168a9790cfa6b23d226e88
pristine_git_object: ce24bc35e6c90e161c09b86666c9b6463dafae29
docs/sdks/video/README.md:
id: 0b01dca84f9e
@@ -9435,7 +9321,7 @@ trackedFiles:
pristine_git_object: cda742065b0bb30407900c4d39885b8db164b9b4
gradle.properties:
id: 2afbb999f001
- last_write_checksum: sha1:5295cd8c73a217f9dc39150d1d27096e5c457548
+ last_write_checksum: sha1:36e75db0fecd696fd1e0bbf018e125fdaa316ead
pristine_git_object: 6da141a8453a679109d12dba513b6d08b9e37fd5
gradle/wrapper/gradle-wrapper.jar:
id: ec27dae6e852
@@ -9487,7 +9373,7 @@ trackedFiles:
pristine_git_object: b48101dcb3d415a353dbb1d152850df0ab239aae
src/main/java/com/cvent/AsyncAudienceSegments.java:
id: 18b5e976826b
- last_write_checksum: sha1:9dfa55eca7e4605de9854d0448a87e28efe2150a
+ last_write_checksum: sha1:290adb5fb1e284348eb2f8f8c14357b1a2b29dee
pristine_git_object: b2b365f2cfa45ec15f755c31450a1575079047eb
src/main/java/com/cvent/AsyncAuthentication.java:
id: 84ed7c96c944
@@ -9559,7 +9445,7 @@ trackedFiles:
pristine_git_object: 16d95816508b654f63c788cf9d926f65d4f51595
src/main/java/com/cvent/AsyncEvents.java:
id: f0df984cd544
- last_write_checksum: sha1:ca41c428e7d67ab05cfd1e9836de30c07233360f
+ last_write_checksum: sha1:998ac97fb0b33883785a99d12018e3369e359285
pristine_git_object: 807ef57d30ff958436aa808f07a18f7315f48b5e
src/main/java/com/cvent/AsyncEventsPlusHub.java:
id: def02d8cf79e
@@ -9599,7 +9485,7 @@ trackedFiles:
pristine_git_object: 63b9d69f51d89f8176ddd79b1609ec208b5a70f9
src/main/java/com/cvent/AsyncMeetingRequest.java:
id: c69c5b6c742d
- last_write_checksum: sha1:133385d0a015e4d86a91307257b21043addc3f7a
+ last_write_checksum: sha1:57bdaed195d10773211c30b88e92bf565856076f
pristine_git_object: 2a363b46c900e245520578e3a2696ab46d5175e9
src/main/java/com/cvent/AsyncProcessForm.java:
id: e0cb23c12345
@@ -9687,7 +9573,7 @@ trackedFiles:
pristine_git_object: 8e4a9c28a4dd1818b6a978745018e004c9dac578
src/main/java/com/cvent/AudienceSegments.java:
id: c9106cf1524e
- last_write_checksum: sha1:04781614ba2fcf9d6c97a910ac3d0c9493ef36ac
+ last_write_checksum: sha1:e86958f8fa8a8c5b05ed716cb76d6331dea9d2d0
pristine_git_object: 70bd79714042b201ce12d06a85416ec310cf5e3a
src/main/java/com/cvent/Authentication.java:
id: 952786186a1b
@@ -9759,7 +9645,7 @@ trackedFiles:
pristine_git_object: 9c4626406e5a8b2354048223d94a1bc35af42648
src/main/java/com/cvent/Events.java:
id: a10ccc6cdc25
- last_write_checksum: sha1:539828e3942281a4f86b38cbecb06531de977ddc
+ last_write_checksum: sha1:08131d3e1246f63116634724fa13abcbd1bd1c5b
pristine_git_object: 0ec187cf4b221451090af7411e098968c6c1df7b
src/main/java/com/cvent/EventsPlusHub.java:
id: b4035ceab44b
@@ -9799,7 +9685,7 @@ trackedFiles:
pristine_git_object: 222345c8cf03e2cfbb0656573fedbb8373253859
src/main/java/com/cvent/MeetingRequest.java:
id: 98502903c529
- last_write_checksum: sha1:e7a21bbc8509e2f685853447746dab7a205265b6
+ last_write_checksum: sha1:ee22c23eae6659b8a59779f9333e7788c8bc4144
pristine_git_object: 7fac550da9fb7ddfccd9f9457297ff746a1cbf40
src/main/java/com/cvent/ProcessForm.java:
id: 37b1c5cc9454
@@ -9819,7 +9705,7 @@ trackedFiles:
last_write_checksum: sha1:0396671d6b0de814aaa27700f35eed30523c66ed
src/main/java/com/cvent/SDKConfiguration.java:
id: cdb9837839f5
- last_write_checksum: sha1:05826533fac17bd83ca99c5fac1cd8161c6845d8
+ last_write_checksum: sha1:0df5362b934e001fff4cf65c3eea778e33625fff
pristine_git_object: 4b98b23f51bc18bad5890089f44055b6187ed9f0
src/main/java/com/cvent/Seating.java:
id: 70583b24bb9b
@@ -9903,16 +9789,12 @@ trackedFiles:
pristine_git_object: 5a43dfd072e4b7ce37ad3e487bfa17ddcffec898
src/main/java/com/cvent/models/components/AccountBudgetItemListResponseJson.java:
id: fe2c8b19e81d
- last_write_checksum: sha1:5dd5032bf7df1368f5c72ed264276001c000a8ac
+ last_write_checksum: sha1:7b9496e0298f32be7cc6c60f2f239eaa93865644
pristine_git_object: 5940d47546af5dc5d9c0f30c90b254b105914ec1
src/main/java/com/cvent/models/components/AccountBudgetItemsPaginatedResponse.java:
id: f62d268bf28c
last_write_checksum: sha1:7f7ffd23af34d30461d9c9956f3ebfda696ec5fe
pristine_git_object: c5b4706d39939d1a730a5bd70a0d1e0510645ef0
- src/main/java/com/cvent/models/components/Action.java:
- id: ca7709186a73
- last_write_checksum: sha1:68646d944845e7b02b5aae66f940cd73dcfec876
- pristine_git_object: ff18f9530ef5db8cac95a16be4ff1e7844c99fb0
src/main/java/com/cvent/models/components/ActivityAdJson.java:
id: b48c9797cfda
last_write_checksum: sha1:ef8ef0e2ec91af2b0d13b2c981f6399ee7b44e07
@@ -10053,40 +9935,44 @@ trackedFiles:
id: 6f017b3b5faf
last_write_checksum: sha1:202bd4369eb22c2d1d7bd97fc6cb47ed6634d0de
pristine_git_object: 8037e3de666ab0bcaa7079ee0b6b857839440865
- src/main/java/com/cvent/models/components/AdditionalChoiceJson11.java:
- last_write_checksum: sha1:739b6c75d2c310b64a853e9724557ad97a5f3166
+ src/main/java/com/cvent/models/components/AdditionalChoice.java:
+ last_write_checksum: sha1:065d9f50129e9af820125d77726669f050c3c54e
+ src/main/java/com/cvent/models/components/AdditionalChoiceJson1.java:
+ last_write_checksum: sha1:97c947106a035397fec0b37906c9f3158e1c0b71
src/main/java/com/cvent/models/components/AdditionalChoiceJson2.java:
- last_write_checksum: sha1:7838f150b5b7f65e94d6e333624756d308ec9962
+ last_write_checksum: sha1:3f3767b058b76e6d23f7ae61176c9893bb80b3dd
src/main/java/com/cvent/models/components/AdditionalGuestFeesJson.java:
id: 544f0629bfec
last_write_checksum: sha1:a3dc5b30510ec20a393cfc7a7ef3fe78fe5152e6
pristine_git_object: 19baa3c22b0f9e22d489f09cc6afb6ce907cbe80
+ src/main/java/com/cvent/models/components/Address11.java:
+ last_write_checksum: sha1:98d582aa64dd015c6c43faed2dd6519f282c00d6
+ src/main/java/com/cvent/models/components/Address12.java:
+ last_write_checksum: sha1:3ba368fed96032ecc8b3a663d525158b557a068b
src/main/java/com/cvent/models/components/AddressJson.java:
id: 6308f5795b84
last_write_checksum: sha1:20dfcb4a8ae23fb0491c679d2f30cf1070d1e383
pristine_git_object: 02d35db07a56c928d13de96bdecd2890c8e13343
src/main/java/com/cvent/models/components/AddressJson0.java:
last_write_checksum: sha1:7ca3b103f6d6efc0e3b7511460df43625265e700
+ src/main/java/com/cvent/models/components/AddressJson2.java:
+ last_write_checksum: sha1:4bcc6b022cfc9a25d5ece1bdb8ceb2887345d65f
src/main/java/com/cvent/models/components/AddressJson3.java:
id: 55787e23e9f4
- last_write_checksum: sha1:32ce8763e71669a3fc33053772dfc5b53aba131a
+ last_write_checksum: sha1:e0d2a8ebe5e3cca288829496e85b998cb38fe29a
pristine_git_object: 3d3e1a9b4c7dad3d2cdb5ffa0025b956a5b5d3f4
src/main/java/com/cvent/models/components/AddressJson4.java:
id: 3bdafa1358ba
- last_write_checksum: sha1:00278db71c6822ecbc92beaf21a84a6d9446d4da
+ last_write_checksum: sha1:9ba5013576e823273dba2e8af7a29d914d66fac2
pristine_git_object: 5d19005351c44323f194793a2c19acb3fb692645
src/main/java/com/cvent/models/components/AddressJson5.java:
id: 449624e98e8f
- last_write_checksum: sha1:5e763e23d20943c715bfa5d8b6436caa8ec5e9b9
+ last_write_checksum: sha1:226b83bf38a8eb98eb7b3a2de6adcb393f24bfce
pristine_git_object: a023190e289f21e693d3681d5b1435253ead94bb
src/main/java/com/cvent/models/components/AddressJson6.java:
id: a20bdd390018
- last_write_checksum: sha1:ed23716e5f8cafbeb30be839b11bea109f686aea
+ last_write_checksum: sha1:190ca9b7425813ae57c04e190796936b809d36c3
pristine_git_object: 5647552b5b0a71de8b318feb9f9422e1f016de34
- src/main/java/com/cvent/models/components/AddressJson7.java:
- id: a79818f8bebf
- last_write_checksum: sha1:2da7d6dc68e707cb7a0c5f50d0ddecf7261a854f
- pristine_git_object: c0e0b80862084288b4bed975bf8e1b6dfa3df4cb
src/main/java/com/cvent/models/components/AddressJsonInput.java:
id: 52184c278a37
last_write_checksum: sha1:86d85c5cc7a05a7033c2494909c88c0acd51489d
@@ -10209,40 +10095,38 @@ trackedFiles:
last_write_checksum: sha1:3f882d7c63d6fecbd3d5a7a9f6f0ffa433d9fd39
src/main/java/com/cvent/models/components/AnniversaryMembershipItemJsonContactType.java:
last_write_checksum: sha1:6f4ef32fdf833eaf399c7dc517a222f269cba244
+ src/main/java/com/cvent/models/components/Answer1.java:
+ last_write_checksum: sha1:c435719f921b09dc20a36fed14f94d8b2a2170c6
+ src/main/java/com/cvent/models/components/Answer2.java:
+ last_write_checksum: sha1:2c08e131463f3dc992c09c365e9fb23e72711023
+ src/main/java/com/cvent/models/components/Answer2Choice.java:
+ last_write_checksum: sha1:5b646eed6233a47cd6f206ed29ad077326efd7a4
src/main/java/com/cvent/models/components/AnswerJson.java:
id: 4a78cff7674b
- last_write_checksum: sha1:e48829af3f7bac212c0db76b4040e980fcf6af5c
+ last_write_checksum: sha1:0903f9f934ea4d451b935f6551bd9b2f53c2c1aa
pristine_git_object: 209ba65fecb2cb9467e39def1f8029bc5cb940f4
- src/main/java/com/cvent/models/components/AnswerJson0.java:
- id: 9f458fcb949c
- last_write_checksum: sha1:dab5ca406142df6117788141cd107fed074d6f95
- pristine_git_object: bbbce696333f3226c7170c200b9fc262f8621c34
src/main/java/com/cvent/models/components/AnswerJson1.java:
id: e7b1574f3099
- last_write_checksum: sha1:258d22b738d2ff920e723d5a6639c3b3d5bb4951
+ last_write_checksum: sha1:69f05a6f68c583a4ab74546b94118df26a6f1aea
pristine_git_object: 918e318ddb42092cd1138195d2ea09477838bd91
- src/main/java/com/cvent/models/components/AnswerJson2.java:
- id: 4b6bb1637a6f
- last_write_checksum: sha1:7e6a2784ca2124216b33f93f5fb92d9512988268
- pristine_git_object: e44df733a941f613fd748481031ef5e361888d6e
+ src/main/java/com/cvent/models/components/AnswerType.java:
+ last_write_checksum: sha1:2c4e561f4273c847cf514f23c130b34c756478ec
+ src/main/java/com/cvent/models/components/AnswerType1.java:
+ last_write_checksum: sha1:f7517a37822bbf1773dcaff984b12ac0ff850733
src/main/java/com/cvent/models/components/AnswerTypeJson.java:
id: 9658c9d5a363
- last_write_checksum: sha1:7b0e7d05aea71b28e1f6ceedead138a46f7920e1
+ last_write_checksum: sha1:e9e5dd51a6e45165c0d2ca432c975900c8093bb3
pristine_git_object: 2cd68cca7ed155056295722138adf5cd64edef92
- src/main/java/com/cvent/models/components/AnswerTypeJson0.java:
- id: b21679c51377
- last_write_checksum: sha1:4cba1dbe44eaa0b53347f9c2ce8523444f289847
- pristine_git_object: 5f8fc1cd2bda9a825087b37b5d53ab04ede08bad
src/main/java/com/cvent/models/components/AnswerTypeJson1.java:
id: 271875f20bee
- last_write_checksum: sha1:3fdafcf0f797c90567a85b30f01b2b115d53da4b
+ last_write_checksum: sha1:6b168ca9cbd6d9edfba9f969784e648b05ed6cd7
pristine_git_object: dc99b97f5b6ee16a48f422291aa4d7921bcf8c24
- src/main/java/com/cvent/models/components/AnswerTypeJson2.java:
- last_write_checksum: sha1:fcd1e9f6f29f832fede21ef4429fdf8747e72fe6
src/main/java/com/cvent/models/components/Application.java:
id: fc324ddbb742
last_write_checksum: sha1:67d072957d6750c730c82c6d55936b4c1ba88b1f
pristine_git_object: 2a88e33332bcc71531eac36aa329b7aea175cb20
+ src/main/java/com/cvent/models/components/Appointment.java:
+ last_write_checksum: sha1:13f5345c53d63f1077816be2a22bf055f1f61f10
src/main/java/com/cvent/models/components/AppointmentAccepted.java:
id: 84247c6b3b42
last_write_checksum: sha1:3d1d23a8c9cd5a0d4b7b9ca59016c30b2efa078f
@@ -10379,10 +10263,12 @@ trackedFiles:
pristine_git_object: a83027d1c573925c2fb173fb79265e65aa5c13f7
src/main/java/com/cvent/models/components/AttachmentSourceJson.java:
last_write_checksum: sha1:aaa3d10b9559e8e023cd56bdea60bcdca8836fa6
- src/main/java/com/cvent/models/components/Attendee.java:
- id: 0533904461db
- last_write_checksum: sha1:3481223e5933ad5deb2e0cd2d31e841bf5de2592
- pristine_git_object: 66811a013f2464f2b6618733f2ed062c0a0fbd49
+ src/main/java/com/cvent/models/components/Attendee1.java:
+ last_write_checksum: sha1:b615ae4ffb813f1948c71738a6b3f4ad5be30907
+ src/main/java/com/cvent/models/components/Attendee12.java:
+ last_write_checksum: sha1:b9dbf8f675cc0e4d6dba640149c73011603f0616
+ src/main/java/com/cvent/models/components/Attendee2.java:
+ last_write_checksum: sha1:6c56068fcb5d68a67eaef889eb0eae5167a1eab6
src/main/java/com/cvent/models/components/AttendeeActivitiesPaginatedResponse.java:
id: fa1fb86e61be
last_write_checksum: sha1:588a350967abac8420622802fe72e333167ce587
@@ -10479,9 +10365,13 @@ trackedFiles:
id: 9f53b17bc6fb
last_write_checksum: sha1:37c36d190c3653ddf88f902042ede18d7e10c890
pristine_git_object: f356d0e4b636da88154ee5d4d5ba7984b5b05916
+ src/main/java/com/cvent/models/components/AttendeeAudienceSegmentAssociationJson.java:
+ last_write_checksum: sha1:20245d520411b12b5dace1b73db4aaa00481edd6
+ src/main/java/com/cvent/models/components/AttendeeAudienceSegmentAssociationsPaginatedResponse.java:
+ last_write_checksum: sha1:108ca2711383307946a2d28bac9eeb05ead80dbc
src/main/java/com/cvent/models/components/AttendeeContactInfoJson.java:
id: fd181b292ffa
- last_write_checksum: sha1:141361db3e0456b563f50a3683228d82977d88d7
+ last_write_checksum: sha1:e642b75ccf0b851edbd24ffd0953fe53121593b3
pristine_git_object: 97f47b39a209f809a7903383f31cc07d018e19e8
src/main/java/com/cvent/models/components/AttendeeContactMembershipJson.java:
id: 7293bb6e0648
@@ -10529,7 +10419,7 @@ trackedFiles:
pristine_git_object: 2bc3a56e11c808b818bf14d07046a1322a3aadb7
src/main/java/com/cvent/models/components/AttendeeInsights.java:
id: fe78fb341233
- last_write_checksum: sha1:e83a8d87af11ecac9a22bee37d62e0d67e87707c
+ last_write_checksum: sha1:014e42dc340ae30899503557c8bc3ad253ce8b1a
pristine_git_object: 8ba31dfecd76e179bba633ba7dab3b74192e9ffc
src/main/java/com/cvent/models/components/AttendeeInsightsPaginatedResponse.java:
id: edd9cede4bde
@@ -10563,10 +10453,6 @@ trackedFiles:
id: 5842b8890cca
last_write_checksum: sha1:9f7309bb99d9329caeb11240a1b5ef16a840f4f1
pristine_git_object: 40396e6ba698a98ecc68878ec8ef35468f6512ba
- src/main/java/com/cvent/models/components/AttendeeJson3.java:
- id: c1b9f924703b
- last_write_checksum: sha1:2b9c986d00103fd56f2a1d1d243c1248f4d6cdf1
- pristine_git_object: 3d94b5b333e65ec961c876af4da1c4f345b99ecf
src/main/java/com/cvent/models/components/AttendeeJson4.java:
id: 70411831daaf
last_write_checksum: sha1:3f6dd03a306b89ce5e7737d4eca574157835b487
@@ -10589,7 +10475,7 @@ trackedFiles:
pristine_git_object: 34b868ded6367ec608ac3f47881b7c419c33fc9f
src/main/java/com/cvent/models/components/AttendeePaginatedResponse.java:
id: d7719ddf3a10
- last_write_checksum: sha1:ecd689dc526054269b7f753e7335c5aced8290de
+ last_write_checksum: sha1:a985b26c98d0d0ee05cbccbc8e4776da167a4bdc
pristine_git_object: 3183c0fc0d74a001b05b7cfe2596fcd7fd50d641
src/main/java/com/cvent/models/components/AttendeeResponseJson.java:
id: f9ad86d43041
@@ -10707,11 +10593,11 @@ trackedFiles:
pristine_git_object: b2132b14067e65501f54b0bfc9adb7daf79a692c
src/main/java/com/cvent/models/components/AudienceSegment.java:
id: cdf1213554cf
- last_write_checksum: sha1:e8213171289c122405c2bdcbb1fd2cf6660b0a1e
+ last_write_checksum: sha1:1d0ce8c0c1be51c979e23c7ffccb84cd424aff12
pristine_git_object: 1fa0a8da6d817199151b5255b9ff3b8fc48d330a
src/main/java/com/cvent/models/components/AudienceSegmentCreate.java:
id: ba3272f63c83
- last_write_checksum: sha1:6f68d75c84967d2a3e309a65dae72dfc269b5909
+ last_write_checksum: sha1:d5d2a48d9b1911f5b53a5328a707d64cbeb9c72e
pristine_git_object: 32cde3794fff4042e0eab7d747e68ab504796847
src/main/java/com/cvent/models/components/AudienceSegmentCreationTypeJson.java:
id: 42e18e2dce89
@@ -10719,7 +10605,7 @@ trackedFiles:
pristine_git_object: adf008e60d97b648d0dd35f2a4c383230f7637d6
src/main/java/com/cvent/models/components/AudienceSegmentResponse.java:
id: bc45aaeee1ca
- last_write_checksum: sha1:c023f5c6f19552420003e2442a5a286f9c32a8db
+ last_write_checksum: sha1:4db9ff035be95c66928eec3015329a0c164670eb
pristine_git_object: 52dd5940f586c15000e4cb4ecbf264f603f77040
src/main/java/com/cvent/models/components/AudienceSegmentsPaginatedResponse.java:
id: 335954d80923
@@ -10771,15 +10657,15 @@ trackedFiles:
pristine_git_object: f472561bd6bc06dbf2b877dd22f50987e9d23706
src/main/java/com/cvent/models/components/Badge.java:
id: 7ecfc5e18e3d
- last_write_checksum: sha1:fdf8fe646cd0fe536cf698d9b14d97f1ad9c4232
+ last_write_checksum: sha1:b3633562d44d9668e1caf0a688ad89708e6a3e26
pristine_git_object: 0b376698e68dfb00fb46c8faa6430cd2f94aefb7
src/main/java/com/cvent/models/components/BadgeInput.java:
id: 0cd497db7949
- last_write_checksum: sha1:0015b20f80b6e0c897ebf846fe6af5388e193afc
+ last_write_checksum: sha1:0134f70869c32fcac35bae76c346aec58d9cb15a
pristine_git_object: d6b20fad5c2fb2077d56d83179aa24ee21a69b4a
src/main/java/com/cvent/models/components/BadgePaginatedResponse.java:
id: 8cb015807241
- last_write_checksum: sha1:4adbbcd06135b900626322888fba8cb07f7d04a3
+ last_write_checksum: sha1:4f79ac49012c0628a891de8c0f0549790845a0aa
pristine_git_object: 3504df871fc80726c2c12e082198c8dc4b8e54a5
src/main/java/com/cvent/models/components/BadgePrintJobCreated.java:
id: d5e052b19f28
@@ -10817,14 +10703,10 @@ trackedFiles:
id: 78a156881493
last_write_checksum: sha1:5a7572670148ba54cf3de0de90489a7c523b639b
pristine_git_object: 366152785843fb51466e90eea05530ebde27102e
- src/main/java/com/cvent/models/components/BadgeStatusJson.java:
- id: 39d77d382f47
- last_write_checksum: sha1:4d4e1672b6c2f0fb222ca7712bc4c1cb4ffa4244
- pristine_git_object: 7e6f1cc637e9a3c553237286c35fe7b1f319dac7
- src/main/java/com/cvent/models/components/BadgeTypeJson.java:
- id: 951ec92ae9ad
- last_write_checksum: sha1:3f117446be75c148634c49c30025f0f4c728a71f
- pristine_git_object: f53e6837a6d50485aa659dc28effa72b2049f633
+ src/main/java/com/cvent/models/components/BadgeStatus.java:
+ last_write_checksum: sha1:f6c7c92902bde841a9d8b14dbf01e8fe3b1df098
+ src/main/java/com/cvent/models/components/BadgeType.java:
+ last_write_checksum: sha1:b59c5b86c2cfb27e4240f96886c6151d874ee31a
src/main/java/com/cvent/models/components/Banner.java:
id: c8dd5a0652cc
last_write_checksum: sha1:2ba48a1bd2849f1d7a1414316fdd92fa3a6e7c10
@@ -10843,10 +10725,8 @@ trackedFiles:
id: 11d4dfb5e0a5
last_write_checksum: sha1:e41de5b89a250df4c4a6585ea4d1acf9a4eeb23f
pristine_git_object: 386d2959212abfefb3cd4fd0cda63d94ac705e01
- src/main/java/com/cvent/models/components/BaseChoiceJson.java:
- id: ee2d19220da1
- last_write_checksum: sha1:9d9a2ebea130289ee0c95c9f529e78c9a36a6873
- pristine_git_object: 4286fd26462505c2c8e8ea14403b7c78daf769ef
+ src/main/java/com/cvent/models/components/BaseChoice.java:
+ last_write_checksum: sha1:9154dc325b99b83850a506c8c2d1a8b6777e24b7
src/main/java/com/cvent/models/components/BaseQuestionResponseJson.java:
id: 25b183bafe34
last_write_checksum: sha1:50320e17ba1e336f38c424f27beb51f1667609e8
@@ -10885,17 +10765,19 @@ trackedFiles:
id: ad7ad89bc5f1
last_write_checksum: sha1:bc8d16daf753bdca26a85c3b7e8d191c20d96307
pristine_git_object: fc8db60a3b4f2e80436aaf325f50a2793d102b4c
+ src/main/java/com/cvent/models/components/BoothStaff.java:
+ last_write_checksum: sha1:8835c794a74de799fb0c3c3bd69e5905412fa9c3
src/main/java/com/cvent/models/components/BoothStaffListResponse.java:
id: b11e892abe01
- last_write_checksum: sha1:a92384c5fa5520b46d97671e3cda47ce81e4c461
+ last_write_checksum: sha1:d2b558cb7af772b811a85fa4665d1d83bea5753a
pristine_git_object: fbd7670f5bb185876c733a87acf3cee1cc27365f
src/main/java/com/cvent/models/components/BoothStaffRequest.java:
id: 2a08c9383f1a
- last_write_checksum: sha1:4eaf39d917e91a3c1dc5a1776808c6a1cca1102b
+ last_write_checksum: sha1:3d7592e607967e2fd3261a2dde4e1efa19cdb76b
pristine_git_object: e0f02d6322b4471ddda6e3937320c429c2163404
src/main/java/com/cvent/models/components/BoothStaffResponse.java:
id: 3bb640c0e34c
- last_write_checksum: sha1:f0327d5bd305410a59ec4ab4f689196b32f50cc3
+ last_write_checksum: sha1:ef9d69cbd8a54b873eef5ed354de79d49bf15306
pristine_git_object: d3664e714d7ef53336c05431b9f009afa8817836
src/main/java/com/cvent/models/components/BounceDetailsJson.java:
id: 1de4c454d411
@@ -10907,7 +10789,7 @@ trackedFiles:
pristine_git_object: 0b47fb77f9c6759b62b5ff7569982c1742d1c7c8
src/main/java/com/cvent/models/components/Brand.java:
id: 7c2dc950e89d
- last_write_checksum: sha1:601dde03b8672d135708f3b19a6365270f917ee9
+ last_write_checksum: sha1:2e028e8489b45a847ffa65f25d8fb54acfa9739e
pristine_git_object: c16220eb18d787192abe44854629d91786ede338
src/main/java/com/cvent/models/components/BrandPaginatedResponse.java:
id: 72eb951c3d58
@@ -11163,22 +11045,16 @@ trackedFiles:
pristine_git_object: 8fae8fcb4ae648ae13cceeae97fd54f58e7fc5ee
src/main/java/com/cvent/models/components/CancelledReasonJson0.java:
last_write_checksum: sha1:3e9d28d93c3fc632d4d2aac95cc747e1458ede9b
+ src/main/java/com/cvent/models/components/Capacity.java:
+ last_write_checksum: sha1:d1ff340f1022af8afd2bedce10252bdad09843a0
src/main/java/com/cvent/models/components/CapacityJson.java:
id: 394af7f863af
- last_write_checksum: sha1:4bcd5b0ea2da189a3c59a0e1574a20f39ee84028
+ last_write_checksum: sha1:8219f97ddf3e538687f79188d74f2dd488281c70
pristine_git_object: 7f78c29c39efa4051382b6ce28af0098e9eb6558
- src/main/java/com/cvent/models/components/CapacityJson1.java:
- id: da2dd6d88a93
- last_write_checksum: sha1:fce9983a45359400a19b81056ea2540344a36c9a
- pristine_git_object: a153b30ef6e1de2fd0567e5aef27aaaa7ea8b4cd
- src/main/java/com/cvent/models/components/CapacityJson1Input.java:
- id: 7a719daafa90
- last_write_checksum: sha1:3021be476fae43675a558fe9b8de5f6890377348
- pristine_git_object: 4ce54410b5c513b0273ae72e4c930c2243369c46
- src/main/java/com/cvent/models/components/CapacityJsonRegistrationType.java:
- id: d7af71b829f4
- last_write_checksum: sha1:2f94c604b20753219ccccc548a7ac4990f93a16b
- pristine_git_object: 209d08db4d62283d39c1431772108c31e1039921
+ src/main/java/com/cvent/models/components/CapacityJsonInput.java:
+ last_write_checksum: sha1:a9c1ec3e8ad67b038350ee25d76644334123a411
+ src/main/java/com/cvent/models/components/CapacityRegistrationType.java:
+ last_write_checksum: sha1:20963352dbde7dbfc8d030e06c9f2ee3e9cbb89b
src/main/java/com/cvent/models/components/Card.java:
id: 1d147e49773d
last_write_checksum: sha1:46bd40240a89397d6bc58156d2194d69b025b4e8
@@ -11263,7 +11139,7 @@ trackedFiles:
pristine_git_object: 41c23c6c6400b1d71010ebd89a981195d675c80c
src/main/java/com/cvent/models/components/Chain.java:
id: c8e2eebd6713
- last_write_checksum: sha1:44b9702397cacc2f56444c42080fe506c4e96855
+ last_write_checksum: sha1:e1f6e123142cd483322a2b405bd58d3ce27c3a4d
pristine_git_object: 3e7cc32f327a1b58adf4a4f3e3faaf6f0056f572
src/main/java/com/cvent/models/components/ChainBrand.java:
id: e708bbcb1d15
@@ -11311,26 +11187,20 @@ trackedFiles:
pristine_git_object: d8b6f4e7bb360ca9cebfd08f6c4980570945093d
src/main/java/com/cvent/models/components/Choice.java:
id: a5c8e32158be
- last_write_checksum: sha1:401f952a51d8b930e4bdfbee1f2f8ae759d50b6c
+ last_write_checksum: sha1:06c5dec6785ac760f08555592713b2b413da31c1
pristine_git_object: 7cc0a376992d57a8b6b705b771d03d0868948d18
src/main/java/com/cvent/models/components/ChoiceJson.java:
last_write_checksum: sha1:670fbeffe3b6ea20bb247614d6cbcd63d1c70de4
src/main/java/com/cvent/models/components/ChoiceJson2.java:
id: c2738f29fa92
- last_write_checksum: sha1:98db4a288205aea5ad9fa0b062c554144cc6b236
+ last_write_checksum: sha1:901e4df0cbadadf29e47d49b48b81360a01f3a69
pristine_git_object: e42a99c45ca13dc9bd749c753b47aed8d5bba4e2
src/main/java/com/cvent/models/components/ChoiceJson3.java:
id: 8744ddcc5394
- last_write_checksum: sha1:372c827548dd315093cfd94686241bdd81509261
+ last_write_checksum: sha1:193c8c27d225cb4d4e82923d29d67a4f277dccb5
pristine_git_object: 138b561ce30931c52404637a83d5a819a74264f7
- src/main/java/com/cvent/models/components/ChoiceJson4.java:
- id: ac41ec57bdeb
- last_write_checksum: sha1:dfeec1548211d1829cfde16b365529bcc9e6fc52
- pristine_git_object: 017016376a0ea2493d7801dc3f12dab866e7fad9
- src/main/java/com/cvent/models/components/ChoiceJson4Input.java:
- id: 7f77e33da7eb
- last_write_checksum: sha1:93d0cc010a7c588b95380c77b732cef97b95da23
- pristine_git_object: 3df55d4afd9a17dda963a9702121412f7c6227b4
+ src/main/java/com/cvent/models/components/ChoiceJson3Input.java:
+ last_write_checksum: sha1:4cda556523ceb850799dcbe56aa4e4aba5cc8cc3
src/main/java/com/cvent/models/components/ChoiceSortOrderJson.java:
last_write_checksum: sha1:3712d65b1cc42b2a80c150a124d8e1848abefff3
src/main/java/com/cvent/models/components/ChoiceTranslationJson.java:
@@ -11341,7 +11211,7 @@ trackedFiles:
last_write_checksum: sha1:e0cb67412e50be92663d283990fb250bf7e147bb
src/main/java/com/cvent/models/components/Choices.java:
id: 59973ddc8aed
- last_write_checksum: sha1:2b0a919831653ea70e93b7b34e0edd31c52f633b
+ last_write_checksum: sha1:e6414c6e2a996481b46672b7a9d1a44db319c41c
pristine_git_object: 95cd28da362bb5e76ac04f50a1c6a939ea89287e
src/main/java/com/cvent/models/components/ChoicesDisplayTypeJson.java:
id: 36d25b0ac012
@@ -11367,14 +11237,24 @@ trackedFiles:
id: a6a2c12524f9
last_write_checksum: sha1:fca3d6f8bd9ceb9be384d2dd00f715fce86b39c9
pristine_git_object: 5ccd086c7a4dd224c8e361b437bbd012cbef56c1
+ src/main/java/com/cvent/models/components/Compliance.java:
+ last_write_checksum: sha1:800dc1f535376bdc65a72fd095abbb5feb3f93a9
+ src/main/java/com/cvent/models/components/ComplianceAction.java:
+ last_write_checksum: sha1:241a23061264018595a7516826889de0fd177fb8
+ src/main/java/com/cvent/models/components/ComplianceComplianceScope.java:
+ last_write_checksum: sha1:88383f07d7d24f78f745e890f9f0e7cef0ad2a52
+ src/main/java/com/cvent/models/components/ComplianceCreatedBy.java:
+ last_write_checksum: sha1:ba8b48bc0183f562e6b430f70efc233d372b58b5
src/main/java/com/cvent/models/components/ComplianceJson.java:
id: 4414dcd46a1d
- last_write_checksum: sha1:cce293993a5bbdbce4b627a6cb7191b41534dbbd
+ last_write_checksum: sha1:f72812e332dd38fef177f1da46082e53c1eefb43
pristine_git_object: e0408b1934d167e56e9c91bf267c8b7ab2ebd404
- src/main/java/com/cvent/models/components/ComplianceScope.java:
- id: 8af8de07189a
- last_write_checksum: sha1:705228c883dcc6e14f147726941b1a7337c4df56
- pristine_git_object: 06b4fa8fc414c001d5a37f2acad30ff5ff00f6c9
+ src/main/java/com/cvent/models/components/ComplianceJsonAction.java:
+ last_write_checksum: sha1:dfc096ed972048e08c5c6326888012c41175fc44
+ src/main/java/com/cvent/models/components/ComplianceJsonComplianceScope.java:
+ last_write_checksum: sha1:df3b650db042b6654efb967a92682952fae4934e
+ src/main/java/com/cvent/models/components/ComplianceJsonCreatedBy.java:
+ last_write_checksum: sha1:1c48c668b63c2183da10c053b05fbb96e1edb56d
src/main/java/com/cvent/models/components/CompositeValueJson.java:
id: 07b0c7dd6e72
last_write_checksum: sha1:fff25dbafc41970d1b639b2815dba64664ae926a
@@ -11491,14 +11371,12 @@ trackedFiles:
id: eefb3348b788
last_write_checksum: sha1:557039bc30c9c91f50462312ae9703734e36aff4
pristine_git_object: 0b7ba11f1413a5cb7d0576ac4816f2e54031315f
+ src/main/java/com/cvent/models/components/ContactLinks.java:
+ last_write_checksum: sha1:c1ecfc1bc4faae5652077ce985a57560566b58cf
src/main/java/com/cvent/models/components/ContactLinksJson.java:
id: 9f076036e0ab
last_write_checksum: sha1:44ca0e305c118f379d486aa8c29cc2ca91ab333a
pristine_git_object: 40ada1d65cddc89b4cd38d08566501ca82dfb07a
- src/main/java/com/cvent/models/components/ContactLinksJson2.java:
- id: 23b57c1d976e
- last_write_checksum: sha1:cdf896017a00c11387af5583e7eb79de004a927e
- pristine_git_object: 49beca8e56a0da93313ad0a64b5cd7011b3e0c05
src/main/java/com/cvent/models/components/ContactLinksJsonInput.java:
id: de4451962727
last_write_checksum: sha1:aa3339e7ad98e6c8e383b5c8fffc4a12018696c4
@@ -11613,10 +11491,6 @@ trackedFiles:
id: ac469af2ce3b
last_write_checksum: sha1:9efd84f001d2fc6c5cd4a10872ecc7f1bf458b3f
pristine_git_object: b7a6166a5b1325d7e92fbeb64a4aa4abce8a986a
- src/main/java/com/cvent/models/components/CreatedBy.java:
- id: 40e6b60a77bb
- last_write_checksum: sha1:ba5d074ad9ea7739916ab1965a02b14345f16dc9
- pristine_git_object: c17e76bc03d0a9f6bce1ae0dfccf635b9bffe1a6
src/main/java/com/cvent/models/components/CreditCardRequestJson.java:
id: b8399dd3cfbe
last_write_checksum: sha1:b5fce9167bff4878cabe385316991752a0262074
@@ -11753,6 +11627,8 @@ trackedFiles:
id: f4182ce653c8
last_write_checksum: sha1:af76b05e179846b25ae2318f535d4648c61f2ac4
pristine_git_object: ee627136451b973ff00b5e9a8f6b13259c3305c2
+ src/main/java/com/cvent/models/components/Device.java:
+ last_write_checksum: sha1:335ee31751caa52c4fb4fc7a674309a38489a1b4
src/main/java/com/cvent/models/components/DeviceJson.java:
id: 244571377d30
last_write_checksum: sha1:aaa55a9d15f468dda2cc9ee6bcc1c5f69680464d
@@ -11845,21 +11721,17 @@ trackedFiles:
id: c54954a18e62
last_write_checksum: sha1:5ee116fd27beb464db85be988b2936915f787565
pristine_git_object: e064c48e04a2feb9ab22afab9fe579975a77e8a1
+ src/main/java/com/cvent/models/components/ELiteratureDocument.java:
+ last_write_checksum: sha1:71fc688100eb912c5a2e702d1f08253ec68249ec
+ src/main/java/com/cvent/models/components/ELiteratureDocumentType.java:
+ last_write_checksum: sha1:04735c5bfd01dda119ee8eff973d028bb60b4aca
src/main/java/com/cvent/models/components/EarlyBirdPricingJson.java:
id: 3189053bc355
last_write_checksum: sha1:d952ec06956f74d9e8773824bf9b0e7aa3f009bc
pristine_git_object: 99220fcaf8f665c0d01555c08ee80c929f61700d
- src/main/java/com/cvent/models/components/EliteratureDocumentJson.java:
- id: 9cd950c3e1eb
- last_write_checksum: sha1:be02239ab8cc7fa5c7053e99ac58726c0f6c2803
- pristine_git_object: 6be667957e5de194b217384ac08858390f94107f
- src/main/java/com/cvent/models/components/EliteratureDocumentJsonType.java:
- id: eeddd3ef9a02
- last_write_checksum: sha1:fcdbf59a9f0692c654897c0565b595b5525b956d
- pristine_git_object: a5f484663c7d09a526cbb654413899356e916f72
src/main/java/com/cvent/models/components/EliteratureRequestPaginatedResponse.java:
id: fcd612ecf973
- last_write_checksum: sha1:ecc5f277d3aff426915815c083a805e39a6dfefe
+ last_write_checksum: sha1:c2473a927b1ae0113f4b492931138c388e94d18d
pristine_git_object: 289725918e2eda2cbbc1878b73ff8c9db11b88c1
src/main/java/com/cvent/models/components/EmailBounced.java:
id: ef5073cb77ea
@@ -11969,6 +11841,8 @@ trackedFiles:
id: c797f7ecad54
last_write_checksum: sha1:2fb3c712d2b27ee40e8d5816b05aa4390a0235c9
pristine_git_object: 2cbb7d505c1fe1458053eb38de73fff1b8f972d7
+ src/main/java/com/cvent/models/components/Event1.java:
+ last_write_checksum: sha1:528729632d7eb6bab536d563ba82ecd0df628614
src/main/java/com/cvent/models/components/EventActivityDetailsJson.java:
id: cae903159e50
last_write_checksum: sha1:fd8fac6a9ebcf00e79de3bae2ce27191736eae45
@@ -12019,7 +11893,7 @@ trackedFiles:
pristine_git_object: 7dc94b1e80c7cc29492e7ffb72a1b5024255a198
src/main/java/com/cvent/models/components/EventBannerLinkClicked.java:
id: 8872cb49aea8
- last_write_checksum: sha1:66c5b9fc501b442f107f8b377050b07962d4a434
+ last_write_checksum: sha1:58280f0bb93a9123eb46374038adfa691537e78e
pristine_git_object: b8385480db3b7bd7cac12df1318d4aa89a801496
src/main/java/com/cvent/models/components/EventBudgetCostDetailJson.java:
id: 3c28aedcd366
@@ -12067,11 +11941,11 @@ trackedFiles:
pristine_git_object: 1fadae3f2b97a0b8c5752636cde2f2e18dbcc65c
src/main/java/com/cvent/models/components/EventEmailsPaginatedResponse.java:
id: ba5256564cfe
- last_write_checksum: sha1:3e9ca38066d9ac6c5082fcf9d100545efbe639ea
+ last_write_checksum: sha1:fb515663184c93e254370c3b216083d45bbc6cb7
pristine_git_object: 0f21f94bcdb4e1a20da9c5717a7817daf4a52f95
src/main/java/com/cvent/models/components/EventFeatureJson.java:
id: 23ed9a202ca4
- last_write_checksum: sha1:c1d4acd42c140c2427d6b9d0abfa13cb260b50e3
+ last_write_checksum: sha1:3795050257aa38aa6d4cb41e71773f3e95955c46
pristine_git_object: bc0f339987d2832d10a6c3451186b44728455d82
src/main/java/com/cvent/models/components/EventFeatureJsonConfig.java:
id: 9406c46b50bd
@@ -12087,7 +11961,7 @@ trackedFiles:
pristine_git_object: b796cecbb7485a2e6426095e5ac5864da8f659d7
src/main/java/com/cvent/models/components/EventFeaturesResponse.java:
id: bab33afc09aa
- last_write_checksum: sha1:32395777d599f366b06b3df371356a4756e97a2c
+ last_write_checksum: sha1:600069e4150b804cc12dc29f67b3c067c0184279
pristine_git_object: e43d4a0743002ee9fb09c44528a72b1005e65ad0
src/main/java/com/cvent/models/components/EventFeaturesResponseConfig.java:
id: 25d1bf350255
@@ -12113,22 +11987,18 @@ trackedFiles:
pristine_git_object: d376666918445b57a00d687d43f26250bba9ce54
src/main/java/com/cvent/models/components/EventJson0.java:
last_write_checksum: sha1:bce4a803eef8f00f63f84e7334605d52307c7152
- src/main/java/com/cvent/models/components/EventJson11.java:
- last_write_checksum: sha1:df495407831a45bae1e95ff0625aafac3e29baa8
+ src/main/java/com/cvent/models/components/EventJson2.java:
+ last_write_checksum: sha1:4f7d3127e1a85c40c215a27b5e8d516887f04d71
src/main/java/com/cvent/models/components/EventJson3.java:
id: 25a9ceb98f28
- last_write_checksum: sha1:ffd3e09767c1dcbeb130fe596f51a9cc22f8f70b
+ last_write_checksum: sha1:72b3b748120fef3959857cca516b898a21127a7d
pristine_git_object: a7280e4351fed035dc4357e514e8079e4fb6ad63
- src/main/java/com/cvent/models/components/EventJson4.java:
- last_write_checksum: sha1:2e5ba6a038e6e6769233876a09d746e0303f350a
- src/main/java/com/cvent/models/components/EventJson6.java:
- id: 704de27d500f
- last_write_checksum: sha1:475ff9c0680039ac761b2c4993a50d0348a2caa2
- pristine_git_object: 98d7027c0687127b1ead26234475666c3a7f0703
+ src/main/java/com/cvent/models/components/EventJson5.java:
+ last_write_checksum: sha1:1204484e6f8789cc740025788c49af1acc104627
src/main/java/com/cvent/models/components/EventJson7.java:
- last_write_checksum: sha1:6af5d715d2192f8b171381652aed71be758ebef4
+ last_write_checksum: sha1:f740492b4c9ccdaed89d20f6e181fa6352804673
src/main/java/com/cvent/models/components/EventJson9.java:
- last_write_checksum: sha1:51e4fa4a48e46a9fba4d88f2f75e85418e7d75be
+ last_write_checksum: sha1:02f460cdf045d5e59d2d764ba746081b60cd26d4
src/main/java/com/cvent/models/components/EventLinksJson.java:
id: 425d79f7d08e
last_write_checksum: sha1:b9211c52ced14949a2e8b205f0e0885148de0387
@@ -12241,7 +12111,7 @@ trackedFiles:
pristine_git_object: 99d315c307df9ae51b164592a47f916f612d22a7
src/main/java/com/cvent/models/components/EventSurveyQuestionJson.java:
id: 8013e4822f6a
- last_write_checksum: sha1:e3cf47bc390cbecbbb9fe84d80198370c0b9e214
+ last_write_checksum: sha1:512e9a6bc32725345570f0f2d955e907f4abc519
pristine_git_object: 93182f543745dbb8f05696635f7c66ea13459220
src/main/java/com/cvent/models/components/EventSurveyQuestionsPaginatedResponse.java:
id: eac089048043
@@ -12249,7 +12119,7 @@ trackedFiles:
pristine_git_object: f3dd98dbaff03e5d5eb96fbccffd3c25c9414ab7
src/main/java/com/cvent/models/components/EventSurveyRespondent.java:
id: 96906eb1f3a0
- last_write_checksum: sha1:b135fc5adeef3d2e10e036df65249c511326104c
+ last_write_checksum: sha1:7b3ece8c3bbfe21bf0fd8b042812cfa73fb40710
pristine_git_object: 7b08b58451bd62d6a18711f2024603f318e25ce9
src/main/java/com/cvent/models/components/EventSurveyRespondentAttendee.java:
id: d98606531eb9
@@ -12273,11 +12143,11 @@ trackedFiles:
pristine_git_object: 8a7e66711acec90188b99abe026249ba11f1dba0
src/main/java/com/cvent/models/components/EventSurveyResponse.java:
id: 6d78f9acfb39
- last_write_checksum: sha1:c62728b2eb8bbb2f1507f837b4bcf2a02fd211f8
+ last_write_checksum: sha1:a21af5b8e48af3bd2b45e7d300a772c06421818b
pristine_git_object: 5c692b24a11079a4b334e7ae3a3177dfc8152694
src/main/java/com/cvent/models/components/EventSurveyResponseInput.java:
id: b11d97b0a73b
- last_write_checksum: sha1:9b19c56c036614b2a10e579691725f56cfe46b88
+ last_write_checksum: sha1:b790b1b9dc757279fa0dee1030a50dee066b0ef8
pristine_git_object: c183b4651cf15da816d9438546ba5543245eb863
src/main/java/com/cvent/models/components/EventSurveyResponseUUID.java:
id: a3ea29c4bd4a
@@ -12335,37 +12205,31 @@ trackedFiles:
pristine_git_object: 2c37498d3bfafffda851efd0273d87e8be50cbc3
src/main/java/com/cvent/models/components/EventWeblinksPaginatedResponsePaging.java:
last_write_checksum: sha1:3887b6f12e9c1572e5790fb9546d73b6c4affe00
- src/main/java/com/cvent/models/components/ExhibitorAddressJson.java:
- id: c3d93ee05510
- last_write_checksum: sha1:8ddb36ea0b7add995d9c452363049436ce6ddb55
- pristine_git_object: 6ff8df7a6d623ec8514b9861fca6bd3398751112
+ src/main/java/com/cvent/models/components/Exhibitor.java:
+ last_write_checksum: sha1:40bab429af40b0a31155713a106851ad91b318b9
src/main/java/com/cvent/models/components/ExhibitorAdminRequest.java:
id: 271b5083d6d3
- last_write_checksum: sha1:302a33edafc8790bda229dbe8280aa9e0328f74b
+ last_write_checksum: sha1:4b94ff324c39d29b18b08f08bd1930a9c5ddabd3
pristine_git_object: 3cc111d0133b59a68962f7ffa9df5e8672af00ab
src/main/java/com/cvent/models/components/ExhibitorAdminResponse.java:
id: dfb7b715e97d
- last_write_checksum: sha1:15c2a8592422804b4ac17635935adb1ccfdc70aa
+ last_write_checksum: sha1:a6ffd929912a7f319f835c2355d25a4b43058e53
pristine_git_object: 32a910b379ecca83e4f2abe9a98a8216dbd565e3
src/main/java/com/cvent/models/components/ExhibitorAdminsListResponse.java:
id: 26e973a84d2b
- last_write_checksum: sha1:5d57ae16ee4cc3cdd472336f05a7568c242092d2
+ last_write_checksum: sha1:0a819c8b9fcc990f5577a408790927e5585c7404
pristine_git_object: af9df820015e53d15caa732db4ecf41069325f70
- src/main/java/com/cvent/models/components/ExhibitorAnswerFormatJson.java:
- id: 134b930147d3
- last_write_checksum: sha1:3cb29e45ef2bbc4f3355e6486792533fe8bcebd9
- pristine_git_object: a17c62a75879a06af5f9fbd4e448b6bcec3779d2
- src/main/java/com/cvent/models/components/ExhibitorAnswerLimitsJson.java:
- id: 52b777d6f137
- last_write_checksum: sha1:2cb1a3bbfe29393a9e15d6c79ad3063f509d84e2
- pristine_git_object: 886c26854ebb98f83182bb19c7aaa46f50e40d8d
+ src/main/java/com/cvent/models/components/ExhibitorAnswerFormat.java:
+ last_write_checksum: sha1:ed272f7d058ee3775be4278ea7390fd0eac55025
+ src/main/java/com/cvent/models/components/ExhibitorAnswerLimits.java:
+ last_write_checksum: sha1:17a9772d33d7a5ae714d5b5f6f883a51fd9fe050
src/main/java/com/cvent/models/components/ExhibitorAnswersRequest.java:
id: 080071212a8e
- last_write_checksum: sha1:c6c3d33a0d74c30ce258e58baa68bf7a487b41ae
+ last_write_checksum: sha1:aa2256b80d6e68679b93734ea6649823120c4208
pristine_git_object: aeb769ec76f1a99ebf395bd36e84b9ac5b685a01
src/main/java/com/cvent/models/components/ExhibitorAnswersResponse.java:
id: b65d8c6199a3
- last_write_checksum: sha1:400d6102f871cc2cf819c47a7d7dab26fd7fa29a
+ last_write_checksum: sha1:00ca134186c9d070b9b9b1239e80346fd15ff964
pristine_git_object: 1b621975188f3687c91830dfba1d850a8e37a732
src/main/java/com/cvent/models/components/ExhibitorBannerLogoFile.java:
id: e7fd0e65d068
@@ -12377,7 +12241,7 @@ trackedFiles:
pristine_git_object: ac72e9ac1f3a2739f3497a3d8add88117810edd7
src/main/java/com/cvent/models/components/ExhibitorCategoriesPaginatedResponse.java:
id: 72c9a5dda2b1
- last_write_checksum: sha1:040fcec9b6f8f57dd517a3362ae4682b0a9ebee9
+ last_write_checksum: sha1:7a6d882be035c8d490d65d62c900cbd7e094da67
pristine_git_object: 249a30b9bfda5c3d02e0b2fda1545927e3594f26
src/main/java/com/cvent/models/components/ExhibitorCategoryBannerFile.java:
id: 4c69bd5e86b7
@@ -12387,17 +12251,15 @@ trackedFiles:
id: fb04b28c2b26
last_write_checksum: sha1:bb230a258386fa39f7f784d0ae16107bf8117600
pristine_git_object: 88ec15587155eaf34438cb5966de1e2cf47d2689
- src/main/java/com/cvent/models/components/ExhibitorCategoryIdJson.java:
- id: 7a7e2022d100
- last_write_checksum: sha1:4682ffb30f3419abdc7c25761e1f670db6180eca
- pristine_git_object: 153ca25ea9c28f1446db4cb578a0744cb2dae624
+ src/main/java/com/cvent/models/components/ExhibitorCategoryId.java:
+ last_write_checksum: sha1:43e507bc0ab02c6f6ebd921b735d01075d4d00c9
src/main/java/com/cvent/models/components/ExhibitorCategoryIdListResponse.java:
id: 7f0b9fd9abec
- last_write_checksum: sha1:0b3ebcfec07f8fb9754f5c9c327d474dc31c2017
+ last_write_checksum: sha1:b70a6c9b8b43b6c63e157c38a7b8cc06cc6c0b5f
pristine_git_object: ac9f362479c72941272138ec80ef040bc855d47a
src/main/java/com/cvent/models/components/ExhibitorCategoryRequest.java:
id: 7ce608752bd9
- last_write_checksum: sha1:3786c45901f46ff6abcab4dc28a4dc55a2a1ff4c
+ last_write_checksum: sha1:9008b9419b46f0022f8f08eaaca034d05d20755c
pristine_git_object: 62c58cf3eb21dbfd6690d25cb17654d7790febc4
src/main/java/com/cvent/models/components/ExhibitorCategoryRequestType.java:
id: 7ceea87d2a3b
@@ -12405,7 +12267,7 @@ trackedFiles:
pristine_git_object: 8db9ac4d6fc85ce83f093004523c3c42f14b61ed
src/main/java/com/cvent/models/components/ExhibitorCategoryResponse.java:
id: 0e8e4d4d257b
- last_write_checksum: sha1:ed144652a86155fd892a25113ffa3f170380afdb
+ last_write_checksum: sha1:be7a7d351d70f0112257e05eee33d0e1651633ca
pristine_git_object: cc33abbb5472d580085d0edfaffce7205cf3865b
src/main/java/com/cvent/models/components/ExhibitorCategoryResponseType.java:
id: 010c800ff22b
@@ -12413,59 +12275,51 @@ trackedFiles:
pristine_git_object: 03a3a8c60a59dbb69dd7838f647d91a686f612e8
src/main/java/com/cvent/models/components/ExhibitorDocumentOpened.java:
id: b5f9814318cf
- last_write_checksum: sha1:31db9ac459295145c255ba8628030fc2ca222378
+ last_write_checksum: sha1:7dfc2458bb278a96b9d6f8696c2108f85927829c
pristine_git_object: b624753b6b53d3787ce3c3d37a6317ffd6cbf98c
- src/main/java/com/cvent/models/components/ExhibitorIdJson.java:
- id: 35b214841c62
- last_write_checksum: sha1:7a07b46f20fd2eb67736535e3b6c72bce3bc9813
- pristine_git_object: 2d3e921d22495ab444a78d804595f4273610e922
+ src/main/java/com/cvent/models/components/ExhibitorId.java:
+ last_write_checksum: sha1:27795764f5ae9e8e3adf2651e8ff4db912d2dcc4
src/main/java/com/cvent/models/components/ExhibitorIdListResponse.java:
id: 4b789cb482fc
- last_write_checksum: sha1:4d5099181934362dbcda6b2d8324240fcbcf5782
+ last_write_checksum: sha1:c257f529dd1ea43edfc21aa880a0fb17af08b6e6
pristine_git_object: 4fda4c7a10fee9398c7dfb48832942c1cbecffbb
src/main/java/com/cvent/models/components/ExhibitorJson.java:
id: 9d0b16d9dda0
- last_write_checksum: sha1:b745406859f550ab441eeed77bf94e6550a91740
+ last_write_checksum: sha1:7bc219caa1e4e2282680791c076541980154118d
pristine_git_object: a0cc43030560ee25ae3a29f29eaabf024b32bc42
- src/main/java/com/cvent/models/components/ExhibitorJson1.java:
- id: 0297a0860b96
- last_write_checksum: sha1:87cc5757362061fb039c2fd99512a7ef082c042b
- pristine_git_object: 92ee80dd09d0a672a92c2e8649479e3552d70bc2
- src/main/java/com/cvent/models/components/ExhibitorQuestionTypeJson.java:
- id: c0f6fac272dd
- last_write_checksum: sha1:5affb2d1da632d9b7902a1f904c75bd2a8c98d4b
- pristine_git_object: fb25afbd5bdc671667078e139a6888fd2f60cf99
+ src/main/java/com/cvent/models/components/ExhibitorQuestionType.java:
+ last_write_checksum: sha1:479687548a4a2167fc84cb865ce9147b37e065a0
src/main/java/com/cvent/models/components/ExhibitorQuestionsResponse.java:
id: e475d2862c67
last_write_checksum: sha1:3f73c9c40396d9cba194cee793a6fbe3ecae990b
pristine_git_object: 49fd2f6f34a117aae2abbd575d6036b9d7a50553
src/main/java/com/cvent/models/components/ExhibitorRegistrationPackListResponse.java:
id: e63788d1e63d
- last_write_checksum: sha1:099012b5e03bbe8caddbe12631ab4e1f3f0b656d
+ last_write_checksum: sha1:1fae6e62f9af0fc7e171ae279504da4e8791267b
pristine_git_object: 18ba3342f9b8fd609ee8c978a1dfd9953a987be8
src/main/java/com/cvent/models/components/ExhibitorRequest.java:
id: b35b33ec27cb
- last_write_checksum: sha1:7a40bc90a24e7683b27aea08da352b33508682dd
+ last_write_checksum: sha1:dcfbdc496e67c20ab3a0540a1af67494edae47db
pristine_git_object: 2e296dfbe718594517a5156b7468530f72a7a17b
src/main/java/com/cvent/models/components/ExhibitorResponse.java:
id: d7937d1f8730
- last_write_checksum: sha1:f9d9a053f411e5945c77f092b1ab76582a3fb2ad
+ last_write_checksum: sha1:321854785dc9e894cb652bc27b199bbea955ce9e
pristine_git_object: 556699e2ff65fc913e44e892259d475b30126cf7
src/main/java/com/cvent/models/components/ExhibitorSocialLinkOpened.java:
id: 29d9942b1df5
- last_write_checksum: sha1:e9f4bb8917a9f61439c3956ea5ee7bd4f46e1fb1
+ last_write_checksum: sha1:b2cb44353bd372a4527bd08dceb027fd6aff8f2d
pristine_git_object: b67c3817339bcf87235903742d3d3b9539909f8e
src/main/java/com/cvent/models/components/ExhibitorViewed.java:
id: 3e430b98c4c9
- last_write_checksum: sha1:c411308f14135c9bfa59a1976f92c99604ef37c7
+ last_write_checksum: sha1:aebd8e571035e1ef80d1bd56c0c5558c12fc2fc0
pristine_git_object: 1ec71cdd6347d07cb0d50df381efb7c24d3c798d
src/main/java/com/cvent/models/components/ExhibitorVirtualBoothJoined.java:
id: 4040da8fefb1
- last_write_checksum: sha1:293e81b3126d09194e4b643004aebb3e92d853d1
+ last_write_checksum: sha1:e333a56cc6f9fe4c23cbc81083b5eff27de27eb1
pristine_git_object: d1eaacf18311e38f9229a7670d0f662c63df8cde
src/main/java/com/cvent/models/components/ExhibitorWeblinkOpened.java:
id: 1e15a559b249
- last_write_checksum: sha1:5fc3924750534fc4978d0548d79c29993b4681c5
+ last_write_checksum: sha1:a3b480aadf6bf7114cff6d03ab44a14611be245b
pristine_git_object: 929e269b0696233d3e8550135ba47c66cb3ec779
src/main/java/com/cvent/models/components/ExhibitorsEventCopyOverride.java:
id: 82add8fdca37
@@ -12473,7 +12327,7 @@ trackedFiles:
pristine_git_object: 16aacc9cbe828617f4aa32e0640b427900245e65
src/main/java/com/cvent/models/components/ExhibitorsPaginatedResponse.java:
id: c51d324e955f
- last_write_checksum: sha1:1ff59b57ef6d4fe583b966a0bbf297f7ccef60dd
+ last_write_checksum: sha1:eb641ca9686acc1c94cdae54e2c3ac746dd28ea4
pristine_git_object: dbb7dfe6804b829f2e84fe5584bccb815b6e845c
src/main/java/com/cvent/models/components/ExistingAdmissionItem.java:
id: 9c1ce77b9ca0
@@ -12489,7 +12343,7 @@ trackedFiles:
pristine_git_object: be8678f4998d7df7fe7937fa0f679a7ea603564a
src/main/java/com/cvent/models/components/ExistingAudienceSegment.java:
id: 82a4df73d052
- last_write_checksum: sha1:4057ff9673a07fb7ca15fef0b0b3bf46105197cf
+ last_write_checksum: sha1:0b2b06cb443d73ad53402e904d21b64b765c8664
pristine_git_object: e52884aeded2a8216df853f4c60d08772aff029d
src/main/java/com/cvent/models/components/ExistingAudienceSegmentCreationTypeJson.java:
id: 27b16bf09029
@@ -12507,18 +12361,10 @@ trackedFiles:
id: 820cd7101537
last_write_checksum: sha1:b6d87e978a6217145d070087ba1f7c91935d1316
pristine_git_object: d20825ccce7338ba95a50a926096d91d8fbf073f
- src/main/java/com/cvent/models/components/ExistingBoothStaffJson.java:
- id: 4c8985cc8861
- last_write_checksum: sha1:5cdfd25b132d0cbcb5ebda3b512940edf65ef67d
- pristine_git_object: f5ad9e0652aaaae2f4e14cd248d42e923d3d72ff
- src/main/java/com/cvent/models/components/ExistingCapacityJson.java:
- id: 37dda59b9c90
- last_write_checksum: sha1:e1c05ce4036c5f44549a6dbb8eb15820d66fe430
- pristine_git_object: e0dc09b4e8e6e902ec61d224fe9c268236c6fe73
- src/main/java/com/cvent/models/components/ExistingCapacityJsonRegistrationType.java:
- id: 80701308f6fe
- last_write_checksum: sha1:4ec21eee738338c3e6543b3832793b5f4cfba6ed
- pristine_git_object: f86bc5c09edd21af0eb1a2cb6fb6095cc0efbaa9
+ src/main/java/com/cvent/models/components/ExistingCapacity.java:
+ last_write_checksum: sha1:990bf51cdaf231915ee99cf2c19dcc92afb101fc
+ src/main/java/com/cvent/models/components/ExistingCapacityRegistrationType.java:
+ last_write_checksum: sha1:7d52cb505ca4d3acb2c927b89b4c4fefee4815d5
src/main/java/com/cvent/models/components/ExistingCustomField.java:
id: 4a88a2a742c2
last_write_checksum: sha1:c976c72862170c1d1848cf8c20f24a708c74a1e6
@@ -12567,77 +12413,39 @@ trackedFiles:
id: 917a54d7da32
last_write_checksum: sha1:bbf5c95f8c9ae64470efb7fe2ad0f1fac1b9e08d
pristine_git_object: 9e153de03eee9f8c02e7472910c4560dd9aaed3a
- src/main/java/com/cvent/models/components/ExistingEliteratureRequestDataJson.java:
- id: d110f1942800
- last_write_checksum: sha1:b7ad1490939fc14827db2f794729a34a91586378
- pristine_git_object: 052224d4dd7446e799c2e3d4844f6094ec483255
- src/main/java/com/cvent/models/components/ExistingExhibitorAdminJson.java:
- id: 498824a62538
- last_write_checksum: sha1:5c4888c67ad5e0fb583881c5e42a3e6ba8167f8f
- pristine_git_object: 9b67954c0a88e82eb22c906bc65951b15e0acf03
- src/main/java/com/cvent/models/components/ExistingExhibitorAnswerJson.java:
- id: b72b142c5c59
- last_write_checksum: sha1:4eb98376c43df9dd851fe01235ea4a5e53f12367
- pristine_git_object: 1c4f15e2c210605ed0657ec359f1db726f6df310
- src/main/java/com/cvent/models/components/ExistingExhibitorAnswerJsonInput.java:
- id: f646a1f723a0
- last_write_checksum: sha1:52818e2510437cee87aa086658ec01d4b464e039
- pristine_git_object: 9909f1b77809f1bdd36b186c689f291e0979b4ae
- src/main/java/com/cvent/models/components/ExistingExhibitorCategoryJson.java:
- id: 166b8adad3b1
- last_write_checksum: sha1:a07ba225877a1d1ac9351933ed84e3bda1eb5469
- pristine_git_object: c3eb6caa1304f7c0524d97a53c95e8a635bdd318
- src/main/java/com/cvent/models/components/ExistingExhibitorCategoryJsonType.java:
- id: 53b96884655d
- last_write_checksum: sha1:2682df7c876ec1751a264735dc08dc9938fdfd82
- pristine_git_object: f13d1fba46b7370294ef2ee200ef088251cb518e
- src/main/java/com/cvent/models/components/ExistingExhibitorJson.java:
- id: ee43f91be943
- last_write_checksum: sha1:243af1af9182cfdbf071eb17c816c564065fbb66
- pristine_git_object: 3f5e0909396c79ae12a0671ee15f10269d68c3b9
+ src/main/java/com/cvent/models/components/ExistingELiteratureRequestDataForLead.java:
+ last_write_checksum: sha1:185a510a880bdb4073347f80da43a5c450fb0b54
+ src/main/java/com/cvent/models/components/ExistingExhibitorAnswer.java:
+ last_write_checksum: sha1:a64bf8c89a69b7a15e813b919b711c9afc4886cd
+ src/main/java/com/cvent/models/components/ExistingExhibitorAnswerInput.java:
+ last_write_checksum: sha1:636bf56d499d378e7dab0499481264cc38fa3807
src/main/java/com/cvent/models/components/ExistingExhibitorQuestion.java:
id: 90d58d855cb3
- last_write_checksum: sha1:d85eeff1e42a5717fd4a56c64553df6b6f466fc2
+ last_write_checksum: sha1:231a0a99a507236fdca14415011564bb16d7fc68
pristine_git_object: 3b4a4b6fd109a5d266b44e6390c0560b0d6182ba
src/main/java/com/cvent/models/components/ExistingFile.java:
id: 36bfcded78ea
- last_write_checksum: sha1:5b5960548dde1d9b94be07a33d63d5a2eeae966d
+ last_write_checksum: sha1:400088884ccf1dac5e81c92e9ef0beced0b60318
pristine_git_object: 4a31b2c63f939e105eea07bd0384c509c57166a8
src/main/java/com/cvent/models/components/ExistingHub.java:
id: 53ba93218b9b
- last_write_checksum: sha1:c940c2cb35910e614997df62a4915b188accd3fb
+ last_write_checksum: sha1:07cdea82a390ebf7c808c2aaa64b5e5648154d3e
pristine_git_object: ecb98c89ec98dfa49d658d364c87c505c79fc9f1
- src/main/java/com/cvent/models/components/ExistingLeadJson.java:
- id: 6ebb7d46ead3
- last_write_checksum: sha1:2b19545ab6d1562bdd3905240f8475f9783e0598
- pristine_git_object: 1286b695794b3c5741e12283fe70512b65395db4
- src/main/java/com/cvent/models/components/ExistingLeadJsonType.java:
- id: 0519ac6719ea
- last_write_checksum: sha1:bc5eeefcc6487a518e7fb056943a966c270419b5
- pristine_git_object: 428c710e768538d98861b1e50185145866d2c396
- src/main/java/com/cvent/models/components/ExistingMemberJson.java:
- id: 40d7533cf928
- last_write_checksum: sha1:f2a22c299f1310d5787aadbc0fe810e51c543349
- pristine_git_object: fd28191688942da3036e90f2768d9b07e7a953f6
- src/main/java/com/cvent/models/components/ExistingMemberJsonLink.java:
- id: dfe91663489e
- last_write_checksum: sha1:f970f6596eb7184ae7e02c6eddca21d53ad89867
- pristine_git_object: bdde1c1b95fdfa8544d1f3b75b3855a73830f6f5
+ src/main/java/com/cvent/models/components/ExistingMember.java:
+ last_write_checksum: sha1:804bd24672052acef0d4d5b005a0550ef7ca14cd
+ src/main/java/com/cvent/models/components/ExistingMemberLink.java:
+ last_write_checksum: sha1:4a40218c6d78e1d708a8b33c77c3cbe2e2fc4d09
src/main/java/com/cvent/models/components/ExistingPlayer.java:
id: ec4b1cc739c0
last_write_checksum: sha1:1923632aaa4f535583da9b7985b632c80a513131
pristine_git_object: dfbd05c4de4d60d914649125e464e17375061370
- src/main/java/com/cvent/models/components/ExistingRegistrationPackJson.java:
- id: 49efe3539ff8
- last_write_checksum: sha1:84a4b13022504252ded678a0dc414264195ce8c9
- pristine_git_object: c3f998717c6a8c8567094c381fdd6388e8297a93
src/main/java/com/cvent/models/components/ExistingRegistrationPathJson.java:
id: ae741e6edc9e
last_write_checksum: sha1:fb03069fda5556f887536bda46858096f8eb4f8f
pristine_git_object: bb91389e3f566be9803cb6f8d4538665251dec96
src/main/java/com/cvent/models/components/ExistingRegistrationTypeWithAssociatedRegPathJson.java:
id: 5afa178bb939
- last_write_checksum: sha1:7bc9f7f12137bacf72ee6a425d14a3f1bc3f1f5a
+ last_write_checksum: sha1:4f265fb21d5e67def5df174bb08536d00aabf401
pristine_git_object: 02682cb2a78284f241a7956fcb3bda377c10f4af
src/main/java/com/cvent/models/components/ExistingRegistrationTypeWithAssociatedRegPathJsonEvent.java:
id: 44bc670b5a1c
@@ -12693,7 +12501,7 @@ trackedFiles:
pristine_git_object: f204782b984cccf21a000a428c457d776ded4b11
src/main/java/com/cvent/models/components/ExistingSponsorshipLevel.java:
id: f1bce41adc84
- last_write_checksum: sha1:514d517cc8490f2821bd286ce5556b63ef3f4e84
+ last_write_checksum: sha1:b3cdf0432d9346af3d0943ec1ab57dd7f66fdc86
pristine_git_object: 589fcef577097aa0033a549918719a7a110ef7fd
src/main/java/com/cvent/models/components/ExistingTableWithSeats.java:
id: 5a6175928799
@@ -12737,7 +12545,7 @@ trackedFiles:
pristine_git_object: 12e344efb46fef052e6c22e697d3d73651961e39
src/main/java/com/cvent/models/components/ExistingWeblink.java:
id: 4483ffb9a015
- last_write_checksum: sha1:bdc22215272c450ddd200596bcd4bc0aea408cda
+ last_write_checksum: sha1:96d7584b855db5663a252058794189370e7b9c57
pristine_git_object: e0a97f4f1b34ed277b95877362b41b5e43818f36
src/main/java/com/cvent/models/components/Expand.java:
id: d6ed54071997
@@ -12851,11 +12659,11 @@ trackedFiles:
pristine_git_object: a3bd6311615a659cf871d07da28382348ab2c604
src/main/java/com/cvent/models/components/FeatureTypeJson.java:
id: 05f8db3a8d08
- last_write_checksum: sha1:72a01c4c041f48e8842b829357f5eb37f1f3033f
+ last_write_checksum: sha1:68c6d0a2ac4a2882383f6745021645dbd98050ae
pristine_git_object: 7074c90657d25b4208b0af53b4675088c2011d47
src/main/java/com/cvent/models/components/FeatureUpdate.java:
id: 42a8aae47deb
- last_write_checksum: sha1:9ba55bfba12945f40af96fa666ccae530bc84d17
+ last_write_checksum: sha1:090b359992415c83d2d0c174df4e4fe2ecb201d9
pristine_git_object: 485d8a6a69e09fdd7b91bfcc9ddf0a3998758c34
src/main/java/com/cvent/models/components/FeatureUpdateConfig.java:
id: e68dcfd84bc0
@@ -12875,15 +12683,15 @@ trackedFiles:
pristine_git_object: 3d102c6f1c7c81e153f15a0c8c09dc9dcfae03c6
src/main/java/com/cvent/models/components/FieldJson.java:
last_write_checksum: sha1:d860afbff909920a6ffb08db53d5c78fc9af6cf2
- src/main/java/com/cvent/models/components/FieldJson5.java:
- last_write_checksum: sha1:14f53efd2bbd86e396ec448a7e44d75a07a55403
+ src/main/java/com/cvent/models/components/FieldJson3.java:
+ last_write_checksum: sha1:461e8ad8747834542692f617c00bd4a2bf9c62bd
src/main/java/com/cvent/models/components/FieldTypeJson.java:
last_write_checksum: sha1:e4b35bbfed6a3c9f59327fdf7e33534ff00a0e0f
src/main/java/com/cvent/models/components/FieldTypeJson2.java:
last_write_checksum: sha1:6e979a81706d5184a0604d765dd2fc33f349e7dc
src/main/java/com/cvent/models/components/FileInput.java:
id: a286ac4e1af0
- last_write_checksum: sha1:e7a2b577ad863919606a4898cb57dbfdb41285a6
+ last_write_checksum: sha1:ded7b0e4c6119bae40baf092b2ebf865b92bdb9b
pristine_git_object: 8863c4aa0d630b0df0d22df23bde910f534d0b46
src/main/java/com/cvent/models/components/FileLinkJson.java:
id: 1576ea25515a
@@ -12969,7 +12777,7 @@ trackedFiles:
pristine_git_object: 61cb7d3d729f031df15b14fbd297be76a61e8a94
src/main/java/com/cvent/models/components/GuestJson.java:
id: 49a64b4b6395
- last_write_checksum: sha1:70b1050704e269fb9ee4805e993e3c766acf9dbc
+ last_write_checksum: sha1:c4eae4fdb2408c4f3978dbf675744f559302198b
pristine_git_object: e8eb3cd8c2f3dc3a062ba593070686aa0b0f3687
src/main/java/com/cvent/models/components/GuestRoomOccupancyJson.java:
last_write_checksum: sha1:0a7d8506aec95215ee54879965f92b58a8e3a1cf
@@ -13061,7 +12869,7 @@ trackedFiles:
pristine_git_object: 7c3e9273254d5c9af8c01921c4dde2ad3634a1f5
src/main/java/com/cvent/models/components/HousingEventHotel.java:
id: 85a0954465ec
- last_write_checksum: sha1:2e3b7c63f741a6e1035df5aff80ec5d36a999ae5
+ last_write_checksum: sha1:94c399be8f2e7ea58f41893b820a857b07451b7b
pristine_git_object: cf2b7ebcb09d07b90662994eb92e8290b91a6fee
src/main/java/com/cvent/models/components/HousingEventHotelsList.java:
id: 32055b1d82d1
@@ -13083,45 +12891,27 @@ trackedFiles:
id: c63814e15f5c
last_write_checksum: sha1:2fb198fcdac10422d689af28c86cbefbe673310d
pristine_git_object: 0ab5e75720a1814c56f7928eeda9a55e50e6b135
- src/main/java/com/cvent/models/components/HubBackgroundJson.java:
- id: 4045100e476a
- last_write_checksum: sha1:f29051ab9a79299e400d3d73c904507efc765600
- pristine_git_object: d79a2306d085a4808287ca392acc4a8f5e03fe1a
- src/main/java/com/cvent/models/components/HubCalendarJson.java:
- id: 963350f3138c
- last_write_checksum: sha1:9b5674a371cdf541280e365fe3132e7bcdbbab61
- pristine_git_object: 59cbc06d1e0c68c167a9da35ee1a1a2e4b658136
- src/main/java/com/cvent/models/components/HubColorsJson.java:
- id: b315350be0f7
- last_write_checksum: sha1:77d53f1e5e424b5cf9de305da060e1917e0c8f70
- pristine_git_object: f4b5f87f6d13b73f98d6ca6e12ed3457bcbd9ced
- src/main/java/com/cvent/models/components/HubFontsJson.java:
- id: d3b48534bb41
- last_write_checksum: sha1:b1a5d18a2d8a07abb68836ad957f36c9a9390d68
- pristine_git_object: fef5c8c73d84d8f8e045fec864af373ea4848f56
- src/main/java/com/cvent/models/components/HubLoginJson.java:
- id: b3c89c9c5e88
- last_write_checksum: sha1:a90d83761035f7c5a96642e4068d9e4f39f5eb74
- pristine_git_object: 20434af2e80ff2b976713124638564a9c7067816
- src/main/java/com/cvent/models/components/HubLoginJsonType.java:
- id: c6c30abae8fe
- last_write_checksum: sha1:c4aba7594dd72b61d5b450c396746fad36de8bec
- pristine_git_object: 43bfa0134eb43e0c4ef075856274e5827e7739d3
- src/main/java/com/cvent/models/components/HubLogoJson.java:
- id: 922454431c8b
- last_write_checksum: sha1:dbf422603d72c45c9ddea726c0a25ca19f817391
- pristine_git_object: 000ef0be599576850948906f8a877eec6597c5ea
- src/main/java/com/cvent/models/components/HubOwnerJson.java:
- id: 249b4d8660c7
- last_write_checksum: sha1:d2639282aa4d46bf074953e9e894511b1d430a59
- pristine_git_object: e302da04046f8807508c44d7b4c7a8edd4f34041
- src/main/java/com/cvent/models/components/HubStatusPropertyJson.java:
- id: 829d3e9bc13f
- last_write_checksum: sha1:d3e7185b9a9502329ad5010cc4413fda3f9d9188
- pristine_git_object: ef8e84045ba1ddea27c5dec8e9e695df4ab9e50f
+ src/main/java/com/cvent/models/components/HubBackground.java:
+ last_write_checksum: sha1:8ef3b2097f34999f30f71d967f34eed5fd910586
+ src/main/java/com/cvent/models/components/HubCalendar.java:
+ last_write_checksum: sha1:ab7bd7a288ee3c5928845893ffde4cd16492f3c9
+ src/main/java/com/cvent/models/components/HubColors.java:
+ last_write_checksum: sha1:fbae62db11b26788285d9e0926dac6b499f6c350
+ src/main/java/com/cvent/models/components/HubFonts.java:
+ last_write_checksum: sha1:7dda614489feff0bf23d36f3464ba9b097d0a2a7
+ src/main/java/com/cvent/models/components/HubLogin.java:
+ last_write_checksum: sha1:3384ee98c67955d57dce3e51316ca1ae3b60dbd4
+ src/main/java/com/cvent/models/components/HubLoginType.java:
+ last_write_checksum: sha1:c2e0b9f7f5d7baef230e7e92c5e6971d93a630da
+ src/main/java/com/cvent/models/components/HubLogo.java:
+ last_write_checksum: sha1:d4910af0e5df0031a5410139229c7d42c32469f2
+ src/main/java/com/cvent/models/components/HubOwner.java:
+ last_write_checksum: sha1:6c1555d019bc03db7d7eb3e13aa9e306b2b64374
+ src/main/java/com/cvent/models/components/HubStatusProperty.java:
+ last_write_checksum: sha1:a40062c746f82ad74a0c75d1fa985e4bde1d270f
src/main/java/com/cvent/models/components/HubsPaginatedResponse.java:
id: 8cd59cbf84a6
- last_write_checksum: sha1:8ed6c6fe778ea2f296287cf2a4478b67efd144f5
+ last_write_checksum: sha1:346c118afe8d785ef31f5d9ea3776d14196f5d06
pristine_git_object: f1f333968a3fca81663dcb738957e6d2bb10d271
src/main/java/com/cvent/models/components/IdJson.java:
id: ef21acf10aa4
@@ -13155,7 +12945,7 @@ trackedFiles:
pristine_git_object: 66df3e25fab44d0483abefafa3c90649cb9faebf
src/main/java/com/cvent/models/components/InvitationListPaginatedResponse.java:
id: 6ce7f2a1dfa2
- last_write_checksum: sha1:b1f1f5747161ac6c99624ebd500cb27699246067
+ last_write_checksum: sha1:408c7e6bd4a5510cc2f289ea16ae2ba3ebe05bc6
pristine_git_object: 9d9219a0252a55b7c229f1a900f51ea09802f2fb
src/main/java/com/cvent/models/components/InvoiceFile.java:
id: 6b813d4011fa
@@ -13203,57 +12993,31 @@ trackedFiles:
id: 3369f2fb3efe
last_write_checksum: sha1:a468f37dca8956ba1c32ffcf098394e04b7e20ea
pristine_git_object: 7ffa9c83f07937253f7c5a0f2222cfd63256c57d
- src/main/java/com/cvent/models/components/LeadAddressJson.java:
- id: 8aa024564a96
- last_write_checksum: sha1:c33caca18159c1775ef1b712a67fc0737e6d29df
- pristine_git_object: 6a93cd39870409edf1f95bb65e2b4fe16fdda034
- src/main/java/com/cvent/models/components/LeadAppointmentJson.java:
- id: 8cda89033bc6
- last_write_checksum: sha1:48f9273cb3e4b3890635ea8be65d3769a9bb97fe
- pristine_git_object: bc310e07adf57aa574b25c976946a11a47f0dda6
- src/main/java/com/cvent/models/components/LeadAttendeeJson.java:
- id: b59e3e64c5f4
- last_write_checksum: sha1:224a3eeb6aa2b152df2466b8ce96296d65c2d5bb
- pristine_git_object: 0dc860b85e6b24a7a2926d712fcf8ca3e08a1e0d
- src/main/java/com/cvent/models/components/LeadBoothStaffJson.java:
- id: 3eaff2090b85
- last_write_checksum: sha1:c5641b5f66e79516fbaa0ea2db5d5228f19b60c3
- pristine_git_object: 7126b026afb7f95c999c8a0eb4ad18e6b261979d
- src/main/java/com/cvent/models/components/LeadDeviceJson.java:
- id: 45c09cf17088
- last_write_checksum: sha1:58dce228ac20102205a02bf1c4ce5cc465cb5e09
- pristine_git_object: 2e6c064f9f4e7b87deb2ee01f880f79ab9e57fee
+ src/main/java/com/cvent/models/components/Lead.java:
+ last_write_checksum: sha1:ff0374da61ae351ec3f5d11a4ac735266391f4e5
+ src/main/java/com/cvent/models/components/Lead2.java:
+ last_write_checksum: sha1:e9bec2f454bffd321c8d4e27531924389769b2c1
src/main/java/com/cvent/models/components/LeadInboundCreated.java:
id: ca872581fd0c
last_write_checksum: sha1:5922a6529160cc1f9581437a84891b0cc2032854
pristine_git_object: f50e7665db4f301513a6e02ca1f837154ff232cc
- src/main/java/com/cvent/models/components/LeadJson.java:
- id: ba1559892144
- last_write_checksum: sha1:55f6e9f0d80ad9d5306033b3aa56ea2737350da3
- pristine_git_object: 0fc6fd3d9e2c8006724ae33abffd5cb56a1c09c7
src/main/java/com/cvent/models/components/LeadObjectJson.java:
id: 20946f61af70
last_write_checksum: sha1:922bef627a132a6fa3067af0cac5cbfd870d9b4a
pristine_git_object: f7573ec8803395b2580284fb0d985df3d87ab1d8
- src/main/java/com/cvent/models/components/LeadQualificationAnswersJson.java:
- id: deeebd324d0b
- last_write_checksum: sha1:459a774f670c5ca767b314b03ffbe68ea5f5358e
- pristine_git_object: e0a9a06d11edd5bd60bc7859289c8d00cb4d2d5e
+ src/main/java/com/cvent/models/components/LeadQualificationAnswers.java:
+ last_write_checksum: sha1:ff0fb362ad24ae3810f10c1908aa0a2e05e187cd
src/main/java/com/cvent/models/components/LeadQualificationAnswersListResponse.java:
id: 48d0e73e6b6c
- last_write_checksum: sha1:2baa6d53d719bcba61d69ec8f4f8af2d9f1fb58c
+ last_write_checksum: sha1:6cc2cb474d6abea5a511873988df7e31cfe24b29
pristine_git_object: bfa51c9686d979b19b0cf9d82526c1c9d07f49a1
- src/main/java/com/cvent/models/components/LeadQualificationQuestionJson.java:
- id: 00bc7c407918
- last_write_checksum: sha1:b6821e62313b8dd40c0d632f234c46723ddd0ac4
- pristine_git_object: f9c34ad1f1d5ccd50a9a957d4bef54f1cc496264
- src/main/java/com/cvent/models/components/LeadQualificationQuestionJsonType.java:
- id: 6ee5696af70f
- last_write_checksum: sha1:58cc8077188a96ef824bac70825dbf5bd4757534
- pristine_git_object: 06abff216accaab9e64dc32b9dfb141e8c56ff4e
+ src/main/java/com/cvent/models/components/LeadQualificationQuestion.java:
+ last_write_checksum: sha1:7415da292fc98d938d83834f6fbadb36cff7dd66
+ src/main/java/com/cvent/models/components/LeadQualificationQuestionType.java:
+ last_write_checksum: sha1:fdea16cac6dcb58c131e2fc8f15d5dc69df832b3
src/main/java/com/cvent/models/components/LeadQualificationQuestionsListResponse.java:
id: 59d5524050c9
- last_write_checksum: sha1:ba2b4fb9cc9ae3edce0ade2ca10bf91adf84aee8
+ last_write_checksum: sha1:b0eb4e6a61623e3b128cf1c2585e075ec5761e04
pristine_git_object: 2f9fd482afe257b69e0332416046fe04ce1bc19c
src/main/java/com/cvent/models/components/LeadQualified.java:
id: 1bcd11990e74
@@ -13272,21 +13036,25 @@ trackedFiles:
last_write_checksum: sha1:f8dbd3ce6ed5736d3d97a60ef6d62f7d6c8072c7
pristine_git_object: 7ee0b9a1bb80355595014d774e72d9459e47c1b2
src/main/java/com/cvent/models/components/LeadSource.java:
- last_write_checksum: sha1:979d7b708f83e15bd0b20e51b3488210b4687ccf
+ last_write_checksum: sha1:4a916ea870c045067b221aef3c1d1e30df3b72e7
src/main/java/com/cvent/models/components/LeadSourceExpand.java:
last_write_checksum: sha1:178b16403e6637b2865c96efd00e9ce7ad721ef4
src/main/java/com/cvent/models/components/LeadSourceJson.java:
- last_write_checksum: sha1:5a72e0f4fe2083c973faca95f3a7b6aa2d974bcf
+ last_write_checksum: sha1:7f525bc0dfa5e69d57a3410452bee84d997bd4c1
src/main/java/com/cvent/models/components/LeadSourceSectionJson.java:
- last_write_checksum: sha1:2552c424bfa15ea72129688b8d59c14e1cbbb435
+ last_write_checksum: sha1:0969b3afdffca42983537d1008da4a5f5f8a6156
+ src/main/java/com/cvent/models/components/LeadType.java:
+ last_write_checksum: sha1:734f96d29b181824edf0ae303bc982bb338f1b54
src/main/java/com/cvent/models/components/LeadsPaginatedResponse.java:
id: b74cfbe118b9
- last_write_checksum: sha1:5a27f5d9c5404442e8aae1f30732f0a4e6e38aca
+ last_write_checksum: sha1:7626cda2027b6beab56fc2fa4cce81b9b0b0c163
pristine_git_object: c2522322c75823799c5f1cd93d40cdc49a15ad9b
src/main/java/com/cvent/models/components/LegDetailJson.java:
id: 3fce91a4dcca
last_write_checksum: sha1:eed97fcd537596a7705bcaa99378d583a4f6ca34
pristine_git_object: 40f5fcd09b6a81f7e2f70bcc9061f150ce575d6a
+ src/main/java/com/cvent/models/components/Link.java:
+ last_write_checksum: sha1:1c8f8298dd64bbaa6a35c13dc0c4dc27150fdae8
src/main/java/com/cvent/models/components/LinkJson.java:
id: 9d2576d08c43
last_write_checksum: sha1:e7aab9d367a93ce8e9f9514b44d197ed7bfe6852
@@ -13365,7 +13133,7 @@ trackedFiles:
pristine_git_object: da7c23f7d72a9fdc66ef4d6572a8574f720a70b6
src/main/java/com/cvent/models/components/MeetingRequestCustomFieldJson.java:
id: f9eda66a023c
- last_write_checksum: sha1:bb0c26d30d69cee6acc1907dd9a17947fc09016c
+ last_write_checksum: sha1:86c2cb43ba00a11a0cb5e9c0fc351c9624346b0d
pristine_git_object: de6b675d93b2c451ba7c75446585bda344825c92
src/main/java/com/cvent/models/components/MeetingRequestCustomFieldJsonCustomFieldType.java:
id: cb1e362b2f93
@@ -13389,7 +13157,7 @@ trackedFiles:
pristine_git_object: ee81b271d80792b8cab8dcb534e434604376d03b
src/main/java/com/cvent/models/components/MeetingRequestEvent.java:
id: 29ce38369fb2
- last_write_checksum: sha1:a2d5dd8264340f6f28e0d0778030f05c68f07d98
+ last_write_checksum: sha1:9388565b2a6fd48ff441c8a6186ee87332d39667
pristine_git_object: b2e640f488ec2bcc00474366906067ab97941f1b
src/main/java/com/cvent/models/components/MeetingRequestForm.java:
id: 5f1f300fb9c4
@@ -13409,7 +13177,7 @@ trackedFiles:
pristine_git_object: 485d838e651d0d3b1c2e0d7238eb5a54a892a513
src/main/java/com/cvent/models/components/MeetingRequestQuestionJson.java:
id: e6f739710a1d
- last_write_checksum: sha1:37117c3d5c8b3b25442efb1ad95b3ee7f1c9e337
+ last_write_checksum: sha1:340657daa4ced31b37d0b77bab9272a530d55030
pristine_git_object: 154716c27d9f38439816233e72f1d4bdd02ed6db
src/main/java/com/cvent/models/components/MeetingRequestUpdateJson.java:
id: 4bcb39291544
@@ -13593,7 +13361,7 @@ trackedFiles:
pristine_git_object: 14c4f9d0dacde0fb8b7e6e7a9227bee3a2320e81
src/main/java/com/cvent/models/components/PaginatedExistingMember.java:
id: 53a23450be3f
- last_write_checksum: sha1:ef71239019f4c932bda2aa999ceaa776fc7d6423
+ last_write_checksum: sha1:0b1e6a875f0f0eb00a9116b7aa24230cd86a5897
pristine_git_object: f885d9ba13ec5cb8af23dc607659cf0525aca277
src/main/java/com/cvent/models/components/PaginatedInternalDocuments.java:
last_write_checksum: sha1:b097db49c6725fa977b99c39504df82f396556fb
@@ -13611,18 +13379,20 @@ trackedFiles:
last_write_checksum: sha1:ce7aaa92e10189efc5d6881553b6d0a08a30ff49
src/main/java/com/cvent/models/components/PaginatedRfpSuppliers.java:
last_write_checksum: sha1:341c217375143d3c8357797af082b655d4274be6
+ src/main/java/com/cvent/models/components/PaginationLinks.java:
+ last_write_checksum: sha1:2a3605d8bd9785b2fef7fff127b7870bc9ccf1e7
src/main/java/com/cvent/models/components/PaginationLinksJson.java:
id: 27eb3cdf3167
last_write_checksum: sha1:8b1228070eb8ff0e1d409d1efc6d4ca45e1c5635
pristine_git_object: eaec4ac8c7ca6238dc9347926516dfeb0bda4117
+ src/main/java/com/cvent/models/components/Paging.java:
+ last_write_checksum: sha1:e76850bb1f7051aa25b010cb0e487978e8eec227
src/main/java/com/cvent/models/components/PagingJson.java:
id: d016efaa46c3
last_write_checksum: sha1:9be181a46b23dffcaf334830d8d4578518791dc6
pristine_git_object: a1b8f6ee45e2c4d9f4a8a3ff1c410f0799be6c14
- src/main/java/com/cvent/models/components/PagingJson25.java:
- id: c61e0a5ff21c
- last_write_checksum: sha1:11a78f5c811f7ba4cd40ce9350012df2efae2223
- pristine_git_object: 2e37e020682533d042ff6cde8be4a5192f0ca3e5
+ src/main/java/com/cvent/models/components/PagingJson23.java:
+ last_write_checksum: sha1:64af1541ca87cef586f7111e5323c5a10c847c9c
src/main/java/com/cvent/models/components/PagingNoTotalCountJson2.java:
last_write_checksum: sha1:03e48f599dbe14dbab836df7de03a4fb47f17717
src/main/java/com/cvent/models/components/ParticipantResponseJson.java:
@@ -13659,7 +13429,7 @@ trackedFiles:
pristine_git_object: f5fdaa6be16610e949a7e27933c1bc0b1ecf6089
src/main/java/com/cvent/models/components/PaymentInfoJson.java:
id: b65a46867a9c
- last_write_checksum: sha1:3650f3783a7398dd0acd112e3ccfd193166facce
+ last_write_checksum: sha1:7cccb1b5b3db92d80982d61d8e24253289f30977
pristine_git_object: a0568a28ce2ee5731c3c6393af2c811453f8e54e
src/main/java/com/cvent/models/components/PaymentMethodJson.java:
id: b0ed07ae9561
@@ -13815,7 +13585,7 @@ trackedFiles:
pristine_git_object: b70ceab651caaebef593ae4893244808926ef4d2
src/main/java/com/cvent/models/components/ProcessFormSubmissionJson.java:
id: 6fa0ec7e7763
- last_write_checksum: sha1:5e7207f697e7735480a153d66eb77a8aae8a67de
+ last_write_checksum: sha1:5e24e4aab296c5b6e1feefa8f62eeef1ee2e88b8
pristine_git_object: 25e6cb029ae844c724a0e17406633b271fbe4302
src/main/java/com/cvent/models/components/ProcessFormSubmissionJsonEvent.java:
id: a35b701ca35d
@@ -13893,7 +13663,7 @@ trackedFiles:
last_write_checksum: sha1:118b0bc06fb6e58bd48e7e432a979a28c07d9681
src/main/java/com/cvent/models/components/Property.java:
id: 567bc7eb2757
- last_write_checksum: sha1:ca96074083cd7f873b59116afd26a2640a3e68fa
+ last_write_checksum: sha1:dde912e7e35593b0ba25e99a13c0f306742d1aa9
pristine_git_object: fd060a93114f7aa404e864ce57e9581191970a3f
src/main/java/com/cvent/models/components/PropertyBrand.java:
id: 28af53cde515
@@ -13957,7 +13727,7 @@ trackedFiles:
pristine_git_object: c2aa94ab855a4a310a16a4a0fc3a56f13aea191c
src/main/java/com/cvent/models/components/PublicUsagePlan.java:
id: 226d53244494
- last_write_checksum: sha1:93878b03a54988e2ab654166a2761bdfc3c0ea19
+ last_write_checksum: sha1:ce21af2018b9702d46300a795f3a21e3a57a754a
pristine_git_object: d02aaa0f241c981f522aea98c11d6ff256dddd8e
src/main/java/com/cvent/models/components/QuantityItem.java:
id: f91216d09b57
@@ -13999,7 +13769,7 @@ trackedFiles:
pristine_git_object: 3c1dbcfabe70167ced16f1d9e8442d2929660d40
src/main/java/com/cvent/models/components/QuestionJson2.java:
id: e47ba8500232
- last_write_checksum: sha1:f138906e948bbd137122026d05fdd7b0272ff738
+ last_write_checksum: sha1:1d537481a4bf5090e5bb4c9fb7239703bbceb433
pristine_git_object: da9fe9b765b446858b2a0015141cd43e87ed8012
src/main/java/com/cvent/models/components/QuestionJson3.java:
id: a7228fc19243
@@ -14019,7 +13789,7 @@ trackedFiles:
pristine_git_object: a5966e52079f86f7772af75ddfa8eec31734029c
src/main/java/com/cvent/models/components/QuestionResponseJson.java:
id: 367db1380e8d
- last_write_checksum: sha1:c8b01d90ad77873ce4cfbf94ca2ae570a1ff48b4
+ last_write_checksum: sha1:9fe2891214b48418515cdf83716be0a02ac68706
pristine_git_object: 1f2dccf0140ab131d21233d0f91dadd9b42b314b
src/main/java/com/cvent/models/components/QuestionResponseTypeJson.java:
id: 862352208c7e
@@ -14131,11 +13901,11 @@ trackedFiles:
pristine_git_object: 11381f0ae40aebad166ad29477bbf40ebecf33d9
src/main/java/com/cvent/models/components/RegistrationPackRequest.java:
id: c1c50f445453
- last_write_checksum: sha1:4802942ec45939af343b541378e59e6dcbf8d6c8
+ last_write_checksum: sha1:828c2bbd45a680d102b1c47c46e005978bac80ee
pristine_git_object: 75348d28b685b41ae983d87f009b8355036a335a
src/main/java/com/cvent/models/components/RegistrationPackResponse.java:
id: 40cf5ab5672e
- last_write_checksum: sha1:8d235a5fecc789d031908fc5fc781a6bd67418fe
+ last_write_checksum: sha1:85b16b05b21308982cf7f398695adf66dd883fa0
pristine_git_object: 29f440c6daa352d0855c19b22af75654f7ae86ab
src/main/java/com/cvent/models/components/RegistrationPath.java:
id: a7f5a453dce6
@@ -14155,7 +13925,7 @@ trackedFiles:
pristine_git_object: b9cb4f962559b9c8b80949a31c6bd92b197d63bf
src/main/java/com/cvent/models/components/RegistrationTypeUpdate.java:
id: 9660b5a5a1bb
- last_write_checksum: sha1:aa2a53c0250bef37243ce005451f27343fe4598f
+ last_write_checksum: sha1:7655cadc2ff6aa7b3f26febcb5d4cbdf4777a210
pristine_git_object: 4bbf6d7ebfe28ccbe2eeb4ef56c262ae38c234f7
src/main/java/com/cvent/models/components/RegistrationTypeUpdateEvent.java:
id: a6e2e7a144a6
@@ -14163,7 +13933,7 @@ trackedFiles:
pristine_git_object: e1319e77225b31b39f92c973e074fccf77693af0
src/main/java/com/cvent/models/components/RegistrationTypeUpdateInput.java:
id: 9ffa830c23b6
- last_write_checksum: sha1:771c2adc59bb86e0ccc5dd8e5546be9051b2f3f8
+ last_write_checksum: sha1:5c2e00253f2306c999cd92ff7879b78c2145412b
pristine_git_object: b6b9cb9bae19f77fc950d47d35158fabfdf3763a
src/main/java/com/cvent/models/components/ReportingFieldJson.java:
id: b5460c913b44
@@ -14175,7 +13945,7 @@ trackedFiles:
pristine_git_object: 725ef2f28ea7b4ba4e745bb2436ac911bf3e7d4e
src/main/java/com/cvent/models/components/RequestedMeetingRequestQuestionJson.java:
id: 7f48842d70de
- last_write_checksum: sha1:852ead708a833e40f33b4b0bb2456a38ea0e524c
+ last_write_checksum: sha1:d37256fcd518d31c28a45e1282036e09988261ce
pristine_git_object: b58e5a89348032346677bcec68a2806ea236d280
src/main/java/com/cvent/models/components/RequesterSuffix.java:
id: 3698300ab58c
@@ -14187,11 +13957,11 @@ trackedFiles:
pristine_git_object: 079862314f9befe3881d9db0259bac9e0366db8d
src/main/java/com/cvent/models/components/ReservationGuestJsonInput.java:
id: 5983bbe58c90
- last_write_checksum: sha1:e84ec35d9070bdf53e9d68f0fc84652ddfa3e037
+ last_write_checksum: sha1:b44b544b83e4a355d2af12f83c497c9623906ded
pristine_git_object: 48c127f6d0b2df4d54dff4f66b79b63f6f932fdb
src/main/java/com/cvent/models/components/ReservationGuestJsonOutput.java:
id: 19a7e175e01f
- last_write_checksum: sha1:afeb560ea49b2b58e93f749e3dfe159df65f0013
+ last_write_checksum: sha1:b5b1b5645b476bb84b45e129aec1ccc20e833c8b
pristine_git_object: b015f0efde52549f4cc641247ecb9e512a1dbaaf
src/main/java/com/cvent/models/components/ReservationNightJson.java:
id: 8a76b834246a
@@ -14207,11 +13977,11 @@ trackedFiles:
pristine_git_object: a2bad06bddbabe2b0a0ecc0f6e673e45952a5b27
src/main/java/com/cvent/models/components/ReservationPaymentInfoJsonInput.java:
id: 20c4c5a021f0
- last_write_checksum: sha1:3fe5fa356de28ff0d6356062b671a4be271ae6ed
+ last_write_checksum: sha1:d4795f80e06c10e82607bd2b507bdc9b5fa5677f
pristine_git_object: aaef5fe9cea65d687eeeeda790bd39000f8b8ab2
src/main/java/com/cvent/models/components/ReservationPaymentInfoJsonOutput.java:
id: d2545ed6247f
- last_write_checksum: sha1:4fa14d3bbad7d625172ad543e87bdc5785952a8e
+ last_write_checksum: sha1:a44c686cc9a5e05f9ce070c4ee9a734d9a3e9f43
pristine_git_object: 4dbf5f9890c381d6068f9d4167d94eca5126a551
src/main/java/com/cvent/models/components/ReservationRequestBlock.java:
id: e71992d25dc2
@@ -14299,7 +14069,7 @@ trackedFiles:
pristine_git_object: 5df99dc7b47a8e387337aa937fb970d61712f591
src/main/java/com/cvent/models/components/RespondentJson.java:
id: 765a4a6d7c9a
- last_write_checksum: sha1:534add0a78344da90648a874de729e0a6fac8441
+ last_write_checksum: sha1:42404437612408e38e4a8741db24439798bc4a88
pristine_git_object: 01e9ec64e2cd13cb7bac8dbd17cb209e77baba77
src/main/java/com/cvent/models/components/RespondentJsonLinks.java:
id: 3b0263332f6a
@@ -14315,7 +14085,7 @@ trackedFiles:
pristine_git_object: 7e23b9d565388e59d333ff38abab5362bc20c1d0
src/main/java/com/cvent/models/components/ResponseJson.java:
id: edec9b9ae83f
- last_write_checksum: sha1:8144eaffa335742970e618548e8bcac217dd3a87
+ last_write_checksum: sha1:aef849d180bbfaac28cb41b69906df4fecf0cdc8
pristine_git_object: 301bd3867548beddcd1598b855841ed228ec027f
src/main/java/com/cvent/models/components/ResponseJsonUUID.java:
id: 3cda43133764
@@ -14449,7 +14219,7 @@ trackedFiles:
pristine_git_object: 544b9edb947aa3c67d0df88da037ae89ab126abe
src/main/java/com/cvent/models/components/ScoresJson.java:
id: 8c82a1866ecb
- last_write_checksum: sha1:566a4b20128860764d149cfedd10cb427072b30e
+ last_write_checksum: sha1:dce0f6f2affedee7f52d4e208e6c2169a72ed9b3
pristine_git_object: d66190b2231ff1b3340acaffcc2e350ad73110a7
src/main/java/com/cvent/models/components/ScoresJsonAttendee.java:
id: 52d6981ce25f
@@ -14499,11 +14269,11 @@ trackedFiles:
pristine_git_object: 1509670c45c7e29e7340de919cceaccc27b96918
src/main/java/com/cvent/models/components/SendEmailEventRequest.java:
id: fd543ffecb83
- last_write_checksum: sha1:6c57927ad43c9e9eb33369209c948ba05b858e82
+ last_write_checksum: sha1:3dfb5f3cd10d98852432acd2ae2c80e4f1f75fd9
pristine_git_object: ca5bc80bf0ae54ff8df61cc10cf967e7f331fb4e
src/main/java/com/cvent/models/components/SendEmailEventResponse.java:
id: 86586ab4dbdc
- last_write_checksum: sha1:a32b258ac1cee8fbc0efde9fbab1eca21a95ac09
+ last_write_checksum: sha1:8e2797ebf74f3ced03b4f5712e36982a238fc8e3
pristine_git_object: f63d410337a131885643bdf0881a1b43c34a3116
src/main/java/com/cvent/models/components/SendEmailRequest.java:
id: 4f4111e7fcb4
@@ -14765,10 +14535,8 @@ trackedFiles:
id: d8e337bdcedc
last_write_checksum: sha1:6637f7c277c0f3ecc1845eab1bfb3a37bd859903
pristine_git_object: e8ee2b891b0c3ec33689219079b6d9d91df4e590
- src/main/java/com/cvent/models/components/SocialMediaLinksJson.java:
- id: a3f0e488feff
- last_write_checksum: sha1:50a583e8b4934678c103358bd45f1da1f9cad3d3
- pristine_git_object: 3f4d3ef88fe85b8857360dd1f8dc7d7156f7ca4d
+ src/main/java/com/cvent/models/components/SocialMediaLinks.java:
+ last_write_checksum: sha1:75e387b9a02402f33cabd36200c6f741579458a4
src/main/java/com/cvent/models/components/SolutionJson.java:
id: fda6c9c75bbf
last_write_checksum: sha1:5e845ad9abe1f3144e2f29a57de9c184c0494224
@@ -14863,10 +14631,8 @@ trackedFiles:
id: a81575dfd168
last_write_checksum: sha1:30d9581d3fd85acd1693a3c403f4a385a20bb128
pristine_git_object: e92d726f11ee3ea09a95376568b12ff90cf88663
- src/main/java/com/cvent/models/components/SponsorshipLevelJson.java:
- id: 038a2e4291c6
- last_write_checksum: sha1:8083d1912ea1e904d5a7b8dc11edb2be9f139416
- pristine_git_object: 109df0d8683c11191553ebc964cafe54fb5049bf
+ src/main/java/com/cvent/models/components/SponsorshipLevel.java:
+ last_write_checksum: sha1:4f61c1c3f04529bcb1b4d2ab63f6bb3851d87090
src/main/java/com/cvent/models/components/SponsorshipLevelListResponse.java:
id: 975e3c0b4efd
last_write_checksum: sha1:8ddac3153c918fd979c076054e023a1e392f40bc
@@ -14927,7 +14693,7 @@ trackedFiles:
pristine_git_object: 4016b60b5332d080e28ec309dde987780df7eeee
src/main/java/com/cvent/models/components/StandardSurveyQuestionJson.java:
id: 2d5923437545
- last_write_checksum: sha1:952b222059ecc46597fd097c5a70944760917810
+ last_write_checksum: sha1:9877f96104936da0ff14360aac1f584fef1baedd
pristine_git_object: e9de3508cae2cd96cb06e4ba413063d32feb65a1
src/main/java/com/cvent/models/components/StandardSurveyQuestionsPaginatedResponse.java:
id: 6eb8acfff368
@@ -14955,11 +14721,11 @@ trackedFiles:
pristine_git_object: 7e1da721bc5f235c060fed0fb5bf1b112e48d007
src/main/java/com/cvent/models/components/StandardSurveyResponse.java:
id: 376201de500f
- last_write_checksum: sha1:f67b9dcff1e150bdfa938624e9812d9b9bb67e95
+ last_write_checksum: sha1:4cba9a9c3fae42218470a5baef2f70991309d101
pristine_git_object: 50f11581d9ecd33cd536437a77b67d79d3115e5b
src/main/java/com/cvent/models/components/StandardSurveyResponseInput.java:
id: b63fcfb78bbe
- last_write_checksum: sha1:ec8c6ff3f527a8aef59a3b5e2ea88c382b1bf946
+ last_write_checksum: sha1:113dbb36c83bbbb08c2087da99369cbf680eb29d
pristine_git_object: 75c8e964dc7b872b9f65fea830763ac151df2402
src/main/java/com/cvent/models/components/StandardSurveyResponseUUID.java:
id: 68fcea0a7499
@@ -15029,7 +14795,7 @@ trackedFiles:
pristine_git_object: bae164618ff6adb74be062bebc6ae014306641a3
src/main/java/com/cvent/models/components/SurveyJson.java:
id: 5ac82fc00875
- last_write_checksum: sha1:212cde7314b4f480514dad018a9119cd255306cb
+ last_write_checksum: sha1:2fe6f920bcfbcc7fb69cd9b02d9a4d00b29468a8
pristine_git_object: 1231498445bed26bbd839be9df965df2b87898e9
src/main/java/com/cvent/models/components/SurveyResponseJson.java:
id: 2f4afa64ca5c
@@ -15051,10 +14817,8 @@ trackedFiles:
id: 563b27021100
last_write_checksum: sha1:be3a3203fbca4f6df38710a562339e8467b7a64c
pristine_git_object: 2431aea14f6dc630f506914b8a9cb2e3f342dd3d
- src/main/java/com/cvent/models/components/SwitchBackTargetUsagePlanJson.java:
- id: 50dd6eaba27b
- last_write_checksum: sha1:90e6decf9f2e7bba49e78fe3938afa64cc0e411c
- pristine_git_object: 14981210d9cc2dd570f1dc440adb1836479d00bb
+ src/main/java/com/cvent/models/components/SwitchBackTargetUsagePlan.java:
+ last_write_checksum: sha1:5c54d4b6f0c62568c932becdf77f60dc356f9de8
src/main/java/com/cvent/models/components/TableAssignmentJson.java:
id: 1c68f0b58df0
last_write_checksum: sha1:fe2117db6ba8c714c4540874c3d2c929a561f677
@@ -15099,11 +14863,11 @@ trackedFiles:
pristine_git_object: 4ca04689d24cebb3d2eebbaf131e0772902183c4
src/main/java/com/cvent/models/components/Three.java:
id: e2aeead8a40f
- last_write_checksum: sha1:4ecb22f1c5dda6f76c6b73918fc01fa7e11b77e6
+ last_write_checksum: sha1:0c01afcc6cd944f894bc06c6e0d65d4c50a48ca8
pristine_git_object: b36a31a6a19c6946c5b2c99e0efa35367aca3fcb
src/main/java/com/cvent/models/components/ThreeInput.java:
id: a675bceb0219
- last_write_checksum: sha1:eed5c4ecd9e65de1a340b2fd8df563620d991850
+ last_write_checksum: sha1:3a971f2047b593d30459926c7c8e57890c4b882b
pristine_git_object: be2a3e38b9c6a592f9288404e4f70121dd114252
src/main/java/com/cvent/models/components/ThumbnailStatusJson.java:
id: b6bddea2a7c0
@@ -15195,7 +14959,7 @@ trackedFiles:
pristine_git_object: 3b6b7e0717cf5d8c22d9ce001094246a41b6367e
src/main/java/com/cvent/models/components/TravelAccount.java:
id: 3cb3493bfb4b
- last_write_checksum: sha1:976ce5425dd19708028b2b180677b3d0b29e84b5
+ last_write_checksum: sha1:802c87da31499cbe9460e52385f5f8ce1f6954bc
pristine_git_object: 7940ca85d8b696fceb8708a41ee648476215a855
src/main/java/com/cvent/models/components/TravelAccountPaginatedResponse.java:
id: b1a3ae3abd8d
@@ -15413,6 +15177,8 @@ trackedFiles:
id: ea0ac77f2eab
last_write_checksum: sha1:64e7206c8a623406280b05ae6b922fe329951f5c
pristine_git_object: e50042b47969291ff70651d49dfb973d31b3f53e
+ src/main/java/com/cvent/models/components/UTMOverride.java:
+ last_write_checksum: sha1:edd271b4819dd34f2a3639168a47b54f7f90b0ad
src/main/java/com/cvent/models/components/UnitPositionJson.java:
last_write_checksum: sha1:b901ce6bc0339c696aa5f7b35000d4d9edd60019
src/main/java/com/cvent/models/components/UnknownCreateUpdateDiscount.java:
@@ -15441,17 +15207,15 @@ trackedFiles:
id: 321c03119f88
last_write_checksum: sha1:ae43bbf1c3d26eb5cb356069eb46d8fecf8355a7
pristine_git_object: ada21c27c87d501bd5175b49dcd31253dd792e8c
- src/main/java/com/cvent/models/components/UsageJson.java:
- id: 62639ecccf09
- last_write_checksum: sha1:445c1026249f7a8051bce58e267b58039b119e58
- pristine_git_object: a56389af1955374e2b28a693563af9c86c2a05f3
+ src/main/java/com/cvent/models/components/Usage.java:
+ last_write_checksum: sha1:2c42f2140211b1582d8fa73670df27653253b441
src/main/java/com/cvent/models/components/UsagePaginatedResponse.java:
id: b9fe8b39df99
- last_write_checksum: sha1:88745d4bd010899b7108449919b1044416b4d590
+ last_write_checksum: sha1:3b2b2534421406e965526d61d15b661840084383
pristine_git_object: d410a6be0544e1682e55bdc37e88cb9b136fbba2
src/main/java/com/cvent/models/components/User.java:
id: 0ca4527bb07c
- last_write_checksum: sha1:f0b94ccd36506cc6a042fc11b8b1ff3ff212947f
+ last_write_checksum: sha1:6be2c9c886c5520795dbbe1fa1ceb88fb3a7e3b1
pristine_git_object: 1612e7950b52fd4d1b6f9e4a36aee1879906e582
src/main/java/com/cvent/models/components/UserEnterpriseExtensionJson.java:
id: 8631838f55d4
@@ -15483,11 +15247,11 @@ trackedFiles:
pristine_git_object: 0c054fe6f2379654e62de93ece16a4051fd1c8e0
src/main/java/com/cvent/models/components/UserInput.java:
id: ba02ae2b54d4
- last_write_checksum: sha1:4973a873a6cdb6de16885038dfba0ddf949db596
+ last_write_checksum: sha1:f7d310a1142ba6607bc9ec3c7fd82e0fc55d3f74
pristine_git_object: 6ed520e605c9585787efcdb623a8e4b69130b660
src/main/java/com/cvent/models/components/UserJson.java:
id: 554ecf692706
- last_write_checksum: sha1:eb51c27992ca2d0bfa87b38eefbb5e140c3c2b5d
+ last_write_checksum: sha1:0fa5470fd60966fbffe1c0ed55214ae58370fd70
pristine_git_object: 395d787e060cba5f4a871097db11051a70d178f4
src/main/java/com/cvent/models/components/UserTypeJson.java:
id: 7b267aef5c49
@@ -15505,10 +15269,8 @@ trackedFiles:
id: 98704f88a3c5
last_write_checksum: sha1:feda63f89493ad675ba32c68d4cac4d61f7c9b52
pristine_git_object: f27869038d5045be5aac8ff179c060fb07b91a7a
- src/main/java/com/cvent/models/components/UtmOverrideJson.java:
- id: 4bee816967a8
- last_write_checksum: sha1:ffcf8d441a5351e4a183a7abeb23d49622797513
- pristine_git_object: 28652c7f83d8880c874fa31575aeeff1e221f08d
+ src/main/java/com/cvent/models/components/Uuid1.java:
+ last_write_checksum: sha1:458b149061487cacb1c384bada4817d5831d7969
src/main/java/com/cvent/models/components/UuidJson.java:
id: cc111f500d60
last_write_checksum: sha1:6ba0bcb809cbe8649f7f9d414d2210594ae57358
@@ -15569,8 +15331,8 @@ trackedFiles:
id: 12eae6fa8c44
last_write_checksum: sha1:8dd0472cdce760c502a9809ec48fb38ac703b9a7
pristine_git_object: 89e854cfe4b94c451b446956c7e2309d004f15f1
- src/main/java/com/cvent/models/components/VideoJson1.java:
- last_write_checksum: sha1:7c203807e06c1ecfb4f3f4826c0b2f696e701ce8
+ src/main/java/com/cvent/models/components/VideoJson.java:
+ last_write_checksum: sha1:2e1083c56423cd08d2cb8028ce0384dbda2e2838
src/main/java/com/cvent/models/components/VideoRenditionJson.java:
id: 589832bdb8ec
last_write_checksum: sha1:9a8047115f5a8806b7d7f8e4a4733a040359c695
@@ -15625,7 +15387,7 @@ trackedFiles:
pristine_git_object: 56027643903dc248c9f9a488a0c66f3cdcb0a5cc
src/main/java/com/cvent/models/components/VideoViewJson.java:
id: 69eb548b2911
- last_write_checksum: sha1:813b5b27ae188fdf99fab767bd467f96283788b7
+ last_write_checksum: sha1:e9ac5027699caeedf991c581c1fdae560b48c993
pristine_git_object: ace65efc6c058f49874242451c4ba2c1844a2cba
src/main/java/com/cvent/models/components/VideoViewsPaginatedResponse.java:
id: 0804fedaec03
@@ -15685,7 +15447,7 @@ trackedFiles:
pristine_git_object: 62c3f0984363a385410e74214f3ae88512c3bb83
src/main/java/com/cvent/models/components/Weblink.java:
id: 39ba41132d98
- last_write_checksum: sha1:61988f0198af9b0245661efdf845acdb24c6befb
+ last_write_checksum: sha1:8c3111b6f97b9558be6f0bf7f4cab60300f3b82c
pristine_git_object: 083b9e763c7d783ac57ff8229f4876cee5c92d50
src/main/java/com/cvent/models/components/WeblinkListResponse.java:
id: c219485f518d
@@ -15695,14 +15457,12 @@ trackedFiles:
last_write_checksum: sha1:71d0099afaee74ec1d6043070fd9ced5f082c7b0
src/main/java/com/cvent/models/components/WeddingPartnerJson.java:
last_write_checksum: sha1:9e360eb3477b3651850bb0fedc084a83ee25fd5a
+ src/main/java/com/cvent/models/components/WorkAddress.java:
+ last_write_checksum: sha1:48379d2259583db4edefcfd5a88c366906c1312e
src/main/java/com/cvent/models/components/WorkAddressAddressInput.java:
id: 59107d0eaedc
last_write_checksum: sha1:f3898b1051532c383de975776b1a176cf9384560
pristine_git_object: 5a6654b5b8ab3dd4680cf363afca778cf2f2b2f4
- src/main/java/com/cvent/models/components/WorkAddressJson.java:
- id: eba8a4b4c330
- last_write_checksum: sha1:7391ef72865b332a198944c211c767a30d3d94bd
- pristine_git_object: b4796b41bef78f354cf6b3cb44f398a735e49c99
src/main/java/com/cvent/models/components/ZeroAllOf1.java:
id: c45963f20bb0
last_write_checksum: sha1:aba561c1c1c07e3305efa5dfc286d39696ef172a
@@ -16849,10 +16609,14 @@ trackedFiles:
id: 64de8409cf60
last_write_checksum: sha1:a84a80fe36f855d0a4ae2c7840544b8ad0ebc119
pristine_git_object: 3f7ea3345c4c202c7e42c49d2e7b19c68c2b2508
+ src/main/java/com/cvent/models/operations//async/ListAssociatedAudienceSegmentsRequestBuilder.java:
+ last_write_checksum: sha1:7547bc69897ea6628610799d65882d92e0c18356
src/main/java/com/cvent/models/operations//async/ListAttendeeActivitiesRequestBuilder.java:
id: fc67741dcdf1
last_write_checksum: sha1:89947bf21ad69f1c73121a30a84c418289fdef36
pristine_git_object: f72090c95ab33b0fa21c094ce5bc6459ba1af33b
+ src/main/java/com/cvent/models/operations//async/ListAttendeeAudienceSegmentsRequestBuilder.java:
+ last_write_checksum: sha1:e38f5d04208726e2d9ddf787473dc986a49150f9
src/main/java/com/cvent/models/operations//async/ListAttendeeInsightsRequestBuilder.java:
id: dc7ada1d8383
last_write_checksum: sha1:9dd9b86644c9bb45434593ee716e92346dd6ff51
@@ -17009,6 +16773,8 @@ trackedFiles:
id: 5e13ef7f168c
last_write_checksum: sha1:2ade2042e5587e6fd22ffbc97d98481a15d6fd51
pristine_git_object: b135f57ae2298bb63f9f16ac6f28dae364c6a646
+ src/main/java/com/cvent/models/operations//async/ListMembershipItemsPostFilterRequestBuilder.java:
+ last_write_checksum: sha1:973919be55c6ac29fdbc200530f94175dd80a7d9
src/main/java/com/cvent/models/operations//async/ListMembershipItemsRequestBuilder.java:
last_write_checksum: sha1:cc75058a58966ef24ce2e92c3965ebf5d1e5bb35
src/main/java/com/cvent/models/operations//async/ListPlayersRequestBuilder.java:
@@ -18855,7 +18621,7 @@ trackedFiles:
pristine_git_object: 8f3210681a036b53eebb642ebdb7feda291632ce
src/main/java/com/cvent/models/operations/GetAttendeeByIdResponse.java:
id: b0c53bd420f5
- last_write_checksum: sha1:d28de4b0dc6b521931b47fc5900ef9d9cf6b997b
+ last_write_checksum: sha1:afb061914fe1f057d861165ce9523a3afc4c60c8
pristine_git_object: 3fcf894a61809eb977b805cf5d93da44377ad2b9
src/main/java/com/cvent/models/operations/GetAttendeeCreditsRequest.java:
id: fa1fe97d4f91
@@ -20593,6 +20359,12 @@ trackedFiles:
id: 9460102cc7ca
last_write_checksum: sha1:fd5861a928f934d9cca1d13f08bce2232e28b4f4
pristine_git_object: 2a78a91e758e4498645c49904744d8c381ae733c
+ src/main/java/com/cvent/models/operations/ListAssociatedAudienceSegmentsRequest.java:
+ last_write_checksum: sha1:bffe25653fdb3ce415fde3eebe0339100e7a3221
+ src/main/java/com/cvent/models/operations/ListAssociatedAudienceSegmentsRequestBuilder.java:
+ last_write_checksum: sha1:74b5b28e3abc372316e6b51fe62595ff132dd825
+ src/main/java/com/cvent/models/operations/ListAssociatedAudienceSegmentsResponse.java:
+ last_write_checksum: sha1:d65756c21065d5101b8b79cce65f563cd5eaaf90
src/main/java/com/cvent/models/operations/ListAttendeeActivitiesRequest.java:
id: 96b99942f81f
last_write_checksum: sha1:3258d19503f8d957182d526eb681583583187964
@@ -20605,6 +20377,12 @@ trackedFiles:
id: 617d0bdaf9e1
last_write_checksum: sha1:ac72bc1dce7a5094f682a39cdbc6e38dabbb45b4
pristine_git_object: d184b615f806f23d5a2244d8bab6391a934f92e1
+ src/main/java/com/cvent/models/operations/ListAttendeeAudienceSegmentsRequest.java:
+ last_write_checksum: sha1:fe6e635d03a80d86e31763246eb7e91b13edb995
+ src/main/java/com/cvent/models/operations/ListAttendeeAudienceSegmentsRequestBuilder.java:
+ last_write_checksum: sha1:9bf55e841b4a0bac9c9c232afe42c5d122961208
+ src/main/java/com/cvent/models/operations/ListAttendeeAudienceSegmentsResponse.java:
+ last_write_checksum: sha1:f93dadecf7be424cb056f65912675c315ca92463
src/main/java/com/cvent/models/operations/ListAttendeeInsightsRequest.java:
id: c20162d10ab3
last_write_checksum: sha1:7a27aac658b19f92ae70383b1a99ae5c591633ae
@@ -20811,7 +20589,7 @@ trackedFiles:
pristine_git_object: 95a0327602dcbdc10b400c75996771b2d2384d75
src/main/java/com/cvent/models/operations/ListDiscountedAgendaItemsRequest.java:
id: 034d1513bd11
- last_write_checksum: sha1:2631f77580c3fb09dac4a69002f2ccca91a60f1b
+ last_write_checksum: sha1:5a80fc06d3992ea8914a732be4316db6cac25233
pristine_git_object: a2ad7534e596c042df2483308ffe3154c1244fd9
src/main/java/com/cvent/models/operations/ListDiscountedAgendaItemsRequestBuilder.java:
id: ea81087d8493
@@ -20835,7 +20613,7 @@ trackedFiles:
pristine_git_object: c9a31ba9d97c18dde370d1dbcb97700b2435a36a
src/main/java/com/cvent/models/operations/ListDonationItemsRequest.java:
id: a32dbe04d4cb
- last_write_checksum: sha1:fb8051b0ae6034576267ecdda05348079bdc3ea9
+ last_write_checksum: sha1:8f273458f7abba465515462fcee79ef0482c5c6e
pristine_git_object: fdcf1aece2a56208b3769dd70a842164255de872
src/main/java/com/cvent/models/operations/ListDonationItemsRequestBuilder.java:
id: 3eedc3535cb4
@@ -20859,7 +20637,7 @@ trackedFiles:
pristine_git_object: ec41dea4b3bf70975dcc54d6d832ec48e403212e
src/main/java/com/cvent/models/operations/ListEventDiscountsRequest.java:
id: 1f23500ffc68
- last_write_checksum: sha1:55f2367093b545e796b030f2ff570c83723c5737
+ last_write_checksum: sha1:8ea1e14e4f04d67e18ae634792c76f93c0b9fc8b
pristine_git_object: 7b120594b86940f8a55313e8b5ee32f4b5734761
src/main/java/com/cvent/models/operations/ListEventDiscountsRequestBuilder.java:
id: 88909a583aba
@@ -20883,7 +20661,7 @@ trackedFiles:
pristine_git_object: fb844a47f187d7b509833a18b8c2849eeb454358
src/main/java/com/cvent/models/operations/ListEventRoleAssignmentRequest.java:
id: ddbf24fcd0c0
- last_write_checksum: sha1:580aacc37af2098b072c375602d25649727d19f7
+ last_write_checksum: sha1:c7824b4be1c9d03ca19ea0b9a00de01657e990a8
pristine_git_object: e2e2f0b0f75ae1cf1c9be9326816b8a7bc96ed2e
src/main/java/com/cvent/models/operations/ListEventRoleAssignmentRequestBuilder.java:
id: eedf4d600e42
@@ -20991,7 +20769,7 @@ trackedFiles:
pristine_git_object: fa7ad5e7468efd7ac689bca1a2cf8d360198ba5b
src/main/java/com/cvent/models/operations/ListFeeItemsRequest.java:
id: 7ba704e55e69
- last_write_checksum: sha1:6dfceaf3955a2d8072262f46a33eb321970659bf
+ last_write_checksum: sha1:5755322f243def48ee05a28aaafb04eef09f9e69
pristine_git_object: 21a3e516e24c96eb35200bcb9bb84e32c1c10ffb
src/main/java/com/cvent/models/operations/ListFeeItemsRequestBuilder.java:
id: 8fe3cdaccc83
@@ -21073,8 +20851,14 @@ trackedFiles:
id: 0a2b3be71360
last_write_checksum: sha1:f67bd7ffd504adda54e384650a507f0b83177ada
pristine_git_object: e89972b69c33aaf96e46447e5439ab1972f90e39
+ src/main/java/com/cvent/models/operations/ListMembershipItemsPostFilterRequest.java:
+ last_write_checksum: sha1:238b104ea662e69d0ca9fcc0ae94b1720c7f892f
+ src/main/java/com/cvent/models/operations/ListMembershipItemsPostFilterRequestBuilder.java:
+ last_write_checksum: sha1:524fdcb8403fd9c7985b76ab630ef261fd4ceaee
+ src/main/java/com/cvent/models/operations/ListMembershipItemsPostFilterResponse.java:
+ last_write_checksum: sha1:6297e7c1fe51693b21a840b771f529e094676f57
src/main/java/com/cvent/models/operations/ListMembershipItemsRequest.java:
- last_write_checksum: sha1:9e4ba2d979e64ba2bc331540dc2ddc52fea8b4d8
+ last_write_checksum: sha1:0e2ba77f103db5ddb84c38689ef9708aafd539ff
src/main/java/com/cvent/models/operations/ListMembershipItemsRequestBuilder.java:
last_write_checksum: sha1:d49adedd7d7b4002c34cb0eb2c011c4bf392e732
src/main/java/com/cvent/models/operations/ListMembershipItemsResponse.java:
@@ -21141,7 +20925,7 @@ trackedFiles:
pristine_git_object: 7e7a297d80a9d088c7c64e539be186aee84aab13
src/main/java/com/cvent/models/operations/ListQuantityItemsRequest.java:
id: 732755a8a5b3
- last_write_checksum: sha1:f3dc8d47008997a032a09e808af1ab149586c6a1
+ last_write_checksum: sha1:02483a65b1d4fc57a660e0e000b94393a8d03838
pristine_git_object: 8d5800ec52b5199751bf1fa77a889a74791c84fe
src/main/java/com/cvent/models/operations/ListQuantityItemsRequestBuilder.java:
id: 946c64d036ba
@@ -21977,7 +21761,7 @@ trackedFiles:
pristine_git_object: c0ad9ec6cbda0a4c9ae10381c68a34e169dbe5dd
src/main/java/com/cvent/models/operations/UpdateAttendeeResponse.java:
id: 4d75d24fd00a
- last_write_checksum: sha1:d5f4b0a462be0d795a26915e8be47dd1e1cba92d
+ last_write_checksum: sha1:80f8a1a703851af7ca4a77f190bde1badafe55ed
pristine_git_object: 1d30c736bcb08595362204572e26de4fe0e68a0f
src/main/java/com/cvent/models/operations/UpdateAttendeeSubscriptionStatusRequest.java:
last_write_checksum: sha1:1fce256e9bf816fe10689b0853aaaaca7ad7d746
@@ -23055,7 +22839,7 @@ trackedFiles:
pristine_git_object: 38d4db2807ec06ce1aa47c7519dd72fa31419b76
src/main/java/com/cvent/models/operations/async/GetAttendeeByIdResponse.java:
id: ebea97994fa1
- last_write_checksum: sha1:91006f9d3d195f7221f3836caf7c2783e24824d5
+ last_write_checksum: sha1:f61614f15b40bde8b7fc17c60ab2513f7ea416bb
pristine_git_object: 5f216263a65b37e5bd8ffa344b425cb155f00e30
src/main/java/com/cvent/models/operations/async/GetAttendeeCreditsResponse.java:
id: e9a64b82e097
@@ -23641,10 +23425,14 @@ trackedFiles:
id: 3301f244aecf
last_write_checksum: sha1:63ee389a2ed14662f3596db4b6a0dc71637425ef
pristine_git_object: 6f5a68d25b2ba77e66f9e18579a1a13af5d6e277
+ src/main/java/com/cvent/models/operations/async/ListAssociatedAudienceSegmentsResponse.java:
+ last_write_checksum: sha1:a8c9c545bba083a3812fabdb9a8e76a9fb5b1956
src/main/java/com/cvent/models/operations/async/ListAttendeeActivitiesResponse.java:
id: 38c4646ff78e
last_write_checksum: sha1:0497034f49755d3c87acb3cc2fab4279138f96bd
pristine_git_object: 0027fd7d49b0b343fced8287adfe01efef95d90e
+ src/main/java/com/cvent/models/operations/async/ListAttendeeAudienceSegmentsResponse.java:
+ last_write_checksum: sha1:de8c6fe2602edd2e7a6402a840da87e27874afc9
src/main/java/com/cvent/models/operations/async/ListAttendeeInsightsResponse.java:
id: 6f9789f35b6c
last_write_checksum: sha1:830adbf6290da3dfd29325774f91cd77876ab05e
@@ -23801,6 +23589,8 @@ trackedFiles:
id: 4a63ce05928c
last_write_checksum: sha1:8448605122b2559bfe5222c65965e109b07380f4
pristine_git_object: 943cb2b301e53de745e210b3e1a6e61a2d86d6da
+ src/main/java/com/cvent/models/operations/async/ListMembershipItemsPostFilterResponse.java:
+ last_write_checksum: sha1:52cd3a14a20159af2a08390ad885e20e23c6ba0b
src/main/java/com/cvent/models/operations/async/ListMembershipItemsResponse.java:
last_write_checksum: sha1:103948080c1b64d86dfcdc31ba5b9722b66de266
src/main/java/com/cvent/models/operations/async/ListPlayersResponse.java:
@@ -24101,7 +23891,7 @@ trackedFiles:
pristine_git_object: 9f54e4be9d7237b90fe1333220df05eb755aff7a
src/main/java/com/cvent/models/operations/async/UpdateAttendeeResponse.java:
id: 56becbd977df
- last_write_checksum: sha1:122c7c6f148f735527bdef0413070292f2131d20
+ last_write_checksum: sha1:010ba35d858f9c5522e446c52a9899a1883144ab
pristine_git_object: 347c03df6631cbe9fe778d84216c24bca6698449
src/main/java/com/cvent/models/operations/async/UpdateAttendeeSubscriptionStatusResponse.java:
last_write_checksum: sha1:64efa3ea9a790c5dcabd7b9e89124bbdcec1b9fd
@@ -24783,7 +24573,7 @@ trackedFiles:
pristine_git_object: 6b9f479493542161a595e793eb1b4463a2ce3768
src/main/java/com/cvent/operations/GetAttendeeById.java:
id: 8265ce79be2e
- last_write_checksum: sha1:3571afb724b121fc53d97cf461bcc72e000d408b
+ last_write_checksum: sha1:7d4b7c75450b3550daeea9233ea1acd73fe8e39e
pristine_git_object: d7c5ccc0ce8af2ca37e3c42d91a0a6e67457b4e8
src/main/java/com/cvent/operations/GetAttendeeCredits.java:
id: 299952f67b4f
@@ -25369,10 +25159,14 @@ trackedFiles:
id: 8f16698229e6
last_write_checksum: sha1:b2008dd14135d8a2c32b92faf377dec918b3c453
pristine_git_object: fe8c820c8787eeec2dd88c9b667e0f5d86c0d15d
+ src/main/java/com/cvent/operations/ListAssociatedAudienceSegments.java:
+ last_write_checksum: sha1:a78ca7ee23a10302bbc6385dffe3c0e38cff8d7a
src/main/java/com/cvent/operations/ListAttendeeActivities.java:
id: bdb3c4ea2c28
last_write_checksum: sha1:32c2498301f2135d477348a6fa9afb7427fed764
pristine_git_object: 991243c3ad567f6ba4bfa79778f22ff219700bc5
+ src/main/java/com/cvent/operations/ListAttendeeAudienceSegments.java:
+ last_write_checksum: sha1:48ad3a85595688075054ff41a136e8df4ab619b9
src/main/java/com/cvent/operations/ListAttendeeInsights.java:
id: 11d3fce9b326
last_write_checksum: sha1:ee2b1377b6fe109d304801ad882ee09f6c02060c
@@ -25531,6 +25325,8 @@ trackedFiles:
pristine_git_object: 1935656ed7cec823e9d39f80da75a899aa56d938
src/main/java/com/cvent/operations/ListMembershipItems.java:
last_write_checksum: sha1:b9715cffd41f5ee394bd01e4587e3979ac780cf8
+ src/main/java/com/cvent/operations/ListMembershipItemsPostFilter.java:
+ last_write_checksum: sha1:31924811de21cc3f618801f7fc6de63866ad4c83
src/main/java/com/cvent/operations/ListPlayers.java:
id: bc6ebf13656c
last_write_checksum: sha1:6b2e6ec79d8915e8bfd66841d446862fae3977ea
@@ -25829,7 +25625,7 @@ trackedFiles:
pristine_git_object: bb42c08b50dbdefa67ec476b3d1e6e5551d54392
src/main/java/com/cvent/operations/UpdateAttendee.java:
id: fd568a0b7bae
- last_write_checksum: sha1:8b3d0071ddfcf67fa55c5c406faba501b52af105
+ last_write_checksum: sha1:14320b380e964ced4abd9176077b324ff63869da
pristine_git_object: 9acfef628dc0a16ac37e8f5c8a5de56c49f90481
src/main/java/com/cvent/operations/UpdateAttendeeLinks.java:
id: 8b9f02c7ee69
@@ -28780,6 +28576,8 @@ examples:
token: "0e28af57-511f-47ab-ae46-46cd1ca51a1a"
expand: ["eventRole"]
filter: "event.id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' and user.id eq '6807e044-993b-428c-aec8-7316f13c1b95'"
+ after: "2017-01-02T02:00:00Z"
+ before: "2017-01-02T02:00:00Z"
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": []}
@@ -31694,6 +31492,50 @@ 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": []}
"400":
application/json: {"code": 400, "message": "Bad Request", "target": "example target", "details": [{"code": 400, "message": "Bad Request", "target": "example target"}]}
+ listMembershipItemsPostFilter:
+ speakeasy-default-list-membership-items-post-filter:
+ parameters:
+ path:
+ id: "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3"
+ query:
+ limit: 100
+ token: "0e28af57-511f-47ab-ae46-46cd1ca51a1a"
+ 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"}]}
+ listAttendeeAudienceSegments:
+ speakeasy-default-list-attendee-audience-segments:
+ parameters:
+ path:
+ attendeeId: "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3"
+ query:
+ limit: 100
+ token: "0e28af57-511f-47ab-ae46-46cd1ca51a1a"
+ filter: "segment.id eq '313097a4-143d-11e5-9f99-d0a637ee0897'"
+ 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": [{"segment": {"id": "b13497ea-c117-4d62-a17b-e6c14d7e49d4"}}]}
+ "400":
+ application/json: {"code": 400, "message": "Bad Request", "target": "example target", "details": [{"code": 400, "message": "Bad Request", "target": "example target"}]}
+ listAssociatedAudienceSegments:
+ speakeasy-default-list-associated-audience-segments:
+ parameters:
+ path:
+ attendeeId: "04ca6ae2-0dc3-487b-953e-86d6abbdf7d3"
+ query:
+ limit: 100
+ token: "0e28af57-511f-47ab-ae46-46cd1ca51a1a"
+ 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": [{"segment": {"id": "b13497ea-c117-4d62-a17b-e6c14d7e49d4"}}]}
+ "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: "2025-12-09T16:04:38-06:00"
@@ -32078,3 +31920,6 @@ generatedTests:
listRfpPastEvents: "2026-04-27T13:27:07-03:00"
listRfpRecipientsHistory: "2026-04-27T13:27:07-03:00"
getRfpSuppliers: "2026-04-27T13:27:07-03:00"
+ listMembershipItemsPostFilter: "2026-05-21T12:05:01-06:00"
+ listAttendeeAudienceSegments: "2026-05-21T12:05:01-06:00"
+ listAssociatedAudienceSegments: "2026-05-21T12:05:01-06:00"
diff --git a/packages/java/.speakeasy/gen.yaml b/packages/java/.speakeasy/gen.yaml
index ce2e4e57..468d85e3 100644
--- a/packages/java/.speakeasy/gen.yaml
+++ b/packages/java/.speakeasy/gen.yaml
@@ -34,7 +34,7 @@ generation:
generateNewTests: true
skipResponseBodyAssertions: false
java:
- version: 1.2.4
+ version: 1.3.0
additionalDependencies: []
additionalPlugins: []
artifactID: sdk
diff --git a/packages/java/.speakeasy/tests.arazzo.yaml b/packages/java/.speakeasy/tests.arazzo.yaml
index a5f5be3d..fa6346ca 100644
--- a/packages/java/.speakeasy/tests.arazzo.yaml
+++ b/packages/java/.speakeasy/tests.arazzo.yaml
@@ -4925,6 +4925,12 @@ workflows:
- name: filter
in: query
value: event.id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' and user.id eq '6807e044-993b-428c-aec8-7316f13c1b95'
+ - name: after
+ in: query
+ value: "2017-01-02T02:00:00Z"
+ - name: before
+ in: query
+ value: "2017-01-02T02:00:00Z"
successCriteria:
- condition: $statusCode == 200
- condition: $response.header.Content-Type == application/json
@@ -10605,3 +10611,83 @@ workflows:
type: simple
x-speakeasy-test-group: RFP Suppliers
x-speakeasy-test-rebuild: true
+ - workflowId: listMembershipItemsPostFilter
+ steps:
+ - stepId: test
+ operationId: listMembershipItemsPostFilter
+ 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
+ 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: listAttendeeAudienceSegments
+ steps:
+ - stepId: test
+ operationId: listAttendeeAudienceSegments
+ parameters:
+ - name: attendeeId
+ 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: filter
+ in: query
+ value: segment.id eq '313097a4-143d-11e5-9f99-d0a637ee0897'
+ 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":[{"segment":{"id":"b13497ea-c117-4d62-a17b-e6c14d7e49d4"}}]}
+ type: simple
+ x-speakeasy-test-group: Audience Segments
+ x-speakeasy-test-rebuild: true
+ - workflowId: listAssociatedAudienceSegments
+ steps:
+ - stepId: test
+ operationId: listAssociatedAudienceSegments
+ parameters:
+ - name: attendeeId
+ in: path
+ value: 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3
+ - name: limit
+ in: query
+ value: 100
+ - name: token
+ in: query
+ value: 0e28af57-511f-47ab-ae46-46cd1ca51a1a
+ 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":[{"segment":{"id":"b13497ea-c117-4d62-a17b-e6c14d7e49d4"}}]}
+ type: simple
+ x-speakeasy-test-group: Audience Segments
+ x-speakeasy-test-rebuild: true
diff --git a/packages/java/README.md b/packages/java/README.md
index a218db8f..c2b61fdc 100644
--- a/packages/java/README.md
+++ b/packages/java/README.md
@@ -44,7 +44,7 @@ The samples below show how a published SDK artifact is used:
Gradle:
```groovy
-implementation 'com.cvent:sdk:1.2.4'
+implementation 'com.cvent:sdk:1.3.0'
```
Maven:
@@ -52,7 +52,7 @@ Maven:
com.cvent
sdk
- 1.2.4
+ 1.3.0
```
@@ -400,7 +400,9 @@ public class Application {
### [AudienceSegments](docs/sdks/audiencesegments/README.md)
+* [listAttendeeAudienceSegments](docs/sdks/audiencesegments/README.md#listattendeeaudiencesegments) - List Associated Segments
* [disassociateAttendeeFromAudienceSegments](docs/sdks/audiencesegments/README.md#disassociateattendeefromaudiencesegments) - Delete Attendee Associations
+* [listAssociatedAudienceSegments](docs/sdks/audiencesegments/README.md#listassociatedaudiencesegments) - List Associated Segments
* [createAudienceSegment](docs/sdks/audiencesegments/README.md#createaudiencesegment) - Create Audience Segment
* [listAudienceSegments](docs/sdks/audiencesegments/README.md#listaudiencesegments) - List Audience Segments
* [listAudienceSegmentsPostFilter](docs/sdks/audiencesegments/README.md#listaudiencesegmentspostfilter) - List Audience Segments
@@ -590,6 +592,7 @@ public class Application {
* [listFeeItems](docs/sdks/events/README.md#listfeeitems) - List Fee Items
* [getInvitationList](docs/sdks/events/README.md#getinvitationlist) - List Invitation Lists
* [listMembershipItems](docs/sdks/events/README.md#listmembershipitems) - List Membership Items
+* [listMembershipItemsPostFilter](docs/sdks/events/README.md#listmembershipitemspostfilter) - List Membership Items
* [getOrders](docs/sdks/events/README.md#getorders) - List Orders
* [getOrderItems](docs/sdks/events/README.md#getorderitems) - List Order Items
* [associateDiscountCodeToOrderItem](docs/sdks/events/README.md#associatediscountcodetoorderitem) - Assign Discount to Order Item
@@ -1290,9 +1293,9 @@ public class Application {
many more subclasses in the JDK platform).
**Inherit from [`CventSDKError`](./src/main/java/models/errors/CventSDKError.java)**:
-* [`com.cvent.models.errors.ErrorResponseJson20`](./src/main/java/models/errors/com.cvent.models.errors.ErrorResponseJson20.java): The error response. Applicable to 11 of 441 methods.*
-* [`com.cvent.models.errors.SegmentsErrorResponse`](./src/main/java/models/errors/com.cvent.models.errors.SegmentsErrorResponse.java): Segments error response details. Status code `400`. Applicable to 2 of 441 methods.*
-* [`com.cvent.models.errors.BadRequestException`](./src/main/java/models/errors/com.cvent.models.errors.BadRequestException.java): A bad token response. Status code `400`. Applicable to 1 of 441 methods.*
+* [`com.cvent.models.errors.ErrorResponseJson20`](./src/main/java/models/errors/com.cvent.models.errors.ErrorResponseJson20.java): The error response. Applicable to 11 of 444 methods.*
+* [`com.cvent.models.errors.SegmentsErrorResponse`](./src/main/java/models/errors/com.cvent.models.errors.SegmentsErrorResponse.java): Segments error response details. Status code `400`. Applicable to 2 of 444 methods.*
+* [`com.cvent.models.errors.BadRequestException`](./src/main/java/models/errors/com.cvent.models.errors.BadRequestException.java): A bad token response. Status code `400`. Applicable to 1 of 444 methods.*
diff --git a/packages/java/RELEASES.md b/packages/java/RELEASES.md
index b319f5d7..f61a96cd 100644
--- a/packages/java/RELEASES.md
+++ b/packages/java/RELEASES.md
@@ -1,3 +1,36 @@
+## 2026-05-21 00:00:00
+### Changes
+Based on:
+- OpenAPI Doc
+- Speakeasy CLI 1.752.0 https://github.com/speakeasy-api/speakeasy
+### SDK Changes
+#### New Models
+- `AttendeeAudienceSegmentAssociationJson` — represents a single active audience segment association for an attendee
+- `AttendeeAudienceSegmentAssociationsPaginatedResponse` — paginated response for attendee audience segment association lists
+#### Updated Models
+- `EventFeatureJson` / `EventFeaturesResponse` — new `CreditsAndCertificates` enum value added to the feature type; allows planners to create credit rules, link them to events/sessions, award credits, create certificates, and link them to credit rules. Only one of `EventCredits` or `CreditsAndCertificates` can be active at a time
+- `AudienceSegment`, `AudienceSegmentCreate`, `ExistingAudienceSegment`, `AudienceSegmentResponse` — `required` correction: `event` field is now correctly required (replaces incorrect `eventId`)
+- Multiple models were renamed/consolidated by the generator to remove redundant `Json{N}` suffixes (e.g. `AttendeeJson3` → `Attendee`, `CapacityJson1` → `Capacity`) — 63–74 old model files removed, replaced by cleaner equivalents
+### API Changes
+#### New APIs
+- Audience Segments: 'List Associated Segments' (GET /attendees/{attendeeId}/audience-segments)
+- Audience Segments: 'List Associated Segments' (POST /attendees/{attendeeId}/audience-segments/filter)
+- Events: 'List Membership Items' (POST /events/{id}/membership-items/filter)
+#### Updates to APIs
+- Event Role: 'List Event Role Assignments' (GET /event-roles/assignments) — added `after` and `before` query parameters
+- Event Features: 'Update Event Feature' (PUT /events/{id}/features/{type}) — new `CreditsAndCertificates` value added to the feature type enum
+- Meeting Request: 'Create MR (Bulk)' / 'Update MR (Bulk)' — description updated noting `event.id` may not be populated immediately on creation (event creation is async)
+- Audience Segments: 'Create/Update Audience Segment' — `required` corrected from `eventId` to `event`
+- RFP Management: 'Get RFP' — `name` removed from `required`; lead source description links updated
+- Process Form: 'List Process Form Submissions' — `required` corrected from literal string `"id, event"` to separate entries
+- Signatures: 'List Signatures' — `required` corrected from `stopCheckIn` to `stopCheckin`
+#### Miscellaneous Changes
+- Filter parameter descriptions for multiple endpoints reformatted from prose to markdown tables
+### Generated
+- [java v1.3.0] packages/java
+### Releases
+- [Maven Central v1.3.0] https://central.sonatype.com/artifact/com.cvent/sdk/1.3.0 - packages/java
+
## 2024-12-15 00:00:00
### Changes
Based on:
diff --git a/packages/java/docs/models/components/AccountBudgetItemListResponseJson.md b/packages/java/docs/models/components/AccountBudgetItemListResponseJson.md
index b50d9122..fdf86541 100644
--- a/packages/java/docs/models/components/AccountBudgetItemListResponseJson.md
+++ b/packages/java/docs/models/components/AccountBudgetItemListResponseJson.md
@@ -11,7 +11,7 @@ The response from a request to retrieve list of budget items across all events l
| `createdBy` | *Optional\* | :heavy_minus_sign: | The identifier of the user that created this record. | hporter |
| `lastModified` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | The ISO 8601 zoned date time when this record was updated. | 2019-02-12T03:00:00Z |
| `lastModifiedBy` | *Optional\* | :heavy_minus_sign: | The identifier of the user that last updated this record. | hporter |
-| `event` | [Optional\](../../models/components/EventJson4.md) | :heavy_minus_sign: | Event ID Information. | |
+| `event` | [Optional\](../../models/components/EventJson3.md) | :heavy_minus_sign: | Event ID Information. | |
| `rfp` | [Optional\](../../models/components/RfpIdJson1.md) | :heavy_minus_sign: | RFP ID Information. | |
| `budgetVersion` | [Optional\](../../models/components/BudgetVersionIdJson.md) | :heavy_minus_sign: | Budget Version ID Information. | |
| `id` | *Optional\* | :heavy_minus_sign: | The identifier of the budget item. | 9463c74e-18c6-401a-a710-ae0f485bf959 |
diff --git a/packages/java/docs/models/components/Action.md b/packages/java/docs/models/components/Action.md
deleted file mode 100644
index 30ceb7e0..00000000
--- a/packages/java/docs/models/components/Action.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# Action
-
-Action to take for a compliance request.
-
-## Example Usage
-
-```java
-import com.cvent.models.components.Action;
-
-Action value = Action.DO_NOT_SELL;
-```
-
-
-## Values
-
-| Name | Value |
-| ------------- | ------------- |
-| `DO_NOT_SELL` | DO_NOT_SELL |
-| `OK_TO_SELL` | OK_TO_SELL |
\ No newline at end of file
diff --git a/packages/java/docs/models/components/AdditionalChoice.md b/packages/java/docs/models/components/AdditionalChoice.md
new file mode 100644
index 00000000..c9b98797
--- /dev/null
+++ b/packages/java/docs/models/components/AdditionalChoice.md
@@ -0,0 +1,10 @@
+# AdditionalChoice
+
+Contains text of additional choice
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
+| `text` | *Optional\* | :heavy_minus_sign: | Text Value of additional choice | Not Applicable or Other |
\ No newline at end of file
diff --git a/packages/java/docs/models/components/AdditionalChoiceJson1.md b/packages/java/docs/models/components/AdditionalChoiceJson1.md
new file mode 100644
index 00000000..212a9839
--- /dev/null
+++ b/packages/java/docs/models/components/AdditionalChoiceJson1.md
@@ -0,0 +1,11 @@
+# AdditionalChoiceJson1
+
+Contains text of additional choice i.e N/A choice or otherAnswer choice
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ----------------------------------------- | ----------------------------------------- | ----------------------------------------- | ----------------------------------------- | ----------------------------------------- |
+| `text` | *Optional\* | :heavy_minus_sign: | Text Value of additional choice | N/A or Other |
+| `shortText` | *Optional\* | :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/java/docs/models/components/AdditionalChoiceJson11.md b/packages/java/docs/models/components/AdditionalChoiceJson11.md
deleted file mode 100644
index 3ef4e028..00000000
--- a/packages/java/docs/models/components/AdditionalChoiceJson11.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# AdditionalChoiceJson11
-
-Contains text of additional choice
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
-| `text` | *Optional\* | :heavy_minus_sign: | Text Value of additional choice | Not Applicable or Other |
\ No newline at end of file
diff --git a/packages/java/docs/models/components/AdditionalChoiceJson2.md b/packages/java/docs/models/components/AdditionalChoiceJson2.md
index b492ea02..68335845 100644
--- a/packages/java/docs/models/components/AdditionalChoiceJson2.md
+++ b/packages/java/docs/models/components/AdditionalChoiceJson2.md
@@ -1,11 +1,11 @@
# AdditionalChoiceJson2
-Contains text of additional choice i.e N/A choice or otherAnswer choice
+Contains text of additional choice i.e notApplicableAnswer choice or otherAnswer choice.
## Fields
-| Field | Type | Required | Description | Example |
-| ----------------------------------------- | ----------------------------------------- | ----------------------------------------- | ----------------------------------------- | ----------------------------------------- |
-| `text` | *Optional\* | :heavy_minus_sign: | Text Value of additional choice | N/A or Other |
-| `shortText` | *Optional\* | :heavy_minus_sign: | Reporting value of additional choice text | N/A or Other Reporting value |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| -------------------------------------------- | -------------------------------------------- | -------------------------------------------- | -------------------------------------------- | -------------------------------------------- |
+| `text` | *Optional\* | :heavy_minus_sign: | Display text of additional choice. | Dietary Restriction - Other |
+| `shortText` | *Optional\* | :heavy_minus_sign: | Name of additional choice text in reporting. | Dietary Preference - Other Allergies |
\ No newline at end of file
diff --git a/packages/java/docs/models/components/Address11.md b/packages/java/docs/models/components/Address11.md
new file mode 100644
index 00000000..85084be6
--- /dev/null
+++ b/packages/java/docs/models/components/Address11.md
@@ -0,0 +1,15 @@
+# Address11
+
+An object representing an address with various properties.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- |
+| `address1` | *Optional\* | :heavy_minus_sign: | The first line of an address | Cvent Inc. |
+| `address2` | *Optional\* | :heavy_minus_sign: | The second line of an address | 4001 West Parmer Lane |
+| `city` | *Optional\* | :heavy_minus_sign: | The name of the city. | Austin |
+| `region` | *Optional\* | :heavy_minus_sign: | The name of the state/province/region of the address. | Texas |
+| `postalCode` | *Optional\* | :heavy_minus_sign: | postal code (also known as zipcode) of the address | 78727 |
+| `country` | *Optional\* | :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/java/docs/models/components/Address12.md b/packages/java/docs/models/components/Address12.md
new file mode 100644
index 00000000..8a282781
--- /dev/null
+++ b/packages/java/docs/models/components/Address12.md
@@ -0,0 +1,17 @@
+# Address12
+
+Schema for address information
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- |
+| `address1` | *Optional\* | :heavy_minus_sign: | The first line of an address | Cvent Inc. |
+| `address2` | *Optional\* | :heavy_minus_sign: | The second line of an address | 4001 West Parmer Lane |
+| `city` | *Optional\* | :heavy_minus_sign: | The name of the city. | Austin |
+| `region` | *Optional\* | :heavy_minus_sign: | The name of the state/province/region of the address. | Texas |
+| `regionCode` | *Optional\* | :heavy_minus_sign: | The abbreviation of the state/province/region of the address. | TX |
+| `postalCode` | *Optional\* | :heavy_minus_sign: | postal code (also known as zipcode) of the address | 78727 |
+| `country` | *Optional\* | :heavy_minus_sign: | Name of the country for example, 'United States' | United States of America |
+| `countryCode` | *Optional\* | :heavy_minus_sign: | ISO 3166 two-letter (alpha-2) country code | US |
\ No newline at end of file
diff --git a/packages/java/docs/models/components/AddressJson2.md b/packages/java/docs/models/components/AddressJson2.md
new file mode 100644
index 00000000..7d313b38
--- /dev/null
+++ b/packages/java/docs/models/components/AddressJson2.md
@@ -0,0 +1,17 @@
+# AddressJson2
+
+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` | *Optional\* | :heavy_minus_sign: | Address line 1. | West St. 1 |
+| `address2` | *Optional\* | :heavy_minus_sign: | Address line 2. | Apt. 16 |
+| `city` | *Optional\* | :heavy_minus_sign: | City name. | Austin |
+| `region` | *Optional\* | :heavy_minus_sign: | Region name. | Texas |
+| `regionCode` | *Optional\* | :heavy_minus_sign: | Region code. | TX |
+| `postalCode` | *Optional\* | :heavy_minus_sign: | Postal code. | 23452AB |
+| `country` | *Optional\* | :heavy_minus_sign: | Country name. | United States of America |
+| `countryCode` | *Optional\* | :heavy_minus_sign: | ISO 3166 alpha-2 country code. | US |
\ No newline at end of file
diff --git a/packages/java/docs/models/components/AddressJson3.md b/packages/java/docs/models/components/AddressJson3.md
index d7fe274e..bb341c42 100644
--- a/packages/java/docs/models/components/AddressJson3.md
+++ b/packages/java/docs/models/components/AddressJson3.md
@@ -1,17 +1,20 @@
# AddressJson3
-Address details. Required to create/update a guest's reservation if the hotel/event requires an address in reservations.
+Address details
## Fields
-| Field | Type | Required | Description | Example |
-| ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ |
-| `address1` | *Optional\* | :heavy_minus_sign: | Address line 1. | West St. 1 |
-| `address2` | *Optional\* | :heavy_minus_sign: | Address line 2. | Apt. 16 |
-| `city` | *Optional\* | :heavy_minus_sign: | City name. | Austin |
-| `region` | *Optional\* | :heavy_minus_sign: | Region name. | Texas |
-| `regionCode` | *Optional\* | :heavy_minus_sign: | Region code. | TX |
-| `postalCode` | *Optional\* | :heavy_minus_sign: | Postal code. | 23452AB |
-| `country` | *Optional\* | :heavy_minus_sign: | Country name. | United States of America |
-| `countryCode` | *Optional\* | :heavy_minus_sign: | ISO 3166 alpha-2 country code. | US |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- |
+| `address1` | *Optional\* | :heavy_minus_sign: | The first line of an address. | Cvent Inc. |
+| `address2` | *Optional\* | :heavy_minus_sign: | The second line of an address. | 4001 West Parmer Lane |
+| `address3` | *Optional\* | :heavy_minus_sign: | The third line of an address. | PO Box 123 |
+| `city` | *Optional\* | :heavy_minus_sign: | The name of the city. | Austin |
+| `countryCode` | *Optional\* | :heavy_minus_sign: | ISO 3166 two-letter (alpha-2) country code. | US |
+| `postalCode` | *Optional\* | :heavy_minus_sign: | Postal code (also known as zipcode) of the address. | 78727 |
+| `region` | *Optional\* | :heavy_minus_sign: | The name of the state/province/region of the address. | Texas |
+| `regionCode` | *Optional\* | :heavy_minus_sign: | The abbreviation of the state/province/region of the address. | TX |
+| `country` | *Optional\* | :heavy_minus_sign: | Name of the country of the address. | United States of America |
+| `latitude` | *Optional\* | :heavy_minus_sign: | The geo latitude of the address. | 30 |
+| `longitude` | *Optional\* | :heavy_minus_sign: | The geo longitude of the address. | -97 |
\ No newline at end of file
diff --git a/packages/java/docs/models/components/AddressJson4.md b/packages/java/docs/models/components/AddressJson4.md
index 7cf5207f..58fdf195 100644
--- a/packages/java/docs/models/components/AddressJson4.md
+++ b/packages/java/docs/models/components/AddressJson4.md
@@ -1,20 +1,17 @@
# AddressJson4
-Address details
+A physical address.
## Fields
-| Field | Type | Required | Description | Example |
-| ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- |
-| `address1` | *Optional\* | :heavy_minus_sign: | The first line of an address. | Cvent Inc. |
-| `address2` | *Optional\* | :heavy_minus_sign: | The second line of an address. | 4001 West Parmer Lane |
-| `address3` | *Optional\* | :heavy_minus_sign: | The third line of an address. | PO Box 123 |
-| `city` | *Optional\* | :heavy_minus_sign: | The name of the city. | Austin |
-| `countryCode` | *Optional\* | :heavy_minus_sign: | ISO 3166 two-letter (alpha-2) country code. | US |
-| `postalCode` | *Optional\* | :heavy_minus_sign: | Postal code (also known as zipcode) of the address. | 78727 |
-| `region` | *Optional\* | :heavy_minus_sign: | The name of the state/province/region of the address. | Texas |
-| `regionCode` | *Optional\* | :heavy_minus_sign: | The abbreviation of the state/province/region of the address. | TX |
-| `country` | *Optional\* | :heavy_minus_sign: | Name of the country of the address. | United States of America |
-| `latitude` | *Optional\* | :heavy_minus_sign: | The geo latitude of the address. | 30 |
-| `longitude` | *Optional\* | :heavy_minus_sign: | The geo longitude of the address. | -97 |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ |
+| `address1` | *Optional\* | :heavy_minus_sign: | Address line 1. | 717 N Harwood St |
+| `address2` | *Optional\* | :heavy_minus_sign: | Address line 2. | Suite 2800 |
+| `city` | *Optional\* | :heavy_minus_sign: | City name. | Dallas |
+| `region` | *Optional\* | :heavy_minus_sign: | Region name. | Texas |
+| `regionCode` | *Optional\* | :heavy_minus_sign: | Region code. | TX |
+| `postalCode` | *Optional\* | :heavy_minus_sign: | Postal code. | 75201 |
+| `country` | *Optional\* | :heavy_minus_sign: | Country name. | United States |
+| `countryCode` | *Optional\* | :heavy_minus_sign: | ISO 3166 alpha-2 country code. | US |
\ No newline at end of file
diff --git a/packages/java/docs/models/components/AddressJson5.md b/packages/java/docs/models/components/AddressJson5.md
index fa16a56c..a1f88d36 100644
--- a/packages/java/docs/models/components/AddressJson5.md
+++ b/packages/java/docs/models/components/AddressJson5.md
@@ -1,17 +1,16 @@
# AddressJson5
-A physical address.
+Address
## Fields
-| Field | Type | Required | Description | Example |
-| ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ |
-| `address1` | *Optional\* | :heavy_minus_sign: | Address line 1. | 717 N Harwood St |
-| `address2` | *Optional\* | :heavy_minus_sign: | Address line 2. | Suite 2800 |
-| `city` | *Optional\* | :heavy_minus_sign: | City name. | Dallas |
-| `region` | *Optional\* | :heavy_minus_sign: | Region name. | Texas |
-| `regionCode` | *Optional\* | :heavy_minus_sign: | Region code. | TX |
-| `postalCode` | *Optional\* | :heavy_minus_sign: | Postal code. | 75201 |
-| `country` | *Optional\* | :heavy_minus_sign: | Country name. | United States |
-| `countryCode` | *Optional\* | :heavy_minus_sign: | ISO 3166 alpha-2 country code. | US |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- |
+| `type` | [AddressTypeJson1](../../models/components/AddressTypeJson1.md) | :heavy_check_mark: | The type of the address. | work |
+| `streetAddress` | *Optional\* | :heavy_minus_sign: | The street address of the user. | 100 Universal City Plaza |
+| `locality` | *Optional\* | :heavy_minus_sign: | The locality/city of the user. | Hollywood |
+| `region` | *Optional\* | :heavy_minus_sign: | The region/state/province of the user. | CA |
+| `postalCode` | *Optional\* | :heavy_minus_sign: | Postal code (also known as zipcode) of the user. | 91608 |
+| `country` | *Optional\* | :heavy_minus_sign: | The country of the user. | USA |
+| `primary` | *Optional\* | :heavy_minus_sign: | True indicates the address is primary. | true |
\ No newline at end of file
diff --git a/packages/java/docs/models/components/AddressJson6.md b/packages/java/docs/models/components/AddressJson6.md
index 43effe46..cd49ed60 100644
--- a/packages/java/docs/models/components/AddressJson6.md
+++ b/packages/java/docs/models/components/AddressJson6.md
@@ -1,16 +1,17 @@
# AddressJson6
-Address
+Address details.
## Fields
-| Field | Type | Required | Description | Example |
-| --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- |
-| `type` | [AddressTypeJson1](../../models/components/AddressTypeJson1.md) | :heavy_check_mark: | The type of the address. | work |
-| `streetAddress` | *Optional\* | :heavy_minus_sign: | The street address of the user. | 100 Universal City Plaza |
-| `locality` | *Optional\* | :heavy_minus_sign: | The locality/city of the user. | Hollywood |
-| `region` | *Optional\* | :heavy_minus_sign: | The region/state/province of the user. | CA |
-| `postalCode` | *Optional\* | :heavy_minus_sign: | Postal code (also known as zipcode) of the user. | 91608 |
-| `country` | *Optional\* | :heavy_minus_sign: | The country of the user. | USA |
-| `primary` | *Optional\* | :heavy_minus_sign: | True indicates the address is primary. | true |
\ No newline at end of file
+| Field | Type | Required | Description | Example |
+| ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ |
+| `address1` | *Optional\* | :heavy_minus_sign: | Address line 1. | 717 N Harwood St |
+| `address2` | *Optional\* | :heavy_minus_sign: | Address line 2. | Suite 2800 |
+| `city` | *Optional\* | :heavy_minus_sign: | City name. | Dallas |
+| `region` | *Optional\* | :heavy_minus_sign: | Region name. | Texas |
+| `regionCode` | *Optional\* | :heavy_minus_sign: | Region code. | TX |
+| `postalCode` | *Optional\* | :heavy_minus_sign: | Postal code. | 75201 |
+| `country` | *Optional\* | :heavy_minus_sign: | Country name. | United States |
+| `countryCode` | *Optional\* | :heavy_minus_sign: | ISO 3166 alpha-2 country code. | US |
\ No newline at end of file
diff --git a/packages/java/docs/models/components/AddressJson7.md b/packages/java/docs/models/components/AddressJson7.md
deleted file mode 100644
index f130bbd9..00000000
--- a/packages/java/docs/models/components/AddressJson7.md
+++ /dev/null
@@ -1,17 +0,0 @@
-# AddressJson7
-
-Address details.
-
-
-## Fields
-
-| Field | Type | Required | Description | Example |
-| ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ |
-| `address1` | *Optional\* | :heavy_minus_sign: | Address line 1. | 717 N Harwood St |
-| `address2` | *Optional\* | :heavy_minus_sign: | Address line 2. | Suite 2800 |
-| `city` | *Optional\* | :heavy_minus_sign: | City name. | Dallas |
-| `region` | *Optional\* | :heavy_minus_sign: | Region name. | Texas |
-| `regionCode` | *Optional\* | :heavy_minus_sign: | Region code. | TX |
-| `postalCode` | *Optional\* | :heavy_minus_sign: | Postal code. | 75201 |
-| `country` | *Optional\* | :heavy_minus_sign: | Country name. | United States |
-| `countryCode` | *Optional\* | :heavy_minus_sign: | ISO 3166 alpha-2 country code. | US |
\ No newline at end of file
diff --git a/packages/java/docs/models/components/Answer1.md b/packages/java/docs/models/components/Answer1.md
new file mode 100644
index 00000000..68d842c5
--- /dev/null
+++ b/packages/java/docs/models/components/Answer1.md
@@ -0,0 +1,12 @@
+# Answer1
+
+An object representing the possible answers for lead qualification questions.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- |
+| `type` | [AnswerType](../../models/components/AnswerType.md) | :heavy_check_mark: | Type of answer | File |
+| `value` | *Optional\* | :heavy_minus_sign: | Answered value like: Choice text, text answer input etc. | Choice A |
+| `choice` | [Optional\](../../models/components/Uuid1.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/java/docs/models/components/Answer2.md b/packages/java/docs/models/components/Answer2.md
new file mode 100644
index 00000000..3c919557
--- /dev/null
+++ b/packages/java/docs/models/components/Answer2.md
@@ -0,0 +1,12 @@
+# Answer2
+
+A JSON schema representing an answer object.
+
+
+## Fields
+
+| Field | Type | Required | Description | Example |
+| -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- |
+| `type` | [AnswerType1](../../models/components/AnswerType1.md) | :heavy_check_mark: | Type of answer | Choice |
+| `value` | *Optional\* | :heavy_minus_sign: | Answered value like: Choice text, text answer input etc. | Choice A |
+| `choice` | [Optional\