StartPresentationParams interface
The input type for the startPresentation function.
- Extends
-
BootPresentationParams
Properties
| document |
Required. Information about the document. See definition of |
| fetch |
Required. Callback used to provide an access token for accessing the document. |
Inherited Properties
| container | Required. The HTML element to put the presentation view in. |
| event |
Optional. Callback for event handling. |
| meeting |
Required. Information about the meeting. See definition of |
| session |
Required. Information about the session. See definition of |
| user |
Required. Information about the presenter. See definition of |
Property Details
documentInfo
Required. Information about the document. See definition of DocumentInfo for details.
documentInfo: DocumentInfo
Property Value
fetchAccessToken
Required. Callback used to provide an access token for accessing the document.
fetchAccessToken: (resourceUrl: string, claim?: string[]) => Promise<string>
Property Value
(resourceUrl: string, claim?: string[]) => Promise<string>
Inherited Property Details
container
Required. The HTML element to put the presentation view in.
container: HTMLElement
Property Value
HTMLElement
Inherited From BootPresentationParams.container
eventHandlers
Optional. Callback for event handling.
eventHandlers?: UiHostEventHandlers
Property Value
Inherited From BootPresentationParams.eventHandlers
meetingInfo
Required. Information about the meeting. See definition of MeetingInfo for details.
meetingInfo: MeetingInfo
Property Value
Inherited From BootPresentationParams.meetingInfo
sessionInfo
Required. Information about the session. See definition of SessionInfo for details.
sessionInfo: SessionInfo
Property Value
Inherited From BootPresentationParams.sessionInfo
userInfo
Required. Information about the presenter. See definition of UserInfo for details.
userInfo: UserInfo
Property Value
Inherited From BootPresentationParams.userInfo