## The ID of the broadcaster that owns the broadcast schedule.
@exportvarbroadcaster_id:String:
set(val):
broadcaster_id=val
track_data(&"broadcaster_id",val)
## The broadcaster’s display name.
@exportvarbroadcaster_name:String:
set(val):
broadcaster_name=val
track_data(&"broadcaster_name",val)
## The broadcaster’s login name.
@exportvarbroadcaster_login:String:
set(val):
broadcaster_login=val
track_data(&"broadcaster_login",val)
## The dates when the broadcaster is on vacation and not streaming. Is set to **null** if vacation mode is not enabled.
@exportvarvacation:ResponseVacation:
set(val):
vacation=val
track_data(&"vacation",val)
## The information used to page through a list of results. The object is empty if there are no more pages left to page through. [Read more](https://dev.twitch.tv/docs/api/guide#pagination).
## The information used to page through a list of results. The object is empty if there are no more pages left to page through. [Read more](https://dev.twitch.tv/docs/api/guide#pagination).
## The ID of the scheduled segment to return. To specify more than one segment, include the ID of each segment you want to get. For example, `id=1234&id=5678`. You may specify a maximum of 100 IDs.
@exportvarid:Array[String]:
set(val):
id=val
track_data(&"id",val)
## The UTC date and time that identifies when in the broadcaster’s schedule to start returning segments. If not specified, the request returns segments starting after the current UTC date and time. Specify the date and time in RFC3339 format (for example, `2022-09-01T00:00:00Z`).
@exportvarstart_time:String:
set(val):
start_time=val
track_data(&"start_time",val)
## Not supported.
@exportvarutc_offset:String:
set(val):
utc_offset=val
track_data(&"utc_offset",val)
## The maximum number of items to return per page in the response. The minimum page size is 1 item per page and the maximum is 25 items per page. The default is 20.
@exportvarfirst:int:
set(val):
first=val
track_data(&"first",val)
## The cursor used to get the next page of results. The **Pagination** object in the response contains the cursor’s value. [Read More](https://dev.twitch.tv/docs/api/guide#pagination)