You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 14, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: openapi/openapi.yml
+15Lines changed: 15 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -131,6 +131,12 @@ paths:
131
131
enum: [ 'Y', 'N' ]
132
132
maxLength: 1
133
133
description: 'Y = session is active, N = session is deactivated and hidden'
134
+
- name: video_stream
135
+
in: query
136
+
schema:
137
+
type: string
138
+
maxLength: 1024
139
+
description: 'Livestream url (url is not validated!). Undocumented'
134
140
- name: custom_fields
135
141
in: query
136
142
schema:
@@ -251,6 +257,12 @@ paths:
251
257
enum: [ 'Y', 'N' ]
252
258
maxLength: 1
253
259
description: 'Y = session is active, N = session is deactivated and hidden'
260
+
- name: video_stream
261
+
in: query
262
+
schema:
263
+
type: string
264
+
maxLength: 1024
265
+
description: 'Livestream url (url is not validated!). Undocumented'
254
266
responses:
255
267
'200':
256
268
description: Returned if the request was processed - no matter if it was successful or not; OK when successful; other text-Responses usually indicate an error
@@ -777,6 +789,9 @@ components:
777
789
event_type_sort:
778
790
type: string
779
791
description: 'Numeric string'
792
+
video_stream:
793
+
type: string
794
+
description: 'Livestream url (url is not validated!). Undocumented'
Copy file name to clipboardExpand all lines: sched-java-client/src/generated/java/software/xdev/sched/api/SessionApi.java
+12-6Lines changed: 12 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -71,12 +71,13 @@ public void setApiClient(ApiClient apiClient) {
71
71
* @param rsvpUrl URL used for Custom Button (optional)
72
72
* @param ticketMessage Custom ticket upgrade message, displayed when attendee attempts to add the session without the correct ticket (accepts basic HTML) (optional)
73
73
* @param active Y = session is active, N = session is deactivated and hidden (optional)
74
+
* @param videoStream Livestream url (url is not validated!). Undocumented (optional)
74
75
* @param customFields To add custom named fields, just add your field names and their values (optional)
@@ -98,12 +99,13 @@ public String addSession(String sessionKey, String name, String sessionStart, St
98
99
* @param rsvpUrl URL used for Custom Button (optional)
99
100
* @param ticketMessage Custom ticket upgrade message, displayed when attendee attempts to add the session without the correct ticket (accepts basic HTML) (optional)
100
101
* @param active Y = session is active, N = session is deactivated and hidden (optional)
102
+
* @param videoStream Livestream url (url is not validated!). Undocumented (optional)
101
103
* @param customFields To add custom named fields, just add your field names and their values (optional)
102
104
* @param additionalHeaders additionalHeaders for this call
@@ -453,11 +456,12 @@ public List<Session> listSessions(Integer since, String format, String status, S
453
456
* @param rsvpUrl URL used for Custom Button (optional)
454
457
* @param ticketMessage Custom ticket upgrade message, displayed when attendee attempts to add the session without the correct ticket (accepts basic HTML) (optional)
455
458
* @param active Y = session is active, N = session is deactivated and hidden (optional)
459
+
* @param videoStream Livestream url (url is not validated!). Undocumented (optional)
* @param rsvpUrl URL used for Custom Button (optional)
480
484
* @param ticketMessage Custom ticket upgrade message, displayed when attendee attempts to add the session without the correct ticket (accepts basic HTML) (optional)
481
485
* @param active Y = session is active, N = session is deactivated and hidden (optional)
486
+
* @param videoStream Livestream url (url is not validated!). Undocumented (optional)
482
487
* @param additionalHeaders additionalHeaders for this call
0 commit comments